diff --git a/.gitattributes b/.gitattributes index 02b13c8ee5..c93225ca26 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ .gitattributes export-ignore .gitignore export-ignore .github export-ignore +.lgtm.yml export-ignore diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 62e7186360..31b9becc0c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -26,11 +26,11 @@ __ ## I don't want to read this whole thing I just have a question! -> **Note:** Please do not file an issue to ask a general question about LAMMPS, its features, how to use specific commands, or how perform simulations or analysis in LAMMPS. Instead post your question to the ['lammps-users' mailing list](https://lammps.sandia.gov/mail.html). You do not need to be subscribed to post to the list (but a mailing list subscription avoids having your post delayed until it is approved by a mailing list moderator). Most posts to the mailing list receive a response within less than 24 hours. Before posting to the mailing list, please read the [mailing list guidelines](https://lammps.sandia.gov/guidelines.html). Following those guidelines will help greatly to get a helpful response. Always mention which LAMMPS version you are using. +> **Note:** Please do not file an issue to ask a general question about LAMMPS, its features, how to use specific commands, or how perform simulations or analysis in LAMMPS. Instead post your question to either the ['lammps-users' mailing list](https://lammps.sandia.gov/mail.html) or the [LAMMPS Material Science Discourse forum](https://matsci.org/lammps). You do not need to be subscribed to post to the list (but a mailing list subscription avoids having your post delayed until it is approved by a mailing list moderator). Most posts to the mailing list receive a response within less than 24 hours. Before posting to the mailing list, please read the [mailing list guidelines](https://lammps.sandia.gov/guidelines.html). Following those guidelines will help greatly to get a helpful response. Always mention which LAMMPS version you are using. The LAMMPS forum was recently created as part of a larger effort to build a materials science community and have discussions not just about using LAMMPS. Thus the forum may be also used for discussions that would be off-topic for the mailing list. Those will just have to be moved to a more general category. ## How Can I Contribute? -There are several ways how you can actively contribute to the LAMMPS project: you can discuss compiling and using LAMMPS, and solving LAMMPS related problems with other LAMMPS users on the lammps-users mailing list, you can report bugs or suggest enhancements by creating issues on GitHub (or posting them to the lammps-users mailing list), and you can contribute by submitting pull requests on GitHub or e-mail your code +There are several ways how you can actively contribute to the LAMMPS project: you can discuss compiling and using LAMMPS, and solving LAMMPS related problems with other LAMMPS users on the lammps-users mailing list, you can report bugs or suggest enhancements by creating issues on GitHub (or posting them to the lammps-users mailing list or posting in the LAMMPS Materials Science Discourse forum), and you can contribute by submitting pull requests on GitHub or e-mail your code to one of the [LAMMPS core developers](https://lammps.sandia.gov/authors.html). As you may see from the aforementioned developer page, the LAMMPS software package includes the efforts of a very large number of contributors beyond the principal authors and maintainers. ### Discussing How To Use LAMMPS @@ -42,6 +42,8 @@ Anyone can browse/search previous questions/answers in the archives. You do not If you post a message and you are a subscriber, your message will appear immediately. If you are not a subscriber, your message will be moderated, which typically takes one business day. Either way, when someone replies the reply will usually be sent to both, your personal email address and the mailing list. When replying to people, that responded to your post to the list, please always included the mailing list in your replies (i.e. use "Reply All" and **not** "Reply"). Responses will appear on the list in a few minutes, but it can take a few hours for postings and replies to show up in the SourceForge archive. Sending replies also to the mailing list is important, so that responses are archived and people with a similar issue can search for possible solutions in the mailing list archive. +The LAMMPS Materials Science Discourse forum was created recently to facilitate discussion not just about LAMMPS and as part of a larger effort towards building a materials science community. The forum contains a read-only sub-category with the continually updated mailing list archive, so you won't miss anything by joining only the forum and not the mailing list. + ### Reporting Bugs While developers writing code for LAMMPS are careful to test their code, LAMMPS is such a large and complex software, that it is impossible to test for all combinations of features under all normal and not so normal circumstances. Thus bugs do happen, and if you suspect, that you have encountered one, please try to document it and report it as an [Issue](https://github.com/lammps/lammps/issues) on the LAMMPS GitHub project web page. However, before reporting a bug, you need to check whether this is something that may have already been corrected. The [Latest Features and Bug Fixes in LAMMPS](https://lammps.sandia.gov/bug.html) web page lists all significant changes to LAMMPS over the years. It also tells you what the current latest development version of LAMMPS is, and you should test whether your issue still applies to that version. diff --git a/.github/codeql/cpp.yml b/.github/codeql/cpp.yml new file mode 100644 index 0000000000..6244ba707d --- /dev/null +++ b/.github/codeql/cpp.yml @@ -0,0 +1,4 @@ +paths: + - src + - lib + - tools diff --git a/.github/codeql/python.yml b/.github/codeql/python.yml new file mode 100644 index 0000000000..c02a54e3ea --- /dev/null +++ b/.github/codeql/python.yml @@ -0,0 +1,5 @@ +paths: + - python/lammps + +queries: + - uses: security-and-quality diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 827306c9aa..064ba6c652 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -31,16 +31,18 @@ jobs: uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} + config-file: ./.github/codeql/${{ matrix.language }}.yml - name: Create Build Environment - run: cmake -E make_directory ${{github.workspace}}/build + if: ${{ matrix.language == 'cpp' }} + run: mkdir build - name: Building LAMMPS via CMake if: ${{ matrix.language == 'cpp' }} shell: bash - working-directory: ${{github.workspace}}/build + working-directory: build run: | - cmake -C $GITHUB_WORKSPACE/cmake/presets/most.cmake $GITHUB_WORKSPACE/cmake + cmake -C ../cmake/presets/most.cmake ../cmake cmake --build . --parallel 2 - name: Perform CodeQL Analysis diff --git a/.github/workflows/unittest-macos.yml b/.github/workflows/unittest-macos.yml index f62b3046c9..88e28513e8 100644 --- a/.github/workflows/unittest-macos.yml +++ b/.github/workflows/unittest-macos.yml @@ -10,6 +10,8 @@ jobs: name: MacOS Unit Test if: ${{ github.repository == 'lammps/lammps' }} runs-on: macos-latest + env: + CCACHE_DIR: ${{ github.workspace }}/.ccache steps: - name: Checkout repository @@ -17,20 +19,36 @@ jobs: with: fetch-depth: 2 + - name: Install ccache + run: brew install ccache + - name: Create Build Environment - run: cmake -E make_directory ${{github.workspace}}/build + run: mkdir build + + - name: Set up ccache + uses: actions/cache@v2 + with: + path: ${{ env.CCACHE_DIR }} + key: macos-ccache-${{ github.sha }} + restore-keys: macos-ccache- - name: Building LAMMPS via CMake shell: bash - working-directory: ${{github.workspace}}/build + working-directory: build run: | - cmake -C $GITHUB_WORKSPACE/cmake/presets/clang.cmake \ - -C $GITHUB_WORKSPACE/cmake/presets/most.cmake \ - $GITHUB_WORKSPACE/cmake \ - -DENABLE_TESTING=ON -DBUILD_SHARED_LIBS=ON -DLAMMPS_EXCEPTIONS=ON + ccache -z + cmake -C ../cmake/presets/clang.cmake \ + -C ../cmake/presets/most.cmake \ + -D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ + -D CMAKE_C_COMPILER_LAUNCHER=ccache \ + -D ENABLE_TESTING=on \ + -D BUILD_SHARED_LIBS=on \ + -D LAMMPS_EXCEPTIONS=on \ + ../cmake cmake --build . --parallel 2 + ccache -s - name: Run Tests - working-directory: ${{github.workspace}}/build + working-directory: build shell: bash run: ctest -V diff --git a/.lgtm.yml b/.lgtm.yml new file mode 100644 index 0000000000..2f2a31f292 --- /dev/null +++ b/.lgtm.yml @@ -0,0 +1,14 @@ +extraction: + cpp: + configure: + command: + - "mkdir build" + - "cd build" + - "cmake -G Ninja -C ../cmake/presets/minimal.cmake ../cmake" + index: + build_command: + - "cd build" + - "ninja" + python: + python_setup: + version: 3 diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 7f99b04cd6..b3dcd36913 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -124,7 +124,7 @@ set(STANDARD_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS DIPOLE USER-LB USER-MANIFOLD USER-MEAMC USER-MESONT USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-PHONON USER-PLUMED USER-PTM USER-QTB USER-REACTION USER-REAXC USER-SCAFACOS USER-SDPD USER-SMD USER-SMTBQ USER-SPH - USER-TALLY USER-UEF USER-VTK USER-QUIP USER-QMMM USER-YAFF USER-PACE) + USER-TALLY USER-UEF USER-VTK USER-QUIP USER-QMMM USER-YAFF USER-PACE USER-BROWNIAN) set(SUFFIX_PACKAGES CORESHELL GPU KOKKOS OPT USER-INTEL USER-OMP) @@ -245,69 +245,6 @@ if(BUILD_OMP) target_link_libraries(lammps PRIVATE OpenMP::OpenMP_CXX) endif() -# Compiler specific features for testing -if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") - option(ENABLE_COVERAGE "Enable collecting code coverage data" OFF) - mark_as_advanced(ENABLE_COVERAGE) - if(ENABLE_COVERAGE) - if(CMAKE_VERSION VERSION_LESS 3.13) - if(CMAKE_CXX_FLAGS) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage") - else() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_${CMAKE_BUILD_TYPE}_FLAGS} --coverage") - endif() - else() - target_compile_options(lammps PUBLIC --coverage) - target_link_options(lammps PUBLIC --coverage) - endif() - endif() -endif() - -####################################### -# add custom target for IWYU analysis -####################################### -set(ENABLE_IWYU OFF CACHE BOOL "Add 'iwyu' build target to call the include-what-you-use tool") -mark_as_advanced(ENABLE_IWYU) -if(ENABLE_IWYU) - set(CMAKE_EXPORT_COMPILE_COMMANDS ON) - find_program(IWYU_EXE NAMES include-what-you-use iwyu) - find_program(IWYU_TOOL NAMES iwyu_tool iwyu-tool iwyu_tool.py) - if (IWYU_EXE AND IWYU_TOOL) - add_custom_target( - iwyu - ${IWYU_TOOL} -o clang -p ${CMAKE_CURRENT_BINARY_DIR} -- -Xiwyu --mapping_file=${CMAKE_CURRENT_SOURCE_DIR}/iwyu/iwyu-extra-map.imp - COMMENT "Running IWYU") - add_dependencies(iwyu lammps) - else() - message(FATAL_ERROR "To use IWYU you need the include-what-you-use/iwyu executable" - "and the iwyu-tool/iwyu_tool script installed in your PATH") - endif() -endif() - -set(ENABLE_SANITIZER "none" CACHE STRING "Select a code sanitizer option (none (default), address, leak, thread, undefined)") -mark_as_advanced(ENABLE_SANITIZER) -set(ENABLE_SANITIZER_VALUES none address leak thread undefined) -set_property(CACHE ENABLE_SANITIZER PROPERTY STRINGS ${ENABLE_SANITIZER_VALUES}) -validate_option(ENABLE_SANITIZER ENABLE_SANITIZER_VALUES) -string(TOLOWER ${ENABLE_SANITIZER} ENABLE_SANITIZER) -if(NOT ENABLE_SANITIZER STREQUAL "none") - if((${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") OR (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")) - if(CMAKE_VERSION VERSION_LESS 3.13) - if(CMAKE_CXX_FLAGS) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=${ENABLE_SANITIZER}") - else() - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_${CMAKE_BUILD_TYPE}_FLAGS} -fsanitize=${ENABLE_SANITIZER}") - endif() - else() - target_compile_options(lammps PUBLIC -fsanitize=${ENABLE_SANITIZER}) - target_link_options(lammps PUBLIC -fsanitize=${ENABLE_SANITIZER}) - endif() - else() - message(WARNING "ENABLE_SANITIZER option not supported by ${CMAKE_CXX_COMPILER_ID} compilers. Ignoring.") - set(ENABLE_SANITIZER "none") - endif() -endif() - if(PKG_MSCG OR PKG_USER-ATC OR PKG_USER-AWPMD OR PKG_USER-QUIP OR PKG_LATTE) enable_language(C) find_package(LAPACK) diff --git a/cmake/Modules/Documentation.cmake b/cmake/Modules/Documentation.cmake index c0028676b7..16dd5dd4fa 100644 --- a/cmake/Modules/Documentation.cmake +++ b/cmake/Modules/Documentation.cmake @@ -55,8 +55,8 @@ if(BUILD_DOC) COMMAND ${DOCENV_BINARY_DIR}/pip $ENV{PIP_OPTIONS} install -r ${DOC_BUILD_DIR}/requirements.txt --upgrade ) - set(MATHJAX_URL "https://github.com/mathjax/MathJax/archive/3.1.2.tar.gz" CACHE STRING "URL for MathJax tarball") - set(MATHJAX_MD5 "a4a6a093a89bc2ccab1452d766b98e53" CACHE STRING "MD5 checksum of MathJax tarball") + set(MATHJAX_URL "https://github.com/mathjax/MathJax/archive/3.1.3.tar.gz" CACHE STRING "URL for MathJax tarball") + set(MATHJAX_MD5 "d1c98c746888bfd52ca8ebc10704f92f" CACHE STRING "MD5 checksum of MathJax tarball") mark_as_advanced(MATHJAX_URL) # download mathjax distribution and unpack to folder "mathjax" diff --git a/cmake/Modules/GenerateOpenCLHeader.cmake b/cmake/Modules/GenerateOpenCLHeader.cmake new file mode 100644 index 0000000000..18dfac1604 --- /dev/null +++ b/cmake/Modules/GenerateOpenCLHeader.cmake @@ -0,0 +1,3 @@ +# utility script to call WriteOpenCLHeader function +include(${SOURCE_DIR}/Modules/OpenCLUtils.cmake) +WriteOpenCLHeader(${VARNAME} ${HEADER_FILE} ${SOURCE_FILES}) diff --git a/cmake/Modules/OpenCLLoader.cmake b/cmake/Modules/OpenCLLoader.cmake index 54eaab4795..ea83f8e447 100644 --- a/cmake/Modules/OpenCLLoader.cmake +++ b/cmake/Modules/OpenCLLoader.cmake @@ -1,6 +1,6 @@ message(STATUS "Downloading and building OpenCL loader library") -set(OPENCL_LOADER_URL "${LAMMPS_THIRDPARTY_URL}/opencl-loader-2020.12.18.tar.gz" CACHE STRING "URL for OpenCL loader tarball") -set(OPENCL_LOADER_MD5 "011cdcbd41030be94f3fced6d763a52a" CACHE STRING "MD5 checksum of OpenCL loader tarball") +set(OPENCL_LOADER_URL "${LAMMPS_THIRDPARTY_URL}/opencl-loader-2021.05.02.tar.gz" CACHE STRING "URL for OpenCL loader tarball") +set(OPENCL_LOADER_MD5 "29180b05056578afda92f0d394c3a373" CACHE STRING "MD5 checksum of OpenCL loader tarball") mark_as_advanced(OPENCL_LOADER_URL) mark_as_advanced(OPENCL_LOADER_MD5) diff --git a/cmake/Modules/OpenCLUtils.cmake b/cmake/Modules/OpenCLUtils.cmake index a9441ce518..eb17da0b3d 100644 --- a/cmake/Modules/OpenCLUtils.cmake +++ b/cmake/Modules/OpenCLUtils.cmake @@ -1,10 +1,8 @@ -function(GenerateOpenCLHeader varname outfile files) - message("Creating ${outfile}...") +function(WriteOpenCLHeader varname outfile files) file(WRITE ${outfile} "const char * ${varname} = \n") - math(EXPR ARG_END "${ARGC}-1") + separate_arguments(files) - foreach(IDX RANGE 2 ${ARG_END}) - list(GET ARGV ${IDX} filename) + foreach(filename ${files}) file(READ ${filename} content) string(REGEX REPLACE "\\s*//[^\n]*\n" "\n" content "${content}") string(REGEX REPLACE "\\\\" "\\\\\\\\" content "${content}") @@ -15,4 +13,16 @@ function(GenerateOpenCLHeader varname outfile files) endforeach() file(APPEND ${outfile} ";\n") +endfunction(WriteOpenCLHeader) + +function(GenerateOpenCLHeader varname outfile files) + list(REMOVE_AT ARGV 0 1) + add_custom_command(OUTPUT ${outfile} + COMMAND ${CMAKE_COMMAND} -D SOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR} + -D VARNAME=${varname} + -D HEADER_FILE=${outfile} + -D SOURCE_FILES="${ARGV}" + -P ${CMAKE_CURRENT_SOURCE_DIR}/Modules/GenerateOpenCLHeader.cmake + DEPENDS ${ARGV} + COMMENT "Generating ${outfile}...") endfunction(GenerateOpenCLHeader) diff --git a/cmake/Modules/Packages/GPU.cmake b/cmake/Modules/Packages/GPU.cmake index b706537825..3b07246e80 100644 --- a/cmake/Modules/Packages/GPU.cmake +++ b/cmake/Modules/Packages/GPU.cmake @@ -112,10 +112,10 @@ if(GPU_API STREQUAL "CUDA") endif() cuda_compile_fatbin(GPU_GEN_OBJS ${GPU_LIB_CU} OPTIONS ${CUDA_REQUEST_PIC} - -DUNIX -O3 --use_fast_math -Wno-deprecated-gpu-targets -DNV_KERNEL -DUCL_CUDADR ${GPU_CUDA_GENCODE} -D_${GPU_PREC_SETTING}) + -DUNIX -O3 --use_fast_math -Wno-deprecated-gpu-targets -DNV_KERNEL -DUCL_CUDADR ${GPU_CUDA_GENCODE} -D_${GPU_PREC_SETTING} -DLAMMPS_${LAMMPS_SIZES}) cuda_compile(GPU_OBJS ${GPU_LIB_CUDPP_CU} OPTIONS ${CUDA_REQUEST_PIC} - -DUNIX -O3 --use_fast_math -Wno-deprecated-gpu-targets -DUCL_CUDADR ${GPU_CUDA_GENCODE} -D_${GPU_PREC_SETTING}) + -DUNIX -O3 --use_fast_math -Wno-deprecated-gpu-targets -DUCL_CUDADR ${GPU_CUDA_GENCODE} -D_${GPU_PREC_SETTING} -DLAMMPS_${LAMMPS_SIZES}) foreach(CU_OBJ ${GPU_GEN_OBJS}) get_filename_component(CU_NAME ${CU_OBJ} NAME_WE) @@ -145,7 +145,14 @@ if(GPU_API STREQUAL "CUDA") target_include_directories(nvc_get_devices PRIVATE ${CUDA_INCLUDE_DIRS}) elseif(GPU_API STREQUAL "OPENCL") - option(USE_STATIC_OPENCL_LOADER "Download and include a static OpenCL ICD loader" ON) + # the static OpenCL loader doesn't seem to work on macOS. use the system provided + # version by default instead (for as long as it will be available) + if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") + set(_opencl_static_default OFF) + else() + set(_opencl_static_default ON) + endif() + option(USE_STATIC_OPENCL_LOADER "Download and include a static OpenCL ICD loader" ${_opencl_static_default}) mark_as_advanced(USE_STATIC_OPENCL_LOADER) if (USE_STATIC_OPENCL_LOADER) include(OpenCLLoader) @@ -289,18 +296,18 @@ elseif(GPU_API STREQUAL "HIP") if(HIP_COMPILER STREQUAL "clang") add_custom_command(OUTPUT ${CUBIN_FILE} - VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --genco --offload-arch=${HIP_ARCH} -O3 -ffast-math -DUSE_HIP -D_${GPU_PREC_SETTING} -I${LAMMPS_LIB_SOURCE_DIR}/gpu -o ${CUBIN_FILE} ${CU_CPP_FILE} + VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --genco --offload-arch=${HIP_ARCH} -O3 -ffast-math -DUSE_HIP -D_${GPU_PREC_SETTING} -DLAMMPS_${LAMMPS_SIZES} -I${LAMMPS_LIB_SOURCE_DIR}/gpu -o ${CUBIN_FILE} ${CU_CPP_FILE} DEPENDS ${CU_CPP_FILE} COMMENT "Generating ${CU_NAME}.cubin") else() add_custom_command(OUTPUT ${CUBIN_FILE} - VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --genco -t="${HIP_ARCH}" -f=\"-O3 -ffast-math -DUSE_HIP -D_${GPU_PREC_SETTING} -I${LAMMPS_LIB_SOURCE_DIR}/gpu\" -o ${CUBIN_FILE} ${CU_CPP_FILE} + VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --genco -t="${HIP_ARCH}" -f=\"-O3 -ffast-math -DUSE_HIP -D_${GPU_PREC_SETTING} -DLAMMPS_${LAMMPS_SIZES} -I${LAMMPS_LIB_SOURCE_DIR}/gpu\" -o ${CUBIN_FILE} ${CU_CPP_FILE} DEPENDS ${CU_CPP_FILE} COMMENT "Generating ${CU_NAME}.cubin") endif() elseif(HIP_PLATFORM STREQUAL "nvcc") add_custom_command(OUTPUT ${CUBIN_FILE} - VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --fatbin --use_fast_math -DUSE_HIP -D_${GPU_PREC_SETTING} ${HIP_CUDA_GENCODE} -I${LAMMPS_LIB_SOURCE_DIR}/gpu -o ${CUBIN_FILE} ${CU_FILE} + VERBATIM COMMAND ${HIP_HIPCC_EXECUTABLE} --fatbin --use_fast_math -DUSE_HIP -D_${GPU_PREC_SETTING} -DLAMMPS_${LAMMPS_SIZES} ${HIP_CUDA_GENCODE} -I${LAMMPS_LIB_SOURCE_DIR}/gpu -o ${CUBIN_FILE} ${CU_FILE} DEPENDS ${CU_FILE} COMMENT "Generating ${CU_NAME}.cubin") endif() diff --git a/cmake/Modules/Packages/KOKKOS.cmake b/cmake/Modules/Packages/KOKKOS.cmake index 1f00516e08..e0e32730ec 100644 --- a/cmake/Modules/Packages/KOKKOS.cmake +++ b/cmake/Modules/Packages/KOKKOS.cmake @@ -37,8 +37,8 @@ if(DOWNLOAD_KOKKOS) list(APPEND KOKKOS_LIB_BUILD_ARGS "-DCMAKE_CXX_EXTENSIONS=${CMAKE_CXX_EXTENSIONS}") list(APPEND KOKKOS_LIB_BUILD_ARGS "-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}") include(ExternalProject) - set(KOKKOS_URL "https://github.com/kokkos/kokkos/archive/3.3.01.tar.gz" CACHE STRING "URL for KOKKOS tarball") - set(KOKKOS_MD5 "08201d1c7cf5bc458ce0f5b44a629d5a" CACHE STRING "MD5 checksum of KOKKOS tarball") + set(KOKKOS_URL "https://github.com/kokkos/kokkos/archive/3.4.00.tar.gz" CACHE STRING "URL for KOKKOS tarball") + set(KOKKOS_MD5 "c2fdcedb6953e6160c765366f6045abb" CACHE STRING "MD5 checksum of KOKKOS tarball") mark_as_advanced(KOKKOS_URL) mark_as_advanced(KOKKOS_MD5) ExternalProject_Add(kokkos_build @@ -58,7 +58,7 @@ if(DOWNLOAD_KOKKOS) target_link_libraries(lmp PRIVATE LAMMPS::KOKKOS) add_dependencies(LAMMPS::KOKKOS kokkos_build) elseif(EXTERNAL_KOKKOS) - find_package(Kokkos 3.3.01 REQUIRED CONFIG) + find_package(Kokkos 3.4.00 REQUIRED CONFIG) target_link_libraries(lammps PRIVATE Kokkos::kokkos) target_link_libraries(lmp PRIVATE Kokkos::kokkos) else() diff --git a/cmake/Modules/Packages/USER-INTEL.cmake b/cmake/Modules/Packages/USER-INTEL.cmake index 90ab6167a3..ecad135b70 100644 --- a/cmake/Modules/Packages/USER-INTEL.cmake +++ b/cmake/Modules/Packages/USER-INTEL.cmake @@ -79,9 +79,11 @@ if(INTEL_ARCH STREQUAL "KNL") else() if(CMAKE_CXX_COMPILER_ID STREQUAL "Intel") include(CheckCXXCompilerFlag) - foreach(_FLAG -O2 -fp-model fast=2 -no-prec-div -qoverride-limits -qopt-zmm-usage=high -qno-offload -fno-alias -ansi-alias -restrict) - check_cxx_compiler_flag("${_FLAG}" COMPILER_SUPPORTS${_FLAG}) - if(COMPILER_SUPPORTS${_FLAG}) + foreach(_FLAG -O2 "-fp-model fast=2" -no-prec-div -qoverride-limits -qopt-zmm-usage=high -qno-offload -fno-alias -ansi-alias -restrict) + string(REGEX REPLACE "[ =\"]" "" _FLAGX ${_FLAG}) + check_cxx_compiler_flag("${_FLAG}" COMPILER_SUPPORTS${_FLAGX}) + if(COMPILER_SUPPORTS${_FLAGX}) + separate_arguments(_FLAG UNIX_COMMAND "${_FLAG}") target_compile_options(lammps PRIVATE ${_FLAG}) endif() endforeach() diff --git a/cmake/Modules/Packages/USER-PACE.cmake b/cmake/Modules/Packages/USER-PACE.cmake index 66f228017c..2d88d3a313 100644 --- a/cmake/Modules/Packages/USER-PACE.cmake +++ b/cmake/Modules/Packages/USER-PACE.cmake @@ -20,7 +20,7 @@ file(GLOB PACE_EVALUATOR_SOURCES ${CMAKE_BINARY_DIR}/lammps-user-pace-*/USER-PAC list(FILTER PACE_EVALUATOR_SOURCES EXCLUDE REGEX pair_pace.cpp) add_library(pace STATIC ${PACE_EVALUATOR_SOURCES}) -set_target_properties(pace PROPERTIES OUTPUT_NAME pace${LAMMPS_MACHINE}) +set_target_properties(pace PROPERTIES OUTPUT_NAME lammps_pace${LAMMPS_MACHINE}) target_include_directories(pace PUBLIC ${PACE_EVALUATOR_INCLUDE_DIR}) target_link_libraries(lammps PRIVATE pace) diff --git a/cmake/Modules/Testing.cmake b/cmake/Modules/Testing.cmake index 7fbd8212de..d1fa97a7a8 100644 --- a/cmake/Modules/Testing.cmake +++ b/cmake/Modules/Testing.cmake @@ -56,3 +56,76 @@ if(ENABLE_TESTING) get_filename_component(LAMMPS_UNITTEST_BIN ${CMAKE_BINARY_DIR}/unittest ABSOLUTE) add_subdirectory(${LAMMPS_UNITTEST_DIR} ${LAMMPS_UNITTEST_BIN}) endif() + +# Compiler specific features for testing +if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") + option(ENABLE_COVERAGE "Enable collecting code coverage data" OFF) + mark_as_advanced(ENABLE_COVERAGE) + if(ENABLE_COVERAGE) + if(CMAKE_VERSION VERSION_LESS 3.13) + if(CMAKE_CXX_FLAGS) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} --coverage") + else() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_${CMAKE_BUILD_TYPE}_FLAGS} --coverage") + endif() + else() + target_compile_options(lammps PUBLIC --coverage) + target_link_options(lammps PUBLIC --coverage) + endif() + endif() +endif() + +####################################### +# add custom target for IWYU analysis +####################################### +set(ENABLE_IWYU OFF CACHE BOOL "Add 'iwyu' build target to call the include-what-you-use tool") +mark_as_advanced(ENABLE_IWYU) +if(ENABLE_IWYU) + # enforce these settings + set(CMAKE_EXPORT_COMPILE_COMMANDS ON CACHE BOOL "Enable reporting compilation commands to compile_commands.json" FORCE) + if (NOT ((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "GNU"))) + message(FATAL_ERROR "IWYU is only supported with Clang or GNU compilers") + endif() + # detect the "native" header folder so we can include them first + execute_process(COMMAND ${CMAKE_CXX_COMPILER} --print-search-dirs OUTPUT_VARIABLE IWYU_SEARCH_PATHS) + string(REGEX REPLACE ".*libraries: *=([^:]+):.*" "\\1/include" IWYU_EXTRA_INCLUDE_DIR ${IWYU_SEARCH_PATHS}) + find_program(IWYU_EXE NAMES include-what-you-use iwyu) + find_program(IWYU_TOOL NAMES iwyu_tool iwyu-tool iwyu_tool.py) + if (IWYU_EXE AND IWYU_TOOL) + add_custom_target( + iwyu + ${IWYU_TOOL} -o clang -p ${CMAKE_CURRENT_BINARY_DIR} -- -I${IWYU_EXTRA_INCLUDE_DIR} -Xiwyu --mapping_file=${CMAKE_CURRENT_SOURCE_DIR}/iwyu/iwyu-extra-map.imp + COMMENT "Running IWYU") + add_dependencies(iwyu lammps) + else() + message(FATAL_ERROR "To use IWYU you need the include-what-you-use/iwyu executable" + "and the iwyu-tool/iwyu_tool script installed in your PATH") + endif() +endif() + +####################################### +# select code sanitizer options +####################################### +set(ENABLE_SANITIZER "none" CACHE STRING "Select a code sanitizer option (none (default), address, leak, thread, undefined)") +mark_as_advanced(ENABLE_SANITIZER) +set(ENABLE_SANITIZER_VALUES none address leak thread undefined) +set_property(CACHE ENABLE_SANITIZER PROPERTY STRINGS ${ENABLE_SANITIZER_VALUES}) +validate_option(ENABLE_SANITIZER ENABLE_SANITIZER_VALUES) +string(TOLOWER ${ENABLE_SANITIZER} ENABLE_SANITIZER) +if(NOT ENABLE_SANITIZER STREQUAL "none") + if((${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU") OR (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")) + if(CMAKE_VERSION VERSION_LESS 3.13) + if(CMAKE_CXX_FLAGS) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=${ENABLE_SANITIZER}") + else() + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_${CMAKE_BUILD_TYPE}_FLAGS} -fsanitize=${ENABLE_SANITIZER}") + endif() + else() + target_compile_options(lammps PUBLIC -fsanitize=${ENABLE_SANITIZER}) + target_link_options(lammps PUBLIC -fsanitize=${ENABLE_SANITIZER}) + endif() + else() + message(WARNING "ENABLE_SANITIZER option not supported by ${CMAKE_CXX_COMPILER_ID} compilers. Ignoring.") + set(ENABLE_SANITIZER "none") + endif() +endif() diff --git a/cmake/Modules/generate_lmpgitversion.cmake b/cmake/Modules/generate_lmpgitversion.cmake index 4ff01c7501..b19716d74b 100644 --- a/cmake/Modules/generate_lmpgitversion.cmake +++ b/cmake/Modules/generate_lmpgitversion.cmake @@ -17,7 +17,7 @@ if(GIT_FOUND AND EXISTS ${LAMMPS_DIR}/.git) ERROR_QUIET WORKING_DIRECTORY ${LAMMPS_DIR} OUTPUT_STRIP_TRAILING_WHITESPACE) - execute_process(COMMAND ${GIT_EXECUTABLE} describe --dirty=-modified + execute_process(COMMAND ${GIT_EXECUTABLE} describe --dirty=-modified --always OUTPUT_VARIABLE temp_git_describe ERROR_QUIET WORKING_DIRECTORY ${LAMMPS_DIR} diff --git a/cmake/presets/all_off.cmake b/cmake/presets/all_off.cmake index bd94b9dbe5..9be6cfe54b 100644 --- a/cmake/presets/all_off.cmake +++ b/cmake/presets/all_off.cmake @@ -2,16 +2,16 @@ # an existing package selection without losing any other settings set(ALL_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU - GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MISC MESSAGE MLIAP - MOLECULE MPIIO MSCG OPT PERI POEMS PYTHON QEQ REPLICA RIGID SHOCK - SNAP SPIN SRD VORONOI - USER-ADIOS USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK - USER-COLVARS USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP - USER-H5MD USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESODPD - USER-MESONT USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-OMP - USER-PHONON USER-PLUMED USER-PTM USER-QMMM USER-QTB USER-QUIP - USER-REACTION USER-REAXC USER-SCAFACOS USER-SDPD USER-SMD USER-SMTBQ - USER-SPH USER-TALLY USER-UEF USER-VTK USER-YAFF) + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MESSAGE MISC MLIAP MOLECULE + MPIIO MSCG OPT PERI PLUGIN POEMS PYTHON QEQ REPLICA RIGID SHOCK SNAP SPIN + SRD VORONOI + USER-ADIOS USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD USER-INTEL + USER-LB USER-MANIFOLD USER-MEAMC USER-MESODPD USER-MESONT USER-MGPT + USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-OMP USER-PACE USER-PHONON + USER-PLUMED USER-PTM USER-QMMM USER-QTB USER-QUIP USER-REACTION USER-REAXC + USER-SCAFACOS USER-SDPD USER-SMD USER-SMTBQ USER-SPH USER-TALLY USER-UEF + USER-VTK USER-YAFF) foreach(PKG ${ALL_PACKAGES}) set(PKG_${PKG} OFF CACHE BOOL "" FORCE) diff --git a/cmake/presets/all_on.cmake b/cmake/presets/all_on.cmake index 438c119c4c..411fb09d6b 100644 --- a/cmake/presets/all_on.cmake +++ b/cmake/presets/all_on.cmake @@ -4,16 +4,16 @@ # with just a working C++ compiler and an MPI library. set(ALL_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GPU - GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MISC MESSAGE MLIAP - MOLECULE MPIIO MSCG OPT PERI POEMS PYTHON QEQ REPLICA RIGID SHOCK - SNAP SPIN SRD VORONOI - USER-ADIOS USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK - USER-COLVARS USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP - USER-H5MD USER-INTEL USER-LB USER-MANIFOLD USER-MEAMC USER-MESODPD - USER-MESONT USER-MGPT USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-OMP - USER-PHONON USER-PLUMED USER-PTM USER-QMMM USER-QTB USER-QUIP - USER-REACTION USER-REAXC USER-SCAFACOS USER-SDPD USER-SMD USER-SMTBQ - USER-SPH USER-TALLY USER-UEF USER-VTK USER-YAFF) + GRANULAR KIM KOKKOS KSPACE LATTE MANYBODY MC MESSAGE MISC MLIAP MOLECULE + MPIIO MSCG OPT PERI PLUGIN POEMS PYTHON QEQ REPLICA RIGID SHOCK SNAP SPIN + SRD VORONOI + USER-ADIOS USER-ATC USER-AWPMD USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-H5MD USER-INTEL + USER-LB USER-MANIFOLD USER-MEAMC USER-MESODPD USER-MESONT USER-MGPT + USER-MISC USER-MOFFF USER-MOLFILE USER-NETCDF USER-OMP USER-PACE USER-PHONON + USER-PLUMED USER-PTM USER-QMMM USER-QTB USER-QUIP USER-REACTION USER-REAXC + USER-SCAFACOS USER-SDPD USER-SMD USER-SMTBQ USER-SPH USER-TALLY USER-UEF + USER-VTK USER-YAFF) foreach(PKG ${ALL_PACKAGES}) set(PKG_${PKG} ON CACHE BOOL "" FORCE) diff --git a/cmake/presets/most.cmake b/cmake/presets/most.cmake index 5dc58b735b..064b22595f 100644 --- a/cmake/presets/most.cmake +++ b/cmake/presets/most.cmake @@ -5,9 +5,9 @@ set(ALL_PACKAGES ASPHERE BODY CLASS2 COLLOID COMPRESS CORESHELL DIPOLE GRANULAR KSPACE MANYBODY MC MISC MLIAP MOLECULE OPT PERI PLUGIN POEMS PYTHON QEQ REPLICA RIGID SHOCK SNAP SPIN SRD VORONOI - USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS USER-DIFFRACTION - USER-DPD USER-DRUDE USER-EFF USER-FEP USER-MEAMC USER-MESODPD - USER-MISC USER-MOFFF USER-OMP USER-PHONON USER-REACTION + USER-BROWNIAN USER-BOCS USER-CGDNA USER-CGSDK USER-COLVARS + USER-DIFFRACTION USER-DPD USER-DRUDE USER-EFF USER-FEP USER-MEAMC + USER-MESODPD USER-MISC USER-MOFFF USER-OMP USER-PHONON USER-REACTION USER-REAXC USER-SDPD USER-SPH USER-SMD USER-UEF USER-YAFF) foreach(PKG ${ALL_PACKAGES}) diff --git a/cmake/presets/nolib.cmake b/cmake/presets/nolib.cmake index 0245b58cc7..c9abb00a15 100644 --- a/cmake/presets/nolib.cmake +++ b/cmake/presets/nolib.cmake @@ -1,10 +1,11 @@ # preset that turns off all packages that require some form of external # library or special compiler (fortran or cuda) or equivalent. -set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MPIIO MSCG PYTHON - VORONOI USER-ADIOS USER-ATC USER-AWPMD USER-H5MD USER-LB - USER-MOLFILE USER-MESONT USER-NETCDF USER-PLUMED USER-QMMM USER-QUIP - USER-SCAFACOS USER-SMD USER-VTK) +set(PACKAGES_WITH_LIB COMPRESS GPU KIM KOKKOS LATTE MESSAGE MPIIO MSCG + PYTHON VORONOI + USER-ADIOS USER-ATC USER-AWPMD USER-H5MD USER-LB USER-MOLFILE USER-MESONT + USER-NETCDF USER-PACE USER-PLUMED USER-QMMM USER-QUIP USER-SCAFACOS + USER-SMD USER-VTK) foreach(PKG ${PACKAGES_WITH_LIB}) set(PKG_${PKG} OFF CACHE BOOL "" FORCE) diff --git a/doc/Makefile b/doc/Makefile index 7deaaf2a2e..e49d42ca77 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -236,7 +236,7 @@ $(VENV): ) $(MATHJAX): - @git clone --depth 1 git://github.com/mathjax/MathJax.git $@ + @git clone -b 3.1.4 -c advice.detachedHead=0 --depth 1 git://github.com/mathjax/MathJax.git $@ $(TXT2RST) $(ANCHORCHECK): $(VENV) @( \ diff --git a/doc/src/Build_extras.rst b/doc/src/Build_extras.rst index d375d33e56..4e23067387 100644 --- a/doc/src/Build_extras.rst +++ b/doc/src/Build_extras.rst @@ -467,6 +467,9 @@ They must be specified in uppercase. * - ARMV8_THUNDERX2 - HOST - ARMv8 Cavium ThunderX2 CPU + * - A64FX + - HOST + - ARMv8.2 with SVE Support * - WSM - HOST - Intel Westmere CPU (SSE 4.2) @@ -539,6 +542,9 @@ They must be specified in uppercase. * - AMPERE80 - GPU - NVIDIA Ampere generation CC 8.0 GPU + * - AMPERE86 + - GPU + - NVIDIA Ampere generation CC 8.6 GPU * - VEGA900 - GPU - AMD GPU MI25 GFX900 @@ -547,12 +553,12 @@ They must be specified in uppercase. - AMD GPU MI50/MI60 GFX906 * - VEGA908 - GPU - - AMD GPU GFX908 + - AMD GPU MI100 GFX908 * - INTEL_GEN - GPU - Intel GPUs Gen9+ -This list was last updated for version 3.3 of the Kokkos library. +This list was last updated for version 3.4 of the Kokkos library. .. tabs:: diff --git a/doc/src/Commands_fix.rst b/doc/src/Commands_fix.rst index 671716e89d..65f4f542cd 100644 --- a/doc/src/Commands_fix.rst +++ b/doc/src/Commands_fix.rst @@ -39,6 +39,9 @@ OPT. * :doc:`ave/time ` * :doc:`aveforce ` * :doc:`balance ` + * :doc:`brownian ` + * :doc:`brownian/asphere ` + * :doc:`brownian/sphere ` * :doc:`bocs ` * :doc:`bond/break ` * :doc:`bond/create ` diff --git a/doc/src/Commands_pair.rst b/doc/src/Commands_pair.rst index b91a749364..b7baaa8581 100644 --- a/doc/src/Commands_pair.rst +++ b/doc/src/Commands_pair.rst @@ -87,6 +87,8 @@ OPT. * :doc:`coul/wolf/cs ` * :doc:`dpd (gio) ` * :doc:`dpd/fdt ` + * :doc:`dpd/ext ` + * :doc:`dpd/ext/tstat ` * :doc:`dpd/fdt/energy (k) ` * :doc:`dpd/tstat (go) ` * :doc:`dsmc ` @@ -169,7 +171,7 @@ OPT. * :doc:`lj/sdk/coul/long (go) ` * :doc:`lj/sdk/coul/msm (o) ` * :doc:`lj/sf/dipole/sf (go) ` - * :doc:`lj/smooth (o) ` + * :doc:`lj/smooth (go) ` * :doc:`lj/smooth/linear (o) ` * :doc:`lj/switch3/coulgauss/long ` * :doc:`lj96/cut (go) ` diff --git a/doc/src/Developer_utils.rst b/doc/src/Developer_utils.rst index 17b4715dc7..44210218c0 100644 --- a/doc/src/Developer_utils.rst +++ b/doc/src/Developer_utils.rst @@ -9,14 +9,29 @@ reading or writing to files with error checking or translation of strings into specific types of numbers with checking for validity. This reduces redundant implementations and encourages consistent behavior. -I/O with status check -^^^^^^^^^^^^^^^^^^^^^ +I/O with status check and similar functions +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -These are wrappers around the corresponding C library calls like -``fgets()`` or ``fread()``. They will check if there were errors -on reading or an unexpected end-of-file state was reached. In that -case, the functions will stop the calculation with an error message, -indicating the name of the problematic file, if possible. +The the first two functions are wrappers around the corresponding C +library calls ``fgets()`` or ``fread()``. They will check if there +were errors on reading or an unexpected end-of-file state was reached. +In that case, the functions will stop with an error message, indicating +the name of the problematic file, if possible unless the *error* argument +is a NULL pointer. + +The :cpp:func:`fgets_trunc` function will work similar for ``fgets()`` +but it will read in a whole line (i.e. until the end of line or end +of file), but store only as many characters as will fit into the buffer +including a final newline character and the terminating NULL byte. +If the line in the file is longer it will thus be truncated in the buffer. +This function is used by :cpp:func:`read_lines_from_file` to read individual +lines but make certain they follow the size constraints. + +The :cpp:func:`read_lines_from_file` function will read the requested +number of lines of a maximum length into a buffer and will return 0 +if successful or 1 if not. It also guarantees that all lines are +terminated with a newline character and the entire buffer with a +NULL character. ---------- @@ -26,6 +41,12 @@ indicating the name of the problematic file, if possible. .. doxygenfunction:: sfread :project: progguide +.. doxygenfunction:: fgets_trunc + :project: progguide + +.. doxygenfunction:: read_lines_from_file + :project: progguide + ---------- String to number conversions with validity check @@ -164,7 +185,10 @@ Argument processing Convenience functions ^^^^^^^^^^^^^^^^^^^^^ -.. doxygenfunction:: logmesg +.. doxygenfunction:: logmesg(LAMMPS *lmp, const S &format, Args&&... args) + :project: progguide + +.. doxygenfunction:: logmesg(LAMMPS *lmp, const std::string &mesg) :project: progguide .. doxygenfunction:: getsyserror diff --git a/doc/src/Examples.rst b/doc/src/Examples.rst index 8a76dca66e..8bfc4ad573 100644 --- a/doc/src/Examples.rst +++ b/doc/src/Examples.rst @@ -108,6 +108,8 @@ Lowercase directories +-------------+------------------------------------------------------------------+ | msst | MSST shock dynamics | +-------------+------------------------------------------------------------------+ +| multi | multi neighboring for systems with large interaction disparities | ++-------------+------------------------------------------------------------------+ | nb3b | use of non-bonded 3-body harmonic pair style | +-------------+------------------------------------------------------------------+ | neb | nudged elastic band (NEB) calculation for barrier finding | diff --git a/doc/src/Howto_drude2.rst b/doc/src/Howto_drude2.rst index d95f5c02aa..24c21f27b1 100644 --- a/doc/src/Howto_drude2.rst +++ b/doc/src/Howto_drude2.rst @@ -9,6 +9,8 @@ USER-DRUDE package activated. Then, the data file and input scripts have to be modified to include the Drude dipoles and how to handle them. +Example input scripts available: examples/USER/drude + ---------- **Overview of Drude induced dipoles** diff --git a/doc/src/Library_config.rst b/doc/src/Library_config.rst index a5b87e23a7..04b12f35de 100644 --- a/doc/src/Library_config.rst +++ b/doc/src/Library_config.rst @@ -15,6 +15,8 @@ This section documents the following functions: - :cpp:func:`lammps_config_package_count` - :cpp:func:`lammps_config_package_name` - :cpp:func:`lammps_config_accelerator` +- :cpp:func:`lammps_has_gpu_device` +- :cpp:func:`lammps_gpu_device_info` - :cpp:func:`lammps_has_style` - :cpp:func:`lammps_style_count` - :cpp:func:`lammps_style_name` @@ -132,6 +134,16 @@ approach. ----------------------- +.. doxygenfunction:: lammps_has_gpu_device + :project: progguide + +----------------------- + +.. doxygenfunction:: lammps_get_gpu_device_info + :project: progguide + +----------------------- + .. doxygenfunction:: lammps_has_style :project: progguide diff --git a/doc/src/Packages_details.rst b/doc/src/Packages_details.rst index f1c590d850..d6f40b3228 100644 --- a/doc/src/Packages_details.rst +++ b/doc/src/Packages_details.rst @@ -69,6 +69,7 @@ page gives those details. * :ref:`USER-ATC ` * :ref:`USER-AWPMD ` * :ref:`USER-BOCS ` + * :ref:`USER-BROWNIAN ` * :ref:`USER-CGDNA ` * :ref:`USER-CGSDK ` * :ref:`USER-COLVARS ` @@ -1266,6 +1267,26 @@ Example inputs are in the examples/USER/bocs folder. ---------- +.. _PKG-USER-BROWNIAN: + +USER-BROWNIAN package +--------------------- + +**Contents:** + +This package provides :doc:`fix brownian, fix brownian/sphere, and +fix brownian/asphere ` as well as +:doc:`fix propel/self ` which allow to do Brownian +Dynamics time integration of point, spherical and aspherical particles +and also support self-propelled particles. + +**Authors:** Sam Cameron (University of Bristol), +Stefan Paquay (while at Brandeis University) (initial version of fix propel/self) + +Example inputs are in the examples/USER/brownian folder. + +---------- + .. _PKG-USER-CGDNA: USER-CGDNA package diff --git a/doc/src/Packages_user.rst b/doc/src/Packages_user.rst index 00d1dfb67b..23325e8357 100644 --- a/doc/src/Packages_user.rst +++ b/doc/src/Packages_user.rst @@ -39,6 +39,8 @@ package: +------------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------------------------------------+------------------------------------------------------+---------+ | :ref:`USER-BOCS ` | BOCS bottom up coarse graining | :doc:`fix bocs ` | USER/bocs | no | +------------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------------------------------------+------------------------------------------------------+---------+ +| :ref:`USER-BROWNIAN ` | Brownian dynamics and self-propelled particles | :doc:`fix brownian `, :doc:`fix propel/self ` | USER/brownian | no | ++------------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------------------------------------+------------------------------------------------------+---------+ | :ref:`USER-CGDNA ` | coarse-grained DNA force fields | src/USER-CGDNA/README | USER/cgdna | no | +------------------------------------------------+-----------------------------------------------------------------+-------------------------------------------------------------------------------+------------------------------------------------------+---------+ | :ref:`USER-CGSDK ` | SDK coarse-graining model | :doc:`pair_style lj/sdk ` | USER/cgsdk | no | diff --git a/doc/src/Tools.rst b/doc/src/Tools.rst index 376489dcce..a790c33ec2 100644 --- a/doc/src/Tools.rst +++ b/doc/src/Tools.rst @@ -94,6 +94,7 @@ Miscellaneous tools * :ref:`kate ` * :ref:`LAMMPS shell ` * :ref:`LAMMPS magic patterns for file(1) ` + * :ref:`Offline build tool ` * :ref:`singularity ` * :ref:`SWIG interface ` * :ref:`vim ` @@ -756,6 +757,103 @@ See the README file in the tools/msi2lmp folder for more information. ---------- +.. _offline: + +Scripts for building LAMMPS when offline +---------------------------------------- + +In some situations it might be necessary to build LAMMPS on a system +without direct internet access. The scripts in ``tools/offline`` folder +allow you to pre-load external dependencies for both the documentation +build and for building LAMMPS with CMake. + +It does so by + + #. downloading necessary ``pip`` packages, + #. cloning ``git`` repositories + #. downloading tarballs + +to a designated cache folder. + +As of April 2021, all of these downloads make up around 600MB. By +default, the offline scripts will download everything into the +``$HOME/.cache/lammps`` folder, but this can be changed by setting the +``LAMMPS_CACHING_DIR`` environment variable. + +Once the caches have been initialized, they can be used for building the +LAMMPS documentation or compiling LAMMPS using CMake on an offline +system. + +The ``use_caches.sh`` script must be sourced into the current shell +to initialize the offline build environment. Note that it must use +the same ``LAMMPS_CACHING_DIR``. This script does the following: + + #. Set up environment variables that modify the behavior of both, + ``pip`` and ``git`` + #. Start a simple local HTTP server using Python to host files for CMake + +Afterwards, it will print out instruction on how to modify the CMake +command line to make sure it uses the local HTTP server. + +To undo the environment changes and shutdown the local HTTP server, +run the ``deactivate_caches`` command. + +Examples +^^^^^^^^ + +For all of the examples below, you first need to create the cache, which +requires an internet connection. + +.. code-block:: bash + + ./tools/offline/init_caches.sh + +Afterwards, you can disconnect or copy the contents of the +``LAMMPS_CACHING_DIR`` folder to an offline system. + +Documentation Build +^^^^^^^^^^^^^^^^^^^ + +The documentation build will create a new virtual environment that +typically first installs dependencies from ``pip``. With the offline +environment loaded, these installations will instead grab the necessary +packages from your local cache. + +.. code-block:: bash + + # if LAMMPS_CACHING_DIR is different from default, make sure to set it first + # export LAMMPS_CACHING_DIR=path/to/folder + source tools/offline/use_caches.sh + cd doc/ + make html + + deactivate_caches + +CMake Build +^^^^^^^^^^^ + +When compiling certain packages with external dependencies, the CMake +build system will download necessary files or sources from the web. For +more flexibility the CMake configuration allows users to specify the URL +of each of these dependencies. What the ``init_caches.sh`` script does +is create a CMake "preset" file, which sets the URLs for all of the known +dependencies and redirects the download to the local cache. + +.. code-block:: bash + + # if LAMMPS_CACHING_DIR is different from default, make sure to set it first + # export LAMMPS_CACHING_DIR=path/to/folder + source tools/offline/use_caches.sh + + mkdir build + cd build + cmake -D LAMMPS_DOWNLOADS_URL=${HTTP_CACHE_URL} -C "${LAMMPS_HTTP_CACHE_CONFIG}" -C ../cmake/presets/most.cmake ../cmake + make -j 8 + + deactivate_caches + +---------- + .. _phonon: phonon tool diff --git a/doc/src/comm_modify.rst b/doc/src/comm_modify.rst index 864c544fed..4e9e6325c1 100644 --- a/doc/src/comm_modify.rst +++ b/doc/src/comm_modify.rst @@ -11,13 +11,17 @@ Syntax comm_modify keyword value ... * zero or more keyword/value pairs may be appended -* keyword = *mode* or *cutoff* or *cutoff/multi* or *group* or *vel* +* keyword = *mode* or *cutoff* or *cutoff/multi* or *multi/reduce* or *group* or *vel* .. parsed-literal:: - *mode* value = *single* or *multi* = communicate atoms within a single or multiple distances + *mode* value = *single*, *multi*, or *multi/old* = communicate atoms within a single or multiple distances *cutoff* value = Rcut (distance units) = communicate atoms from this far away - *cutoff/multi* type value + *cutoff/multi* collection value + collection = atom collection or collection range (supports asterisk notation) + value = Rcut (distance units) = communicate atoms for selected types from this far away + *reduce/multi* arg = none = reduce number of communicated ghost atoms for multi style + *cutoff/multi/old* type value type = atom type or type range (supports asterisk notation) value = Rcut (distance units) = communicate atoms for selected types from this far away *group* value = group-ID = only communicate atoms in the group @@ -28,7 +32,7 @@ Examples .. code-block:: LAMMPS - comm_modify mode multi + comm_modify mode multi reduce/multi comm_modify mode multi group solvent comm_modift mode multi cutoff/multi 1 10.0 cutoff/multi 2*4 15.0 comm_modify vel yes @@ -62,12 +66,18 @@ sub-domain. The distance is by default the maximum of the neighbor cutoff across all atom type pairs. For many systems this is an efficient algorithm, but for systems with -widely varying cutoffs for different type pairs, the *multi* mode can -be faster. In this case, each atom type is assigned its own distance +widely varying cutoffs for different type pairs, the *multi* or *multi/old* mode can +be faster. In *multi*, each atom is assigned to a collection which should +correspond to a set of atoms with similar interaction cutoffs. +In this case, each atom collection is assigned its own distance cutoff for communication purposes, and fewer atoms will be -communicated. See the :doc:`neighbor multi ` command for a -neighbor list construction option that may also be beneficial for -simulations of this kind. +communicated. in *multi/old*, a similar technique is used but atoms +are grouped by atom type. See the :doc:`neighbor multi ` and +:doc:`neighbor multi/old ` commands for +neighbor list construction options that may also be beneficial for +simulations of this kind. The *multi* communiction mode is only compatable +with the *multi* neighbor style. The *multi/old* communication mode is compatble +with both the *multi* and *multi/old* neighbor styles. The *cutoff* keyword allows you to extend the ghost cutoff distance for communication mode *single*\ , which is the distance from the borders @@ -87,12 +97,26 @@ warning is printed, if this bond based estimate is larger than the communication cutoff used. The *cutoff/multi* option is equivalent to *cutoff*\ , but applies to -communication mode *multi* instead. Since in this case the communication -cutoffs are determined per atom type, a type specifier is needed and -cutoff for one or multiple types can be extended. Also ranges of types -using the usual asterisk notation can be given. For granular pair styles, -the default cutoff is set to the sum of the current maximum atomic radii -for each type. +communication mode *multi* instead. Since the communication +cutoffs are determined per atom collections, a collection specifier is needed and +cutoff for one or multiple collections can be extended. Also ranges of collections +using the usual asterisk notation can be given. +Collections are indexed from 1 to N where N is the total number of collections. +Note that the arguments for *cutoff/multi* are parsed right before each +simulation to account for potential changes in the number of collections. +Custom cutoffs are preserved between runs but if collections are redefined, +one may want to respecify communication cutoffs. +For granular pair styles,the default cutoff is set to the sum of the +current maximum atomic radii for each collection. +The *cutoff/multi/old* option is similar to *cutoff/multi* except it +operates on atom types as opposed to collections. + +The *reduce/multi* option applies to *multi* and sets the communication +cutoff for a particle equal to the maximum interaction distance between particles +in the same collection. This reduces the number of +ghost atoms that need to be communicated. This method is only compatible with the +*multi* neighbor style and requires a half neighbor list and Newton on. +See the :doc:`neighbor multi ` command for more information. These are simulation scenarios in which it may be useful or even necessary to set a ghost cutoff > neighbor cutoff: diff --git a/doc/src/compute_fep.rst b/doc/src/compute_fep.rst index 279148a55d..ef908acfc0 100644 --- a/doc/src/compute_fep.rst +++ b/doc/src/compute_fep.rst @@ -48,6 +48,8 @@ Examples compute 1 all fep 298 pair lj/cut epsilon 1 * v_delta pair lj/cut sigma 1 * v_delta volume yes compute 1 all fep 300 atom charge 2 v_delta +Example input scripts available: examples/USER/fep + Description """"""""""" diff --git a/doc/src/compute_temp_drude.rst b/doc/src/compute_temp_drude.rst index 418f2e1e5d..7e0f5f6555 100644 --- a/doc/src/compute_temp_drude.rst +++ b/doc/src/compute_temp_drude.rst @@ -20,6 +20,8 @@ Examples compute TDRUDE all temp/drude +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/fix.rst b/doc/src/fix.rst index 109bfb00be..41c9732c62 100644 --- a/doc/src/fix.rst +++ b/doc/src/fix.rst @@ -182,6 +182,9 @@ accelerated styles exist. * :doc:`ave/time ` - compute/output global time-averaged quantities * :doc:`aveforce ` - add an averaged force to each atom * :doc:`balance ` - perform dynamic load-balancing +* :doc:`brownian ` - overdamped translational brownian motion +* :doc:`brownian/asphere ` - overdamped translational and rotational brownian motion for ellipsoids +* :doc:`brownian/sphere ` - overdamped translational and rotational brownian motion for spheres * :doc:`bocs ` - NPT style time integration with pressure correction * :doc:`bond/break ` - break bonds on the fly * :doc:`bond/create ` - create bonds on the fly diff --git a/doc/src/fix_adapt_fep.rst b/doc/src/fix_adapt_fep.rst index b45ac80429..81a34ab75e 100644 --- a/doc/src/fix_adapt_fep.rst +++ b/doc/src/fix_adapt_fep.rst @@ -56,6 +56,9 @@ Examples fix 1 all adapt/fep 1 pair lj/cut epsilon * * v_scale1 coul/cut scale 3 3 v_scale2 scale yes reset yes fix 1 all adapt/fep 10 atom diameter 1 v_size + +Example input scripts available: examples/USER/fep + Description """"""""""" diff --git a/doc/src/fix_bond_react.rst b/doc/src/fix_bond_react.rst index 5291aff81b..f42952ecdc 100644 --- a/doc/src/fix_bond_react.rst +++ b/doc/src/fix_bond_react.rst @@ -328,8 +328,8 @@ keyword 'ChiralIDs' lists the atom IDs of chiral atoms whose handedness should be enforced. The fifth optional section begins with the keyword 'Constraints' and lists additional criteria that must be satisfied in order for the reaction to occur. Currently, there are -five types of constraints available, as discussed below: 'distance', -'angle', 'dihedral', 'arrhenius', and 'rmsd'. +six types of constraints available, as discussed below: 'distance', +'angle', 'dihedral', 'arrhenius', 'rmsd', and 'custom'. A sample map file is given below: @@ -500,6 +500,45 @@ example, the molecule fragment could consist of only the backbone atoms of a polymer chain. This constraint can be used to enforce a specific relative position and orientation between reacting molecules. +The constraint of type 'custom' has the following syntax: + +.. parsed-literal:: + + custom *varstring* + +where 'custom' is the required keyword, and *varstring* is a +variable expression. The expression must be a valid equal-style +variable formula that can be read by the :doc:`variable ` command, +after any special reaction functions are evaluated. If the resulting +expression is zero, the reaction is prevented from occurring; +otherwise, it is permitted to occur. There are two special reaction +functions available, 'rxnsum' and 'rxnave'. These functions operate +over the atoms in a given reaction site, and have one mandatory +argument and one optional argument. The mandatory argument is the +identifier for an atom-style variable. The second, optional argument +is the name of a molecule fragment in the pre-reaction template, and +can be used to operate over a subset of atoms in the reaction site. +The 'rxnsum' function sums the atom-style variable over the reaction +site, while the 'rxnave' returns the average value. For example, a +constraint on the total potential energy of atoms involved in the +reaction can be imposed as follows: + +.. code-block:: LAMMPS + +compute 1 all pe/atom # in LAMMPS input script +variable my_pe atom c_1 # in LAMMPS input script + +.. code-block:: LAMMPS + +custom "rxnsum(v_my_pe) > 100" # in Constraints section of map file + +The above example prevents the reaction from occurring unless the +total potential energy of the reaction site is above 100. The variable +expression can be interpreted as the probability of the reaction +occurring by using an inequality and the 'random(x,y,z)' function +available as an equal-style variable input, similar to the 'arrhenius' +constraint above. + By default, all constraints must be satisfied for the reaction to occur. In other words, constraints are evaluated as a series of logical values using the logical AND operator "&&". More complex logic diff --git a/doc/src/fix_brownian.rst b/doc/src/fix_brownian.rst new file mode 100644 index 0000000000..d032346617 --- /dev/null +++ b/doc/src/fix_brownian.rst @@ -0,0 +1,216 @@ +.. index:: fix brownian +.. index:: fix brownian/sphere +.. index:: fix brownian/asphere + +fix brownian command +=========================== + +fix brownian/sphere command +=========================== + +fix brownian/sphere command +=========================== + + +Syntax +"""""" + +.. parsed-literal:: + + fix ID group-ID style_name temp seed keyword args + +* ID, group-ID are documented in :doc:`fix ` command +* style_name = *brownian* or *brownian/sphere* or *brownian/asphere* +* temp = temperature +* seed = random number generator seed +* one or more keyword/value pairs may be appended +* keyword = *rng* or *dipole* or *gamma_r_eigen* or *gamma_t_eigen* or *gamma_r* or *gamma_t* + + .. parsed-literal:: + + *rng* value = *uniform* or *gaussian* or *none* + *uniform* = use uniform random number generator + *gaussian* = use gaussian random number generator + *none* = turn off noise + *dipole* value = *mux* and *muy* and *muz* for *brownian/asphere* + *mux*, *muy*, and *muz* = update orientation of dipole having direction (*mux*,*muy*,*muz*) in body frame of rigid body + *gamma_r_eigen* values = *gr1* and *gr2* and *gr3* for *brownian/asphere* + *gr1*, *gr2*, and *gr3* = diagonal entries of body frame rotational friction tensor + *gamma_r* values = *gr* for *brownian/sphere* + *gr* = magnitude of the (isotropic) rotational friction tensor + *gamma_t_eigen* values = *gt1* and *gt2* and *gt3* for *brownian/asphere* + *gt1*, *gt2*, and *gt3* = diagonal entries of body frame translational friction tensor + *gamma_t* values = *gt* for *brownian* and *brownian/sphere* + *gt* = magnitude of the (isotropic) translational friction tensor + + +Examples +"""""""" + +.. code-block:: LAMMPS + + fix 1 all brownian 1.0 12908410 gamma_t 1.0 + fix 1 all brownian 1.0 12908410 gamma_t 3.0 rng gaussian + fix 1 all brownian/sphere 1.0 1294019 gamma_t 3.0 gamma_r 1.0 + fix 1 all brownian/sphere 1.0 19581092 gamma_t 1.0 gamma_r 0.3 rng none + fix 1 all brownian/asphere 1.0 1294019 gamma_t_eigen 1.0 2.0 3.0 gamma_r_eigen 4.0 7.0 8.0 rng gaussian + fix 1 all brownian/asphere 1.0 1294019 gamma_t_eigen 1.0 2.0 3.0 gamma_r_eigen 4.0 7.0 8.0 dipole 1.0 0.0 0.0 + + +Description +""""""""""" + +Perform Brownian Dynamics time integration to update position, velocity, +dipole orientation (for spheres) and quaternion orientation (for +ellipsoids, with optional dipole update as well) of all particles in the +fix group in each timestep. Brownian Dynamics uses Newton's laws of +motion in the limit that inertial forces are negligible compared to +viscous forces. The stochastic equation of motion for the center of mass +positions is + +.. math:: + + d\mathbf{r} = \mathbf{\gamma}_t^{-1}\mathbf{F}dt+\sqrt{2k_BT}\mathbf{\gamma}_t^{-1/2}d\mathbf{W}_t, + +in the lab-frame (i.e. :math:`\mathbf{\gamma}_t` is not diagonal, but +only depends on orientation and so the noise is still additive). + +The rotational motion for the spherical and ellipsoidal particles is not +as simple an expression, but is chosen to replicate the Boltzmann +distribution for the case of conservative torques (see :ref:`(Ilie) +` or :ref:`(Delong) `). + +For the style *brownian*, only the positions of the particles are +updated. This is therefore suitable for point particle simulations. + +For the style *brownian/sphere*, the positions of the particles are +updated, and a dipole slaved to the spherical orientation is also +updated. This style therefore requires the hybrid atom style +:doc:`atom_style dipole ` and :doc:`atom_style sphere +`. + +For the style *brownian/asphere*, the center of mass positions and the +quaternions of ellipsoidal particles are updated. This fix style is +suitable for equations of motion where the rotational and translational +friction tensors can be diagonalized in a certain (body) reference frame. + + +--------- + +.. note:: + + This integrator does not by default assume a relationship between the + rotational and translational friction tensors, though such a relationship + should exist in the case of no-slip boundary conditions between the particles and + the surrounding (implicit) solvent. E.g. in the case of spherical particles, + the condition :math:`\gamma_t=3\gamma_r/\sigma^2` must be explicitly + accounted for by setting *gamma_t* to 3x and *gamma_r* to x (where + :math:`\sigma` is the spherical diameter). A similar (though more complex) + relationship holds for ellipsoids and rod-like particles. + +--------- + +.. note:: + + Temperature computation using the :doc:`compute temp ` + will not correctly compute temperature of these overdamped dynamics + since we are explicitly neglecting inertial effects. + Furthermore, this time integrator does not add the stochastic terms or + viscous terms to the force and/or torques. Rather, they are just added + in to the equations of motion to update the degrees of freedom. + +--------- + + +If the *rng* keyword is used with the *uniform* value, then the noise +is generated from a uniform distribution (see +:ref:`(Dunweg) ` for why this works). This is the same method +of noise generation as used in :doc:`fix_langevin `. + +If the *rng* keyword is used with the *gaussian* value, then the noise +is generated from a gaussian distribution. Typically this added +complexity is unnecessary, and one should be fine using the *uniform* +value for reasons argued in :ref:`(Dunweg) `. + +If the *rng* keyword is used with the *none* value, then the noise +terms are set to zero. + +The *gamma_t* keyword sets the (isotropic) translational viscous damping. +Required for (and only compatible with) *brownian* and *brownian/sphere*. +The units of *gamma_t* are mass/time. + +The *gamma_r* keyword sets the (isotropic) rotational viscous damping. +Required for (and only compatible with) *brownian/sphere*. +The units of *gamma_r* are mass*length**2/time. + +The *gamma_r_eigen*, and *gamma_t_eigen* keywords are the eigenvalues of +the rotational and viscous damping tensors (having the same units as +their isotropic counterparts). Required for (and only compatible with) +*brownian/asphere*. For a 2D system, the first two values of *gamma_r_eigen* +must be inf (only rotation in xy plane), and the third value of *gamma_t_eigen* +must be inf (only diffusion in xy plane). + +If the *dipole* keyword is used, then the dipole moments of the particles +are updated as described above. Only compatible with *brownian/asphere* +(as *brownian/sphere* updates dipoles automatically). + +---------- + +.. note:: + For style *brownian/asphere*, the components *gamma_t_eigen* =(x,x,x) and + *gamma_r_eigen* = (y,y,y), the dynamics will replicate those of the + *brownian/sphere* style with *gamma_t* = x and *gamma_r* = y. + +---------- + +Restart, fix_modify, output, run start/stop, minimize info +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +No information about this fix is written to :doc:`binary restart files `. +No global or per-atom quantities are stored +by this fix for access by various :doc:`output commands `. + + +No parameter of this fix can be used with the *start/stop* keywords of +the :doc:`run ` command. This fix is not invoked during +:doc:`energy minimization `. + +Restrictions +"""""""""""" + +The style *brownian/sphere* fix requires that atoms store torque and angular velocity (omega) +as defined by the :doc:`atom_style sphere ` command. +The style *brownian/asphere* fix requires that atoms store torque and quaternions +as defined by the :doc:`atom_style ellipsoid ` command. +If the *dipole* keyword is used, they must also store a dipole moment +as defined by the :doc:`atom_style dipole ` command. + +This fix is part of the USER-BROWNIAN package. It is only enabled if +LAMMPS was built with that package. See the :doc:`Build package ` +doc page for more info. + +Related commands +"""""""""""""""" + +:doc:`fix propel/self `, +:doc:`fix langevin `, :doc:`fix nve/sphere `, + +Default +""""""" + +The default for *rng* is *uniform*. The default for the rotational and translational friction +tensors are the identity tensor. + +---------- + +.. _Ilie1: + +**(Ilie)** Ilie, Briels, den Otter, Journal of Chemical Physics, 142, 114103 (2015). + +.. _Delong1: + +**(Delong)** Delong, Usabiaga, Donev, Journal of Chemical Physics. 143, 144107 (2015) + +.. _Dunweg7: + +**(Dunweg)** Dunweg and Paul, Int J of Modern Physics C, 2, 817-27 (1991). diff --git a/doc/src/fix_drude.rst b/doc/src/fix_drude.rst index 385a847749..a879f1594b 100644 --- a/doc/src/fix_drude.rst +++ b/doc/src/fix_drude.rst @@ -22,6 +22,8 @@ Examples fix 1 all drude 1 1 0 1 0 2 2 2 fix 1 all drude C C N C N D D D +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/fix_drude_transform.rst b/doc/src/fix_drude_transform.rst index 792b041576..28d57306ea 100644 --- a/doc/src/fix_drude_transform.rst +++ b/doc/src/fix_drude_transform.rst @@ -25,6 +25,8 @@ Examples fix 3 all drude/transform/direct fix 1 all drude/transform/inverse +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/fix_langevin_drude.rst b/doc/src/fix_langevin_drude.rst index ad5a876712..c075a56549 100644 --- a/doc/src/fix_langevin_drude.rst +++ b/doc/src/fix_langevin_drude.rst @@ -35,6 +35,8 @@ Examples fix 3 all langevin/drude 300.0 100.0 19377 1.0 20.0 83451 fix 1 all langevin/drude 298.15 100.0 19377 5.0 10.0 83451 zero yes +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/fix_precession_spin.rst b/doc/src/fix_precession_spin.rst index 183753db5f..6a563bc32f 100644 --- a/doc/src/fix_precession_spin.rst +++ b/doc/src/fix_precession_spin.rst @@ -125,10 +125,10 @@ axis along the :math:`(1 1 1)`-type cube diagonals). :math:`K_2^c > diagonals. See chapter 2 of :ref:`(Skomski) ` for more details on cubic anisotropies. -Style *stt* is used to simulate the interaction between the spins and +Style *stt* is used to simulate the interaction between the spins and a spin-transfer torque. -See equation (7) of :ref:`(Chirac) ` for more details about the -implemented spin-transfer torque term. +See equation (7) of :ref:`(Chirac) ` for more details about the +implemented spin-transfer torque term. In all cases, the choice of :math:`(x y z)` only imposes the vector directions for the forces. Only the direction of the vector is @@ -139,12 +139,12 @@ Those styles can be combined within one single command line. .. note:: - The norm of all vectors defined with the precession/spin command + The norm of all vectors defined with the precession/spin command have to be non-zero. For example, defining "fix 1 all precession/spin zeeman 0.1 0.0 0.0 0.0" would result - in an error message. + in an error message. Since those vector components are used to compute the inverse of the - field (or anisotropy) vector norm, setting a zero-vector would result + field (or anisotropy) vector norm, setting a zero-vector would result in a division by zero. ---------- @@ -197,6 +197,6 @@ Oxford University Press. .. _Chirac1: -**(Chirac)** Chirac, Théophile, et al. Ultrafast antiferromagnetic -switching in NiO induced by spin transfer torques. +**(Chirac)** Chirac, Theophile, et al. Ultrafast antiferromagnetic +switching in NiO induced by spin transfer torques. Physical Review B 102.13 (2020): 134415. diff --git a/doc/src/fix_propel_self.rst b/doc/src/fix_propel_self.rst index 3a1bfb3166..ddc96817f9 100644 --- a/doc/src/fix_propel_self.rst +++ b/doc/src/fix_propel_self.rst @@ -8,52 +8,121 @@ Syntax .. parsed-literal:: - fix ID group-ID propel/self mode magnitude keyword values ... + fix ID group-ID propel/self mode magnitude keyword values * ID, group-ID are documented in :doc:`fix ` command * propel/self = style name of this fix command -* mode = velocity or quat -* magnitude = magnitude of the active force -* one or more keyword/value pairs may be appended to args -* keyword = *types* +* mode = *dipole* or *velocity* or *quat* +* magnitude = magnitude of self-propulsion force +* zero or one keyword/value pairs may be appended +* keyword = *qvector* + + .. parsed-literal:: + + *qvector* value = direction of force in ellipsoid frame + *sx*, *sy*, *sz* = components of *qvector* - *types* values = one or more atom types Examples """""""" .. code-block:: LAMMPS - fix active_group all propel/self velocity 1.0 - fix constant_velocity all viscous 1.0 - - fix active_group all propel/self quat 1.0 - - fix active all propel/self quat 1.0 types 1 2 4 + fix active all propel/self dipole 40.0 + fix active all propel/self velocity 10.0 + fix active all propel/self quat 15.7 qvector 1.0 0.0 0.0 Description """"""""""" -Adds a force of a constant magnitude to each atom in the group. The nature in -which the force is added depends on the mode. +Add a force to each atom in the group due to a self-propulsion force. The +force is given by -For *mode* = *velocity*, the active force acts along the velocity vector of -each atom. This can be interpreted as a velocity-dependent friction, -such as proposed by :ref:`(Erdmann) `. +.. math:: -For *mode* = *quat* the force is applied along the axis obtained -by rotating the x-axis along the atom's quaternion. In other words, the -force is along the x-axis in the atom's body frame. This mode requires -all atoms in the group to have a quaternion, so atom_style should -either be ellipsoid or body. In combination with Langevin thermostat -for translation and rotation in the overdamped regime, the quaternion -mode corresponds to the active Brownian particle model introduced by -:ref:`(Henkes) `, :ref:`(Bialke) ` and :ref:`(Fily) -`. + F_i = f_P e_i -By default, this fix is applied to all atoms in the group. You can -override this behavior by specifying the atom types the fix should work -on through the *types* keyword. +where *i* is the particle the force is being applied to, :math:`f_P` +is the magnitude of the force, and :math:`e_i` is the vector direction +of the force. The specification of :math:`e_i` is based on which of the +three keywords (*dipole* or *velocity* or *quat*) one selects. + +For mode *dipole*, :math:`e_i` is just equal to +the dipole vectors of the atoms in the group. Therefore, if the dipoles +are not unit vectors, the :math:`e_i` will not be unit vectors. + +.. note:: + + If another command changes the magnitude of the dipole, this force will + change accordingly (since :math:`|e_i|` will change, which is physically + equivalent to re-scaling :math:`f_P` while keeping :math:`|e_i|` constant), + and no warning will be provided by LAMMPS. This is almost never what you + want, so ensure you are not changing dipole magnitudes with another LAMMPS + fix or pair style. Furthermore, self-propulsion forces (almost) always + set :math:`e_i` to be a unit vector for all times, so it's best to set + all the dipole magnitudes to 1.0 unless you have a good reason not to + (see the :doc:`set ` command on how to do this). + +For mode *velocity*, :math:`e_i` points in the direction +of the current velocity (a unit-vector). This can be interpreted as a +velocity-dependent friction, as proposed by e.g. :ref:`(Erdmann) `. + +For mode *quat*, :math:`e_i` points in the direction of a unit +vector, oriented in the coordinate frame of the ellipsoidal particles, +which defaults to point along the x-direction. This default behavior +can be changed by via the *quatvec* keyword. + +The optional *quatvec* keyword specifies the direction of self-propulsion +via a unit vector (sx,sy,sz). The arguments *sx*, *sy*, and *sz*, are +defined within the coordinate frame of the atom's +ellipsoid. For instance, for an ellipsoid with long axis along +its x-direction, if one wanted the self-propulsion force to also +be along this axis, set *sx* equal to 1 and *sy*, *sz* both equal +to zero. This keyword may only be specified for mode *quat*. + +.. note:: + + In using keyword *quatvec*, the three arguments *sx*, + *sy*, and *sz* will be automatically normalized to components + of a unit vector internally to avoid users having to explicitly + do so themselves. Therefore, in mode *quat*, the vectors :math:`e_i` + will always be of unit length. + + +Along with adding a force contribution, this fix can also +contribute to the virial (pressure) of the system, defined as +:math:`f_P \sum_i /(d V)`, where :math:`r_i` is the +*unwrapped* coordinate of particle i in the case of periodic +boundary conditions. See :ref:`(Winkler) ` for a +discussion of this active pressure contribution. + +For modes *dipole* and *quat*, this fix is by default +included in pressure computations. + +For mode *velocity*, this fix is by default not included +in pressure computations. + + +.. note:: + + In contrast to equilibrium systems, pressure of active systems + in general depends on the geometry of the container. + The active pressure contribution as calculated in this fix + is only valid for certain boundary conditions (spherical + walls, rectangular walls, or periodic boundary conditions). + For other geometries, the pressure must be measured via + explicit calculation of the force per unit area on a wall, + and so one must not calculate it using this fix. + (Use :doc:`fix_modify ` as described below + to turn off the virial contribution of this fix). Again, + see :ref:`(Winkler) ` for discussion of why this + is the case. + + Furthermore, when dealing with active systems, the temperature + is no longer well defined. Therefore, one should ensure that + the *virial* flag is used in the + :doc:`compute pressure ` command (turning + off temperature contributions). ---------- @@ -62,40 +131,48 @@ Restart, fix_modify, output, run start/stop, minimize info No information about this fix is written to :doc:`binary restart files `. -This fix is not imposed during minimization. +The :doc:`fix_modify ` *virial* option is supported by this +fix to add the contribution due to the added forces on atoms to the +system's virial as part of :doc:`thermodynamic output `. +The default is *virial yes* for keywords *dipole* and *quat*. The +default is *virial no* for keyword *velocity*. + + +No parameter of this fix can be used with the *start/stop* keywords of +the :doc:`run ` command. + Restrictions """""""""""" -In quat mode, this fix makes use of per-atom quaternions to take -into account the fact that the orientation can rotate and hence the -direction of the active force can change. The quat mode -of this fix only works with atom_style ellipsoid. +With keyword *dipole*, this fix only works when the DIPOLE package is enabled. +See the :doc:`Build package ` doc page for more info. + +This fix is part of the USER-BROWNIAN package. It is only enabled if +LAMMPS was built with that package. See the :doc:`Build package ` +doc page for more info. + Related commands """""""""""""""" -:doc:`fix setforce `, :doc:`fix addforce ` - -.. _Erdmann: - -**(Erdmann)** U. Erdmann , W. Ebeling, L. Schimansky-Geier, and F. Schweitzer, -Eur. Phys. J. B 15, 105-113, 2000. - -.. _Henkes: - -**(Henkes)** Henkes, S, Fily, Y., and Marchetti, M. C. Phys. Rev. E, 84, 040301(R), 2011. - -.. _Bialke: - -**(Bialke)** J. Bialke, T. Speck, and H Loewen, Phys. Rev. Lett. 108, 168301, 2012. - -.. _Fily: - -**(Fily)** Y. Fily and M.C. Marchetti, Phys. Rev. Lett. 108, 235702, 2012. +:doc:`fix efield ` , :doc:`fix setforce `, +:doc:`fix addforce ` Default """"""" -types +none +---------- + + +.. _Erdmann1: + +**(Erdmann)** U. Erdmann , W. Ebeling, L. Schimansky-Geier, and F. Schweitzer, +Eur. Phys. J. B 15, 105-113, 2000. + + +.. _Winkler1: + +**(Winkler)** Winkler, Wysocki, and Gompper, Soft Matter, 11, 6680 (2015). diff --git a/doc/src/fix_tgnh_drude.rst b/doc/src/fix_tgnh_drude.rst index 1854655a82..a6e9832833 100644 --- a/doc/src/fix_tgnh_drude.rst +++ b/doc/src/fix_tgnh_drude.rst @@ -62,6 +62,8 @@ Examples fix 2 jello tgnpt/drude temp 300.0 300.0 100.0 1.0 20.0 tri 5.0 5.0 1000.0 fix 2 ice tgnpt/drude temp 250.0 250.0 100.0 1.0 20.0 x 1.0 1.0 0.5 y 2.0 2.0 0.5 z 3.0 3.0 0.5 yz 0.1 0.1 0.5 xz 0.2 0.2 0.5 xy 0.3 0.3 0.5 nreset 1000 +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/neigh_modify.rst b/doc/src/neigh_modify.rst index 2618953dd7..208eca22ec 100644 --- a/doc/src/neigh_modify.rst +++ b/doc/src/neigh_modify.rst @@ -14,7 +14,7 @@ Syntax .. parsed-literal:: - keyword = *delay* or *every* or *check* or *once* or *cluster* or *include* or *exclude* or *page* or *one* or *binsize* + keyword = *delay* or *every* or *check* or *once* or *cluster* or *include* or *exclude* or *page* or *one* or *binsize* or *collection/type* or *collection/interval* *delay* value = N N = delay building until this many steps since last build *every* value = M @@ -47,6 +47,12 @@ Syntax N = max number of neighbors of one atom *binsize* value = size size = bin size for neighbor list construction (distance units) + *collection/type* values = N arg1 ... argN + N = number of custom collections + arg = N separate lists of types (see below) + *collection/interval* values = N arg1 ... argN + N = number of custom collections + arg = N separate cutoffs for intervals (see below) Examples """""""" @@ -58,6 +64,8 @@ Examples neigh_modify exclude group frozen frozen check no neigh_modify exclude group residue1 chain3 neigh_modify exclude molecule/intra rigid + neigh_modify collection/type 2 1*2,5 3*4 + neigh_modify collection/interval 2 1.0 10.0 Description """"""""""" @@ -188,8 +196,9 @@ atom can have. The *binsize* option allows you to specify what size of bins will be used in neighbor list construction to sort and find neighboring atoms. By default, for :doc:`neighbor style bin `, LAMMPS uses bins -that are 1/2 the size of the maximum pair cutoff. For :doc:`neighbor style multi `, the bins are 1/2 the size of the minimum pair -cutoff. Typically these are good values for minimizing the time for +that are 1/2 the size of the maximum pair cutoff. For :doc:`neighbor style multi `, +the bins are 1/2 the size of the collection interaction cutoff. +Typically these are good values for minimizing the time for neighbor list construction. This setting overrides the default. If you make it too big, there is little overhead due to looping over bins, but more atoms are checked. If you make it too @@ -197,6 +206,30 @@ small, the optimal number of atoms is checked, but bin overhead goes up. If you set the binsize to 0.0, LAMMPS will use the default binsize of 1/2 the cutoff. +The *collection/type* option allows you to define collections of atom +types, used by the *multi* neighbor mode. By grouping atom types with +similar physical size or interaction cutoff lengths, one may be able +to improve performance by reducing +overhead. You must first specify the number of collections N to be +defined followed by N lists of types. Each list consists of a series of type +ranges separated by commas. The range can be specified as a +single numeric value, or a wildcard asterisk can be used to specify a range +of values. This takes the form "\*" or "\*n" or "n\*" or "m\*n". For +example, if M = the number of atom types, then an asterisk with no numeric +values means all types from 1 to M. A leading asterisk means all types +from 1 to n (inclusive). A trailing asterisk means all types from n to M +(inclusive). A middle asterisk means all types from m to n (inclusive). +Note that all atom types must be included in exactly one of the N collections. + +The *collection/interval* option provides a similar capability. +This command allows a user to define collections by specifying a +series of cutoff intervals. LAMMPS will automatically sort atoms into these intervals +based on their type-dependent cutoffs or their finite size. +You must first specify the number of collections N to be +defined followed by N values representing the upper cutoff of each interval. +This command is particularly useful for granular pairstyles where the interaction distance +of particles depends on their radius and may not depend on their atom type. + Restrictions """""""""""" diff --git a/doc/src/neighbor.rst b/doc/src/neighbor.rst index 98ee0d0b6a..1b10ec8998 100644 --- a/doc/src/neighbor.rst +++ b/doc/src/neighbor.rst @@ -11,7 +11,7 @@ Syntax neighbor skin style * skin = extra distance beyond force cutoff (distance units) -* style = *bin* or *nsq* or *multi* +* style = *bin* or *nsq* or *multi* or *multi/old* Examples """""""" @@ -55,14 +55,31 @@ For the *bin* style, the bin size is set to 1/2 of the largest cutoff distance between any pair of atom types and a single set of bins is defined to search over for all atom types. This can be inefficient if one pair of types has a very long cutoff, but -other type pairs have a much shorter cutoff. For style *multi* the -bin size is set to 1/2 of the shortest cutoff distance and multiple -sets of bins are defined to search over for different atom types. +other type pairs have a much shorter cutoff. The *multi* style uses +different sized bins for collections of different sized particles, where +"size" may mean the physical size of the particle or its cutoff +distance for interacting with other particles. Different +sets of bins are then used to construct the neighbor lists as as further +described by Shire, Hanley, and Stratford :ref:`(Shire) `. This imposes some extra setup overhead, but the searches themselves -may be much faster for the short-cutoff cases. -See the :doc:`comm_modify mode multi ` command for a -communication option that may also be beneficial for simulations of -this kind. +may be much faster. By default, each atom type defines a separate +collection of particles. For systems where two or more atom types +have the same size (either physical size or cutoff distance), the +definition of collections can be customized, which can result in less +overhead and faster performance. See the :doc:`neigh_modify ` +command for how to define custom collections. Whether the collection +definition is customized or not, also see the +:doc:`comm_modify mode multi ` command for communication +options that further improve performance in a manner consistent with +neighbor style multi. + +An alternate style, *multi/old*, sets the bin size to 1/2 of the shortest +cutoff distance and multiple sets of bins are defined to search over for +different atom types. This algorithm used to be the default *multi* +algorithm in LAMMPS but was found to be significantly slower than the new +approach. For now we are keeping the old option in case there are use cases +where multi/old outperforms the new multi style. + The :doc:`neigh_modify ` command has additional options that control how often neighbor lists are built and which pairs are @@ -90,3 +107,9 @@ Default | 0.001 bin for units = si, skin = 0.001 meters = 1.0 mm | 0.1 bin for units = cgs, skin = 0.1 cm = 1.0 mm | + +---------- + +.. _bytype-Shire: + +**(Shire)** Shire, Hanley and Stratford, Comp Part Mech, (2020). diff --git a/doc/src/pair_coul_tt.rst b/doc/src/pair_coul_tt.rst index 11b4e72a60..b01d46d7ae 100644 --- a/doc/src/pair_coul_tt.rst +++ b/doc/src/pair_coul_tt.rst @@ -29,6 +29,7 @@ Examples pair_coeff 1 2 coul/tt 4.0 1.0 4 12.0 pair_coeff 1 3* coul/tt 4.5 1.0 4 +Example input scripts available: examples/USER/drude Description """"""""""" diff --git a/doc/src/pair_dpd_ext.rst b/doc/src/pair_dpd_ext.rst new file mode 100644 index 0000000000..cfc72fe84c --- /dev/null +++ b/doc/src/pair_dpd_ext.rst @@ -0,0 +1,138 @@ +.. index:: pair_style dpd/ext +.. index:: pair_style dpd/ext/tstat + +pair_style dpd/ext command +========================== + +pair_style dpd/ext/tstat command +================================ + +Syntax +"""""" + + +.. code-block:: LAMMPS + + pair_style dpd/ext T cutoff seed + pair_style dpd/ext/tstat Tstart Tstop cutoff seed + +* T = temperature (temperature units) +* Tstart,Tstop = desired temperature at start/end of run (temperature units) +* cutoff = global cutoff for DPD interactions (distance units) +* seed = random # seed (positive integer) + +Examples +"""""""" + + +.. code-block:: LAMMPS + + pair_style dpd/ext 1.0 2.5 34387 + pair_coeff 1 1 25.0 4.5 4.5 0.5 0.5 1.2 + pair_coeff 1 2 40.0 4.5 4.5 0.5 0.5 1.2 + + pair_style dpd/ext/tstat 1.0 1.0 2.5 34387 + pair_coeff 1 1 4.5 4.5 0.5 0.5 1.2 + pair_coeff 1 2 4.5 4.5 0.5 0.5 1.2 + +Description +""""""""""" + +The style *dpd/ext* computes an extended force field for dissipative particle dynamics (DPD) following the exposition in :ref:`(Groot) `, :ref:`(Junghans) `. + +Style *dpd/ext/tstat* invokes an extended DPD thermostat on pairwise interactions, equivalent to the non-conservative portion of the extended DPD force field. To use *dpd/ext/tstat* as a thermostat for another pair style, use the :doc:`pair_style hybrid/overlay ` command to compute both the desired pair interaction and the thermostat for each pair of particles. + +For the style *dpd/ext*\ , the force on atom I due to atom J is given as a sum +of 3 terms + +.. math:: + + \mathbf{f} = & f^C + f^D + f^R \qquad \qquad r < r_c \\ + f^C = & A_{ij} w(r) \hat{\mathbf{r}}_{ij} \\ + f^D = & - \gamma_{\parallel} w_{\parallel}^2(r) (\hat{\mathbf{r}}_{ij} \cdot \mathbf{v}_{ij}) \hat{\mathbf{r}}_{ij} - \gamma_{\perp} w_{\perp}^2 (r) ( \mathbf{I} - \hat{\mathbf{r}}_{ij} \hat{\mathbf{r}}_{ij}^{\rm T} ) \mathbf{v}_{ij} \\ + f^R = & \sigma_{\parallel} w_{\parallel}(r) \frac{\alpha}{\sqrt{\Delta t}} \hat{\mathbf{r}}_{ij} + \sigma_{\perp} w_{\perp} (r) ( \mathbf{I} - \hat{\mathbf{r}}_{ij} \hat{\mathbf{r}}_{ij}^{\rm T} ) \frac{\mathbf{\xi}_{ij}}{\sqrt{\Delta t}}\\ + w(r) = & 1 - r/r_c \\ + +where :math:`\mathbf{f}^C` is a conservative force, :math:`\mathbf{f}^D` is a dissipative force, and :math:`\mathbf{f}^R` is a random force. :math:`A_{ij}` is the maximum repulsion between the two atoms, :math:`\hat{\mathbf{r}}_{ij}` is a unit vector in the direction :math:`\mathbf{r}_i - \mathbf{r}_j`, :math:`\mathbf{v}_{ij} = \mathbf{v}_i - \mathbf{v}_j` is the vector difference in velocities of the two atoms, :math:`\alpha` and :math:`\mathbf{\xi}_{ij}` are Gaussian random numbers with zero mean and unit variance, :math:`\Delta t` is the timestep, :math:`w (r) = 1 - r / r_c` is a weight function for the conservative interactions that varies between 0 and 1, :math:`r_c` is the corresponding cutoff, :math:`w_{\alpha} ( r ) = ( 1 - r / \bar{r}_c )^{s_{\alpha}}`, :math:`\alpha \equiv ( \parallel, \perp )`, are weight functions with coefficients :math:`s_\alpha` that vary between 0 and 1, :math:`\bar{r}_c` is the corresponding cutoff, :math:`\mathbf{I}` is the unit matrix, :math:`\sigma_{\alpha} = \sqrt{2 k T \gamma_{\alpha}}`, where :math:`k` is the Boltzmann constant and :math:`T` is the temperature in the pair\_style command. + +For the style *dpd/ext/tstat*\ , the force on atom I due to atom J is the same as the above equation, except that the conservative :math:`\mathbf{f}^C` term is dropped. Also, during the run, T is set each timestep to a ramped value from Tstart to Tstop. + +For the style *dpd/ext*\ , the pairwise energy associated with style *dpd/ext* is only due to the conservative force term :math:`\mathbf{f}^C`, and is shifted to be zero at the cutoff distance :math:`r_c`. The pairwise virial is calculated using all three terms. There is no pairwise energy for style *dpd/ext/tstat*, but the last two terms of the formula contribute the virial. + +For the style *dpd/ext/tstat*, the force on atom I due to atom J is the same as the above equation, except that the conservative :math:`\mathbf{f}^C` term is dropped. Also, during the run, T is set each timestep to a ramped value from Tstart to Tstop. + +For the style *dpd/ext*\ , the pairwise energy associated with style *dpd/ext* is only due to the conservative force term :math:`\mathbf{f}^C`, and is shifted to be zero at the cutoff distance :math:`r_c`. The pairwise virial is calculated using all three terms. There is no pairwise energy for style *dpd/ext/tstat*, but the last two terms of the formula contribute the virial. + +For the style *dpd/ext*, the following coefficients must be defined for each pair of atoms types via the :doc:`pair_coeff ` command as in the examples above: + +* A (force units) +* :math:`\gamma_{\perp}` (force/velocity units) +* :math:`\gamma_{\parallel}` (force/velocity units) +* :math:`s_{\perp}` (unitless) +* :math:`s_{\parallel}` (unitless) +* :math:`r_c` (distance units) + +The last coefficient is optional. If not specified, the global DPD cutoff is used. Note that :math:`\sigma`'s are set equal to :math:`\sqrt{2 k T \gamma}`, where :math:`T` is the temperature set by the :doc:`pair_style ` command so it does not need to be specified. + + +For the style *dpd/ext/tstat*, the coefficients defined for each pair of atoms types via the :doc:`pair_coeff ` command is the same, except that A is not included. + +.. note:: + + If you are modeling DPD polymer chains, you may want to use the :doc:`pair_style srp ` command in conjunction with these pair styles. It is a soft segmental repulsive potential (SRP) that can prevent DPD polymer chains from crossing each other. + +.. note:: + + The virial calculation for pressure when using this pair style includes all the components of force listed above, including the random force. + +---------- + + +**Mixing, shift, table, tail correction, restart, rRESPA info**\ : + +The style *dpd/ext* does not support mixing. Thus, coefficients for all I,J pairs must be specified explicitly. + +The pair styles do not support the :doc:`pair_modify ` shift option for the energy of the pair interaction. Note that as discussed above, the energy due to the conservative :math:`\mathbf{f}^C` term is already shifted to be zero at the cutoff distance :math:`r_c`. + +The :doc:`pair_modify ` table option is not relevant for the style *dpd/ext*. + +The style *dpd/ext* does not support the :doc:`pair_modify ` tail option for adding long-range tail corrections to energy and pressure. + +The pair styles can only be used via the pair keyword of the :doc:`run_style respa ` command. They do not support the *inner*\ , *middle*\ , and *outer*\ keywords. + +The style *dpd/ext/tstat* can ramp its target temperature over multiple runs, using the start and stop keywords of the :doc:`run ` command. See the :doc:`run ` command for details of how to do this. + +---------- + + +Restrictions +"""""""""""" + +The default frequency for rebuilding neighbor lists is every 10 steps (see the :doc:`neigh_modify ` command). This may be too infrequent for style *dpd/ext* simulations since particles move rapidly and can overlap by large amounts. If this setting yields a non-zero number of \say{dangerous} reneighborings (printed at the end of a simulation), you should experiment with forcing reneighboring more often and see if system energies/trajectories change. + +The pair styles require to use the :doc:`comm_modify vel yes ` command so that velocities are stored by ghost atoms. + +The pair styles will not restart exactly when using the :doc:`read_restart ` command, though they should provide statistically similar results. This is because the forces they compute depend on atom velocities. See the :doc:`read_restart ` command for more details. + +Related commands +"""""""""""""""" + +:doc:`pair_style dpd `, :doc:`pair_coeff `, :doc:`fix nvt `, :doc:`fix langevin `, :doc:`pair_style srp ` + +**Default:** none + + +---------- + + +.. _Groot: + + + +**(Groot)** Groot and Warren, J Chem Phys, 107, 4423-35 (1997). + +.. _Junghans: + + + +**(Junghans)** Junghans, Praprotnik and Kremer, Soft Matter 4, 156, 1119-1128 (2008). diff --git a/doc/src/pair_fep_soft.rst b/doc/src/pair_fep_soft.rst index 1bb50fad1f..ce8227abeb 100644 --- a/doc/src/pair_fep_soft.rst +++ b/doc/src/pair_fep_soft.rst @@ -182,6 +182,8 @@ Examples pair_coeff * * 100.0 2.0 1.5 1.0 pair_coeff 1 1 100.0 2.0 1.5 1.0 3.0 +Example input scripts available: examples/USER/fep + Description """"""""""" diff --git a/doc/src/pair_hybrid.rst b/doc/src/pair_hybrid.rst index 868d645b83..f7de713c94 100644 --- a/doc/src/pair_hybrid.rst +++ b/doc/src/pair_hybrid.rst @@ -257,7 +257,7 @@ then overrides them with 0.0 only for CHARMM: .. code-block:: LAMMPS special_bonds amber - pair_hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0 + pair_style hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0 pair_modify pair lj/charmm/coul/long special lj/coul 0.0 0.0 0.0 The this input achieves the same effect: @@ -265,7 +265,7 @@ The this input achieves the same effect: .. code-block:: LAMMPS special_bonds 0.0 0.0 0.1 - pair_hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0 + pair_style hybrid lj/charmm/coul/long 8.0 10.0 lj/cut/coul/long 10.0 pair_modify pair lj/cut/coul/long special lj 0.0 0.0 0.5 pair_modify pair lj/cut/coul/long special coul 0.0 0.0 0.83333333 pair_modify pair lj/charmm/coul/long special lj/coul 0.0 0.0 0.0 @@ -279,7 +279,7 @@ effectively *lj/coul 0.0 0.0 0.5* as required for OPLS/AA: .. code-block:: LAMMPS special_bonds lj/coul 1e-20 1e-20 0.5 - pair_hybrid tersoff lj/cut/coul/long 12.0 + pair_style hybrid tersoff lj/cut/coul/long 12.0 pair_modify pair tersoff special lj/coul 1.0 1.0 1.0 For use with the various :doc:`compute \*/tally ` @@ -417,7 +417,11 @@ assigned automatically to the sub-style defined for both I,I and J,J and its coefficients generated by the mixing rule used by that sub-style. For the *hybrid/overlay* and *hybrid/scaled* style, there is an additional requirement that both the I,I and J,J pairs are assigned to a -single sub-style. See the :doc:`pair_modify ` command for +single sub-style. If this requirement is not met, no I,J coeffs will be +generated, even if the sub-styles support mixing, and I,J pair +coefficients must be explicitly defined. + +See the :doc:`pair_modify ` command for details of mixing rules. See the See the doc page for the sub-style to see if allows for mixing. diff --git a/doc/src/pair_lj_smooth.rst b/doc/src/pair_lj_smooth.rst index 7ba12c89ba..a77eefd023 100644 --- a/doc/src/pair_lj_smooth.rst +++ b/doc/src/pair_lj_smooth.rst @@ -1,10 +1,11 @@ .. index:: pair_style lj/smooth +.. index:: pair_style lj/smooth/gpu .. index:: pair_style lj/smooth/omp pair_style lj/smooth command ============================ -Accelerator Variants: *lj/smooth/omp* +Accelerator Variants: *lj/smooth/gpu*, *lj/smooth/omp* Syntax """""" diff --git a/doc/src/pair_style.rst b/doc/src/pair_style.rst index 4990674973..ce74b0d873 100644 --- a/doc/src/pair_style.rst +++ b/doc/src/pair_style.rst @@ -150,6 +150,8 @@ accelerated styles exist. * :doc:`coul/wolf ` - Coulomb via Wolf potential * :doc:`coul/wolf/cs ` - Coulomb via Wolf potential with core/shell adjustments * :doc:`dpd ` - dissipative particle dynamics (DPD) +* :doc:`dpd/ext ` - generalized force field for DPD +* :doc:`dpd/ext/tstat ` - pair-wise DPD thermostatting with generalized force field * :doc:`dpd/fdt ` - DPD for constant temperature and pressure * :doc:`dpd/fdt/energy ` - DPD for constant energy and enthalpy * :doc:`dpd/tstat ` - pair-wise DPD thermostatting diff --git a/doc/src/pair_thole.rst b/doc/src/pair_thole.rst index a8cf8ee044..183bab48c9 100644 --- a/doc/src/pair_thole.rst +++ b/doc/src/pair_thole.rst @@ -42,6 +42,8 @@ Examples pair_style lj/cut/thole/long 2.6 12.0 +Example input scripts available: examples/USER/drude + Description """"""""""" diff --git a/doc/src/read_data.rst b/doc/src/read_data.rst index 5d74d9c28b..bd7c480af2 100644 --- a/doc/src/read_data.rst +++ b/doc/src/read_data.rst @@ -223,6 +223,9 @@ The structure of the data file is important, though many settings and sections are optional or can come in any order. See the examples directory for sample data files for different problems. +The file will be read line by line, but there is a limit of 254 +characters per line and characters beyond that limit will be ignored. + A data file has a header and a body. The header appears first. The first line of the header is always skipped; it typically contains a description of the file. Then lines are read one at a time. Lines diff --git a/doc/src/thermo_modify.rst b/doc/src/thermo_modify.rst index 4439f7732c..1815a7cb76 100644 --- a/doc/src/thermo_modify.rst +++ b/doc/src/thermo_modify.rst @@ -11,12 +11,13 @@ Syntax thermo_modify keyword value ... * one or more keyword/value pairs may be listed -* keyword = *lost* or *lost/bond* or *norm* or *flush* or *line* or *format* or *temp* or *press* +* keyword = *lost* or *lost/bond* or *warn* or *norm* or *flush* or *line* or *format* or *temp* or *press* .. parsed-literal:: *lost* value = *error* or *warn* or *ignore* *lost/bond* value = *error* or *warn* or *ignore* + *warn* value = *ignore* or *reset* or *default* or a number *norm* value = *yes* or *no* *flush* value = *yes* or *no* *line* value = *one* or *multi* @@ -75,6 +76,43 @@ are drifting out of the box through a fixed boundary condition (see the :doc:`boundary ` command). In this case one atom may be deleted before the rest of the molecule is, on a later timestep. +The *warn* keyword allows you to control whether LAMMPS will print +warning messages and how many of them. Most warning messages are only +printed by MPI rank 0. They are usually pointing out important issues +that should be investigated, but LAMMPS cannot determine for +certain whether they are an indication of an error. + +Some warning messages are printed during a run (or immediately before) +each time a specific MPI rank encounters the issue, e.g. bonds that are +stretched too far or dihedrals in extreme configurations. These number +of these can quickly blow up the size of the log file and screen output. +Thus a limit of 100 warning messages is applied by default. The warning +count is applied to the entire input unless reset with a ``thermo_modify +warn reset`` command. If there are more warnings than the limit, LAMMPS +will print one final warning that it will not print any additional +warning messages. + +.. note:: + + The warning limit is enforced on either the per-processor count or + the total count across all processors. For efficiency reasons, + however, the total count is only updated at steps with thermodynamic + output. Thus when running on a large number of processors in + parallel, the total number of warnings printed can be significantly + larger than the given limit. + +Any number after the keyword *warn* will change the warning limit +accordingly. With the value *ignore* all warnings will be suppressed, +with the value *always* no limit will be applied and warnings will +always be printed, with the value *reset* the internal warning counter +will be reset to zero, and with the value *default*, the counter is +reset and the limit set to 100. An example usage of either *reset* or +*default* would be to re-enable warnings that were disabled or have +reached the limit during equilibration, where the warnings would be +acceptable while the system is still adjusting, but then change +to all warnings for the production run, where they would indicate +problems that would require a closer look at what is causing them. + The *norm* keyword determines whether various thermodynamic output values are normalized by the number of atoms or not, depending on whether it is set to *yes* or *no*\ . Different unit styles have @@ -183,9 +221,9 @@ Related commands Default """"""" -The option defaults are lost = error, norm = yes for unit style of -*lj*\ , norm = no for unit style of *real* and *metal*\ , flush = no, -and temp/press = compute IDs defined by thermo_style. +The option defaults are lost = error, warn = 100, norm = yes for unit +style of *lj*\ , norm = no for unit style of *real* and *metal*\ , +flush = no, and temp/press = compute IDs defined by thermo_style. The defaults for the line and format options depend on the thermo style. For styles "one" and "custom", the line and format defaults diff --git a/doc/src/variable.rst b/doc/src/variable.rst index af324c180f..4747c492aa 100644 --- a/doc/src/variable.rst +++ b/doc/src/variable.rst @@ -363,12 +363,14 @@ variable, as discussed below. The rules for formatting the file are as follows. Each time a set of per-atom values is read, a non-blank line is searched for in the file. -A comment character "#" can be used anywhere on a line; text starting -with the comment character is stripped. Blank lines are skipped. The -first "word" of a non-blank line, delimited by white-space, is read as -the count N of per-atom lines to immediately follow. N can be the -total number of atoms in the system, or only a subset. The next N -lines have the following format +The file is read line by line but only up to 254 characters are used. +The rest are ignored. A comment character "#" can be used anywhere +on a line and all text following and the "#" character are ignored; +text starting with the comment character is stripped. Blank lines +are skipped. The first "word" of a non-blank line, delimited by +white-space, is read as the count N of per-atom lines to immediately +follow. N can be the total number of atoms in the system, or only a +subset. The next N lines have the following format .. parsed-literal:: diff --git a/doc/utils/requirements.txt b/doc/utils/requirements.txt index 00fa6ecfaf..9b8e106875 100644 --- a/doc/utils/requirements.txt +++ b/doc/utils/requirements.txt @@ -4,3 +4,4 @@ git+git://github.com/akohlmey/sphinx-fortran@parallel-read sphinx_tabs breathe Pygments +six diff --git a/doc/utils/sphinx-config/false_positives.txt b/doc/utils/sphinx-config/false_positives.txt index da0617ce91..aa932fbc2d 100644 --- a/doc/utils/sphinx-config/false_positives.txt +++ b/doc/utils/sphinx-config/false_positives.txt @@ -101,6 +101,7 @@ anisotropic anisotropies anisotropy ansi +antiferromagnetic antiquewhite Antisymmetrized antisymmetry @@ -311,6 +312,7 @@ br Branduardi Branicio brennan +Briels Brien Brilliantov Broadwell @@ -625,6 +627,7 @@ delflag Dellago delocalization delocalized +Delong delr deltaHf Dendrimer @@ -708,6 +711,7 @@ dodgerblue dof doi Donadio +Donev dotc Doty doxygen @@ -1023,6 +1027,7 @@ fmag fmass fmm fmt +fmtlib fmx fmy fmz @@ -1141,6 +1146,7 @@ GMock gneb GNEB Goldfarb +Gompper Gonzalez-Melchor googlemail googletest @@ -1319,6 +1325,7 @@ ijk ijkl ik Ikeshoji +Ilie ilmenau Ilmenau ilp @@ -2177,6 +2184,7 @@ nimpropers nimpropertypes Nimpropertype Ninteger +NiO Nissila nist nitride @@ -2188,6 +2196,7 @@ nl nlayers nlen Nlines +nlines nlo nlocal Nlocal @@ -2279,6 +2288,7 @@ Ntype ntypes Ntypes nucleotides +nullptr num numa numactl @@ -2538,6 +2548,7 @@ ppn pppm prd Prakash +Praprotnik pre Pre prec @@ -3103,6 +3114,7 @@ Swinburne Swol Swope Sx +sx sy Sy symplectic @@ -3112,6 +3124,7 @@ sysdim Syst systemd Sz +sz Tabbernor tabinner Tadmor @@ -3163,6 +3176,7 @@ th thb thei Theodorou +Theophile Theor thermalization thermalize @@ -3315,6 +3329,7 @@ Uleft uloop Ulomek ulsph +Ultrafast uMech umin Umin @@ -3350,6 +3365,7 @@ upenn upto Urbakh Urbana +Usabiaga usec uSemiParallel userguide @@ -3494,6 +3510,7 @@ Wikipedia Wildcard wildcard wildcards +Winkler Wirnsberger wirtes witin @@ -3505,6 +3522,7 @@ Worley Wriggers Wuppertal Wurtzite +Wysocki www wx Wx @@ -3595,6 +3613,7 @@ ZBL Zc zcm Zeeman +zeeman Zemer Zepeda zflag diff --git a/examples/USER/brownian/2d_velocity/in2d.velocity b/examples/USER/brownian/2d_velocity/in2d.velocity new file mode 100644 index 0000000000..fcfae0554b --- /dev/null +++ b/examples/USER/brownian/2d_velocity/in2d.velocity @@ -0,0 +1,53 @@ +##### 2d overdamped brownian dynamics with self-propulsion force in direction of velocity. ##### + +variable gamma_t equal 1.0 +variable temp equal 1.0 +variable seed equal 1974019 +variable fp equal 4.0 +variable params string ${gamma_t}_${temp}_${fp} + +units lj +dimension 2 +newton off + +lattice sq 0.4 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +create_atoms 1 box +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix step all brownian ${temp} ${seed} gamma_t ${gamma_t} +fix vel all propel/self velocity ${fp} +fix 2 all enforce2d +fix_modify vel virial yes + +compute press all pressure NULL virial + +thermo_style custom step temp epair c_press + +#equilibration +timestep 0.0000000001 +thermo 500 +run 5000 +reset_timestep 0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 + + diff --git a/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.1 b/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.1 new file mode 100644 index 0000000000..a5a58ba9f0 --- /dev/null +++ b/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.1 @@ -0,0 +1,151 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### 2d overdamped brownian dynamics with self-propulsion force in direction of velocity. ##### + +variable gamma_t equal 1.0 +variable temp equal 1.0 +variable seed equal 1974019 +variable fp equal 4.0 +variable params string ${gamma_t}_${temp}_${fp} +variable params string 1_${temp}_${fp} +variable params string 1_1_${fp} +variable params string 1_1_4 + +units lj +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-25.298221 -25.298221 -0.31622777) to (25.298221 25.298221 0.31622777) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 1024 atoms + create_atoms CPU = 0.001 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix step all brownian ${temp} ${seed} gamma_t ${gamma_t} +fix step all brownian 1 ${seed} gamma_t ${gamma_t} +fix step all brownian 1 1974019 gamma_t ${gamma_t} +fix step all brownian 1 1974019 gamma_t 1 +fix vel all propel/self velocity ${fp} +fix vel all propel/self velocity 4 +fix 2 all enforce2d +fix_modify vel virial yes + +compute press all pressure NULL virial + +thermo_style custom step temp epair c_press + +#equilibration +timestep 0.0000000001 +thermo 500 +run 5000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.289 | 2.289 | 2.289 Mbytes +Step Temp E_pair c_press + 0 1 0 -0.18336111 + 500 2.0519273e+10 0 -0.048238222 + 1000 1.9821717e+10 0 -0.4711053 + 1500 1.9697609e+10 0 -0.13539588 + 2000 2.0209443e+10 0 0.0094958039 + 2500 1.9591299e+10 0 0.40117118 + 3000 2.089566e+10 0 -0.036548251 + 3500 1.978692e+10 0 0.28282578 + 4000 2.0657848e+10 0 0.17618064 + 4500 2.0837353e+10 0 -0.080724651 + 5000 2.0348316e+10 0 -0.17471195 +Loop time of 0.575164 on 1 procs for 5000 steps with 1024 atoms + +Performance: 0.075 tau/day, 8693.168 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0036819 | 0.0036819 | 0.0036819 | 0.0 | 0.64 +Output | 0.00027752 | 0.00027752 | 0.00027752 | 0.0 | 0.05 +Modify | 0.51999 | 0.51999 | 0.51999 | 0.0 | 90.41 +Other | | 0.05121 | | | 8.90 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 65.0000 ave 65 max 65 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.664 | 2.664 | 2.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 2.0328444e+10 0 0 0 0 0 -0.17471195 + 1000 197017.59 0 0.018147562 0.019839233 0 0.037986796 -0.71897807 + 2000 197030.23 0 0.03909867 0.041721342 0 0.080820011 -0.30051929 + 3000 201997.2 0 0.065694399 0.06235257 0 0.12804697 -0.85167039 + 4000 199927.76 0 0.085698715 0.080328815 0 0.16602753 0.18493117 + 5000 198665.7 0 0.10896054 0.097021266 0 0.2059818 -0.090735406 + 6000 199277.78 0 0.13081111 0.11724814 0 0.24805925 -0.18189034 + 7000 199850.54 0 0.14721838 0.13806858 0 0.28528696 0.11334674 + 8000 191577.11 0 0.16582149 0.15935853 0 0.32518002 -0.73284569 + 9000 197331.29 0 0.17995704 0.18652927 0 0.3664863 -0.015558407 + 10000 197048.17 0 0.2034106 0.20329856 0 0.40670916 0.36985211 + 11000 200105.54 0 0.21809835 0.21966463 0 0.43776298 0.36437 + 12000 203180.39 0 0.23810386 0.23666184 0 0.47476569 -0.072006034 +Loop time of 1.37465 on 1 procs for 12000 steps with 1024 atoms + +Performance: 7542.303 tau/day, 8729.517 timesteps/s +99.8% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00012231 | 0.00012231 | 0.00012231 | 0.0 | 0.01 +Comm | 0.0024607 | 0.0024607 | 0.0024607 | 0.0 | 0.18 +Output | 0.00068665 | 0.00068665 | 0.00068665 | 0.0 | 0.05 +Modify | 1.2479 | 1.2479 | 1.2479 | 0.0 | 90.78 +Other | | 0.1235 | | | 8.98 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 15 +Dangerous builds = 0 + + +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.4 b/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.4 new file mode 100644 index 0000000000..df9ff24070 --- /dev/null +++ b/examples/USER/brownian/2d_velocity/log.11May2021.in2d_velocity.g++.4 @@ -0,0 +1,151 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### 2d overdamped brownian dynamics with self-propulsion force in direction of velocity. ##### + +variable gamma_t equal 1.0 +variable temp equal 1.0 +variable seed equal 1974019 +variable fp equal 4.0 +variable params string ${gamma_t}_${temp}_${fp} +variable params string 1_${temp}_${fp} +variable params string 1_1_${fp} +variable params string 1_1_4 + +units lj +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-25.298221 -25.298221 -0.31622777) to (25.298221 25.298221 0.31622777) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 1024 atoms + create_atoms CPU = 0.001 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix step all brownian ${temp} ${seed} gamma_t ${gamma_t} +fix step all brownian 1 ${seed} gamma_t ${gamma_t} +fix step all brownian 1 1974019 gamma_t ${gamma_t} +fix step all brownian 1 1974019 gamma_t 1 +fix vel all propel/self velocity ${fp} +fix vel all propel/self velocity 4 +fix 2 all enforce2d +fix_modify vel virial yes + +compute press all pressure NULL virial + +thermo_style custom step temp epair c_press + +#equilibration +timestep 0.0000000001 +thermo 500 +run 5000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.289 | 2.289 | 2.289 Mbytes +Step Temp E_pair c_press + 0 1 0 -0.18336111 + 500 1.9862591e+10 0 -0.32013566 + 1000 2.0093184e+10 0 -0.36609742 + 1500 1.9562283e+10 0 -0.53349351 + 2000 1.9903977e+10 0 0.63783249 + 2500 2.0260128e+10 0 0.30046413 + 3000 1.9948065e+10 0 -0.63093105 + 3500 1.9507486e+10 0 0.48762848 + 4000 2.0049087e+10 0 0.40289309 + 4500 1.9975813e+10 0 0.57649363 + 5000 2.0129291e+10 0 -0.41288352 +Loop time of 0.238949 on 4 procs for 5000 steps with 1024 atoms + +Performance: 0.181 tau/day, 20924.952 timesteps/s +92.6% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0080078 | 0.024718 | 0.031782 | 6.2 | 10.34 +Output | 0.0001812 | 0.00029999 | 0.00063467 | 0.0 | 0.13 +Modify | 0.13401 | 0.14401 | 0.15438 | 2.4 | 60.27 +Other | | 0.06992 | | | 29.26 + +Nlocal: 256.000 ave 256 max 256 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 33.0000 ave 33 max 33 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.664 | 2.664 | 2.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 2.0109634e+10 0 0 0 0 0 -0.41288352 + 1000 195711.46 0 0.020076462 0.020523099 0 0.040599561 -0.32125126 + 2000 203263.85 0 0.039242992 0.039661282 0 0.078904274 0.11008705 + 3000 197417.54 0 0.064938128 0.057716419 0 0.12265455 0.16967601 + 4000 200505.97 0 0.086511225 0.074975267 0 0.16148649 0.31338473 + 5000 199373.77 0 0.10583263 0.098175658 0 0.20400829 0.34205791 + 6000 192881.14 0 0.12152088 0.11706037 0 0.23858125 -0.27870467 + 7000 203045.3 0 0.1383248 0.13629503 0 0.27461983 -0.046936646 + 8000 198544.08 0 0.16064738 0.1582206 0 0.31886798 -0.18803452 + 9000 205450.74 0 0.17926529 0.1829047 0 0.36216999 0.47191228 + 10000 200371.73 0 0.20084273 0.20365189 0 0.40449463 0.093098262 + 11000 202911.93 0 0.21569236 0.22221715 0 0.43790952 -0.38430031 + 12000 192590.04 0 0.24041439 0.24114487 0 0.48155926 -0.1677052 +Loop time of 0.443026 on 4 procs for 12000 steps with 1024 atoms + +Performance: 23402.683 tau/day, 27086.439 timesteps/s +97.7% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 3.2663e-05 | 3.3855e-05 | 3.4809e-05 | 0.0 | 0.01 +Comm | 0.0030291 | 0.0030628 | 0.0030825 | 0.0 | 0.69 +Output | 0.00027895 | 0.00051624 | 0.001184 | 0.0 | 0.12 +Modify | 0.31607 | 0.33372 | 0.37391 | 4.0 | 75.33 +Other | | 0.1057 | | | 23.86 + +Nlocal: 256.000 ave 259 max 253 min +Histogram: 1 0 0 1 0 0 1 0 0 1 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 15 +Dangerous builds = 0 + + +Total wall time: 0:00:00 diff --git a/examples/USER/brownian/asphere/in2d.ellipsoid b/examples/USER/brownian/asphere/in2d.ellipsoid new file mode 100644 index 0000000000..4b1a88bba7 --- /dev/null +++ b/examples/USER/brownian/asphere/in2d.ellipsoid @@ -0,0 +1,54 @@ +##### overdamped dynamics of non-interacting ellipsoids in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string inf +variable gamma_r_2 string inf +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string inf +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} + +units lj +atom_style hybrid dipole ellipsoid +dimension 2 +newton off + +lattice sq 0.4 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * shape 3.0 1.0 1.0 +set type * quat/random ${seed} +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} & + gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} & + gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} & + dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type & +# x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 diff --git a/examples/USER/brownian/asphere/in3d.ellipsoid b/examples/USER/brownian/asphere/in3d.ellipsoid new file mode 100644 index 0000000000..34f2684ee7 --- /dev/null +++ b/examples/USER/brownian/asphere/in3d.ellipsoid @@ -0,0 +1,54 @@ +##### overdamped dynamics of non-interacting ellipsoids in 3D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string 2.0 +variable gamma_r_2 string 0.25 +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string 9.0 +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} + +units lj +atom_style hybrid dipole ellipsoid +dimension 3 +newton off + +lattice sc 0.4 +region box block -8 8 -8 8 -8 8 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * shape 3.0 1.0 1.0 +set type * quat/random ${seed} +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} & + gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} & + gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} & + dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type & +# x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 diff --git a/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.1 b/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.1 new file mode 100644 index 0000000000..619ab937c9 --- /dev/null +++ b/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.1 @@ -0,0 +1,145 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting ellipsoids in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string inf +variable gamma_r_2 string inf +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string inf +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_7.0_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_7.0_inf + +units lj +atom_style hybrid dipole ellipsoid +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.005 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 3600 settings made for dipole/random +set type * shape 3.0 1.0 1.0 +Setting atom values ... + 3600 settings made for shape +set type * quat/random ${seed} +set type * quat/random 198098 +Setting atom values ... + 3600 settings made for quat/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 7.0 ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 7.0 inf dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 5.114 | 5.114 | 5.114 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 34376.187 0 0.00034728749 0.00034318997 0 0.00069047747 + 200 36135.708 0 0.00067452936 0.0006818928 0 0.0013564222 + 300 34444.929 0 0.0010189319 0.00099849203 0 0.002017424 + 400 35668.312 0 0.0013648699 0.0013311884 0 0.0026960583 + 500 35388.615 0 0.0017330203 0.0016077184 0 0.0033407387 + 600 35180.065 0 0.002052223 0.0019394635 0 0.0039916865 + 700 34035.38 0 0.0024329956 0.0022664905 0 0.0046994861 + 800 34581.664 0 0.002783885 0.0025794872 0 0.0053633723 + 900 34579.945 0 0.003163442 0.0029351952 0 0.0060986372 + 1000 34158.066 0 0.0035589034 0.0032627605 0 0.0068216639 + 1100 33453.827 0 0.0038861895 0.003565372 0 0.0074515615 + 1200 33608.06 0 0.0041325698 0.0038943268 0 0.0080268966 + 1300 34381.633 0 0.004405682 0.0043294156 0 0.0087350976 + 1400 32925.746 0 0.0047383547 0.0046803517 0 0.0094187065 + 1500 34809.764 0 0.0051149571 0.0049309746 0 0.010045932 + 1600 33580.096 0 0.0054893472 0.0052465377 0 0.010735885 + 1700 34596.275 0 0.00581894 0.0056500316 0 0.011468972 + 1800 33926.736 0 0.0062129617 0.0059796125 0 0.012192574 + 1900 35577.131 0 0.0065668637 0.0062530163 0 0.01281988 + 2000 34224.967 0 0.0070005917 0.006598912 0 0.013599504 + 2100 33991.406 0 0.0073134826 0.0069119252 0 0.014225408 + 2200 34647.054 0 0.007659301 0.0073434715 0 0.015002772 + 2300 33956.835 0 0.007965191 0.0076318537 0 0.015597045 + 2400 35272.549 0 0.0082467116 0.007929202 0 0.016175914 + 2500 33901.494 0 0.0086251299 0.0082790757 0 0.016904206 + 2600 34138.227 0 0.0089419364 0.0086639744 0 0.017605911 + 2700 33691.013 0 0.0093083376 0.0090219118 0 0.018330249 + 2800 34716.817 0 0.0095840095 0.0094118945 0 0.018995904 + 2900 34473.982 0 0.0099773501 0.0098167668 0 0.019794117 + 3000 33406.776 0 0.010391969 0.010098625 0 0.020490594 +Loop time of 3.67112 on 1 procs for 3000 steps with 3600 atoms + +Performance: 706.051 tau/day, 817.189 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.037973 | 0.037973 | 0.037973 | 0.0 | 1.03 +Output | 0.0040674 | 0.0040674 | 0.0040674 | 0.0 | 0.11 +Modify | 3.515 | 3.515 | 3.515 | 0.0 | 95.75 +Other | | 0.1141 | | | 3.11 + +Nlocal: 3600.00 ave 3600 max 3600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 121.000 ave 121 max 121 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:03 diff --git a/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.4 b/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.4 new file mode 100644 index 0000000000..b3da385dda --- /dev/null +++ b/examples/USER/brownian/asphere/log.11May2021.in2d.ellipsoid.g++.4 @@ -0,0 +1,145 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting ellipsoids in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string inf +variable gamma_r_2 string inf +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string inf +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_${gamma_t_2}_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_7.0_${gamma_t_3} +variable params string gaussian_1.0_inf_inf_0.1_5.0_7.0_inf + +units lj +atom_style hybrid dipole ellipsoid +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.007 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 3600 settings made for dipole/random +set type * shape 3.0 1.0 1.0 +Setting atom values ... + 3600 settings made for shape +set type * quat/random ${seed} +set type * quat/random 198098 +Setting atom values ... + 3600 settings made for quat/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 7.0 ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng gaussian gamma_r_eigen inf inf 0.1 gamma_t_eigen 5.0 7.0 inf dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 5.102 | 5.102 | 5.102 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 33874.438 0 0.0003458147 0.00033165629 0 0.00067747099 + 200 34893.188 0 0.00066290209 0.00068146332 0 0.0013443654 + 300 34494.226 0 0.0010064902 0.0010276646 0 0.0020341548 + 400 34537.887 0 0.0013457339 0.0014057042 0 0.0027514381 + 500 34458.46 0 0.0017006949 0.0017120083 0 0.0034127033 + 600 33229.977 0 0.0020841613 0.0020485346 0 0.0041326959 + 700 33288.631 0 0.0024270272 0.0023673304 0 0.0047943576 + 800 35317.512 0 0.0027924435 0.0026950912 0 0.0054875347 + 900 33094.299 0 0.0031503627 0.0030789319 0 0.0062292946 + 1000 35801.751 0 0.003489398 0.0034594626 0 0.0069488607 + 1100 33427.701 0 0.0038547506 0.0038375809 0 0.0076923316 + 1200 34675.07 0 0.0041824195 0.0042017298 0 0.0083841493 + 1300 33080.294 0 0.0045258945 0.0045816356 0 0.0091075301 + 1400 34927.288 0 0.0048252992 0.0049215701 0 0.0097468693 + 1500 34338.558 0 0.0051959155 0.0053020102 0 0.010497926 + 1600 34686.248 0 0.0055111463 0.0056220225 0 0.011133169 + 1700 34336.158 0 0.0059240394 0.0059060319 0 0.011830071 + 1800 34315.859 0 0.0063027944 0.0063004467 0 0.012603241 + 1900 35096.721 0 0.0066098525 0.00672222 0 0.013332073 + 2000 33544.18 0 0.0069401261 0.007074124 0 0.01401425 + 2100 33863.219 0 0.0072726502 0.0074175954 0 0.014690246 + 2200 34705.892 0 0.0075586722 0.0077552683 0 0.015313941 + 2300 34025.357 0 0.0079046728 0.0081760519 0 0.016080725 + 2400 34741.849 0 0.008252969 0.0085203087 0 0.016773278 + 2500 34406.959 0 0.0085370091 0.0088556377 0 0.017392647 + 2600 34062.63 0 0.0088134153 0.0092536326 0 0.018067048 + 2700 34677.666 0 0.0090592854 0.0096225881 0 0.018681874 + 2800 33464.216 0 0.0093984162 0.0099647695 0 0.019363186 + 2900 32920.721 0 0.0098222985 0.010366517 0 0.020188816 + 3000 34539.66 0 0.010133317 0.01068102 0 0.020814337 +Loop time of 1.12143 on 4 procs for 3000 steps with 3600 atoms + +Performance: 2311.341 tau/day, 2675.163 timesteps/s +96.1% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.036017 | 0.042828 | 0.051558 | 2.7 | 3.82 +Output | 0.0012608 | 0.0025993 | 0.0063775 | 4.3 | 0.23 +Modify | 0.9002 | 0.93095 | 0.99546 | 3.9 | 83.01 +Other | | 0.1451 | | | 12.93 + +Nlocal: 900.000 ave 900 max 900 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 61.0000 ave 61 max 61 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.1 b/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.1 new file mode 100644 index 0000000000..a193fc98e2 --- /dev/null +++ b/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.1 @@ -0,0 +1,145 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting ellipsoids in 3D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string 2.0 +variable gamma_r_2 string 0.25 +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string 9.0 +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_7.0_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_7.0_9.0 + +units lj +atom_style hybrid dipole ellipsoid +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.005 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 4096 settings made for dipole/random +set type * shape 3.0 1.0 1.0 +Setting atom values ... + 4096 settings made for shape +set type * quat/random ${seed} +set type * quat/random 198098 +Setting atom values ... + 4096 settings made for quat/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 7.0 ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 7.0 9.0 dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 5.219 | 5.219 | 5.219 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 45690.838 0 0.00029994317 0.00029953902 0.00030002809 0.00089951027 + 200 45571.166 0 0.00061376797 0.00060955238 0.00061153551 0.0018348559 + 300 44693.418 0 0.00093058034 0.00089383536 0.00091554588 0.0027399616 + 400 44831.846 0 0.001250227 0.0012230128 0.0012120517 0.0036852914 + 500 45028.015 0 0.0015448869 0.0015339549 0.0014978843 0.0045767262 + 600 45895.442 0 0.0018621952 0.0018169905 0.0018352784 0.0055144641 + 700 45858.744 0 0.0021617097 0.0021137714 0.0021360394 0.0064115206 + 800 45155.215 0 0.002428445 0.0024288837 0.0024516737 0.0073090023 + 900 45427.427 0 0.0027265978 0.0027662531 0.0027329878 0.0082258387 + 1000 45398.166 0 0.0030685345 0.0030805014 0.0029765916 0.0091256275 + 1100 44622.428 0 0.0033766954 0.0033976168 0.0032745406 0.010048853 + 1200 45500.277 0 0.0036410565 0.0036840528 0.0035831659 0.010908275 + 1300 45265.8 0 0.0039143146 0.0039419334 0.0038761633 0.011732411 + 1400 45482.435 0 0.0042006542 0.0043373651 0.004164002 0.012702021 + 1500 45126.629 0 0.0044647379 0.0046021855 0.004487041 0.013553965 + 1600 45178.172 0 0.0047726618 0.0049110287 0.0048012671 0.014484958 + 1700 44918.685 0 0.005104787 0.0052522662 0.0050844375 0.015441491 + 1800 44776.678 0 0.0054395368 0.0056092038 0.0054623875 0.016511128 + 1900 46035.987 0 0.0057735872 0.0059357043 0.0057296009 0.017438892 + 2000 45436.517 0 0.0060837459 0.0063485717 0.0059769119 0.018409229 + 2100 45871.502 0 0.0063736337 0.0066551978 0.0063077439 0.019336575 + 2200 45511.847 0 0.0066419141 0.0069700452 0.0065553318 0.020167291 + 2300 45597.047 0 0.0069251517 0.0073015716 0.0068945654 0.021121289 + 2400 44832.007 0 0.0071894253 0.0076238221 0.0071638554 0.021977103 + 2500 45668.42 0 0.0074351304 0.0079594991 0.0075390719 0.022933701 + 2600 45248.483 0 0.007781496 0.008293944 0.0077956068 0.023871047 + 2700 45308.515 0 0.0080302993 0.0086329679 0.0081457335 0.024809001 + 2800 45637.72 0 0.0083889026 0.0089173198 0.0086032427 0.025909465 + 2900 45909.343 0 0.0087169392 0.009181179 0.0088778569 0.026775975 + 3000 45213.613 0 0.0090508891 0.0094253485 0.0092660321 0.02774227 +Loop time of 4.13937 on 1 procs for 3000 steps with 4096 atoms + +Performance: 626.183 tau/day, 724.749 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.24709 | 0.24709 | 0.24709 | 0.0 | 5.97 +Output | 0.004636 | 0.004636 | 0.004636 | 0.0 | 0.11 +Modify | 3.7604 | 3.7604 | 3.7604 | 0.0 | 90.85 +Other | | 0.1272 | | | 3.07 + +Nlocal: 4096.00 ave 4096 max 4096 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 817.000 ave 817 max 817 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:04 diff --git a/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.4 b/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.4 new file mode 100644 index 0000000000..7f6d8a81f0 --- /dev/null +++ b/examples/USER/brownian/asphere/log.11May2021.in3d.ellipsoid.g++.4 @@ -0,0 +1,145 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting ellipsoids in 3D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_r_1 string 2.0 +variable gamma_r_2 string 0.25 +variable gamma_r_3 string 0.1 +variable gamma_t_1 string 5.0 +variable gamma_t_2 string 7.0 +variable gamma_t_3 string 9.0 +variable params string ${rng}_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_${temp}_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_${gamma_r_1}_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_${gamma_r_2}_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_${gamma_r_3}_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_${gamma_t_1}_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_${gamma_t_2}_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_7.0_${gamma_t_3} +variable params string uniform_1.0_2.0_0.25_0.1_5.0_7.0_9.0 + +units lj +atom_style hybrid dipole ellipsoid +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 2 by 1 by 2 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.002 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 4096 settings made for dipole/random +set type * shape 3.0 1.0 1.0 +Setting atom values ... + 4096 settings made for shape +set type * quat/random ${seed} +set type * quat/random 198098 +Setting atom values ... + 4096 settings made for quat/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/asphere ${temp} ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 ${seed} rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng ${rng} gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen ${gamma_r_1} ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 ${gamma_r_2} ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 ${gamma_r_3} gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen ${gamma_t_1} ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 ${gamma_t_2} ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 7.0 ${gamma_t_3} dipole 1.0 0.0 0.0 +fix 1 all brownian/asphere 1.0 198098 rng uniform gamma_r_eigen 2.0 0.25 0.1 gamma_t_eigen 5.0 7.0 9.0 dipole 1.0 0.0 0.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 5.152 | 5.152 | 5.152 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 45236.508 0 0.00030817418 0.00030717742 0.0003019227 0.0009172743 + 200 45564.566 0 0.00062027526 0.00062110132 0.0006080391 0.0018494157 + 300 46232.801 0 0.00091155216 0.00094473459 0.00093009391 0.0027863807 + 400 45250.414 0 0.0011980791 0.0012538262 0.0012201461 0.0036720513 + 500 45217.133 0 0.0015186813 0.0015752994 0.001509437 0.0046034177 + 600 45531.276 0 0.0018194588 0.0019243758 0.0018209246 0.0055647592 + 700 44834.624 0 0.0021277747 0.0022417115 0.0021352036 0.0065046898 + 800 45413.998 0 0.0024558838 0.0025741787 0.0024088704 0.0074389329 + 900 45668.624 0 0.0027366171 0.002858242 0.0027580782 0.0083529374 + 1000 45809.223 0 0.0030331425 0.003186293 0.0030414906 0.0092609261 + 1100 45193.019 0 0.0033199824 0.0034668659 0.003298885 0.010085733 + 1200 44522.927 0 0.0036503132 0.0037490684 0.0036089852 0.011008367 + 1300 45214.567 0 0.0039958617 0.0040881934 0.0038709079 0.011954963 + 1400 45217.997 0 0.004276499 0.0044624985 0.0041104891 0.012849487 + 1500 45497.171 0 0.0045943272 0.0047116875 0.0044113504 0.013717365 + 1600 45905.187 0 0.0049004996 0.0049982014 0.0047394999 0.014638201 + 1700 45551.346 0 0.0051540939 0.0053187249 0.0050861052 0.015558924 + 1800 45347.782 0 0.0054101891 0.0056306 0.0053515873 0.016392376 + 1900 45107.895 0 0.005743705 0.0059584896 0.0056220384 0.017324233 + 2000 45043.389 0 0.0059803588 0.006230449 0.005911555 0.018122363 + 2100 45433.293 0 0.0062610364 0.0066140744 0.0062152977 0.019090408 + 2200 45804.217 0 0.0064995183 0.0068831274 0.0064971789 0.019879825 + 2300 45697.516 0 0.0067910846 0.0071845673 0.0068046192 0.020780271 + 2400 45447.422 0 0.0071022706 0.0074743709 0.0070983185 0.02167496 + 2500 45395.18 0 0.0073817023 0.0077467991 0.0074263196 0.022554821 + 2600 45943.044 0 0.0075953233 0.007997707 0.0076508583 0.023243889 + 2700 45859.978 0 0.0079082128 0.0082090043 0.0078853376 0.024002555 + 2800 45822.007 0 0.0082607534 0.0084510061 0.0081985549 0.024910314 + 2900 45438.456 0 0.0085958203 0.0088807705 0.0084755353 0.025952126 + 3000 45060.957 0 0.0089017992 0.0090966159 0.0086718875 0.026670303 +Loop time of 1.23282 on 4 procs for 3000 steps with 4096 atoms + +Performance: 2102.502 tau/day, 2433.452 timesteps/s +97.9% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 8.5831e-06 | 8.5831e-06 | 8.5831e-06 | 0.0 | 0.00 +Comm | 0.10931 | 0.11473 | 0.11748 | 0.9 | 9.31 +Output | 0.001375 | 0.0018924 | 0.0034099 | 2.0 | 0.15 +Modify | 0.97744 | 0.99158 | 1.0089 | 1.3 | 80.43 +Other | | 0.1246 | | | 10.11 + +Nlocal: 1024.00 ave 1035 max 1016 min +Histogram: 2 0 0 0 0 0 1 0 0 1 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 1 +Dangerous builds = 0 +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/point/in2d.point b/examples/USER/brownian/point/in2d.point new file mode 100644 index 0000000000..bf790f8fc2 --- /dev/null +++ b/examples/USER/brownian/point/in2d.point @@ -0,0 +1,43 @@ +##### dynamics of non-interacting point particles in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} + +units lj +atom_style atomic +dimension 2 +newton off + +lattice sq 0.4 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +create_atoms 1 box +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type & +# x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 diff --git a/examples/USER/brownian/point/in3d.point b/examples/USER/brownian/point/in3d.point new file mode 100644 index 0000000000..974f08866d --- /dev/null +++ b/examples/USER/brownian/point/in3d.point @@ -0,0 +1,44 @@ +##### overdamped dynamics of non-interacting point particles in 3D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} + +units lj +atom_style atomic +dimension 3 +newton off + +lattice sc 0.4 +region box block -8 8 -8 8 -8 8 +create_box 1 box +create_atoms 1 box +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type & +# x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 + diff --git a/examples/USER/brownian/point/log.11May2021.in2d.point.g++.1 b/examples/USER/brownian/point/log.11May2021.in2d.point.g++.1 new file mode 100644 index 0000000000..b875ccedad --- /dev/null +++ b/examples/USER/brownian/point/log.11May2021.in2d.point.g++.1 @@ -0,0 +1,119 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### dynamics of non-interacting point particles in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} +variable params string gaussian_${temp}_${gamma_t} +variable params string gaussian_5.0_${gamma_t} +variable params string gaussian_5.0_1.0 + +units lj +atom_style atomic +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.003 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t 1.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.664 | 2.664 | 2.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 1022861.2 0 0.010252464 0.0095481044 0 0.019800568 + 200 986781.19 0 0.020552091 0.019485252 0 0.040037343 + 300 1030219 0 0.030642552 0.028377678 0 0.05902023 + 400 1003322.5 0 0.040610693 0.038179284 0 0.078789978 + 500 989343.12 0 0.049978908 0.047445856 0 0.097424764 + 600 1029781.3 0 0.059551719 0.057941149 0 0.11749287 + 700 999447.72 0 0.06979546 0.067552325 0 0.13734778 + 800 995373.97 0 0.080049251 0.078006344 0 0.1580556 + 900 1011991.4 0 0.089753134 0.087065214 0 0.17681835 + 1000 1006017.1 0 0.10041092 0.097934217 0 0.19834514 + 1100 997762.63 0 0.11229742 0.10841547 0 0.22071289 + 1200 1011707.8 0 0.12006388 0.1190115 0 0.23907538 + 1300 1012099.1 0 0.13097486 0.12996632 0 0.26094117 + 1400 997602.43 0 0.14345778 0.13830585 0 0.28176362 + 1500 1005358.1 0 0.15441686 0.14927539 0 0.30369225 + 1600 1007081.8 0 0.16496828 0.15936363 0 0.3243319 + 1700 990284.9 0 0.1747286 0.16818246 0 0.34291106 + 1800 969006.97 0 0.18228778 0.17972813 0 0.3620159 + 1900 998066.69 0 0.19338277 0.19226121 0 0.38564397 + 2000 972300.66 0 0.20352485 0.20145928 0 0.40498413 + 2100 985025.88 0 0.21283854 0.21090075 0 0.42373929 + 2200 1010964.6 0 0.22279055 0.22110734 0 0.44389789 + 2300 975819.44 0 0.23128131 0.23226488 0 0.46354619 + 2400 977043.53 0 0.24284105 0.24301689 0 0.48585794 + 2500 969708.21 0 0.25415238 0.25354284 0 0.50769522 + 2600 981969.5 0 0.26457173 0.26318018 0 0.52775192 + 2700 987261.1 0 0.27497004 0.27761213 0 0.55258218 + 2800 1005751.1 0 0.28530448 0.28715428 0 0.57245876 + 2900 975930.11 0 0.29394811 0.29896948 0 0.59291759 + 3000 997388.08 0 0.30674701 0.31193573 0 0.61868274 +Loop time of 1.501 on 1 procs for 3000 steps with 3600 atoms + +Performance: 1726.852 tau/day, 1998.672 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00059271 | 0.00059271 | 0.00059271 | 0.0 | 0.04 +Comm | 0.0055437 | 0.0055437 | 0.0055437 | 0.0 | 0.37 +Output | 0.0039999 | 0.0039999 | 0.0039999 | 0.0 | 0.27 +Modify | 1.3852 | 1.3852 | 1.3852 | 0.0 | 92.28 +Other | | 0.1057 | | | 7.04 + +Nlocal: 3600.00 ave 3600 max 3600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 21 +Dangerous builds = 0 + +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/point/log.11May2021.in2d.point.g++.4 b/examples/USER/brownian/point/log.11May2021.in2d.point.g++.4 new file mode 100644 index 0000000000..d12d71118e --- /dev/null +++ b/examples/USER/brownian/point/log.11May2021.in2d.point.g++.4 @@ -0,0 +1,119 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### dynamics of non-interacting point particles in 2D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} +variable params string gaussian_${temp}_${gamma_t} +variable params string gaussian_5.0_${gamma_t} +variable params string gaussian_5.0_1.0 + +units lj +atom_style atomic +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t 1.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.664 | 2.664 | 2.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 1017972.1 0 0.010094052 0.0097502899 0 0.019844342 + 200 1004552.1 0 0.020125116 0.01957629 0 0.039701406 + 300 1017712.9 0 0.030271373 0.029411656 0 0.059683029 + 400 1016693.8 0 0.040610061 0.038605869 0 0.07921593 + 500 999527.84 0 0.049451389 0.049042225 0 0.098493614 + 600 961157.92 0 0.059691948 0.059033176 0 0.11872512 + 700 1006804.9 0 0.071205977 0.069972106 0 0.14117808 + 800 1007321.8 0 0.081136977 0.079825976 0 0.16096295 + 900 1002801.7 0 0.091236148 0.090833816 0 0.18206996 + 1000 1010134.7 0 0.10091362 0.10023906 0 0.20115269 + 1100 990246.55 0 0.1118367 0.11141049 0 0.22324719 + 1200 1010555.5 0 0.12091736 0.12355456 0 0.24447192 + 1300 997117.19 0 0.13099592 0.13292775 0 0.26392367 + 1400 1020817.1 0 0.14167961 0.14172898 0 0.28340859 + 1500 1015048.1 0 0.15225884 0.15162948 0 0.30388833 + 1600 990291.98 0 0.16460973 0.16251919 0 0.32712891 + 1700 980848.58 0 0.17380313 0.17351201 0 0.34731513 + 1800 1000673.8 0 0.18383991 0.18175453 0 0.36559445 + 1900 1009388.9 0 0.19411523 0.19367453 0 0.38778976 + 2000 1005935.9 0 0.2015342 0.20585359 0 0.40738779 + 2100 985500.56 0 0.21161056 0.21238463 0 0.42399519 + 2200 997241.34 0 0.21841986 0.22117922 0 0.43959908 + 2300 1011672.3 0 0.22688099 0.23155741 0 0.4584384 + 2400 989837.68 0 0.23849839 0.24219 0 0.48068839 + 2500 1035706.8 0 0.24541408 0.24947563 0 0.49488971 + 2600 992370.08 0 0.25537803 0.25758332 0 0.51296135 + 2700 990586.56 0 0.26542605 0.26762286 0 0.53304892 + 2800 1002767.3 0 0.27570392 0.27874972 0 0.55445363 + 2900 995307.27 0 0.28580946 0.29115624 0 0.5769657 + 3000 1024317.7 0 0.29493208 0.30208924 0 0.59702132 +Loop time of 0.413047 on 4 procs for 3000 steps with 3600 atoms + +Performance: 6275.312 tau/day, 7263.093 timesteps/s +98.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00016236 | 0.00016338 | 0.00016403 | 0.0 | 0.04 +Comm | 0.0026367 | 0.0030084 | 0.0031497 | 0.4 | 0.73 +Output | 0.0011849 | 0.0013574 | 0.0018065 | 0.7 | 0.33 +Modify | 0.34447 | 0.35223 | 0.36357 | 1.2 | 85.28 +Other | | 0.05629 | | | 13.63 + +Nlocal: 900.000 ave 906 max 891 min +Histogram: 1 0 0 0 0 0 1 0 1 1 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 22 +Dangerous builds = 0 + +Total wall time: 0:00:00 diff --git a/examples/USER/brownian/point/log.11May2021.in3d.point.g++.1 b/examples/USER/brownian/point/log.11May2021.in3d.point.g++.1 new file mode 100644 index 0000000000..febb7657e7 --- /dev/null +++ b/examples/USER/brownian/point/log.11May2021.in3d.point.g++.1 @@ -0,0 +1,119 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting point particles in 3D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} +variable params string gaussian_${temp}_${gamma_t} +variable params string gaussian_5.0_${gamma_t} +variable params string gaussian_5.0_1.0 + +units lj +atom_style atomic +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.002 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t 1.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.694 | 2.694 | 2.694 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 1500286.3 0 0.0098123603 0.010352169 0.010242435 0.030406964 + 200 1488308 0 0.019934427 0.019968198 0.020471735 0.06037436 + 300 1484472.4 0 0.029397156 0.030749312 0.030121294 0.090267762 + 400 1517938.7 0 0.039217504 0.041440617 0.040512943 0.12117106 + 500 1492769.5 0 0.04890343 0.051561801 0.050614941 0.15108017 + 600 1510159.6 0 0.059770181 0.061650364 0.061298117 0.18271866 + 700 1485424.1 0 0.070537955 0.071144877 0.071141546 0.21282438 + 800 1496377.2 0 0.081291995 0.082546059 0.080653381 0.24449144 + 900 1484409.1 0 0.090940427 0.093298981 0.091328056 0.27556746 + 1000 1503322.4 0 0.10176921 0.10246052 0.10151773 0.30574747 + 1100 1503322.4 0 0.11295993 0.11052632 0.11053406 0.33402031 + 1200 1489236.2 0 0.12509723 0.11961982 0.12146498 0.36618203 + 1300 1476050.3 0 0.13449034 0.12941323 0.1309765 0.39488007 + 1400 1520818.7 0 0.14613571 0.13788044 0.14083944 0.42485558 + 1500 1498936.4 0 0.15752286 0.15057712 0.15063399 0.45873397 + 1600 1507524.1 0 0.16793678 0.16095681 0.16063531 0.4895289 + 1700 1480581.2 0 0.17748019 0.172614 0.16922383 0.51931802 + 1800 1505353.6 0 0.18850931 0.18304171 0.18063119 0.55218221 + 1900 1491234.7 0 0.19836402 0.19306339 0.1929707 0.58439811 + 2000 1519868.8 0 0.20698191 0.20211344 0.20328302 0.61237838 + 2100 1493919.5 0 0.21453524 0.21186097 0.21423293 0.64062914 + 2200 1517098.6 0 0.2257338 0.22381647 0.22474081 0.67429108 + 2300 1481270.7 0 0.23499747 0.23348379 0.23498244 0.70346369 + 2400 1495445.1 0 0.24535894 0.24290239 0.24229161 0.73055293 + 2500 1522839.3 0 0.25695938 0.25109669 0.25214541 0.76020148 + 2600 1518697.4 0 0.26680819 0.26120216 0.2604112 0.78842155 + 2700 1529283.1 0 0.27524422 0.26942681 0.27148042 0.81615146 + 2800 1500557.5 0 0.28436226 0.27957592 0.27935619 0.84329437 + 2900 1509711.1 0 0.2948528 0.28562401 0.29055956 0.87103637 + 3000 1522712.8 0 0.30347033 0.2975063 0.30121685 0.90219348 +Loop time of 2.35056 on 1 procs for 3000 steps with 4096 atoms + +Performance: 1102.718 tau/day, 1276.293 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00077772 | 0.00077772 | 0.00077772 | 0.0 | 0.03 +Comm | 0.010985 | 0.010985 | 0.010985 | 0.0 | 0.47 +Output | 0.0045807 | 0.0045807 | 0.0045807 | 0.0 | 0.19 +Modify | 2.2116 | 2.2116 | 2.2116 | 0.0 | 94.09 +Other | | 0.1226 | | | 5.22 + +Nlocal: 4096.00 ave 4096 max 4096 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 24 +Dangerous builds = 0 + +Total wall time: 0:00:02 diff --git a/examples/USER/brownian/point/log.11May2021.in3d.point.g++.4 b/examples/USER/brownian/point/log.11May2021.in3d.point.g++.4 new file mode 100644 index 0000000000..6a41a12f0f --- /dev/null +++ b/examples/USER/brownian/point/log.11May2021.in3d.point.g++.4 @@ -0,0 +1,119 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of non-interacting point particles in 3D ##### + +variable rng string gaussian +variable seed string 198098 +variable temp string 5.0 +variable gamma_t string 1.0 +variable params string ${rng}_${temp}_${gamma_t} +variable params string gaussian_${temp}_${gamma_t} +variable params string gaussian_5.0_${gamma_t} +variable params string gaussian_5.0_1.0 + +units lj +atom_style atomic +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 2 by 1 by 2 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.001 seconds +mass * 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian ${temp} ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 ${seed} rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng ${rng} gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t ${gamma_t} +fix 1 all brownian 5.0 198098 rng gaussian gamma_t 1.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 2.672 | 2.672 | 2.672 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 1515328.2 0 0.010465453 0.010044629 0.0097242319 0.030234314 + 200 1510820.8 0 0.020658886 0.019954762 0.020008864 0.060622512 + 300 1482006.5 0 0.030402195 0.029802874 0.030047586 0.090252655 + 400 1492228.5 0 0.039622543 0.038899144 0.040381854 0.11890354 + 500 1494985.5 0 0.050523465 0.050022913 0.050186478 0.15073286 + 600 1516047.4 0 0.061111845 0.061433818 0.059195364 0.18174103 + 700 1510021.8 0 0.071636778 0.072829755 0.06946406 0.21393059 + 800 1505964.7 0 0.08240965 0.08433785 0.078799851 0.24554735 + 900 1491035.9 0 0.093659937 0.094517749 0.08812559 0.27630328 + 1000 1516599.6 0 0.10436496 0.10431759 0.097480868 0.30616342 + 1100 1495170.3 0 0.11468757 0.111397 0.1069763 0.33306087 + 1200 1500630.6 0 0.12360977 0.12264534 0.11583999 0.3620951 + 1300 1474889.5 0 0.13432447 0.13471694 0.12702491 0.39606632 + 1400 1487145.8 0 0.14573239 0.14431493 0.13669403 0.42674135 + 1500 1519496.7 0 0.15610742 0.15505416 0.14600182 0.4571634 + 1600 1525674.1 0 0.16728653 0.1649354 0.15562133 0.48784325 + 1700 1540725.4 0 0.17846447 0.17666562 0.16531781 0.52044791 + 1800 1512334.8 0 0.18872753 0.18538847 0.17450009 0.54861609 + 1900 1498371.4 0 0.19688928 0.19333299 0.18581712 0.5760394 + 2000 1546459.4 0 0.20955053 0.20243854 0.19613897 0.60812803 + 2100 1509712.9 0 0.21922567 0.20940597 0.20567239 0.63430404 + 2200 1509630.4 0 0.23067999 0.21856734 0.21619911 0.66544645 + 2300 1483929.1 0 0.24160803 0.231048 0.22617193 0.69882797 + 2400 1488492.1 0 0.25399491 0.24082678 0.23972356 0.73454526 + 2500 1508107.9 0 0.26608734 0.25316913 0.2486814 0.76793787 + 2600 1511952.1 0 0.27523956 0.2623673 0.25706539 0.79467225 + 2700 1488888.8 0 0.28518299 0.27425585 0.26728622 0.82672506 + 2800 1515428.4 0 0.29595429 0.28589969 0.27781327 0.85966725 + 2900 1504312.1 0 0.30393798 0.29533034 0.28725362 0.88652194 + 3000 1521521.3 0 0.31445132 0.30117607 0.29959324 0.91522062 +Loop time of 0.708196 on 4 procs for 3000 steps with 4096 atoms + +Performance: 3660.004 tau/day, 4236.115 timesteps/s +97.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00020647 | 0.00021023 | 0.0002141 | 0.0 | 0.03 +Comm | 0.0045607 | 0.0050649 | 0.0053098 | 0.4 | 0.72 +Output | 0.0013759 | 0.002265 | 0.0037355 | 1.9 | 0.32 +Modify | 0.57353 | 0.58931 | 0.6109 | 1.8 | 83.21 +Other | | 0.1113 | | | 15.72 + +Nlocal: 1024.00 ave 1043 max 1001 min +Histogram: 1 0 0 0 0 2 0 0 0 1 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 25 +Dangerous builds = 0 + +Total wall time: 0:00:00 diff --git a/examples/USER/brownian/sphere/in2d.sphere b/examples/USER/brownian/sphere/in2d.sphere new file mode 100644 index 0000000000..a194f967cc --- /dev/null +++ b/examples/USER/brownian/sphere/in2d.sphere @@ -0,0 +1,45 @@ +##### overdamped dynamics of a sphere (with dipole attached to it) in 2D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} + +units lj +atom_style hybrid dipole sphere +dimension 2 +newton off + +lattice sq 0.4 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type & +# x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 diff --git a/examples/USER/brownian/sphere/in3d.sphere b/examples/USER/brownian/sphere/in3d.sphere new file mode 100644 index 0000000000..d3264ee450 --- /dev/null +++ b/examples/USER/brownian/sphere/in3d.sphere @@ -0,0 +1,45 @@ +##### overdamped dynamics of a sphere (with dipole attached to it) in 3D##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} + +units lj +atom_style hybrid dipole sphere +dimension 3 +newton off + +lattice sc 0.4 +region box block -8 8 -8 8 -8 8 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type & +# x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 diff --git a/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.1 b/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.1 new file mode 100644 index 0000000000..917f2b63fb --- /dev/null +++ b/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.1 @@ -0,0 +1,126 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of a sphere (with dipole attached to it) in 2D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_1.0_${gamma_r}_${gamma_t} +variable params string uniform_1.0_0.7_${gamma_t} +variable params string uniform_1.0_0.7_5.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.005 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 3600 settings made for dipole/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t 5.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.664 | 4.664 | 4.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 20867.136 0 0.00040006704 0.00039570887 0 0.00079577592 + 200 20835.491 0 0.00077560901 0.00080455484 0 0.0015801638 + 300 20813.122 0 0.0011737739 0.0012172689 0 0.0023910428 + 400 21137.397 0 0.0015587675 0.0016096093 0 0.0031683768 + 500 21167.188 0 0.0019294105 0.0020251322 0 0.0039545428 + 600 21345.908 0 0.0023105313 0.0024111742 0 0.0047217054 + 700 21086.272 0 0.0027236116 0.0027846006 0 0.0055082122 + 800 20840.906 0 0.0031505299 0.0031810732 0 0.0063316031 + 900 20916.456 0 0.0035525852 0.0035981301 0 0.0071507153 + 1000 20752.249 0 0.0039147929 0.0039791172 0 0.0078939101 + 1100 20643.612 0 0.0042977921 0.0043701484 0 0.0086679405 + 1200 21085.63 0 0.0045584242 0.0047475091 0 0.0093059332 + 1300 20900.794 0 0.0049718803 0.0051481706 0 0.010120051 + 1400 20980.731 0 0.0054234603 0.0054230724 0 0.010846533 + 1500 20916.308 0 0.0058502946 0.0058114313 0 0.011661726 + 1600 20949.786 0 0.0062258463 0.006208129 0 0.012433975 + 1700 20531.205 0 0.0066276219 0.006595921 0 0.013223543 + 1800 21418.472 0 0.0070077409 0.007030461 0 0.014038202 + 1900 21291.928 0 0.0074052208 0.0074333041 0 0.014838525 + 2000 20893.895 0 0.0077407477 0.007901402 0 0.01564215 + 2100 21218.001 0 0.0080384756 0.0082611258 0 0.016299601 + 2200 21116.189 0 0.0084325164 0.008617977 0 0.017050493 + 2300 20718.83 0 0.0089455345 0.0091768161 0 0.018122351 + 2400 20719.164 0 0.0093666455 0.0095272546 0 0.0188939 + 2500 20991.382 0 0.009706795 0.0098256506 0 0.019532446 + 2600 20515.74 0 0.0099247069 0.010329841 0 0.020254548 + 2700 21001.55 0 0.010448354 0.010693502 0 0.021141855 + 2800 21363.824 0 0.010990971 0.011142092 0 0.022133063 + 2900 20497.025 0 0.011399704 0.011504868 0 0.022904573 + 3000 20726.572 0 0.011785354 0.01187482 0 0.023660175 +Loop time of 1.76023 on 1 procs for 3000 steps with 3600 atoms + +Performance: 1472.538 tau/day, 1704.326 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.026518 | 0.026518 | 0.026518 | 0.0 | 1.51 +Output | 0.0040107 | 0.0040107 | 0.0040107 | 0.0 | 0.23 +Modify | 1.6194 | 1.6194 | 1.6194 | 0.0 | 92.00 +Other | | 0.1103 | | | 6.27 + +Nlocal: 3600.00 ave 3600 max 3600 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 121.000 ave 121 max 121 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.4 b/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.4 new file mode 100644 index 0000000000..95602a809c --- /dev/null +++ b/examples/USER/brownian/sphere/log.11May2021.in2d.sphere.g++.4 @@ -0,0 +1,126 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of a sphere (with dipole attached to it) in 2D ##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_1.0_${gamma_r}_${gamma_t} +variable params string uniform_1.0_0.7_${gamma_t} +variable params string uniform_1.0_0.7_5.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -30 30 -30 30 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-47.434165 -47.434165 -0.31622777) to (47.434165 47.434165 0.31622777) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.002 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 3600 settings made for dipole/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t 5.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_2d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.664 | 4.664 | 4.664 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 0.99972222 0 0 0 0 0 + 100 21085.797 0 0.00042014118 0.00040399828 0 0.00082413946 + 200 20598.717 0 0.00081715618 0.00082613236 0 0.0016432885 + 300 21040.226 0 0.0012412527 0.0012520475 0 0.0024933002 + 400 21289.734 0 0.0016129899 0.001634482 0 0.003247472 + 500 20951.595 0 0.0020104279 0.0020197694 0 0.0040301973 + 600 20984.974 0 0.0023965593 0.0024277086 0 0.0048242679 + 700 21252.602 0 0.0028349303 0.0028407812 0 0.0056757114 + 800 20951.95 0 0.0032674595 0.0032573476 0 0.0065248071 + 900 20828.611 0 0.003647953 0.0036650963 0 0.0073130493 + 1000 21073.256 0 0.0040238604 0.0040103537 0 0.0080342142 + 1100 21104.396 0 0.0043694059 0.0044146515 0 0.0087840574 + 1200 20580.591 0 0.0047638237 0.0047646659 0 0.0095284896 + 1300 20667.623 0 0.0051512568 0.0051134445 0 0.010264701 + 1400 20466.72 0 0.0055921578 0.005517863 0 0.011110021 + 1500 20842.366 0 0.0059747304 0.0059374031 0 0.011912134 + 1600 20867.02 0 0.0065493697 0.0064163066 0 0.012965676 + 1700 21021.077 0 0.0070208005 0.0068164842 0 0.013837285 + 1800 21191.183 0 0.0073708939 0.0073226521 0 0.014693546 + 1900 20792.8 0 0.0076984189 0.0077400043 0 0.015438423 + 2000 21296.326 0 0.0081882545 0.0081503672 0 0.016338622 + 2100 21085.097 0 0.008596146 0.0086041272 0 0.017200273 + 2200 20506.523 0 0.0089905439 0.0091045462 0 0.01809509 + 2300 21068.555 0 0.0094163509 0.0094703314 0 0.018886682 + 2400 21128.867 0 0.0097349212 0.0098535832 0 0.019588504 + 2500 21009.514 0 0.010218059 0.010244621 0 0.020462679 + 2600 21177.52 0 0.01060437 0.010642719 0 0.021247089 + 2700 20832.56 0 0.011052623 0.011078899 0 0.022131522 + 2800 21298.053 0 0.011439708 0.011587702 0 0.023027411 + 2900 21002.28 0 0.011863624 0.01199682 0 0.023860443 + 3000 20737.939 0 0.012229608 0.012324579 0 0.024554186 +Loop time of 0.492798 on 4 procs for 3000 steps with 3600 atoms + +Performance: 5259.763 tau/day, 6087.689 timesteps/s +96.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.018005 | 0.021524 | 0.025207 | 2.2 | 4.37 +Output | 0.0013187 | 0.0018334 | 0.0032332 | 1.9 | 0.37 +Modify | 0.37545 | 0.38775 | 0.40664 | 1.9 | 78.68 +Other | | 0.08169 | | | 16.58 + +Nlocal: 900.000 ave 900 max 900 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 61.0000 ave 61 max 61 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:00 diff --git a/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.1 b/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.1 new file mode 100644 index 0000000000..20048f96f1 --- /dev/null +++ b/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.1 @@ -0,0 +1,126 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of a sphere (with dipole attached to it) in 3D##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_1.0_${gamma_r}_${gamma_t} +variable params string uniform_1.0_0.7_${gamma_t} +variable params string uniform_1.0_0.7_5.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.005 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 4096 settings made for dipole/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t 5.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.737 | 4.737 | 4.737 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 32032.279 0 0.00040227568 0.00039159837 0.00040147813 0.0011953522 + 200 31673.093 0 0.00077657885 0.00077292327 0.00079963705 0.0023491392 + 300 31476.164 0 0.0011712083 0.0011606723 0.0012089537 0.0035408343 + 400 31911.374 0 0.0015803424 0.001562091 0.0016042321 0.0047466655 + 500 31182.011 0 0.0019677217 0.0019269105 0.0020015977 0.0058962298 + 600 31206.05 0 0.0023360975 0.0023134398 0.0024213372 0.0070708745 + 700 31278.057 0 0.0026966955 0.0027129858 0.0028721373 0.0082818187 + 800 31677.724 0 0.0031197964 0.003134834 0.0032726303 0.0095272607 + 900 31312.741 0 0.0035636612 0.0035573653 0.0037328373 0.010853864 + 1000 31426.075 0 0.0039774626 0.003952159 0.0041879386 0.01211756 + 1100 31361.699 0 0.0044256852 0.004320566 0.004638132 0.013384383 + 1200 31559.778 0 0.0048338539 0.0047210601 0.0050296056 0.01458452 + 1300 31716.797 0 0.0052239651 0.0050796723 0.0054794684 0.015783106 + 1400 31231.077 0 0.0055890568 0.005472377 0.0059264123 0.016987846 + 1500 31605.513 0 0.0059876582 0.0058974054 0.0063452478 0.018230311 + 1600 31551.402 0 0.006413094 0.0062665632 0.0067442106 0.019423868 + 1700 31725.868 0 0.0068244611 0.0067189707 0.0071424779 0.02068591 + 1800 31385.794 0 0.0071570297 0.0070502303 0.0075240296 0.02173129 + 1900 31754.094 0 0.0075638662 0.0074243015 0.0079935325 0.0229817 + 2000 31668.959 0 0.0080059944 0.0079019753 0.0084000614 0.024308031 + 2100 31781.994 0 0.0084108141 0.0082719077 0.0088004977 0.02548322 + 2200 31455.021 0 0.0088844434 0.0086931769 0.0091916929 0.026769313 + 2300 31273.079 0 0.0093155639 0.0091027782 0.0095364621 0.027954804 + 2400 31283.781 0 0.0098441686 0.0094496218 0.0099279073 0.029221698 + 2500 31758.315 0 0.010372129 0.0097843406 0.010334653 0.030491123 + 2600 31780.442 0 0.010770862 0.010313119 0.010637545 0.031721525 + 2700 31552.277 0 0.011268703 0.010693437 0.01110762 0.033069759 + 2800 31124.693 0 0.011661333 0.011100115 0.011480624 0.034242072 + 2900 31438.795 0 0.012068847 0.011346633 0.011842006 0.035257486 + 3000 31574.258 0 0.012482632 0.011691477 0.012210207 0.036384317 +Loop time of 2.8531 on 1 procs for 3000 steps with 4096 atoms + +Performance: 908.486 tau/day, 1051.488 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 3.2425e-05 | 3.2425e-05 | 3.2425e-05 | 0.0 | 0.00 +Comm | 0.13219 | 0.13219 | 0.13219 | 0.0 | 4.63 +Output | 0.0045686 | 0.0045686 | 0.0045686 | 0.0 | 0.16 +Modify | 2.5857 | 2.5857 | 2.5857 | 0.0 | 90.63 +Other | | 0.1307 | | | 4.58 + +Nlocal: 4096.00 ave 4096 max 4096 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 1 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.4 b/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.4 new file mode 100644 index 0000000000..57dc6d5f11 --- /dev/null +++ b/examples/USER/brownian/sphere/log.11May2021.in3d.sphere.g++.4 @@ -0,0 +1,126 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +##### overdamped dynamics of a sphere (with dipole attached to it) in 3D##### + +variable rng string uniform +variable seed string 198098 +variable temp string 1.0 +variable gamma_t string 5.0 +variable gamma_r string 0.7 +variable params string ${rng}_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_${temp}_${gamma_r}_${gamma_t} +variable params string uniform_1.0_${gamma_r}_${gamma_t} +variable params string uniform_1.0_0.7_${gamma_t} +variable params string uniform_1.0_0.7_5.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 2 by 1 by 2 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.006 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 198098 1.0 +Setting atom values ... + 4096 settings made for dipole/random +velocity all create 1.0 1 loop geom + +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +pair_style none + +fix 1 all brownian/sphere ${temp} ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 ${seed} rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng ${rng} gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r ${gamma_r} gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t ${gamma_t} +fix 1 all brownian/sphere 1.0 198098 rng uniform gamma_r 0.7 gamma_t 5.0 + +#initialisation for the main run + +# MSD +compute msd all msd + +thermo_style custom step ke pe c_msd[*] + +#dump 1 all custom 1000 dump_${params}_3d.lammpstrj id type # x y z xu yu zu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +timestep 0.00001 +thermo 100 + +# main run +run 3000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.694 | 4.694 | 4.694 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] + 0 1.4996338 0 0 0 0 0 + 100 30882.707 0 0.00040787161 0.00039391576 0.00040796913 0.0012097565 + 200 31370.751 0 0.00081742036 0.00078240455 0.0008195167 0.0024193416 + 300 31469.51 0 0.0012118299 0.0011819412 0.0012477119 0.003641483 + 400 31696.58 0 0.0015540547 0.0015849689 0.0015836091 0.0047226327 + 500 31488.269 0 0.0019638041 0.0019659637 0.0020547832 0.005984551 + 600 30942.589 0 0.0023273784 0.0023572171 0.0024715245 0.00715612 + 700 31228.473 0 0.0027821732 0.002735338 0.0028734675 0.0083909787 + 800 31426.92 0 0.0031663838 0.0031092782 0.0033231014 0.0095987634 + 900 31447.595 0 0.003539588 0.003564381 0.003753036 0.010857005 + 1000 31363.911 0 0.0039854308 0.003937555 0.0041203919 0.012043378 + 1100 31522.958 0 0.0043009285 0.0043676491 0.0044799414 0.013148519 + 1200 31403.033 0 0.0046361199 0.0047513598 0.0049014974 0.014288977 + 1300 31752.182 0 0.0049824718 0.0051327113 0.0053130614 0.015428244 + 1400 31336.955 0 0.0054251445 0.0055442325 0.0057472998 0.016716677 + 1500 31224.306 0 0.0059295596 0.0059920697 0.0061375228 0.018059152 + 1600 31744.535 0 0.0063845142 0.0063600989 0.0064833215 0.019227935 + 1700 31472.081 0 0.0068360092 0.0067985824 0.0069464303 0.020581022 + 1800 31577.334 0 0.0073001079 0.0071355564 0.0073400543 0.021775719 + 1900 31521.234 0 0.0077178677 0.0074371106 0.007708008 0.022862986 + 2000 31045.148 0 0.0080515968 0.0078583776 0.0081000219 0.024009996 + 2100 31289.809 0 0.0084280175 0.0082322226 0.0084475904 0.02510783 + 2200 31505.455 0 0.008802925 0.0085708943 0.0087648194 0.026138639 + 2300 31882.722 0 0.0092223105 0.0089242925 0.0092643028 0.027410906 + 2400 31028.15 0 0.0095737559 0.0093585981 0.0096771837 0.028609538 + 2500 31581.041 0 0.0099316284 0.009785264 0.010100235 0.029817127 + 2600 31272.119 0 0.010332986 0.01007291 0.010474606 0.030880502 + 2700 31537.8 0 0.010751592 0.010565273 0.01093107 0.032247935 + 2800 31060.697 0 0.011156729 0.011010751 0.011260025 0.033427506 + 2900 31541.612 0 0.011542003 0.011499419 0.011642873 0.034684295 + 3000 31305.382 0 0.011876832 0.011866445 0.012052577 0.035795854 +Loop time of 1.00142 on 4 procs for 3000 steps with 4096 atoms + +Performance: 2588.329 tau/day, 2995.751 timesteps/s +95.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.084416 | 0.10685 | 0.12695 | 5.7 | 10.67 +Output | 0.001471 | 0.0019466 | 0.0033245 | 1.8 | 0.19 +Modify | 0.66585 | 0.70645 | 0.78995 | 6.0 | 70.54 +Other | | 0.1862 | | | 18.59 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 353.000 ave 353 max 353 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +Total wall time: 0:00:01 diff --git a/examples/USER/brownian/spherical_ABP/in2d.abp b/examples/USER/brownian/spherical_ABP/in2d.abp new file mode 100644 index 0000000000..bd7dce13b6 --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/in2d.abp @@ -0,0 +1,60 @@ +# 2D overdamped active brownian particle dynamics (ABP) +# with WCA potential + +variable gamma_t string 1.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} + +units lj +atom_style hybrid dipole sphere +dimension 2 +newton off + +lattice sq 0.4 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +velocity all create 1.0 1 loop geom + +# more careful with neighbors since higher diffusion in abps +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +# WCA potential (purely repulsive) +pair_style lj/cut 2.5 +pair_coeff * * 1.0 1.0 1.1224 +pair_modify shift yes + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} +fix 2 all enforce2d + +compute press all pressure NULL virial + +thermo_style custom step pe ke c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +reset_timestep 0 + + +# MSD +compute msd all msd + +thermo_style custom step temp epair c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 20000 diff --git a/examples/USER/brownian/spherical_ABP/in3d.ideal_abp b/examples/USER/brownian/spherical_ABP/in3d.ideal_abp new file mode 100644 index 0000000000..6a6575b510 --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/in3d.ideal_abp @@ -0,0 +1,67 @@ +# 3D overdamped active brownian dynamics with no interactions + +variable gamma_t string 3.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} + +units lj +atom_style hybrid dipole sphere +dimension 3 +newton off + +lattice sc 0.4 +region box block -8 8 -8 8 -8 8 +create_box 1 box +create_atoms 1 box +mass * 1.0 +set type * dipole/random ${seed} 1.0 +velocity all create 1.0 1 loop geom + +pair_style none + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} + +compute press all pressure NULL virial + +thermo_style custom step ke pe c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +reset_timestep 0 + +# MSD to demonstrate expected diffusive behaviour for ideal active +# brownian motion, which is +# +# MSD = (2*d*kb*T/gamma_t + 2*fp**2*gamma_r/(kb*T*gamma_t**2*(d-1)))*t +# + 2*fp**2*gamma_r**2/(gamma_t**2*(d-1)**2*(kb*T)**2)*(e^(-(d-1)*t*kb*T/gamma_r)-1) +# +# with d being simulation dimension +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 + +# if you want to check that rotational diffusion is behaving as expected, +# uncomment next three lines for dump output and then plot , +# which should decay exponentially with timescale (d-1)*D_r (with d +# being simulation dimension) + +#dump 1 all custom 2000 dump_ideal_${params}_3d.lammpstrj id type & +# x y xu yu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +#run 120000 diff --git a/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.1 b/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.1 new file mode 100644 index 0000000000..452d8a3d52 --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.1 @@ -0,0 +1,221 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +# 2D overdamped active brownian particle dynamics (ABP) +# with WCA potential + +variable gamma_t string 1.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_1.0_${gamma_r}_${fp} +variable params string 1.0_1.0_1.0_${fp} +variable params string 1.0_1.0_1.0_4.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-25.298221 -25.298221 -0.31622777) to (25.298221 25.298221 0.31622777) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 1024 atoms + create_atoms CPU = 0.002 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 1974019 1.0 +Setting atom values ... + 1024 settings made for dipole/random +velocity all create 1.0 1 loop geom + +# more careful with neighbors since higher diffusion in abps +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +# WCA potential (purely repulsive) +pair_style lj/cut 2.5 +pair_coeff * * 1.0 1.0 1.1224 +pair_modify shift yes + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 1.0 gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 1.0 gamma_r 1.0 +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} +fix activity all propel/self dipole 4.0 +fix 2 all enforce2d + +compute press all pressure NULL virial + +thermo_style custom step pe ke c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +Neighbor list info ... + update every 1 steps, delay 1 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.1224 + ghost atom cutoff = 2.1224 + binsize = 1.0612, bins = 48 48 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton off + pair build: half/bin/newtoff + stencil: half/bin/2d/newtoff + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.066 | 5.066 | 5.066 Mbytes +Step PotEng KinEng c_press + 0 0 0.99902344 -0.53979198 + 100 0 1.026585e+10 -0.5398101 + 200 0 1.0630628e+10 -0.53977393 + 300 0 1.03483e+10 -0.53977041 + 400 0 1.049279e+10 -0.53974314 + 500 0 1.0832067e+10 -0.53979451 + 600 0 1.0403632e+10 -0.53976233 + 700 0 1.0334726e+10 -0.53976174 + 800 0 1.0119596e+10 -0.53969338 + 900 0 1.0786136e+10 -0.53970415 + 1000 0 1.0539036e+10 -0.53974577 + 1100 0 1.0643695e+10 -0.53982431 + 1200 0 1.0234642e+10 -0.53976823 + 1300 0 1.036268e+10 -0.53981454 + 1400 0 1.0605702e+10 -0.53988117 + 1500 0 1.0517916e+10 -0.53989207 + 1600 0 1.0564482e+10 -0.53993016 + 1700 0 1.0460152e+10 -0.53984454 + 1800 0 1.0468566e+10 -0.53985574 + 1900 0 1.0474075e+10 -0.53985439 + 2000 0 1.0683568e+10 -0.53987349 + 2100 0 1.0269077e+10 -0.53990709 + 2200 0 1.0386943e+10 -0.53990068 + 2300 0 1.0406078e+10 -0.53978402 + 2400 0 1.0482072e+10 -0.53980757 + 2500 0 1.0442975e+10 -0.53982657 + 2600 0 1.0292103e+10 -0.53985533 + 2700 0 1.1106453e+10 -0.53991861 + 2800 0 1.0395289e+10 -0.53990138 + 2900 0 1.034021e+10 -0.53992375 + 3000 0 1.0434718e+10 -0.53995566 + 3100 0 1.0194094e+10 -0.53993997 + 3200 0 1.0411552e+10 -0.54000097 + 3300 0 1.0214175e+10 -0.53999884 + 3400 0 1.0434719e+10 -0.54000005 + 3500 0 1.0529638e+10 -0.53998281 + 3600 0 1.0406541e+10 -0.54000141 + 3700 0 1.0577151e+10 -0.54002354 + 3800 0 1.0488249e+10 -0.53996003 + 3900 0 1.0316153e+10 -0.54002024 + 4000 0 1.0491289e+10 -0.5400259 + 4100 0 1.0587981e+10 -0.5399811 + 4200 0 1.0332035e+10 -0.53997951 + 4300 0 1.0776469e+10 -0.53994151 + 4400 0 1.0982142e+10 -0.53983842 + 4500 0 1.0796919e+10 -0.5398414 + 4600 0 1.0324249e+10 -0.53979712 + 4700 0 1.0420899e+10 -0.53981967 + 4800 0 1.0274188e+10 -0.53976759 + 4900 0 1.0411535e+10 -0.5397757 + 5000 0 1.0399215e+10 -0.53980199 +Loop time of 1.34285 on 1 procs for 5000 steps with 1024 atoms + +Performance: 0.032 tau/day, 3723.422 timesteps/s +99.8% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.25309 | 0.25309 | 0.25309 | 0.0 | 18.85 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.068734 | 0.068734 | 0.068734 | 0.0 | 5.12 +Output | 0.0012887 | 0.0012887 | 0.0012887 | 0.0 | 0.10 +Modify | 0.96552 | 0.96552 | 0.96552 | 0.0 | 71.90 +Other | | 0.05422 | | | 4.04 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 201.000 ave 201 max 201 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 2112.00 ave 2112 max 2112 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 2112 +Ave neighs/atom = 2.0625000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + + +# MSD +compute msd all msd + +thermo_style custom step temp epair c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 20000 +Per MPI rank memory allocation (min/avg/max) = 5.441 | 5.441 | 5.441 Mbytes +Step Temp E_pair c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 1.0409381e+10 0 0 0 0 0 -0.53980199 + 1000 107022.73 0.0080050427 0.020451432 0.021388798 0 0.04184023 -0.54900967 + 2000 107475.82 0.017262846 0.040669645 0.044251149 0 0.084920794 -0.42740968 + 3000 105388.35 0.042257875 0.062828995 0.05845782 0 0.12128682 -0.31792184 + 4000 106238.38 0.052733384 0.079036841 0.079396453 0 0.15843329 -0.24243699 + 5000 102904.54 0.088524456 0.095977642 0.099533961 0 0.1955116 -0.093468615 + 6000 105274.15 0.065334999 0.11591691 0.11675531 0 0.23267222 -0.21904478 + 7000 108903.41 0.06724271 0.13694218 0.13914947 0 0.27609164 -0.15913012 + 8000 101451.44 0.097201152 0.15704893 0.16178845 0 0.31883738 -0.055786965 + 9000 106808.72 0.084301668 0.18029391 0.175753 0 0.3560469 0.014898739 + 10000 107381.19 0.088583354 0.2000753 0.19569789 0 0.39577319 0.19417596 + 11000 102105.78 0.081066654 0.22042599 0.21914042 0 0.43956641 0.060574143 + 12000 105384.94 0.098716908 0.24382064 0.24673594 0 0.49055657 0.17067875 + 13000 107479.53 0.099989043 0.26942088 0.27207566 0 0.54149654 0.25514896 + 14000 102938.12 0.093252916 0.28529564 0.28698837 0 0.57228401 0.19976355 + 15000 104408.02 0.11900926 0.31291315 0.31195058 0 0.62486373 0.36956014 + 16000 103447.68 0.09627777 0.34145225 0.33159885 0 0.6730511 0.29857404 + 17000 108400.05 0.11433561 0.36561966 0.36068301 0 0.72630267 0.41922801 + 18000 103363.68 0.11040153 0.38709746 0.39228677 0 0.77938423 0.38111686 + 19000 103310.43 0.10660536 0.41406235 0.40975085 0 0.8238132 0.36022184 + 20000 102692.1 0.13517651 0.43870812 0.44138776 0 0.88009588 0.51144366 +Loop time of 5.66207 on 1 procs for 20000 steps with 1024 atoms + +Performance: 3051.889 tau/day, 3532.279 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 1.3123 | 1.3123 | 1.3123 | 0.0 | 23.18 +Neigh | 0.011856 | 0.011856 | 0.011856 | 0.0 | 0.21 +Comm | 0.2747 | 0.2747 | 0.2747 | 0.0 | 4.85 +Output | 0.0011516 | 0.0011516 | 0.0011516 | 0.0 | 0.02 +Modify | 3.8451 | 3.8451 | 3.8451 | 0.0 | 67.91 +Other | | 0.2169 | | | 3.83 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 184.000 ave 184 max 184 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 2558.00 ave 2558 max 2558 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 2558 +Ave neighs/atom = 2.4980469 +Neighbor list builds = 23 +Dangerous builds = 0 +Total wall time: 0:00:07 diff --git a/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.4 b/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.4 new file mode 100644 index 0000000000..aa902fbe80 --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/log.11May2021.in2d.apb.g++.4 @@ -0,0 +1,221 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +# 2D overdamped active brownian particle dynamics (ABP) +# with WCA potential + +variable gamma_t string 1.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_1.0_${gamma_r}_${fp} +variable params string 1.0_1.0_1.0_${fp} +variable params string 1.0_1.0_1.0_4.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 2 +newton off + +lattice sq 0.4 +Lattice spacing in x,y,z = 1.5811388 1.5811388 1.5811388 +region box block -16 16 -16 16 -0.2 0.2 +create_box 1 box +Created orthogonal box = (-25.298221 -25.298221 -0.31622777) to (25.298221 25.298221 0.31622777) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 1024 atoms + create_atoms CPU = 0.001 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 1974019 1.0 +Setting atom values ... + 1024 settings made for dipole/random +velocity all create 1.0 1 loop geom + +# more careful with neighbors since higher diffusion in abps +neighbor 1.0 bin +neigh_modify every 1 delay 1 check yes + +# WCA potential (purely repulsive) +pair_style lj/cut 2.5 +pair_coeff * * 1.0 1.0 1.1224 +pair_modify shift yes + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 1.0 gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 1.0 gamma_r 1.0 +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} +fix activity all propel/self dipole 4.0 +fix 2 all enforce2d + +compute press all pressure NULL virial + +thermo_style custom step pe ke c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +Neighbor list info ... + update every 1 steps, delay 1 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 2.1224 + ghost atom cutoff = 2.1224 + binsize = 1.0612, bins = 48 48 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut, perpetual + attributes: half, newton off + pair build: half/bin/newtoff + stencil: half/bin/2d/newtoff + bin: standard +Per MPI rank memory allocation (min/avg/max) = 5.052 | 5.052 | 5.052 Mbytes +Step PotEng KinEng c_press + 0 0 0.99902344 -0.53979198 + 100 0 1.0503521e+10 -0.53983092 + 200 0 1.0390343e+10 -0.5398287 + 300 0 1.0493441e+10 -0.53979247 + 400 0 1.0545991e+10 -0.53978678 + 500 0 1.0266398e+10 -0.53986297 + 600 0 1.0484775e+10 -0.53978746 + 700 0 1.0583596e+10 -0.53969114 + 800 0 1.0521919e+10 -0.53968754 + 900 0 1.0492019e+10 -0.53958643 + 1000 0 1.0298052e+10 -0.53949872 + 1100 0 1.0531424e+10 -0.53955431 + 1200 0 1.0635635e+10 -0.53960048 + 1300 0 1.0633405e+10 -0.53966331 + 1400 0 1.0195401e+10 -0.53968849 + 1500 0 1.0593758e+10 -0.53969763 + 1600 0 1.0425238e+10 -0.53971936 + 1700 0 1.0470017e+10 -0.53981957 + 1800 0 1.0545953e+10 -0.53987747 + 1900 0 1.0425015e+10 -0.53990412 + 2000 0 1.0655092e+10 -0.5399511 + 2100 0 1.0197224e+10 -0.53988687 + 2200 0 1.0448012e+10 -0.53986066 + 2300 0 1.0355268e+10 -0.53980415 + 2400 0 1.0246979e+10 -0.53979737 + 2500 0 1.0021539e+10 -0.5397919 + 2600 0 1.0200824e+10 -0.5397575 + 2700 0 1.0721591e+10 -0.53973512 + 2800 0 1.0354562e+10 -0.5397127 + 2900 0 1.0306795e+10 -0.5396946 + 3000 0 1.0301339e+10 -0.53968642 + 3100 0 1.0435826e+10 -0.53970945 + 3200 0 1.019524e+10 -0.53969746 + 3300 0 1.0550481e+10 -0.53967977 + 3400 0 1.0283446e+10 -0.53971102 + 3500 0 1.0956695e+10 -0.53976173 + 3600 0 1.0271033e+10 -0.53983632 + 3700 0 1.0389461e+10 -0.53977293 + 3800 0 1.0680515e+10 -0.53977425 + 3900 0 1.0072183e+10 -0.53982922 + 4000 0 1.0458036e+10 -0.53980042 + 4100 0 1.0588689e+10 -0.53971405 + 4200 0 1.0068308e+10 -0.5398033 + 4300 0 1.0502064e+10 -0.53981291 + 4400 0 1.0590544e+10 -0.5398346 + 4500 0 1.0411612e+10 -0.5397916 + 4600 0 1.0518596e+10 -0.53984868 + 4700 0 1.0386105e+10 -0.53977803 + 4800 0 1.029525e+10 -0.53970882 + 4900 0 1.0519112e+10 -0.53969616 + 5000 0 1.0335841e+10 -0.53976477 +Loop time of 0.471663 on 4 procs for 5000 steps with 1024 atoms + +Performance: 0.092 tau/day, 10600.781 timesteps/s +95.8% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.067099 | 0.07105 | 0.077898 | 1.6 | 15.06 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.0581 | 0.066084 | 0.072322 | 2.0 | 14.01 +Output | 0.0014644 | 0.002618 | 0.0037239 | 1.6 | 0.56 +Modify | 0.24817 | 0.25719 | 0.26697 | 1.3 | 54.53 +Other | | 0.07472 | | | 15.84 + +Nlocal: 256.000 ave 256 max 256 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 105.000 ave 105 max 105 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 544.000 ave 544 max 544 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 2176 +Ave neighs/atom = 2.1250000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + + +# MSD +compute msd all msd + +thermo_style custom step temp epair c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 20000 +Per MPI rank memory allocation (min/avg/max) = 5.427 | 5.427 | 5.427 Mbytes +Step Temp E_pair c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 1.0345945e+10 0 0 0 0 0 -0.53976477 + 1000 100114.28 0.0029703577 0.020320684 0.020950989 0 0.041271673 -0.43948247 + 2000 106825.83 0.020969054 0.039616412 0.039459167 0 0.079075578 -0.22765541 + 3000 105287.4 0.037343571 0.056828177 0.058639835 0 0.11546801 -0.11728136 + 4000 104522.23 0.052237136 0.080264931 0.080863543 0 0.16112847 0.033230576 + 5000 103277.94 0.053791862 0.099188864 0.10141444 0 0.20060331 0.073591503 + 6000 104252.87 0.073304776 0.11964238 0.1215576 0 0.24119999 0.22062305 + 7000 105184.19 0.089054043 0.13691291 0.14216478 0 0.27907769 0.29015692 + 8000 104211.82 0.072577918 0.15820522 0.15658491 0 0.31479013 0.25908291 + 9000 99242.172 0.071616004 0.17658708 0.17479704 0 0.35138412 0.26305532 + 10000 105070.83 0.077009979 0.20175025 0.19871513 0 0.40046538 0.34120567 + 11000 106421.07 0.098623061 0.22472634 0.22671582 0 0.45144216 0.44021335 + 12000 103209.85 0.12032847 0.25004966 0.25368441 0 0.50373406 0.57344873 + 13000 107156.89 0.1058386 0.27283231 0.2744873 0 0.54731961 0.47957408 + 14000 108119.3 0.1204768 0.29333677 0.30054535 0 0.59388213 0.51832639 + 15000 105477.62 0.12510026 0.32217621 0.32806599 0 0.6502422 0.50174158 + 16000 106676.27 0.10893618 0.34980866 0.36031184 0 0.7101205 0.44769198 + 17000 103048.41 0.10625673 0.3781797 0.37970499 0 0.75788468 0.42803898 + 18000 109454.8 0.10555778 0.40997694 0.41396777 0 0.82394471 0.41380982 + 19000 107459.73 0.11267582 0.43757738 0.43577856 0 0.87335594 0.4917748 + 20000 101991.9 0.084279008 0.45363612 0.46278076 0 0.91641688 0.41707912 +Loop time of 1.80877 on 4 procs for 20000 steps with 1024 atoms + +Performance: 9553.439 tau/day, 11057.221 timesteps/s +98.5% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0.34461 | 0.36424 | 0.40948 | 4.4 | 20.14 +Neigh | 0.0031493 | 0.003215 | 0.0032432 | 0.1 | 0.18 +Comm | 0.19538 | 0.20419 | 0.2104 | 1.2 | 11.29 +Output | 0.00054121 | 0.00087297 | 0.0018425 | 0.0 | 0.05 +Modify | 0.98335 | 1.0156 | 1.0791 | 3.8 | 56.15 +Other | | 0.2207 | | | 12.20 + +Nlocal: 256.000 ave 261 max 252 min +Histogram: 1 1 0 0 0 0 1 0 0 1 +Nghost: 93.0000 ave 100 max 83 min +Histogram: 1 0 0 0 0 0 1 1 0 1 +Neighs: 662.250 ave 693 max 635 min +Histogram: 1 0 1 0 0 0 1 0 0 1 + +Total # of neighbors = 2649 +Ave neighs/atom = 2.5869141 +Neighbor list builds = 23 +Dangerous builds = 0 +Total wall time: 0:00:02 diff --git a/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.1 b/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.1 new file mode 100644 index 0000000000..0820471faa --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.1 @@ -0,0 +1,210 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +# 3D overdamped active brownian dynamics with no interactions + +variable gamma_t string 3.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_3.0_${gamma_r}_${fp} +variable params string 1.0_3.0_1.0_${fp} +variable params string 1.0_3.0_1.0_4.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.004 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 1974019 1.0 +Setting atom values ... + 4096 settings made for dipole/random +velocity all create 1.0 1 loop geom + +pair_style none + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 3.0 gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 3.0 gamma_r 1.0 +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} +fix activity all propel/self dipole 4.0 + +compute press all pressure NULL virial + +thermo_style custom step ke pe c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.362 | 4.362 | 4.362 Mbytes +Step KinEng PotEng c_press + 0 1.4996338 0 0.068021726 + 100 5.184227e+09 0 0.06801544 + 200 5.2165482e+09 0 0.068010729 + 300 5.2782092e+09 0 0.068009058 + 400 5.3244927e+09 0 0.068003481 + 500 5.2376606e+09 0 0.067998237 + 600 5.2735634e+09 0 0.067998037 + 700 5.2692439e+09 0 0.068025402 + 800 5.2667984e+09 0 0.068030143 + 900 5.242057e+09 0 0.0680246 + 1000 5.2557468e+09 0 0.068028348 + 1100 5.2975687e+09 0 0.068029528 + 1200 5.2081927e+09 0 0.068017542 + 1300 5.2636873e+09 0 0.068012572 + 1400 5.2187907e+09 0 0.06802049 + 1500 5.2349541e+09 0 0.0680373 + 1600 5.216092e+09 0 0.068056885 + 1700 5.2598019e+09 0 0.068069504 + 1800 5.2569065e+09 0 0.068065306 + 1900 5.2072055e+09 0 0.068074863 + 2000 5.2092961e+09 0 0.068061619 + 2100 5.2918572e+09 0 0.068076418 + 2200 5.2680626e+09 0 0.068072149 + 2300 5.242958e+09 0 0.06806486 + 2400 5.2494099e+09 0 0.06805038 + 2500 5.2055798e+09 0 0.068072194 + 2600 5.2264829e+09 0 0.068069312 + 2700 5.3557342e+09 0 0.068064812 + 2800 5.2186177e+09 0 0.068042942 + 2900 5.2652497e+09 0 0.068044214 + 3000 5.1894899e+09 0 0.068044801 + 3100 5.241524e+09 0 0.068056675 + 3200 5.1915006e+09 0 0.06805641 + 3300 5.2367825e+09 0 0.068049946 + 3400 5.2288011e+09 0 0.068060182 + 3500 5.2704335e+09 0 0.068070881 + 3600 5.2886558e+09 0 0.068050439 + 3700 5.1976022e+09 0 0.068045927 + 3800 5.1525512e+09 0 0.068054494 + 3900 5.2212395e+09 0 0.068061432 + 4000 5.2309575e+09 0 0.068070842 + 4100 5.2260184e+09 0 0.068078378 + 4200 5.2829349e+09 0 0.068071652 + 4300 5.2204917e+09 0 0.068083072 + 4400 5.255242e+09 0 0.068066175 + 4500 5.2435681e+09 0 0.068050802 + 4600 5.2483356e+09 0 0.06805658 + 4700 5.2365098e+09 0 0.068041845 + 4800 5.2254325e+09 0 0.068038583 + 4900 5.1842852e+09 0 0.068028401 + 5000 5.2240722e+09 0 0.068031544 +Loop time of 5.14275 on 1 procs for 5000 steps with 4096 atoms + +Performance: 0.008 tau/day, 972.242 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.26842 | 0.26842 | 0.26842 | 0.0 | 5.22 +Output | 0.0035088 | 0.0035088 | 0.0035088 | 0.0 | 0.07 +Modify | 4.6588 | 4.6588 | 4.6588 | 0.0 | 90.59 +Other | | 0.212 | | | 4.12 + +Nlocal: 4096.00 ave 4096 max 4096 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 817.000 ave 817 max 817 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + +# MSD to demonstrate expected diffusive behaviour for ideal active +# brownian motion, which is +# +# MSD = (2*d*kb*T/gamma_t + 2*fp**2*gamma_r/(kb*T*gamma_t**2*(d-1)))*t +# + 2*fp**2*gamma_r**2/(gamma_t**2*(d-1)**2*(kb*T)**2)*(e^(-(d-1)*t*kb*T/gamma_r)-1) +# +# with d being simulation dimension +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.737 | 4.737 | 4.737 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 5.2240722e+09 0 0 0 0 0 0.068031544 + 1000 52651.581 0 0.0066842466 0.0067977045 0.0066831353 0.020165086 0.060774985 + 2000 52835.806 0 0.013693443 0.014008773 0.013518945 0.041221161 0.094748037 + 3000 52097.629 0 0.020666918 0.021696789 0.020665685 0.063029392 0.10673866 + 4000 52579.452 0 0.028145318 0.028504548 0.02830967 0.084959536 0.13358122 + 5000 51255.456 0 0.035019271 0.034644123 0.03638843 0.10605182 0.13507609 + 6000 52730.035 0 0.041412307 0.042689213 0.043339117 0.12744064 0.16497663 + 7000 52247.642 0 0.048119396 0.050556395 0.050706527 0.14938232 0.16360301 + 8000 52169.849 0 0.055241196 0.058678631 0.059373122 0.17329295 0.1676169 + 9000 52520.526 0 0.063519587 0.066592779 0.066988842 0.19710121 0.17142694 + 10000 53519.297 0 0.07164814 0.074576535 0.075619236 0.22184391 0.15619444 + 11000 52937.293 0 0.077992504 0.083184462 0.082988794 0.24416576 0.15257327 + 12000 51762.283 0 0.085959749 0.090992292 0.08984213 0.26679417 0.15996211 +Loop time of 11.6748 on 1 procs for 12000 steps with 4096 atoms + +Performance: 888.063 tau/day, 1027.851 timesteps/s +99.9% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.0024164 | 0.0024164 | 0.0024164 | 0.0 | 0.02 +Comm | 0.048127 | 0.048127 | 0.048127 | 0.0 | 0.41 +Output | 0.0019393 | 0.0019393 | 0.0019393 | 0.0 | 0.02 +Modify | 11.12 | 11.12 | 11.12 | 0.0 | 95.24 +Other | | 0.5027 | | | 4.31 + +Nlocal: 4096.00 ave 4096 max 4096 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 75 +Dangerous builds = 0 + +# if you want to check that rotational diffusion is behaving as expected, +# uncomment next three lines for dump output and then plot , +# which should decay exponentially with timescale (d-1)*D_r (with d +# being simulation dimension) + +#dump 1 all custom 2000 dump_ideal_${params}_3d.lammpstrj id type # x y xu yu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +#run 120000 +Total wall time: 0:00:16 diff --git a/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.4 b/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.4 new file mode 100644 index 0000000000..c6e5b82090 --- /dev/null +++ b/examples/USER/brownian/spherical_ABP/log.11May2021.in3d.ideal_apb.g++.4 @@ -0,0 +1,210 @@ +LAMMPS (8 Apr 2021) + using 1 OpenMP thread(s) per MPI task +# 3D overdamped active brownian dynamics with no interactions + +variable gamma_t string 3.0 +variable gamma_r string 1.0 +variable temp string 1.0 +variable seed equal 1974019 +variable fp string 4.0 +variable params string ${temp}_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_${gamma_t}_${gamma_r}_${fp} +variable params string 1.0_3.0_${gamma_r}_${fp} +variable params string 1.0_3.0_1.0_${fp} +variable params string 1.0_3.0_1.0_4.0 + +units lj +atom_style hybrid dipole sphere +WARNING: Atom style hybrid defines both, per-type and per-atom masses; both must be set, but only per-atom masses will be used (src/atom_vec_hybrid.cpp:156) +dimension 3 +newton off + +lattice sc 0.4 +Lattice spacing in x,y,z = 1.3572088 1.3572088 1.3572088 +region box block -8 8 -8 8 -8 8 +create_box 1 box +Created orthogonal box = (-10.857670 -10.857670 -10.857670) to (10.857670 10.857670 10.857670) + 2 by 1 by 2 MPI processor grid +create_atoms 1 box +Created 4096 atoms + create_atoms CPU = 0.002 seconds +mass * 1.0 +set type * dipole/random ${seed} 1.0 +set type * dipole/random 1974019 1.0 +Setting atom values ... + 4096 settings made for dipole/random +velocity all create 1.0 1 loop geom + +pair_style none + +# overdamped brownian dynamics time-step +fix step all brownian/sphere ${temp} ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 ${seed} gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t ${gamma_t} gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 3.0 gamma_r ${gamma_r} +fix step all brownian/sphere 1.0 1974019 gamma_t 3.0 gamma_r 1.0 +# self-propulsion force along the dipole direction +fix activity all propel/self dipole ${fp} +fix activity all propel/self dipole 4.0 + +compute press all pressure NULL virial + +thermo_style custom step ke pe c_press + +#equilibration +timestep 0.0000000001 +thermo 100 +run 5000 +WARNING: No pairwise cutoff or binsize set. Atom sorting therefore disabled. (src/atom.cpp:2141) +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.319 | 4.319 | 4.319 Mbytes +Step KinEng PotEng c_press + 0 1.4996338 0 0.068021726 + 100 5.2484581e+09 0 0.068010768 + 200 5.277936e+09 0 0.068024039 + 300 5.2651427e+09 0 0.068014821 + 400 5.2066432e+09 0 0.068027583 + 500 5.2250276e+09 0 0.068030242 + 600 5.239771e+09 0 0.068018406 + 700 5.1953674e+09 0 0.068017081 + 800 5.2097107e+09 0 0.068010167 + 900 5.2559863e+09 0 0.068012923 + 1000 5.2743197e+09 0 0.068017855 + 1100 5.1999741e+09 0 0.068014189 + 1200 5.3216344e+09 0 0.068005604 + 1300 5.2839264e+09 0 0.067982558 + 1400 5.2462761e+09 0 0.067977843 + 1500 5.2208208e+09 0 0.067979594 + 1600 5.2740284e+09 0 0.067972573 + 1700 5.1919692e+09 0 0.067974452 + 1800 5.2497614e+09 0 0.067966417 + 1900 5.2910442e+09 0 0.067976096 + 2000 5.27238e+09 0 0.067963979 + 2100 5.3305398e+09 0 0.06795661 + 2200 5.205471e+09 0 0.067970212 + 2300 5.1803713e+09 0 0.067931775 + 2400 5.2134311e+09 0 0.067941825 + 2500 5.2367424e+09 0 0.067963456 + 2600 5.2246738e+09 0 0.067957556 + 2700 5.2514573e+09 0 0.067960724 + 2800 5.2601577e+09 0 0.067965167 + 2900 5.2422855e+09 0 0.067956561 + 3000 5.1796674e+09 0 0.067946764 + 3100 5.2308189e+09 0 0.067946585 + 3200 5.1835395e+09 0 0.067951909 + 3300 5.2762112e+09 0 0.067963199 + 3400 5.3224133e+09 0 0.067944918 + 3500 5.2314242e+09 0 0.06795318 + 3600 5.2760337e+09 0 0.067958005 + 3700 5.2549349e+09 0 0.06795228 + 3800 5.3343065e+09 0 0.067944561 + 3900 5.2440993e+09 0 0.067947433 + 4000 5.2565026e+09 0 0.067962624 + 4100 5.1766738e+09 0 0.067949542 + 4200 5.2058437e+09 0 0.067959946 + 4300 5.2777775e+09 0 0.067945883 + 4400 5.2020331e+09 0 0.067953495 + 4500 5.1417619e+09 0 0.067944161 + 4600 5.2672994e+09 0 0.067936777 + 4700 5.222847e+09 0 0.067943025 + 4800 5.2467842e+09 0 0.06794191 + 4900 5.2784378e+09 0 0.067939495 + 5000 5.2563969e+09 0 0.067940246 +Loop time of 1.55848 on 4 procs for 5000 steps with 4096 atoms + +Performance: 0.028 tau/day, 3208.260 timesteps/s +97.1% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0 | 0 | 0 | 0.0 | 0.00 +Comm | 0.15304 | 0.15677 | 0.16459 | 1.2 | 10.06 +Output | 0.0012078 | 0.0021182 | 0.0047011 | 3.2 | 0.14 +Modify | 1.1966 | 1.2236 | 1.2761 | 2.8 | 78.51 +Other | | 0.176 | | | 11.29 + +Nlocal: 1024.00 ave 1024 max 1024 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Nghost: 353.000 ave 353 max 353 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 0 +Dangerous builds = 0 +reset_timestep 0 + +# MSD to demonstrate expected diffusive behaviour for ideal active +# brownian motion, which is +# +# MSD = (2*d*kb*T/gamma_t + 2*fp**2*gamma_r/(kb*T*gamma_t**2*(d-1)))*t +# + 2*fp**2*gamma_r**2/(gamma_t**2*(d-1)**2*(kb*T)**2)*(e^(-(d-1)*t*kb*T/gamma_r)-1) +# +# with d being simulation dimension +compute msd all msd + +thermo_style custom step ke pe c_msd[*] c_press + + +timestep 0.00001 +thermo 1000 + +# main run +run 12000 +WARNING: Communication cutoff is 0.0. No ghost atoms will be generated. Atoms may get lost. (src/comm_brick.cpp:167) +Per MPI rank memory allocation (min/avg/max) = 4.694 | 4.694 | 4.694 Mbytes +Step KinEng PotEng c_msd[1] c_msd[2] c_msd[3] c_msd[4] c_press + 0 5.2563969e+09 0 0 0 0 0 0.067940246 + 1000 52568.549 0 0.0067249858 0.0066478843 0.0066014231 0.019974293 0.066777589 + 2000 52836.937 0 0.013611101 0.013799663 0.013161144 0.040571907 0.066769693 + 3000 52129.467 0 0.020360834 0.02089829 0.01995025 0.061209374 0.060026879 + 4000 52075.177 0 0.027638751 0.028062314 0.026895904 0.082596969 0.078290387 + 5000 52203.996 0 0.034087112 0.034933104 0.033832559 0.10285278 0.083657551 + 6000 52986.764 0 0.041562413 0.042238976 0.040542538 0.12434393 0.11542014 + 7000 51941.229 0 0.049216989 0.049250201 0.047598008 0.1460652 0.13739893 + 8000 52618.713 0 0.057198947 0.057409217 0.05404895 0.16865711 0.13681938 + 9000 52501.332 0 0.066447829 0.065262287 0.062271789 0.19398191 0.14306596 + 10000 52545.628 0 0.073800792 0.072510553 0.070100713 0.21641206 0.14689578 + 11000 52416.561 0 0.081881868 0.080638809 0.078969817 0.24149049 0.15608324 + 12000 52271.578 0 0.090521937 0.088555992 0.08592156 0.26499949 0.1474981 +Loop time of 3.13506 on 4 procs for 12000 steps with 4096 atoms + +Performance: 3307.113 tau/day, 3827.677 timesteps/s +99.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 0 | 0 | 0 | 0.0 | 0.00 +Neigh | 0.00060225 | 0.00060934 | 0.00061345 | 0.0 | 0.02 +Comm | 0.029197 | 0.029376 | 0.029582 | 0.1 | 0.94 +Output | 0.00060606 | 0.00087148 | 0.0016448 | 0.0 | 0.03 +Modify | 2.84 | 2.8773 | 2.8942 | 1.3 | 91.78 +Other | | 0.2269 | | | 7.24 + +Nlocal: 1024.00 ave 1037 max 999 min +Histogram: 1 0 0 0 0 0 0 1 1 1 +Nghost: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 +Neighs: 0.00000 ave 0 max 0 min +Histogram: 4 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 0 +Ave neighs/atom = 0.0000000 +Neighbor list builds = 73 +Dangerous builds = 0 + +# if you want to check that rotational diffusion is behaving as expected, +# uncomment next three lines for dump output and then plot , +# which should decay exponentially with timescale (d-1)*D_r (with d +# being simulation dimension) + +#dump 1 all custom 2000 dump_ideal_${params}_3d.lammpstrj id type # x y xu yu mux muy muz fx fy fz +#dump_modify 1 first yes sort id + +#run 120000 +Total wall time: 0:00:04 diff --git a/examples/USER/fep/README.md b/examples/USER/fep/README.md index 416af526e7..d8f0935115 100644 --- a/examples/USER/fep/README.md +++ b/examples/USER/fep/README.md @@ -9,6 +9,9 @@ to the final states. * `CH4hyd` -- free energy of hydration of methane (simple). FEP and FDTI methods. +* `SPCEhyd` -- free energy of hydration of SPCE water (simple). FEP + in separate steps for the LJ sites and the atomic charges. + * `CH4-CF4` -- free energy difference of transforming methane into perfluoromethane, in water (quite simple). FEP and BAR methods. diff --git a/examples/USER/fep/SPCEhyd/README.md b/examples/USER/fep/SPCEhyd/README.md new file mode 100644 index 0000000000..de30f0c19b --- /dev/null +++ b/examples/USER/fep/SPCEhyd/README.md @@ -0,0 +1,45 @@ +Free Energy of Hydration of SPCE Water +====================================== + +Example calculation of the free energy of hydration of water with +LAMMPS using *compute fep*, *fix adapt/fep* and *pair lj/cut/soft*. + +The Lennard-Jones sites and the electrostatic charges are +created/annihilated in separate runs, which simplifies the use of +*fix adapt/fep* and *compute fep*. The Lennard-Jones sites are handled +using soft core potentials (*pair lj/cut/soft*). Trajectories are at +constant NpT, so corrections for the fluctuating volume are included. + +The following directories contain input files and results for +calculations using free-energy perturbation (FEP): + +* `mols` -- molecule description files and force field database used + to create the initial configuration used for the simulations + `data.lmp` + +* `fep01` -- Calculation using FEP, multi-stage creation of one SPC/E + molecule, LJ and q. Results in `fep01-lj.fep` and `fep01-lj.fep` + +* `fep10` -- Calculation using FEP, multi-stage deletion of one SPC/E + molecule, q and LJ. Results in `fep10-q.fep` and `fep10-lj.fep` + +The Python script `fep.py` found in the +`tools` directory can be used to calculate the free-energy differences +corresponding to the transformations above: + + fep.py 300 < fep01-lj.fep + + fep.py 300 < fep01-q.fep + + fep.py 300 < fep10-q.fep + + fep.py 300 < fep10-lj.fep + +The outputs are in kcal/mol and can be compared with the experimental +value of -6.3 kcal/mol, or with a simulation value from the literature +of -6.7 kcal/mol +[Gonçalves, Stassen, Pure Appl Chem 76 (2004) 231](https://doi.org/10.1351/pac200476010231). + +These example calculations are for tutorial purposes only. The results +may not be of research quality (not enough sampling, size of the step +in lambda not optimized, etc.) diff --git a/examples/USER/fep/SPCEhyd/fep01/fep01-lj.fep b/examples/USER/fep/SPCEhyd/fep01/fep01-lj.fep new file mode 100644 index 0000000000..67dc4bfd8d --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/fep01-lj.fep @@ -0,0 +1,22 @@ +# Time-averaged data for fix FEP +# TimeStep c_FEP[1] c_FEP[2] c_FEP[3] +100000 0.00203701 17656.7 17717 +200000 0.0148799 17235.9 17669.1 +300000 0.0478517 16378 17736.4 +400000 0.100195 15034.8 17725.7 +500000 0.218866 12390.7 17698.7 +600000 0.371395 9907.37 17731.1 +700000 0.613593 7317.6 17750.5 +800000 0.895639 5984.39 17714.3 +900000 0.638838 8921.42 17726.2 +1000000 0.372214 11782.7 17728.6 +1100000 0.295555 12613 17730.3 +1200000 0.152975 15013.7 17792.5 +1300000 0.106403 15927.4 17737.2 +1400000 0.0570002 16875.1 17725.9 +1500000 0.0182185 17924.9 17790.8 +1600000 -0.0319612 19263.7 17775.1 +1700000 -0.0684472 20338.7 17786.9 +1800000 -0.0941487 21136.1 17764.8 +1900000 -0.132444 22374 17750.6 +2000000 -0.153928 23156.8 17744.8 diff --git a/examples/USER/fep/SPCEhyd/fep01/fep01-lj.out b/examples/USER/fep/SPCEhyd/fep01/fep01-lj.out new file mode 100644 index 0000000000..3eaf2fd98c --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/fep01-lj.out @@ -0,0 +1,592 @@ +LAMMPS (29 Oct 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/lammps/src/comm.cpp:94) + using 1 OpenMP thread(s) per MPI task +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (29.204526 29.204526 29.204526) + 2 by 2 by 3 MPI processor grid + reading atoms ... + 1800 atoms + scanning bonds ... + 1 = max bonds/atom + scanning angles ... + 1 = max angles/atom + reading bonds ... + 1200 bonds + reading angles ... + 600 angles +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0.5 + special bond factors coul: 0 0 0.5 + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + special bonds CPU = 0.001 seconds + read_data CPU = 0.018 seconds +Finding SHAKE clusters ... + 0 = # of size 2 clusters + 600 = # of size 3 clusters + 0 = # of size 4 clusters + 0 = # of frozen angles + find clusters CPU = 0.001 seconds +Setting atom values ... + 3 settings made for charge +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25066829 + grid = 20 20 20 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0030719151 + estimated relative force accuracy = 9.250981e-06 + using double precision FFTW3 + 3d grid and FFT values/proc = 3757 800 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 5 5 5 + 3 neighbor lists, perpetual/occasional/extra = 3 0 0 + (1) pair lj/cut/coul/long, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (2) pair lj/cut/soft, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (3) neighbor class addition, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 9.477 | 9.489 | 9.507 Mbytes +Step CPU TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Volume Density + 0 0 1344.7207 1251.046 93.67475 54.469999 30049.554 -30010.349 300 10284.691 24908.667 0.72058313 + 5000 28.694564 -5486.1043 1288.3881 -6774.4924 1379.4864 21688.643 -30296.277 308.95461 54.310852 17485.125 1.0265163 + 10000 60.154999 -5445.984 1289.4468 -6735.4308 1414.0583 21715.025 -30296.898 309.2085 479.66554 17890.87 1.003236 + 15000 93.146023 -5513.8313 1247.6759 -6761.5072 1299.4795 21790.371 -30301.687 299.19185 -508.0062 17325.35 1.0359828 + 20000 125.27418 -5449.2886 1284.4959 -6733.7844 1413.7763 21713.785 -30296.156 308.02126 590.93324 17813.863 1.0075729 + 25000 159.91521 -5488.9702 1263.558 -6752.5282 1419.1433 21691.575 -30298.164 303.00038 745.03072 17529.113 1.0239403 + 30000 192.99516 -5560.7692 1261.1821 -6821.9512 1417.204 21619.369 -30296.506 302.43062 247.03569 17579.175 1.0210243 + 35000 226.31455 -5475.9339 1217.5826 -6693.5164 1416.6051 21740.37 -30296.23 291.97549 585.78922 17897.211 1.0028805 + 40000 257.38113 -5547.1985 1242.3037 -6789.5022 1368.836 21696.099 -30299.114 297.90361 -308.25384 17644.122 1.017266 + 45000 290.1833 -5546.482 1247.5586 -6794.0405 1478.3456 21579.538 -30298.856 299.16372 1088.2882 17592.834 1.0202316 + 50000 323.27342 -5587.1305 1245.2866 -6832.4171 1494.5555 21518.708 -30301.175 298.6189 1294.6268 17477.389 1.0269707 + 55000 357.01676 -5579.512 1240.4584 -6819.9704 1395.6861 21642.898 -30295.857 297.46109 -99.93318 17770.807 1.0100141 + 60000 388.82447 -5489.9387 1234.3341 -6724.2728 1285.7293 21870.543 -30295.028 295.99251 -1147.8529 17885.706 1.0035257 + 65000 422.87575 -5552.7156 1212.0793 -6764.7949 1333.565 21754.173 -30298.11 290.65582 -712.18036 17669.638 1.015797 + 70000 457.6093 -5497.6045 1258.538 -6756.1425 1322.4574 21754.169 -30297.784 301.79659 -688.38797 17616.532 1.0188592 + 75000 491.97196 -5625.4891 1179.169 -6804.6581 1390.1744 21637.212 -30297.753 282.76395 42.978393 17500.681 1.0256038 + 80000 525.96216 -5522.0997 1232.6571 -6754.7568 1341.1534 21770.924 -30301.663 295.59035 -265.75148 17495.977 1.0258796 + 85000 559.772 -5429.8519 1249.9284 -6679.7803 1347.2093 21813.241 -30297.861 299.732 -111.81756 17957.604 0.9995078 + 90000 593.75975 -5560.9592 1265.0979 -6826.0571 1463.6326 21567.748 -30297.643 303.36965 599.30412 17830.144 1.0066528 + 95000 627.953 -5544.2442 1277.7084 -6821.9526 1407.1904 21633.729 -30299.133 306.39364 192.51289 17668.067 1.0158873 + 100000 662.08715 -5474.8467 1286.3434 -6761.1902 1377.3305 21690.898 -30299.316 308.46431 -161.00615 17888.012 1.0033963 +Loop time of 662.087 on 12 procs for 100000 steps with 1800 atoms + +Performance: 13.050 ns/day, 1.839 hours/ns, 151.038 timesteps/s +94.9% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 345.52 | 374.93 | 410.41 | 88.0 | 56.63 +Bond | 1.2655 | 1.3414 | 1.443 | 5.2 | 0.20 +Kspace | 99.52 | 135.77 | 165.42 | 148.0 | 20.51 +Neigh | 28.904 | 28.95 | 28.997 | 0.6 | 4.37 +Comm | 41.498 | 45.503 | 50.663 | 51.8 | 6.87 +Output | 0.0013665 | 0.0014183 | 0.0018614 | 0.4 | 0.00 +Modify | 49.685 | 64.033 | 72.601 | 117.1 | 9.67 +Other | | 11.56 | | | 1.75 + +Nlocal: 150.000 ave 169 max 133 min +Histogram: 1 2 1 1 2 1 0 3 0 1 +Nghost: 6036.17 ave 6092 max 5976 min +Histogram: 3 1 0 0 0 1 3 2 0 2 +Neighs: 86433.7 ave 96904 max 78425 min +Histogram: 3 1 1 0 2 1 1 0 1 2 + +Total # of neighbors = 1037204 +Ave neighs/atom = 576.22444 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 4498 +Dangerous builds = 9 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25099061 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0035434233 + estimated relative force accuracy = 1.0670914e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 3328 648 +FEP settings ... + temperature = 300.000000 + tail no + lj/cut/soft lambda 1-2 3-4 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 4 4 4 + 3 neighbor lists, perpetual/occasional/extra = 3 0 0 + (1) pair lj/cut/coul/long, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (2) pair lj/cut/soft, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (3) neighbor class addition, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 9.473 | 9.524 | 9.885 Mbytes +Step TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Density v_lambda + 0 -5474.8313 1286.3434 -6761.1748 1377.3305 21729.814 -30338.216 308.46431 -145.89091 1.0033963 0 + 5000 -5501.3742 1227.5839 -6728.9581 1383.6091 21832.227 -30338.792 294.37381 197.29783 1.0066092 0.0025 + 10000 -5464.6748 1299.6003 -6764.2751 1422.869 21700.714 -30339.338 311.64329 911.1393 1.0308533 0.005 + 15000 -5570.8381 1254.6639 -6825.502 1432.6295 21661.321 -30337.889 300.86757 606.08029 1.0232505 0.0075 + 20000 -5517.9977 1279.1 -6797.0976 1408.873 21713.571 -30334.986 306.72733 71.014518 1.00536 0.01 + 25000 -5502.8662 1256.1509 -6759.0171 1354.4185 21819.904 -30335.966 301.22416 -280.3804 1.0121715 0.0125 + 30000 -5479.0987 1247.8675 -6726.9662 1413.5362 21734.153 -30338.534 299.23779 347.7292 1.0037264 0.015 + 35000 -5507.6469 1301.4131 -6809.06 1460.033 21614.564 -30336.109 312.07801 771.56011 1.0011707 0.0175 + 40000 -5487.2955 1295.7159 -6783.0113 1321.8494 21814.192 -30340.297 310.71181 -399.68468 1.0295009 0.02 + 45000 -5582.7908 1203.9957 -6786.7865 1428.232 21690.272 -30335.2 288.71737 516.0938 1.0238261 0.0225 + 50000 -5543.0112 1239.5077 -6782.5189 1442.8695 21660.077 -30336.998 297.23314 966.89878 1.0234172 0.025 + 55000 -5590.3604 1232.4497 -6822.8101 1322.5893 21772.961 -30338.359 295.54062 -790.54432 1.0210518 0.0275 + 60000 -5479.6266 1218.6941 -6698.3207 1363.233 21839.328 -30336.264 292.24204 102.67075 1.0069364 0.03 + 65000 -5492.8433 1277.3976 -6770.2409 1361.2794 21754.915 -30335.072 306.31909 -345.94035 1.0111736 0.0325 + 70000 -5564.9632 1256.2689 -6821.2322 1418.089 21663.812 -30334.208 301.25246 -235.62062 1.0000081 0.035 + 75000 -5431.4667 1233.6963 -6665.163 1385.2972 21867.508 -30337.413 295.83957 605.68584 1.015264 0.0375 + 80000 -5560.6719 1236.9415 -6797.6134 1374.1241 21748.636 -30335.156 296.61776 -202.53528 1.015924 0.04 + 85000 -5636.8905 1233.835 -6870.7255 1480.1666 21576.608 -30340.174 295.87281 827.4631 1.0212177 0.0425 + 90000 -5551.2917 1222.5755 -6773.8672 1452.5674 21638.206 -30335.595 293.1728 661.99097 1.0090475 0.045 + 95000 -5543.8224 1249.9355 -6793.758 1396.082 21724.933 -30339.764 299.73372 201.87719 1.0163116 0.0475 + 100000 -5558.5664 1227.1814 -6785.7479 1463.1907 21666.038 -30337.879 294.2773 955.6758 1.0158894 0.05 + 105000 -5507.0698 1233.0098 -6740.0796 1356.1635 21774.574 -30334.594 295.67493 -359.01022 1.0056685 0.0525 + 110000 -5561.0676 1221.0774 -6782.145 1403.5966 21692.913 -30337.463 292.81355 -87.113696 1.0133037 0.055 + 115000 -5526.6141 1243.9541 -6770.5682 1475.7194 21626.703 -30337.179 298.29937 855.85038 1.0118327 0.0575 + 120000 -5555.6741 1253.3796 -6809.0538 1346.5604 21755.315 -30340.743 300.55961 -1079.5856 0.98312027 0.06 + 125000 -5620.4084 1221.0146 -6841.423 1406.8142 21677.116 -30335.053 292.7985 -61.600379 1.0173627 0.0625 + 130000 -5586.4001 1204.2423 -6790.6425 1352.9098 21770.892 -30339.505 288.77651 -460.92375 1.0164837 0.065 + 135000 -5568.5186 1239.2748 -6807.7934 1401.8615 21748.687 -30340.555 297.17728 371.66677 1.0241473 0.0675 + 140000 -5526.4808 1249.0145 -6775.4953 1424.2185 21664.576 -30340.16 299.51285 520.63161 1.0238118 0.07 + 145000 -5532.8733 1254.9515 -6787.8248 1379.0629 21737.241 -30337.358 300.93654 -64.517937 1.0105756 0.0725 + 150000 -5549.4332 1228.3832 -6777.8163 1428.5036 21702.196 -30337.055 294.56547 363.42307 1.0052127 0.075 + 155000 -5547.9284 1256.6973 -6804.6257 1379.9059 21727.03 -30338.382 301.35519 35.503942 1.0222903 0.0775 + 160000 -5481.1383 1320.4344 -6801.5727 1390.3369 21729.299 -30337.062 316.63929 50.667563 1.0171266 0.08 + 165000 -5560.7321 1247.5004 -6808.2325 1422.2771 21662.917 -30341.024 299.14978 56.116137 1.0020068 0.0825 + 170000 -5541.3469 1257.9624 -6799.3094 1381.0133 21739.612 -30336.303 301.65856 -176.83515 1.0084433 0.085 + 175000 -5481.784 1239.9656 -6721.7496 1366.9952 21834.266 -30335.454 297.34293 377.28019 1.0297034 0.0875 + 180000 -5609.1447 1180.414 -6789.5587 1410.9273 21683.391 -30338.821 283.06249 203.46781 1.013427 0.09 + 185000 -5508.6637 1237.4229 -6746.0866 1401.5929 21736.318 -30334.806 296.7332 287.44715 1.0114427 0.0925 + 190000 -5524.666 1249.3421 -6774.008 1414.6887 21711.574 -30338.223 299.5914 108.63857 0.99681381 0.095 + 195000 -5613.4475 1179.1603 -6792.6078 1415.5702 21704.669 -30335.058 282.76187 -4.252137 1.0025742 0.0975 + 200000 -5577.1744 1219.3392 -6796.5136 1358.774 21688.932 -30339.219 292.39674 -339.31655 1.0272643 0.1 + 205000 -5473.5241 1291.8332 -6765.3573 1364.0148 21747.958 -30335.578 309.78075 -140.98482 1.0134706 0.1025 + 210000 -5412.6987 1304.0334 -6716.7321 1399.175 21790.687 -30338.388 312.70635 475.62089 1.0077929 0.105 + 215000 -5498.5445 1272.4319 -6770.9765 1305.2038 21853.899 -30334.099 305.12834 -964.41064 1.0117303 0.1075 + 220000 -5552.46 1236.8433 -6789.3033 1413.5383 21633.766 -30337.007 296.59421 126.59413 1.0135386 0.11 + 225000 -5463.5199 1281.9539 -6745.4738 1391.2426 21760.978 -30337.489 307.41171 372.98508 1.0154691 0.1125 + 230000 -5556.2415 1213.9742 -6770.2157 1373.9439 21746.355 -30331.29 291.11021 310.03784 1.0411894 0.115 + 235000 -5468.6139 1256.2727 -6724.8866 1419.9068 21755.903 -30337.057 301.25335 446.80106 1.008653 0.1175 + 240000 -5505.2272 1297.8543 -6803.0815 1389.9299 21721.555 -30336.374 311.22461 -216.33356 1.0007317 0.12 + 245000 -5556.4175 1231.9791 -6788.3966 1385.1734 21697.589 -30334.804 295.42778 -115.65689 1.0127289 0.1225 + 250000 -5570.5583 1261.1376 -6831.6959 1404.3069 21667.366 -30337.205 302.41997 -90.154201 1.0161797 0.125 + 255000 -5581.0101 1222.6213 -6803.6314 1393.6905 21687.538 -30336.542 293.18377 -58.781363 1.013542 0.1275 + 260000 -5552.6506 1225.5794 -6778.2299 1446.9969 21648.822 -30336.275 293.89312 749.70391 1.0136121 0.13 + 265000 -5527.9133 1245.5123 -6773.4255 1328.166 21792.912 -30336.854 298.67302 -825.99884 1.0063806 0.1325 + 270000 -5565.2798 1266.7326 -6832.0124 1488.6605 21582.46 -30339.347 303.76165 1592.7435 1.0374567 0.135 + 275000 -5567.4599 1211.9673 -6779.4272 1306.1895 21846.2 -30334.296 290.62895 -1062.6911 1.0107451 0.1375 + 280000 -5456.1965 1291.476 -6747.6725 1324.4174 21839.645 -30339.854 309.69509 -531.26163 1.0140474 0.14 + 285000 -5561.638 1229.3427 -6790.9808 1353.7161 21794.932 -30334.258 294.79557 -269.97414 1.0110394 0.1425 + 290000 -5486.1623 1276.1413 -6762.3036 1380.4775 21777.115 -30336.678 306.01784 -56.691362 1.0105051 0.145 + 295000 -5531.2556 1253.1859 -6784.4415 1354.9857 21750.76 -30338.549 300.51314 -555.4993 1.0159961 0.1475 + 300000 -5583.1864 1250.0209 -6833.2073 1431.4702 21654.547 -30337.557 299.75419 360.48799 1.0226237 0.15 + 305000 -5492.9399 1263.2527 -6756.1925 1385.9115 21749.132 -30337.333 302.92716 -94.633279 1.0008411 0.1525 + 310000 -5583.9951 1217.2631 -6801.2582 1439.2175 21660.614 -30332.833 291.89889 575.48041 1.0264848 0.155 + 315000 -5554.3025 1247.1517 -6801.4542 1305.5379 21807.382 -30337.478 299.06616 -1206.257 1.0085908 0.1575 + 320000 -5596.1914 1233.0393 -6829.2307 1431.9073 21667.612 -30337.859 295.682 745.35002 1.0291 0.16 + 325000 -5532.0063 1245.6006 -6777.6069 1479.6102 21640.94 -30338.346 298.69419 1390.0859 1.0311996 0.1625 + 330000 -5511.0183 1236.8356 -6747.854 1332.4766 21826.148 -30335.853 296.59237 -346.80349 1.020578 0.165 + 335000 -5512.3188 1238.1769 -6750.4957 1324.5201 21836.682 -30338.607 296.91401 -457.67242 1.0274241 0.1675 + 340000 -5504.0924 1242.6354 -6746.7278 1432.7958 21708.299 -30333.659 297.98314 674.26615 1.0055018 0.17 + 345000 -5522.5796 1265.0266 -6787.6062 1382.0078 21743.218 -30338.398 303.35254 -151.81029 1.0067371 0.1725 + 350000 -5545.7535 1267.9089 -6813.6624 1404.8847 21674.34 -30337.099 304.04372 128.71982 1.0135501 0.175 + 355000 -5499.0073 1275.2358 -6774.2431 1484.721 21658.719 -30337.688 305.80071 1468.7411 1.0346991 0.1775 + 360000 -5540.4144 1242.034 -6782.4484 1440.0683 21684.985 -30338.578 297.83892 662.99982 1.0085045 0.18 + 365000 -5472.9692 1267.5044 -6740.4736 1350.7945 21806.742 -30338.576 303.94672 -303.53857 1.0149794 0.1825 + 370000 -5563.7998 1257.4972 -6821.297 1363.9578 21745.681 -30339.039 301.54699 -616.39894 1.0015708 0.185 + 375000 -5494.3434 1204.4931 -6698.8365 1308.4989 21883.359 -30336.609 288.83665 -1009.8181 0.99179087 0.1875 + 380000 -5516.3392 1223.7518 -6740.0911 1355.9449 21816.149 -30337.588 293.45488 36.407556 1.02042 0.19 + 385000 -5534.8879 1226.8136 -6761.7015 1433.131 21698.233 -30336.201 294.18909 1224.3283 1.0416014 0.1925 + 390000 -5506.0676 1262.1264 -6768.194 1449.4667 21692.815 -30334.182 302.65707 932.23514 1.0216439 0.195 + 395000 -5601.9693 1234.2373 -6836.2066 1425.5787 21658.64 -30337.816 295.96929 254.00155 1.0148905 0.1975 + 400000 -5523.9324 1254.811 -6778.7434 1371.5302 21763.333 -30334.914 300.90286 -41.512594 1.0129399 0.2 + 405000 -5615.7822 1209.5514 -6825.3336 1431.7105 21604.804 -30336.544 290.04963 385.86176 1.02069 0.2025 + 410000 -5564.9317 1238.9308 -6803.8625 1334.6011 21725.649 -30342.03 297.09479 -668.14712 1.0114204 0.205 + 415000 -5565.723 1201.4165 -6767.1395 1407.6153 21731.714 -30339.794 288.09888 284.39352 1.0181526 0.2075 + 420000 -5514.1574 1259.6967 -6773.8542 1397.8555 21765.77 -30335.098 302.07445 -93.583513 1.003494 0.21 + 425000 -5566.4826 1233.6609 -6800.1435 1354.6757 21745.391 -30337.658 295.83106 -543.91774 1.0113019 0.2125 + 430000 -5544.9786 1227.5367 -6772.5153 1391.971 21756.332 -30337.075 294.36248 -52.853646 1.0029339 0.215 + 435000 -5457.9703 1243.8289 -6701.7992 1355.8144 21842.63 -30336.263 298.26936 96.07031 1.0162599 0.2175 + 440000 -5444.1352 1261.5679 -6705.7031 1327.5589 21849.174 -30337.667 302.52315 -159.33457 1.0201548 0.22 + 445000 -5569.3089 1253.1592 -6822.4681 1450.3256 21615.072 -30333.867 300.50675 497.07257 1.0162108 0.2225 + 450000 -5499.4632 1276.3744 -6775.8376 1436.3419 21681.852 -30337.613 306.07374 416.13585 1.0087874 0.225 + 455000 -5527.7917 1199.0123 -6726.804 1371.2866 21773.376 -30335.146 287.52235 -330.60298 0.99153512 0.2275 + 460000 -5634.9316 1214.1147 -6849.0463 1471.6124 21618.634 -30339.723 291.14391 831.79551 1.0154836 0.23 + 465000 -5492.5994 1247.2074 -6739.8067 1425.1188 21720.998 -30333.086 299.0795 782.63379 1.0210767 0.2325 + 470000 -5528.6598 1242.3825 -6771.0422 1413.2305 21674.806 -30339.41 297.9225 371.75935 1.018354 0.235 + 475000 -5570.6679 1274.1035 -6844.7714 1423.8596 21624.648 -30335.904 305.52919 243.67178 1.0157084 0.2375 + 480000 -5487.1119 1241.0548 -6728.1667 1421.7563 21732.588 -30338.933 297.60413 814.07568 1.0255732 0.24 + 485000 -5575.4172 1242.9613 -6818.3785 1402.7921 21677.417 -30338.336 298.0613 20.597793 1.0229831 0.2425 + 490000 -5578.303 1221.4158 -6799.7188 1430.5395 21694.761 -30336.572 292.89469 430.02647 1.0131845 0.245 + 495000 -5573.1773 1222.1238 -6795.3011 1502.7203 21609.264 -30338.892 293.06448 1494.9905 1.0226527 0.2475 + 500000 -5470.7153 1208.6593 -6679.3745 1401.9799 21819.612 -30335.747 289.83569 552.82762 1.003873 0.25 + 505000 -5626.3096 1246.8303 -6873.1399 1504.3826 21517.763 -30336.928 298.98909 1008.6542 1.0255205 0.2525 + 510000 -5562.1313 1242.0291 -6804.1604 1360.6445 21745.689 -30334.283 297.83775 -300.55499 1.021938 0.255 + 515000 -5558.6681 1241.9812 -6800.6493 1399.186 21683.627 -30339.266 297.82628 -293.22181 1.0035268 0.2575 + 520000 -5450.6773 1276.8169 -6727.4943 1246.5956 21918.914 -30335.226 306.17986 -1527.0713 1.0017384 0.26 + 525000 -5495.0769 1260.1524 -6755.2294 1413.8065 21708.663 -30338.153 302.18372 193.49778 1.0090792 0.2625 + 530000 -5519.0236 1258.9944 -6778.018 1423.1288 21726.251 -30338.72 301.90602 402.81349 1.0058563 0.265 + 535000 -5523.3166 1265.8203 -6789.1369 1403.2616 21669.617 -30333.964 303.54286 -212.90176 1.0022662 0.2675 + 540000 -5469.6354 1267.2634 -6736.8988 1354.6136 21815.059 -30334.909 303.88893 -143.78705 1.0102562 0.27 + 545000 -5475.0926 1332.0416 -6807.1342 1362.668 21728.374 -30335.495 319.42269 -408.94813 1.008036 0.2725 + 550000 -5604.8235 1220.5785 -6825.4021 1466.9259 21609.628 -30340.185 292.69392 562.0671 0.99832249 0.275 + 555000 -5546.9498 1194.3285 -6741.2783 1324.6404 21805.776 -30334.506 286.39919 -831.67066 1.0068815 0.2775 + 560000 -5505.8852 1231.4127 -6737.2978 1403.1199 21743.566 -30336.518 295.29195 134.18023 1.0068652 0.28 + 565000 -5620.5688 1225.712 -6846.2808 1418.5638 21624.884 -30336.305 293.92493 -45.194557 1.0148173 0.2825 + 570000 -5522.2261 1265.1646 -6787.3907 1431.1348 21666.003 -30337.479 303.38564 470.11582 1.0164271 0.285 + 575000 -5586.7521 1277.3002 -6864.0523 1411.585 21610.013 -30338.867 306.29575 3.3115648 1.0213675 0.2875 + 580000 -5612.9476 1236.9792 -6849.9268 1385.7307 21698.533 -30334.246 296.62679 -180.75952 1.0145947 0.29 + 585000 -5564.6816 1225.6381 -6790.3197 1333.2129 21796.701 -30335.104 293.90721 -690.26993 1.0116307 0.2925 + 590000 -5505.6734 1225.965 -6731.6383 1388.9635 21758.959 -30333.889 293.98559 227.32836 1.0145465 0.295 + 595000 -5547.8043 1248.8277 -6796.632 1360.0327 21712.026 -30336.566 299.46806 -375.66988 1.0129675 0.2975 + 600000 -5531.1317 1226.5624 -6757.6941 1288.9733 21854.05 -30334.778 294.12886 -869.81336 1.0198957 0.3 + 605000 -5491.3585 1261.835 -6753.1935 1362.4507 21774.232 -30332.849 302.58721 -165.60547 1.0153308 0.3025 + 610000 -5614.7624 1197.5896 -6812.352 1337.5281 21753.381 -30338.757 287.1812 -750.69767 1.0108767 0.305 + 615000 -5576.4304 1197.4926 -6773.9229 1360.9065 21756.815 -30335.31 287.15793 -693.56508 0.99901143 0.3075 + 620000 -5548.9351 1231.926 -6780.861 1367.5138 21765.942 -30335.526 295.41503 -447.87437 1.0071454 0.31 + 625000 -5478.0177 1304.9593 -6782.9771 1472.1656 21630.028 -30337.864 312.92838 902.38662 1.0047677 0.3125 + 630000 -5488.216 1246.0606 -6734.2767 1409.7407 21771.095 -30336.403 298.80451 480.81355 1.0089233 0.315 + 635000 -5539.378 1232.3758 -6771.7538 1370.1156 21731.482 -30335.377 295.52291 -713.31325 0.98843736 0.3175 + 640000 -5432.8862 1296.4151 -6729.3012 1343.8929 21825.715 -30336.397 310.87948 -397.39803 1.0014659 0.32 + 645000 -5588.6649 1238.8032 -6827.4681 1428.9906 21666.562 -30335.249 297.06419 599.51702 1.0293674 0.3225 + 650000 -5519.3466 1230.0381 -6749.3847 1453.0003 21705.846 -30339.941 294.96233 1124.8857 1.026394 0.325 + 655000 -5533.8266 1258.3233 -6792.1499 1371.5049 21733.113 -30338.134 301.74509 -435.07103 0.99919968 0.3275 + 660000 -5528.4015 1269.4116 -6797.8131 1338.761 21729.189 -30334.098 304.40406 -562.90491 1.0192565 0.33 + 665000 -5545.4581 1249.7274 -6795.1854 1412.241 21718.149 -30338.751 299.6838 275.8861 1.0143558 0.3325 + 670000 -5565.5948 1226.9318 -6792.5266 1315.7564 21812.516 -30339.437 294.21745 -830.3758 1.0195327 0.335 + 675000 -5517.0516 1226.7374 -6743.789 1415.6314 21750.702 -30335.553 294.17081 527.33474 1.0176545 0.3375 + 680000 -5545.2799 1223.2674 -6768.5473 1384.1095 21790.646 -30337.184 293.33872 -129.6713 1.0060356 0.34 + 685000 -5498.7222 1275.9994 -6774.7216 1415.2483 21718.812 -30334.721 305.98383 159.13649 1.0044781 0.3425 + 690000 -5566.4304 1231.9604 -6798.3908 1457.3283 21668.417 -30337.919 295.42329 287.07228 0.98982439 0.345 + 695000 -5507.4527 1265.2566 -6772.7094 1366.7935 21778.418 -30340.407 303.4077 -166.79718 1.0097878 0.3475 + 700000 -5621.3066 1277.4101 -6898.7167 1529.2337 21477.58 -30339.84 306.32209 1244.9468 1.0235434 0.35 + 705000 -5503.7028 1288.0097 -6791.7124 1430.0691 21713.551 -30338.914 308.86387 480.01323 1.0067532 0.3525 + 710000 -5483.2647 1299.6448 -6782.9095 1336.3828 21780.796 -30336.31 311.65398 -744.40786 0.9955777 0.355 + 715000 -5552.0795 1213.1147 -6765.1942 1367.5913 21780.545 -30334.566 290.90411 -182.26292 1.0179523 0.3575 + 720000 -5560.2543 1223.8905 -6784.1448 1469.5204 21612.085 -30334.718 293.48814 686.798 1.0061298 0.36 + 725000 -5352.2877 1277.7298 -6630.0175 1247.1535 21984.591 -30332.503 306.39876 -1113.3988 1.0031932 0.3625 + 730000 -5460.2162 1294.0163 -6754.2324 1328.4251 21812.669 -30338.962 310.30425 -703.10487 1.0076915 0.365 + 735000 -5484.3003 1263.9561 -6748.2564 1391.8724 21763.598 -30333.325 303.09585 358.57571 1.0159982 0.3675 + 740000 -5561.5146 1232.365 -6793.8795 1417.041 21689.319 -30337.153 295.52031 292.49943 1.0148461 0.37 + 745000 -5630.3272 1239.8819 -6870.2091 1474.7847 21577.482 -30336.129 297.32287 691.90387 1.0121157 0.3725 + 750000 -5568.5982 1252.3637 -6820.9619 1394.8143 21677.258 -30335.92 300.31599 -119.75657 1.0137126 0.375 + 755000 -5612.0848 1219.7512 -6831.8361 1443.772 21640.182 -30334.138 292.49554 419.10212 1.0092041 0.3775 + 760000 -5558.6692 1246.8503 -6805.5195 1383.8773 21739.076 -30332.761 298.99389 -360.94924 1.0057415 0.38 + 765000 -5549.313 1264.7175 -6814.0305 1361.0876 21760.857 -30334.954 303.27841 -657.15125 0.99708711 0.3825 + 770000 -5529.7814 1271.3249 -6801.1063 1515.765 21530.178 -30335.782 304.86287 1252.2865 1.0144338 0.385 + 775000 -5590.0803 1229.8806 -6819.9609 1497.7379 21574.205 -30337.017 294.92455 875.72015 1.0034086 0.3875 + 780000 -5453.0919 1304.4967 -6757.5885 1382.0095 21780.373 -30336.825 312.81744 94.669052 1.0004685 0.39 + 785000 -5534.5816 1224.2253 -6758.8069 1434.4738 21697.922 -30337.941 293.56842 992.15486 1.0337883 0.3925 + 790000 -5502.6322 1265.271 -6767.9032 1398.8135 21757.098 -30337.587 303.41116 116.52301 1.0001157 0.395 + 795000 -5493.1146 1274.5478 -6767.6624 1388.2754 21742.779 -30337.47 305.63572 140.01039 1.0236842 0.3975 + 800000 -5588.998 1225.6585 -6814.6564 1330.7321 21731.986 -30338.455 293.91209 -865.99206 1.0138727 0.4 + 805000 -5544.0626 1266.7916 -6810.8542 1362.8312 21718.168 -30338.846 303.77579 -337.37636 1.0105636 0.4025 + 810000 -5562.8317 1225.0571 -6787.8888 1387.1409 21714.016 -30338.516 293.76787 -132.30834 1.0033838 0.405 + 815000 -5450.6822 1281.7205 -6732.4027 1384.0948 21802.411 -30334.816 307.35573 457.40601 1.0295805 0.4075 + 820000 -5517.3791 1253.0874 -6770.4665 1342.5725 21767.666 -30338.348 300.48953 -677.2962 1.0045618 0.41 + 825000 -5521.6442 1253.7177 -6775.3619 1356.0902 21761.083 -30338.876 300.64068 -148.29882 1.0214802 0.4125 + 830000 -5480.2275 1296.3533 -6776.5808 1364.7623 21737.884 -30340.245 310.86468 -335.51468 1.0183724 0.415 + 835000 -5553.6513 1255.3646 -6809.0158 1422.3832 21678.078 -30336.06 301.03559 240.25343 1.0133683 0.4175 + 840000 -5487.5608 1239.6145 -6727.1753 1346.503 21835.502 -30338.024 297.25873 -317.28429 1.0034118 0.42 + 845000 -5515.8021 1255.1208 -6770.9229 1514.9877 21605.011 -30337.481 300.97715 1627.3413 1.0134437 0.4225 + 850000 -5540.0383 1285.5034 -6825.5417 1428.3295 21672.551 -30335.853 308.26287 466.86907 1.0199088 0.425 + 855000 -5597.4828 1214.2794 -6811.7622 1316.2636 21742.131 -30335.968 291.18339 -850.89507 1.0272315 0.4275 + 860000 -5442.4541 1274.0556 -6716.5098 1338.0091 21820.114 -30337.949 305.51769 -629.60481 1.0007525 0.43 + 865000 -5532.6042 1268.7742 -6801.3783 1434.2572 21700.789 -30338.172 304.25121 492.79858 1.0070617 0.4325 + 870000 -5512.1578 1258.0877 -6770.2455 1454.9091 21687.255 -30336.232 301.68859 683.83531 1.0116145 0.435 + 875000 -5446.697 1264.9331 -6711.6301 1418.0271 21789.48 -30337.979 303.33012 746.51851 1.0077359 0.4375 + 880000 -5570.2405 1227.4141 -6797.6546 1442.7982 21657.832 -30339.523 294.3331 547.05287 1.0204637 0.44 + 885000 -5499.5832 1300.6877 -6800.2708 1467.889 21621.607 -30336.081 311.90404 1203.3728 1.0232175 0.4425 + 890000 -5519.9378 1221.4368 -6741.3746 1334.4295 21836.44 -30334.429 292.89974 -571.0912 1.0183523 0.445 + 895000 -5548.714 1235.0959 -6783.81 1335.7422 21783.359 -30339.641 296.17519 -1231.4103 0.97545271 0.4475 + 900000 -5509.0007 1255.7581 -6764.7588 1387.4098 21730.996 -30336.325 301.12995 100.61482 1.0157715 0.45 + 905000 -5502.2972 1203.2327 -6705.5298 1412.9802 21806.928 -30335.359 288.5344 380.80789 0.99980077 0.4525 + 910000 -5485.3884 1248.0555 -6733.4439 1324.7849 21816.875 -30334.132 299.28288 -875.85577 1.0005401 0.455 + 915000 -5570.7334 1227.7102 -6798.4436 1414.6961 21676.719 -30333.844 294.40409 387.60411 1.0183984 0.4575 + 920000 -5506.8684 1250.8936 -6757.762 1403.8787 21724.014 -30338.2 299.96345 268.40619 1.0039537 0.46 + 925000 -5499.5513 1267.5801 -6767.1314 1384.0561 21746.132 -30334.877 303.96486 -87.373383 1.0135168 0.4625 + 930000 -5526.6263 1248.6532 -6775.2794 1422.5927 21727.532 -30335.327 299.42621 402.99079 1.0166018 0.465 + 935000 -5431.7671 1287.9484 -6719.7154 1372.6887 21797.491 -30339.576 308.84917 -73.380785 1.0086899 0.4675 + 940000 -5523.2347 1238.0317 -6761.2664 1472.3922 21690.931 -30338.509 296.87919 934.24131 1.0034105 0.47 + 945000 -5492.1094 1287.7201 -6779.8294 1409.131 21722.941 -30338.562 308.79442 393.63885 1.0121904 0.4725 + 950000 -5511.4769 1269.7709 -6781.2477 1399.8709 21719.432 -30338.344 304.49021 548.56247 1.0269619 0.475 + 955000 -5522.0084 1210.1211 -6732.1295 1354.1734 21827.644 -30337.824 290.18625 -328.52346 1.0035058 0.4775 + 960000 -5503.1738 1294.651 -6797.8248 1457.7604 21658.337 -30336.945 310.45646 920.37836 1.0242902 0.48 + 965000 -5574.7316 1224.5025 -6799.234 1341.877 21730.147 -30339.647 293.63489 -630.41891 1.020801 0.4825 + 970000 -5465.502 1254.5251 -6720.0271 1369.3231 21814.519 -30334.836 300.8343 412.848 1.018357 0.485 + 975000 -5429.0617 1314.1038 -6743.1655 1370.3831 21794.845 -30335.871 315.12122 -22.569108 1.0125271 0.4875 + 980000 -5509.8072 1268.7786 -6778.5858 1416.9817 21666.164 -30336.733 304.25227 605.68124 1.027029 0.49 + 985000 -5553.4756 1250.0201 -6803.4957 1399.3561 21680.727 -30336.562 299.754 -204.2377 1.0018705 0.4925 + 990000 -5509.8976 1209.5413 -6719.4389 1387.6207 21819.75 -30335.66 290.0472 71.030235 1.001716 0.495 + 995000 -5477.6146 1307.6601 -6785.2746 1376.1635 21750.915 -30337.489 313.57602 190.04886 1.0238268 0.4975 + 1000000 -5565.6634 1225.3286 -6790.992 1324.6248 21756.234 -30339.456 293.83299 -1026.1772 1.0132391 0.5 + 1005000 -5521.1329 1240.5003 -6761.6332 1339.8715 21795.557 -30333.404 297.47116 -764.80467 0.99627553 0.5025 + 1010000 -5533.5215 1234.4615 -6767.983 1467.6615 21687.246 -30339.234 296.02306 1106.3598 1.0156178 0.505 + 1015000 -5520.4449 1273.906 -6794.3509 1418.9447 21652.099 -30339.308 305.48182 508.55548 1.0227299 0.5075 + 1020000 -5553.6528 1269.5526 -6823.2054 1438.6041 21621.622 -30336.816 304.43788 356.09604 1.0009266 0.51 + 1025000 -5540.9284 1252.3914 -6793.3197 1384.0812 21720.397 -30333.925 300.32262 -137.53514 1.0150782 0.5125 + 1030000 -5512.2551 1266.8676 -6779.1227 1325.0473 21775.04 -30335.967 303.794 -785.84041 1.0128966 0.515 + 1035000 -5496.6909 1240.9291 -6737.62 1437.7445 21714.713 -30333.336 297.57398 639.06592 1.0104672 0.5175 + 1040000 -5500.8602 1277.8725 -6778.7327 1415.4978 21718.412 -30339.752 306.43298 398.08262 1.0150888 0.52 + 1045000 -5557.4463 1221.9391 -6779.3854 1415.6692 21681.767 -30337.275 293.02019 225.82498 1.0202672 0.5225 + 1050000 -5529.7555 1258.6892 -6788.4447 1422.0929 21704.679 -30338.539 301.83284 524.89602 1.0134303 0.525 + 1055000 -5518.6662 1299.6689 -6818.3351 1372.5056 21708.14 -30339.378 311.65974 -452.91496 1.0046315 0.5275 + 1060000 -5540.9771 1210.2217 -6751.1987 1373.9164 21768.116 -30336.924 290.21036 -395.70437 1.0015571 0.53 + 1065000 -5518.9029 1251.169 -6770.0719 1340.1507 21808.131 -30336.104 300.02949 -450.07574 1.0129813 0.5325 + 1070000 -5463.4785 1293.1208 -6756.5994 1332.4554 21823.853 -30339.89 310.08952 -322.88053 1.0120798 0.535 + 1075000 -5515.696 1249.2852 -6764.9812 1330.0946 21799.218 -30334.329 299.57777 -715.46839 1.0121899 0.5375 + 1080000 -5504.3342 1276.1607 -6780.4949 1300.5086 21805.677 -30337.953 306.02248 -1428.0385 0.99943418 0.54 + 1085000 -5509.2646 1255.0718 -6764.3364 1371.5075 21811.728 -30336.843 300.96538 73.910297 1.0082101 0.5425 + 1090000 -5412.182 1249.5709 -6661.753 1328.4884 21934.293 -30335.494 299.64628 -338.59758 0.99997407 0.545 + 1095000 -5473.6992 1287.1358 -6760.835 1347.4996 21804.548 -30337.264 308.65431 -369.832 1.0081179 0.5475 + 1100000 -5516.2354 1272.7455 -6788.9809 1377.2139 21731.758 -30339.241 305.20352 -33.679902 1.016951 0.55 + 1105000 -5501.6136 1255.1998 -6756.8134 1345.4796 21794.16 -30333.339 300.99608 -267.7936 1.0171513 0.5525 + 1110000 -5490.4441 1286.0141 -6776.4582 1389.8357 21706.333 -30336.453 308.38533 239.72552 1.017338 0.555 + 1115000 -5508.2867 1224.7333 -6733.02 1416.9404 21736.456 -30336.779 293.69023 411.88891 1.0061343 0.5575 + 1120000 -5536.5054 1242.9899 -6779.4953 1457.1964 21629.489 -30339.119 298.06817 856.72217 1.0160345 0.56 + 1125000 -5486.6942 1294.0843 -6780.7786 1358.1577 21782.945 -30339.37 310.32057 -202.18969 1.0178261 0.5625 + 1130000 -5436.8131 1262.4873 -6699.3004 1386.0247 21826.27 -30335.282 302.74362 322.86538 0.99696282 0.565 + 1135000 -5565.1777 1207.4654 -6772.643 1336.6359 21809.289 -30337.777 289.54939 -972.29994 0.98448542 0.5675 + 1140000 -5492.0308 1247.1935 -6739.2243 1402.2517 21754.689 -30337.029 299.07618 479.30775 1.0200599 0.57 + 1145000 -5594.1678 1257.8479 -6852.0157 1434.3633 21605.553 -30337.373 301.6311 164.16272 1.0163196 0.5725 + 1150000 -5595.7162 1204.3256 -6800.0418 1360.4415 21756.387 -30337.378 288.79648 -673.65939 0.99447246 0.575 + 1155000 -5560.4788 1255.9123 -6816.3911 1370.1918 21717.925 -30336.419 301.16694 -321.48858 1.0102569 0.5775 + 1160000 -5543.9624 1256.0273 -6799.9897 1361.3625 21729.13 -30336.145 301.19451 -500.9834 1.0075609 0.58 + 1165000 -5542.3677 1259.1894 -6801.5571 1392.601 21712.586 -30336.732 301.95279 269.67035 1.028619 0.5825 + 1170000 -5507.6711 1265.0503 -6772.7214 1392.4757 21734.407 -30337.47 303.35823 -1.1384906 1.0009475 0.585 + 1175000 -5616.4108 1190.6661 -6807.0769 1485.5233 21602.259 -30336.566 285.52095 797.79093 1.004332 0.5875 + 1180000 -5452.7462 1270.5601 -6723.3063 1380.6407 21772.422 -30339.576 304.67948 224.518 1.0138518 0.59 + 1185000 -5551.9378 1288.6384 -6840.5761 1409.257 21663.998 -30334.605 309.01463 201.047 1.0216943 0.5925 + 1190000 -5401.6296 1286.2182 -6687.8478 1413.7575 21821.846 -30335.244 308.43426 792.08684 1.0158526 0.595 + 1195000 -5595.7083 1241.8942 -6837.6025 1344.7629 21737.232 -30336.445 297.80541 -775.15064 1.0117893 0.5975 + 1200000 -5514.8805 1263.3084 -6778.1889 1427.3516 21696.321 -30339.4 302.94052 485.34384 1.0109195 0.6 + 1205000 -5540.2706 1219.5591 -6759.8297 1339.7958 21822.653 -30337.629 292.44947 -429.03962 1.0085747 0.6025 + 1210000 -5490.2376 1291.785 -6782.0226 1468.9881 21640.937 -30335.388 309.76919 1374.7882 1.0248876 0.605 + 1215000 -5556.2871 1242.1303 -6798.4174 1355.9924 21726.062 -30334.653 297.86202 -392.05916 1.0151509 0.6075 + 1220000 -5511.0713 1246.1099 -6757.1812 1438.275 21704.752 -30334.819 298.81633 866.53777 1.0152101 0.61 + 1225000 -5425.1538 1241.4366 -6666.5904 1407.8381 21815.403 -30338.21 297.69567 781.0192 1.0077519 0.6125 + 1230000 -5566.9066 1231.8806 -6798.7872 1414.1772 21716.877 -30339.764 295.40416 581.48996 1.022715 0.615 + 1235000 -5477.752 1240.0569 -6717.8089 1368.5535 21803.025 -30337.639 297.36483 257.90729 1.0209426 0.6175 + 1240000 -5518.2359 1241.8471 -6760.083 1357.7485 21769.434 -30333.502 297.79412 -403.71101 1.0002981 0.62 + 1245000 -5505.2401 1253.7734 -6759.0135 1356.1495 21781.172 -30338.614 300.65403 -238.83176 1.019027 0.6225 + 1250000 -5481.0309 1269.2078 -6750.2387 1422.4459 21736.094 -30334.948 304.35519 389.35305 0.99684561 0.625 + 1255000 -5591.0366 1268.5978 -6859.6344 1440.4456 21599.606 -30339.235 304.20892 479.16928 1.0279113 0.6275 + 1260000 -5458.4807 1274.8262 -6733.3069 1350.7336 21797.841 -30336.376 305.70248 -272.75408 1.0075811 0.63 + 1265000 -5575.7251 1215.4896 -6791.2147 1393.8174 21695.141 -30338.69 291.47361 -440.69662 0.9946576 0.6325 + 1270000 -5506.6538 1247.2498 -6753.9037 1426.4163 21735.083 -30339.604 299.08968 638.29292 1.006986 0.635 + 1275000 -5555.7487 1260.8981 -6816.6467 1402.9042 21687.407 -30338.211 302.36252 -37.621691 1.004614 0.6375 + 1280000 -5523.0115 1281.4484 -6804.46 1410.3618 21683.821 -30338.245 307.29049 74.776331 1.0067829 0.64 + 1285000 -5495.0391 1269.3944 -6764.4336 1438.0896 21688.271 -30338.328 304.39995 589.55661 1.0114896 0.6425 + 1290000 -5540.9271 1240.5911 -6781.5182 1328.7135 21747.08 -30332.671 297.49292 -1009.5288 0.99417236 0.645 + 1295000 -5523.5629 1221.2216 -6744.7846 1386.738 21787.399 -30341.525 292.84814 152.73721 1.020105 0.6475 + 1300000 -5551.0533 1209.1809 -6760.2342 1283.6253 21834.417 -30338.537 289.96078 -1463.7036 0.99836441 0.65 + 1305000 -5482.2712 1243.9505 -6726.2216 1443.3829 21700.095 -30334.574 298.2985 937.35283 1.0133398 0.6525 + 1310000 -5497.8833 1275.4343 -6773.3175 1331.5717 21786.443 -30338.584 305.84829 -568.49832 1.0153372 0.655 + 1315000 -5553.0213 1263.5103 -6816.5316 1328.3328 21741.571 -30339.561 302.98894 -899.43861 1.0107628 0.6575 + 1320000 -5497.4183 1275.5116 -6772.93 1334.6287 21757.028 -30335.101 305.86685 -750.04561 1.0127122 0.66 + 1325000 -5509.5201 1280.9643 -6790.4845 1417.3333 21664.023 -30335.168 307.1744 -157.6594 0.99319825 0.6625 + 1330000 -5617.2597 1224.5019 -6841.7616 1443.6235 21625.123 -30339.1 293.63475 717.99095 1.0298596 0.665 + 1335000 -5592.8391 1248.1956 -6841.0347 1387.7561 21696.521 -30337.925 299.31648 -247.91846 1.0135438 0.6675 + 1340000 -5460.2548 1288.4813 -6748.7361 1360.0244 21811.949 -30338.096 308.97696 -153.69598 1.015044 0.67 + 1345000 -5489.1678 1281.692 -6770.8598 1431.0453 21663.894 -30338.844 307.3489 669.39702 1.0172647 0.6725 + 1350000 -5529.2523 1270.9326 -6800.1849 1363.1373 21733.208 -30339.456 304.7688 -597.14779 1.0042186 0.675 + 1355000 -5534.9568 1265.7444 -6800.7012 1409.764 21689.237 -30334.88 303.52466 183.99575 1.0031237 0.6775 + 1360000 -5570.4522 1226.0935 -6796.5457 1409.4114 21697.645 -30337.424 294.01641 486.08744 1.0257807 0.68 + 1365000 -5491.4382 1268.1819 -6759.6201 1338.2699 21793.974 -30334.116 304.10918 -642.86253 1.0062663 0.6825 + 1370000 -5490.238 1223.206 -6713.4439 1291.9792 21860.632 -30336.796 293.32398 -1031.6635 0.99972319 0.685 + 1375000 -5533.2447 1274.0075 -6807.2521 1352.1474 21702.877 -30337.44 305.50615 -487.37416 1.0147896 0.6875 + 1380000 -5473.8114 1276.8204 -6750.6318 1407.4579 21700.787 -30335.345 306.18068 249.06913 1.0069428 0.69 + 1385000 -5543.9666 1262.8767 -6806.8434 1420.4958 21674.581 -30335.208 302.83701 250.9923 1.0125827 0.6925 + 1390000 -5502.5865 1244.5168 -6747.1034 1404.518 21737.859 -30331.637 298.43431 272.2078 1.0080372 0.695 + 1395000 -5485.4502 1277.3217 -6762.7719 1328.4992 21816.677 -30335.548 306.3009 -482.56908 1.0234689 0.6975 + 1400000 -5588.9107 1238.0105 -6826.9212 1441.2329 21623.183 -30339.033 296.8741 219.31408 1.0059101 0.7 + 1405000 -5550.2667 1211.9058 -6762.1725 1365.9796 21743.769 -30331.304 290.61421 -173.3426 1.0210828 0.7025 + 1410000 -5486.1246 1271.3405 -6757.4651 1425.326 21739.7 -30337.946 304.86661 874.21456 1.0139115 0.705 + 1415000 -5537.3934 1269.7516 -6807.1451 1449.2446 21658.871 -30335.68 304.4856 569.30023 1.0046679 0.7075 + 1420000 -5560.5616 1245.2367 -6805.7983 1402.5678 21708.73 -30335.385 298.60694 -104.6055 1.0091745 0.71 + 1425000 -5528.1555 1294.6881 -6822.8437 1514.7057 21531.479 -30337.473 310.46536 1522.6101 1.0126646 0.7125 + 1430000 -5497.5001 1287.4796 -6784.9798 1392.3932 21699.849 -30339.103 308.73677 61.912759 1.00971 0.715 + 1435000 -5510.8749 1237.5563 -6748.4312 1358.3772 21788.933 -30340.288 296.76518 -306.88924 1.0018599 0.7175 + 1440000 -5499.3556 1270.3888 -6769.7443 1370.7823 21727.629 -30339.175 304.63839 -53.340447 1.0200557 0.72 + 1445000 -5546.7228 1232.4352 -6779.1579 1373.6312 21729.152 -30336.67 295.53714 -213.61291 1.0138642 0.7225 + 1450000 -5449.6319 1267.9184 -6717.5503 1369.4309 21793.674 -30334.448 304.04599 184.06979 1.0177429 0.725 + 1455000 -5605.5581 1205.3164 -6810.8745 1379.1631 21695.098 -30340.184 289.03407 -396.85833 1.0020238 0.7275 + 1460000 -5624.6928 1228.0852 -6852.778 1404.3538 21660.898 -30340.227 294.49403 -103.24316 1.0176862 0.73 + 1465000 -5517.9353 1237.1764 -6755.1117 1376.5763 21773.353 -30337.713 296.67409 -143.30329 1.0091248 0.7325 + 1470000 -5531.193 1192.152 -6723.345 1469.0677 21691.379 -30335.647 285.87727 1394.3946 1.0169307 0.735 + 1475000 -5469.5125 1278.1335 -6747.6459 1374.8894 21790.652 -30336.291 306.49556 -320.76133 0.99923276 0.7375 + 1480000 -5569.7546 1225.3414 -6795.096 1369.5149 21704.23 -30339.752 293.83607 -295.5674 1.0086 0.74 + 1485000 -5570.7676 1229.0249 -6799.7924 1358.7067 21754.36 -30339.644 294.71935 -446.59245 1.0146734 0.7425 + 1490000 -5578.5093 1213.6038 -6792.1131 1361.3024 21746.493 -30339.324 291.0214 -279.50424 1.0188708 0.745 + 1495000 -5574.1959 1286.4102 -6860.6061 1391.1258 21669.913 -30338.466 308.48032 -404.60846 1.0074475 0.7475 + 1500000 -5499.0758 1257.807 -6756.8828 1293.9978 21854.746 -30334.433 301.62128 -995.33111 1.0061023 0.75 + 1505000 -5555.8386 1224.7451 -6780.5837 1398.2158 21721.994 -30333.807 293.69307 -108.77374 1.0017368 0.7525 + 1510000 -5516.6813 1232.9495 -6749.6308 1375.2615 21790.724 -30334.453 295.66048 -254.2256 0.99292399 0.755 + 1515000 -5506.9453 1232.1963 -6739.1416 1398.9195 21765.1 -30337.448 295.47987 280.5709 1.0059619 0.7575 + 1520000 -5572.2466 1203.9157 -6776.1623 1358.6224 21732.12 -30335.917 288.69819 -423.60315 1.013085 0.76 + 1525000 -5479.3423 1275.6547 -6754.997 1348.5224 21788.359 -30339.133 305.90116 -332.75562 1.0119609 0.7625 + 1530000 -5518.4409 1217.0162 -6735.4571 1369.8978 21790.403 -30338.036 291.83967 -211.5446 0.99823021 0.765 + 1535000 -5517.1315 1253.9634 -6771.0948 1424.4081 21690.09 -30337.668 300.69959 341.83304 1.0041481 0.7675 + 1540000 -5528.0888 1233.7041 -6761.7929 1405.9083 21710.981 -30336.39 295.84144 -32.35231 0.99593709 0.77 + 1545000 -5539.0412 1238.631 -6777.6723 1311.2439 21794.343 -30337.582 297.0229 -1311.3664 0.9961313 0.7725 + 1550000 -5595.0349 1240.5672 -6835.602 1441.0277 21670.814 -30338.678 297.48719 536.63002 1.015083 0.775 + 1555000 -5560.1434 1270.6028 -6830.7462 1443.7953 21637.472 -30333.488 304.68972 470.00368 1.0055598 0.7775 + 1560000 -5496.2344 1234.9637 -6731.1981 1330.1568 21821.108 -30335.645 296.14347 -757.48104 0.99041343 0.78 + 1565000 -5556.0238 1248.445 -6804.4688 1397.6434 21692.421 -30338.719 299.37629 -10.691405 1.0182037 0.7825 + 1570000 -5552.3079 1243.8513 -6796.1592 1397.511 21703.363 -30336.571 298.27472 32.033113 1.0089905 0.785 + 1575000 -5468.3273 1283.6822 -6752.0094 1361.1407 21787.216 -30336.574 307.82614 -164.38813 1.0083064 0.7875 + 1580000 -5488.0146 1232.0833 -6720.0979 1320.826 21829.873 -30335.918 295.45277 -417.97233 1.018807 0.79 + 1585000 -5535.136 1231.2656 -6766.4015 1440.3397 21691.223 -30338.944 295.25667 686.24285 1.0137355 0.7925 + 1590000 -5507.2274 1257.8264 -6765.0537 1388.9839 21718.772 -30335.685 301.62593 -138.69824 1.003965 0.795 + 1595000 -5493.0812 1223.4504 -6716.5316 1396.9927 21762.807 -30334.042 293.38261 250.04963 1.0085422 0.7975 + 1600000 -5542.7694 1256.563 -6799.3324 1383.1567 21709.773 -30338.003 301.32298 -51.465013 1.0131684 0.8 + 1605000 -5453.3692 1285.3523 -6738.7215 1362.5454 21803.391 -30335.547 308.22664 -321.46323 1.0029343 0.8025 + 1610000 -5503.9352 1259.2527 -6763.188 1421.5945 21696.436 -30334.944 301.96798 625.60637 1.0255178 0.805 + 1615000 -5476.5761 1246.0171 -6722.5932 1347.6694 21806.697 -30336.05 298.79408 -91.329161 1.0116498 0.8075 + 1620000 -5507.707 1237.031 -6744.738 1371.7693 21775.289 -30334.991 296.63921 -213.66643 1.0063229 0.81 + 1625000 -5456.168 1228.6159 -6684.7839 1372.1719 21806.244 -30336.186 294.62128 293.33707 1.0094967 0.8125 + 1630000 -5650.3002 1225.7447 -6876.0449 1465.0474 21543.498 -30336.757 293.93277 417.30626 1.0158098 0.815 + 1635000 -5450.49 1275.0111 -6725.5011 1481.2268 21684.726 -30337.105 305.74683 1426.6931 1.0094353 0.8175 + 1640000 -5617.7996 1227.1912 -6844.9908 1412.9007 21647.959 -30339.808 294.27965 -64.670241 1.0184979 0.82 + 1645000 -5479.4668 1286.8935 -6766.3603 1430.311 21716.402 -30338.791 308.59622 613.1652 1.002358 0.8225 + 1650000 -5500.2183 1280.3487 -6780.567 1385.4426 21748.104 -30337.348 307.02677 -65.179279 1.0098634 0.825 + 1655000 -5560.2962 1223.2516 -6783.5478 1311.1561 21783.296 -30335.262 293.33493 -1444.809 0.98862533 0.8275 + 1660000 -5560.1654 1221.3779 -6781.5433 1384.641 21766.196 -30337.4 292.88562 -30.809802 1.0055892 0.83 + 1665000 -5459.1135 1261.4358 -6720.5493 1334.6877 21855.177 -30336.221 302.49147 -691.93836 0.98631443 0.8325 + 1670000 -5426.4876 1277.2456 -6703.7331 1301.4361 21883.289 -30338.807 306.28264 -769.6473 1.0029395 0.835 + 1675000 -5560.3658 1228.1155 -6788.4813 1421.5285 21710.575 -30339.538 294.50128 134.14929 0.99950546 0.8375 + 1680000 -5533.0079 1239.2308 -6772.2386 1466.9684 21661.29 -30336.838 297.16672 1000.7926 1.0093582 0.84 + 1685000 -5532.7803 1282.6992 -6815.4795 1387.5896 21673.135 -30336.269 307.59043 -293.90054 1.0036548 0.8425 + 1690000 -5533.8573 1242.0398 -6775.8971 1295.4859 21813.204 -30335.918 297.84032 -1072.3783 1.0103958 0.845 + 1695000 -5569.1131 1236.3099 -6805.423 1391.4947 21734.459 -30337.665 296.46629 -42.852437 1.0020314 0.8475 + 1700000 -5514.6926 1236.9596 -6751.6522 1297.2083 21861.079 -30337.966 296.6221 -1035.3111 1.0148487 0.85 + 1705000 -5481.7854 1264.9348 -6746.7202 1394.4051 21765.618 -30334.989 303.33053 68.230386 0.99805471 0.8525 + 1710000 -5628.7652 1218.5732 -6847.3385 1424.8975 21629.726 -30339.018 292.21306 -18.822494 1.0061359 0.855 + 1715000 -5535.4768 1269.0696 -6804.5464 1310.4991 21778.662 -30338.107 304.32206 -1128.3429 1.0076215 0.8575 + 1720000 -5612.6083 1193.1968 -6805.8051 1383.4907 21742.438 -30339.657 286.12782 -186.2314 1.0077134 0.86 + 1725000 -5483.1527 1278.2192 -6761.3719 1414.7937 21718.362 -30332.789 306.51613 275.89425 0.99757317 0.8625 + 1730000 -5507.2292 1239.3969 -6746.626 1349.4125 21760.595 -30336.33 297.20655 -160.96278 1.0175868 0.865 + 1735000 -5471.6725 1274.6169 -6746.2893 1353.4867 21778.13 -30334.321 305.65228 -455.73375 0.99473861 0.8675 + 1740000 -5457.1173 1292.0777 -6749.195 1354.1425 21798.549 -30337.698 309.83938 105.28166 1.013856 0.87 + 1745000 -5526.7699 1217.2299 -6743.9998 1374.1349 21775.087 -30335.943 291.89093 21.249651 1.0097813 0.8725 + 1750000 -5558.9441 1238.0218 -6796.966 1398.6419 21742.403 -30337.165 296.87681 258.79723 1.0189989 0.875 + 1755000 -5510.581 1278.8181 -6789.3991 1388.2658 21710.876 -30337.981 306.65974 475.10366 1.0315721 0.8775 + 1760000 -5530.9869 1295.8685 -6826.8554 1479.5118 21573.341 -30338.944 310.74841 748.89788 1.0132734 0.88 + 1765000 -5533.3839 1317.0507 -6850.4347 1435.6808 21644.207 -30333.746 315.8279 594.0529 1.0192713 0.8825 + 1770000 -5465.8084 1240.5045 -6706.3129 1292.0385 21900.378 -30339.129 297.47215 -1025.2013 1.0024888 0.885 + 1775000 -5599.0359 1221.6792 -6820.7151 1462.1624 21619.581 -30339.425 292.95787 626.3862 1.0091902 0.8875 + 1780000 -5538.0385 1264.6729 -6802.7114 1372.7663 21730.471 -30338.894 303.26773 -192.55416 1.0065058 0.89 + 1785000 -5428.1822 1333.9892 -6762.1715 1389.1017 21728.7 -30336.27 319.88974 104.29655 1.0139352 0.8925 + 1790000 -5508.9545 1287.0739 -6796.0284 1445.185 21652.743 -30336.902 308.63947 391.87637 1.0000323 0.895 + 1795000 -5523.6516 1235.1646 -6758.8162 1418.1244 21721.296 -30337.575 296.19166 666.61502 1.0229146 0.8975 + 1800000 -5572.6377 1214.1205 -6786.7582 1392.4223 21722.483 -30335.66 291.14528 -97.658277 1.0013673 0.9 + 1805000 -5546.2419 1219.6808 -6765.9227 1366.9631 21762.107 -30337.944 292.47866 -57.351578 1.0188349 0.9025 + 1810000 -5570.7715 1247.1279 -6817.8994 1386.5773 21707.994 -30338.467 299.06045 128.40982 1.018309 0.905 + 1815000 -5527.1768 1236.8139 -6763.9907 1370.0226 21756.947 -30337.433 296.58716 -58.429002 1.0156077 0.9075 + 1820000 -5392.8702 1296.598 -6689.4682 1422.7107 21835.725 -30339.535 310.92334 1096.9698 1.0098001 0.91 + 1825000 -5403.1407 1273.2353 -6676.3761 1398.7473 21821.771 -30338.272 305.32099 575.09164 1.009625 0.9125 + 1830000 -5533.275 1223.962 -6757.237 1302.4782 21879.688 -30335.303 293.50528 -794.93635 1.0164392 0.915 + 1835000 -5537.9594 1230.3716 -6768.331 1359.2088 21780.105 -30337.746 295.04229 -301.96771 1.012533 0.9175 + 1840000 -5496.5607 1259.4196 -6755.9803 1392.4138 21810.816 -30335.129 302.00799 308.79809 1.0087261 0.92 + 1845000 -5516.8276 1233.6195 -6750.4471 1356.0628 21770.257 -30336.985 295.82114 -563.13925 0.99534053 0.9225 + 1850000 -5551.2862 1216.2779 -6767.5641 1315.4137 21779.186 -30338.525 291.66263 -1234.4928 0.9977088 0.925 + 1855000 -5514.4008 1278.8525 -6793.2533 1477.9866 21661.793 -30338.935 306.668 1192.9778 1.0126178 0.9275 + 1860000 -5445.2459 1262.0113 -6707.2573 1295.8277 21920.956 -30333.967 302.62948 -1093.2105 0.98876382 0.93 + 1865000 -5479.9894 1263.9698 -6743.9592 1342.5201 21812.688 -30335.4 303.09913 -141.70262 1.018338 0.9325 + 1870000 -5526.4829 1205.3702 -6731.8531 1376.0037 21811.821 -30332.663 289.04698 186.81383 1.0172778 0.935 + 1875000 -5566.9793 1221.657 -6788.6363 1352.419 21753.184 -30332.134 292.95254 -421.96475 1.0091425 0.9375 + 1880000 -5497.1676 1282.0374 -6779.205 1398.213 21722.715 -30339.838 307.43173 37.827778 1.0039977 0.94 + 1885000 -5557.4404 1233.9174 -6791.3578 1449.936 21642.09 -30339.056 295.89259 883.49759 1.0130214 0.9425 + 1890000 -5506.733 1295.1267 -6801.8597 1297.6178 21817.614 -30338.332 310.57052 -1073.8778 1.0180788 0.945 + 1895000 -5533.7516 1257.448 -6791.1996 1345.2106 21764.458 -30338.571 301.53521 -526.55649 1.0121615 0.9475 + 1900000 -5541.0051 1258.9341 -6799.9391 1381.6398 21733.321 -30338.593 301.89155 -252.04317 1.008764 0.95 + 1905000 -5609.2146 1182.6597 -6791.8743 1350.4308 21757.084 -30338.743 283.60101 -97.157492 1.0309631 0.9525 + 1910000 -5571.9982 1254.2855 -6826.2837 1389.361 21684.388 -30336.514 300.77683 -350.37238 1.0002085 0.955 + 1915000 -5504.046 1277.8838 -6781.9299 1392.3191 21732.799 -30339.549 306.43569 295.58866 1.0234965 0.9575 + 1920000 -5500.6241 1311.1129 -6811.737 1384.3734 21674.326 -30341.238 314.40401 84.788637 1.0209565 0.96 + 1925000 -5529.7992 1229.6795 -6759.4787 1408.9276 21763.324 -30339.966 294.87632 215.06361 1.0061547 0.9625 + 1930000 -5444.6302 1282.6892 -6727.3194 1334.5948 21864.664 -30333.059 307.58803 -76.344233 1.0195039 0.965 + 1935000 -5506.5314 1250.2755 -6756.8069 1346.0266 21804.791 -30335.384 299.81524 -400.10311 1.009444 0.9675 + 1940000 -5595.6735 1257.0187 -6852.6922 1445.275 21568.516 -30337.62 301.43225 543.8544 1.0288045 0.97 + 1945000 -5555.7495 1224.7877 -6780.5372 1333.6985 21795.754 -30338.445 293.70329 -560.62987 1.0145559 0.9725 + 1950000 -5481.8697 1239.3038 -6721.1735 1436.353 21745.545 -30335.269 297.18424 1090.0854 1.024844 0.975 + 1955000 -5586.7772 1263.8812 -6850.6584 1479.012 21594.084 -30335.219 303.07787 1031.8973 1.018222 0.9775 + 1960000 -5495.753 1254.4979 -6750.2508 1386.5525 21763.46 -30336.981 300.82776 72.271681 1.0073177 0.98 + 1965000 -5532.6074 1226.085 -6758.6924 1373.4537 21763.717 -30335.48 294.01437 49.27447 1.0207726 0.9825 + 1970000 -5592.2371 1226.5746 -6818.8117 1393.679 21701.959 -30338.233 294.13177 150.06013 1.0325882 0.985 + 1975000 -5564.1305 1237.5805 -6801.711 1398.2423 21736.76 -30338.459 296.77099 278.42773 1.0180523 0.9875 + 1980000 -5482.7493 1267.38 -6750.1292 1354.4265 21816.978 -30337.136 303.91688 -264.92549 1.0116111 0.99 + 1985000 -5486.0145 1244.3436 -6730.358 1338.1288 21844.074 -30336.86 298.39277 76.865939 1.0287137 0.9925 + 1990000 -5518.5592 1251.3748 -6769.9341 1251.2427 21885.87 -30337.966 300.07886 -1536.5189 1.0130877 0.995 + 1995000 -5487.626 1271.8163 -6759.4423 1356.5853 21769.656 -30337.831 304.9807 -374.70018 1.0071102 0.9975 + 2000000 -5510.6051 1219.5403 -6730.1454 1414.2091 21757.343 -30335.348 292.44495 576.54022 1.0102751 1 +Loop time of 13908.6 on 12 procs for 2000000 steps with 1800 atoms + +Performance: 12.424 ns/day, 1.932 hours/ns, 143.796 timesteps/s +95.4% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7652.9 | 8199.2 | 8886.6 | 354.2 | 58.95 +Bond | 25.21 | 26.012 | 27.096 | 14.0 | 0.19 +Kspace | 2159 | 2762 | 3232.9 | 533.0 | 19.86 +Neigh | 571.65 | 572.66 | 573.54 | 2.5 | 4.12 +Comm | 806.99 | 869.79 | 940.86 | 190.9 | 6.25 +Output | 0.032536 | 0.034245 | 0.041095 | 1.2 | 0.00 +Modify | 959.22 | 1140.3 | 1306.8 | 448.8 | 8.20 +Other | | 338.6 | | | 2.43 + +Nlocal: 150.000 ave 159 max 140 min +Histogram: 1 0 2 2 0 2 2 1 0 2 +Nghost: 6121.33 ave 6236 max 6003 min +Histogram: 2 0 0 3 0 2 2 2 0 1 +Neighs: 87038.7 ave 96826 max 77686 min +Histogram: 2 0 1 3 0 1 2 1 1 1 + +Total # of neighbors = 1044464 +Ave neighs/atom = 580.25778 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 89191 +Dangerous builds = 0 +Total wall time: 4:02:50 diff --git a/examples/USER/fep/SPCEhyd/fep01/fep01-q.fep b/examples/USER/fep/SPCEhyd/fep01/fep01-q.fep new file mode 100644 index 0000000000..553c231860 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/fep01-q.fep @@ -0,0 +1,22 @@ +# Time-averaged data for fix FEP +# TimeStep c_FEP[1] c_FEP[2] c_FEP[3] +100000 -0.00130466 18193.2 17742.3 +200000 -0.027526 18951.4 17742.7 +300000 -0.0459414 19629.2 17752.3 +400000 -0.0857092 21019.8 17772.6 +500000 -0.0982497 21457.5 17731.3 +600000 -0.137334 23057.4 17808.5 +700000 -0.170804 24395.7 17801 +800000 -0.223064 26797.3 17738.8 +900000 -0.261826 28800 17791.7 +1000000 -0.286374 30143.5 17783.4 +1100000 -0.349306 33728.2 17757.7 +1200000 -0.408164 37435.9 17787.7 +1300000 -0.496871 43896.5 17766.2 +1400000 -0.602917 53115.7 17749.9 +1500000 -0.72768 65474.3 17765 +1600000 -0.793802 73873.7 17785.7 +1700000 -0.912421 92487.7 17754.8 +1800000 -1.02249 109518 17762.7 +1900000 -1.12599 130115 17752.5 +2000000 -1.2899 174891 17768.3 diff --git a/examples/USER/fep/SPCEhyd/fep01/fep01-q.out b/examples/USER/fep/SPCEhyd/fep01/fep01-q.out new file mode 100644 index 0000000000..4d597f88b3 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/fep01-q.out @@ -0,0 +1,561 @@ +LAMMPS (29 Oct 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/lammps/src/comm.cpp:94) + using 1 OpenMP thread(s) per MPI task +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (29.204526 29.204526 29.204526) + 2 by 2 by 3 MPI processor grid + reading atoms ... + 1800 atoms + scanning bonds ... + 1 = max bonds/atom + scanning angles ... + 1 = max angles/atom + reading bonds ... + 1200 bonds + reading angles ... + 600 angles +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0.5 + special bond factors coul: 0 0 0.5 + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + special bonds CPU = 0.002 seconds + read_data CPU = 0.019 seconds +Finding SHAKE clusters ... + 0 = # of size 2 clusters + 600 = # of size 3 clusters + 0 = # of size 4 clusters + 0 = # of frozen angles + find clusters CPU = 0.001 seconds +Setting atom values ... + 3 settings made for charge +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25066829 + grid = 20 20 20 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0030719151 + estimated relative force accuracy = 9.250981e-06 + using double precision FFTW3 + 3d grid and FFT values/proc = 3757 800 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 8.214 | 8.226 | 8.244 Mbytes +Step CPU TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Volume Density + 0 0 1344.0739 1251.046 93.027896 53.823145 30049.554 -30010.349 300 10284.878 24908.667 0.72058313 + 5000 26.813 -5450.5713 1282.0681 -6732.6394 1325.6489 21834.91 -30297.994 307.43909 -699.90679 18234.717 0.98431826 + 10000 55.604067 -5588.263 1217.9162 -6806.1792 1414.4085 21633.044 -30301.477 292.05551 23.383255 17964.154 0.99914336 + 15000 85.625894 -5502.4932 1306.1963 -6808.6896 1448.9698 21589.863 -30300.506 313.22502 674.44388 17764.828 1.010354 + 20000 119.30994 -5551.8753 1255.7906 -6807.6659 1438.0508 21600.534 -30296.631 301.13775 626.57778 17521.241 1.0244003 + 25000 153.36332 -5513.3214 1262.2974 -6775.6188 1448.1692 21624.738 -30300.649 302.69809 1082.1686 17539.064 1.0233594 + 30000 185.73754 -5517.07 1232.0851 -6749.1552 1351.1278 21743.778 -30297.746 295.45321 -345.74832 17641.782 1.0174009 + 35000 219.88466 -5461.9885 1261.1109 -6723.0993 1320.5321 21811.17 -30298.154 302.41356 -633.99545 17793.771 1.0087106 + 40000 250.59178 -5478.4688 1259.9078 -6738.3767 1361.0965 21772.195 -30298.632 302.12507 251.40827 17555.015 1.0224295 + 45000 284.497 -5586.9018 1253.0148 -6839.9166 1368.2811 21661.619 -30296.221 300.47212 -485.67054 17692.537 1.0144823 + 50000 318.07759 -5566.6473 1284.4686 -6851.116 1421.3632 21574.213 -30298.299 308.01473 123.81461 17666.827 1.0159586 + 55000 342.2475 -5571.8668 1241.516 -6813.3827 1320.1575 21745.617 -30297.514 297.71471 -757.9971 17553.891 1.0224949 + 60000 369.92714 -5405.9904 1244.2976 -6650.288 1321.6833 21864.494 -30297.613 298.38174 -252.7118 17729.038 1.0123936 + 65000 400.90471 -5536.8199 1222.3639 -6759.1838 1335.2142 21756.337 -30299.402 293.12205 -425.71516 17495.348 1.0259165 + 70000 421.35603 -5552.3284 1260.2509 -6812.5793 1340.624 21697.664 -30296.839 302.20732 -845.04229 17882.237 1.0037204 + 75000 441.98615 -5494.066 1286.3299 -6780.3959 1404.289 21683.326 -30293.835 308.46107 382.75947 17905.291 1.002428 + 80000 462.4957 -5550.6324 1269.8456 -6820.4779 1356.8274 21698.112 -30298.489 304.50813 -534.46185 17874.446 1.0041579 + 85000 483.079 -5656.6158 1200.4648 -6857.0807 1457.2846 21562.254 -30300.6 287.87068 686.28181 17521.518 1.0243841 + 90000 510.58296 -5480.2188 1242.2417 -6722.4605 1325.1999 21772.005 -30296.2 297.88874 -353.59603 17662.908 1.016184 + 95000 531.29699 -5537.8929 1265.7042 -6803.5971 1376.1449 21683.369 -30297.657 303.51504 -263.8525 17673.753 1.0155605 + 100000 563.33023 -5538.2683 1254.8684 -6793.1367 1343.4731 21751.843 -30299.503 300.91662 -623.47098 17857.853 1.0050909 +Loop time of 563.33 on 12 procs for 100000 steps with 1800 atoms + +Performance: 15.337 ns/day, 1.565 hours/ns, 177.516 timesteps/s +94.5% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 284.09 | 305.4 | 330.52 | 90.7 | 54.21 +Bond | 1.0744 | 1.1159 | 1.1633 | 3.1 | 0.20 +Kspace | 101.59 | 125.93 | 147.73 | 141.3 | 22.35 +Neigh | 22.44 | 22.466 | 22.486 | 0.3 | 3.99 +Comm | 39.278 | 41.789 | 46.639 | 43.5 | 7.42 +Output | 0.0012299 | 0.0012852 | 0.0017706 | 0.4 | 0.00 +Modify | 42.543 | 55.366 | 62.194 | 102.3 | 9.83 +Other | | 11.26 | | | 2.00 + +Nlocal: 150.000 ave 163 max 133 min +Histogram: 1 1 0 0 1 3 3 0 1 2 +Nghost: 6108.25 ave 6187 max 6048 min +Histogram: 3 0 2 1 1 1 1 1 1 1 +Neighs: 86944.1 ave 96258 max 75267 min +Histogram: 2 0 1 0 1 0 3 3 1 1 + +Total # of neighbors = 1043329 +Ave neighs/atom = 579.62722 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 4470 +Dangerous builds = 9 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25102555 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0035374557 + estimated relative force accuracy = 1.0652943e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 3328 648 +FEP settings ... + temperature = 300.000000 + tail no + 1-1 charge + 2-2 charge +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 8.592 | 8.613 | 8.629 Mbytes +Step TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Density v_lambda v_qO v_qH + 0 -5538.2733 1254.8684 -6793.1417 1343.4731 21794.974 -30342.64 300.91662 -475.71492 1.0050909 0 -0 0 + 5000 -5579.9374 1246.75 -6826.6874 1443.8973 21614.133 -30343.039 298.96983 785.16037 1.0322471 0.0025 -0.002119 0.0010595 + 10000 -5528.9995 1276.273 -6805.2725 1375.6345 21734.24 -30343.779 306.04943 -41.209531 1.0207823 0.005 -0.004238 0.002119 + 15000 -5506.4227 1270.5724 -6776.9951 1356.298 21760.893 -30339.74 304.68242 -483.58254 1.0055775 0.0075 -0.006357 0.0031785 + 20000 -5520.1985 1271.766 -6791.9645 1413.5454 21705.741 -30340.672 304.96864 -25.849632 0.9997261 0.01 -0.008476 0.004238 + 25000 -5538.0793 1260.547 -6798.6264 1362.2032 21772.012 -30341.973 302.27834 -32.008776 1.0238659 0.0125 -0.010595 0.0052975 + 30000 -5519.1594 1267.066 -6786.2254 1327.6996 21784.187 -30341.191 303.84159 -919.77668 0.99978921 0.015 -0.012714 0.006357 + 35000 -5565.8849 1244.6201 -6810.505 1384.6297 21700.099 -30337.317 298.45908 -41.645325 1.0154185 0.0175 -0.014833 0.0074165 + 40000 -5610.4882 1225.8647 -6836.3529 1416.9133 21661.893 -30343.456 293.96154 86.229199 1.0091158 0.02 -0.016952 0.008476 + 45000 -5609.3562 1208.1008 -6817.457 1387.4135 21711.193 -30343.791 289.70178 -101.30213 1.0155204 0.0225 -0.019071 0.0095355 + 50000 -5512.9435 1272.9818 -6785.9253 1379.4084 21746.829 -30342.184 305.2602 -12.658236 1.0143328 0.025 -0.02119 0.010595 + 55000 -5568.845 1249.4227 -6818.2677 1397.4685 21704.581 -30340.419 299.61074 -409.12372 0.99849506 0.0275 -0.023309 0.0116545 + 60000 -5519.3972 1216.5292 -6735.9264 1369.8115 21830.467 -30342.642 291.72291 117.70437 1.0138535 0.03 -0.025428 0.012714 + 65000 -5525.0539 1229.5034 -6754.5573 1354.6275 21755.174 -30340.101 294.8341 -462.0909 1.0102225 0.0325 -0.027547 0.0137735 + 70000 -5472.0836 1237.9936 -6710.0772 1352.7747 21872.795 -30340.246 296.87006 -5.9707079 1.010185 0.035 -0.029666 0.014833 + 75000 -5514.8966 1241.7822 -6756.6788 1369.2902 21788.901 -30344.123 297.77855 -36.505421 1.0055449 0.0375 -0.031785 0.0158925 + 80000 -5501.5809 1244.4839 -6746.0648 1406.1414 21762.858 -30338.116 298.42642 356.6391 1.0044866 0.04 -0.033904 0.016952 + 85000 -5522.8846 1243.4435 -6766.3281 1277.631 21834.13 -30341.071 298.17693 -1501.0557 1.0030405 0.0425 -0.036023 0.0180115 + 90000 -5521.2512 1226.9606 -6748.2118 1426.6301 21707.584 -30342.842 294.22434 431.61937 1.0037325 0.045 -0.038142 0.019071 + 95000 -5606.4261 1239.7565 -6846.1826 1458.2919 21603.577 -30341.265 297.2928 452.3491 1.0064454 0.0475 -0.040261 0.0201305 + 100000 -5526.6029 1244.4811 -6771.084 1442.7891 21665.95 -30338.28 298.42575 499.20413 1.0045851 0.05 -0.04238 0.02119 + 105000 -5589.4951 1234.4407 -6823.9358 1418.2214 21663.025 -30341.483 296.01807 101.88725 1.0139383 0.0525 -0.044499 0.0222495 + 110000 -5511.859 1262.1425 -6774.0015 1353.5279 21783.245 -30339.283 302.66093 -199.18931 1.0257755 0.055 -0.046618 0.023309 + 115000 -5647.3449 1229.413 -6876.758 1408.5179 21641.362 -30341.598 294.81243 -298.02921 1.0020969 0.0575 -0.048737 0.0243685 + 120000 -5449.7674 1281.3875 -6731.155 1304.5518 21888.494 -30341.641 307.27589 -694.089 1.0046108 0.06 -0.050856 0.025428 + 125000 -5430.3553 1247.5854 -6677.9407 1342.5284 21899.097 -30343.376 299.17016 125.17161 1.0091105 0.0625 -0.052975 0.0264875 + 130000 -5604.2229 1198.864 -6803.0869 1343.9437 21741.913 -30342.105 287.4868 -1029.1103 0.99252488 0.065 -0.055094 0.027547 + 135000 -5550.2149 1233.8869 -6784.1018 1298.4466 21844.496 -30341.697 295.88527 -1083.9932 1.0128891 0.0675 -0.057213 0.0286065 + 140000 -5526.9114 1246.4353 -6773.3466 1346.6874 21790.011 -30343.164 298.89435 -384.65885 1.0089922 0.07 -0.059332 0.029666 + 145000 -5594.7954 1213.2963 -6808.0917 1391.4251 21671.653 -30341.641 290.94766 -59.474002 1.0195886 0.0725 -0.061451 0.0307255 + 150000 -5580.5229 1259.8574 -6840.3803 1384.5548 21703.974 -30342.483 302.11297 -91.974674 1.0257584 0.075 -0.06357 0.031785 + 155000 -5566.2712 1230.138 -6796.4093 1366.5696 21707.576 -30336.313 294.98629 -482.01244 1.0070735 0.0775 -0.065689 0.0328445 + 160000 -5491.8647 1293.2326 -6785.0974 1386.5259 21718.735 -30343.487 310.11633 -89.376893 1.0093767 0.08 -0.067808 0.033904 + 165000 -5531.3681 1279.7729 -6811.1409 1354.4198 21753.203 -30342.651 306.88869 -392.95774 1.0134907 0.0825 -0.069927 0.0349635 + 170000 -5594.2308 1213.4715 -6807.7023 1482.6412 21600.249 -30341.895 290.98966 928.50126 1.0132201 0.085 -0.072046 0.036023 + 175000 -5519.3482 1257.2925 -6776.6407 1420.4909 21726.753 -30340.213 301.49792 254.94623 0.98901793 0.0875 -0.074165 0.0370825 + 180000 -5426.929 1250.4297 -6677.3587 1356.866 21886.349 -30343.3 299.85221 -245.8457 0.98302571 0.09 -0.076284 0.038142 + 185000 -5512.2746 1245.7072 -6757.9817 1380.9844 21794.2 -30342.884 298.71976 149.05128 1.0150091 0.0925 -0.078403 0.0392015 + 190000 -5449.1514 1266.5892 -6715.7406 1324.6562 21889.348 -30342.468 303.72725 -620.02591 1.0004189 0.095 -0.080522 0.040261 + 195000 -5479.3945 1315.5655 -6794.96 1485.0588 21649.278 -30344.957 315.47174 1314.4492 1.0231026 0.0975 -0.082641 0.0413205 + 200000 -5563.7047 1217.2005 -6780.9051 1358.0191 21745.737 -30342.731 291.88386 -588.88047 1.0064764 0.1 -0.08476 0.04238 + 205000 -5580.3808 1230.1745 -6810.5553 1411.4424 21686.461 -30344.166 294.99504 214.77057 1.0029345 0.1025 -0.086879 0.0434395 + 210000 -5498.3534 1242.7043 -6741.0576 1370.6141 21796.013 -30341.015 297.99966 -26.716679 1.0117516 0.105 -0.088998 0.044499 + 215000 -5458.5956 1250.9454 -6709.541 1395.6557 21783.461 -30338.225 299.97588 406.41699 1.0137518 0.1075 -0.091117 0.0455585 + 220000 -5626.602 1214.9754 -6841.5774 1473.3289 21571.914 -30341.748 291.3503 599.47976 1.0096167 0.11 -0.093236 0.046618 + 225000 -5600.5356 1224.9039 -6825.4395 1342.4891 21754.804 -30341.025 293.73115 -626.27228 1.0198862 0.1125 -0.095355 0.0476775 + 230000 -5454.9477 1275.1464 -6730.0941 1372.8993 21798.515 -30340.963 305.77926 154.34847 1.0029435 0.115 -0.097474 0.048737 + 235000 -5481.9555 1227.4931 -6709.4486 1352.587 21840.233 -30343.313 294.35203 -208.20676 1.0008406 0.1175 -0.099593 0.0497965 + 240000 -5558.573 1218.8864 -6777.4595 1385.8452 21752.45 -30343.537 292.28816 162.10969 1.0215047 0.12 -0.101712 0.050856 + 245000 -5520.9207 1225.4691 -6746.3898 1338.4141 21841.905 -30342.557 293.86667 -587.07136 0.99909027 0.1225 -0.103831 0.0519155 + 250000 -5469.8293 1274.8021 -6744.6315 1384.4128 21775.904 -30342.629 305.69671 64.465989 1.0105027 0.125 -0.10595 0.052975 + 255000 -5583.4632 1209.565 -6793.0282 1426.1758 21667.168 -30342.466 290.0529 515.82984 1.0156235 0.1275 -0.108069 0.0540345 + 260000 -5536.1405 1237.073 -6773.2135 1357.8241 21771.52 -30340.823 296.64929 -438.57147 1.0071049 0.13 -0.110188 0.055094 + 265000 -5611.0013 1237.3831 -6848.3844 1417.6236 21598.469 -30339.452 296.72365 -367.70672 0.99925355 0.1325 -0.112307 0.0561535 + 270000 -5551.1345 1227.3483 -6778.4827 1430.3281 21692.104 -30340.818 294.31731 287.00159 1.0010721 0.135 -0.114426 0.057213 + 275000 -5602.2651 1241.1358 -6843.4009 1391.9031 21673.697 -30343.58 297.62355 -264.79926 1.014186 0.1375 -0.116545 0.0582725 + 280000 -5505.2292 1277.7478 -6782.9769 1380.5349 21747.333 -30343.992 306.40307 39.871379 1.0224709 0.14 -0.118664 0.059332 + 285000 -5527.7736 1230.4336 -6758.2072 1397.1892 21732.299 -30342.417 295.05716 276.95418 1.0126839 0.1425 -0.120783 0.0603915 + 290000 -5450.4061 1265.2269 -6715.6329 1360.3141 21842.086 -30344 303.40057 207.59349 1.0147077 0.145 -0.122902 0.061451 + 295000 -5617.5993 1217.4105 -6835.0098 1487.1573 21606.767 -30340.365 291.93424 808.20982 1.0058589 0.1475 -0.125021 0.0625105 + 300000 -5543.8664 1236.4411 -6780.3075 1377.4792 21755.298 -30344.078 296.49776 -182.45633 1.0097782 0.15 -0.12714 0.06357 + 305000 -5609.1426 1227.6292 -6836.7719 1437.6073 21603.923 -30343.337 294.38468 575.20852 1.0196556 0.1525 -0.129259 0.0646295 + 310000 -5549.1828 1228.5889 -6777.7717 1394.6395 21691.45 -30340.369 294.61482 348.39727 1.0352996 0.155 -0.131378 0.065689 + 315000 -5535.243 1248.2444 -6783.4874 1342.2366 21792.192 -30343.483 299.32819 -625.73677 1.0050826 0.1575 -0.133497 0.0667485 + 320000 -5534.3687 1255.4471 -6789.8158 1391.0816 21739.717 -30344.081 301.05539 302.16436 1.0216155 0.16 -0.135616 0.067808 + 325000 -5471.3922 1279.3669 -6750.759 1350.9981 21795.148 -30342.392 306.79133 -197.30703 1.0143436 0.1625 -0.137735 0.0688675 + 330000 -5598.8232 1226.4651 -6825.2883 1398.7718 21677.079 -30344.7 294.10553 -213.61646 1.0148836 0.165 -0.139854 0.069927 + 335000 -5551.2529 1259.6937 -6810.9465 1387.3662 21685.187 -30344.308 302.07371 138.36812 1.0229544 0.1675 -0.141973 0.0709865 + 340000 -5614.9057 1204.9401 -6819.8458 1400.0625 21668.036 -30343.31 288.94385 -386.78257 0.99685483 0.17 -0.144092 0.072046 + 345000 -5520.3252 1245.9691 -6766.2942 1428.7502 21696.415 -30345.482 298.78256 768.45616 1.0192108 0.1725 -0.146211 0.0731055 + 350000 -5513.6753 1249.7279 -6763.4032 1284.3535 21864.411 -30343.729 299.68392 -1040.9933 1.0093189 0.175 -0.14833 0.074165 + 355000 -5547.2549 1244.5392 -6791.7941 1428.3735 21662.08 -30340.69 298.43968 593.10891 1.0193921 0.1775 -0.150449 0.0752245 + 360000 -5589.7133 1245.8181 -6835.5314 1358.8909 21676.184 -30346.212 298.74637 -615.61801 1.0169406 0.18 -0.152568 0.076284 + 365000 -5487.1246 1223.3024 -6710.427 1333.6832 21894.405 -30339.2 293.34711 -385.63992 0.99614598 0.1825 -0.154687 0.0773435 + 370000 -5557.3434 1261.7301 -6819.0735 1430.6594 21657.49 -30341.935 302.56204 256.97472 1.0130616 0.185 -0.156806 0.078403 + 375000 -5453.0587 1250.9921 -6704.0508 1417.9533 21782.943 -30342.475 299.98708 759.88581 1.005535 0.1875 -0.158925 0.0794625 + 380000 -5556.3547 1222.266 -6778.6207 1358.5536 21812.006 -30343.775 293.09858 -190.9931 1.0101874 0.19 -0.161044 0.080522 + 385000 -5501.4025 1265.3304 -6766.7328 1424.8468 21722.251 -30342.613 303.42538 676.19284 1.0082991 0.1925 -0.163163 0.0815815 + 390000 -5553.0922 1226.1248 -6779.217 1386.2701 21755.237 -30343.024 294.02392 -55.846714 1.0141611 0.195 -0.165282 0.082641 + 395000 -5464.7179 1292.5065 -6757.2245 1391.9142 21755.809 -30342.569 309.94221 143.63086 1.001399 0.1975 -0.167401 0.0837005 + 400000 -5552.2274 1226.6092 -6778.8365 1437.5354 21706.283 -30344.844 294.14007 383.64397 0.99717814 0.2 -0.16952 0.08476 + 405000 -5465.9964 1302.7208 -6768.7172 1272.3678 21868.849 -30344.642 312.39159 -1291.0003 1.0128426 0.2025 -0.171639 0.0858195 + 410000 -5502.6819 1234.6487 -6737.3307 1351.0308 21789.612 -30344.433 296.06795 -265.76646 1.0210657 0.205 -0.173758 0.086879 + 415000 -5633.7475 1231.4568 -6865.2043 1369.0122 21700.285 -30343.991 295.30253 -446.38607 1.0197817 0.2075 -0.175877 0.0879385 + 420000 -5501.9642 1301.7275 -6803.6917 1383.0254 21739.249 -30343.668 312.1534 167.94828 1.0154563 0.21 -0.177996 0.088998 + 425000 -5532.9109 1273.6513 -6806.5622 1353.034 21735.703 -30341.962 305.42074 -386.7674 1.0176249 0.2125 -0.180115 0.0900575 + 430000 -5610.4928 1229.6066 -6840.0994 1384.0534 21685.85 -30340.003 294.85885 -392.26296 1.0166946 0.215 -0.182234 0.091117 + 435000 -5485.4138 1292.946 -6778.3598 1331.4915 21809.953 -30343.379 310.04759 -684.00607 0.99728831 0.2175 -0.184353 0.0921765 + 440000 -5423.494 1275.8582 -6699.3523 1355.0802 21885.761 -30344.38 305.94996 -61.348045 1.0030785 0.22 -0.186472 0.093236 + 445000 -5543.7469 1262.7456 -6806.4925 1292.6629 21801.211 -30345.175 302.80557 -942.29675 1.019957 0.2225 -0.188591 0.0942955 + 450000 -5508.6756 1254.0646 -6762.7401 1336.3483 21793.153 -30345.515 300.72385 -424.30387 1.0135307 0.225 -0.19071 0.095355 + 455000 -5536.23 1241.0621 -6777.2921 1356.0154 21765.992 -30341.02 297.60588 -415.44019 1.013923 0.2275 -0.192829 0.0964145 + 460000 -5519.3214 1227.2661 -6746.5875 1350.5669 21793.876 -30345.691 294.2976 -838.27228 0.98835279 0.23 -0.194948 0.097474 + 465000 -5569.5398 1206.1409 -6775.6808 1341.3479 21779.493 -30347.065 289.2318 -1009.2997 0.98862235 0.2325 -0.197067 0.0985335 + 470000 -5477.9533 1252.9751 -6730.9284 1332.4765 21850.802 -30347.395 300.46261 -434.01812 1.0083102 0.235 -0.199186 0.099593 + 475000 -5454.9313 1285.8036 -6740.7349 1455.9404 21718.761 -30341.504 308.33485 1197.5128 1.018547 0.2375 -0.201305 0.1006525 + 480000 -5500.6228 1264.0646 -6764.6874 1416.1687 21720.5 -30344.339 303.12185 658.63999 1.0148714 0.24 -0.203424 0.101712 + 485000 -5487.2301 1267.1551 -6754.3852 1393.3235 21727.438 -30344.266 303.86296 203.85856 1.0140199 0.2425 -0.205543 0.1027715 + 490000 -5542.8719 1257.8965 -6800.7685 1425.7521 21626.135 -30342.879 301.64276 372.74667 1.0129528 0.245 -0.207662 0.103831 + 495000 -5528.489 1239.5803 -6768.0694 1497.5941 21586.069 -30343.329 297.25054 1242.1701 1.0035294 0.2475 -0.209781 0.1048905 + 500000 -5537.0419 1260.1365 -6797.1784 1368.6229 21717.765 -30341.664 302.17989 -282.78916 1.0246698 0.25 -0.2119 0.10595 + 505000 -5476.9332 1287.4238 -6764.357 1473.5981 21665.477 -30346.513 308.72338 1132.7688 1.0122147 0.2525 -0.214019 0.1070095 + 510000 -5467.851 1267.0655 -6734.9165 1378.6348 21778.869 -30344.441 303.84146 69.208146 1.0140451 0.255 -0.216138 0.108069 + 515000 -5551.9713 1245.7115 -6797.6828 1403.6528 21721.547 -30342.376 298.72079 364.60527 1.0219092 0.2575 -0.218257 0.1091285 + 520000 -5611.3897 1244.7924 -6856.1821 1408.031 21638.811 -30344.364 298.5004 190.73446 1.0278442 0.26 -0.220376 0.110188 + 525000 -5572.5188 1247.1919 -6819.7107 1379.85 21691.92 -30343.696 299.0758 -203.52852 1.0154091 0.2625 -0.222495 0.1112475 + 530000 -5490.5915 1254.3538 -6744.9453 1387.0893 21799.214 -30343.112 300.79321 143.30552 1.0061614 0.265 -0.224614 0.112307 + 535000 -5625.8769 1218.1946 -6844.0715 1520.0402 21545.685 -30344.513 292.12226 1447.1785 1.0166808 0.2675 -0.226733 0.1133665 + 540000 -5469.8413 1287.4258 -6757.2671 1334.5626 21829.046 -30343.092 308.72386 -673.21682 1.0017181 0.27 -0.228852 0.114426 + 545000 -5512.6863 1236.8449 -6749.5313 1318.7318 21858.112 -30344.481 296.5946 -863.71117 0.99129185 0.2725 -0.230971 0.1154855 + 550000 -5639.1715 1217.2608 -6856.4322 1434.9176 21593.482 -30346.132 291.89833 253.12123 1.0171626 0.275 -0.23309 0.116545 + 555000 -5519.0565 1267.6791 -6786.7356 1405.1048 21738.951 -30344.793 303.98862 48.101225 0.99694182 0.2775 -0.235209 0.1176045 + 560000 -5652.7174 1173.1335 -6825.851 1439.7187 21641.222 -30344.805 281.31664 253.14906 1.0090928 0.28 -0.237328 0.118664 + 565000 -5669.4656 1195.4457 -6864.9113 1456.9433 21573.732 -30345.136 286.66708 192.38017 1.0032964 0.2825 -0.239447 0.1197235 + 570000 -5497.9803 1237.3935 -6735.3738 1357.9081 21789.301 -30345.378 296.72614 -251.982 1.0069437 0.285 -0.241566 0.120783 + 575000 -5499.6888 1271.8265 -6771.5154 1443.195 21717.024 -30345.292 304.98316 940.92536 1.012527 0.2875 -0.243685 0.1218425 + 580000 -5490.5569 1271.9789 -6762.5359 1373.9183 21766.793 -30344.227 305.01971 17.578848 1.0172064 0.29 -0.245804 0.122902 + 585000 -5530.2852 1261.3697 -6791.6549 1423.9039 21686.202 -30347.296 302.47562 -11.504613 0.99116915 0.2925 -0.247923 0.1239615 + 590000 -5488.4278 1288.5886 -6777.0164 1468.0208 21640.734 -30343.206 309.00269 759.61005 1.0084625 0.295 -0.250042 0.125021 + 595000 -5588.7416 1194.6582 -6783.3998 1372.9575 21791.426 -30342.728 286.47825 -143.90808 1.0132126 0.2975 -0.252161 0.1260805 + 600000 -5563.6701 1271.4938 -6835.1639 1449.6769 21642.784 -30343.735 304.90337 625.81539 1.011506 0.3 -0.25428 0.12714 + 605000 -5488.2233 1258.2868 -6746.5101 1407.7504 21741.629 -30343.159 301.73634 510.16631 1.0132228 0.3025 -0.256399 0.1281995 + 610000 -5549.338 1238.8653 -6788.2032 1429.9285 21684.29 -30344.283 297.07907 123.93393 0.98486733 0.305 -0.258518 0.129259 + 615000 -5490.009 1293.1302 -6783.1393 1394.1407 21736.673 -30344.121 310.09178 15.132265 1.0008809 0.3075 -0.260637 0.1303185 + 620000 -5557.3108 1229.2075 -6786.5184 1428.7497 21675.082 -30342.962 294.76316 221.88021 0.99717009 0.31 -0.262756 0.131378 + 625000 -5471.4619 1265.6593 -6737.1212 1435.6918 21726.949 -30346.08 303.50427 1082.3293 1.0296014 0.3125 -0.264875 0.1324375 + 630000 -5596.2646 1223.2613 -6819.5259 1310.3452 21748.215 -30349.483 293.33726 -956.30387 1.0193588 0.315 -0.266994 0.133497 + 635000 -5562.8009 1236.4073 -6799.2082 1435.0639 21648.724 -30348.81 296.48966 760.70171 1.0231151 0.3175 -0.269113 0.1345565 + 640000 -5546.5984 1245.5875 -6792.1859 1391.0829 21720.571 -30344.208 298.69107 84.132969 1.0139372 0.32 -0.271232 0.135616 + 645000 -5527.7237 1239.7635 -6767.4873 1469.2669 21670.472 -30347.702 297.29448 905.19045 1.004227 0.3225 -0.273351 0.1366755 + 650000 -5486.0101 1261.5972 -6747.6073 1428.0768 21719.918 -30346.814 302.53018 872.03447 1.0211175 0.325 -0.27547 0.137735 + 655000 -5512.6624 1274.7595 -6787.4218 1407.8255 21738.349 -30345.234 305.68648 315.34392 1.0159005 0.3275 -0.277589 0.1387945 + 660000 -5530.8232 1277.0139 -6807.8371 1411.9654 21724.952 -30344.558 306.22709 228.19739 1.0073576 0.33 -0.279708 0.139854 + 665000 -5584.6646 1210.7846 -6795.4492 1315.201 21842.284 -30345.244 290.34534 -1036.0503 0.99766647 0.3325 -0.281827 0.1409135 + 670000 -5613.7042 1216.7094 -6830.4135 1469.5492 21569.502 -30344.552 291.7661 569.55799 1.0191265 0.335 -0.283946 0.141973 + 675000 -5403.7426 1262.8723 -6666.6149 1452.6942 21769.922 -30345.597 302.83594 882.59425 0.99095227 0.3375 -0.286065 0.1430325 + 680000 -5621.8921 1220.9976 -6842.8897 1408.834 21654.021 -30346.563 292.79442 -296.23945 1.0015159 0.34 -0.288184 0.144092 + 685000 -5488.859 1304.9527 -6793.8117 1364.554 21763.427 -30348.59 312.92679 -211.30923 1.0149918 0.3425 -0.290303 0.1451515 + 690000 -5504.5878 1248.5637 -6753.1515 1384.0982 21716.14 -30343.281 299.40474 -82.795916 1.0093095 0.345 -0.292422 0.146211 + 695000 -5596.2796 1229.4773 -6825.7569 1344.4706 21742.04 -30345.718 294.82784 -1005.4356 1.0046317 0.3475 -0.294541 0.1472705 + 700000 -5532.1829 1295.7513 -6827.9341 1347.6545 21694.469 -30347.727 310.7203 -803.09684 1.0085103 0.35 -0.29666 0.14833 + 705000 -5556.5407 1230.5343 -6787.075 1344.8187 21812.434 -30348.843 295.08131 -201.00712 1.010319 0.3525 -0.298779 0.1493895 + 710000 -5633.8136 1234.4193 -6868.2329 1333.0942 21730.242 -30348.833 296.01293 -1368.0288 1.0000966 0.355 -0.300898 0.150449 + 715000 -5631.0856 1227.5912 -6858.6768 1395.4568 21681.852 -30346.637 294.37556 -255.61879 1.0144939 0.3575 -0.303017 0.1515085 + 720000 -5549.3688 1210.7798 -6760.1486 1418.7021 21758.926 -30350.326 290.3442 536.38975 1.0085621 0.36 -0.305136 0.152568 + 725000 -5628.8043 1231.3533 -6860.1576 1458.785 21573.579 -30350.207 295.27771 707.01861 1.0187202 0.3625 -0.307255 0.1536275 + 730000 -5548.9622 1251.7202 -6800.6824 1421.0395 21671.018 -30346.928 300.16167 167.64307 1.0191958 0.365 -0.309374 0.154687 + 735000 -5500.5941 1264.5064 -6765.1005 1364.4388 21811.902 -30349.578 303.22781 -108.03631 1.0186648 0.3675 -0.311493 0.1557465 + 740000 -5558.7077 1258.2914 -6816.9991 1409.4089 21709.041 -30348.945 301.73744 275.48329 1.0184094 0.37 -0.313612 0.156806 + 745000 -5482.8834 1276.9878 -6759.8711 1311.3195 21878.96 -30349.341 306.22082 -437.5413 1.0200645 0.3725 -0.315731 0.1578655 + 750000 -5535.8763 1236.3636 -6772.2398 1319.5529 21810.776 -30344.948 296.47917 -956.45661 1.0011678 0.375 -0.31785 0.158925 + 755000 -5533.7191 1213.8761 -6747.5953 1306.0985 21808.043 -30348.582 291.08669 -683.27383 1.0227604 0.3775 -0.319969 0.1599845 + 760000 -5429.3835 1303.7005 -6733.084 1333.5357 21913.252 -30348.286 312.62653 -151.87516 1.0091534 0.38 -0.322088 0.161044 + 765000 -5667.794 1212.9659 -6880.7599 1506.7874 21503.139 -30348.871 290.86842 891.10492 1.0215444 0.3825 -0.324207 0.1621035 + 770000 -5484.9356 1311.0182 -6795.9538 1435.0311 21677.068 -30348.949 314.3813 620.96832 1.0136132 0.385 -0.326326 0.163163 + 775000 -5518.6285 1232.7734 -6751.4018 1411.338 21740.98 -30346.257 295.61824 753.30258 1.0333129 0.3875 -0.328445 0.1642225 + 780000 -5537.1259 1217.4396 -6754.5655 1316.3755 21845.361 -30345.727 291.94122 -662.73038 1.0188948 0.39 -0.330564 0.165282 + 785000 -5604.5939 1277.8467 -6882.4407 1444.6878 21553.248 -30348.7 306.4268 227.68388 1.0209541 0.3925 -0.332683 0.1663415 + 790000 -5462.4478 1319.1458 -6781.5936 1327.6125 21815.004 -30349.006 316.33029 -750.24035 1.003079 0.395 -0.334802 0.167401 + 795000 -5487.7929 1318.8959 -6806.6888 1389.8939 21723.298 -30346.719 316.27037 -264.12282 0.99738096 0.3975 -0.336921 0.1684605 + 800000 -5523.8042 1255.7477 -6779.5519 1396.5496 21737.296 -30349.897 301.12747 178.89364 1.007163 0.4 -0.33904 0.16952 + 805000 -5538.132 1228.7841 -6766.9161 1453.7899 21669.265 -30350.684 294.66162 1049.0776 1.0297174 0.4025 -0.341159 0.1705795 + 810000 -5627.0669 1252.1172 -6879.1841 1502.1084 21549.483 -30350.675 300.25688 983.16188 1.0119201 0.405 -0.343278 0.171639 + 815000 -5573.0687 1226.8854 -6799.9541 1394.9184 21727.977 -30347.963 294.20631 -195.24823 0.99836901 0.4075 -0.345397 0.1726985 + 820000 -5621.5966 1294.197 -6915.7936 1463.2446 21542.129 -30349.926 310.3476 619.5463 1.0271072 0.41 -0.347516 0.173758 + 825000 -5616.7109 1249.8626 -6866.5734 1421.5256 21635.884 -30349.527 299.71622 -263.11411 0.99748321 0.4125 -0.349635 0.1748175 + 830000 -5471.708 1265.0891 -6736.7971 1353.2361 21810.332 -30347.83 303.36753 -108.71402 1.0163163 0.415 -0.351754 0.175877 + 835000 -5593.3653 1226.0643 -6819.4296 1488.2202 21624.762 -30347.972 294.0094 1267.159 1.0140919 0.4175 -0.353873 0.1769365 + 840000 -5436.1751 1245.9424 -6682.1175 1341.7719 21874.67 -30349.816 298.77616 37.078091 1.0076819 0.42 -0.355992 0.177996 + 845000 -5557.2162 1246.2846 -6803.5008 1365.7244 21760.327 -30351.424 298.85822 -504.55518 0.9986108 0.4225 -0.358111 0.1790555 + 850000 -5500.2978 1263.3648 -6763.6626 1345.3152 21797.277 -30346.719 302.95405 -493.77227 1.0071264 0.425 -0.36023 0.180115 + 855000 -5532.9745 1235.4096 -6768.3841 1356.9198 21790.77 -30352.767 296.25042 -221.24996 1.0158146 0.4275 -0.362349 0.1811745 + 860000 -5473.4178 1255.0438 -6728.4615 1383.6228 21792.167 -30348.034 300.95866 280.22925 1.0186752 0.43 -0.364468 0.182234 + 865000 -5603.437 1240.4488 -6843.8858 1465.1006 21616.501 -30349.222 297.45881 654.55077 1.007261 0.4325 -0.366587 0.1832935 + 870000 -5499.3395 1276.346 -6775.6855 1440.1417 21672.034 -30350.435 306.06692 628.16253 1.0139482 0.435 -0.368706 0.184353 + 875000 -5513.1545 1243.4424 -6756.5968 1375.4559 21786.838 -30347.817 298.17666 -219.76957 0.99017833 0.4375 -0.370825 0.1854125 + 880000 -5472.5421 1280.3435 -6752.8857 1389.4586 21788.568 -30351.891 307.02554 154.88101 1.0054199 0.44 -0.372944 0.186472 + 885000 -5450.9797 1258.2665 -6709.2462 1459.3097 21782.134 -30350.183 301.73147 980.80415 0.98845289 0.4425 -0.375063 0.1875315 + 890000 -5484.1944 1269.9087 -6754.1031 1387.4264 21765.016 -30349.116 304.52326 204.84716 1.0246385 0.445 -0.377182 0.188591 + 895000 -5581.7831 1248.4268 -6830.2099 1369.3871 21724.547 -30352.181 299.37193 -414.06005 1.0149078 0.4475 -0.379301 0.1896505 + 900000 -5458.4222 1232.2813 -6690.7035 1346.4094 21839.134 -30347.541 295.50024 -50.890974 1.0146972 0.45 -0.38142 0.19071 + 905000 -5513.276 1295.0801 -6808.3561 1376.4555 21731.514 -30351.543 310.55936 311.8453 1.0351056 0.4525 -0.383539 0.1917695 + 910000 -5573.436 1223.655 -6797.091 1400.1726 21683.422 -30350.684 293.43167 236.51663 1.0328044 0.455 -0.385658 0.192829 + 915000 -5533.4538 1223.4571 -6756.9109 1289.5678 21854.813 -30350.499 293.38421 -1263.7914 1.0023563 0.4575 -0.387777 0.1938885 + 920000 -5460.2089 1299.6804 -6759.8892 1426.0806 21734.807 -30345.969 311.6625 660.70504 1.0188703 0.46 -0.389896 0.194948 + 925000 -5586.3754 1190.3746 -6776.75 1370.4255 21793.33 -30353.014 285.45105 -349.07473 1.0001717 0.4625 -0.392015 0.1960075 + 930000 -5495.2747 1270.1927 -6765.4674 1366.3034 21771.462 -30352.631 304.59137 -253.14407 1.0062704 0.465 -0.394134 0.197067 + 935000 -5611.8812 1230.765 -6842.6462 1391.1109 21660.135 -30351.536 295.13663 -220.68043 1.0218857 0.4675 -0.396253 0.1981265 + 940000 -5573.1587 1243.9588 -6817.1176 1382.0507 21706.984 -30350.576 298.30051 -180.40488 1.0138507 0.47 -0.398372 0.199186 + 945000 -5443.1533 1293.3755 -6736.5288 1382.9147 21798.711 -30351.85 310.15058 147.36979 1.0066036 0.4725 -0.400491 0.2002455 + 950000 -5592.1333 1210.312 -6802.4453 1418.411 21688.66 -30351.52 290.23203 428.64993 1.0142914 0.475 -0.40261 0.201305 + 955000 -5470.1207 1296.1018 -6766.2225 1384.9375 21787.214 -30352.361 310.80436 433.7878 1.0216208 0.4775 -0.404729 0.2023645 + 960000 -5526.56 1277.3546 -6803.9145 1435.0129 21692.393 -30354.825 306.30878 456.96466 1.0098621 0.48 -0.406848 0.203424 + 965000 -5547.3226 1267.7833 -6815.1059 1336.807 21754.287 -30354.401 304.01361 -806.5152 1.0089205 0.4825 -0.408967 0.2044835 + 970000 -5590.3411 1253.2629 -6843.604 1436.0627 21619.623 -30354.576 300.53161 744.58683 1.0362403 0.485 -0.411086 0.205543 + 975000 -5495.8789 1288.8517 -6784.7306 1379.6531 21754.168 -30353.143 309.0658 56.414932 1.0194472 0.4875 -0.413205 0.2066025 + 980000 -5626.672 1235.0454 -6861.7174 1422.039 21639.365 -30353.345 296.16306 266.29939 1.0212144 0.49 -0.415324 0.207662 + 985000 -5517.2302 1266.6674 -6783.8976 1419.6659 21739.847 -30353.802 303.746 170.35635 1.0008605 0.4925 -0.417443 0.2087215 + 990000 -5615.6311 1235.67 -6851.301 1498.5618 21566.364 -30353.27 296.31284 929.92737 1.003868 0.495 -0.419562 0.209781 + 995000 -5579.2851 1215.2415 -6794.5265 1446.7531 21659.857 -30349.867 291.4141 803.74446 1.0190058 0.4975 -0.421681 0.2108405 + 1000000 -5581.9464 1263.6254 -6845.5718 1438.0232 21619.891 -30351.248 303.01654 385.93353 1.0173448 0.5 -0.4238 0.2119 + 1005000 -5587.1547 1249.0387 -6836.1934 1366.6385 21760.49 -30352.889 299.51867 -349.59036 1.0129845 0.5025 -0.425919 0.2129595 + 1010000 -5492.8452 1249.3309 -6742.1761 1343.9605 21845.845 -30357.274 299.58872 -278.05905 1.0062862 0.505 -0.428038 0.214019 + 1015000 -5502.1939 1259.7886 -6761.9825 1450.3663 21691.043 -30355.864 302.09648 884.22091 1.0091653 0.5075 -0.430157 0.2150785 + 1020000 -5519.7794 1263.3012 -6783.0806 1348.5309 21772.103 -30355.053 302.93879 -485.09205 1.0162589 0.51 -0.432276 0.216138 + 1025000 -5492.2145 1240.7923 -6733.0068 1347.9912 21829.98 -30355.146 297.54118 -129.21819 1.0122922 0.5125 -0.434395 0.2171975 + 1030000 -5481.098 1251.514 -6732.612 1349.3618 21805.918 -30351.771 300.11222 -294.39997 1.015786 0.515 -0.436514 0.218257 + 1035000 -5540.7907 1274.0244 -6814.8151 1422.1127 21668.122 -30353.396 305.51021 -9.7807193 0.99517879 0.5175 -0.438633 0.2193165 + 1040000 -5511.938 1311.5237 -6823.4617 1415.7285 21685.767 -30355.446 314.50251 557.98532 1.0269334 0.52 -0.440752 0.220376 + 1045000 -5482.845 1244.1463 -6726.9913 1334.7343 21892.686 -30356.188 298.34546 -188.18213 1.008059 0.5225 -0.442871 0.2214355 + 1050000 -5527.147 1257.8916 -6785.0386 1365.7652 21734.325 -30350.269 301.64158 -259.9832 1.0161046 0.525 -0.44499 0.222495 + 1055000 -5539.8717 1252.0619 -6791.9335 1333.1576 21792.877 -30357.118 300.24361 -478.89657 1.0214282 0.5275 -0.447109 0.2235545 + 1060000 -5495.1427 1262.1608 -6757.3034 1324.8343 21817.102 -30350.41 302.66532 -759.6781 1.0013723 0.53 -0.449228 0.224614 + 1065000 -5521.9323 1269.1474 -6791.0797 1383.5193 21729.979 -30354.504 304.3407 -62.142854 1.0143611 0.5325 -0.451347 0.2256735 + 1070000 -5561.1075 1234.4671 -6795.5746 1444.645 21667.151 -30353.573 296.0244 539.71717 1.0090477 0.535 -0.453466 0.226733 + 1075000 -5456.2884 1263.0452 -6719.3336 1372.1813 21849.919 -30353.173 302.8774 136.37572 1.0050362 0.5375 -0.455585 0.2277925 + 1080000 -5454.7662 1277.8421 -6732.6083 1390.7236 21772.189 -30355.181 306.42569 290.51564 1.0135088 0.54 -0.457704 0.228852 + 1085000 -5520.75 1250.6045 -6771.3545 1425.3072 21768.597 -30353.777 299.89414 798.65189 1.0159181 0.5425 -0.459823 0.2299115 + 1090000 -5572.3388 1291.5598 -6863.8986 1367.7168 21667.215 -30354.683 309.71518 -450.87566 1.0262859 0.545 -0.461942 0.230971 + 1095000 -5529.6535 1255.2347 -6784.8882 1403.3219 21741.696 -30353.889 301.00445 -92.495589 0.99150484 0.5475 -0.464061 0.2320305 + 1100000 -5579.3489 1256.7239 -6836.0728 1453.5027 21616.876 -30355.538 301.36157 720.78396 1.0267204 0.55 -0.46618 0.23309 + 1105000 -5567.3822 1242.176 -6809.5582 1421.8053 21697.289 -30354.084 297.87299 289.72195 1.0148833 0.5525 -0.468299 0.2341495 + 1110000 -5547.6002 1257.4285 -6805.0287 1346.2645 21768.848 -30359.105 301.53052 -635.42562 1.0119993 0.555 -0.470418 0.235209 + 1115000 -5605.4545 1236.2432 -6841.6976 1429.3813 21606.101 -30358.883 296.45029 40.119249 1.0046973 0.5575 -0.472537 0.2362685 + 1120000 -5611.5649 1169.0166 -6780.5815 1332.8494 21815.405 -30357.613 280.3294 -562.91711 1.0167305 0.56 -0.474656 0.237328 + 1125000 -5640.062 1211.8843 -6851.9464 1418.7199 21673.242 -30357.067 290.60906 -62.63663 0.999031 0.5625 -0.476775 0.2383875 + 1130000 -5513.3831 1261.9318 -6775.315 1417.1438 21719.904 -30352.493 302.61042 310.56176 1.0135707 0.565 -0.478894 0.239447 + 1135000 -5549.8659 1301.5049 -6851.3708 1396.8697 21686.613 -30356.008 312.10001 31.758375 1.0173007 0.5675 -0.481013 0.2405065 + 1140000 -5523.4602 1224.9938 -6748.454 1343.5247 21842.717 -30354.173 293.75272 -528.56467 1.0040317 0.57 -0.483132 0.241566 + 1145000 -5557.8153 1233.2598 -6791.0752 1354.164 21797.958 -30358.703 295.73489 -493.27153 1.0032311 0.5725 -0.485251 0.2426255 + 1150000 -5534.5822 1243.3356 -6777.9177 1394.6839 21739.915 -30355.185 298.15105 152.31618 1.0071009 0.575 -0.48737 0.243685 + 1155000 -5534.8189 1242.3492 -6777.1682 1373.8187 21793.555 -30357.857 297.91453 37.731508 1.0083807 0.5775 -0.489489 0.2447445 + 1160000 -5479.2448 1282.7579 -6762.0027 1384.5519 21809.073 -30358.289 307.6045 -216.01178 0.99242248 0.58 -0.491608 0.245804 + 1165000 -5523.2438 1251.4259 -6774.6697 1415.3042 21701.997 -30352.822 300.0911 432.84941 1.0114966 0.5825 -0.493727 0.2468635 + 1170000 -5481.1255 1250.2894 -6731.4149 1365.5166 21830.221 -30359.589 299.81856 91.910339 1.0132882 0.585 -0.495846 0.247923 + 1175000 -5495.7532 1253.5429 -6749.2961 1424.9266 21793.408 -30356.209 300.59876 523.05665 1.0001084 0.5875 -0.497965 0.2489825 + 1180000 -5559.8569 1275.3404 -6835.1973 1409.3754 21651.571 -30355.789 305.82578 227.26668 1.022457 0.59 -0.500084 0.250042 + 1185000 -5542.5567 1221.3997 -6763.9563 1364.9044 21800.061 -30356.771 292.89083 -219.95244 1.0177023 0.5925 -0.502203 0.2511015 + 1190000 -5539.2712 1222.6707 -6761.9418 1388.3455 21753.974 -30354.881 293.19562 98.025711 1.0101339 0.595 -0.504322 0.252161 + 1195000 -5592.3472 1219.7396 -6812.0868 1415.1952 21710.597 -30354.347 292.49275 216.23076 1.0044744 0.5975 -0.506441 0.2532205 + 1200000 -5578.5334 1216.6352 -6795.1686 1303.7768 21836.822 -30356.422 291.74831 -732.00281 1.0186318 0.6 -0.50856 0.25428 + 1205000 -5487.1214 1272.9249 -6760.0463 1430.2949 21760.198 -30361.194 305.24654 976.44234 1.0227788 0.6025 -0.510679 0.2553395 + 1210000 -5535.2065 1305.0213 -6840.2278 1427.2627 21661.686 -30358.861 312.94326 552.57394 1.0203432 0.605 -0.512798 0.256399 + 1215000 -5603.1868 1222.0704 -6825.2571 1424.8423 21663.067 -30360.771 293.05167 43.886877 1.0009903 0.6075 -0.514917 0.2574585 + 1220000 -5592.1952 1236.0907 -6828.286 1409.2149 21703.364 -30359.131 296.41374 -65.380785 0.99854282 0.61 -0.517036 0.258518 + 1225000 -5568.7119 1244.7205 -6813.4324 1399.4565 21706.513 -30362.046 298.48315 270.33966 1.0281978 0.6125 -0.519155 0.2595775 + 1230000 -5477.0467 1241.6279 -6718.6746 1308.0744 21899.276 -30355.205 297.74155 -810.43376 1.0001488 0.615 -0.521274 0.260637 + 1235000 -5514.9454 1219.9538 -6734.8992 1367.2379 21833.29 -30355.096 292.54411 -112.9674 1.0106137 0.6175 -0.523393 0.2616965 + 1240000 -5521.6055 1224.654 -6746.2595 1359.0484 21804.839 -30358.991 293.67122 -103.13203 1.0121451 0.62 -0.525512 0.262756 + 1245000 -5521.627 1203.8833 -6725.5103 1345.4748 21859.062 -30356.508 288.69043 -551.04569 0.99671631 0.6225 -0.527631 0.2638155 + 1250000 -5500.3647 1258.1202 -6758.4849 1419.8081 21749.943 -30357.318 301.69639 266.72902 0.98901247 0.625 -0.52975 0.264875 + 1255000 -5552.125 1243.7071 -6795.8321 1455.2991 21666.462 -30358.89 298.24014 599.97186 1.0064842 0.6275 -0.531869 0.2659345 + 1260000 -5578.793 1204.3943 -6783.1873 1379.1701 21781.6 -30362.903 288.81297 -21.534061 1.0251033 0.63 -0.533988 0.266994 + 1265000 -5465.6374 1276.5741 -6742.2115 1336.784 21844.446 -30358.502 306.12162 -410.74102 1.0115187 0.6325 -0.536107 0.2680535 + 1270000 -5520.3861 1231.6592 -6752.0453 1394.2067 21774.812 -30362.74 295.35107 352.62523 1.014927 0.635 -0.538226 0.269113 + 1275000 -5616.2092 1265.908 -6882.1172 1384.7822 21664.341 -30360.472 303.56391 -682.5968 1.0081338 0.6375 -0.540345 0.2701725 + 1280000 -5532.4186 1237.2775 -6769.6961 1397.704 21760.205 -30359.579 296.69834 209.80411 1.0168583 0.64 -0.542464 0.271232 + 1285000 -5496.3981 1253.4279 -6749.826 1391.0922 21757.065 -30360.207 300.57117 342.16946 1.0226223 0.6425 -0.544583 0.2722915 + 1290000 -5611.5982 1256.0653 -6867.6635 1395.2492 21671.891 -30359.421 301.20364 -118.2094 1.0185165 0.645 -0.546702 0.273351 + 1295000 -5568.4527 1218.3517 -6786.8043 1384.42 21730.535 -30358.386 292.15993 -5.9864557 1.0110819 0.6475 -0.548821 0.2744105 + 1300000 -5549.8143 1285.6459 -6835.4602 1387.4514 21693.531 -30362.59 308.29704 -161.52516 1.0112493 0.65 -0.55094 0.27547 + 1305000 -5516.7616 1271.5601 -6788.3217 1334.904 21812.758 -30361.82 304.91926 -887.65758 0.99294523 0.6525 -0.553059 0.2765295 + 1310000 -5541.1764 1247.0758 -6788.2523 1358.4634 21773.518 -30361.438 299.04796 -277.80074 1.015369 0.655 -0.555178 0.277589 + 1315000 -5559.5242 1227.118 -6786.6423 1424.8735 21749.242 -30361.297 294.26209 365.81548 1.0090832 0.6575 -0.557297 0.2786485 + 1320000 -5500.4878 1275.2925 -6775.7803 1378.9646 21774.694 -30364.402 305.81431 90.139393 1.0119212 0.66 -0.559416 0.279708 + 1325000 -5621.0444 1209.1452 -6830.1896 1404.2928 21691.047 -30364.044 289.95221 -116.04384 1.0138418 0.6625 -0.561535 0.2807675 + 1330000 -5585.3052 1256.8226 -6842.1277 1303.2839 21785.369 -30364.807 301.38523 -1350.6305 1.0072541 0.665 -0.563654 0.281827 + 1335000 -5595.6814 1228.0426 -6823.724 1326.3132 21774.063 -30364.35 294.48382 -853.10172 1.0189157 0.6675 -0.565773 0.2828865 + 1340000 -5535.3184 1240.3856 -6775.704 1444.9762 21724.661 -30365.799 297.44365 769.15382 1.0062411 0.67 -0.567892 0.283946 + 1345000 -5561.2416 1262.5784 -6823.82 1384.9167 21733.829 -30364.316 302.76547 342.6146 1.0354454 0.6725 -0.570011 0.2850055 + 1350000 -5542.1497 1254.5753 -6796.725 1434.2699 21729.395 -30364.302 300.84634 419.79647 0.99912169 0.675 -0.57213 0.286065 + 1355000 -5595.989 1217.3701 -6813.3591 1387.8286 21699.818 -30361.622 291.92454 -89.640329 1.016903 0.6775 -0.574249 0.2871245 + 1360000 -5489.52 1276.1569 -6765.6769 1369.4965 21808.278 -30360.429 306.02157 161.97718 1.0232691 0.68 -0.576368 0.288184 + 1365000 -5469.7144 1225.7769 -6695.4914 1326.3513 21902.018 -30363.808 293.9405 -693.83304 0.99124467 0.6825 -0.578487 0.2892435 + 1370000 -5521.5216 1239.8048 -6761.3264 1430.0627 21735.529 -30363.095 297.30438 329.41994 0.98996333 0.685 -0.580606 0.290303 + 1375000 -5596.948 1213.5383 -6810.4863 1483.4218 21571.534 -30357.305 291.00568 558.04104 0.99161295 0.6875 -0.582725 0.2913625 + 1380000 -5514.9435 1280.2938 -6795.2372 1340.7447 21792.544 -30361.88 307.0136 -293.2026 1.0241366 0.69 -0.584844 0.292422 + 1385000 -5573.106 1248.5767 -6821.6826 1393.7875 21722.652 -30364.587 299.40787 -241.85628 1.0070126 0.6925 -0.586963 0.2934815 + 1390000 -5583.7305 1220.9377 -6804.6682 1386.3088 21744.845 -30364.846 292.78005 -167.94814 0.99821704 0.695 -0.589082 0.294541 + 1395000 -5469.5824 1236.0582 -6705.6406 1361.2754 21845.151 -30361.887 296.40594 -104.21347 0.99776431 0.6975 -0.591201 0.2956005 + 1400000 -5500.7115 1233.2318 -6733.9433 1333.948 21873.313 -30362.934 295.72817 -125.0822 1.0263809 0.7 -0.59332 0.29666 + 1405000 -5419.1812 1321.0256 -6740.2068 1354.0297 21833.304 -30367.647 316.78106 -233.8297 1.009048 0.7025 -0.595439 0.2977195 + 1410000 -5527.8617 1249.276 -6777.1377 1393.035 21770.812 -30366.621 299.57557 167.07416 1.0156062 0.705 -0.597558 0.298779 + 1415000 -5481.1169 1252.3487 -6733.4656 1344.2947 21829.773 -30368.721 300.31238 -461.85938 1.0036389 0.7075 -0.599677 0.2998385 + 1420000 -5532.8156 1260.4335 -6793.2491 1421.7199 21704.917 -30367.338 302.25113 343.60928 1.0162706 0.71 -0.601796 0.300898 + 1425000 -5547.9732 1268.0648 -6816.038 1421.7341 21700.228 -30367.368 304.08111 271.4221 1.0128974 0.7125 -0.603915 0.3019575 + 1430000 -5536.9027 1243.6801 -6780.5828 1325.1833 21856.026 -30368.533 298.23368 -388.7135 1.0267827 0.715 -0.606034 0.303017 + 1435000 -5570.6543 1244.2756 -6814.9299 1374.1183 21711.381 -30367.694 298.37647 25.769415 1.0319664 0.7175 -0.608153 0.3040765 + 1440000 -5503.2808 1262.2145 -6765.4953 1424.7984 21726.029 -30366.421 302.67821 576.10782 1.0091121 0.72 -0.610272 0.305136 + 1445000 -5462.886 1270.7887 -6733.6747 1318.6859 21898.228 -30366.918 304.7343 -387.50044 1.0149824 0.7225 -0.612391 0.3061955 + 1450000 -5470.7571 1281.4135 -6752.1705 1425.3723 21732.871 -30366.098 307.2821 620.59705 1.0146359 0.725 -0.61451 0.307255 + 1455000 -5527.4601 1291.9524 -6819.4125 1360.2258 21771.527 -30363.755 309.80933 -502.25523 0.99718998 0.7275 -0.616629 0.3083145 + 1460000 -5514.1742 1247.8209 -6761.9951 1358.6541 21820.8 -30366.742 299.22664 -380.01478 1.0041344 0.73 -0.618748 0.309374 + 1465000 -5514.7862 1253.7836 -6768.5698 1365.8682 21811.261 -30362.79 300.65649 -368.26563 1.0008437 0.7325 -0.620867 0.3104335 + 1470000 -5551.171 1264.5229 -6815.694 1397.4282 21740.047 -30368.185 303.23177 288.1239 1.0256045 0.735 -0.622986 0.311493 + 1475000 -5529.159 1251.168 -6780.327 1398.811 21758.549 -30367.782 300.02927 160.29449 1.0114735 0.7375 -0.625105 0.3125525 + 1480000 -5487.0134 1283.588 -6770.6014 1365.85 21759.173 -30366.624 307.80355 -416.12696 1.0020989 0.74 -0.627224 0.313612 + 1485000 -5577.8776 1228.4499 -6806.3275 1450.1943 21661.771 -30368.442 294.58148 789.14519 1.0270287 0.7425 -0.629343 0.3146715 + 1490000 -5579.8432 1242.7181 -6822.5612 1373.2235 21710.845 -30368.691 298.00297 -429.78923 1.0167997 0.745 -0.631462 0.315731 + 1495000 -5604.0722 1240.0278 -6844.1 1398.7081 21667.622 -30366.025 297.35784 -50.192922 1.0151605 0.7475 -0.633581 0.3167905 + 1500000 -5570.8776 1262.8638 -6833.7414 1422.788 21689.484 -30369.581 302.8339 322.73206 1.0163727 0.75 -0.6357 0.31785 + 1505000 -5470.0341 1254.1779 -6724.212 1340.4518 21833.054 -30370 300.75103 -533.26569 1.0015798 0.7525 -0.637819 0.3189095 + 1510000 -5533.0307 1269.7134 -6802.7441 1420.8678 21723.006 -30366.979 304.47642 744.80635 1.031796 0.755 -0.639938 0.319969 + 1515000 -5525.4081 1275.2107 -6800.6188 1359.3204 21747.642 -30370.363 305.7947 -613.78881 1.0095566 0.7575 -0.642057 0.3210285 + 1520000 -5545.6601 1227.8235 -6773.4836 1408.0411 21740.939 -30370.107 294.43126 125.8317 1.0064814 0.76 -0.644176 0.322088 + 1525000 -5594.124 1256.3887 -6850.5127 1394.7089 21672.392 -30369.461 301.28118 -327.86845 1.0067392 0.7625 -0.646295 0.3231475 + 1530000 -5658.6676 1272.6607 -6931.3282 1495.4729 21500.185 -30372.43 305.18319 248.65409 0.98959859 0.765 -0.648414 0.324207 + 1535000 -5577.6076 1216.0351 -6793.6428 1376.0471 21752.612 -30371.553 291.60442 -330.81608 0.9975352 0.7675 -0.650533 0.3252665 + 1540000 -5550.0025 1218.5844 -6768.5869 1384.3771 21773.165 -30370.531 292.21573 42.712468 1.0056433 0.77 -0.652652 0.326326 + 1545000 -5600.0577 1225.9997 -6826.0574 1428.3352 21661.528 -30369.738 293.99391 813.57834 1.0479661 0.7725 -0.654771 0.3273855 + 1550000 -5468.4914 1242.477 -6710.9684 1334.3582 21918.607 -30369.067 297.94517 -396.37556 1.0001104 0.775 -0.65689 0.328445 + 1555000 -5513.1271 1227.7497 -6740.8768 1382.337 21787.791 -30366.523 294.41357 83.122435 1.0076956 0.7775 -0.659009 0.3295045 + 1560000 -5612.1024 1202.1818 -6814.2841 1387.0642 21764.028 -30367.929 288.28239 -258.78553 1.0064708 0.78 -0.661128 0.330564 + 1565000 -5590.9616 1206.59 -6797.5517 1411.8792 21677.549 -30369.916 289.33949 239.57892 1.011968 0.7825 -0.663247 0.3316235 + 1570000 -5510.954 1275.3855 -6786.3395 1375.3033 21763.279 -30370.61 305.8366 -189.55593 1.0102055 0.785 -0.665366 0.332683 + 1575000 -5554.726 1215.8818 -6770.6078 1456.4645 21711.707 -30369.754 291.56766 837.90544 1.0133372 0.7875 -0.667485 0.3337425 + 1580000 -5484.0735 1274.8343 -6758.9078 1407.2972 21780.536 -30370.2 305.70443 -7.4418979 0.98152191 0.79 -0.669604 0.334802 + 1585000 -5591.9223 1219.6327 -6811.555 1360.9446 21785.502 -30369.385 292.46711 -301.66012 1.0180482 0.7925 -0.671723 0.3358615 + 1590000 -5514.2903 1237.4873 -6751.7776 1345.8443 21817.054 -30372.767 296.74864 -500.35329 1.0070005 0.795 -0.673842 0.336921 + 1595000 -5610.6145 1230.3441 -6840.9586 1511.4929 21579.699 -30370.822 295.0357 1400.7717 1.0243843 0.7975 -0.675961 0.3379805 + 1600000 -5491.408 1268.4415 -6759.8495 1321.4258 21860.885 -30367.203 304.17145 -684.17812 1.0109371 0.8 -0.67808 0.33904 + 1605000 -5605.9376 1229.4973 -6835.4349 1358.4846 21752.878 -30376.308 294.83264 -415.45398 1.0211259 0.8025 -0.680199 0.3400995 + 1610000 -5460.3646 1272.2569 -6732.6215 1287.6367 21919.033 -30377.556 305.08636 -1142.3466 1.0015738 0.805 -0.682318 0.341159 + 1615000 -5526.5568 1289.8001 -6816.3569 1429.3397 21650.996 -30374.701 309.29322 -24.570161 0.99788407 0.8075 -0.684437 0.3422185 + 1620000 -5535.2137 1227.5421 -6762.7558 1398.9652 21806.783 -30374.667 294.36379 27.416625 0.99409746 0.81 -0.686556 0.343278 + 1625000 -5561.6432 1218.8583 -6780.5015 1405.1751 21715.111 -30372.575 292.28141 18.274766 1.0106948 0.8125 -0.688675 0.3443375 + 1630000 -5489.0281 1289.6971 -6778.7251 1344.2314 21847.424 -30375.392 309.2685 -428.65338 1.0104018 0.815 -0.690794 0.345397 + 1635000 -5583.1919 1258.7285 -6841.9204 1364.5536 21720.023 -30373.909 301.84226 -558.27346 1.0230546 0.8175 -0.692913 0.3464565 + 1640000 -5569.4234 1276.2864 -6845.7098 1511.2486 21602.351 -30376.345 306.05264 598.06785 0.98381579 0.82 -0.695032 0.347516 + 1645000 -5542.9848 1213.5702 -6756.5551 1373.3517 21798.358 -30369.633 291.01334 -254.12194 1.0019034 0.8225 -0.697151 0.3485755 + 1650000 -5482.0112 1245.3133 -6727.3245 1334.5937 21862.137 -30375.083 298.6253 -577.0133 1.0037952 0.825 -0.69927 0.349635 + 1655000 -5512.6207 1273.3548 -6785.9755 1416.6802 21724.769 -30370.223 305.34964 601.75776 1.0281521 0.8275 -0.701389 0.3506945 + 1660000 -5550.057 1251.0976 -6801.1546 1395.4686 21699.418 -30372.345 300.01237 -129.12786 1.0148586 0.83 -0.703508 0.351754 + 1665000 -5460.2178 1235.1935 -6695.4113 1384.7074 21833.611 -30369.508 296.19859 197.73924 0.9919328 0.8325 -0.705627 0.3528135 + 1670000 -5577.3307 1185.7465 -6763.0772 1310.7085 21842.338 -30371.235 284.34123 -1255.4953 0.98878939 0.835 -0.707746 0.353873 + 1675000 -5561.8847 1224.9469 -6786.8316 1430.0792 21692.395 -30375.915 293.74146 119.11524 0.99573454 0.8375 -0.709865 0.3549325 + 1680000 -5653.7552 1260.9531 -6914.7083 1519.8378 21487.885 -30376.356 302.37573 809.64185 1.015909 0.84 -0.711984 0.355992 + 1685000 -5512.3473 1274.3359 -6786.6832 1417.2785 21701.118 -30376.61 305.58491 445.91621 1.0312005 0.8425 -0.714103 0.3570515 + 1690000 -5508.29 1269.2138 -6777.5038 1366.728 21782.662 -30375.482 304.35663 14.172211 1.0249747 0.845 -0.716222 0.358111 + 1695000 -5591.9917 1161.3619 -6753.3536 1403.8396 21761.545 -30371.687 278.49382 339.64543 1.0133803 0.8475 -0.718341 0.3591705 + 1700000 -5466.9507 1266.1673 -6733.118 1372.2532 21825.493 -30372.223 303.62608 82.443385 1.0170363 0.85 -0.72046 0.36023 + 1705000 -5565.484 1255.6155 -6821.0995 1404.2864 21697.72 -30377.201 301.09577 115.4614 1.0224858 0.8525 -0.722579 0.3612895 + 1710000 -5468.4747 1242.5333 -6711.008 1261.827 21976.931 -30377.884 297.95866 -1282.3719 1.0025311 0.855 -0.724698 0.362349 + 1715000 -5506.6405 1286.9184 -6793.5589 1333.9602 21778.671 -30374.791 308.60219 -870.86182 0.99767742 0.8575 -0.726817 0.3634085 + 1720000 -5565.6601 1243.2447 -6808.9048 1453.7071 21688.169 -30376.668 298.12926 837.91968 1.0193803 0.86 -0.728936 0.364468 + 1725000 -5466.8293 1256.0749 -6722.9042 1322.9564 21895.211 -30378.325 301.20593 -717.52415 0.99658437 0.8625 -0.731055 0.3655275 + 1730000 -5558.3242 1213.4742 -6771.7984 1337.7732 21800.919 -30378.895 290.99031 -210.06727 1.0310242 0.865 -0.733174 0.366587 + 1735000 -5502.8243 1261.8071 -6764.6314 1382.0545 21775.488 -30375.951 302.58051 -0.31427925 1.0034826 0.8675 -0.735293 0.3676465 + 1740000 -5406.8705 1274.6358 -6681.5063 1334.7641 21893.52 -30376.72 305.65682 -231.76275 1.0050648 0.87 -0.737412 0.368706 + 1745000 -5469.6519 1259.7569 -6729.4088 1437.2403 21699.918 -30375.369 302.08887 487.94198 1.0000255 0.8725 -0.739531 0.3697655 + 1750000 -5510.7038 1273.4592 -6784.163 1346.9061 21834.988 -30377.095 305.37468 -381.44532 0.9990362 0.875 -0.74165 0.370825 + 1755000 -5498.5771 1291.9682 -6790.5453 1416.649 21698.465 -30377.922 309.81311 434.97184 1.020573 0.8775 -0.743769 0.3718845 + 1760000 -5518.5384 1277.985 -6796.5234 1361.2079 21765.884 -30377.646 306.45996 -37.746266 1.0246582 0.88 -0.745888 0.372944 + 1765000 -5507.052 1273.8365 -6780.8885 1421.9667 21726.518 -30377.959 305.46515 410.30385 1.0112394 0.8825 -0.748007 0.3740035 + 1770000 -5596.6543 1216.1185 -6812.7727 1416.069 21695.778 -30380.248 291.6244 1.5263758 1.0080966 0.885 -0.750126 0.375063 + 1775000 -5623.4083 1285.876 -6909.2843 1440.2387 21582.885 -30381.001 308.35222 -35.250138 1.0049289 0.8875 -0.752245 0.3761225 + 1780000 -5573.4547 1219.3235 -6792.7782 1442.9632 21676.665 -30377.304 292.39298 471.41075 1.0053462 0.89 -0.754364 0.377182 + 1785000 -5602.6194 1217.9746 -6820.594 1410.7105 21746.864 -30378.721 292.0695 188.14379 1.0190973 0.8925 -0.756483 0.3782415 + 1790000 -5545.0248 1232.4378 -6777.4626 1420.0285 21741.196 -30377.214 295.53778 756.19164 1.0274418 0.895 -0.758602 0.379301 + 1795000 -5518.8988 1253.2508 -6772.1496 1346.248 21846.81 -30376.809 300.52871 -133.93703 1.0242741 0.8975 -0.760721 0.3803605 + 1800000 -5440.5825 1267.2474 -6707.8299 1236.5895 21971.421 -30375.638 303.88509 -1636.0141 0.99063571 0.9 -0.76284 0.38142 + 1805000 -5447.8315 1288.0343 -6735.8658 1315.8015 21891.886 -30383.047 308.86977 -729.116 1.0031825 0.9025 -0.764959 0.3824795 + 1810000 -5612.711 1242.5543 -6855.2653 1383.4906 21692.082 -30384.343 297.96369 -319.45292 1.0215442 0.905 -0.767078 0.383539 + 1815000 -5557.273 1220.1604 -6777.4334 1421.1515 21742.938 -30384.256 292.59367 520.03095 1.0215411 0.9075 -0.769197 0.3845985 + 1820000 -5530.2316 1228.8432 -6759.0748 1332.6717 21862.178 -30382.059 294.67578 -655.51399 1.0042955 0.91 -0.771316 0.385658 + 1825000 -5602.3037 1229.7047 -6832.0084 1468.9012 21615.952 -30382.906 294.88237 421.71792 1.0045724 0.9125 -0.773435 0.3867175 + 1830000 -5547.6226 1200.4018 -6748.0244 1330.1166 21900.521 -30384.116 287.85555 -636.22865 1.0018051 0.915 -0.775554 0.387777 + 1835000 -5653.9568 1210.6899 -6864.6467 1386.2577 21734.456 -30383.944 290.32264 -127.89376 1.023499 0.9175 -0.777673 0.3888365 + 1840000 -5547.0916 1252.5655 -6799.6571 1419.6833 21720.231 -30379.345 300.36437 501.3533 1.0256074 0.92 -0.779792 0.389896 + 1845000 -5515.4901 1289.6285 -6805.1187 1364.8493 21767.014 -30383.713 309.25207 -436.33388 1.0012885 0.9225 -0.781911 0.3909555 + 1850000 -5486.8798 1292.9914 -6779.8712 1380.8937 21790.721 -30383.253 310.05848 22.6166 1.0096908 0.925 -0.78403 0.392015 + 1855000 -5533.7045 1263.0308 -6796.7353 1395.9678 21748.064 -30382.076 302.87396 -284.93741 0.9863725 0.9275 -0.786149 0.3930745 + 1860000 -5484.2708 1261.0621 -6745.3329 1439.0946 21765.649 -30381.058 302.40186 615.26529 0.9985027 0.93 -0.788268 0.394134 + 1865000 -5599.3124 1260.6731 -6859.9855 1381.0638 21741.092 -30385.213 302.30858 -582.58143 1.0024906 0.9325 -0.790387 0.3951935 + 1870000 -5529.7237 1260.0702 -6789.7939 1384.0683 21758.475 -30383.423 302.16399 53.835245 1.0113827 0.935 -0.792506 0.396253 + 1875000 -5455.8429 1269.0311 -6724.8739 1395.2702 21814.233 -30381.4 304.31281 191.35208 0.99331435 0.9375 -0.794625 0.3973125 + 1880000 -5522.3775 1257.2498 -6779.6273 1422.2951 21728.811 -30385.222 301.48766 210.15712 1.0034809 0.94 -0.796744 0.398372 + 1885000 -5581.928 1248.1059 -6830.0339 1353.7983 21777.194 -30384.398 299.29497 -685.33819 1.0064471 0.9425 -0.798863 0.3994315 + 1890000 -5504.863 1257.5766 -6762.4396 1382.3075 21802.301 -30382.745 301.56605 233.93301 1.0136359 0.945 -0.800982 0.400491 + 1895000 -5519.8568 1258.7721 -6778.629 1381.0637 21801.818 -30381.149 301.85273 157.33428 1.0106136 0.9475 -0.803101 0.4015505 + 1900000 -5415.1036 1245.1225 -6660.2261 1321.1611 21968.266 -30378.535 298.57955 -87.316091 1.0149157 0.95 -0.80522 0.40261 + 1905000 -5486.4216 1290.1083 -6776.5299 1344.556 21824.3 -30385.345 309.36712 -170.76911 1.0220988 0.9525 -0.807339 0.4036695 + 1910000 -5612.2769 1206.579 -6818.8559 1361.0857 21798.985 -30389.316 289.33686 -679.6889 1.0021422 0.955 -0.809458 0.404729 + 1915000 -5587.0108 1277.8116 -6864.8224 1390.9876 21720.193 -30387.546 306.41838 -88.421087 1.026429 0.9575 -0.811577 0.4057885 + 1920000 -5536.6115 1211.5465 -6748.1579 1346.0005 21869.713 -30386.249 290.52804 -614.6848 0.99432544 0.96 -0.813696 0.406848 + 1925000 -5475.7378 1270.4733 -6746.2111 1363.7746 21799.571 -30386.112 304.65867 263.14406 1.0338166 0.9625 -0.815815 0.4079075 + 1930000 -5509.1127 1248.2489 -6757.3616 1334.6571 21873.781 -30385.968 299.32926 -529.83539 1.0071671 0.965 -0.817934 0.408967 + 1935000 -5548.4157 1253.3639 -6801.7796 1361.0982 21797.539 -30389.563 300.55583 -390.63414 1.0119705 0.9675 -0.820053 0.4100265 + 1940000 -5585.3752 1257.0833 -6842.4584 1341.862 21777.004 -30390.791 301.44773 -588.69504 1.0234228 0.97 -0.822172 0.411086 + 1945000 -5553.1361 1239.7945 -6792.9307 1392.65 21775.612 -30388.808 297.30191 401.98554 1.0324973 0.9725 -0.824291 0.4121455 + 1950000 -5608.302 1257.6453 -6865.9473 1385.8155 21666.265 -30389.484 301.58252 -258.45732 1.0221941 0.975 -0.82641 0.413205 + 1955000 -5597.8019 1196.2504 -6794.0523 1368.6962 21798.614 -30384.841 286.86006 -187.46622 1.015951 0.9775 -0.828529 0.4142645 + 1960000 -5558.9543 1259.8231 -6818.7774 1402.0765 21687.027 -30386.699 302.10476 -130.60372 1.0087181 0.98 -0.830648 0.415324 + 1965000 -5522.1401 1225.1335 -6747.2736 1385.1221 21794.241 -30386.219 293.78621 59.455921 1.0156338 0.9825 -0.832767 0.4163835 + 1970000 -5460.8469 1294.812 -6755.6589 1403.377 21789.971 -30387.038 310.49507 67.767671 0.99695881 0.985 -0.834886 0.417443 + 1975000 -5562.7016 1276.5904 -6839.292 1381.4683 21781.499 -30385.8 306.12554 -104.19545 1.0255706 0.9875 -0.837005 0.4185025 + 1980000 -5519.6646 1253.4527 -6773.1173 1464.4023 21698.419 -30387.375 300.57712 1035.4507 1.0129337 0.99 -0.839124 0.419562 + 1985000 -5465.34 1288.7347 -6754.0747 1312.8409 21917.192 -30385.618 309.03772 -632.51392 1.0142034 0.9925 -0.841243 0.4206215 + 1990000 -5579.8472 1232.0079 -6811.8551 1325.3706 21848.546 -30387.507 295.43468 -736.79929 1.0087938 0.995 -0.843362 0.421681 + 1995000 -5474.4313 1277.8474 -6752.2787 1377.0964 21856.577 -30388.53 306.42697 -223.13166 0.99592342 0.9975 -0.845481 0.4227405 + 2000000 -5530.4657 1243.1127 -6773.5784 1448.1254 21758.477 -30388.792 298.09761 750.74861 1.0102049 1 -0.8476 0.4238 +Loop time of 13807.9 on 12 procs for 2000000 steps with 1800 atoms + +Performance: 12.515 ns/day, 1.918 hours/ns, 144.845 timesteps/s +95.3% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7308.6 | 8043.1 | 8855.3 | 457.7 | 58.25 +Bond | 24.229 | 25.717 | 27.246 | 21.9 | 0.19 +Kspace | 2227.1 | 3047.3 | 3772.6 | 744.0 | 22.07 +Neigh | 525.14 | 526.08 | 527.05 | 2.6 | 3.81 +Comm | 809.43 | 867.32 | 940.11 | 181.0 | 6.28 +Output | 0.033333 | 0.034507 | 0.043203 | 1.4 | 0.00 +Modify | 880.49 | 1047.6 | 1183.6 | 402.0 | 7.59 +Other | | 250.7 | | | 1.82 + +Nlocal: 150.000 ave 167 max 140 min +Histogram: 2 3 2 0 2 0 0 1 1 1 +Nghost: 6112.58 ave 6193 max 6037 min +Histogram: 3 0 2 0 0 3 1 1 0 2 +Neighs: 87266.4 ave 94192 max 79682 min +Histogram: 2 0 1 0 1 4 2 0 0 2 + +Total # of neighbors = 1047197 +Ave neighs/atom = 581.77611 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 89139 +Dangerous builds = 0 +Total wall time: 3:59:31 diff --git a/examples/USER/fep/SPCEhyd/fep01/in-fep01-lj.lmp b/examples/USER/fep/SPCEhyd/fep01/in-fep01-lj.lmp new file mode 100644 index 0000000000..2f9bdbb7c5 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/in-fep01-lj.lmp @@ -0,0 +1,72 @@ +# created by fftool + +units real +boundary p p p + +atom_style full +bond_style harmonic +angle_style harmonic + +special_bonds lj/coul 0.0 0.0 0.5 + +# remove hybrid if not necessary +pair_style hybrid lj/cut/coul/long 12.0 12.0 lj/cut/soft 2 0.5 12.0 +pair_modify tail no +kspace_style pppm 1.0e-5 + +read_data data.lmp + +pair_coeff 1 1 lj/cut/soft 0.000000 1.000000 0.0 # Hwh Hwh +pair_coeff 1 2 lj/cut/soft 0.000000 1.000000 0.0 # Hwh Owh +pair_coeff 1 3 lj/cut/soft 0.000000 1.000000 0.0 # Hwh Hw +pair_coeff 1 4 lj/cut/soft 0.000000 1.000000 0.0 # Hwh Ow +pair_coeff 2 2 lj/cut/soft 0.155425 3.165500 0.0 # Owh Owh +pair_coeff 2 3 lj/cut/soft 0.000000 1.000000 0.0 # Owh Hw +pair_coeff 2 4 lj/cut/soft 0.155425 3.165500 0.0 # Owh Ow +pair_coeff 3 3 lj/cut/coul/long 0.000000 0.000000 # Hw Hw +pair_coeff 3 4 lj/cut/coul/long 0.000000 0.000000 # Hw Ow +pair_coeff 4 4 lj/cut/coul/long 0.155425 3.165500 # Ow Ow + +# minimize 1.0e-4 1.0e-6 100 1000 +# reset_timestep 0 + +fix SHAKE all shake 0.0001 20 0 b 1 + +neighbor 2.0 bin +# neigh_modify delay 0 every 1 check yes + +timestep 1.0 + +variable TK equal 300.0 +variable PBAR equal 1.0 + +velocity all create ${TK} 12345 + +fix TPSTAT all npt temp ${TK} ${TK} 100 iso ${PBAR} ${PBAR} 1000 + +thermo_style custom step cpu etotal ke pe evdwl ecoul elong temp press vol density +thermo 5000 + +set type 1*2 charge 0.0 + +run 100000 + +reset_timestep 0 + +variable lambda equal ramp(0.0,1.0) + +fix ADAPT all adapt/fep 100000 & + pair lj/cut/soft lambda 1*2 3*4 v_lambda & + after yes + +thermo_style custom step etotal ke pe evdwl ecoul elong temp press density v_lambda + +variable dlambda equal 0.05 + +compute FEP all fep ${TK} & + pair lj/cut/soft lambda 1*2 3*4 v_dlambda & + volume yes + +fix FEP all ave/time 20 4000 100000 c_FEP[*] file fep01-lj.fep + +run 2000000 diff --git a/examples/USER/fep/SPCEhyd/fep01/in-fep01-q.lmp b/examples/USER/fep/SPCEhyd/fep01/in-fep01-q.lmp new file mode 100644 index 0000000000..19efe3a9b1 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep01/in-fep01-q.lmp @@ -0,0 +1,78 @@ +# created by fftool + +units real +boundary p p p + +atom_style full +bond_style harmonic +angle_style harmonic + +special_bonds lj/coul 0.0 0.0 0.5 + +# remove hybrid if not necessary +pair_style lj/cut/coul/long 12.0 12.0 +pair_modify tail no +kspace_style pppm 1.0e-5 + +read_data data.lmp + +pair_coeff 1 1 0.000000 1.000000 # Hwh Hwh +pair_coeff 1 2 0.000000 1.000000 # Hwh Owh +pair_coeff 1 3 0.000000 1.000000 # Hwh Hw +pair_coeff 1 4 0.000000 1.000000 # Hwh Ow +pair_coeff 2 2 0.155425 3.165500 # Owh Owh +pair_coeff 2 3 0.000000 1.000000 # Owh Hw +pair_coeff 2 4 0.155425 3.165500 # Owh Ow +pair_coeff 3 3 0.000000 1.000000 # Hw Hw +pair_coeff 3 4 0.000000 1.000000 # Hw Ow +pair_coeff 4 4 0.155425 3.165500 # Ow Ow + +# minimize 1.0e-4 1.0e-6 100 1000 +# reset_timestep 0 + +fix SHAKE all shake 0.0001 20 0 b 1 + +neighbor 2.0 bin +# neigh_modify delay 0 every 1 check yes + +timestep 1.0 + +variable TK equal 300.0 +variable PBAR equal 1.0 + +velocity all create ${TK} 12345 + +fix TPSTAT all npt temp ${TK} ${TK} 100 iso ${PBAR} ${PBAR} 1000 + +thermo_style custom step cpu etotal ke pe evdwl ecoul elong temp press vol density +thermo 5000 + +set type 1*2 charge 0.0 + +run 100000 + +reset_timestep 0 + +variable lambda equal ramp(0.0,1.0) +variable qH equal 0.4238*v_lambda +variable qO equal -0.8476*v_lambda + +fix ADAPT all adapt/fep 100000 & + atom charge 1 v_qH & + atom charge 2 v_qO & + after yes + +thermo_style custom step etotal ke pe evdwl ecoul elong temp press density v_lambda v_qO v_qH + +variable dlambda equal 0.05 +variable dqH equal 0.4238*v_dlambda +variable dqO equal -0.8476*v_dlambda + +compute FEP all fep ${TK} & + atom charge 1 v_dqH & + atom charge 2 v_dqO & + volume yes + +fix FEP all ave/time 20 4000 100000 c_FEP[*] file fep01-q.fep + +run 2000000 diff --git a/examples/USER/fep/SPCEhyd/fep10/fep10-lj.fep b/examples/USER/fep/SPCEhyd/fep10/fep10-lj.fep new file mode 100644 index 0000000000..e08c143542 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/fep10-lj.fep @@ -0,0 +1,22 @@ +# Time-averaged data for fix FEP +# TimeStep c_FEP[1] c_FEP[2] c_FEP[3] +100000 0.164332 13580.8 17770.4 +200000 0.129134 14470.4 17769.5 +300000 0.113694 14856.5 17741.9 +400000 0.0945078 15445.3 17780.8 +500000 0.0562545 16508.6 17735.1 +600000 0.0490523 16733.2 17757.8 +700000 -0.0236465 19372.6 17801.7 +800000 -0.0387399 19901 17785.3 +900000 -0.0718098 21703.2 17802.6 +1000000 -0.118193 24005.7 17774.1 +1100000 -0.170254 26527.3 17789.9 +1200000 -0.297445 41864.5 17773.6 +1300000 -0.431516 50576.8 17744 +1400000 -0.467669 44025.5 17719.1 +1500000 -0.317884 31440.4 17731.3 +1600000 -0.218939 25792.6 17718.6 +1700000 -0.107798 21322.2 17753.1 +1800000 -0.0458874 19135.5 17706.5 +1900000 -0.015392 18211.1 17744.9 +2000000 -0.00224303 17811.3 17744.3 diff --git a/examples/USER/fep/SPCEhyd/fep10/fep10-lj.out b/examples/USER/fep/SPCEhyd/fep10/fep10-lj.out new file mode 100644 index 0000000000..bc93b1637e --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/fep10-lj.out @@ -0,0 +1,592 @@ +LAMMPS (29 Oct 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/lammps/src/comm.cpp:94) + using 1 OpenMP thread(s) per MPI task +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (29.204526 29.204526 29.204526) + 2 by 2 by 3 MPI processor grid + reading atoms ... + 1800 atoms + scanning bonds ... + 1 = max bonds/atom + scanning angles ... + 1 = max angles/atom + reading bonds ... + 1200 bonds + reading angles ... + 600 angles +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0.5 + special bond factors coul: 0 0 0.5 + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + special bonds CPU = 0.001 seconds + read_data CPU = 0.033 seconds +Finding SHAKE clusters ... + 0 = # of size 2 clusters + 600 = # of size 3 clusters + 0 = # of size 4 clusters + 0 = # of frozen angles + find clusters CPU = 0.001 seconds +Setting atom values ... + 3 settings made for charge +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25066829 + grid = 20 20 20 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0030719151 + estimated relative force accuracy = 9.250981e-06 + using double precision FFTW3 + 3d grid and FFT values/proc = 3757 800 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 5 5 5 + 3 neighbor lists, perpetual/occasional/extra = 3 0 0 + (1) pair lj/cut/coul/long, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (2) pair lj/cut/soft, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (3) neighbor class addition, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 9.477 | 9.489 | 9.507 Mbytes +Step CPU TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Volume Density + 0 0 1344.0739 1251.046 93.027896 53.823145 30049.554 -30010.349 300 10284.878 24908.667 0.72058313 + 5000 26.829054 -5531.3966 1246.7673 -6778.164 1430.5662 21645.326 -30297.767 298.97398 343.00879 17939.671 1.0005069 + 10000 60.375331 -5491.2737 1280.0525 -6771.3262 1384.6297 21688.032 -30298.393 306.95574 -300.16806 18083.581 0.99254483 + 15000 94.076576 -5632.0108 1185.0761 -6817.0868 1373.1572 21657.834 -30299.165 284.18046 -509.30462 17853.507 1.0053356 + 20000 126.53271 -5557.9837 1273.3985 -6831.3822 1276.3348 21807.204 -30296.619 305.36012 -1423.8804 17810.87 1.0077422 + 25000 159.26926 -5561.3614 1271.5975 -6832.9588 1454.6816 21523.277 -30299.954 304.92823 245.53675 17839.133 1.0061456 + 30000 191.17362 -5569.1628 1224.4664 -6793.6292 1459.7735 21613.44 -30298.475 293.62623 1166.8411 17466.628 1.0276033 + 35000 225.54672 -5505.5765 1289.9333 -6795.5098 1374.8138 21675.444 -30297.568 309.32515 -277.00241 17845.641 1.0057787 + 40000 259.24748 -5529.8329 1222.5071 -6752.34 1368.482 21714.343 -30299.714 293.15639 -48.777351 17595.097 1.0201004 + 45000 292.69855 -5541.3772 1261.5499 -6802.9272 1371.5857 21681.912 -30295.814 302.51884 -335.65528 17817.714 1.0073551 + 50000 326.91392 -5573.7012 1222.2121 -6795.9133 1327.6979 21746.391 -30299.712 293.08565 -955.31142 17840.793 1.006052 + 55000 361.16613 -5449.164 1267.4384 -6716.6024 1412.1093 21720 -30299.63 303.9309 428.04385 18036.511 0.99513513 + 60000 393.91884 -5546.8912 1190.623 -6737.5143 1330.3252 21806.541 -30300.582 285.51061 -430.37809 17636.451 1.0177085 + 65000 428.22428 -5622.5584 1259.3301 -6881.8885 1509.1614 21478.163 -30299.496 301.98652 975.06072 17605.779 1.0194815 + 70000 462.45487 -5570.183 1218.0018 -6788.1847 1354.4694 21727.024 -30300.976 292.07602 -258.76822 17759.422 1.0106616 + 75000 496.90314 -5627.876 1230.7285 -6858.6045 1476.5693 21530.846 -30297.953 295.12788 553.50896 17749.215 1.0112428 + 80000 531.33879 -5494.2101 1259.607 -6753.8171 1380.283 21711.161 -30298.881 302.05292 211.62464 17627.074 1.0182499 + 85000 564.97941 -5519.5052 1245.7068 -6765.212 1413.8079 21662.496 -30297.084 298.71966 464.57065 17574.97 1.0212686 + 90000 597.70815 -5541.7394 1221.3799 -6763.1193 1438.245 21673.718 -30296.608 292.8861 594.92053 17785.328 1.0091894 + 95000 630.00979 -5506.2477 1292.8624 -6799.1101 1435.7457 21640.887 -30297.759 310.02754 746.74628 17535.628 1.0235599 + 100000 664.4401 -5517.294 1249.4101 -6766.7041 1435.9513 21681.832 -30299.249 299.60772 863.4493 17594.707 1.020123 +Loop time of 664.44 on 12 procs for 100000 steps with 1800 atoms + +Performance: 13.003 ns/day, 1.846 hours/ns, 150.503 timesteps/s +95.1% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 354.67 | 370.51 | 389.45 | 60.8 | 55.76 +Bond | 1.2832 | 1.3258 | 1.3684 | 2.3 | 0.20 +Kspace | 122.53 | 141.54 | 156.98 | 99.1 | 21.30 +Neigh | 28.973 | 29.038 | 29.092 | 0.6 | 4.37 +Comm | 42.452 | 45.845 | 51.532 | 54.0 | 6.90 +Output | 0.0013313 | 0.0013703 | 0.0017405 | 0.3 | 0.00 +Modify | 48.441 | 63.192 | 71.445 | 115.5 | 9.51 +Other | | 12.99 | | | 1.95 + +Nlocal: 150.000 ave 163 max 141 min +Histogram: 2 3 2 0 1 0 1 0 2 1 +Nghost: 6146.42 ave 6218 max 6094 min +Histogram: 3 3 0 0 0 0 4 0 1 1 +Neighs: 87791.7 ave 98973 max 80440 min +Histogram: 2 0 3 3 0 2 0 1 0 1 + +Total # of neighbors = 1053500 +Ave neighs/atom = 585.27778 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 4499 +Dangerous builds = 9 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.2513327 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0034853969 + estimated relative force accuracy = 1.0496169e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 3328 648 +FEP settings ... + temperature = 300.000000 + tail no + lj/cut/soft lambda 1-2 3-4 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 4 4 4 + 3 neighbor lists, perpetual/occasional/extra = 3 0 0 + (1) pair lj/cut/coul/long, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (2) pair lj/cut/soft, perpetual, skip from (3) + attributes: half, newton on + pair build: skip + stencil: none + bin: none + (3) neighbor class addition, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 9.472 | 9.556 | 10.27 Mbytes +Step TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Density v_lambda + 0 -5517.3031 1249.4101 -6766.7132 1435.9513 21762.036 -30379.462 299.60772 824.0149 1.020123 1 + 5000 -5558.3835 1278.7173 -6837.1007 1334.2641 21745.448 -30378.941 306.63556 -767.88312 1.0259151 0.9975 + 10000 -5536.0094 1281.998 -6818.0074 1400.7848 21722.638 -30382.662 307.42228 286.89597 1.0190965 0.995 + 15000 -5481.3474 1257.9731 -6739.3206 1399.5036 21761.099 -30377.92 301.66113 181.6173 1.0045157 0.9925 + 20000 -5576.3444 1286.5841 -6862.9285 1415.5303 21648.92 -30380.138 308.52201 -153.48635 1.0085717 0.99 + 25000 -5514.2625 1300.4887 -6814.7513 1407.9812 21728.21 -30379.084 311.85634 425.39113 1.018525 0.9875 + 30000 -5547.7134 1261.8317 -6809.5451 1380.2714 21733.843 -30375.593 302.58642 -17.777892 1.0150161 0.985 + 35000 -5477.5978 1281.4333 -6759.0311 1368.0059 21793.139 -30378.187 307.28686 -71.109919 1.0111779 0.9825 + 40000 -5508.6633 1240.2261 -6748.8893 1315.5039 21866.643 -30379.36 297.40539 -903.80351 1.0010855 0.98 + 45000 -5549.0382 1255.1907 -6804.2289 1427.4722 21710.804 -30378.942 300.9939 585.69847 1.0195923 0.9775 + 50000 -5475.0264 1312.3734 -6787.3998 1297.1559 21838.086 -30379.004 314.70627 -1273.035 1.0008054 0.975 + 55000 -5491.7123 1248.8257 -6740.538 1363.4371 21862.536 -30380.311 299.46758 99.128465 1.0180508 0.9725 + 60000 -5609.488 1190.986 -6800.474 1436.0545 21719.642 -30378.046 285.59765 701.33839 1.0113551 0.97 + 65000 -5518.7824 1259.5561 -6778.3385 1358.5984 21791.343 -30380.334 302.04072 -321.61092 1.023541 0.9675 + 70000 -5494.8931 1242.4517 -6737.3448 1305.9749 21912.178 -30379.338 297.9391 -630.02692 1.0139124 0.965 + 75000 -5546.698 1230.9889 -6777.6869 1335.3375 21837.661 -30375.416 295.19033 -852.37291 0.9905341 0.9625 + 80000 -5539.855 1242.8348 -6782.6898 1419.4903 21739.313 -30377.932 298.03096 412.87427 1.01156 0.96 + 85000 -5539.3458 1252.4243 -6791.7701 1324.7893 21793.186 -30381.357 300.33052 -863.18781 1.008687 0.9575 + 90000 -5481.581 1307.2598 -6788.8408 1346.6475 21844.712 -30381.327 313.48005 -408.54122 1.0084955 0.955 + 95000 -5529.9471 1250.3938 -6780.3409 1375.6186 21766.839 -30380.379 299.84361 -208.47283 1.0041284 0.9525 + 100000 -5611.8507 1205.3447 -6817.1954 1432.4671 21667.619 -30379.262 289.04087 575.38545 1.0196531 0.95 + 105000 -5516.1732 1249.0519 -6765.2251 1510.0799 21652.904 -30376.319 299.52182 1595.0527 1.0142387 0.9475 + 110000 -5465.4173 1258.6931 -6724.1103 1349.0925 21850.539 -30376.601 301.83377 -603.2308 0.98281583 0.945 + 115000 -5551.5788 1260.591 -6812.1698 1512.1661 21629.589 -30379.324 302.28889 1408.8013 1.0119216 0.9425 + 120000 -5507.219 1271.1602 -6778.3792 1287.9978 21860.629 -30381.307 304.82338 -1063.0529 1.0271704 0.94 + 125000 -5537.13 1258.8105 -6795.9405 1382.8613 21762.733 -30377.383 301.86193 -158.02523 1.0108426 0.9375 + 130000 -5549.0946 1266.6866 -6815.7812 1372.5433 21748.74 -30377.189 303.75061 -643.27667 0.99432531 0.935 + 135000 -5573.4448 1286.5394 -6859.9842 1446.9417 21606.202 -30379.095 308.51131 579.59371 1.0183103 0.9325 + 140000 -5486.2607 1218.2948 -6704.5555 1391.8317 21866.056 -30379.705 292.14629 239.66325 1.0017938 0.93 + 145000 -5528.1392 1237.3437 -6765.4829 1343.2831 21851.228 -30378.61 296.71421 -443.27605 1.0094072 0.9275 + 150000 -5524.9227 1258.9283 -6783.851 1371.8204 21782.513 -30377.396 301.89018 -100.72793 1.0162581 0.925 + 155000 -5559.5874 1249.0683 -6808.6557 1298.8221 21822.678 -30380.108 299.52576 -1283.9404 1.0098295 0.9225 + 160000 -5574.1599 1259.0423 -6833.2022 1386.5012 21768.271 -30378.898 301.91751 -274.81981 1.0036715 0.92 + 165000 -5558.2274 1268.7313 -6826.9587 1366.6284 21720.826 -30379.54 304.24093 -723.57468 1.0031713 0.9175 + 170000 -5558.0458 1243.1304 -6801.1762 1359.415 21794.026 -30377.538 298.10185 -284.08503 1.0125849 0.915 + 175000 -5557.9939 1250.5207 -6808.5146 1344.1211 21819.765 -30375.934 299.87403 -742.04372 1.008519 0.9125 + 180000 -5562.2438 1245.4126 -6807.6564 1442.5917 21688.098 -30381.444 298.64912 834.40431 1.0283372 0.91 + 185000 -5494.5329 1238.0904 -6732.6233 1374.4489 21815.526 -30379.394 296.89325 -127.96552 1.0129962 0.9075 + 190000 -5512.3632 1282.3603 -6794.7235 1331.0347 21826.906 -30381.177 307.50916 -975.48387 0.99030439 0.905 + 195000 -5555.5139 1268.6099 -6824.1238 1579.0357 21509.544 -30380.501 304.21181 2298.8088 1.0238224 0.9025 + 200000 -5561.6068 1235.0747 -6796.6815 1341.7814 21791.238 -30377.819 296.1701 -569.19717 1.0181737 0.9 + 205000 -5408.9255 1277.421 -6686.3465 1384.0288 21847.016 -30376.919 306.3247 306.84932 1.0058379 0.8975 + 210000 -5574.4209 1249.0534 -6823.4743 1390.0917 21708.289 -30375.252 299.52217 -137.92578 1.020659 0.895 + 215000 -5533.5343 1256.0469 -6789.5812 1397.7965 21759.307 -30379.639 301.19922 -167.33553 0.99448086 0.8925 + 220000 -5525.1497 1272.4337 -6797.5834 1349.1947 21798.064 -30375.86 305.12875 -636.29714 1.0040906 0.89 + 225000 -5504.1279 1280.7318 -6784.8598 1373.0777 21811.329 -30381.594 307.11864 -109.03674 1.0126578 0.8875 + 230000 -5556.0721 1227.0604 -6783.1325 1460.4513 21700.918 -30378.062 294.24828 1031.1913 1.0144785 0.885 + 235000 -5579.4548 1223.0151 -6802.47 1383.0244 21742.747 -30378.065 293.27823 -444.73244 0.99883895 0.8825 + 240000 -5478.8969 1256.3704 -6735.2673 1379.5164 21844.649 -30379.291 301.2768 134.8168 1.0086341 0.88 + 245000 -5473.7115 1247.7991 -6721.5106 1377.2785 21845.407 -30379.554 299.22139 152.12047 1.0028516 0.8775 + 250000 -5511.3331 1252.6671 -6764.0002 1391.242 21767.929 -30377.767 300.38874 42.815705 1.0071501 0.875 + 255000 -5527.2234 1305.1549 -6832.3783 1450.6004 21675.372 -30380.236 312.97529 568.31787 1.0194011 0.8725 + 260000 -5599.9408 1267.0163 -6866.9571 1414.5319 21681.001 -30380.447 303.82967 -296.86382 0.99844118 0.87 + 265000 -5609.1575 1202.8066 -6811.9641 1422.9683 21708.562 -30377.312 288.43224 396.28769 1.0282155 0.8675 + 270000 -5514.4973 1238.2917 -6752.789 1478.2795 21711.681 -30377.388 296.94154 987.01375 0.99825963 0.865 + 275000 -5511.4623 1255.7444 -6767.2068 1360.2011 21806.795 -30378.728 301.12669 -323.15359 1.0062462 0.8625 + 280000 -5552.1793 1259.5205 -6811.6998 1349.3495 21816.208 -30382.584 302.03219 -349.89702 1.0176732 0.86 + 285000 -5533.2625 1244.4885 -6777.751 1329.1246 21846.62 -30381.164 298.42752 -459.22534 1.0226658 0.8575 + 290000 -5567.8243 1241.1772 -6809.0015 1399.9451 21749.571 -30379.349 297.63346 22.543027 1.0110614 0.855 + 295000 -5557.5037 1238.0302 -6795.5339 1338.4732 21820.049 -30378.884 296.87882 -618.59847 1.0068859 0.8525 + 300000 -5489.886 1256.7172 -6746.6033 1363.8733 21840.359 -30378.014 301.35996 -70.896612 1.0126564 0.85 + 305000 -5572.9241 1240.321 -6813.245 1460.9673 21642.12 -30380.518 297.42815 481.8838 1.0057691 0.8475 + 310000 -5488.162 1258.2317 -6746.3936 1445.6895 21758.579 -30378.851 301.72313 872.39978 1.0085289 0.845 + 315000 -5522.8931 1237.6936 -6760.5868 1394.4464 21761.506 -30375.489 296.79811 209.47881 1.0172465 0.8425 + 320000 -5536.6098 1282.2086 -6818.8184 1354.2609 21746.18 -30376.821 307.47278 -800.05482 1.001315 0.84 + 325000 -5531.7735 1280.9795 -6812.753 1415.0442 21718.513 -30376.752 307.17804 140.19074 1.0033268 0.8375 + 330000 -5610.5654 1255.9186 -6866.4839 1439.716 21627.111 -30376.917 301.16845 217.00726 1.0106958 0.835 + 335000 -5544.1968 1262.8047 -6807.0015 1411.1851 21727.544 -30379.348 302.81973 -110.66815 0.99018265 0.8325 + 340000 -5475.3641 1226.3203 -6701.6844 1319.0089 21921.241 -30376.884 294.07079 -282.11126 1.0213371 0.83 + 345000 -5553.4383 1194.8379 -6748.2762 1355.9404 21856.676 -30381.74 286.52133 -362.738 1.0061755 0.8275 + 350000 -5584.6493 1235.7595 -6820.4088 1352.8128 21761.048 -30380.806 296.33432 -874.17129 0.9931264 0.825 + 355000 -5621.2604 1217.1919 -6838.4523 1372.941 21733.863 -30375.651 291.88181 -584.44984 0.99879817 0.8225 + 360000 -5615.0717 1231.0617 -6846.1334 1429.3525 21680.466 -30380.519 295.20778 330.32191 1.0138088 0.82 + 365000 -5589.4166 1229.8012 -6819.2178 1445.1399 21656.389 -30379.255 294.90552 421.5138 1.0090829 0.8175 + 370000 -5651.5079 1193.437 -6844.9449 1435.9396 21645.199 -30380.798 286.18541 256.92768 1.0192016 0.815 + 375000 -5552.4603 1258.4199 -6810.8802 1378.5865 21748.986 -30378.675 301.76827 -383.52078 0.99353397 0.8125 + 380000 -5504.5385 1251.8059 -6756.3444 1356.5769 21819.021 -30380.364 300.18223 -269.24879 1.0038731 0.81 + 385000 -5555.4347 1224.5956 -6780.0303 1375.7528 21743.978 -30382.275 293.65722 150.61285 1.033997 0.8075 + 390000 -5476.7978 1301.5154 -6778.3132 1470.6852 21684.408 -30378.178 312.10253 1146.8841 1.0219575 0.805 + 395000 -5396.8713 1298.4198 -6695.2912 1317.1078 21924.316 -30374.204 311.36022 -823.77541 0.98553613 0.8025 + 400000 -5629.6891 1238.2653 -6867.9544 1428.4096 21673.519 -30377.557 296.9352 206.26016 1.0115683 0.8 + 405000 -5428.7589 1278.424 -6707.1828 1331.4932 21893.287 -30377.714 306.56523 -353.63082 1.0124706 0.7975 + 410000 -5507.5696 1237.8639 -6745.4335 1298.4114 21901.188 -30379.626 296.83895 -973.92318 1.0037112 0.795 + 415000 -5484.2415 1270.2855 -6754.527 1441.5793 21749.552 -30375.284 304.61361 840.14191 1.0121738 0.7925 + 420000 -5495.6378 1258.7861 -6754.4239 1353.3243 21849.806 -30381.941 301.85607 59.331351 1.0246191 0.79 + 425000 -5552.4141 1228.8708 -6781.2849 1317.4814 21842.189 -30380.175 294.68241 -836.50476 1.0135725 0.7875 + 430000 -5477.5725 1254.5002 -6732.0727 1367.7274 21841.064 -30380.543 300.82831 88.637178 1.011139 0.785 + 435000 -5476.7143 1264.4344 -6741.1487 1375.6575 21790.072 -30378.636 303.21053 2.6220187 1.0159663 0.7825 + 440000 -5565.7547 1202.2639 -6768.0186 1376.2632 21836.685 -30377.795 288.30208 -159.4843 1.0101374 0.78 + 445000 -5482.073 1263.9755 -6746.0485 1298.6972 21912.114 -30380.1 303.10049 -837.55689 1.009925 0.7775 + 450000 -5471.1641 1270.7405 -6741.9046 1327.0686 21843.353 -30380.6 304.72273 -812.71837 1.0073281 0.775 + 455000 -5575.8919 1237.6557 -6813.5477 1403.2693 21726.183 -30378.18 296.78902 -58.778086 1.0052848 0.7725 + 460000 -5483.7083 1255.8916 -6739.5999 1386.2234 21823.459 -30378.531 301.16198 150.3882 1.0047493 0.77 + 465000 -5605.7393 1229.0621 -6834.8014 1326.0846 21768.021 -30377.81 294.72828 -577.61705 1.038623 0.7675 + 470000 -5550.9894 1229.8014 -6780.7909 1437.1655 21776.095 -30380.267 294.90557 774.11419 1.0140737 0.765 + 475000 -5523.3444 1300.4873 -6823.8318 1327.0338 21792.331 -30381.352 311.856 -970.02145 1.0142989 0.7625 + 480000 -5531.1145 1240.4904 -6771.6049 1371.1764 21817.322 -30375.833 297.46877 232.38091 1.0354183 0.76 + 485000 -5586.0909 1228.566 -6814.6569 1331.4521 21783.37 -30375.359 294.60932 -830.78206 1.0182576 0.7575 + 490000 -5529.1137 1267.8457 -6796.9594 1413.3701 21752.62 -30377.127 304.02856 442.05038 1.0159886 0.755 + 495000 -5555.6588 1216.5915 -6772.2503 1419.8591 21749.535 -30380.057 291.73784 304.69606 1.0095655 0.7525 + 500000 -5621.0389 1231.8288 -6852.8678 1474.6487 21612.415 -30378.168 295.39174 323.36029 1.0077507 0.75 + 505000 -5546.0577 1251.7571 -6797.8148 1367.67 21795.98 -30376.544 300.17053 -455.53831 1.0072369 0.7475 + 510000 -5582.9058 1221.373 -6804.2787 1350.5321 21782.21 -30381.612 292.88444 -772.87812 1.0034727 0.745 + 515000 -5541.3247 1255.4485 -6796.7732 1414.1242 21706.658 -30381.741 301.05573 2.928327 0.99672686 0.7425 + 520000 -5508.7799 1259.6743 -6768.4541 1380.3991 21741.143 -30380.532 302.06906 -203.6546 1.0136344 0.74 + 525000 -5539.6518 1197.3021 -6736.9538 1404.1918 21779.603 -30380.69 287.11225 145.06485 1.003219 0.7375 + 530000 -5624.3435 1217.1528 -6841.4963 1452.7693 21662.529 -30380.236 291.87243 638.82307 1.0215612 0.735 + 535000 -5529.8222 1254.4932 -6784.3155 1406.2098 21740.849 -30378.658 300.82665 94.641198 1.0065968 0.7325 + 540000 -5568.7637 1261.6812 -6830.4449 1387.5129 21733.157 -30379.551 302.55032 -405.87495 1.0104021 0.73 + 545000 -5524.6427 1291.6553 -6816.298 1444.7739 21695.48 -30380.734 309.73809 823.06856 1.0215824 0.7275 + 550000 -5545.8811 1294.844 -6840.725 1393.6405 21689.154 -30381.254 310.50273 -155.25174 1.0231418 0.725 + 555000 -5524.836 1234.4479 -6759.2838 1356.4213 21802.616 -30369.49 296.01978 -368.99982 1.0143158 0.7225 + 560000 -5604.2588 1246.9449 -6851.2037 1434.9571 21646.273 -30381.555 299.01658 256.97524 1.0137294 0.72 + 565000 -5568.3972 1224.1467 -6792.5439 1448.4206 21684.449 -30378.954 293.54958 556.78887 1.0032844 0.7175 + 570000 -5594.4587 1230.6686 -6825.1274 1435.707 21681.561 -30379.685 295.11353 473.82707 1.0198226 0.715 + 575000 -5488.4667 1277.4643 -6765.931 1404.5892 21784.485 -30376.117 306.3351 362.86154 1.0003658 0.7125 + 580000 -5547.1998 1264.7062 -6811.906 1393.9582 21720.572 -30378.614 303.27571 -137.91377 1.0172504 0.71 + 585000 -5606.6441 1252.6018 -6859.2459 1419.0008 21663.205 -30378.365 300.37309 66.460552 1.021903 0.7075 + 590000 -5512.7176 1269.3615 -6782.0791 1408.1893 21757.063 -30379.393 304.39205 644.37249 1.0364827 0.705 + 595000 -5608.6134 1228.9868 -6837.6002 1433.5598 21649.995 -30378.63 294.71023 32.723185 1.0054794 0.7025 + 600000 -5552.3005 1223.3003 -6775.6008 1369.5223 21840.904 -30379.11 293.34662 -395.91281 0.99377694 0.7 + 605000 -5536.8925 1270.6202 -6807.5127 1323.5731 21800.775 -30378.632 304.69388 -977.46567 1.0071163 0.6975 + 610000 -5464.7705 1275.0987 -6739.8692 1367.5489 21824.895 -30377.252 305.76782 -387.65672 0.99109537 0.695 + 615000 -5609.4125 1262.2387 -6871.6513 1408.4333 21658.685 -30377.411 302.68401 22.836181 1.0270818 0.6925 + 620000 -5531.8104 1274.3728 -6806.1831 1377.4975 21766.69 -30379.63 305.59376 -285.65697 1.0117261 0.69 + 625000 -5474.4189 1278.1649 -6752.5838 1333.798 21868.283 -30379.65 306.5031 -521.91598 1.0102571 0.6875 + 630000 -5538.9642 1225.28 -6764.2442 1389.7032 21773.906 -30378.718 293.82133 254.50002 1.0208426 0.685 + 635000 -5508.4261 1280.6282 -6789.0543 1401.0525 21750.972 -30379.98 307.09381 234.86257 1.0110397 0.6825 + 640000 -5540.8089 1244.3064 -6785.1153 1417.4663 21726.439 -30376.915 298.38384 150.36017 1.0001641 0.68 + 645000 -5515.8042 1236.468 -6752.2723 1402.2548 21790.109 -30379.114 296.50422 531.96132 1.020622 0.6775 + 650000 -5462.1993 1257.9462 -6720.1454 1268.863 21936.688 -30379.734 301.65466 -1017.4425 1.0216886 0.675 + 655000 -5486.7934 1301.7279 -6788.5213 1355.2019 21810.937 -30378.882 312.1535 -617.30085 0.99817188 0.6725 + 660000 -5534.9148 1263.11 -6798.0248 1378.272 21775.106 -30376.702 302.89295 -223.77151 1.0075378 0.67 + 665000 -5581.7219 1234.0612 -6815.7831 1428.1581 21716.123 -30378.571 295.92706 44.290152 0.99842109 0.6675 + 670000 -5488.6526 1269.5454 -6758.198 1367.3963 21828.425 -30380.546 304.43615 -348.95619 1.0000298 0.665 + 675000 -5465.914 1263.3905 -6729.3045 1336.7565 21880.293 -30376.633 302.96021 -485.33842 1.003274 0.6625 + 680000 -5472.168 1264.3649 -6736.533 1448.9293 21749.791 -30379.242 303.19388 831.6918 1.0029436 0.66 + 685000 -5520.395 1250.1857 -6770.5807 1401.6986 21805.009 -30376.553 299.79371 -41.384636 0.99397705 0.6575 + 690000 -5480.0792 1289.9138 -6769.993 1420.5975 21783.734 -30378.473 309.32048 460.10945 1.0106925 0.655 + 695000 -5589.3538 1224.5521 -6813.9059 1451.0824 21702.734 -30376.351 293.64678 738.57116 1.0153307 0.6525 + 700000 -5472.8453 1308.7177 -6781.563 1423.187 21741.303 -30378.197 313.82963 612.6714 1.0166905 0.65 + 705000 -5569.7342 1255.2584 -6824.9926 1389.4201 21710.248 -30380.297 301.01013 -172.7884 1.0148878 0.6475 + 710000 -5596.1426 1238.2633 -6834.4059 1357.9019 21745.397 -30380.137 296.93471 -538.38313 1.0209937 0.645 + 715000 -5507.4206 1239.2393 -6746.6599 1403.4807 21781.313 -30378.667 297.16877 248.26197 1.0116725 0.6425 + 720000 -5497.1275 1287.2767 -6784.4042 1414.7207 21756.731 -30379.238 308.68811 341.59938 1.0131454 0.64 + 725000 -5496.5836 1286.0241 -6782.6077 1399.7439 21764.503 -30379.835 308.38773 -62.342241 0.99678722 0.6375 + 730000 -5536.977 1243.2012 -6780.1782 1317.0319 21827.887 -30379.541 298.11883 -1280.4499 0.99058396 0.635 + 735000 -5549.9255 1278.5327 -6828.4582 1466.7074 21634.42 -30377.429 306.5913 700.98665 1.0145657 0.6325 + 740000 -5496.3831 1282.2407 -6778.6238 1324.4366 21812.16 -30377.5 307.48047 -793.87783 1.0141821 0.63 + 745000 -5500.4874 1275.7087 -6776.1962 1310.7145 21869.953 -30378.837 305.91411 -886.8993 1.0111339 0.6275 + 750000 -5500.9475 1276.7305 -6777.678 1395.7077 21776.63 -30380.09 306.15913 192.19564 1.0108423 0.625 + 755000 -5551.394 1240.5899 -6791.9839 1454.451 21659.096 -30378.918 297.49265 498.47384 1.0007052 0.6225 + 760000 -5528.5295 1245.9619 -6774.4915 1447.3278 21723.641 -30377.888 298.78085 515.39703 1.005014 0.62 + 765000 -5475.7763 1268.2993 -6744.0756 1335.9202 21904.289 -30375.821 304.13733 -285.98001 1.0140331 0.6175 + 770000 -5571.7813 1239.3782 -6811.1595 1445.9375 21665.43 -30380.469 297.20208 428.18308 1.0025023 0.615 + 775000 -5501.6766 1254.1992 -6755.8758 1320.6755 21872.392 -30377.78 300.75613 -619.04607 1.0168732 0.6125 + 780000 -5546.2901 1244.0883 -6790.3785 1387.3647 21762.273 -30378.875 298.33156 -132.28122 1.0042433 0.61 + 785000 -5472.3472 1281.5277 -6753.8748 1347.5012 21865.731 -30381.351 307.30949 -155.27002 1.0077831 0.6075 + 790000 -5537.4018 1231.8299 -6769.2317 1348.3549 21856.185 -30381.91 295.392 -210.503 1.0194699 0.605 + 795000 -5566.3088 1261.8098 -6828.1186 1449.2851 21688.44 -30377.026 302.58115 1001.4476 1.0322702 0.6025 + 800000 -5471.8234 1303.4049 -6775.2283 1398.6426 21772.653 -30379.166 312.55564 217.87426 1.0135949 0.6 + 805000 -5586.6474 1220.6453 -6807.2927 1409.1848 21676.401 -30378.777 292.70993 241.46493 1.0243302 0.5975 + 810000 -5612.0552 1215.6221 -6827.6773 1363.5428 21759.362 -30378.853 291.50537 -711.05271 1.0076206 0.595 + 815000 -5584.3197 1224.7552 -6809.0749 1469.9794 21677.26 -30382.578 293.69549 789.61759 1.0091541 0.5925 + 820000 -5552.9536 1270.928 -6823.8816 1395.5282 21729.655 -30380.525 304.76769 132.06866 1.0153299 0.59 + 825000 -5524.6445 1255.7384 -6780.3829 1467.1114 21702.335 -30380.146 301.12523 1094.8403 1.0124363 0.5875 + 830000 -5519.9763 1283.1177 -6803.094 1359.1241 21781.756 -30378.661 307.69078 -269.55156 1.011247 0.585 + 835000 -5574.5608 1268.1186 -6842.6794 1453.1708 21651.026 -30378.923 304.09401 440.04367 1.0063498 0.5825 + 840000 -5593.1298 1263.5752 -6856.705 1437.8518 21679.6 -30380.449 303.00449 786.15751 1.0315038 0.58 + 845000 -5474.6027 1278.2525 -6752.8552 1345.4766 21857.636 -30379.511 306.52411 -375.02983 1.0081416 0.5775 + 850000 -5421.5672 1307.2683 -6728.8355 1354.7412 21860.822 -30377.514 313.48207 -176.84475 1.0001495 0.575 + 855000 -5523.8453 1251.0854 -6774.9307 1424.8602 21729.911 -30380.62 300.00944 567.62922 1.0185387 0.5725 + 860000 -5540.1719 1247.9292 -6788.1011 1338.1786 21819.946 -30380.808 299.25259 -980.8771 0.98328196 0.57 + 865000 -5500.9874 1294.2799 -6795.2673 1365.5005 21798.964 -30380.394 310.36746 -312.14623 1.0038906 0.5675 + 870000 -5513.3883 1253.1896 -6766.5779 1403.6774 21770.72 -30379.858 300.51403 -249.64253 0.98661096 0.565 + 875000 -5577.3005 1213.9579 -6791.2584 1373.5687 21767.892 -30379.213 291.10631 -32.675529 1.0214726 0.5625 + 880000 -5520.6187 1235.4014 -6756.0201 1414.0406 21755.825 -30377.065 296.24843 539.88708 1.0112853 0.56 + 885000 -5506.5962 1242.8121 -6749.4082 1313.1296 21895.863 -30377.787 298.02552 -810.01171 1.0046804 0.5575 + 890000 -5574.2541 1264.4641 -6838.7182 1462.9071 21672.919 -30379.655 303.21767 725.59742 1.0127452 0.555 + 895000 -5552.393 1266.4737 -6818.8667 1451.4529 21687.174 -30377.823 303.69956 515.3533 1.0046976 0.5525 + 900000 -5493.546 1268.8835 -6762.4295 1390.089 21773.231 -30379.297 304.27743 323.6865 1.0191801 0.55 + 905000 -5568.8411 1251.4696 -6820.3107 1415.2346 21698.664 -30379.466 300.10159 142.08451 1.0164587 0.5475 + 910000 -5472.0573 1255.734 -6727.7913 1371.5728 21814.959 -30376.67 301.12419 71.603808 1.0152894 0.545 + 915000 -5546.7758 1266.2377 -6813.0135 1394.2902 21729.23 -30378.982 303.64295 -277.04292 0.99838613 0.5425 + 920000 -5485.1925 1260.6795 -6745.8719 1335.4147 21840.054 -30376.213 302.3101 -706.48845 0.99982968 0.54 + 925000 -5569.2581 1268.7997 -6838.0578 1425.5561 21688.585 -30376.69 304.25734 440.61245 1.0276647 0.5375 + 930000 -5436.2 1309.4362 -6745.6361 1360.6477 21779.291 -30375.596 314.00193 -153.76175 1.0060773 0.535 + 935000 -5511.9611 1283.1051 -6795.0662 1472.8015 21686.056 -30378.591 307.68775 830.7404 1.0035227 0.5325 + 940000 -5525.2952 1250.2261 -6775.5212 1382.7242 21797.489 -30378.43 299.80339 411.53116 1.0379394 0.53 + 945000 -5479.6309 1302.2216 -6781.8525 1392.5574 21734.537 -30380.406 312.27189 -109.18487 1.0077314 0.5275 + 950000 -5432.2038 1264.9369 -6697.1407 1350.3293 21930.966 -30376.591 303.33102 181.11895 1.0110981 0.525 + 955000 -5560.8112 1217.4105 -6778.2217 1444.1975 21748.915 -30379.038 291.93423 713.37875 1.0089567 0.5225 + 960000 -5522.7277 1295.5111 -6818.2388 1463.1361 21672.625 -30375.593 310.66272 497.12398 0.99359159 0.52 + 965000 -5476.6514 1255.7119 -6732.3633 1454.9215 21761.733 -30377.381 301.11888 891.7686 1.0003201 0.5175 + 970000 -5554.9486 1260.713 -6815.6616 1444.2112 21699.023 -30376.601 302.31814 734.59668 1.0255112 0.515 + 975000 -5537.0867 1297.5833 -6834.6701 1454.7241 21625.665 -30378.948 311.15963 884.84024 1.026448 0.5125 + 980000 -5546.2148 1224.275 -6770.4898 1333.2213 21873.175 -30378.024 293.58034 -493.4515 1.012591 0.51 + 985000 -5520.9359 1217.3655 -6738.3014 1343.6097 21870.6 -30375.709 291.92345 -263.92883 1.0149279 0.5075 + 990000 -5592.7447 1215.8757 -6808.6205 1440.2464 21666.537 -30374.994 291.5662 587.54768 1.0234674 0.505 + 995000 -5533.0301 1262.5102 -6795.5404 1279.6793 21920.053 -30380.017 302.74912 -1341.8752 1.0002809 0.5025 + 1000000 -5551.0164 1238.3305 -6789.3469 1391.9315 21798.137 -30377.817 296.95085 -113.77494 1.0094761 0.5 + 1005000 -5549.2261 1237.9081 -6787.1342 1320.049 21844.294 -30382.381 296.84955 -634.07433 1.0208379 0.4975 + 1010000 -5529.9238 1239.8968 -6769.8205 1389.9921 21747.565 -30379.146 297.32642 -0.90599205 0.99978793 0.495 + 1015000 -5489.9865 1252.1385 -6742.1251 1398.0166 21799.294 -30379.371 300.262 241.56608 1.0076692 0.4925 + 1020000 -5576.0301 1272.5378 -6848.5679 1416.7164 21667.174 -30378.805 305.15372 -33.86377 0.99969748 0.49 + 1025000 -5591.0562 1246.2942 -6837.3504 1438.919 21638.67 -30378.781 298.86053 482.55574 1.0162828 0.4875 + 1030000 -5548.1877 1217.7539 -6765.9416 1362.9837 21806.283 -30381.163 292.01659 -427.99018 0.99163938 0.485 + 1035000 -5522.7032 1310.9673 -6833.6704 1454.9127 21653.869 -30379.885 314.36908 738.25531 1.0236085 0.4825 + 1040000 -5589.4653 1211.212 -6800.6774 1396.8117 21735.372 -30375.228 290.44785 -167.16934 1.0043731 0.48 + 1045000 -5584.8632 1213.0589 -6797.9222 1345.4118 21771.193 -30380.486 290.89073 -797.43246 1.0092941 0.4775 + 1050000 -5507.4502 1224.5435 -6731.9938 1326.4546 21912.141 -30377.193 293.64473 -497.19203 1.0032709 0.475 + 1055000 -5493.9189 1230.8729 -6724.7919 1385.1499 21849.807 -30375.98 295.16252 218.46916 0.99861109 0.4725 + 1060000 -5555.3241 1241.6789 -6797.003 1384.3354 21771.345 -30377.318 297.75379 -237.59628 0.99873701 0.47 + 1065000 -5550.2811 1282.7371 -6833.0182 1548.4595 21554.165 -30376.611 307.59951 1670.18 1.0096302 0.4675 + 1070000 -5535.527 1254.4489 -6789.9759 1438.3778 21690.349 -30376.448 300.81601 491.9271 1.0179693 0.465 + 1075000 -5537.4925 1273.5683 -6811.0609 1437.8103 21688.987 -30379.423 305.40085 802.67013 1.0289308 0.4625 + 1080000 -5570.3365 1249.4877 -6819.8242 1420.2567 21697.63 -30374.946 299.62632 180.96347 1.0118406 0.46 + 1085000 -5585.0345 1210.3922 -6795.4267 1467.9551 21664.251 -30378.174 290.25124 794.72418 1.0055281 0.4575 + 1090000 -5508.2604 1219.7555 -6728.0159 1352.4211 21869.903 -30377.463 292.49657 -357.12347 1.0108237 0.455 + 1095000 -5518.5734 1279.9107 -6798.4841 1448.7068 21686.898 -30379.086 306.92175 722.82217 1.0109523 0.4525 + 1100000 -5525.8416 1250.687 -6776.5287 1414.8834 21735.488 -30379.591 299.91393 197.94954 1.0154492 0.45 + 1105000 -5521.8723 1246.6246 -6768.497 1401.1347 21814.8 -30376.034 298.93976 117.88115 0.99889954 0.4475 + 1110000 -5554.5946 1270.4005 -6824.9951 1365.948 21741.545 -30380.13 304.64121 -662.90851 0.99998764 0.445 + 1115000 -5545.4198 1250.2667 -6795.6866 1348.0742 21791.444 -30381.204 299.81314 -724.2404 1.0103995 0.4425 + 1120000 -5559.3322 1197.8416 -6757.1738 1355.7143 21850.726 -30380.054 287.24162 -181.20192 1.0173846 0.44 + 1125000 -5542.1037 1234.4106 -6776.5142 1379.6262 21797.166 -30380.781 296.01084 -507.86039 0.99365362 0.4375 + 1130000 -5437.0102 1287.5891 -6724.5993 1282.7916 21954.329 -30381.096 308.76302 -1126.2965 0.99901743 0.435 + 1135000 -5538.9176 1238.9073 -6777.8249 1364.7683 21805.703 -30379.16 297.08916 -680.37057 0.9996137 0.4325 + 1140000 -5570.4962 1213.8459 -6784.3421 1340.606 21805.103 -30379.425 291.07945 -596.29765 1.0134925 0.43 + 1145000 -5547.5904 1230.6761 -6778.2665 1420.8752 21738.324 -30378.751 295.11533 246.41006 1.006487 0.4275 + 1150000 -5548.2808 1213.8732 -6762.154 1421.7664 21766.257 -30379.185 291.08599 570.07885 1.0218796 0.425 + 1155000 -5521.4144 1267.3636 -6788.778 1398.1887 21770.241 -30379.549 303.91295 2.9983687 1.0076686 0.4225 + 1160000 -5534.9879 1244.8652 -6779.8532 1440.4749 21715.397 -30378.941 298.51786 679.4149 1.0207784 0.42 + 1165000 -5484.3721 1244.6856 -6729.0577 1417.7678 21735.834 -30377.46 298.4748 629.57345 1.0215953 0.4175 + 1170000 -5524.3406 1277.2058 -6801.5464 1389.395 21753.644 -30381.276 306.27312 85.448076 1.0175567 0.415 + 1175000 -5573.4085 1245.0919 -6818.5004 1464.992 21672.608 -30376.328 298.57221 727.70962 1.0151094 0.4125 + 1180000 -5567.9892 1220.0499 -6788.039 1355.1799 21757.217 -30379.53 292.56716 -589.39342 1.0129301 0.41 + 1185000 -5493.5883 1254.9729 -6748.5612 1378.5484 21787.909 -30376.087 300.94166 75.165141 1.0184138 0.4075 + 1190000 -5479.2948 1260.2407 -6739.5356 1356.4075 21814.922 -30377.304 302.2049 -460.01063 1.0009331 0.405 + 1195000 -5457.6359 1238.4178 -6696.0537 1364.6441 21884.995 -30379.875 296.97177 3.5756347 1.0001974 0.4025 + 1200000 -5469.0842 1241.7112 -6710.7954 1406.1586 21802.207 -30379.157 297.76153 438.48868 1.0195469 0.4 + 1205000 -5549.5458 1240.8355 -6790.3813 1358.959 21808.604 -30379.225 297.55153 -594.51594 1.0074724 0.3975 + 1210000 -5585.1155 1238.9458 -6824.0613 1456.1794 21691.63 -30379.186 297.09838 1167.2584 1.0397342 0.395 + 1215000 -5533.2061 1246.371 -6779.5771 1439.4805 21720.932 -30378.201 298.87894 526.47308 1.0105713 0.3925 + 1220000 -5543.7123 1246.3605 -6790.0728 1445.4823 21714.058 -30379.216 298.87643 677.38399 1.0072857 0.39 + 1225000 -5474.7986 1269.4558 -6744.2544 1364.5803 21848.038 -30377.16 304.41467 -87.090524 1.0086417 0.3875 + 1230000 -5541.2817 1308.326 -6849.6077 1415.265 21695.861 -30381.038 313.73572 71.444446 1.0192522 0.385 + 1235000 -5542.6225 1244.4364 -6787.0589 1381.0607 21784.705 -30380.057 298.41502 214.57658 1.0258239 0.3825 + 1240000 -5555.7484 1274.2793 -6830.0277 1489.2232 21617.829 -30378.278 305.57134 876.45857 1.008025 0.38 + 1245000 -5512.6649 1274.3059 -6786.9708 1382.4273 21743.608 -30378.966 305.57772 -122.08537 1.020499 0.3775 + 1250000 -5589.2861 1219.0535 -6808.3396 1360.303 21791.212 -30380.132 292.32822 -128.28745 1.0295553 0.375 + 1255000 -5535.2523 1239.0819 -6774.3342 1352.7449 21789.218 -30378.876 297.13101 -679.25947 0.99401271 0.3725 + 1260000 -5570.865 1227.2408 -6798.1058 1427.1345 21699.292 -30378.045 294.29153 327.24356 1.006499 0.37 + 1265000 -5471.9137 1290.8466 -6762.7604 1381.3429 21818.652 -30379.538 309.54417 14.98415 1.0111953 0.3675 + 1270000 -5450.4791 1305.5008 -6755.98 1370.0496 21830.174 -30379.524 313.05824 -293.10433 0.99617081 0.365 + 1275000 -5471.3926 1284.8849 -6756.2775 1367.9952 21845.798 -30374.717 308.11454 -307.10586 0.99444636 0.3625 + 1280000 -5520.0507 1269.7599 -6789.8106 1386.8953 21790.683 -30379.921 304.48759 10.244879 1.0094059 0.36 + 1285000 -5595.952 1204.1409 -6800.0929 1398.6057 21718.538 -30379.702 288.7522 -276.8686 1.006966 0.3575 + 1290000 -5486.8122 1246.1647 -6732.9769 1363.6203 21823.272 -30379.685 298.82947 -464.78674 0.99243587 0.355 + 1295000 -5497.4179 1237.867 -6735.2849 1346.8425 21891.759 -30377.608 296.83969 -140.11806 1.0151073 0.3525 + 1300000 -5639.1001 1243.6172 -6882.7173 1457.7891 21616.148 -30378.09 298.21857 342.48703 1.009843 0.35 + 1305000 -5556.8881 1221.543 -6778.431 1335.1406 21849.077 -30378.112 292.9252 -716.76985 1.0013082 0.3475 + 1310000 -5442.7105 1258.3829 -6701.0934 1285.9237 21964.62 -30375.49 301.7594 -1058.1451 1.000375 0.345 + 1315000 -5547.5333 1248.6602 -6796.1935 1434.312 21690.442 -30376.481 299.42789 417.77084 1.0108828 0.3425 + 1320000 -5556.5722 1245.995 -6802.5672 1406.0367 21716.81 -30378.518 298.78879 -44.59583 1.0029205 0.34 + 1325000 -5492.2298 1210.0413 -6702.271 1306.7266 21930.848 -30379.189 290.1671 -360.17536 1.0193503 0.3375 + 1330000 -5529.1732 1201.8706 -6731.0438 1320.2689 21891.221 -30378.853 288.20777 -823.47174 1.0023972 0.335 + 1335000 -5516.1513 1284.0936 -6800.2449 1456.3194 21648.152 -30382.511 307.9248 816.27591 1.0172669 0.3325 + 1340000 -5524.1288 1244.1823 -6768.3111 1437.1822 21726.149 -30377.547 298.3541 659.0745 1.018629 0.33 + 1345000 -5508.6037 1238.7015 -6747.3052 1400.1328 21792.993 -30375.67 297.0398 319.94593 1.0148916 0.3275 + 1350000 -5527.1475 1258.9192 -6786.0666 1356.8947 21794.455 -30379.738 301.88799 -335.38354 1.0081011 0.325 + 1355000 -5538.0487 1250.8881 -6788.9368 1453.457 21678.809 -30378.902 299.96214 769.52717 1.0229997 0.3225 + 1360000 -5476.898 1309.4028 -6786.3009 1427.2196 21697.827 -30381.824 313.99394 803.67442 1.0294179 0.32 + 1365000 -5509.3513 1232.51 -6741.8613 1307.4439 21886.932 -30380.5 295.55508 -1043.7167 1.0072445 0.3175 + 1370000 -5540.0675 1251.3688 -6791.4363 1379.1587 21758.664 -30378.636 300.07741 -156.99758 1.0200723 0.315 + 1375000 -5578.6206 1239.6891 -6818.3097 1350.1415 21780.413 -30376.511 297.27662 -854.76394 1.001508 0.3125 + 1380000 -5463.107 1290.9919 -6754.0989 1444.3422 21730.857 -30378.895 309.579 772.67327 1.0122494 0.31 + 1385000 -5499.3844 1239.3068 -6738.6912 1462.7244 21771.34 -30375.733 297.18495 1283.3351 1.0145078 0.3075 + 1390000 -5636.4741 1214.4694 -6850.9434 1383.584 21682.318 -30380.751 291.22895 -240.05624 1.0213867 0.305 + 1395000 -5537.6011 1252.6604 -6790.2615 1420.8477 21717.595 -30379.56 300.38714 182.01588 1.0064129 0.3025 + 1400000 -5548.9864 1240.0253 -6789.0117 1387.3366 21714.14 -30378.119 297.35725 -395.53785 0.99660636 0.3 + 1405000 -5631.6836 1213.3931 -6845.0766 1394.0426 21727.204 -30380.58 290.97086 -140.02628 1.0191589 0.2975 + 1410000 -5570.2405 1202.1725 -6772.413 1446.4137 21746.694 -30376.362 288.28018 565.38216 0.99852339 0.295 + 1415000 -5513.6068 1260.5019 -6774.1087 1317.293 21880.318 -30377.852 302.26752 -425.54191 1.0260955 0.2925 + 1420000 -5571.7578 1268.6051 -6840.3629 1403.6298 21714.791 -30378.169 304.21066 54.465307 1.0173764 0.29 + 1425000 -5638.9053 1227.4178 -6866.3231 1369.4019 21716.414 -30381.21 294.33398 -489.07663 1.0231539 0.2875 + 1430000 -5484.9163 1258.5341 -6743.4504 1417.5799 21781.385 -30379.25 301.79564 495.28585 1.0123172 0.285 + 1435000 -5513.5471 1284.6685 -6798.2156 1407.8452 21711.668 -30376.834 308.06266 295.19088 1.0173205 0.2825 + 1440000 -5580.8299 1250.3744 -6831.2043 1479.6654 21646.68 -30378.997 299.83895 761.0399 1.0106045 0.28 + 1445000 -5635.3122 1252.8496 -6888.1618 1504.565 21532.223 -30380.129 300.43251 513.57698 1.0076633 0.2775 + 1450000 -5486.7362 1308.6032 -6795.3394 1397.0887 21765.068 -30376.175 313.80218 -99.824485 1.0020521 0.275 + 1455000 -5561.0636 1264.4229 -6825.4865 1399.449 21674.063 -30381.988 303.20778 -415.08661 1.0044893 0.2725 + 1460000 -5602.6724 1237.4201 -6840.0926 1360.0506 21713.944 -30376.542 296.73254 -569.29884 1.0196217 0.27 + 1465000 -5557.9048 1243.4073 -6801.3121 1419.2761 21696.901 -30378.642 298.16825 94.910341 1.0027966 0.2675 + 1470000 -5578.3575 1264.4044 -6842.762 1474.4303 21627.06 -30379.312 303.20335 942.68042 1.0250842 0.265 + 1475000 -5548.4324 1227.8513 -6776.2837 1424.1369 21760.42 -30377.249 294.43793 474.1116 1.0105851 0.2625 + 1480000 -5546.8794 1248.7847 -6795.6641 1341.2731 21811.099 -30381.049 299.45774 -537.89777 1.0220907 0.26 + 1485000 -5469.9253 1303.2112 -6773.1365 1372.6674 21770.592 -30375.734 312.50919 -79.452797 1.0087945 0.2575 + 1490000 -5509.538 1255.0642 -6764.6022 1327.3994 21822.784 -30377.213 300.96356 -808.75259 1.0229172 0.255 + 1495000 -5590.1476 1245.1426 -6835.2902 1380.5927 21711.336 -30377.291 298.58436 -454.99232 1.0007932 0.2525 + 1500000 -5503.2146 1243.1634 -6746.378 1336.568 21869.966 -30374.521 298.10976 -673.77429 1.005844 0.25 + 1505000 -5515.316 1210.9868 -6726.3028 1360.9575 21896.046 -30377.596 290.39383 -117.70175 1.0026611 0.2475 + 1510000 -5466.2688 1291.4793 -6757.7481 1432.113 21744.77 -30378.609 309.69588 559.59585 1.0094784 0.245 + 1515000 -5515.4116 1280.3987 -6795.8103 1454.1004 21725.579 -30379.794 307.03876 976.71744 1.0146273 0.2425 + 1520000 -5566.844 1258.7589 -6825.6029 1328.5982 21795.623 -30380.868 301.84957 -1235.7229 0.99399834 0.24 + 1525000 -5502.8424 1233.1097 -6735.9521 1375.339 21854.059 -30380.66 295.6989 80.767849 1.0122901 0.2375 + 1530000 -5611.7566 1233.4818 -6845.2384 1381.3109 21681.348 -30379.585 295.78811 -497.77083 1.0061235 0.235 + 1535000 -5561.4562 1276.04 -6837.4963 1405.3468 21730.358 -30379.422 305.99356 125.46821 1.0175592 0.2325 + 1540000 -5672.2966 1217.9014 -6890.198 1401.5066 21670.118 -30381.384 292.05195 -243.55974 1.0176228 0.23 + 1545000 -5548.9594 1241.3504 -6790.3098 1322.6254 21791.955 -30377.275 297.67501 -897.01748 1.0094888 0.2275 + 1550000 -5525.9751 1264.4516 -6790.4267 1400.0967 21769.593 -30378.747 303.21467 299.75833 1.0203862 0.225 + 1555000 -5563.0098 1263.0206 -6826.0304 1351.2173 21793.229 -30380.937 302.8715 -578.02252 1.0116829 0.2225 + 1560000 -5485.253 1266.3745 -6751.6275 1368.2641 21821.234 -30376.163 303.67577 -108.52063 1.0065978 0.22 + 1565000 -5536.2445 1243.8651 -6780.1096 1399.694 21773.453 -30381.063 298.27802 155.48476 1.0078165 0.2175 + 1570000 -5571.4171 1246.4551 -6817.8722 1490.8638 21645.287 -30377.619 298.89911 1260.7223 1.0285327 0.215 + 1575000 -5507.1892 1262.1705 -6769.3597 1379.3818 21800.029 -30379.196 302.66766 219.90904 1.0190579 0.2125 + 1580000 -5475.5755 1214.2346 -6689.8101 1360.6564 21878.095 -30381.808 291.17266 162.20674 1.0197691 0.21 + 1585000 -5549.8015 1219.9274 -6769.7289 1406.4392 21759.735 -30380.967 292.53778 283.79685 1.0216043 0.2075 + 1590000 -5469.2857 1251.6933 -6720.9791 1296.634 21940.466 -30375.947 300.15524 -679.87352 1.0116393 0.205 + 1595000 -5551.6405 1237.1996 -6788.8401 1368.9711 21784.35 -30379.239 296.67965 -24.5855 1.0261732 0.2025 + 1600000 -5535.5989 1244.5073 -6780.1062 1458.1539 21706.069 -30377.198 298.43204 755.64074 1.0032465 0.2 + 1605000 -5491.9754 1260.0285 -6752.0039 1392.3315 21805.533 -30375.962 302.15401 223.68891 1.0102672 0.1975 + 1610000 -5502.4313 1282.3536 -6784.7849 1378.1879 21791.234 -30378.942 307.50754 72.219761 1.0226788 0.195 + 1615000 -5434.7653 1258.9645 -6693.7297 1326.2408 21939.287 -30377.143 301.89885 -186.32112 1.0130596 0.1925 + 1620000 -5585.2504 1257.3165 -6842.5669 1345.5246 21744.374 -30378.94 301.50366 -588.30621 1.0274457 0.19 + 1625000 -5528.9293 1241.3212 -6770.2505 1385.8564 21799.552 -30378.87 297.668 -27.78124 1.0087198 0.1875 + 1630000 -5512.0803 1249.7669 -6761.8472 1409.4021 21756.949 -30379.03 299.69328 598.07578 1.0209223 0.185 + 1635000 -5554.4113 1257.7462 -6812.1575 1429.7636 21689.998 -30381.983 301.6067 637.58768 1.0296191 0.1825 + 1640000 -5528.3295 1282.7202 -6811.0497 1425.6194 21721.951 -30382.144 307.59546 201.65193 1.0054558 0.18 + 1645000 -5415.0306 1296.1562 -6711.1868 1359.5794 21836.685 -30373.985 310.8174 -122.49014 1.0025163 0.1775 + 1650000 -5472.535 1279.0671 -6751.6021 1334.4733 21816.614 -30381.683 306.71945 -1149.2916 0.98751404 0.175 + 1655000 -5501.82 1268.5575 -6770.3775 1377.245 21798.047 -30376.936 304.19926 1.7461216 1.0198116 0.1725 + 1660000 -5574.8853 1242.4084 -6817.2937 1402.801 21721.393 -30374.675 297.9287 -368.176 0.98829371 0.17 + 1665000 -5573.5235 1222.8083 -6796.3318 1398.8053 21724.515 -30373.998 293.22863 -34.053733 1.0103876 0.1675 + 1670000 -5465.9501 1315.885 -6781.8351 1342.4906 21789.764 -30380.929 315.54835 -711.01584 1.0050507 0.165 + 1675000 -5587.4957 1204.8035 -6792.2993 1411.9342 21755.712 -30382.222 288.91109 512.51181 1.0285941 0.1625 + 1680000 -5505.6492 1268.1162 -6773.7654 1373.3072 21795.716 -30381.924 304.09344 -65.28487 1.0177793 0.16 + 1685000 -5570.1242 1234.0295 -6804.1537 1333.3621 21779.517 -30377.13 295.91945 -832.3622 1.0233325 0.1575 + 1690000 -5491.4354 1286.9136 -6778.349 1302.901 21867.464 -30379.461 308.60103 -1091.2681 1.0076038 0.155 + 1695000 -5557.2902 1233.4916 -6790.7818 1475.5133 21645.505 -30381.225 295.79047 467.6176 0.98611211 0.1525 + 1700000 -5529.5608 1273.3267 -6802.8875 1385.957 21733.221 -30380.457 305.34291 -234.85874 1.0141094 0.15 + 1705000 -5598.2612 1252.9529 -6851.2142 1368.7434 21746.044 -30380.367 300.45729 -357.4882 1.0229005 0.1475 + 1710000 -5606.2821 1252.1505 -6858.4326 1441.0675 21619.641 -30382.217 300.26485 291.84925 1.0172756 0.145 + 1715000 -5470.884 1270.4438 -6741.3278 1314.3499 21888.17 -30382.544 304.65158 -536.78432 1.0181209 0.1425 + 1720000 -5458.4566 1270.3827 -6728.8393 1414.9094 21772.276 -30379.283 304.63694 383.28792 1.0017567 0.14 + 1725000 -5542.1103 1245.834 -6787.9443 1406.8781 21710.67 -30381.427 298.75018 -196.66899 0.99533902 0.1375 + 1730000 -5546.8538 1225.5416 -6772.3954 1414.5675 21764.375 -30378.796 293.88406 292.19762 1.0062057 0.135 + 1735000 -5533.254 1230.492 -6763.7459 1356.4861 21781.616 -30381.207 295.07116 -279.51002 1.0177131 0.1325 + 1740000 -5516.3203 1269.3866 -6785.7069 1382.6887 21778.338 -30380.038 304.39806 -41.211787 1.0184863 0.13 + 1745000 -5601.6102 1211.6668 -6813.2769 1457.856 21646.431 -30379.268 290.55689 321.57165 1.0044935 0.1275 + 1750000 -5464.07 1262.7335 -6726.8035 1388.3238 21807.797 -30381.51 302.80266 347.94977 1.0199363 0.125 + 1755000 -5609.8158 1220.0117 -6829.8275 1449.8857 21660.858 -30381.398 292.55801 423.13734 1.0091913 0.1225 + 1760000 -5403.3906 1295.0506 -6698.4412 1376.6218 21890.749 -30379.696 310.55227 307.40852 1.0147058 0.12 + 1765000 -5516.242 1249.2409 -6765.4828 1382.647 21758.198 -30377.246 299.56714 167.93234 1.0231885 0.1175 + 1770000 -5582.0367 1264.8589 -6846.8955 1451.9857 21613.33 -30377.524 303.31232 595.73197 1.0185845 0.115 + 1775000 -5537.7575 1229.4186 -6767.1761 1369.0153 21805.496 -30381.159 294.81376 13.517698 1.0260482 0.1125 + 1780000 -5494.5434 1303.1737 -6797.7171 1436.2813 21746.59 -30380.854 312.50019 737.63948 1.019697 0.11 + 1785000 -5506.8968 1245.4135 -6752.3103 1381.9664 21814.635 -30377.185 298.64934 53.072035 1.0092991 0.1075 + 1790000 -5570.6629 1257.0357 -6827.6986 1389.5682 21752.819 -30378.813 301.43633 -254.1322 1.0049075 0.105 + 1795000 -5403.0983 1313.5161 -6716.6144 1299.9894 21921.198 -30378.568 314.98029 -534.90063 1.0142742 0.1025 + 1800000 -5571.5716 1221.6883 -6793.2599 1459.5581 21671.077 -30379.985 292.96006 1199.0646 1.0291174 0.1 + 1805000 -5576.3609 1224.1212 -6800.4821 1353.5425 21807.985 -30380.553 293.54345 -387.59054 1.0179841 0.0975 + 1810000 -5606.1276 1268.2463 -6874.3738 1461.2712 21629.806 -30377.587 304.12462 705.686 1.032963 0.095 + 1815000 -5528.0175 1213.0379 -6741.0554 1404.3111 21772.221 -30376.182 290.88569 360.59394 1.0146256 0.0925 + 1820000 -5519.9749 1246.5714 -6766.5463 1333.2785 21832.117 -30376.792 298.927 -490.34561 1.0222947 0.09 + 1825000 -5445.4758 1293.818 -6739.2938 1310.9077 21908.662 -30376.428 310.25669 -505.90791 1.0175154 0.0875 + 1830000 -5541.7133 1258.3353 -6800.0486 1342.3151 21835.187 -30378.672 301.74797 -431.49631 1.0112617 0.085 + 1835000 -5455.3051 1261.9795 -6717.2846 1352.0659 21888.34 -30378.24 302.62186 -278.9793 1.0005135 0.0825 + 1840000 -5550.1255 1264.0761 -6814.2015 1457.0559 21643.406 -30381.124 303.12461 732.70062 1.0158677 0.08 + 1845000 -5534.0588 1215.4174 -6749.4762 1393.3056 21800.212 -30376.843 291.45629 318.75691 1.0144019 0.0775 + 1850000 -5470.5935 1240.7072 -6711.3007 1398.1611 21825.075 -30377.387 297.52076 246.47011 0.99682722 0.075 + 1855000 -5562.2126 1269.9488 -6832.1614 1405.7155 21717.318 -30382.767 304.5329 158.21904 1.0206821 0.0725 + 1860000 -5593.1478 1212.5719 -6805.7197 1431.8435 21688.522 -30377.259 290.77394 490.69887 1.0155469 0.07 + 1865000 -5547.7314 1230.6551 -6778.3865 1415.4128 21748.348 -30378.118 295.11029 184.13907 0.99833163 0.0675 + 1870000 -5530.8677 1219.9933 -6750.861 1379.1571 21831.652 -30375.929 292.55359 34.766398 1.0094217 0.065 + 1875000 -5568.1541 1254.3638 -6822.5179 1355.1579 21740.634 -30379.983 300.7956 -705.50446 1.0143892 0.0625 + 1880000 -5653.4584 1235.3915 -6888.8499 1430.7173 21633.442 -30379.735 296.24606 102.70794 1.0154835 0.06 + 1885000 -5465.2275 1218.1694 -6683.3969 1239.8122 21974.299 -30378.879 292.11621 -1526.9501 1.00297 0.0575 + 1890000 -5596.8191 1179.0514 -6775.8705 1375.6822 21763.894 -30376.484 282.73574 -135.80694 1.0180663 0.055 + 1895000 -5465.5228 1216.5423 -6682.0651 1399.7408 21824.803 -30381.567 291.72604 189.86203 0.9918745 0.0525 + 1900000 -5525.4584 1268.983 -6794.4415 1386.5598 21763.346 -30379.48 304.30129 -147.74084 1.0101088 0.05 + 1905000 -5629.8529 1254.2275 -6884.0804 1455.3465 21571.828 -30380.574 300.76293 536.16177 1.0309795 0.0475 + 1910000 -5498.7043 1240.937 -6739.6413 1343.971 21867.501 -30378.531 297.57587 -307.05181 1.00532 0.045 + 1915000 -5489.6666 1266.2052 -6755.8718 1356.677 21815.921 -30373.873 303.63517 41.753289 1.0289101 0.0425 + 1920000 -5534.4011 1264.7423 -6799.1433 1414.4972 21675.646 -30381.358 303.28436 307.25885 1.030805 0.04 + 1925000 -5504.0398 1249.1105 -6753.1503 1407.4242 21780.765 -30377.439 299.53588 416.81022 1.0112989 0.0375 + 1930000 -5486.5931 1291.1596 -6777.7527 1380.6453 21793.976 -30378.396 309.61922 -167.68264 1.0083434 0.035 + 1935000 -5482.2055 1242.0698 -6724.2753 1296.2668 21881.772 -30378.102 297.84751 -1240.512 1.0083689 0.0325 + 1940000 -5413.7616 1287.0265 -6700.788 1300.618 21943.573 -30379.549 308.6281 -822.10018 0.9947525 0.03 + 1945000 -5618.7196 1214.3524 -6833.072 1410.8621 21689.242 -30381.323 291.2009 177.78285 1.0261522 0.0275 + 1950000 -5559.1869 1277.5888 -6836.7757 1384.1924 21715.907 -30380.281 306.36495 -269.07872 1.01053 0.025 + 1955000 -5556.8805 1290.1761 -6847.0566 1420.3306 21702.458 -30379.354 309.38338 63.181765 1.0037638 0.0225 + 1960000 -5536.3473 1288.352 -6824.6993 1333.2341 21766.427 -30380.118 308.94596 -956.94729 1.0098248 0.02 + 1965000 -5560.7629 1271.8239 -6832.5868 1394.6008 21745.026 -30375.628 304.98253 27.022116 1.014722 0.0175 + 1970000 -5571.8348 1246.9662 -6818.801 1368.7901 21728.521 -30376.246 299.02167 -642.85981 1.0038267 0.015 + 1975000 -5448.1873 1277.5391 -6725.7263 1376.1799 21855.417 -30379.445 306.35302 158.55616 1.010898 0.0125 + 1980000 -5569.4362 1227.1456 -6796.5818 1384.1163 21747.316 -30379.52 294.26871 -224.4952 1.0128917 0.01 + 1985000 -5490.1779 1256.3196 -6746.4975 1376.0987 21800.479 -30378.853 301.26461 -23.927186 1.0117616 0.0075 + 1990000 -5568.4743 1216.0821 -6784.5564 1365.6444 21804.572 -30380.078 291.61568 -40.531986 1.024747 0.005 + 1995000 -5623.9072 1244.7555 -6868.6627 1444.7105 21613.58 -30377.599 298.49155 401.54781 1.0221617 0.0025 + 2000000 -5564.5636 1253.8102 -6818.3738 1394.5734 21742.16 -30376.703 300.66286 -89.748646 1.0114229 0 +Loop time of 13852.8 on 12 procs for 2000000 steps with 1800 atoms + +Performance: 12.474 ns/day, 1.924 hours/ns, 144.375 timesteps/s +95.5% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7431.1 | 8143.6 | 8773.3 | 379.5 | 58.79 +Bond | 24.35 | 26.055 | 27.801 | 23.2 | 0.19 +Kspace | 2212.7 | 2764.8 | 3391.2 | 573.6 | 19.96 +Neigh | 568.42 | 569.87 | 570.75 | 2.7 | 4.11 +Comm | 806.14 | 866.5 | 930.63 | 180.1 | 6.26 +Output | 0.032719 | 0.034078 | 0.041882 | 1.3 | 0.00 +Modify | 964.98 | 1144.9 | 1300.5 | 428.3 | 8.26 +Other | | 337 | | | 2.43 + +Nlocal: 150.000 ave 166 max 139 min +Histogram: 3 0 2 0 2 3 0 0 1 1 +Nghost: 6125.92 ave 6158 max 6091 min +Histogram: 1 1 0 2 1 2 2 1 1 1 +Neighs: 87012.7 ave 102741 max 79216 min +Histogram: 2 1 2 3 3 0 0 0 0 1 + +Total # of neighbors = 1044152 +Ave neighs/atom = 580.08444 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 89145 +Dangerous builds = 0 +Total wall time: 4:01:57 diff --git a/examples/USER/fep/SPCEhyd/fep10/fep10-q.fep b/examples/USER/fep/SPCEhyd/fep10/fep10-q.fep new file mode 100644 index 0000000000..fd49769ec2 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/fep10-q.fep @@ -0,0 +1,22 @@ +# Time-averaged data for fix FEP +# TimeStep c_FEP[1] c_FEP[2] c_FEP[3] +100000 1.45025 1741.09 17759.6 +200000 1.34275 2079.09 17751.2 +300000 1.11463 3077.67 17744.5 +400000 1.05072 3418.61 17752.1 +500000 0.861524 4545.87 17736.9 +600000 0.752417 5411.55 17755.8 +700000 0.677848 6201.52 17715.7 +800000 0.594413 7014.15 17718.2 +900000 0.482601 8441.94 17738.8 +1000000 0.44748 8942.75 17761.6 +1100000 0.374076 9984.65 17731.4 +1200000 0.310756 11050 17774.3 +1300000 0.246639 12186.7 17783.6 +1400000 0.201753 13117.8 17825.2 +1500000 0.166052 13843.8 17784.7 +1600000 0.136584 14486.5 17742.2 +1700000 0.102778 15331.6 17778.7 +1800000 0.0716746 16103 17743.1 +1900000 0.0513218 16698.6 17801.1 +2000000 0.0250996 17424.1 17780.5 diff --git a/examples/USER/fep/SPCEhyd/fep10/fep10-q.out b/examples/USER/fep/SPCEhyd/fep10/fep10-q.out new file mode 100644 index 0000000000..36fc89e567 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/fep10-q.out @@ -0,0 +1,559 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (src/lammps/src/comm.cpp:94) + using 1 OpenMP thread(s) per MPI task +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (29.204526 29.204526 29.204526) + 2 by 2 by 3 MPI processor grid + reading atoms ... + 1800 atoms + scanning bonds ... + 1 = max bonds/atom + scanning angles ... + 1 = max angles/atom + reading bonds ... + 1200 bonds + reading angles ... + 600 angles +Finding 1-2 1-3 1-4 neighbors ... + special bond factors lj: 0 0 0.5 + special bond factors coul: 0 0 0.5 + 2 = max # of 1-2 neighbors + 1 = max # of 1-3 neighbors + 1 = max # of 1-4 neighbors + 2 = max # of special neighbors + special bonds CPU = 0.002 seconds + read_data CPU = 0.020 seconds +Finding SHAKE clusters ... + 0 = # of size 2 clusters + 600 = # of size 3 clusters + 0 = # of size 4 clusters + 0 = # of frozen angles + find clusters CPU = 0.001 seconds +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.2506685 + grid = 20 20 20 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0030770287 + estimated relative force accuracy = 9.2663804e-06 + using double precision FFTW3 + 3d grid and FFT values/proc = 3757 800 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 14 + ghost atom cutoff = 14 + binsize = 7, bins = 5 5 5 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair lj/cut/coul/long, perpetual + attributes: half, newton on + pair build: half/bin/newton + stencil: half/bin/3d/newton + bin: standard +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 8.214 | 8.226 | 8.244 Mbytes +Step CPU TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Volume Density + 0 0 1343.8082 1251.046 92.762256 53.823145 30098.377 -30059.438 300 10285.006 24908.667 0.72058313 + 5000 27.484029 -5481.5313 1291.2507 -6772.7821 1417.9265 21710.404 -30351.578 309.64107 573.94807 17792.658 1.0087737 + 10000 51.222479 -5557.9174 1247.8414 -6805.7588 1463.5652 21652.169 -30349.483 299.23155 1155.9001 17391.932 1.0320167 + 15000 81.534825 -5547.6429 1255.8047 -6803.4476 1434.9211 21679.801 -30351.564 301.14114 414.89266 17774.479 1.0098054 + 20000 108.19472 -5520.4365 1226.2567 -6746.6933 1363.6958 21763.102 -30350.115 294.05555 -159.5117 17640.377 1.017482 + 25000 139.47439 -5523.2547 1214.4617 -6737.7163 1403.2241 21727.256 -30347.421 291.2271 682.49951 17446.971 1.0287611 + 30000 173.52324 -5633.4887 1209.4695 -6842.9582 1384.9611 21696.903 -30350.921 290.02999 -439.40705 17870.41 1.0043846 + 35000 207.46148 -5609.1629 1202.7623 -6811.9252 1459.4041 21642.871 -30348.683 288.4216 870.04629 17620.845 1.0186098 + 40000 240.785 -5613.2727 1218.043 -6831.3157 1458.2338 21629.898 -30351.078 292.08591 578.74278 17728.011 1.0124523 + 45000 274.86574 -5567.9001 1234.3625 -6802.2626 1499.8464 21612.157 -30349.505 295.9993 1143.6708 17911.841 1.0020614 + 50000 308.33717 -5534.5804 1253.1529 -6787.7333 1383.4124 21740.111 -30349.237 300.50525 -236.43099 17808.85 1.0078565 + 55000 340.35767 -5558.5567 1237.2613 -6795.818 1472.1262 21640.69 -30349.9 296.69444 1169.6084 17518.859 1.0245396 + 60000 371.42788 -5620.3085 1217.3007 -6837.6091 1335.6617 21764.982 -30350.897 291.9079 -730.47206 17652.428 1.0167873 + 65000 400.4258 -5523.4332 1219.0927 -6742.5258 1377.9207 21790.846 -30351.438 292.33762 -67.377992 18008.535 0.99668103 + 70000 433.12056 -5549.9652 1278.9899 -6828.9551 1405.3901 21680.053 -30344.054 306.70094 -24.208971 17740.923 1.0117154 + 75000 465.43309 -5468.4134 1328.8758 -6797.2892 1404.3997 21721.55 -30346.155 318.66353 422.45424 17600.531 1.0197854 + 80000 498.33654 -5561.5506 1262.2191 -6823.7698 1375.8895 21728.477 -30350.941 302.67932 -480.08789 17936.63 1.0006765 + 85000 531.18843 -5561.7498 1243.7135 -6805.4633 1411.6336 21707.72 -30349.917 298.24169 31.756571 17844.951 1.0058176 + 90000 565.37172 -5548.2883 1305.5336 -6853.8219 1376.838 21698.95 -30345.634 313.06609 -580.39211 18032.442 0.99535964 + 95000 599.1335 -5491.6607 1249.0766 -6740.7373 1327.508 21805.341 -30346.173 299.52775 -747.34141 17928.72 1.001118 + 100000 632.97763 -5504.9781 1270.9776 -6775.9557 1348.4638 21759.337 -30349.51 304.7796 -112.23793 17469.352 1.0274431 +Loop time of 632.978 on 12 procs for 100000 steps with 1800 atoms + +Performance: 13.650 ns/day, 1.758 hours/ns, 157.983 timesteps/s +95.0% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 307.42 | 344.2 | 378.91 | 110.2 | 54.38 +Bond | 1.1476 | 1.2339 | 1.3345 | 6.3 | 0.19 +Kspace | 109.33 | 144.47 | 180.71 | 170.1 | 22.82 +Neigh | 25.619 | 25.671 | 25.708 | 0.6 | 4.06 +Comm | 41.234 | 45.135 | 50.464 | 52.8 | 7.13 +Output | 0.0012664 | 0.001324 | 0.0018066 | 0.4 | 0.00 +Modify | 46.059 | 59.064 | 69.016 | 114.7 | 9.33 +Other | | 13.2 | | | 2.09 + +Nlocal: 150.000 ave 160 max 138 min +Histogram: 2 0 0 2 1 1 3 0 0 3 +Nghost: 6169.08 ave 6215 max 6126 min +Histogram: 1 1 2 2 0 1 3 0 1 1 +Neighs: 88745.0 ave 98807 max 82382 min +Histogram: 3 0 1 3 0 3 1 0 0 1 + +Total # of neighbors = 1064940 +Ave neighs/atom = 591.63333 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 4480 +Dangerous builds = 8 +PPPM initialization ... + using 12-bit tables for long-range coulomb (src/lammps/src/kspace.cpp:339) + G vector (1/distance) = 0.25148052 + grid = 18 18 18 + stencil order = 5 + estimated absolute RMS force accuracy = 0.0034663752 + estimated relative force accuracy = 1.0438886e-05 + using double precision FFTW3 + 3d grid and FFT values/proc = 3328 648 +FEP settings ... + temperature = 300.000000 + tail no + 1-1 charge + 2-2 charge +Setting up Verlet run ... + Unit style : real + Current step : 0 + Time step : 1 +Per MPI rank memory allocation (min/avg/max) = 8.210 | 8.549 | 8.629 Mbytes +Step TotEng KinEng PotEng E_vdwl E_coul E_long Temp Press Density v_lambda v_qO v_qH + 0 -5504.9889 1270.9776 -6775.9665 1348.4638 21857.535 -30447.719 304.7796 -83.574867 1.0274431 1 -0.8476 0.4238 + 5000 -5524.9498 1270.0815 -6795.0313 1351.1305 21827.149 -30444.933 304.5647 -593.70775 1.005159 0.9975 -0.845481 0.4227405 + 10000 -5540.3394 1230.4582 -6770.7976 1419.9827 21833.217 -30447.512 295.06306 390.92433 1.0060179 0.995 -0.843362 0.421681 + 15000 -5552.7887 1238.4753 -6791.264 1335.4158 21841.316 -30448.525 296.98555 -977.57176 1.0018216 0.9925 -0.841243 0.4206215 + 20000 -5571.4362 1242.7492 -6814.1854 1430.7811 21758.542 -30446.37 298.01044 389.91739 1.0176182 0.99 -0.839124 0.419562 + 25000 -5460.6807 1271.7643 -6732.445 1445.8579 21824.91 -30444.435 304.96824 662.28347 0.99362968 0.9875 -0.837005 0.4185025 + 30000 -5454.6572 1289.2653 -6743.9226 1383.6837 21875.483 -30446.254 309.16498 76.696731 1.0117008 0.985 -0.834886 0.417443 + 35000 -5460.3689 1262.5044 -6722.8733 1424.7799 21854.486 -30444.887 302.74772 469.28759 0.99223648 0.9825 -0.832767 0.4163835 + 40000 -5617.7692 1259.5855 -6877.3547 1466.8238 21653.475 -30448.558 302.04777 518.56945 1.0149626 0.98 -0.830648 0.415324 + 45000 -5498.7892 1260.7599 -6759.5491 1354.8241 21911.823 -30445.433 302.32939 36.724958 1.0199193 0.9775 -0.828529 0.4142645 + 50000 -5556.2521 1276.3605 -6832.6126 1408.5453 21757.203 -30447.43 306.0704 38.976819 1.012915 0.975 -0.82641 0.413205 + 55000 -5513.8511 1239.4864 -6753.3375 1378.8961 21910.688 -30446.837 297.22802 -155.09229 0.99684598 0.9725 -0.824291 0.4121455 + 60000 -5482.86 1287.2484 -6770.1084 1383.4644 21876.85 -30446.035 308.68131 -23.984269 1.002056 0.97 -0.822172 0.411086 + 65000 -5556.4674 1243.4649 -6799.9323 1374.1364 21841.845 -30449.652 298.18207 13.80546 1.0185986 0.9675 -0.820053 0.4100265 + 70000 -5509.3689 1255.8787 -6765.2476 1342.6439 21905.378 -30448.437 301.15889 -636.57169 1.0013923 0.965 -0.817934 0.408967 + 75000 -5599.5463 1235.6343 -6835.1807 1391.5344 21779.525 -30444.409 296.3043 -272.25195 1.0096277 0.9625 -0.815815 0.4079075 + 80000 -5505.7102 1228.1399 -6733.8502 1402.1931 21862.826 -30444.663 294.50714 287.56695 1.007265 0.96 -0.813696 0.406848 + 85000 -5615.9836 1228.8806 -6844.8643 1412.2136 21728.301 -30447.357 294.68477 88.808898 1.0201101 0.9575 -0.811577 0.4057885 + 90000 -5445.8525 1286.0493 -6731.9017 1365.0964 21944.508 -30446.123 308.39376 -159.5813 0.99818678 0.955 -0.809458 0.404729 + 95000 -5555.6599 1255.1923 -6810.8522 1487.4112 21697.426 -30446.382 300.99428 1056.7026 1.0047794 0.9525 -0.807339 0.4036695 + 100000 -5423.2205 1299.4514 -6722.6719 1340.3931 21969.252 -30445.58 311.60759 -104.22862 1.0205672 0.95 -0.80522 0.40261 + 105000 -5510.0668 1219.7044 -6729.7712 1422.1714 21857.811 -30444.935 292.48431 965.21304 1.0267571 0.9475 -0.803101 0.4015505 + 110000 -5487.6062 1264.3775 -6751.9838 1383.7805 21872.105 -30438.176 303.19689 5.0812841 1.0038721 0.945 -0.800982 0.400491 + 115000 -5584.4825 1223.5314 -6808.0139 1305.413 21904.363 -30442.927 293.40202 -578.05444 1.0328242 0.9425 -0.798863 0.3994315 + 120000 -5523.0074 1287.4784 -6810.4858 1458.6493 21678.215 -30441.67 308.73646 671.54744 1.0055922 0.94 -0.796744 0.398372 + 125000 -5523.9631 1261.6061 -6785.5692 1451.4065 21774.541 -30440.463 302.5323 943.71106 1.023251 0.9375 -0.794625 0.3973125 + 130000 -5480.6587 1228.3138 -6708.9725 1318.5357 22013.43 -30444.357 294.54883 -484.16808 1.0024483 0.935 -0.792506 0.396253 + 135000 -5515.4922 1236.63 -6752.1222 1405.2286 21838.239 -30444.636 296.54306 -33.044871 0.99099073 0.9325 -0.790387 0.3951935 + 140000 -5636.9585 1190.5857 -6827.5442 1401.0211 21837.041 -30443.664 285.50167 -131.26918 1.0073498 0.93 -0.788268 0.394134 + 145000 -5520.4299 1242.8162 -6763.246 1425.5354 21801.806 -30441.82 298.02649 375.70839 1.0055963 0.9275 -0.786149 0.3930745 + 150000 -5466.2108 1221.5587 -6687.7695 1315.243 22002.492 -30445.561 292.92898 -458.87734 1.0111682 0.925 -0.78403 0.392015 + 155000 -5461.822 1239.1272 -6700.9492 1371.2953 21931.804 -30440.608 297.14189 404.63471 1.02125 0.9225 -0.781911 0.3909555 + 160000 -5581.5531 1235.5332 -6817.0862 1387.24 21799.458 -30439.508 296.28004 -313.78406 1.005984 0.92 -0.779792 0.389896 + 165000 -5518.8078 1273.6502 -6792.4581 1375.9673 21862.55 -30442.152 305.42049 -35.844433 1.0122448 0.9175 -0.777673 0.3888365 + 170000 -5515.2831 1285.6763 -6800.9594 1404.6207 21813.634 -30442.455 308.30433 -58.986086 1.010512 0.915 -0.775554 0.387777 + 175000 -5547.8632 1237.0346 -6784.8979 1371.988 21866.075 -30441.096 296.64009 8.7538748 1.0204871 0.9125 -0.773435 0.3867175 + 180000 -5550.9154 1284.8683 -6835.7837 1386.3915 21803.513 -30444.858 308.11056 107.40069 1.0274352 0.91 -0.771316 0.385658 + 185000 -5536.9233 1270.2304 -6807.1538 1398.1504 21809.601 -30443.002 304.60042 -174.16652 0.99755738 0.9075 -0.769197 0.3845985 + 190000 -5518.9253 1280.5079 -6799.4332 1373.9909 21862.478 -30442.723 307.06496 9.6282943 1.0156746 0.905 -0.767078 0.383539 + 195000 -5574.7502 1214.359 -6789.1092 1411.3746 21807.743 -30442.797 291.20249 459.43071 1.0173851 0.9025 -0.764959 0.3824795 + 200000 -5586.1746 1230.4227 -6816.5973 1532.8087 21640.232 -30440.345 295.05456 1663.9344 1.0127589 0.9 -0.76284 0.38142 + 205000 -5530.762 1262.3017 -6793.0637 1421.2001 21765.141 -30437.136 302.69912 362.504 1.0112973 0.8975 -0.760721 0.3803605 + 210000 -5482.179 1264.6727 -6746.8517 1332.5039 21878.405 -30436.424 303.26767 -518.59319 1.0144674 0.895 -0.758602 0.379301 + 215000 -5548.4664 1254.2078 -6802.6742 1439.71 21751.539 -30437.604 300.7582 936.14316 1.0295052 0.8925 -0.756483 0.3782415 + 220000 -5566.4852 1224.3179 -6790.8031 1366.173 21833.016 -30437.139 293.59062 -368.10245 1.0080289 0.89 -0.754364 0.377182 + 225000 -5607.3792 1195.1042 -6802.4834 1434.8209 21716.922 -30436.88 286.58521 313.99343 1.0126994 0.8875 -0.752245 0.3761225 + 230000 -5685.3593 1214.5576 -6899.9169 1452.8971 21628.537 -30433.937 291.2501 -34.04353 1.0037164 0.885 -0.750126 0.375063 + 235000 -5458.1208 1277.1379 -6735.2588 1388.7878 21861.855 -30438.247 306.25684 26.373018 1.0027032 0.8825 -0.748007 0.3740035 + 240000 -5471.8252 1281.8041 -6753.6293 1442.5812 21792.96 -30437.921 307.37578 706.48275 1.0008045 0.88 -0.745888 0.372944 + 245000 -5459.3621 1258.1055 -6717.4676 1394.4965 21879.415 -30435.773 301.69286 446.21806 1.0155238 0.8775 -0.743769 0.3718845 + 250000 -5614.6519 1198.1053 -6812.7572 1397.7454 21767.081 -30436.857 287.30486 146.62072 1.0273533 0.875 -0.74165 0.370825 + 255000 -5573.1837 1250.4489 -6823.6325 1354.8074 21829.39 -30434.368 299.85681 -608.07208 1.0009113 0.8725 -0.739531 0.3697655 + 260000 -5630.451 1202.8398 -6833.2907 1380.657 21778.541 -30440.821 288.44019 -195.24451 1.019413 0.87 -0.737412 0.368706 + 265000 -5533.5948 1273.5591 -6807.1539 1419.8611 21794.887 -30438.706 305.39863 339.13963 1.0138164 0.8675 -0.735293 0.3676465 + 270000 -5640.803 1204.5526 -6845.3556 1495.5078 21652.609 -30438.707 288.85092 1463.7932 1.0356466 0.865 -0.733174 0.366587 + 275000 -5514.7021 1283.4057 -6798.1078 1340.6427 21864.301 -30436.815 307.75984 -449.32236 1.0128657 0.8625 -0.731055 0.3655275 + 280000 -5610.2442 1259.5217 -6869.7659 1411.1009 21686.723 -30440.226 302.03248 -123.59673 1.0128803 0.86 -0.728936 0.364468 + 285000 -5550.4897 1281.3066 -6831.7963 1373.2421 21810.977 -30438.399 307.25647 -248.99043 1.0185983 0.8575 -0.726817 0.3634085 + 290000 -5553.4882 1240.2591 -6793.7473 1391.9459 21802.734 -30437.51 297.4133 -158.86961 1.0031364 0.855 -0.724698 0.362349 + 295000 -5524.2791 1255.0193 -6779.2984 1449.4799 21776.57 -30434.687 300.95281 952.9175 1.0131377 0.8525 -0.722579 0.3612895 + 300000 -5476.0212 1284.8796 -6760.9008 1324.2729 21929.73 -30436.686 308.11327 -465.3353 1.0043923 0.85 -0.72046 0.36023 + 305000 -5438.0362 1298.3446 -6736.3809 1407.4391 21826.292 -30430.432 311.34219 517.43655 1.0077139 0.8475 -0.718341 0.3591705 + 310000 -5535.7453 1264.3612 -6800.1065 1343.2269 21832.58 -30432.621 303.19298 -745.84969 1.0074616 0.845 -0.716222 0.358111 + 315000 -5502.0889 1225.373 -6727.4619 1408.6878 21868.726 -30430.42 293.84363 391.97607 1.0057154 0.8425 -0.714103 0.3570515 + 320000 -5551.1885 1247.6582 -6798.8467 1441.5698 21745.518 -30434.212 299.18761 602.66464 1.0106275 0.84 -0.711984 0.355992 + 325000 -5472.7566 1268.0116 -6740.7682 1396.6033 21874.12 -30434.532 304.06836 68.811265 0.9970358 0.8375 -0.709865 0.3549325 + 330000 -5572.2981 1246.5687 -6818.8668 1407.6183 21773.909 -30431.719 298.92634 224.12439 1.0246504 0.835 -0.707746 0.353873 + 335000 -5499.3422 1205.6434 -6704.9856 1285.2624 21998.798 -30434.913 289.11249 -817.85014 1.0147781 0.8325 -0.705627 0.3528135 + 340000 -5562.2169 1219.1939 -6781.4108 1417.0604 21795.894 -30433.607 292.36189 174.41821 1.0058188 0.83 -0.703508 0.351754 + 345000 -5520.3776 1219.9601 -6740.3377 1367.4757 21877.315 -30431.491 292.54563 -222.24612 1.0043509 0.8275 -0.701389 0.3506945 + 350000 -5552.9644 1291.4697 -6844.4341 1376.2399 21787.524 -30434.036 309.69358 -160.81114 1.0193989 0.825 -0.69927 0.349635 + 355000 -5592.6369 1199.1021 -6791.739 1447.0154 21758.057 -30432.531 287.54389 514.62059 1.0124065 0.8225 -0.697151 0.3485755 + 360000 -5529.6905 1251.9083 -6781.5988 1413.2964 21787.146 -30433.685 300.20679 176.70328 1.0073792 0.82 -0.695032 0.347516 + 365000 -5555.2054 1274.6375 -6829.8429 1394.8131 21789.095 -30432.379 305.65724 -24.957537 1.0152213 0.8175 -0.692913 0.3464565 + 370000 -5549.5587 1233.5667 -6783.1253 1413.7135 21800.689 -30434.305 295.80847 536.16714 1.0185709 0.815 -0.690794 0.345397 + 375000 -5600.3525 1246.9961 -6847.3486 1429.7166 21731.282 -30431.632 299.02885 153.53182 1.0080114 0.8125 -0.688675 0.3443375 + 380000 -5546.5526 1248.9012 -6795.4538 1492.7679 21715.426 -30433.665 299.48569 1426.4389 1.0177045 0.81 -0.686556 0.343278 + 385000 -5526.007 1233.736 -6759.7429 1424.1481 21831.876 -30433.42 295.84907 794.1626 1.0185785 0.8075 -0.684437 0.3422185 + 390000 -5596.7029 1243.227 -6839.9299 1421.1174 21693.364 -30433.154 298.12502 108.87841 1.0093018 0.805 -0.682318 0.341159 + 395000 -5546.0663 1265.2707 -6811.337 1447.5582 21710.518 -30434.09 303.41109 435.10835 1.0032239 0.8025 -0.680199 0.3400995 + 400000 -5512.3512 1228.2014 -6740.5526 1323.056 21887.642 -30435.079 294.52189 -597.96971 1.0128567 0.8 -0.67808 0.33904 + 405000 -5452.0555 1256.5329 -6708.5884 1343.4033 21932.615 -30422.632 301.31577 -151.04994 1.0109662 0.7975 -0.675961 0.3379805 + 410000 -5564.1544 1254.1139 -6818.2683 1392.8911 21749.311 -30425.522 300.73568 -588.71236 0.99221624 0.795 -0.673842 0.336921 + 415000 -5492.9731 1270.5302 -6763.5033 1406.1534 21801.397 -30431.784 304.6723 283.61097 1.0125944 0.7925 -0.671723 0.3358615 + 420000 -5595.3267 1203.6829 -6799.0097 1342.6073 21860.776 -30429.796 288.64237 -326.4097 1.0197083 0.79 -0.669604 0.334802 + 425000 -5526.916 1270.6811 -6797.5971 1386.3023 21838.644 -30429.504 304.70849 59.964397 1.0107947 0.7875 -0.667485 0.3337425 + 430000 -5463.4519 1253.2065 -6716.6584 1368.6563 21900.489 -30429.468 300.51809 163.25845 1.0046663 0.785 -0.665366 0.332683 + 435000 -5587.8678 1212.7905 -6800.6583 1357.107 21806.156 -30427.795 290.82636 -669.59026 1.0055054 0.7825 -0.663247 0.3316235 + 440000 -5579.1616 1230.2594 -6809.421 1367.4502 21836.582 -30425.594 295.01539 -322.05693 1.0101379 0.78 -0.661128 0.330564 + 445000 -5532.555 1201.8734 -6734.4284 1386.7876 21878.725 -30427.156 288.20845 -45.792864 1.0052685 0.7775 -0.659009 0.3295045 + 450000 -5569.8426 1278.6957 -6848.5383 1414.4583 21749.442 -30430.096 306.63038 236.64985 1.0219043 0.775 -0.65689 0.328445 + 455000 -5449.1927 1264.9233 -6714.116 1326.8274 21933.446 -30429.11 303.32777 -442.03731 0.99413577 0.7725 -0.654771 0.3273855 + 460000 -5554.4541 1270.3142 -6824.7683 1333.1464 21840.149 -30429.094 304.6205 -747.1109 1.0160003 0.77 -0.652652 0.326326 + 465000 -5528.8036 1284.1598 -6812.9634 1380.0206 21775.39 -30428.738 307.94068 -20.995822 1.0245304 0.7675 -0.650533 0.3252665 + 470000 -5512.8124 1236.1415 -6748.9539 1406.7843 21790.482 -30429.605 296.42591 302.60013 1.0139043 0.765 -0.648414 0.324207 + 475000 -5498.2571 1273.8167 -6772.0739 1435.6038 21790.464 -30429.5 305.46041 483.68473 1.0001103 0.7625 -0.646295 0.3231475 + 480000 -5559.1482 1225.6395 -6784.7878 1384.7454 21844.676 -30428.007 293.90755 30.99406 1.0121504 0.76 -0.644176 0.322088 + 485000 -5496.7804 1282.5658 -6779.3462 1415.6133 21800.486 -30429.421 307.55843 530.11667 1.0187969 0.7575 -0.642057 0.3210285 + 490000 -5537.517 1233.6775 -6771.1945 1371.616 21849.424 -30427.207 295.83505 -358.41182 0.99575692 0.755 -0.639938 0.319969 + 495000 -5554.5243 1212.6181 -6767.1424 1404.0842 21816.065 -30425.237 290.78503 209.62449 1.0112618 0.7525 -0.637819 0.3189095 + 500000 -5622.7664 1199.6165 -6822.3829 1327.3169 21871.075 -30428.955 287.66724 -1311.6743 0.99857938 0.75 -0.6357 0.31785 + 505000 -5480.3266 1256.8007 -6737.1273 1299.6547 21957.857 -30425.971 301.37997 -899.16025 1.0089969 0.7475 -0.633581 0.3167905 + 510000 -5498.9495 1225.5254 -6724.4749 1348.4413 21919.082 -30425.115 293.88018 -394.00866 1.006416 0.745 -0.631462 0.315731 + 515000 -5551.2688 1235.3365 -6786.6053 1382.192 21812.545 -30425.295 296.23288 -234.82847 1.000347 0.7425 -0.629343 0.3146715 + 520000 -5580.0926 1192.4884 -6772.581 1455.062 21751.768 -30422.995 285.95793 899.21376 1.0184475 0.74 -0.627224 0.313612 + 525000 -5536.1025 1254.7959 -6790.8984 1402.6731 21772.842 -30423.645 300.89923 -179.78368 1.0012739 0.7375 -0.625105 0.3125525 + 530000 -5475.5649 1274.227 -6749.7919 1422.191 21806.648 -30423.468 305.5588 412.66908 1.0021064 0.735 -0.622986 0.311493 + 535000 -5535.7717 1220.4498 -6756.2215 1277.0625 21937.566 -30422.661 292.66305 -1373.8334 1.0012496 0.7325 -0.620867 0.3104335 + 540000 -5559.6489 1229.0591 -6788.708 1373.477 21802.469 -30424.781 294.72757 -356.60453 1.0077789 0.73 -0.618748 0.309374 + 545000 -5550.6131 1217.3371 -6767.9502 1356.1731 21855.265 -30426.343 291.91664 -410.40203 1.0164552 0.7275 -0.616629 0.3083145 + 550000 -5552.1925 1225.9662 -6778.1588 1407.9503 21859.108 -30426.047 293.98589 371.95292 1.0041485 0.725 -0.61451 0.307255 + 555000 -5474.3141 1269.9785 -6744.2926 1380.6756 21869.918 -30423.625 304.54001 479.97718 1.0348696 0.7225 -0.612391 0.3061955 + 560000 -5529.7258 1228.0526 -6757.7784 1371.1262 21873.308 -30423.612 294.4862 10.021913 1.0178349 0.72 -0.610272 0.305136 + 565000 -5578.7184 1238.3238 -6817.0421 1364.6801 21831.12 -30424.526 296.94922 -210.96144 1.0145779 0.7175 -0.608153 0.3040765 + 570000 -5590.3739 1178.8219 -6769.1958 1342.169 21850.785 -30426.607 282.68072 -726.65935 1.0040162 0.715 -0.606034 0.303017 + 575000 -5538.2977 1301.251 -6839.5488 1351.7057 21811.514 -30423.38 312.03914 -697.06828 1.0043954 0.7125 -0.603915 0.3019575 + 580000 -5489.5408 1264.601 -6754.1418 1361.3606 21879.773 -30427.021 303.25049 0.8028479 1.0182595 0.71 -0.601796 0.300898 + 585000 -5564.4144 1237.0831 -6801.4975 1372.1667 21823.237 -30425.788 296.6517 -219.05406 0.99937042 0.7075 -0.599677 0.2998385 + 590000 -5642.7568 1231.4142 -6874.171 1428.0404 21658.491 -30425.167 295.29231 186.19832 1.0221448 0.705 -0.597558 0.298779 + 595000 -5623.2882 1246.7224 -6870.0106 1396.3321 21739.583 -30424.594 298.96321 -90.586397 1.0254105 0.7025 -0.595439 0.2977195 + 600000 -5543.5677 1248.7682 -6792.3359 1346.9267 21827.244 -30425.377 299.45379 -291.40394 1.0195264 0.7 -0.59332 0.29666 + 605000 -5474.4972 1249.0604 -6723.5576 1386.9424 21886.849 -30420.093 299.52387 320.72375 1.0078262 0.6975 -0.591201 0.2956005 + 610000 -5444.4392 1268.064 -6712.5032 1336.2434 21909.556 -30420.625 304.08091 -498.11374 1.003753 0.695 -0.589082 0.294541 + 615000 -5576.1847 1305.9815 -6882.1662 1436.2497 21635.143 -30423.656 313.1735 278.60539 1.0176729 0.6925 -0.586963 0.2934815 + 620000 -5527.0897 1239.3078 -6766.3976 1371.3853 21850.583 -30424.469 297.1852 -80.897508 1.007611 0.69 -0.584844 0.292422 + 625000 -5552.9285 1232.0128 -6784.9412 1359.8043 21819.102 -30422.799 295.43585 -417.82041 1.0072509 0.6875 -0.582725 0.2913625 + 630000 -5532.1703 1252.0392 -6784.2094 1416.1466 21807.096 -30422.422 300.23817 369.4296 1.0039576 0.685 -0.580606 0.290303 + 635000 -5571.3255 1249.4908 -6820.8163 1369.6703 21808.738 -30421.932 299.62706 -297.44918 1.0196309 0.6825 -0.578487 0.2892435 + 640000 -5525.2478 1199.2506 -6724.4984 1369.7668 21894.477 -30421.099 287.5795 -72.546596 1.0007716 0.68 -0.576368 0.288184 + 645000 -5542.8568 1255.2316 -6798.0884 1331.6921 21842.315 -30419.358 301.0037 -814.5638 1.0097587 0.6775 -0.574249 0.2871245 + 650000 -5516.7418 1289.6956 -6806.4374 1400.2031 21783.51 -30421.477 309.26815 246.24345 1.0195846 0.675 -0.57213 0.286065 + 655000 -5524.8554 1265.5421 -6790.3975 1416.5196 21786.917 -30421.834 303.47617 529.12757 1.021072 0.6725 -0.570011 0.2850055 + 660000 -5460.2238 1295.8973 -6756.1212 1381.0945 21874.034 -30423.779 310.75533 569.85093 1.0270172 0.67 -0.567892 0.283946 + 665000 -5466.9896 1224.4909 -6691.4805 1377.5505 21903.453 -30415.905 293.63212 415.21587 1.0210181 0.6675 -0.565773 0.2828865 + 670000 -5508.3465 1292.0903 -6800.4368 1402.8444 21826.305 -30419.345 309.8424 362.60575 1.0200837 0.665 -0.563654 0.281827 + 675000 -5529.9825 1270.4695 -6800.452 1392.861 21763.662 -30422.666 304.65774 16.761021 1.0167408 0.6625 -0.561535 0.2807675 + 680000 -5589.5488 1256.7076 -6846.2564 1389.8603 21765.396 -30421.726 301.35765 -118.83353 1.0212456 0.66 -0.559416 0.279708 + 685000 -5461.9707 1282.6044 -6744.5751 1346.0454 21890.857 -30417.827 307.56769 -213.07775 1.0049252 0.6575 -0.557297 0.2786485 + 690000 -5591.4518 1229.1635 -6820.6153 1420.1767 21731.473 -30421.278 294.75259 194.31079 1.0204392 0.655 -0.555178 0.277589 + 695000 -5558.442 1216.2827 -6774.7247 1334.5019 21858.035 -30423.287 291.66379 -603.48558 1.0061448 0.6525 -0.553059 0.2765295 + 700000 -5492.653 1235.4799 -6728.1329 1391.2365 21871.21 -30420.123 296.26726 -41.586711 0.99217704 0.65 -0.55094 0.27547 + 705000 -5481.7595 1269.4684 -6751.2279 1323.5824 21897.228 -30413.262 304.4177 -459.11823 1.0141534 0.6475 -0.548821 0.2744105 + 710000 -5599.7613 1259.4323 -6859.1936 1383.1749 21741.135 -30418.84 302.01104 -358.23129 1.0156425 0.645 -0.546702 0.273351 + 715000 -5532.5713 1228.4966 -6761.0679 1396.4462 21859.914 -30416.53 294.59266 101.27196 1.0038296 0.6425 -0.544583 0.2722915 + 720000 -5584.0626 1229.4865 -6813.549 1388.5647 21769.406 -30418.339 294.83004 -792.67304 0.97380809 0.64 -0.542464 0.271232 + 725000 -5534.3566 1268.5686 -6802.9252 1423.0724 21758.618 -30416.045 304.20193 890.82213 1.0379062 0.6375 -0.540345 0.2701725 + 730000 -5578.7464 1212.5455 -6791.2919 1336.9104 21848.801 -30419.787 290.76761 -553.70126 1.0148611 0.635 -0.538226 0.269113 + 735000 -5618.1113 1206.2457 -6824.357 1375.0888 21801.81 -30417.694 289.25693 -427.22774 0.99982113 0.6325 -0.536107 0.2680535 + 740000 -5465.2032 1230.0118 -6695.215 1379.8548 21895.413 -30416.747 294.95602 315.63989 1.008153 0.63 -0.533988 0.266994 + 745000 -5578.5259 1240.851 -6819.3769 1426.7154 21759.96 -30418.763 297.55525 92.359506 0.99991361 0.6275 -0.531869 0.2659345 + 750000 -5534.8877 1256.4642 -6791.3518 1421.6831 21739.034 -30413.197 301.29928 158.88605 1.0081156 0.625 -0.52975 0.264875 + 755000 -5592.2413 1257.2462 -6849.4875 1366.9032 21783.562 -30418.46 301.48681 -581.61417 1.0056237 0.6225 -0.527631 0.2638155 + 760000 -5588.4063 1228.2425 -6816.6488 1410.3305 21756.183 -30416.341 294.53174 176.20865 1.011915 0.62 -0.525512 0.262756 + 765000 -5474.386 1218.7547 -6693.1407 1352.12 21939.502 -30416.343 292.25658 -320.6219 0.99100601 0.6175 -0.523393 0.2616965 + 770000 -5599.397 1242.7375 -6842.1345 1434.302 21734.26 -30418.21 298.00763 586.02998 1.0211757 0.615 -0.521274 0.260637 + 775000 -5508.8091 1258.5638 -6767.3729 1400.6493 21823.313 -30417.849 301.80278 178.09524 0.99995792 0.6125 -0.519155 0.2595775 + 780000 -5455.2192 1320.084 -6775.3032 1366.0858 21855.521 -30419.279 316.55527 160.2504 1.0264157 0.61 -0.517036 0.258518 + 785000 -5541.1905 1242.1565 -6783.347 1363.1625 21827.702 -30417.255 297.86832 -394.6575 1.0087294 0.6075 -0.514917 0.2574585 + 790000 -5569.3567 1256.7441 -6826.1008 1410.0504 21767.374 -30420.811 301.36641 -96.271799 0.99839497 0.605 -0.512798 0.256399 + 795000 -5537.502 1288.0636 -6825.5656 1435.9958 21711.599 -30417.456 308.8768 221.61169 1.0095005 0.6025 -0.510679 0.2553395 + 800000 -5560.8018 1240.0106 -6800.8124 1438.3265 21719.004 -30418.763 297.35373 775.89511 1.0301028 0.6 -0.50856 0.25428 + 805000 -5565.4599 1257.3617 -6822.8216 1394.5641 21770.009 -30412.251 301.5145 -173.96353 1.005747 0.5975 -0.506441 0.2532205 + 810000 -5497.4553 1284.5004 -6781.9556 1376.4375 21814.087 -30416.038 308.02234 188.25994 1.0214966 0.595 -0.504322 0.252161 + 815000 -5535.8991 1240.611 -6776.5101 1409.3101 21787.935 -30417.071 297.4977 262.65044 1.0117069 0.5925 -0.502203 0.2511015 + 820000 -5517.0729 1299.475 -6816.5479 1327.7472 21854.691 -30412.417 311.61325 -784.1981 1.0122843 0.59 -0.500084 0.250042 + 825000 -5632.9653 1192.4397 -6825.405 1360.7386 21778.67 -30413.486 285.94624 -388.42674 1.0232857 0.5875 -0.497965 0.2489825 + 830000 -5574.662 1257.8343 -6832.4962 1407.1117 21747.991 -30412.959 301.62783 -178.94106 1.0050031 0.585 -0.495846 0.247923 + 835000 -5517.9029 1249.5464 -6767.4493 1434.0858 21785.24 -30413.924 299.64041 516.05215 1.0102407 0.5825 -0.493727 0.2468635 + 840000 -5485.6365 1270.3474 -6755.9839 1335.1605 21840.353 -30411.626 304.62848 -421.00228 1.0133415 0.58 -0.491608 0.245804 + 845000 -5435.7784 1276.5836 -6712.362 1385.5475 21848.907 -30414.112 306.12391 556.14871 1.0239928 0.5775 -0.489489 0.2447445 + 850000 -5564.9093 1250.3893 -6815.2987 1376.9527 21812.84 -30414.994 299.84254 -103.38162 1.0245668 0.575 -0.48737 0.243685 + 855000 -5452.5901 1262.6663 -6715.2564 1378.7612 21881.921 -30415.305 302.78654 34.86207 0.99556351 0.5725 -0.485251 0.2426255 + 860000 -5515.222 1248.0439 -6763.2659 1305.4039 21931.869 -30415.835 299.28011 -908.54473 1.0020125 0.57 -0.483132 0.241566 + 865000 -5460.554 1245.0116 -6705.5656 1376.9247 21872.285 -30415.226 298.55297 -233.80476 0.98431622 0.5675 -0.481013 0.2405065 + 870000 -5476.9636 1272.0524 -6749.016 1362.2558 21845.497 -30416.364 305.03732 -99.216354 1.0114633 0.565 -0.478894 0.239447 + 875000 -5507.2163 1297.9312 -6805.1475 1404.1772 21725.275 -30415.229 311.24305 -162.72463 1.0065653 0.5625 -0.476775 0.2383875 + 880000 -5618.916 1185.2711 -6804.1871 1427.7925 21743.213 -30415.522 284.22724 324.75619 1.0135333 0.56 -0.474656 0.237328 + 885000 -5525.3698 1218.8864 -6744.2562 1360.4312 21880.194 -30413.898 292.28816 -244.38329 1.0135275 0.5575 -0.472537 0.2362685 + 890000 -5505.6369 1238.1666 -6743.8034 1412.5727 21840.193 -30413.202 296.91152 485.94408 1.0063342 0.555 -0.470418 0.235209 + 895000 -5602.1542 1221.0463 -6823.2005 1454.4394 21713.82 -30416.858 292.8061 268.08086 0.99556757 0.5525 -0.468299 0.2341495 + 900000 -5603.8654 1303.5628 -6907.4282 1499.2346 21573.659 -30417.214 312.59349 905.77809 1.0203813 0.55 -0.46618 0.23309 + 905000 -5561.5364 1235.1607 -6796.697 1317.7926 21863.665 -30411.262 296.19071 -899.61575 1.0112152 0.5475 -0.464061 0.2320305 + 910000 -5498.8354 1208.5542 -6707.3895 1394.7617 21874.374 -30410.334 289.81049 474.25045 1.0127648 0.545 -0.461942 0.230971 + 915000 -5592.5796 1194.943 -6787.5226 1393.8431 21788.893 -30415.252 286.54655 127.92132 1.0188573 0.5425 -0.459823 0.2299115 + 920000 -5496.6202 1245.2081 -6741.8283 1351.0512 21874.145 -30404.465 298.60007 2.9909425 1.0206197 0.54 -0.457704 0.228852 + 925000 -5491.3049 1264.9518 -6756.2567 1431.8079 21770.193 -30410.054 303.3346 495.87301 1.0083522 0.5375 -0.455585 0.2277925 + 930000 -5487.3571 1267.2843 -6754.6414 1386.5736 21833.656 -30414.507 303.89394 15.771272 1.0000236 0.535 -0.453466 0.226733 + 935000 -5476.9897 1259.4651 -6736.4548 1407.6301 21830.961 -30406.59 302.0189 581.34887 1.0155958 0.5325 -0.451347 0.2256735 + 940000 -5488.9916 1314.4567 -6803.4483 1466.6629 21737.432 -30413.446 315.20584 1238.1624 1.0288595 0.53 -0.449228 0.224614 + 945000 -5550.7311 1300.1216 -6850.8527 1412.3482 21723.824 -30411.146 311.76831 -169.42496 1.0064279 0.5275 -0.447109 0.2235545 + 950000 -5606.1286 1246.8667 -6852.9952 1472.7784 21676.262 -30413.203 298.9978 518.15276 1.0015579 0.525 -0.44499 0.222495 + 955000 -5539.4856 1253.2903 -6792.7759 1415.4535 21747.222 -30412.732 300.53818 480.02479 1.0216323 0.5225 -0.442871 0.2214355 + 960000 -5535.7958 1215.1899 -6750.9857 1431.2781 21814.097 -30411.881 291.40173 608.69976 1.0136976 0.52 -0.440752 0.220376 + 965000 -5576.559 1234.6144 -6811.1734 1514.023 21649.351 -30410.737 296.05972 1520.794 1.0106841 0.5175 -0.438633 0.2193165 + 970000 -5519.6002 1277.0163 -6796.6165 1466.0566 21699.821 -30415.026 306.22766 510.68622 0.98687386 0.515 -0.436514 0.218257 + 975000 -5591.0137 1254.588 -6845.6017 1429.5069 21702.359 -30411.235 300.84939 297.03602 1.0251394 0.5125 -0.434395 0.2171975 + 980000 -5540.9566 1234.8073 -6775.7639 1338.2556 21868.37 -30412.541 296.10597 -289.71499 1.0212154 0.51 -0.432276 0.216138 + 985000 -5511.5459 1300.1097 -6811.6556 1334.8282 21875.173 -30411.512 311.76544 -693.16807 1.0141634 0.5075 -0.430157 0.2150785 + 990000 -5516.8247 1251.5481 -6768.3728 1358.6891 21823.881 -30410.037 300.1204 -279.3824 1.005663 0.505 -0.428038 0.214019 + 995000 -5524.3561 1215.9313 -6740.2874 1390.687 21855.683 -30411.04 291.57953 -53.642919 0.99690457 0.5025 -0.425919 0.2129595 + 1000000 -5562.5466 1221.827 -6784.3736 1297.5519 21915.287 -30414.226 292.99331 -874.65244 1.0214982 0.5 -0.4238 0.2119 + 1005000 -5542.8861 1229.0938 -6771.9799 1429.8443 21760.776 -30409.275 294.73589 294.86058 0.99993056 0.4975 -0.421681 0.2108405 + 1010000 -5448.4956 1256.3749 -6704.8706 1306.8444 21971.623 -30407.793 301.27788 -942.92568 0.99248512 0.495 -0.419562 0.209781 + 1015000 -5485.7411 1220.3873 -6706.1284 1245.6819 22024.308 -30407.597 292.64806 -1773.327 0.98578512 0.4925 -0.417443 0.2087215 + 1020000 -5502.2773 1265.1614 -6767.4388 1300.0129 21841.931 -30407.973 303.38487 -1114.324 1.0096025 0.49 -0.415324 0.207662 + 1025000 -5494.1313 1283.1074 -6777.2387 1385.6888 21791.255 -30409.205 307.6883 338.12878 1.0286322 0.4875 -0.413205 0.2066025 + 1030000 -5489.9259 1292.1724 -6782.0983 1417.8757 21798.83 -30411.578 309.86209 146.08806 0.99796155 0.485 -0.411086 0.205543 + 1035000 -5580.7036 1227.9308 -6808.6343 1399.7311 21795.838 -30405.508 294.45698 245.3411 1.0203353 0.4825 -0.408967 0.2044835 + 1040000 -5614.6078 1226.5654 -6841.1731 1447.8292 21673.75 -30407.74 294.12956 291.24488 1.012026 0.48 -0.406848 0.203424 + 1045000 -5535.8226 1284.8577 -6820.6803 1375.0415 21807.843 -30408.339 308.10803 -154.07664 1.0167214 0.4775 -0.404729 0.2023645 + 1050000 -5534.4123 1250.095 -6784.5074 1287.9566 21899.002 -30411.016 299.77196 -1161.4357 1.0099009 0.475 -0.40261 0.201305 + 1055000 -5509.4752 1264.9106 -6774.3858 1424.5808 21771.718 -30409.977 303.32473 730.35249 1.0166966 0.4725 -0.400491 0.2002455 + 1060000 -5551.4539 1255.686 -6807.1399 1431.3525 21716.649 -30408.994 301.11268 339.03445 1.0030856 0.47 -0.398372 0.199186 + 1065000 -5539.4142 1262.7344 -6802.1485 1334.5366 21827.192 -30412.447 302.80287 -814.37495 1.0065153 0.4675 -0.396253 0.1981265 + 1070000 -5556.1691 1278.0638 -6834.2329 1448.2492 21710.563 -30409.035 306.47886 526.92483 1.0118442 0.465 -0.394134 0.197067 + 1075000 -5553.9187 1230.9623 -6784.881 1372.5373 21816.292 -30409.602 295.18396 -636.049 0.99842907 0.4625 -0.392015 0.1960075 + 1080000 -5486.3143 1233.146 -6719.4602 1265.7838 21983.124 -30408.372 295.70759 -1226.6108 1.0051532 0.46 -0.389896 0.194948 + 1085000 -5593.4276 1252.6224 -6846.0499 1398.5687 21750.307 -30408.85 300.37801 -199.06834 1.0113585 0.4575 -0.387777 0.1938885 + 1090000 -5615.0746 1189.5983 -6804.6728 1411.201 21758.699 -30408.722 285.26488 205.20475 1.0115124 0.455 -0.385658 0.192829 + 1095000 -5491.0496 1265.9512 -6757.0008 1285.0166 21903.564 -30410.304 303.57426 -1204.071 1.0039435 0.4525 -0.383539 0.1917695 + 1100000 -5602.5736 1259.8652 -6862.4388 1429.2182 21709.793 -30410.235 302.11484 -5.292079 1.0081307 0.45 -0.38142 0.19071 + 1105000 -5491.1776 1274.3708 -6765.5484 1363.4219 21817.395 -30405.818 305.59328 -273.46222 1.0048241 0.4475 -0.379301 0.1896505 + 1110000 -5591.6046 1226.4913 -6818.096 1386.3645 21774.994 -30407.268 294.11181 -54.656076 1.0128633 0.445 -0.377182 0.188591 + 1115000 -5471.7003 1250.9094 -6722.6097 1461.8829 21768.591 -30406.09 299.96726 1171.0124 1.0122551 0.4425 -0.375063 0.1875315 + 1120000 -5629.5757 1215.4906 -6845.0663 1433.0141 21685.611 -30403.695 291.47385 159.7385 1.011959 0.44 -0.372944 0.186472 + 1125000 -5609.7131 1243.3529 -6853.066 1394.1435 21715.512 -30408.244 298.15521 -613.37653 1.001762 0.4375 -0.370825 0.1854125 + 1130000 -5517.8437 1236.2289 -6754.0726 1381.5497 21865.453 -30407.635 296.44686 -50.670512 0.99784522 0.435 -0.368706 0.184353 + 1135000 -5484.0424 1262.4577 -6746.5001 1373.1642 21882.225 -30407.476 302.73652 -109.81081 0.99319158 0.4325 -0.366587 0.1832935 + 1140000 -5464.3225 1242.5082 -6706.8308 1353.1364 21902.474 -30406.855 297.95266 -193.64239 0.99369216 0.43 -0.364468 0.182234 + 1145000 -5616.5098 1231.4613 -6847.9711 1442.3498 21665.897 -30406.708 295.3036 197.4384 1.0013434 0.4275 -0.362349 0.1811745 + 1150000 -5570.9461 1220.6192 -6791.5654 1362.4483 21843.16 -30406.108 292.70369 -472.38468 0.99919513 0.425 -0.36023 0.180115 + 1155000 -5581.5228 1250.4929 -6832.0157 1399.2703 21713.872 -30407.442 299.86736 68.67313 1.0186094 0.4225 -0.358111 0.1790555 + 1160000 -5442.4593 1284.4383 -6726.8977 1424.4524 21823.753 -30403.289 308.00746 659.43865 1.0016333 0.42 -0.355992 0.177996 + 1165000 -5488.402 1266.3593 -6754.7613 1394.1319 21804.35 -30407.391 303.67212 327.86135 1.0142865 0.4175 -0.353873 0.1769365 + 1170000 -5476.149 1306.9735 -6783.1225 1429.0063 21755.183 -30406.784 313.41139 152.9988 0.9921559 0.415 -0.351754 0.175877 + 1175000 -5552.7195 1245.1137 -6797.8332 1460.5394 21718.862 -30405.892 298.57744 929.85903 1.0138017 0.4125 -0.349635 0.1748175 + 1180000 -5424.9372 1280.7552 -6705.6924 1363.0602 21952.781 -30406.655 307.12424 -15.436219 0.99469946 0.41 -0.347516 0.173758 + 1185000 -5547.6406 1244.8045 -6792.4451 1449.3378 21752.476 -30407.929 298.50331 1010.2202 1.029804 0.4075 -0.345397 0.1726985 + 1190000 -5518.33 1248.4316 -6766.7617 1416.6506 21831.584 -30406.854 299.37308 867.46971 1.0239472 0.405 -0.343278 0.171639 + 1195000 -5532.9651 1256.1747 -6789.1397 1330.4657 21843.722 -30406.423 301.22986 -733.82991 1.0016488 0.4025 -0.341159 0.1705795 + 1200000 -5553.066 1253.4742 -6806.5402 1351.6299 21838.577 -30408.246 300.58228 -305.68337 1.0122479 0.4 -0.33904 0.16952 + 1205000 -5519.1215 1249.3055 -6768.427 1350.1732 21804.158 -30403.344 299.58262 -543.0903 1.0018512 0.3975 -0.336921 0.1684605 + 1210000 -5527.9464 1276.42 -6804.3664 1482.4983 21659.348 -30403.541 306.08468 1352.4972 1.0313989 0.395 -0.334802 0.167401 + 1215000 -5528.3907 1207.7953 -6736.186 1320.6852 21903.038 -30405.73 289.62852 -718.49775 1.0053276 0.3925 -0.332683 0.1663415 + 1220000 -5530.8707 1284.7098 -6815.5805 1462.3884 21708.002 -30402.904 308.07255 591.73345 0.99594569 0.39 -0.330564 0.165282 + 1225000 -5510.4733 1242.8785 -6753.3518 1390.7837 21808.754 -30406.464 298.04145 414.48752 1.0266558 0.3875 -0.328445 0.1642225 + 1230000 -5511.1086 1256.014 -6767.1226 1411.3996 21786.166 -30400.32 301.19132 344.60627 1.0144412 0.385 -0.326326 0.163163 + 1235000 -5507.557 1263.7979 -6771.3549 1357.0612 21836.66 -30406.305 303.0579 -421.57464 0.99679054 0.3825 -0.324207 0.1621035 + 1240000 -5521.86 1251.2777 -6773.1376 1403.9886 21790.309 -30403.676 300.05556 223.64336 1.0138134 0.38 -0.322088 0.161044 + 1245000 -5495.1421 1282.2985 -6777.4406 1362.4685 21809.744 -30405.553 307.49434 -477.26223 1.0074571 0.3775 -0.319969 0.1599845 + 1250000 -5480.1139 1278.931 -6759.0449 1392.3278 21789.973 -30403.202 306.6868 -70.223368 0.99977242 0.375 -0.31785 0.158925 + 1255000 -5553.184 1252.6275 -6805.8115 1449.6591 21661.26 -30405.845 300.37925 667.59038 1.0204683 0.3725 -0.315731 0.1578655 + 1260000 -5500.3621 1303.3621 -6803.7242 1399.3677 21781.51 -30403.908 312.54537 -21.919882 1.0040001 0.37 -0.313612 0.156806 + 1265000 -5599.0593 1216.8118 -6815.8711 1448.5308 21734.171 -30405.807 291.79067 680.36892 1.0183911 0.3675 -0.311493 0.1557465 + 1270000 -5499.7199 1247.7042 -6747.4241 1385.0266 21829.215 -30405.427 299.19864 84.592133 0.99816992 0.365 -0.309374 0.154687 + 1275000 -5511.3148 1301.3431 -6812.658 1422.1524 21739.965 -30404.128 312.06122 680.64066 1.0347666 0.3625 -0.307255 0.1536275 + 1280000 -5548.0186 1270.302 -6818.3206 1334.2111 21757.058 -30406.305 304.61757 -967.15786 1.0109717 0.36 -0.305136 0.152568 + 1285000 -5555.0413 1280.8151 -6835.8564 1427.9067 21720.39 -30405.954 307.13862 368.48785 1.0080506 0.3575 -0.303017 0.1515085 + 1290000 -5496.7229 1283.2563 -6779.9793 1378.4038 21781.744 -30404.002 307.72402 8.3452567 1.0137024 0.355 -0.300898 0.150449 + 1295000 -5580.7272 1229.8436 -6810.5707 1366.8265 21783.805 -30404.506 294.91567 -460.30554 1.0085502 0.3525 -0.298779 0.1493895 + 1300000 -5538.7578 1235.394 -6774.1518 1436.4021 21779.128 -30402.492 296.24666 453.61372 0.99617343 0.35 -0.29666 0.14833 + 1305000 -5544.2 1218.136 -6762.336 1357.1673 21850.132 -30403.082 292.1082 -352.96744 1.0108396 0.3475 -0.294541 0.1472705 + 1310000 -5584.6337 1229.473 -6814.1067 1411.4248 21762.836 -30403.104 294.82682 394.62761 1.0211949 0.345 -0.292422 0.146211 + 1315000 -5436.0536 1293.1695 -6729.2231 1355.9564 21913.068 -30402.017 310.10119 -128.48391 1.0085461 0.3425 -0.290303 0.1451515 + 1320000 -5543.0105 1272.0501 -6815.0606 1405.9462 21736.124 -30402.088 305.03677 72.234346 1.0091715 0.34 -0.288184 0.144092 + 1325000 -5548.6163 1239.4869 -6788.1033 1407.6008 21777.171 -30402.102 297.22815 533.16549 1.0233863 0.3375 -0.286065 0.1430325 + 1330000 -5540.8843 1226.3995 -6767.2837 1501.7755 21677.206 -30403.423 294.08978 1240.633 1.0060816 0.335 -0.283946 0.141973 + 1335000 -5586.7627 1257.0633 -6843.826 1395.9593 21687.752 -30403.613 301.44296 -485.85005 1.0034879 0.3325 -0.281827 0.1409135 + 1340000 -5528.6391 1260.2811 -6788.9202 1285.0887 21886.122 -30404.215 302.21458 -1345.2852 1.0004527 0.33 -0.279708 0.139854 + 1345000 -5513.3113 1236.009 -6749.3203 1349.1797 21868.635 -30400.498 296.39414 -474.80145 1.0002406 0.3275 -0.277589 0.1387945 + 1350000 -5522.3768 1267.4323 -6789.8091 1507.5674 21607.325 -30402.928 303.92942 1773.9579 1.0298502 0.325 -0.27547 0.137735 + 1355000 -5551.6776 1188.9567 -6740.6343 1332.4533 21893.924 -30401.702 285.11104 -674.97023 1.0053334 0.3225 -0.273351 0.1366755 + 1360000 -5475.681 1262.222 -6737.903 1329.4781 21926.38 -30406.129 302.68 -200.38302 1.0156755 0.32 -0.271232 0.135616 + 1365000 -5509.3918 1284.2745 -6793.6663 1385.7835 21764.181 -30402.189 307.96817 -260.62121 0.99970234 0.3175 -0.269113 0.1345565 + 1370000 -5510.4413 1244.2221 -6754.6635 1394.1078 21834.473 -30402.98 298.36364 171.69348 1.0078346 0.315 -0.266994 0.133497 + 1375000 -5637.3565 1194.2641 -6831.6206 1352.6619 21790.919 -30403.683 286.38374 -926.31336 1.0014052 0.3125 -0.264875 0.1324375 + 1380000 -5535.2371 1268.7083 -6803.9454 1411.2035 21761.999 -30402.306 304.23541 1.7494611 1.0007021 0.31 -0.262756 0.131378 + 1385000 -5590.6929 1237.1763 -6827.8693 1425.1411 21700.436 -30401.792 296.67407 267.70563 1.0140025 0.3075 -0.260637 0.1303185 + 1390000 -5484.4968 1255.3342 -6739.831 1363.3349 21849.487 -30403.403 301.02831 -334.81743 0.9988136 0.305 -0.258518 0.129259 + 1395000 -5580.766 1216.9164 -6797.6824 1332.1573 21830.007 -30405.348 291.81574 -1230.1209 0.99078414 0.3025 -0.256399 0.1281995 + 1400000 -5542.6463 1270.5354 -6813.1816 1427.1867 21714.231 -30404.136 304.67354 455.15208 1.0157715 0.3 -0.25428 0.12714 + 1405000 -5466.7582 1275.6022 -6742.3604 1355.5736 21897.295 -30400.283 305.88856 -66.657731 1.0151471 0.2975 -0.252161 0.1260805 + 1410000 -5564.8474 1224.3922 -6789.2397 1330.6453 21814.374 -30400.427 293.60845 -774.92937 1.0136303 0.295 -0.250042 0.125021 + 1415000 -5430.2211 1308.0051 -6738.2263 1314.9611 21946.942 -30400.606 313.65877 -717.19161 1.0001463 0.2925 -0.247923 0.1239615 + 1420000 -5598.4838 1257.5011 -6855.9849 1415.0883 21711.443 -30404.958 301.54793 377.08012 1.0352276 0.29 -0.245804 0.122902 + 1425000 -5541.8937 1257.9576 -6799.8513 1400.0802 21773.418 -30403.035 301.6574 281.98161 1.0172007 0.2875 -0.243685 0.1218425 + 1430000 -5556.4346 1254.0053 -6810.4399 1407.8386 21766.868 -30402.715 300.70965 154.64262 1.0114215 0.285 -0.241566 0.120783 + 1435000 -5469.2552 1246.825 -6716.0802 1352.0012 21905.117 -30401.05 298.9878 -178.38426 1.0112743 0.2825 -0.239447 0.1197235 + 1440000 -5458.421 1254.9924 -6713.4134 1378.9303 21832.431 -30400.283 300.94636 -28.519956 0.99961051 0.28 -0.237328 0.118664 + 1445000 -5516.4714 1239.9243 -6756.3957 1405.0322 21790.978 -30400.325 297.33304 429.22692 1.0197884 0.2775 -0.235209 0.1176045 + 1450000 -5552.4255 1249.1142 -6801.5397 1361.7819 21785.875 -30399.912 299.53676 -769.48208 0.99105462 0.275 -0.23309 0.116545 + 1455000 -5517.8609 1220.2712 -6738.1321 1363.8136 21853.35 -30402.958 292.62024 -230.03249 1.0050729 0.2725 -0.230971 0.1154855 + 1460000 -5529.0421 1199.5637 -6728.6058 1281.1525 21947.817 -30402.254 287.65458 -1101.4619 1.0011538 0.27 -0.228852 0.114426 + 1465000 -5504.8124 1269.3051 -6774.1175 1397.0924 21778.739 -30400.882 304.37853 276.58705 1.0179163 0.2675 -0.226733 0.1133665 + 1470000 -5598.0732 1218.3941 -6816.4674 1418.8017 21718.631 -30401.044 292.17011 46.361297 1.0063797 0.265 -0.224614 0.112307 + 1475000 -5548.615 1254.4586 -6803.0737 1382.5152 21759.225 -30400 300.81835 -127.39812 1.0138223 0.2625 -0.222495 0.1112475 + 1480000 -5533.8343 1238.3003 -6772.1346 1436.9725 21759.67 -30400.105 296.94359 764.27767 1.0125907 0.26 -0.220376 0.110188 + 1485000 -5511.3105 1267.9695 -6779.28 1392.4351 21768.579 -30400.786 304.05824 -33.083281 1.008625 0.2575 -0.218257 0.1091285 + 1490000 -5492.7081 1249.7278 -6742.4359 1386.2265 21831.194 -30404.729 299.68391 167.62116 1.0065458 0.255 -0.216138 0.108069 + 1495000 -5565.5529 1257.6075 -6823.1605 1407.2006 21760.612 -30400.372 301.57346 -193.96975 0.99445457 0.2525 -0.214019 0.1070095 + 1500000 -5553.7271 1254.476 -6808.203 1411.4789 21739.068 -30400.776 300.82251 284.45877 1.0111814 0.25 -0.2119 0.10595 + 1505000 -5528.2919 1246.7404 -6775.0322 1494.6724 21668.724 -30400.534 298.96752 1503.5259 1.0199262 0.2475 -0.209781 0.1048905 + 1510000 -5529.2222 1256.6597 -6785.8818 1372.3032 21783.884 -30400.704 301.34616 -356.21245 1.0030809 0.245 -0.207662 0.103831 + 1515000 -5474.306 1292.5933 -6766.8993 1423.7446 21792.826 -30400.201 309.96302 458.75001 0.99603453 0.2425 -0.205543 0.1027715 + 1520000 -5533.15 1215.0608 -6748.2108 1345.4887 21859.918 -30402.082 291.37078 -574.91731 1.0075838 0.24 -0.203424 0.101712 + 1525000 -5534.3424 1275.3714 -6809.7138 1424.5986 21730.717 -30399.28 305.83323 403.09345 1.0170271 0.2375 -0.201305 0.1006525 + 1530000 -5594.0315 1228.3372 -6822.3687 1400.2671 21729.871 -30399.71 294.55445 -117.3201 1.0085693 0.235 -0.199186 0.099593 + 1535000 -5478.4978 1224.412 -6702.9097 1367.3472 21857.313 -30397.796 293.61318 -207.09591 1.0035875 0.2325 -0.197067 0.0985335 + 1540000 -5412.0571 1263.2997 -6675.3568 1365.2658 21913.322 -30400.612 302.93843 217.05159 1.0080531 0.23 -0.194948 0.097474 + 1545000 -5467.8087 1273.7408 -6741.5495 1392.9907 21826.459 -30393.776 305.44219 216.50192 1.0091255 0.2275 -0.192829 0.0964145 + 1550000 -5566.797 1224.1437 -6790.9407 1482.8048 21668.571 -30397.373 293.54885 729.69096 1.0040464 0.225 -0.19071 0.095355 + 1555000 -5497.5888 1259.6664 -6757.2552 1337.6561 21869.942 -30398.222 302.06718 -474.89321 1.0102649 0.2225 -0.188591 0.0942955 + 1560000 -5571.1541 1227.5401 -6798.6942 1443.2923 21702.982 -30401.053 294.36331 600.44478 1.0119193 0.22 -0.186472 0.093236 + 1565000 -5532.4484 1257.767 -6790.2154 1497.098 21657.763 -30398.914 301.61169 1582.7596 1.0279581 0.2175 -0.184353 0.0921765 + 1570000 -5491.3602 1250.8628 -6742.2231 1381.5334 21840.747 -30399 299.95608 319.87288 1.0172885 0.215 -0.182234 0.091117 + 1575000 -5448.4462 1268.2421 -6716.6883 1377.0235 21863.493 -30397.202 304.12362 -262.01917 0.98610142 0.2125 -0.180115 0.0900575 + 1580000 -5580.594 1226.2656 -6806.8595 1422.4858 21713.685 -30396.22 294.05768 357.25756 1.0113499 0.21 -0.177996 0.088998 + 1585000 -5541.0825 1278.2507 -6819.3331 1366.9139 21790.142 -30396.888 306.52367 -743.11524 0.98669546 0.2075 -0.175877 0.0879385 + 1590000 -5531.6035 1232.4292 -6764.0326 1395.465 21795.559 -30398.665 295.5357 42.444177 1.0126547 0.205 -0.173758 0.086879 + 1595000 -5461.4159 1287.0769 -6748.4928 1385.5573 21847.874 -30400.803 308.64018 618.18057 1.023846 0.2025 -0.171639 0.0858195 + 1600000 -5579.7572 1252.3883 -6832.1456 1403.3853 21764.717 -30403.163 300.3219 2.4209385 1.0090886 0.2 -0.16952 0.08476 + 1605000 -5491.6523 1248.6296 -6740.282 1420.4767 21788.29 -30399.543 299.42056 239.38793 0.99225234 0.1975 -0.167401 0.0837005 + 1610000 -5568.2821 1246.7876 -6815.0697 1370.1076 21752.385 -30399.233 298.97885 -468.73385 1.0081855 0.195 -0.165282 0.082641 + 1615000 -5530.1214 1224.1728 -6754.2942 1323.3884 21897.077 -30396.775 293.55582 -898.2112 0.99067847 0.1925 -0.163163 0.0815815 + 1620000 -5462.953 1253.936 -6716.889 1363.9087 21844.806 -30397.011 300.69303 49.460617 1.0189897 0.19 -0.161044 0.080522 + 1625000 -5568.5656 1231.6103 -6800.1759 1439.4406 21713.002 -30399.751 295.33933 590.45469 1.0150474 0.1875 -0.158925 0.0794625 + 1630000 -5513.0103 1230.3044 -6743.3148 1335.981 21895.338 -30397.086 295.02619 -710.37919 0.99994929 0.185 -0.156806 0.078403 + 1635000 -5580.5477 1231.076 -6811.6238 1376.4886 21798.044 -30400.814 295.21122 -206.8981 1.0081086 0.1825 -0.154687 0.0773435 + 1640000 -5540.3331 1256.5851 -6796.9181 1426.8142 21744.777 -30399.595 301.32827 745.57089 1.025877 0.18 -0.152568 0.076284 + 1645000 -5501.1298 1220.0238 -6721.1536 1389.073 21803.781 -30396.275 292.56091 131.20821 1.0089626 0.1775 -0.150449 0.0752245 + 1650000 -5628.1664 1220.696 -6848.8624 1362.9547 21731.445 -30400.636 292.7221 -616.61903 1.0201592 0.175 -0.14833 0.074165 + 1655000 -5592.5867 1211.2372 -6803.8239 1395.9179 21759.947 -30397.15 290.45388 18.913469 1.0103871 0.1725 -0.146211 0.0731055 + 1660000 -5428.2327 1278.6419 -6706.8747 1330.8879 21912.263 -30395.724 306.61749 -481.32774 0.99495838 0.17 -0.144092 0.072046 + 1665000 -5594.5998 1205.962 -6800.5618 1375.2659 21806.513 -30400.577 289.18889 -235.35107 1.0075357 0.1675 -0.141973 0.0709865 + 1670000 -5524.7971 1260.2713 -6785.0684 1344.6328 21851.941 -30396.671 302.21221 -544.14669 1.0114915 0.165 -0.139854 0.069927 + 1675000 -5468.1251 1274.7582 -6742.8834 1380.0088 21825.405 -30396.487 305.68618 38.686488 1.0120959 0.1625 -0.137735 0.0688675 + 1680000 -5473.7314 1242.9607 -6716.6921 1415.1549 21844.285 -30395.776 298.06116 641.25473 1.0114522 0.16 -0.135616 0.067808 + 1685000 -5636.5209 1211.507 -6848.0278 1459.7789 21659.328 -30400.565 290.51857 617.46049 1.0173888 0.1575 -0.133497 0.0667485 + 1690000 -5519.679 1240.1554 -6759.8344 1372.6554 21847.523 -30401.094 297.38845 -401.52343 0.99153655 0.155 -0.131378 0.065689 + 1695000 -5560.9528 1229.8902 -6790.843 1408.2004 21760.223 -30400.762 294.92687 100.67238 1.0033753 0.1525 -0.129259 0.0646295 + 1700000 -5554.1929 1255.6687 -6809.8616 1428.6747 21710.122 -30400.905 301.10854 159.06223 0.99158358 0.15 -0.12714 0.06357 + 1705000 -5542.8539 1230.6745 -6773.5285 1366.5362 21810.674 -30399.629 295.11494 -316.17067 0.99672752 0.1475 -0.125021 0.0625105 + 1710000 -5592.0441 1235.1898 -6827.2339 1407.2236 21724.16 -30397.816 296.19769 -171.98585 1.0010712 0.145 -0.122902 0.061451 + 1715000 -5456.289 1285.0566 -6741.3456 1366.6379 21844.445 -30394.859 308.15573 -103.28366 1.0059297 0.1425 -0.120783 0.0603915 + 1720000 -5492.3095 1254.7872 -6747.0967 1374.291 21873.54 -30397.737 300.89714 -10.335506 1.0122212 0.14 -0.118664 0.059332 + 1725000 -5518.9901 1240.2306 -6759.2207 1293.1765 21919.538 -30398.262 297.40649 -1112.3904 1.0060258 0.1375 -0.116545 0.0582725 + 1730000 -5461.6627 1250.9471 -6712.6098 1312.9461 21924.032 -30396.911 299.97629 -905.20686 0.99780548 0.135 -0.114426 0.057213 + 1735000 -5520.9229 1260.6697 -6781.5926 1351.3162 21851.369 -30398.186 302.30776 -380.34032 1.00967 0.1325 -0.112307 0.0561535 + 1740000 -5587.9319 1198.4018 -6786.3336 1377.0754 21811.513 -30398.588 287.37595 21.848644 1.019459 0.13 -0.110188 0.055094 + 1745000 -5548.2449 1238.1127 -6786.3576 1403.8402 21747.153 -30395.629 296.8986 135.03046 1.01201 0.1275 -0.108069 0.0540345 + 1750000 -5526.8784 1242.7978 -6769.6761 1309.8228 21913.235 -30398.337 298.02209 -850.35833 1.0059241 0.125 -0.10595 0.052975 + 1755000 -5508.0743 1308.7599 -6816.8341 1353.359 21760.125 -30400.191 313.83975 -749.9998 0.99685375 0.1225 -0.103831 0.0519155 + 1760000 -5542.8446 1265.3408 -6808.1854 1391.2186 21776.776 -30396.482 303.42789 117.90427 1.0236881 0.12 -0.101712 0.050856 + 1765000 -5526.6876 1268.5243 -6795.2119 1302.7664 21799.054 -30396.406 304.1913 -1161.5113 1.0216099 0.1175 -0.099593 0.0497965 + 1770000 -5579.5803 1246.8977 -6826.478 1486.5854 21651.454 -30399.954 299.00526 880.22447 1.0109541 0.115 -0.097474 0.048737 + 1775000 -5551.5053 1292.1271 -6843.6324 1405.0247 21688.07 -30398.863 309.85123 -251.03455 0.99873347 0.1125 -0.095355 0.0476775 + 1780000 -5515.8126 1282.9801 -6798.7927 1395.0164 21747.704 -30395.937 307.65779 333.80114 1.0239628 0.11 -0.093236 0.046618 + 1785000 -5510.7284 1208.8107 -6719.5391 1346.5399 21876.38 -30394.751 289.87201 -249.43776 1.0110945 0.1075 -0.091117 0.0455585 + 1790000 -5518.3081 1260.6355 -6778.9436 1399.7684 21796.94 -30397.3 302.29957 82.30008 1.0094344 0.105 -0.088998 0.044499 + 1795000 -5513.5389 1303.7533 -6817.2921 1421.97 21751.65 -30398.865 312.63917 500.03335 1.0096349 0.1025 -0.086879 0.0434395 + 1800000 -5572.7653 1214.8677 -6787.6331 1383.7533 21813.337 -30398.789 291.32448 -172.24736 1.0106323 0.1 -0.08476 0.04238 + 1805000 -5533.6069 1246.7853 -6780.3922 1412.9435 21800.334 -30394.707 298.97828 594.59696 1.0209456 0.0975 -0.082641 0.0413205 + 1810000 -5567.1324 1275.7954 -6842.9277 1442.9318 21676.766 -30398.215 305.93489 453.89649 1.0132054 0.095 -0.080522 0.040261 + 1815000 -5465.3294 1255.0662 -6720.3956 1341.0775 21912.58 -30394.54 300.96405 -302.59143 1.0016089 0.0925 -0.078403 0.0392015 + 1820000 -5588.4657 1233.5824 -6822.0481 1393.0967 21740.859 -30396.671 295.81224 -147.72631 1.0070758 0.09 -0.076284 0.038142 + 1825000 -5599.7235 1244.5645 -6844.288 1527.9294 21571.627 -30396.257 298.44576 1698.1117 1.0275341 0.0875 -0.074165 0.0370825 + 1830000 -5472.5833 1264.0019 -6736.5852 1327.0089 21908.977 -30394.568 303.10682 -394.05428 1.0135733 0.085 -0.072046 0.036023 + 1835000 -5559.5998 1243.4443 -6803.0442 1292.0778 21846.42 -30398.288 298.17713 -1254.4294 1.0141937 0.0825 -0.069927 0.0349635 + 1840000 -5498.5276 1283.2205 -6781.7481 1416.3308 21752.285 -30399.697 307.71542 317.53074 1.003693 0.08 -0.067808 0.033904 + 1845000 -5551.7395 1252.4882 -6804.2277 1374.7399 21772.215 -30396.489 300.34585 -263.50361 1.0114613 0.0775 -0.065689 0.0328445 + 1850000 -5525.5278 1240.7565 -6766.2843 1361.6208 21839.689 -30397.722 297.53259 -186.31575 1.0187838 0.075 -0.06357 0.031785 + 1855000 -5521.2867 1243.7856 -6765.0724 1347.4178 21874.625 -30396.108 298.25898 -284.75269 1.0228705 0.0725 -0.061451 0.0307255 + 1860000 -5640.4121 1146.9485 -6787.3606 1396.2408 21749.618 -30394.203 275.03749 -187.09544 1.006743 0.07 -0.059332 0.029666 + 1865000 -5525.2602 1260.9215 -6786.1817 1402.4348 21758.857 -30397.319 302.36813 -161.29785 0.99503244 0.0675 -0.057213 0.0286065 + 1870000 -5623.139 1216.967 -6840.1059 1413.5807 21703.495 -30397.576 291.82788 76.112007 1.0246491 0.065 -0.055094 0.027547 + 1875000 -5450.2615 1268.385 -6718.6465 1405.9759 21866.321 -30398.11 304.15789 307.93878 0.99773745 0.0625 -0.052975 0.0264875 + 1880000 -5539.8922 1245.1416 -6785.0337 1409.1823 21774.294 -30395.574 298.58413 82.127006 1.0058947 0.06 -0.050856 0.025428 + 1885000 -5514.3045 1240.5608 -6754.8653 1443.7995 21752.107 -30397.218 297.48566 611.17045 1.0085937 0.0575 -0.048737 0.0243685 + 1890000 -5438.3073 1258.3645 -6696.6718 1361.8049 21892.331 -30397.348 301.75497 -267.35927 0.9953092 0.055 -0.046618 0.023309 + 1895000 -5596.2731 1226.9718 -6823.2449 1402.9241 21732.185 -30395.165 294.22702 44.339776 1.0153331 0.0525 -0.044499 0.0222495 + 1900000 -5497.1413 1266.3676 -6763.5089 1373.9826 21832.991 -30399.356 303.67411 -27.290874 1.0132323 0.05 -0.04238 0.02119 + 1905000 -5517.4875 1236.6892 -6754.1767 1367.726 21857.698 -30393.874 296.55726 -499.76394 0.99284077 0.0475 -0.040261 0.0201305 + 1910000 -5552.0873 1269.7208 -6821.8081 1378.8021 21718.781 -30396.478 304.4782 -369.12045 1.0171861 0.045 -0.038142 0.019071 + 1915000 -5499.6451 1278.5051 -6778.1502 1430.6032 21725.761 -30396.795 306.58468 577.53122 1.01326 0.0425 -0.036023 0.0180115 + 1920000 -5487.2658 1251.9078 -6739.1736 1381.7635 21779.483 -30396.642 300.20666 -47.157489 1.0090288 0.04 -0.033904 0.016952 + 1925000 -5538.2174 1250.4348 -6788.6522 1378.1601 21776.002 -30397.01 299.85343 -635.20274 0.98963246 0.0375 -0.031785 0.0158925 + 1930000 -5539.4427 1260.8629 -6800.3057 1358.8021 21770.968 -30400.271 302.3541 -702.50699 0.99578271 0.035 -0.029666 0.014833 + 1935000 -5559.5408 1246.2889 -6805.8297 1426.6663 21737.226 -30396.429 298.85926 214.01347 1.0055051 0.0325 -0.027547 0.0137735 + 1940000 -5527.5821 1225.3364 -6752.9184 1378.8724 21850.255 -30395.169 293.83485 14.506752 1.0028753 0.03 -0.025428 0.012714 + 1945000 -5473.5551 1280.9318 -6754.4869 1425.106 21803.831 -30396.584 307.16659 506.19708 1.0032233 0.0275 -0.023309 0.0116545 + 1950000 -5567.2517 1222.2431 -6789.4948 1305.8232 21889.919 -30396.867 293.09308 -1294.1142 0.99788741 0.025 -0.02119 0.010595 + 1955000 -5484.5853 1260.6694 -6745.2547 1384.597 21831.404 -30392.929 302.30769 156.43697 1.0117059 0.0225 -0.019071 0.0095355 + 1960000 -5620.4544 1193.7438 -6814.1983 1383.8209 21783.257 -30401.598 286.25899 -66.845911 1.0220849 0.02 -0.016952 0.008476 + 1965000 -5545.5269 1233.4885 -6779.0154 1344.2005 21855.912 -30398.255 295.78973 -628.47314 1.0059777 0.0175 -0.014833 0.0074165 + 1970000 -5513.9042 1266.1527 -6780.057 1392.318 21762.753 -30395.542 303.62259 75.831811 1.0061881 0.015 -0.012714 0.006357 + 1975000 -5544.7648 1274.4083 -6819.1731 1391.4464 21746.624 -30396.103 305.60227 -75.461691 1.0034389 0.0125 -0.010595 0.0052975 + 1980000 -5538.5817 1248.0952 -6786.6769 1364.256 21830.009 -30395.903 299.2924 -83.978588 1.0205031 0.01 -0.008476 0.004238 + 1985000 -5595.8323 1230.885 -6826.7174 1357.6211 21780.506 -30393.427 295.16542 -709.11924 1.0035546 0.0075 -0.006357 0.0031785 + 1990000 -5482.4794 1286.6658 -6769.1452 1336.3899 21858.921 -30393.729 308.54161 -827.89365 1.0005728 0.005 -0.004238 0.002119 + 1995000 -5501.4886 1239.738 -6741.2266 1409.7478 21799.031 -30400.217 297.28836 653.89683 1.0202266 0.0025 -0.002119 0.0010595 + 2000000 -5611.4713 1229.0661 -6840.5373 1478.3644 21615.338 -30394.928 294.72923 480.97836 1.00402 0 -0 0 +Loop time of 13776.2 on 12 procs for 2000000 steps with 1800 atoms + +Performance: 12.543 ns/day, 1.913 hours/ns, 145.178 timesteps/s +95.3% CPU use with 12 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 7579.8 | 8070.7 | 8564.2 | 287.6 | 58.58 +Bond | 24.942 | 25.514 | 26.056 | 6.9 | 0.19 +Kspace | 2484.3 | 2979.3 | 3459.7 | 467.2 | 21.63 +Neigh | 523.25 | 524.15 | 525.06 | 2.5 | 3.80 +Comm | 806.39 | 872.63 | 948.24 | 194.3 | 6.33 +Output | 0.033634 | 0.034536 | 0.042227 | 1.2 | 0.00 +Modify | 864.36 | 1044.2 | 1191.5 | 438.5 | 7.58 +Other | | 259.6 | | | 1.88 + +Nlocal: 150.000 ave 158 max 141 min +Histogram: 1 0 0 2 2 3 2 1 0 1 +Nghost: 6106.00 ave 6170 max 6046 min +Histogram: 2 1 1 1 0 1 2 2 1 1 +Neighs: 86710.6 ave 92374 max 78975 min +Histogram: 1 0 0 3 0 3 1 0 2 2 + +Total # of neighbors = 1040527 +Ave neighs/atom = 578.07056 +Ave special neighs/atom = 2.0000000 +Neighbor list builds = 89189 +Dangerous builds = 0 +Total wall time: 4:00:09 diff --git a/examples/USER/fep/SPCEhyd/fep10/in-fep10-lj.lmp b/examples/USER/fep/SPCEhyd/fep10/in-fep10-lj.lmp new file mode 100644 index 0000000000..56d2994ec2 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/in-fep10-lj.lmp @@ -0,0 +1,72 @@ +# created by fftool + +units real +boundary p p p + +atom_style full +bond_style harmonic +angle_style harmonic + +special_bonds lj/coul 0.0 0.0 0.5 + +# remove hybrid if not necessary +pair_style hybrid lj/cut/coul/long 12.0 12.0 lj/cut/soft 2 0.5 12.0 +pair_modify tail no +kspace_style pppm 1.0e-5 + +read_data data.lmp + +pair_coeff 1 1 lj/cut/soft 0.000000 1.000000 1.0 # Hwh Hwh +pair_coeff 1 2 lj/cut/soft 0.000000 1.000000 1.0 # Hwh Owh +pair_coeff 1 3 lj/cut/soft 0.000000 1.000000 1.0 # Hwh Hw +pair_coeff 1 4 lj/cut/soft 0.000000 1.000000 1.0 # Hwh Ow +pair_coeff 2 2 lj/cut/soft 0.155425 3.165500 1.0 # Owh Owh +pair_coeff 2 3 lj/cut/soft 0.000000 1.000000 1.0 # Owh Hw +pair_coeff 2 4 lj/cut/soft 0.155425 3.165500 1.0 # Owh Ow +pair_coeff 3 3 lj/cut/coul/long 0.000000 0.000000 # Hw Hw +pair_coeff 3 4 lj/cut/coul/long 0.000000 0.000000 # Hw Ow +pair_coeff 4 4 lj/cut/coul/long 0.155425 3.165500 # Ow Ow + +# minimize 1.0e-4 1.0e-6 100 1000 +# reset_timestep 0 + +fix SHAKE all shake 0.0001 20 0 b 1 + +neighbor 2.0 bin +# neigh_modify delay 0 every 1 check yes + +timestep 1.0 + +variable TK equal 300.0 +variable PBAR equal 1.0 + +velocity all create ${TK} 12345 + +fix TPSTAT all npt temp ${TK} ${TK} 100 iso ${PBAR} ${PBAR} 1000 + +thermo_style custom step cpu etotal ke pe evdwl ecoul elong temp press vol density +thermo 5000 + +set type 1*2 charge 0.0 + +run 100000 + +reset_timestep 0 + +variable lambda equal ramp(1.0,0.0) + +fix ADAPT all adapt/fep 100000 & + pair lj/cut/soft lambda 1*2 3*4 v_lambda & + after yes + +thermo_style custom step etotal ke pe evdwl ecoul elong temp press density v_lambda + +variable dlambda equal -0.05 + +compute FEP all fep ${TK} & + pair lj/cut/soft lambda 1*2 3*4 v_dlambda & + volume yes + +fix FEP all ave/time 20 4000 100000 c_FEP[*] file fep10-lj.fep + +run 2000000 diff --git a/examples/USER/fep/SPCEhyd/fep10/in-fep10-q.lmp b/examples/USER/fep/SPCEhyd/fep10/in-fep10-q.lmp new file mode 100644 index 0000000000..d9183f7f15 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/fep10/in-fep10-q.lmp @@ -0,0 +1,76 @@ +# created by fftool + +units real +boundary p p p + +atom_style full +bond_style harmonic +angle_style harmonic + +special_bonds lj/coul 0.0 0.0 0.5 + +# remove hybrid if not necessary +pair_style lj/cut/coul/long 12.0 12.0 +pair_modify tail no +kspace_style pppm 1.0e-5 + +read_data data.lmp + +pair_coeff 1 1 0.000000 1.000000 # Hwh Hwh +pair_coeff 1 2 0.000000 1.000000 # Hwh Owh +pair_coeff 1 3 0.000000 1.000000 # Hwh Hw +pair_coeff 1 4 0.000000 1.000000 # Hwh Ow +pair_coeff 2 2 0.155425 3.165500 # Owh Owh +pair_coeff 2 3 0.000000 1.000000 # Owh Hw +pair_coeff 2 4 0.155425 3.165500 # Owh Ow +pair_coeff 3 3 0.000000 1.000000 # Hw Hw +pair_coeff 3 4 0.000000 1.000000 # Hw Ow +pair_coeff 4 4 0.155425 3.165500 # Ow Ow + +# minimize 1.0e-4 1.0e-6 100 1000 +# reset_timestep 0 + +fix SHAKE all shake 0.0001 20 0 b 1 + +neighbor 2.0 bin +# neigh_modify delay 0 every 1 check yes + +timestep 1.0 + +variable TK equal 300.0 +variable PBAR equal 1.0 + +velocity all create ${TK} 12345 + +fix TPSTAT all npt temp ${TK} ${TK} 100 iso ${PBAR} ${PBAR} 1000 + +thermo_style custom step cpu etotal ke pe evdwl ecoul elong temp press vol density +thermo 5000 + +run 100000 + +reset_timestep 0 + +variable lambda equal ramp(1.0,0.0) +variable qH equal 0.4238*v_lambda +variable qO equal -0.8476*v_lambda + +fix ADAPT all adapt/fep 100000 & + atom charge 1 v_qH & + atom charge 2 v_qO & + after yes + +thermo_style custom step etotal ke pe evdwl ecoul elong temp press density v_lambda v_qO v_qH + +variable dlambda equal -0.05 +variable dqH equal 0.4238*v_dlambda +variable dqO equal -0.8476*v_dlambda + +compute FEP all fep ${TK} & + atom charge 1 v_dqH & + atom charge 2 v_dqO & + volume yes + +fix FEP all ave/time 20 4000 100000 c_FEP[*] file fep10-q.fep + +run 2000000 diff --git a/examples/USER/fep/SPCEhyd/mols/data.lmp b/examples/USER/fep/SPCEhyd/mols/data.lmp new file mode 100644 index 0000000000..b6ead1d442 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/mols/data.lmp @@ -0,0 +1,3635 @@ +created by fftool + +1800 atoms +1200 bonds +600 angles +4 atom types +1 bond types +1 angle types +0.000000 29.204526 xlo xhi +0.000000 29.204526 ylo yhi +0.000000 29.204526 zlo zhi + +Masses + + 1 1.008 # Hwh + 2 15.999 # Owh + 3 1.008 # Hw + 4 15.999 # Ow + +Bond Coeffs + + 1 517.630258 1.000000 # Ow-Hw + +Angle Coeffs + + 1 37.950526 109.470000 # Hw-Ow-Hw + +Atoms + + 1 1 1 0.423800 1.469233e+00 2.148142e+00 1.702038e+00 # Hwh SPCE + 2 1 2 -0.847600 1.979799e+00 1.409877e+00 2.142818e+00 # Owh SPCE + 3 1 1 0.423800 2.730865e+00 1.797090e+00 2.677576e+00 # Hwh SPCE + 4 2 3 0.423800 1.499900e+00 3.238303e+00 2.442531e+01 # Hw SPCE + 5 2 4 -0.847600 2.395752e+00 3.669948e+00 2.431980e+01 # Ow SPCE + 6 2 3 0.423800 2.296129e+00 4.663242e+00 2.437847e+01 # Hw SPCE + 7 3 3 0.423800 1.403661e+01 4.588770e+00 2.450878e+01 # Hw SPCE + 8 3 4 -0.847600 1.379951e+01 5.545591e+00 2.467695e+01 # Ow SPCE + 9 3 3 0.423800 1.402354e+01 6.091366e+00 2.386952e+01 # Hw SPCE + 10 4 3 0.423800 2.336049e+01 1.499786e+00 3.153124e+00 # Hw SPCE + 11 4 4 -0.847600 2.409385e+01 2.065977e+00 3.529439e+00 # Ow SPCE + 12 4 3 0.423800 2.490226e+01 1.500034e+00 3.691241e+00 # Hw SPCE + 13 5 3 0.423800 1.644196e+01 1.748367e+00 2.705436e+01 # Hw SPCE + 14 5 4 -0.847600 1.736546e+01 1.496062e+00 2.734329e+01 # Ow SPCE + 15 5 3 0.423800 1.783282e+01 2.301936e+00 2.770680e+01 # Hw SPCE + 16 6 3 0.423800 2.088933e+01 1.895579e+01 2.275309e+01 # Hw SPCE + 17 6 4 -0.847600 2.057929e+01 1.824793e+01 2.211841e+01 # Ow SPCE + 18 6 3 0.423800 1.984085e+01 1.772204e+01 2.254049e+01 # Hw SPCE + 19 7 3 0.423800 1.766189e+01 8.017800e+00 2.498964e+01 # Hw SPCE + 20 7 4 -0.847600 1.725196e+01 8.916174e+00 2.483189e+01 # Ow SPCE + 21 7 3 0.423800 1.625542e+01 8.836819e+00 2.485666e+01 # Hw SPCE + 22 8 3 0.423800 2.770687e+01 2.171554e+01 1.528009e+01 # Hw SPCE + 23 8 4 -0.847600 2.716811e+01 2.251048e+01 1.555905e+01 # Ow SPCE + 24 8 3 0.423800 2.770528e+01 2.307342e+01 1.618718e+01 # Hw SPCE + 25 9 3 0.423800 1.495385e+00 2.572800e+01 2.467279e+01 # Hw SPCE + 26 9 4 -0.847600 1.580382e+00 2.672428e+01 2.468743e+01 # Ow SPCE + 27 9 3 0.423800 1.767742e+00 2.702913e+01 2.562122e+01 # Hw SPCE + 28 10 3 0.423800 8.923646e+00 2.303176e+01 7.542360e+00 # Hw SPCE + 29 10 4 -0.847600 8.109007e+00 2.312152e+01 6.969379e+00 # Ow SPCE + 30 10 3 0.423800 7.298201e+00 2.288018e+01 7.502626e+00 # Hw SPCE + 31 11 3 0.423800 1.123659e+01 2.107791e+01 4.662100e+00 # Hw SPCE + 32 11 4 -0.847600 1.223538e+01 2.105512e+01 4.618509e+00 # Ow SPCE + 33 11 3 0.423800 1.259832e+01 2.069338e+01 5.477241e+00 # Hw SPCE + 34 12 3 0.423800 1.225298e+01 2.161218e+01 1.146502e+01 # Hw SPCE + 35 12 4 -0.847600 1.278626e+01 2.077538e+01 1.134100e+01 # Ow SPCE + 36 12 3 0.423800 1.216660e+01 1.999649e+01 1.124435e+01 # Hw SPCE + 37 13 3 0.423800 2.178085e+01 2.141393e+01 1.947311e+01 # Hw SPCE + 38 13 4 -0.847600 2.200950e+01 2.051108e+01 1.910897e+01 # Ow SPCE + 39 13 3 0.423800 2.190716e+01 1.982534e+01 1.982958e+01 # Hw SPCE + 40 14 3 0.423800 2.603847e+01 7.816317e+00 1.661274e+01 # Hw SPCE + 41 14 4 -0.847600 2.671903e+01 7.539282e+00 1.729103e+01 # Ow SPCE + 42 14 3 0.423800 2.712614e+01 6.667675e+00 1.701797e+01 # Hw SPCE + 43 15 3 0.423800 2.662104e+01 1.315276e+01 2.415551e+01 # Hw SPCE + 44 15 4 -0.847600 2.749092e+01 1.325361e+01 2.463837e+01 # Ow SPCE + 45 15 3 0.423800 2.770488e+01 1.422511e+01 2.474029e+01 # Hw SPCE + 46 16 3 0.423800 2.343696e+01 2.012869e+01 2.434140e+01 # Hw SPCE + 47 16 4 -0.847600 2.284311e+01 1.938463e+01 2.464753e+01 # Ow SPCE + 48 16 3 0.423800 2.328036e+01 1.889915e+01 2.540458e+01 # Hw SPCE + 49 17 3 0.423800 7.794521e+00 2.000989e+01 2.199182e+01 # Hw SPCE + 50 17 4 -0.847600 7.929378e+00 2.033080e+01 2.292928e+01 # Ow SPCE + 51 17 3 0.423800 8.857758e+00 2.010876e+01 2.322729e+01 # Hw SPCE + 52 18 3 0.423800 6.830410e+00 2.518010e+01 2.209866e+01 # Hw SPCE + 53 18 4 -0.847600 6.177519e+00 2.451264e+01 2.174056e+01 # Ow SPCE + 54 18 3 0.423800 6.309669e+00 2.363590e+01 2.220301e+01 # Hw SPCE + 55 19 3 0.423800 1.596377e+01 2.092461e+01 2.446023e+01 # Hw SPCE + 56 19 4 -0.847600 1.590738e+01 1.999342e+01 2.482037e+01 # Ow SPCE + 57 19 3 0.423800 1.681118e+01 1.956697e+01 2.478476e+01 # Hw SPCE + 58 20 3 0.423800 1.911326e+01 2.770546e+01 4.844631e+00 # Hw SPCE + 59 20 4 -0.847600 1.985915e+01 2.703939e+01 4.843586e+00 # Ow SPCE + 60 20 3 0.423800 2.073574e+01 2.752062e+01 4.840568e+00 # Hw SPCE + 61 21 3 0.423800 7.957677e+00 2.769262e+01 2.125162e+01 # Hw SPCE + 62 21 4 -0.847600 7.905132e+00 2.770650e+01 2.225015e+01 # Ow SPCE + 63 21 3 0.423800 8.829127e+00 2.770890e+01 2.263254e+01 # Hw SPCE + 64 22 3 0.423800 2.070265e+01 9.528473e+00 1.663276e+01 # Hw SPCE + 65 22 4 -0.847600 1.973165e+01 9.696078e+00 1.680328e+01 # Ow SPCE + 66 22 3 0.423800 1.934110e+01 8.919385e+00 1.729746e+01 # Hw SPCE + 67 23 3 0.423800 7.809959e+00 8.565464e+00 2.274346e+01 # Hw SPCE + 68 23 4 -0.847600 8.612896e+00 9.122442e+00 2.295575e+01 # Ow SPCE + 69 23 3 0.423800 9.372009e+00 8.852272e+00 2.236351e+01 # Hw SPCE + 70 24 3 0.423800 2.498899e+01 2.308095e+01 1.903531e+01 # Hw SPCE + 71 24 4 -0.847600 2.436019e+01 2.235497e+01 1.931382e+01 # Ow SPCE + 72 24 3 0.423800 2.484014e+01 2.170706e+01 1.990531e+01 # Hw SPCE + 73 25 3 0.423800 1.506895e+00 5.662694e+00 6.920599e+00 # Hw SPCE + 74 25 4 -0.847600 1.784503e+00 6.309796e+00 7.630665e+00 # Ow SPCE + 75 25 3 0.423800 2.707518e+00 6.641971e+00 7.436495e+00 # Hw SPCE + 76 26 3 0.423800 2.153403e+01 1.348159e+01 2.085837e+01 # Hw SPCE + 77 26 4 -0.847600 2.086248e+01 1.274077e+01 2.087218e+01 # Ow SPCE + 78 26 3 0.423800 2.067461e+01 1.247880e+01 2.181880e+01 # Hw SPCE + 79 27 3 0.423800 6.800685e+00 2.203104e+01 2.620499e+01 # Hw SPCE + 80 27 4 -0.847600 6.856841e+00 2.274258e+01 2.550459e+01 # Ow SPCE + 81 27 3 0.423800 6.369339e+00 2.244243e+01 2.468469e+01 # Hw SPCE + 82 28 3 0.423800 2.330650e+01 7.514481e+00 5.018724e+00 # Hw SPCE + 83 28 4 -0.847600 2.253073e+01 6.885276e+00 4.970822e+00 # Ow SPCE + 84 28 3 0.423800 2.286694e+01 5.944773e+00 4.921621e+00 # Hw SPCE + 85 29 3 0.423800 1.465322e+01 1.590735e+01 2.422856e+01 # Hw SPCE + 86 29 4 -0.847600 1.477140e+01 1.663018e+01 2.354771e+01 # Ow SPCE + 87 29 3 0.423800 1.453616e+01 1.751291e+01 2.395449e+01 # Hw SPCE + 88 30 3 0.423800 1.040291e+01 5.254847e+00 1.370622e+01 # Hw SPCE + 89 30 4 -0.847600 1.105724e+01 4.607844e+00 1.409768e+01 # Ow SPCE + 90 30 3 0.423800 1.077812e+01 3.674305e+00 1.387274e+01 # Hw SPCE + 91 31 3 0.423800 2.276938e+01 1.512055e+01 9.190561e+00 # Hw SPCE + 92 31 4 -0.847600 2.301556e+01 1.453653e+01 9.964062e+00 # Ow SPCE + 93 31 3 0.423800 2.340966e+01 1.368242e+01 9.624659e+00 # Hw SPCE + 94 32 3 0.423800 5.188719e+00 2.026958e+01 2.114125e+01 # Hw SPCE + 95 32 4 -0.847600 5.223057e+00 2.126505e+01 2.105256e+01 # Ow SPCE + 96 32 3 0.423800 4.292242e+00 2.162905e+01 2.101958e+01 # Hw SPCE + 97 33 3 0.423800 1.776246e+01 1.332125e+01 2.630655e+01 # Hw SPCE + 98 33 4 -0.847600 1.826497e+01 1.415453e+01 2.653702e+01 # Ow SPCE + 99 33 3 0.423800 1.924234e+01 1.400708e+01 2.638536e+01 # Hw SPCE + 100 34 3 0.423800 2.606566e+00 1.054762e+01 6.428992e+00 # Hw SPCE + 101 34 4 -0.847600 1.625220e+00 1.071787e+01 6.339693e+00 # Ow SPCE + 102 34 3 0.423800 1.425906e+00 1.104165e+01 5.414793e+00 # Hw SPCE + 103 35 3 0.423800 2.588493e+01 4.071742e+00 4.105367e+00 # Hw SPCE + 104 35 4 -0.847600 2.671121e+01 4.617835e+00 4.243387e+00 # Ow SPCE + 105 35 3 0.423800 2.741817e+01 4.051459e+00 4.666975e+00 # Hw SPCE + 106 36 3 0.423800 7.373843e+00 6.669901e+00 1.394201e+01 # Hw SPCE + 107 36 4 -0.847600 7.563042e+00 6.090000e+00 1.473442e+01 # Ow SPCE + 108 36 3 0.423800 7.053521e+00 6.429426e+00 1.552510e+01 # Hw SPCE + 109 37 3 0.423800 4.172482e+00 1.303888e+01 1.710824e+01 # Hw SPCE + 110 37 4 -0.847600 4.702018e+00 1.220690e+01 1.727375e+01 # Ow SPCE + 111 37 3 0.423800 4.203212e+00 1.141758e+01 1.691575e+01 # Hw SPCE + 112 38 3 0.423800 1.949787e+01 5.529973e+00 1.254239e+01 # Hw SPCE + 113 38 4 -0.847600 2.035077e+01 5.090120e+00 1.282362e+01 # Ow SPCE + 114 38 3 0.423800 2.089205e+01 4.864082e+00 1.201373e+01 # Hw SPCE + 115 39 3 0.423800 2.451616e+01 8.924670e+00 1.865568e+01 # Hw SPCE + 116 39 4 -0.847600 2.381451e+01 8.652982e+00 1.799699e+01 # Ow SPCE + 117 39 3 0.423800 2.311781e+01 9.367935e+00 1.793821e+01 # Hw SPCE + 118 40 3 0.423800 1.500065e+00 2.219167e+01 2.760505e+00 # Hw SPCE + 119 40 4 -0.847600 2.224501e+00 2.150236e+01 2.767217e+00 # Ow SPCE + 120 40 3 0.423800 1.817068e+00 2.059122e+01 2.829029e+00 # Hw SPCE + 121 41 3 0.423800 2.640554e+01 1.928714e+01 4.290644e+00 # Hw SPCE + 122 41 4 -0.847600 2.740415e+01 1.931798e+01 4.247967e+00 # Ow SPCE + 123 41 3 0.423800 2.770519e+01 2.026827e+01 4.168519e+00 # Hw SPCE + 124 42 3 0.423800 1.388747e+01 7.977813e+00 2.595555e+01 # Hw SPCE + 125 42 4 -0.847600 1.290644e+01 7.828209e+00 2.607882e+01 # Ow SPCE + 126 42 3 0.423800 1.244102e+01 8.710473e+00 2.614947e+01 # Hw SPCE + 127 43 3 0.423800 2.444541e+01 1.183745e+01 2.520365e+01 # Hw SPCE + 128 43 4 -0.847600 2.466934e+01 1.086365e+01 2.516413e+01 # Ow SPCE + 129 43 3 0.423800 2.566048e+01 1.075222e+01 2.509189e+01 # Hw SPCE + 130 44 3 0.423800 2.483417e+01 1.651695e+01 2.163120e+01 # Hw SPCE + 131 44 4 -0.847600 2.410271e+01 1.585943e+01 2.145058e+01 # Ow SPCE + 132 44 3 0.423800 2.445847e+01 1.492995e+01 2.154809e+01 # Hw SPCE + 133 45 3 0.423800 1.730263e+01 2.595540e+01 3.740298e+00 # Hw SPCE + 134 45 4 -0.847600 1.773679e+01 2.510003e+01 4.022883e+00 # Ow SPCE + 135 45 3 0.423800 1.770998e+01 2.444677e+01 3.266223e+00 # Hw SPCE + 136 46 3 0.423800 1.064666e+01 1.544703e+00 2.342635e+01 # Hw SPCE + 137 46 4 -0.847600 9.658303e+00 1.485990e+00 2.356670e+01 # Ow SPCE + 138 46 3 0.423800 9.290506e+00 2.400694e+00 2.373415e+01 # Hw SPCE + 139 47 3 0.423800 6.958351e+00 1.058272e+01 2.770522e+01 # Hw SPCE + 140 47 4 -0.847600 7.092574e+00 1.157367e+01 2.770263e+01 # Ow SPCE + 141 47 3 0.423800 6.203030e+00 1.203050e+01 2.769941e+01 # Hw SPCE + 142 48 3 0.423800 3.958262e+00 4.358392e+00 8.337038e+00 # Hw SPCE + 143 48 4 -0.847600 3.059091e+00 3.923448e+00 8.385147e+00 # Ow SPCE + 144 48 3 0.423800 3.110013e+00 3.117001e+00 8.974257e+00 # Hw SPCE + 145 49 3 0.423800 2.527221e+01 1.981465e+01 9.871580e+00 # Hw SPCE + 146 49 4 -0.847600 2.589272e+01 1.903608e+01 9.965427e+00 # Ow SPCE + 147 49 3 0.423800 2.675477e+01 1.934357e+01 1.036832e+01 # Hw SPCE + 148 50 3 0.423800 2.513678e+01 1.655111e+01 8.455263e+00 # Hw SPCE + 149 50 4 -0.847600 2.439311e+01 1.719386e+01 8.271354e+00 # Ow SPCE + 150 50 3 0.423800 2.390732e+01 1.691348e+01 7.443466e+00 # Hw SPCE + 151 51 3 0.423800 9.547080e+00 5.818685e+00 7.837619e+00 # Hw SPCE + 152 51 4 -0.847600 9.188230e+00 4.885428e+00 7.821533e+00 # Ow SPCE + 153 51 3 0.423800 9.947239e+00 4.237539e+00 7.757147e+00 # Hw SPCE + 154 52 3 0.423800 1.913212e+01 1.999545e+01 1.375657e+01 # Hw SPCE + 155 52 4 -0.847600 1.977845e+01 1.954444e+01 1.437208e+01 # Ow SPCE + 156 52 3 0.423800 2.009170e+01 1.868964e+01 1.395831e+01 # Hw SPCE + 157 53 3 0.423800 2.488521e+00 4.298268e+00 1.662022e+01 # Hw SPCE + 158 53 4 -0.847600 3.439105e+00 4.019650e+00 1.675720e+01 # Ow SPCE + 159 53 3 0.423800 3.840963e+00 4.558416e+00 1.749763e+01 # Hw SPCE + 160 54 3 0.423800 8.720856e+00 1.200478e+01 2.905857e+00 # Hw SPCE + 161 54 4 -0.847600 8.109727e+00 1.255626e+01 2.338060e+00 # Ow SPCE + 162 54 3 0.423800 7.159796e+00 1.233215e+01 2.555793e+00 # Hw SPCE + 163 55 3 0.423800 1.270857e+01 1.035303e+01 5.382569e+00 # Hw SPCE + 164 55 4 -0.847600 1.322488e+01 9.496640e+00 5.388255e+00 # Ow SPCE + 165 55 3 0.423800 1.305339e+01 9.009733e+00 6.244710e+00 # Hw SPCE + 166 56 3 0.423800 1.684898e+01 2.523462e+01 1.822162e+01 # Hw SPCE + 167 56 4 -0.847600 1.664347e+01 2.603725e+01 1.878158e+01 # Ow SPCE + 168 56 3 0.423800 1.648466e+01 2.575236e+01 1.972689e+01 # Hw SPCE + 169 57 3 0.423800 1.020796e+01 2.594114e+01 7.868994e+00 # Hw SPCE + 170 57 4 -0.847600 1.048594e+01 2.681088e+01 8.276773e+00 # Ow SPCE + 171 57 3 0.423800 1.003609e+01 2.692243e+01 9.162888e+00 # Hw SPCE + 172 58 3 0.423800 2.300209e+01 1.144525e+01 1.973611e+01 # Hw SPCE + 173 58 4 -0.847600 2.326720e+01 1.069841e+01 2.034599e+01 # Ow SPCE + 174 58 3 0.423800 2.274079e+01 1.075787e+01 2.119414e+01 # Hw SPCE + 175 59 3 0.423800 1.609161e+01 1.214359e+01 1.492237e+00 # Hw SPCE + 176 59 4 -0.847600 1.690824e+01 1.157531e+01 1.593113e+00 # Ow SPCE + 177 59 3 0.423800 1.664177e+01 1.065885e+01 1.891605e+00 # Hw SPCE + 178 60 3 0.423800 2.419902e+01 2.411706e+01 6.611761e+00 # Hw SPCE + 179 60 4 -0.847600 2.467864e+01 2.498895e+01 6.710596e+00 # Ow SPCE + 180 60 3 0.423800 2.544873e+01 2.487644e+01 7.338537e+00 # Hw SPCE + 181 61 3 0.423800 1.196568e+01 5.594696e+00 6.473038e+00 # Hw SPCE + 182 61 4 -0.847600 1.199305e+01 6.536579e+00 6.807864e+00 # Ow SPCE + 183 61 3 0.423800 1.267510e+01 6.612062e+00 7.535263e+00 # Hw SPCE + 184 62 3 0.423800 1.669021e+01 8.472310e+00 7.036663e+00 # Hw SPCE + 185 62 4 -0.847600 1.572284e+01 8.690729e+00 6.908251e+00 # Ow SPCE + 186 62 3 0.423800 1.554585e+01 9.621300e+00 7.228737e+00 # Hw SPCE + 187 63 3 0.423800 1.821528e+01 1.487703e+01 1.756524e+01 # Hw SPCE + 188 63 4 -0.847600 1.872911e+01 1.551055e+01 1.814370e+01 # Ow SPCE + 189 63 3 0.423800 1.854708e+01 1.644985e+01 1.785290e+01 # Hw SPCE + 190 64 3 0.423800 7.984302e+00 1.799893e+01 1.529353e+00 # Hw SPCE + 191 64 4 -0.847600 8.826448e+00 1.746123e+01 1.488465e+00 # Ow SPCE + 192 64 3 0.423800 9.462122e+00 1.778360e+01 2.189889e+00 # Hw SPCE + 193 65 3 0.423800 2.562243e+01 6.741416e+00 1.403530e+01 # Hw SPCE + 194 65 4 -0.847600 2.622983e+01 6.086036e+00 1.448423e+01 # Ow SPCE + 195 65 3 0.423800 2.717413e+01 6.262256e+00 1.420632e+01 # Hw SPCE + 196 66 3 0.423800 2.512713e+01 2.094793e+00 1.358574e+01 # Hw SPCE + 197 66 4 -0.847600 2.434949e+01 1.495442e+00 1.339585e+01 # Ow SPCE + 198 66 3 0.423800 2.355565e+01 1.803117e+00 1.392040e+01 # Hw SPCE + 199 67 3 0.423800 9.301908e+00 1.331503e+01 2.358584e+01 # Hw SPCE + 200 67 4 -0.847600 8.584183e+00 1.395669e+01 2.331540e+01 # Ow SPCE + 201 67 3 0.423800 8.271122e+00 1.373659e+01 2.239153e+01 # Hw SPCE + 202 68 3 0.423800 9.955846e+00 1.273829e+01 6.296276e+00 # Hw SPCE + 203 68 4 -0.847600 1.056341e+01 1.199023e+01 6.029323e+00 # Ow SPCE + 204 68 3 0.423800 1.029850e+01 1.165171e+01 5.126425e+00 # Hw SPCE + 205 69 3 0.423800 1.595831e+01 4.015404e+00 2.177868e+01 # Hw SPCE + 206 69 4 -0.847600 1.665439e+01 3.881186e+00 2.248398e+01 # Ow SPCE + 207 69 3 0.423800 1.647833e+01 4.501446e+00 2.324836e+01 # Hw SPCE + 208 70 3 0.423800 1.191249e+01 1.053961e+01 1.614692e+01 # Hw SPCE + 209 70 4 -0.847600 1.285965e+01 1.031522e+01 1.591770e+01 # Ow SPCE + 210 70 3 0.423800 1.326240e+01 1.106545e+01 1.539335e+01 # Hw SPCE + 211 71 3 0.423800 2.756106e+01 7.219592e+00 3.733621e+00 # Hw SPCE + 212 71 4 -0.847600 2.673030e+01 7.191784e+00 3.177694e+00 # Ow SPCE + 213 71 3 0.423800 2.592863e+01 7.212180e+00 3.775112e+00 # Hw SPCE + 214 72 3 0.423800 1.619051e+01 4.555961e+00 1.375257e+01 # Hw SPCE + 215 72 4 -0.847600 1.693660e+01 4.702954e+00 1.310315e+01 # Ow SPCE + 216 72 3 0.423800 1.692272e+01 3.981627e+00 1.241069e+01 # Hw SPCE + 217 73 3 0.423800 2.233085e+01 2.254376e+01 2.509491e+01 # Hw SPCE + 218 73 4 -0.847600 2.137546e+01 2.283349e+01 2.503760e+01 # Ow SPCE + 219 73 3 0.423800 2.132827e+01 2.383218e+01 2.505737e+01 # Hw SPCE + 220 74 3 0.423800 4.614385e+00 2.266996e+01 1.754496e+01 # Hw SPCE + 221 74 4 -0.847600 5.529231e+00 2.271822e+01 1.794587e+01 # Ow SPCE + 222 74 3 0.423800 6.044304e+00 2.345795e+01 1.751287e+01 # Hw SPCE + 223 75 3 0.423800 2.221903e+01 7.556525e+00 1.516871e+01 # Hw SPCE + 224 75 4 -0.847600 2.250349e+01 7.635346e+00 1.421326e+01 # Ow SPCE + 225 75 3 0.423800 2.176672e+01 7.313720e+00 1.361852e+01 # Hw SPCE + 226 76 3 0.423800 2.629759e+01 1.920638e+01 2.353714e+01 # Hw SPCE + 227 76 4 -0.847600 2.715395e+01 1.902228e+01 2.401958e+01 # Ow SPCE + 228 76 3 0.423800 2.770506e+01 1.837985e+01 2.348707e+01 # Hw SPCE + 229 77 3 0.423800 4.143809e+00 1.561555e+01 8.018737e+00 # Hw SPCE + 230 77 4 -0.847600 4.614959e+00 1.553180e+01 8.896805e+00 # Ow SPCE + 231 77 3 0.423800 4.199222e+00 1.615528e+01 9.558946e+00 # Hw SPCE + 232 78 3 0.423800 9.954198e+00 1.261788e+01 1.237010e+01 # Hw SPCE + 233 78 4 -0.847600 9.562880e+00 1.353598e+01 1.243307e+01 # Ow SPCE + 234 78 3 0.423800 8.569485e+00 1.346921e+01 1.252638e+01 # Hw SPCE + 235 79 3 0.423800 2.332846e+01 2.323923e+01 3.781581e+00 # Hw SPCE + 236 79 4 -0.847600 2.276687e+01 2.256928e+01 3.296002e+00 # Ow SPCE + 237 79 3 0.423800 2.333089e+01 2.178393e+01 3.040806e+00 # Hw SPCE + 238 80 3 0.423800 1.563376e+01 9.681389e+00 1.524542e+01 # Hw SPCE + 239 80 4 -0.847600 1.641808e+01 9.172361e+00 1.559999e+01 # Ow SPCE + 240 80 3 0.423800 1.655877e+01 9.404722e+00 1.656239e+01 # Hw SPCE + 241 81 3 0.423800 3.016047e+00 1.608090e+01 2.770691e+01 # Hw SPCE + 242 81 4 -0.847600 3.873141e+00 1.658768e+01 2.761432e+01 # Ow SPCE + 243 81 3 0.423800 4.041570e+00 1.678405e+01 2.664837e+01 # Hw SPCE + 244 82 3 0.423800 2.553862e+01 1.927894e+01 1.283389e+01 # Hw SPCE + 245 82 4 -0.847600 2.595825e+01 2.010455e+01 1.321108e+01 # Ow SPCE + 246 82 3 0.423800 2.694466e+01 1.996635e+01 1.329986e+01 # Hw SPCE + 247 83 3 0.423800 1.446078e+01 5.122478e+00 1.975466e+01 # Hw SPCE + 248 83 4 -0.847600 1.399157e+01 5.719286e+00 1.910377e+01 # Ow SPCE + 249 83 3 0.423800 1.387428e+01 6.626403e+00 1.950797e+01 # Hw SPCE + 250 84 3 0.423800 4.975267e+00 1.195188e+01 1.361200e+01 # Hw SPCE + 251 84 4 -0.847600 5.863360e+00 1.223599e+01 1.397335e+01 # Ow SPCE + 252 84 3 0.423800 6.001585e+00 1.182880e+01 1.487617e+01 # Hw SPCE + 253 85 3 0.423800 1.729394e+01 2.690297e+01 2.489413e+01 # Hw SPCE + 254 85 4 -0.847600 1.798622e+01 2.618717e+01 2.498570e+01 # Ow SPCE + 255 85 3 0.423800 1.753851e+01 2.531197e+01 2.516899e+01 # Hw SPCE + 256 86 3 0.423800 1.443295e+01 1.369845e+01 9.542794e+00 # Hw SPCE + 257 86 4 -0.847600 1.453225e+01 1.337010e+01 1.048212e+01 # Ow SPCE + 258 86 3 0.423800 1.407152e+01 1.248767e+01 1.057721e+01 # Hw SPCE + 259 87 3 0.423800 1.481041e+01 9.892914e+00 2.769929e+01 # Hw SPCE + 260 87 4 -0.847600 1.474545e+01 1.089078e+01 2.770556e+01 # Ow SPCE + 261 87 3 0.423800 1.566461e+01 1.128460e+01 2.771213e+01 # Hw SPCE + 262 88 3 0.423800 2.711944e+01 2.239741e+00 7.551846e+00 # Hw SPCE + 263 88 4 -0.847600 2.613715e+01 2.417616e+00 7.610794e+00 # Ow SPCE + 264 88 3 0.423800 2.588056e+01 2.557524e+00 8.567132e+00 # Hw SPCE + 265 89 3 0.423800 1.579109e+01 5.900382e+00 6.668995e+00 # Hw SPCE + 266 89 4 -0.847600 1.499190e+01 6.158630e+00 6.126217e+00 # Ow SPCE + 267 89 3 0.423800 1.487648e+01 5.510338e+00 5.373624e+00 # Hw SPCE + 268 90 3 0.423800 2.133610e+01 1.746297e+01 9.335501e+00 # Hw SPCE + 269 90 4 -0.847600 2.057506e+01 1.754198e+01 8.691632e+00 # Ow SPCE + 270 90 3 0.423800 2.092169e+01 1.747499e+01 7.756026e+00 # Hw SPCE + 271 91 3 0.423800 5.764508e+00 6.459756e+00 1.799860e+01 # Hw SPCE + 272 91 4 -0.847600 6.332363e+00 5.967190e+00 1.865808e+01 # Ow SPCE + 273 91 3 0.423800 6.766765e+00 6.620913e+00 1.927772e+01 # Hw SPCE + 274 92 3 0.423800 1.519730e+01 1.983322e+01 1.921450e+01 # Hw SPCE + 275 92 4 -0.847600 1.593017e+01 1.916543e+01 1.908429e+01 # Ow SPCE + 276 92 3 0.423800 1.663520e+01 1.955553e+01 1.849204e+01 # Hw SPCE + 277 93 3 0.423800 2.313253e+00 7.250692e+00 1.329362e+01 # Hw SPCE + 278 93 4 -0.847600 1.488319e+00 7.811762e+00 1.322518e+01 # Ow SPCE + 279 93 3 0.423800 1.540991e+00 8.563456e+00 1.388259e+01 # Hw SPCE + 280 94 3 0.423800 2.611731e+01 1.202552e+01 1.053768e+01 # Hw SPCE + 281 94 4 -0.847600 2.710862e+01 1.215596e+01 1.052099e+01 # Ow SPCE + 282 94 3 0.423800 2.756049e+01 1.126726e+01 1.044331e+01 # Hw SPCE + 283 95 3 0.423800 6.603696e+00 2.054040e+01 1.298798e+01 # Hw SPCE + 284 95 4 -0.847600 5.882293e+00 2.028304e+01 1.234506e+01 # Ow SPCE + 285 95 3 0.423800 6.172577e+00 2.050160e+01 1.141341e+01 # Hw SPCE + 286 96 3 0.423800 2.098737e+01 6.874062e+00 1.013861e+01 # Hw SPCE + 287 96 4 -0.847600 2.156028e+01 7.451122e+00 1.072066e+01 # Ow SPCE + 288 96 3 0.423800 2.195352e+01 8.190100e+00 1.017360e+01 # Hw SPCE + 289 97 3 0.423800 5.786826e+00 1.087307e+01 1.086502e+01 # Hw SPCE + 290 97 4 -0.847600 6.324427e+00 1.163284e+01 1.123071e+01 # Ow SPCE + 291 97 3 0.423800 7.142246e+00 1.127568e+01 1.168194e+01 # Hw SPCE + 292 98 3 0.423800 1.143842e+01 2.119323e+01 8.871945e+00 # Hw SPCE + 293 98 4 -0.847600 1.139221e+01 2.127877e+01 7.876682e+00 # Ow SPCE + 294 98 3 0.423800 1.071119e+01 2.064007e+01 7.518516e+00 # Hw SPCE + 295 99 3 0.423800 5.459585e+00 2.383383e+01 5.598160e+00 # Hw SPCE + 296 99 4 -0.847600 5.520099e+00 2.482379e+01 5.470403e+00 # Ow SPCE + 297 99 3 0.423800 5.586370e+00 2.503046e+01 4.494238e+00 # Hw SPCE + 298 100 3 0.423800 2.264458e+00 7.960990e+00 2.770952e+01 # Hw SPCE + 299 100 4 -0.847600 2.090525e+00 8.160734e+00 2.674523e+01 # Ow SPCE + 300 100 3 0.423800 1.495909e+00 7.454707e+00 2.636058e+01 # Hw SPCE + 301 101 3 0.423800 7.095393e+00 1.940453e+01 2.544132e+01 # Hw SPCE + 302 101 4 -0.847600 6.237306e+00 1.963392e+01 2.498190e+01 # Ow SPCE + 303 101 3 0.423800 5.644089e+00 1.882911e+01 2.496253e+01 # Hw SPCE + 304 102 3 0.423800 1.499078e+00 3.404424e+00 2.770580e+01 # Hw SPCE + 305 102 4 -0.847600 2.042815e+00 3.910224e+00 2.703609e+01 # Ow SPCE + 306 102 3 0.423800 1.977853e+00 4.889953e+00 2.722559e+01 # Hw SPCE + 307 103 3 0.423800 5.115452e+00 2.292057e+01 1.247440e+01 # Hw SPCE + 308 103 4 -0.847600 5.773141e+00 2.354653e+01 1.205533e+01 # Ow SPCE + 309 103 3 0.423800 6.680714e+00 2.312664e+01 1.205713e+01 # Hw SPCE + 310 104 3 0.423800 1.944181e+01 2.324594e+01 1.499570e+00 # Hw SPCE + 311 104 4 -0.847600 2.043993e+01 2.318469e+01 1.499022e+00 # Ow SPCE + 312 104 3 0.423800 2.071487e+01 2.222323e+01 1.498289e+00 # Hw SPCE + 313 105 3 0.423800 1.030626e+01 8.957281e+00 6.373247e+00 # Hw SPCE + 314 105 4 -0.847600 9.786014e+00 8.104555e+00 6.326252e+00 # Ow SPCE + 315 105 3 0.423800 8.880748e+00 8.243851e+00 6.727613e+00 # Hw SPCE + 316 106 3 0.423800 1.864859e+01 1.763094e+00 1.290621e+01 # Hw SPCE + 317 106 4 -0.847600 1.923656e+01 2.571543e+00 1.287976e+01 # Ow SPCE + 318 106 3 0.423800 2.017824e+01 2.292795e+00 1.269123e+01 # Hw SPCE + 319 107 3 0.423800 2.129031e+00 5.623946e+00 1.104896e+01 # Hw SPCE + 320 107 4 -0.847600 1.506474e+00 5.035776e+00 1.053275e+01 # Ow SPCE + 321 107 3 0.423800 1.486177e+00 4.126233e+00 1.094786e+01 # Hw SPCE + 322 108 3 0.423800 2.212734e+01 1.355457e+01 3.475366e+00 # Hw SPCE + 323 108 4 -0.847600 2.189942e+01 1.348653e+01 4.446665e+00 # Ow SPCE + 324 108 3 0.423800 2.141982e+01 1.431518e+01 4.735327e+00 # Hw SPCE + 325 109 3 0.423800 2.714041e+01 9.226233e+00 1.942138e+01 # Hw SPCE + 326 109 4 -0.847600 2.695029e+01 1.019981e+01 1.954785e+01 # Ow SPCE + 327 109 3 0.423800 2.770446e+01 1.073827e+01 1.917198e+01 # Hw SPCE + 328 110 3 0.423800 1.145913e+01 1.921390e+01 1.496917e+01 # Hw SPCE + 329 110 4 -0.847600 1.131470e+01 2.018773e+01 1.479367e+01 # Ow SPCE + 330 110 3 0.423800 1.033642e+01 2.036578e+01 1.468754e+01 # Hw SPCE + 331 111 3 0.423800 4.274133e+00 2.306189e+00 2.713568e+01 # Hw SPCE + 332 111 4 -0.847600 4.237246e+00 1.500039e+00 2.654512e+01 # Ow SPCE + 333 111 3 0.423800 3.652688e+00 1.690998e+00 2.575656e+01 # Hw SPCE + 334 112 3 0.423800 2.374365e+01 4.285483e+00 2.548838e+01 # Hw SPCE + 335 112 4 -0.847600 2.363447e+01 3.410101e+00 2.501744e+01 # Ow SPCE + 336 112 3 0.423800 2.453520e+01 3.022399e+00 2.482154e+01 # Hw SPCE + 337 113 3 0.423800 2.147633e+01 2.400029e+01 6.981339e+00 # Hw SPCE + 338 113 4 -0.847600 2.070482e+01 2.460854e+01 6.794782e+00 # Ow SPCE + 339 113 3 0.423800 2.100757e+01 2.555958e+01 6.856910e+00 # Hw SPCE + 340 114 3 0.423800 2.475952e+01 2.542350e+01 2.655084e+01 # Hw SPCE + 341 114 4 -0.847600 2.490466e+01 2.505812e+01 2.563137e+01 # Ow SPCE + 342 114 3 0.423800 2.404295e+01 2.469469e+01 2.527727e+01 # Hw SPCE + 343 115 3 0.423800 2.160335e+01 2.393199e+01 1.009846e+01 # Hw SPCE + 344 115 4 -0.847600 2.078275e+01 2.449002e+01 1.022179e+01 # Ow SPCE + 345 115 3 0.423800 2.003750e+01 2.411294e+01 9.671860e+00 # Hw SPCE + 346 116 3 0.423800 1.865506e+01 2.117845e+01 1.756982e+01 # Hw SPCE + 347 116 4 -0.847600 1.807847e+01 2.183151e+01 1.707884e+01 # Ow SPCE + 348 116 3 0.423800 1.837699e+01 2.276271e+01 1.728801e+01 # Hw SPCE + 349 117 3 0.423800 2.061645e+00 6.549304e+00 1.814025e+01 # Hw SPCE + 350 117 4 -0.847600 1.475173e+00 6.253958e+00 1.889446e+01 # Ow SPCE + 351 117 3 0.423800 1.571483e+00 5.267187e+00 1.902487e+01 # Hw SPCE + 352 118 3 0.423800 1.643494e+01 1.386321e+01 1.572937e+01 # Hw SPCE + 353 118 4 -0.847600 1.600041e+01 1.308756e+01 1.527161e+01 # Ow SPCE + 354 118 3 0.423800 1.500654e+01 1.318983e+01 1.531362e+01 # Hw SPCE + 355 119 3 0.423800 1.886154e+01 1.359977e+01 1.388201e+01 # Hw SPCE + 356 119 4 -0.847600 1.985547e+01 1.361236e+01 1.399129e+01 # Ow SPCE + 357 119 3 0.423800 2.020182e+01 1.267429e+01 1.399938e+01 # Hw SPCE + 358 120 3 0.423800 2.640146e+01 4.249195e+00 1.244508e+01 # Hw SPCE + 359 120 4 -0.847600 2.716791e+01 3.811578e+00 1.291523e+01 # Ow SPCE + 360 120 3 0.423800 2.770629e+01 3.285544e+00 1.225687e+01 # Hw SPCE + 361 121 3 0.423800 1.496812e+00 1.814687e+00 1.782668e+01 # Hw SPCE + 362 121 4 -0.847600 1.815569e+00 1.693357e+00 1.876672e+01 # Ow SPCE + 363 121 3 0.423800 1.625725e+00 2.522412e+00 1.929267e+01 # Hw SPCE + 364 122 3 0.423800 2.680988e+01 1.869516e+01 7.392907e+00 # Hw SPCE + 365 122 4 -0.847600 2.739577e+01 1.944655e+01 7.696489e+00 # Ow SPCE + 366 122 3 0.423800 2.770460e+01 1.997015e+01 6.902469e+00 # Hw SPCE + 367 123 3 0.423800 6.657051e+00 1.748551e+01 3.900748e+00 # Hw SPCE + 368 123 4 -0.847600 7.611764e+00 1.740782e+01 4.187954e+00 # Ow SPCE + 369 123 3 0.423800 7.719232e+00 1.780597e+01 5.098957e+00 # Hw SPCE + 370 124 3 0.423800 1.712795e+01 2.364901e+01 2.137752e+01 # Hw SPCE + 371 124 4 -0.847600 1.651270e+01 2.309626e+01 2.193960e+01 # Ow SPCE + 372 124 3 0.423800 1.702767e+01 2.235135e+01 2.236376e+01 # Hw SPCE + 373 125 3 0.423800 2.465960e+01 9.111990e+00 1.552092e+00 # Hw SPCE + 374 125 4 -0.847600 2.368347e+01 9.328956e+00 1.542385e+00 # Ow SPCE + 375 125 3 0.423800 2.356287e+01 1.032079e+01 1.500818e+00 # Hw SPCE + 376 126 3 0.423800 1.541633e+01 2.513037e+01 2.342964e+01 # Hw SPCE + 377 126 4 -0.847600 1.496712e+01 2.563480e+01 2.416705e+01 # Ow SPCE + 378 126 3 0.423800 1.407826e+01 2.521990e+01 2.436140e+01 # Hw SPCE + 379 127 3 0.423800 2.198927e+01 2.296037e+01 1.264179e+01 # Hw SPCE + 380 127 4 -0.847600 2.135361e+01 2.220618e+01 1.280650e+01 # Ow SPCE + 381 127 3 0.423800 2.142262e+01 2.154325e+01 1.206101e+01 # Hw SPCE + 382 128 3 0.423800 5.808379e+00 1.479597e+00 1.729754e+01 # Hw SPCE + 383 128 4 -0.847600 5.311955e+00 2.244876e+00 1.770731e+01 # Ow SPCE + 384 128 3 0.423800 4.490271e+00 1.903163e+00 1.816345e+01 # Hw SPCE + 385 129 3 0.423800 4.410407e+00 9.586919e+00 1.489573e+01 # Hw SPCE + 386 129 4 -0.847600 4.330005e+00 8.939478e+00 1.413786e+01 # Ow SPCE + 387 129 3 0.423800 5.226071e+00 8.810656e+00 1.371305e+01 # Hw SPCE + 388 130 3 0.423800 8.119198e+00 3.621439e+00 1.317752e+01 # Hw SPCE + 389 130 4 -0.847600 8.167483e+00 2.832111e+00 1.256545e+01 # Ow SPCE + 390 130 3 0.423800 7.317941e+00 2.308454e+00 1.262918e+01 # Hw SPCE + 391 131 3 0.423800 1.605369e+01 6.725170e+00 2.132125e+01 # Hw SPCE + 392 131 4 -0.847600 1.601692e+01 7.081523e+00 2.225488e+01 # Ow SPCE + 393 131 3 0.423800 1.677297e+01 7.720235e+00 2.239787e+01 # Hw SPCE + 394 132 3 0.423800 2.587812e+01 2.770384e+01 6.790070e+00 # Hw SPCE + 395 132 4 -0.847600 2.495789e+01 2.770683e+01 6.398688e+00 # Ow SPCE + 396 132 3 0.423800 2.428216e+01 2.770348e+01 7.135826e+00 # Hw SPCE + 397 133 3 0.423800 3.242275e+00 2.430164e+01 3.033818e+00 # Hw SPCE + 398 133 4 -0.847600 3.385077e+00 2.527679e+01 2.864385e+00 # Ow SPCE + 399 133 3 0.423800 4.115488e+00 2.539474e+01 2.191640e+00 # Hw SPCE + 400 134 3 0.423800 1.391872e+01 1.853150e+01 1.389147e+01 # Hw SPCE + 401 134 4 -0.847600 1.350915e+01 1.835748e+01 1.299594e+01 # Ow SPCE + 402 134 3 0.423800 1.277157e+01 1.768895e+01 1.309098e+01 # Hw SPCE + 403 135 3 0.423800 1.883256e+00 1.950562e+01 6.097187e+00 # Hw SPCE + 404 135 4 -0.847600 2.108048e+00 1.853214e+01 6.139671e+00 # Ow SPCE + 405 135 3 0.423800 1.664096e+00 1.805416e+01 5.381755e+00 # Hw SPCE + 406 136 3 0.423800 1.772073e+01 1.904358e+01 6.835467e+00 # Hw SPCE + 407 136 4 -0.847600 1.848360e+01 1.839868e+01 6.881595e+00 # Ow SPCE + 408 136 3 0.423800 1.815821e+01 1.748070e+01 6.654789e+00 # Hw SPCE + 409 137 3 0.423800 1.668142e+01 1.746799e+01 2.770692e+01 # Hw SPCE + 410 137 4 -0.847600 1.690378e+01 1.739205e+01 2.673492e+01 # Ow SPCE + 411 137 3 0.423800 1.607886e+01 1.715496e+01 2.622181e+01 # Hw SPCE + 412 138 3 0.423800 6.510214e+00 5.350768e+00 8.615350e+00 # Hw SPCE + 413 138 4 -0.847600 6.301757e+00 6.322395e+00 8.727089e+00 # Ow SPCE + 414 138 3 0.423800 7.064288e+00 6.868862e+00 8.380795e+00 # Hw SPCE + 415 139 3 0.423800 1.123604e+01 1.437475e+01 2.577805e+01 # Hw SPCE + 416 139 4 -0.847600 1.147623e+01 1.512029e+01 2.639973e+01 # Ow SPCE + 417 139 3 0.423800 1.064787e+01 1.561484e+01 2.666285e+01 # Hw SPCE + 418 140 3 0.423800 1.018251e+01 2.301900e+01 2.071248e+01 # Hw SPCE + 419 140 4 -0.847600 1.073103e+01 2.232837e+01 2.118382e+01 # Ow SPCE + 420 140 3 0.423800 1.020516e+01 2.148141e+01 2.126196e+01 # Hw SPCE + 421 141 3 0.423800 5.434060e+00 2.503928e+00 1.462372e+01 # Hw SPCE + 422 141 4 -0.847600 6.195222e+00 3.000981e+00 1.504034e+01 # Ow SPCE + 423 141 3 0.423800 5.916457e+00 3.943344e+00 1.522539e+01 # Hw SPCE + 424 142 3 0.423800 2.396703e+01 1.692595e+01 1.892427e+01 # Hw SPCE + 425 142 4 -0.847600 2.487591e+01 1.651107e+01 1.888188e+01 # Ow SPCE + 426 142 3 0.423800 2.528573e+01 1.669671e+01 1.798880e+01 # Hw SPCE + 427 143 3 0.423800 1.739023e+01 2.770535e+01 2.756282e+01 # Hw SPCE + 428 143 4 -0.847600 1.824208e+01 2.718404e+01 2.761360e+01 # Ow SPCE + 429 143 3 0.423800 1.803237e+01 2.621369e+01 2.773377e+01 # Hw SPCE + 430 144 3 0.423800 1.002054e+01 2.068443e+00 2.080057e+01 # Hw SPCE + 431 144 4 -0.847600 1.037196e+01 1.499358e+00 2.005717e+01 # Ow SPCE + 432 144 3 0.423800 1.137167e+01 1.499631e+00 2.008118e+01 # Hw SPCE + 433 145 3 0.423800 5.474756e+00 6.597903e+00 2.212606e+01 # Hw SPCE + 434 145 4 -0.847600 6.060290e+00 6.454103e+00 2.292385e+01 # Ow SPCE + 435 145 3 0.423800 5.607820e+00 5.830491e+00 2.356133e+01 # Hw SPCE + 436 146 3 0.423800 9.616079e+00 2.770577e+01 1.272301e+01 # Hw SPCE + 437 146 4 -0.847600 1.005389e+01 2.758118e+01 1.183261e+01 # Ow SPCE + 438 146 3 0.423800 1.104172e+01 2.770510e+01 1.192665e+01 # Hw SPCE + 439 147 3 0.423800 7.556371e+00 8.751423e+00 1.067315e+01 # Hw SPCE + 440 147 4 -0.847600 6.677067e+00 8.276682e+00 1.071118e+01 # Ow SPCE + 441 147 3 0.423800 6.692592e+00 7.605177e+00 1.145202e+01 # Hw SPCE + 442 148 3 0.423800 1.048902e+01 9.944021e+00 1.499856e+00 # Hw SPCE + 443 148 4 -0.847600 1.107788e+01 9.135791e+00 1.497048e+00 # Ow SPCE + 444 148 3 0.423800 1.051214e+01 8.311210e+00 1.495741e+00 # Hw SPCE + 445 149 3 0.423800 2.225224e+01 1.699334e+01 1.388572e+01 # Hw SPCE + 446 149 4 -0.847600 2.247601e+01 1.610910e+01 1.347578e+01 # Ow SPCE + 447 149 3 0.423800 2.332230e+01 1.619040e+01 1.294930e+01 # Hw SPCE + 448 150 3 0.423800 1.629210e+01 2.770573e+01 8.693261e+00 # Hw SPCE + 449 150 4 -0.847600 1.560110e+01 2.709673e+01 8.303856e+00 # Ow SPCE + 450 150 3 0.423800 1.580582e+01 2.615242e+01 8.561464e+00 # Hw SPCE + 451 151 3 0.423800 2.423080e+01 1.358698e+01 1.852585e+01 # Hw SPCE + 452 151 4 -0.847600 2.350560e+01 1.411138e+01 1.897204e+01 # Ow SPCE + 453 151 3 0.423800 2.267128e+01 1.406026e+01 1.842312e+01 # Hw SPCE + 454 152 3 0.423800 2.207406e+01 4.433705e+00 2.065867e+01 # Hw SPCE + 455 152 4 -0.847600 2.276959e+01 3.724600e+00 2.054287e+01 # Ow SPCE + 456 152 3 0.423800 2.359197e+01 4.126886e+00 2.014056e+01 # Hw SPCE + 457 153 3 0.423800 2.395702e+01 6.074153e+00 1.705293e+01 # Hw SPCE + 458 153 4 -0.847600 2.358426e+01 5.192507e+00 1.734233e+01 # Ow SPCE + 459 153 3 0.423800 2.433467e+01 4.558278e+00 1.752846e+01 # Hw SPCE + 460 154 3 0.423800 1.155557e+01 2.807646e+00 1.636444e+01 # Hw SPCE + 461 154 4 -0.847600 1.146110e+01 1.812305e+00 1.638374e+01 # Ow SPCE + 462 154 3 0.423800 1.138045e+01 1.503463e+00 1.733143e+01 # Hw SPCE + 463 155 3 0.423800 4.135912e+00 2.531900e+01 1.818837e+01 # Hw SPCE + 464 155 4 -0.847600 3.741676e+00 2.521934e+01 1.910196e+01 # Ow SPCE + 465 155 3 0.423800 4.213837e+00 2.448559e+01 1.959050e+01 # Hw SPCE + 466 156 3 0.423800 1.499258e+00 1.198985e+01 2.578979e+01 # Hw SPCE + 467 156 4 -0.847600 2.062832e+00 1.128002e+01 2.536727e+01 # Ow SPCE + 468 156 3 0.423800 1.537875e+00 1.043123e+01 2.530414e+01 # Hw SPCE + 469 157 3 0.423800 6.788951e+00 2.673524e+01 2.771333e+01 # Hw SPCE + 470 157 4 -0.847600 6.736475e+00 2.763375e+01 2.727752e+01 # Ow SPCE + 471 157 3 0.423800 5.853127e+00 2.773069e+01 2.681893e+01 # Hw SPCE + 472 158 3 0.423800 4.823100e+00 1.350860e+01 6.387855e+00 # Hw SPCE + 473 158 4 -0.847600 4.369663e+00 1.263897e+01 6.583146e+00 # Ow SPCE + 474 158 3 0.423800 4.571234e+00 1.236153e+01 7.522508e+00 # Hw SPCE + 475 159 3 0.423800 2.652742e+01 8.643512e+00 1.208390e+01 # Hw SPCE + 476 159 4 -0.847600 2.750728e+01 8.461636e+00 1.216639e+01 # Ow SPCE + 477 159 3 0.423800 2.770441e+01 7.539751e+00 1.183282e+01 # Hw SPCE + 478 160 3 0.423800 1.562548e+01 7.342341e+00 1.368183e+01 # Hw SPCE + 479 160 4 -0.847600 1.644892e+01 7.724632e+00 1.326255e+01 # Ow SPCE + 480 160 3 0.423800 1.657765e+01 7.324209e+00 1.235531e+01 # Hw SPCE + 481 161 3 0.423800 1.832876e+01 3.664241e+00 1.523424e+01 # Hw SPCE + 482 161 4 -0.847600 1.757342e+01 3.228540e+00 1.572376e+01 # Ow SPCE + 483 161 3 0.423800 1.723220e+01 2.455027e+00 1.518968e+01 # Hw SPCE + 484 162 3 0.423800 1.163979e+01 2.726442e+01 5.638394e+00 # Hw SPCE + 485 162 4 -0.847600 1.203117e+01 2.637033e+01 5.856191e+00 # Ow SPCE + 486 162 3 0.423800 1.265936e+01 2.646077e+01 6.628973e+00 # Hw SPCE + 487 163 3 0.423800 3.712836e+00 1.795600e+01 2.104265e+01 # Hw SPCE + 488 163 4 -0.847600 3.729339e+00 1.776723e+01 2.202453e+01 # Ow SPCE + 489 163 3 0.423800 2.793088e+00 1.774262e+01 2.237500e+01 # Hw SPCE + 490 164 3 0.423800 1.215495e+01 1.501989e+00 9.660698e+00 # Hw SPCE + 491 164 4 -0.847600 1.306022e+01 1.479590e+00 9.236442e+00 # Ow SPCE + 492 164 3 0.423800 1.376231e+01 1.546750e+00 9.945354e+00 # Hw SPCE + 493 165 3 0.423800 1.382068e+01 2.627313e+01 1.928618e+01 # Hw SPCE + 494 165 4 -0.847600 1.369118e+01 2.724037e+01 1.950452e+01 # Ow SPCE + 495 165 3 0.423800 1.457266e+01 2.771119e+01 1.946813e+01 # Hw SPCE + 496 166 3 0.423800 1.936570e+01 1.864386e+01 2.521456e+01 # Hw SPCE + 497 166 4 -0.847600 2.026756e+01 1.895792e+01 2.551126e+01 # Ow SPCE + 498 166 3 0.423800 2.023242e+01 1.993867e+01 2.570334e+01 # Hw SPCE + 499 167 3 0.423800 1.169885e+01 2.172581e+00 2.751632e+01 # Hw SPCE + 500 167 4 -0.847600 1.090011e+01 1.573456e+00 2.746098e+01 # Ow SPCE + 501 167 3 0.423800 1.061137e+01 1.490153e+00 2.650720e+01 # Hw SPCE + 502 168 3 0.423800 1.911213e+01 2.158443e+01 1.022983e+01 # Hw SPCE + 503 168 4 -0.847600 1.926141e+01 2.060202e+01 1.011766e+01 # Ow SPCE + 504 168 3 0.423800 1.928483e+01 2.016370e+01 1.101617e+01 # Hw SPCE + 505 169 3 0.423800 1.629210e+00 1.550801e+01 1.095958e+01 # Hw SPCE + 506 169 4 -0.847600 1.493041e+00 1.635194e+01 1.147846e+01 # Ow SPCE + 507 169 3 0.423800 2.168035e+00 1.703190e+01 1.119204e+01 # Hw SPCE + 508 170 3 0.423800 1.102279e+01 4.173853e+00 1.869068e+01 # Hw SPCE + 509 170 4 -0.847600 1.109242e+01 4.502781e+00 1.963246e+01 # Ow SPCE + 510 170 3 0.423800 1.122948e+01 5.493340e+00 1.963029e+01 # Hw SPCE + 511 171 3 0.423800 8.600246e+00 2.481675e+01 1.935975e+01 # Hw SPCE + 512 171 4 -0.847600 8.003650e+00 2.561907e+01 1.934092e+01 # Ow SPCE + 513 171 3 0.423800 7.051209e+00 2.532446e+01 1.926308e+01 # Hw SPCE + 514 172 3 0.423800 7.877713e+00 1.822785e+01 1.950056e+01 # Hw SPCE + 515 172 4 -0.847600 6.923133e+00 1.800620e+01 1.930144e+01 # Ow SPCE + 516 172 3 0.423800 6.847202e+00 1.767403e+01 1.836128e+01 # Hw SPCE + 517 173 3 0.423800 2.715931e+01 1.264839e+01 1.341405e+01 # Hw SPCE + 518 173 4 -0.847600 2.734880e+01 1.167554e+01 1.328112e+01 # Ow SPCE + 519 173 3 0.423800 2.648989e+01 1.118630e+01 1.312977e+01 # Hw SPCE + 520 174 3 0.423800 1.482572e+01 8.447714e+00 1.055548e+01 # Hw SPCE + 521 174 4 -0.847600 1.531227e+01 7.960482e+00 9.830314e+00 # Ow SPCE + 522 174 3 0.423800 1.465158e+01 7.577469e+00 9.184724e+00 # Hw SPCE + 523 175 3 0.423800 6.350160e+00 1.781671e+00 2.021119e+01 # Hw SPCE + 524 175 4 -0.847600 5.554766e+00 1.449580e+00 2.071820e+01 # Ow SPCE + 525 175 3 0.423800 4.990992e+00 2.226040e+00 2.099974e+01 # Hw SPCE + 526 176 3 0.423800 2.360588e+01 2.124534e+01 1.405838e+01 # Hw SPCE + 527 176 4 -0.847600 2.343533e+01 2.028764e+01 1.429017e+01 # Ow SPCE + 528 176 3 0.423800 2.247062e+01 2.007410e+01 1.413605e+01 # Hw SPCE + 529 177 3 0.423800 2.476177e+01 9.495265e+00 2.278084e+01 # Hw SPCE + 530 177 4 -0.847600 2.490594e+01 9.103976e+00 2.187194e+01 # Ow SPCE + 531 177 3 0.423800 2.584301e+01 8.762128e+00 2.180102e+01 # Hw SPCE + 532 178 3 0.423800 2.124801e+01 1.026202e+01 1.226324e+01 # Hw SPCE + 533 178 4 -0.847600 2.175978e+01 1.061858e+01 1.304488e+01 # Ow SPCE + 534 178 3 0.423800 2.143033e+01 1.018622e+01 1.388424e+01 # Hw SPCE + 535 179 3 0.423800 2.770461e+01 2.265303e+01 1.897481e+01 # Hw SPCE + 536 179 4 -0.847600 2.771622e+01 2.165817e+01 1.887413e+01 # Ow SPCE + 537 179 3 0.423800 2.699937e+01 2.137944e+01 1.823504e+01 # Hw SPCE + 538 180 3 0.423800 1.752412e+00 1.211560e+01 2.448378e+00 # Hw SPCE + 539 180 4 -0.847600 2.192876e+00 1.124630e+01 2.672646e+00 # Ow SPCE + 540 180 3 0.423800 1.502189e+00 1.052455e+01 2.717762e+00 # Hw SPCE + 541 181 3 0.423800 2.066796e+01 9.492666e+00 1.990433e+01 # Hw SPCE + 542 181 4 -0.847600 1.987345e+01 1.007578e+01 1.973481e+01 # Ow SPCE + 543 181 3 0.423800 1.945518e+01 1.033091e+01 2.060657e+01 # Hw SPCE + 544 182 3 0.423800 7.526139e+00 1.353553e+01 1.705107e+01 # Hw SPCE + 545 182 4 -0.847600 7.411920e+00 1.404119e+01 1.619593e+01 # Ow SPCE + 546 182 3 0.423800 7.814322e+00 1.495172e+01 1.629081e+01 # Hw SPCE + 547 183 3 0.423800 5.320834e+00 2.489018e+01 2.627333e+01 # Hw SPCE + 548 183 4 -0.847600 4.512268e+00 2.533586e+01 2.665751e+01 # Ow SPCE + 549 183 3 0.423800 3.697906e+00 2.503309e+01 2.616239e+01 # Hw SPCE + 550 184 3 0.423800 2.555518e+01 2.496555e+01 1.499745e+00 # Hw SPCE + 551 184 4 -0.847600 2.580931e+01 2.400607e+01 1.621410e+00 # Ow SPCE + 552 184 3 0.423800 2.498688e+01 2.343773e+01 1.596790e+00 # Hw SPCE + 553 185 3 0.423800 4.020936e+00 8.516876e+00 4.121746e+00 # Hw SPCE + 554 185 4 -0.847600 3.704058e+00 9.464727e+00 4.155894e+00 # Ow SPCE + 555 185 3 0.423800 4.491592e+00 1.008053e+01 4.131828e+00 # Hw SPCE + 556 186 3 0.423800 1.411577e+01 1.487915e+00 1.833251e+01 # Hw SPCE + 557 186 4 -0.847600 1.431943e+01 2.462252e+00 1.842837e+01 # Ow SPCE + 558 186 3 0.423800 1.347701e+01 2.990756e+00 1.832346e+01 # Hw SPCE + 559 187 3 0.423800 3.071401e+00 9.241825e+00 1.816214e+01 # Hw SPCE + 560 187 4 -0.847600 3.300129e+00 8.845865e+00 1.727282e+01 # Ow SPCE + 561 187 3 0.423800 2.487941e+00 8.845219e+00 1.668942e+01 # Hw SPCE + 562 188 3 0.423800 1.493937e+00 2.324979e+01 2.604098e+01 # Hw SPCE + 563 188 4 -0.847600 1.544148e+00 2.354108e+01 2.699630e+01 # Ow SPCE + 564 188 3 0.423800 1.493692e+00 2.273962e+01 2.759223e+01 # Hw SPCE + 565 189 3 0.423800 2.402950e+01 7.504644e+00 1.192867e+01 # Hw SPCE + 566 189 4 -0.847600 2.413727e+01 6.710938e+00 1.132999e+01 # Ow SPCE + 567 189 3 0.423800 2.508872e+01 6.403895e+00 1.135159e+01 # Hw SPCE + 568 190 3 0.423800 8.545646e+00 3.156383e+00 9.861230e+00 # Hw SPCE + 569 190 4 -0.847600 9.351073e+00 2.611171e+00 1.009367e+01 # Ow SPCE + 570 190 3 0.423800 1.011166e+01 3.219788e+00 1.031971e+01 # Hw SPCE + 571 191 3 0.423800 1.499645e+00 2.645193e+01 1.809386e+01 # Hw SPCE + 572 191 4 -0.847600 1.941124e+00 2.732475e+01 1.788582e+01 # Ow SPCE + 573 191 3 0.423800 2.336801e+00 2.770568e+01 1.872148e+01 # Hw SPCE + 574 192 3 0.423800 1.070874e+01 1.082303e+01 1.860632e+01 # Hw SPCE + 575 192 4 -0.847600 1.140325e+01 1.152845e+01 1.874785e+01 # Ow SPCE + 576 192 3 0.423800 1.230497e+01 1.110065e+01 1.881024e+01 # Hw SPCE + 577 193 3 0.423800 1.341290e+01 1.795517e+01 2.013626e+01 # Hw SPCE + 578 193 4 -0.847600 1.307952e+01 1.701238e+01 2.013931e+01 # Ow SPCE + 579 193 3 0.423800 1.309126e+01 1.665771e+01 2.107422e+01 # Hw SPCE + 580 194 3 0.423800 4.807785e+00 9.950438e+00 2.034530e+01 # Hw SPCE + 581 194 4 -0.847600 5.368387e+00 9.471078e+00 2.102053e+01 # Ow SPCE + 582 194 3 0.423800 6.091190e+00 8.962304e+00 2.055288e+01 # Hw SPCE + 583 195 3 0.423800 4.581666e+00 2.365989e+01 9.523923e+00 # Hw SPCE + 584 195 4 -0.847600 4.035775e+00 2.430184e+01 1.006236e+01 # Ow SPCE + 585 195 3 0.423800 3.083838e+00 2.426678e+01 9.758078e+00 # Hw SPCE + 586 196 3 0.423800 1.996454e+01 2.420988e+01 1.557209e+01 # Hw SPCE + 587 196 4 -0.847600 2.025724e+01 2.408856e+01 1.462361e+01 # Ow SPCE + 588 196 3 0.423800 2.091875e+01 2.479965e+01 1.438538e+01 # Hw SPCE + 589 197 3 0.423800 3.003372e+00 1.643713e+01 1.704879e+01 # Hw SPCE + 590 197 4 -0.847600 2.577322e+00 1.558424e+01 1.735056e+01 # Ow SPCE + 591 197 3 0.423800 1.583596e+00 1.569510e+01 1.736541e+01 # Hw SPCE + 592 198 3 0.423800 8.582183e+00 2.224273e+01 1.027837e+01 # Hw SPCE + 593 198 4 -0.847600 8.111157e+00 2.153125e+01 9.756897e+00 # Ow SPCE + 594 198 3 0.423800 8.773035e+00 2.084403e+01 9.457494e+00 # Hw SPCE + 595 199 3 0.423800 9.338267e+00 1.004752e+01 1.312920e+01 # Hw SPCE + 596 199 4 -0.847600 8.797900e+00 9.207329e+00 1.308363e+01 # Ow SPCE + 597 199 3 0.423800 7.916778e+00 9.352906e+00 1.353355e+01 # Hw SPCE + 598 200 3 0.423800 2.194779e+01 1.497417e+00 2.193037e+01 # Hw SPCE + 599 200 4 -0.847600 2.223387e+01 1.544058e+00 2.288744e+01 # Ow SPCE + 600 200 3 0.423800 2.323149e+01 1.499141e+00 2.293970e+01 # Hw SPCE + 601 201 3 0.423800 6.357928e+00 6.228009e+00 5.806627e+00 # Hw SPCE + 602 201 4 -0.847600 6.047437e+00 7.177648e+00 5.848827e+00 # Ow SPCE + 603 201 3 0.423800 6.617086e+00 7.741462e+00 5.250820e+00 # Hw SPCE + 604 202 3 0.423800 1.593029e+01 1.490608e+01 1.881990e+00 # Hw SPCE + 605 202 4 -0.847600 1.499401e+01 1.512044e+01 1.603720e+00 # Ow SPCE + 606 202 3 0.423800 1.441686e+01 1.431299e+01 1.725826e+00 # Hw SPCE + 607 203 3 0.423800 2.152874e+01 7.128493e+00 1.779600e+01 # Hw SPCE + 608 203 4 -0.847600 2.073272e+01 6.564299e+00 1.757685e+01 # Ow SPCE + 609 203 3 0.423800 2.013013e+01 6.514325e+00 1.837333e+01 # Hw SPCE + 610 204 3 0.423800 1.867722e+01 1.499875e+00 1.016897e+01 # Hw SPCE + 611 204 4 -0.847600 1.948249e+01 2.057017e+00 9.966143e+00 # Ow SPCE + 612 204 3 0.423800 2.030669e+01 1.498892e+00 1.006198e+01 # Hw SPCE + 613 205 3 0.423800 2.316922e+01 1.367353e+01 6.885430e+00 # Hw SPCE + 614 205 4 -0.847600 2.260716e+01 1.285895e+01 7.028829e+00 # Ow SPCE + 615 205 3 0.423800 2.319607e+01 1.205233e+01 7.079429e+00 # Hw SPCE + 616 206 3 0.423800 1.724802e+01 2.452784e+01 1.522277e+01 # Hw SPCE + 617 206 4 -0.847600 1.695269e+01 2.377047e+01 1.464039e+01 # Ow SPCE + 618 206 3 0.423800 1.764677e+01 2.305066e+01 1.465218e+01 # Hw SPCE + 619 207 3 0.423800 2.411268e+01 4.355955e+00 1.477705e+01 # Hw SPCE + 620 207 4 -0.847600 2.346927e+01 5.080864e+00 1.453102e+01 # Ow SPCE + 621 207 3 0.423800 2.313742e+01 4.930075e+00 1.359982e+01 # Hw SPCE + 622 208 3 0.423800 4.859519e+00 1.208976e+01 2.528815e+01 # Hw SPCE + 623 208 4 -0.847600 4.768744e+00 1.304357e+01 2.557451e+01 # Ow SPCE + 624 208 3 0.423800 3.968809e+00 1.313902e+01 2.616696e+01 # Hw SPCE + 625 209 3 0.423800 1.172825e+01 2.418010e+01 2.667409e+01 # Hw SPCE + 626 209 4 -0.847600 1.132283e+01 2.504940e+01 2.639133e+01 # Ow SPCE + 627 209 3 0.423800 1.154586e+01 2.522495e+01 2.543246e+01 # Hw SPCE + 628 210 3 0.423800 1.341122e+01 2.770513e+01 2.770549e+01 # Hw SPCE + 629 210 4 -0.847600 1.245960e+01 2.739875e+01 2.768238e+01 # Ow SPCE + 630 210 3 0.423800 1.204322e+01 2.766958e+01 2.681446e+01 # Hw SPCE + 631 211 3 0.423800 1.145241e+01 8.302455e+00 1.779676e+01 # Hw SPCE + 632 211 4 -0.847600 1.125478e+01 7.343016e+00 1.759571e+01 # Ow SPCE + 633 211 3 0.423800 1.210977e+01 6.857989e+00 1.741202e+01 # Hw SPCE + 634 212 3 0.423800 1.287925e+01 1.297774e+01 2.765935e+01 # Hw SPCE + 635 212 4 -0.847600 1.230585e+01 1.215930e+01 2.769630e+01 # Ow SPCE + 636 212 3 0.423800 1.134277e+01 1.242772e+01 2.771694e+01 # Hw SPCE + 637 213 3 0.423800 1.353894e+01 1.030050e+01 8.981176e+00 # Hw SPCE + 638 213 4 -0.847600 1.336051e+01 1.105021e+01 8.343917e+00 # Ow SPCE + 639 213 3 0.423800 1.239877e+01 1.103348e+01 8.070479e+00 # Hw SPCE + 640 214 3 0.423800 1.379608e+01 1.561648e+01 4.066143e+00 # Hw SPCE + 641 214 4 -0.847600 1.425485e+01 1.494262e+01 4.645317e+00 # Ow SPCE + 642 214 3 0.423800 1.500310e+01 1.538348e+01 5.141055e+00 # Hw SPCE + 643 215 3 0.423800 1.743267e+01 1.012996e+01 9.164174e+00 # Hw SPCE + 644 215 4 -0.847600 1.689952e+01 1.019764e+01 1.000748e+01 # Ow SPCE + 645 215 3 0.423800 1.610254e+01 1.078129e+01 9.852029e+00 # Hw SPCE + 646 216 3 0.423800 2.449752e+01 2.458848e+01 1.376845e+01 # Hw SPCE + 647 216 4 -0.847600 2.528553e+01 2.495639e+01 1.426210e+01 # Ow SPCE + 648 216 3 0.423800 2.534289e+01 2.452894e+01 1.516431e+01 # Hw SPCE + 649 217 3 0.423800 1.840558e+01 3.099439e+00 2.461987e+01 # Hw SPCE + 650 217 4 -0.847600 1.888190e+01 2.411523e+00 2.516749e+01 # Ow SPCE + 651 217 3 0.423800 1.859125e+01 1.498335e+00 2.488182e+01 # Hw SPCE + 652 218 3 0.423800 2.313333e+01 2.163166e+01 2.205864e+01 # Hw SPCE + 653 218 4 -0.847600 2.219594e+01 2.130927e+01 2.219041e+01 # Ow SPCE + 654 218 3 0.423800 2.158294e+01 2.209428e+01 2.227978e+01 # Hw SPCE + 655 219 3 0.423800 1.229832e+01 6.995752e+00 1.467363e+01 # Hw SPCE + 656 219 4 -0.847600 1.306529e+01 6.454869e+00 1.432837e+01 # Ow SPCE + 657 219 3 0.423800 1.350970e+01 5.982810e+00 1.508972e+01 # Hw SPCE + 658 220 3 0.423800 1.406803e+01 2.706445e+00 1.555541e+00 # Hw SPCE + 659 220 4 -0.847600 1.438807e+01 3.652120e+00 1.498299e+00 # Ow SPCE + 660 220 3 0.423800 1.360529e+01 4.272470e+00 1.547574e+00 # Hw SPCE + 661 221 3 0.423800 1.346094e+01 1.584618e+01 1.101422e+01 # Hw SPCE + 662 221 4 -0.847600 1.417123e+01 1.647755e+01 1.070299e+01 # Ow SPCE + 663 221 3 0.423800 1.506879e+01 1.605138e+01 1.081592e+01 # Hw SPCE + 664 222 3 0.423800 6.578749e+00 2.770463e+01 1.007095e+01 # Hw SPCE + 665 222 4 -0.847600 5.578913e+00 2.770497e+01 1.008903e+01 # Ow SPCE + 666 222 3 0.423800 5.245578e+00 2.676237e+01 1.010848e+01 # Hw SPCE + 667 223 3 0.423800 2.346524e+01 1.409205e+01 2.397168e+01 # Hw SPCE + 668 223 4 -0.847600 2.273539e+01 1.354071e+01 2.356753e+01 # Ow SPCE + 669 223 3 0.423800 2.313609e+01 1.282550e+01 2.299489e+01 # Hw SPCE + 670 224 3 0.423800 9.455855e+00 2.740531e+01 2.770496e+01 # Hw SPCE + 671 224 4 -0.847600 9.370999e+00 2.698567e+01 2.680125e+01 # Ow SPCE + 672 224 3 0.423800 9.379656e+00 2.769893e+01 2.610040e+01 # Hw SPCE + 673 225 3 0.423800 1.739219e+01 2.174463e+01 3.666550e+00 # Hw SPCE + 674 225 4 -0.847600 1.786402e+01 2.143690e+01 2.840303e+00 # Ow SPCE + 675 225 3 0.423800 1.877157e+01 2.109408e+01 3.082833e+00 # Hw SPCE + 676 226 3 0.423800 2.616571e+01 6.000875e+00 7.270531e+00 # Hw SPCE + 677 226 4 -0.847600 2.581662e+01 5.090419e+00 7.048703e+00 # Ow SPCE + 678 226 3 0.423800 2.500801e+01 5.176179e+00 6.466644e+00 # Hw SPCE + 679 227 3 0.423800 2.463564e+01 9.703885e+00 1.039308e+01 # Hw SPCE + 680 227 4 -0.847600 2.383949e+01 1.018568e+01 1.002699e+01 # Ow SPCE + 681 227 3 0.423800 2.359408e+01 1.093724e+01 1.063930e+01 # Hw SPCE + 682 228 3 0.423800 2.177044e+01 1.687390e+01 2.431866e+01 # Hw SPCE + 683 228 4 -0.847600 2.133664e+01 1.645723e+01 2.511753e+01 # Ow SPCE + 684 228 3 0.423800 2.195993e+01 1.578987e+01 2.552514e+01 # Hw SPCE + 685 229 3 0.423800 7.726348e+00 3.560323e+00 2.179374e+01 # Hw SPCE + 686 229 4 -0.847600 6.861868e+00 4.061639e+00 2.183058e+01 # Ow SPCE + 687 229 3 0.423800 6.645800e+00 4.420653e+00 2.092261e+01 # Hw SPCE + 688 230 3 0.423800 1.884037e+01 1.499599e+00 6.252581e+00 # Hw SPCE + 689 230 4 -0.847600 1.965401e+01 2.001138e+00 6.546590e+00 # Ow SPCE + 690 230 3 0.423800 2.008019e+01 1.523837e+00 7.315065e+00 # Hw SPCE + 691 231 3 0.423800 6.715548e+00 3.056808e+00 2.444232e+01 # Hw SPCE + 692 231 4 -0.847600 6.554914e+00 2.209760e+00 2.393566e+01 # Ow SPCE + 693 231 3 0.423800 6.112326e+00 1.542117e+00 2.453429e+01 # Hw SPCE + 694 232 3 0.423800 1.335233e+01 8.701900e+00 2.332491e+01 # Hw SPCE + 695 232 4 -0.847600 1.284324e+01 9.531573e+00 2.355397e+01 # Ow SPCE + 696 232 3 0.423800 1.192981e+01 9.484446e+00 2.314971e+01 # Hw SPCE + 697 233 3 0.423800 1.642811e+01 5.397368e+00 2.093058e+00 # Hw SPCE + 698 233 4 -0.847600 1.732324e+01 5.692575e+00 1.759011e+00 # Ow SPCE + 699 233 3 0.423800 1.732664e+01 6.686459e+00 1.648636e+00 # Hw SPCE + 700 234 3 0.423800 8.746384e+00 1.194555e+01 1.502826e+01 # Hw SPCE + 701 234 4 -0.847600 8.569902e+00 1.110875e+01 1.554655e+01 # Ow SPCE + 702 234 3 0.423800 9.214489e+00 1.104644e+01 1.630854e+01 # Hw SPCE + 703 235 3 0.423800 2.671040e+01 2.277390e+01 2.443136e+01 # Hw SPCE + 704 235 4 -0.847600 2.634248e+01 2.188483e+01 2.415900e+01 # Ow SPCE + 705 235 3 0.423800 2.540832e+01 2.199999e+01 2.382124e+01 # Hw SPCE + 706 236 3 0.423800 4.314700e+00 6.656624e+00 1.567087e+01 # Hw SPCE + 707 236 4 -0.847600 4.101082e+00 5.989344e+00 1.495735e+01 # Ow SPCE + 708 236 3 0.423800 4.681834e+00 6.155976e+00 1.416051e+01 # Hw SPCE + 709 237 3 0.423800 2.585970e+01 5.937546e+00 1.935423e+01 # Hw SPCE + 710 237 4 -0.847600 2.680819e+01 5.995046e+00 1.966578e+01 # Ow SPCE + 711 237 3 0.423800 2.685723e+01 6.574317e+00 2.047944e+01 # Hw SPCE + 712 238 3 0.423800 2.668626e+01 2.541072e+01 4.880638e+00 # Hw SPCE + 713 238 4 -0.847600 2.764667e+01 2.568864e+01 4.899778e+00 # Ow SPCE + 714 238 3 0.423800 2.770442e+01 2.668068e+01 5.011688e+00 # Hw SPCE + 715 239 3 0.423800 3.799348e+00 1.733873e+01 1.665944e+00 # Hw SPCE + 716 239 4 -0.847600 3.166531e+00 1.811195e+01 1.625052e+00 # Ow SPCE + 717 239 3 0.423800 2.227096e+00 1.777190e+01 1.582255e+00 # Hw SPCE + 718 240 3 0.423800 6.922100e+00 1.626292e+01 2.727964e+01 # Hw SPCE + 719 240 4 -0.847600 6.522882e+00 1.559908e+01 2.664724e+01 # Ow SPCE + 720 240 3 0.423800 6.008322e+00 1.491453e+01 2.716360e+01 # Hw SPCE + 721 241 3 0.423800 3.812524e+00 1.917142e+01 4.078941e+00 # Hw SPCE + 722 241 4 -0.847600 4.650408e+00 1.921783e+01 4.622812e+00 # Ow SPCE + 723 241 3 0.423800 5.291688e+00 1.985376e+01 4.193446e+00 # Hw SPCE + 724 242 3 0.423800 2.392996e+01 9.703159e+00 1.533263e+01 # Hw SPCE + 725 242 4 -0.847600 2.418034e+01 1.027088e+01 1.454841e+01 # Ow SPCE + 726 242 3 0.423800 2.425829e+01 9.697253e+00 1.373301e+01 # Hw SPCE + 727 243 3 0.423800 1.160740e+01 4.289690e+00 2.576183e+01 # Hw SPCE + 728 243 4 -0.847600 1.136615e+01 3.672164e+00 2.501319e+01 # Ow SPCE + 729 243 3 0.423800 1.134214e+01 4.183341e+00 2.415404e+01 # Hw SPCE + 730 244 3 0.423800 3.062271e+00 1.498880e+00 1.558829e+01 # Hw SPCE + 731 244 4 -0.847600 2.459085e+00 1.579929e+00 1.479482e+01 # Ow SPCE + 732 244 3 0.423800 1.507109e+00 1.499362e+00 1.509020e+01 # Hw SPCE + 733 245 3 0.423800 9.267839e+00 2.530564e+01 2.389467e+01 # Hw SPCE + 734 245 4 -0.847600 8.983831e+00 2.446671e+01 2.435894e+01 # Ow SPCE + 735 245 3 0.423800 8.616254e+00 2.382260e+01 2.368811e+01 # Hw SPCE + 736 246 3 0.423800 2.233187e+01 2.661754e+01 9.034738e+00 # Hw SPCE + 737 246 4 -0.847600 2.297202e+01 2.590388e+01 8.750298e+00 # Ow SPCE + 738 246 3 0.423800 2.361025e+01 2.571216e+01 9.495883e+00 # Hw SPCE + 739 247 3 0.423800 6.152311e+00 1.591896e+01 1.583244e+00 # Hw SPCE + 740 247 4 -0.847600 6.458131e+00 1.516173e+01 2.160380e+00 # Ow SPCE + 741 247 3 0.423800 7.447061e+00 1.522371e+01 2.295199e+00 # Hw SPCE + 742 248 3 0.423800 6.249483e+00 8.441998e+00 2.500313e+01 # Hw SPCE + 743 248 4 -0.847600 6.658605e+00 7.854146e+00 2.570102e+01 # Ow SPCE + 744 248 3 0.423800 7.286041e+00 7.207979e+00 2.526652e+01 # Hw SPCE + 745 249 3 0.423800 1.155584e+01 7.485508e+00 4.265325e+00 # Hw SPCE + 746 249 4 -0.847600 1.222371e+01 7.709122e+00 3.555440e+00 # Ow SPCE + 747 249 3 0.423800 1.307003e+01 7.203441e+00 3.722858e+00 # Hw SPCE + 748 250 3 0.423800 6.411808e+00 2.543586e+01 7.998512e+00 # Hw SPCE + 749 250 4 -0.847600 7.212358e+00 2.569130e+01 7.456414e+00 # Ow SPCE + 750 250 3 0.423800 7.538848e+00 2.659058e+01 7.747451e+00 # Hw SPCE + 751 251 3 0.423800 2.686488e+01 1.595570e+01 1.586290e+01 # Hw SPCE + 752 251 4 -0.847600 2.770669e+01 1.542553e+01 1.576147e+01 # Ow SPCE + 753 251 3 0.423800 2.766723e+01 1.489635e+01 1.491388e+01 # Hw SPCE + 754 252 3 0.423800 4.730891e+00 1.312809e+01 1.497769e+00 # Hw SPCE + 755 252 4 -0.847600 4.158177e+00 1.342867e+01 2.260428e+00 # Ow SPCE + 756 252 3 0.423800 3.624401e+00 1.422713e+01 1.981941e+00 # Hw SPCE + 757 253 3 0.423800 2.195203e+01 2.665489e+01 1.887230e+01 # Hw SPCE + 758 253 4 -0.847600 2.258974e+01 2.742501e+01 1.888802e+01 # Ow SPCE + 759 253 3 0.423800 2.352836e+01 2.708031e+01 1.890123e+01 # Hw SPCE + 760 254 3 0.423800 1.253712e+01 3.129762e+00 1.183063e+01 # Hw SPCE + 761 254 4 -0.847600 1.292118e+01 3.990106e+00 1.216575e+01 # Ow SPCE + 762 254 3 0.423800 1.383968e+01 3.827163e+00 1.252605e+01 # Hw SPCE + 763 255 3 0.423800 3.863000e+00 2.523218e+01 2.336537e+01 # Hw SPCE + 764 255 4 -0.847600 3.779878e+00 2.428180e+01 2.306556e+01 # Ow SPCE + 765 255 3 0.423800 4.073781e+00 2.367294e+01 2.380238e+01 # Hw SPCE + 766 256 3 0.423800 1.033123e+01 2.732718e+01 1.991221e+01 # Hw SPCE + 767 256 4 -0.847600 1.083128e+01 2.694936e+01 2.069145e+01 # Ow SPCE + 768 256 3 0.423800 1.037561e+01 2.611750e+01 2.100827e+01 # Hw SPCE + 769 257 3 0.423800 6.606032e+00 3.553686e+00 6.537013e+00 # Hw SPCE + 770 257 4 -0.847600 7.445947e+00 3.035012e+00 6.696762e+00 # Ow SPCE + 771 257 3 0.423800 7.233172e+00 2.208190e+00 7.217426e+00 # Hw SPCE + 772 258 3 0.423800 1.306905e+01 1.800714e+01 6.041763e+00 # Hw SPCE + 773 258 4 -0.847600 1.404572e+01 1.784783e+01 5.897769e+00 # Ow SPCE + 774 258 3 0.423800 1.446986e+01 1.867958e+01 5.539574e+00 # Hw SPCE + 775 259 3 0.423800 6.591547e+00 2.039778e+01 6.554188e+00 # Hw SPCE + 776 259 4 -0.847600 6.892178e+00 1.965746e+01 7.155484e+00 # Ow SPCE + 777 259 3 0.423800 7.891350e+00 1.961712e+01 7.160583e+00 # Hw SPCE + 778 260 3 0.423800 2.102357e+01 1.285810e+01 1.138197e+01 # Hw SPCE + 779 260 4 -0.847600 2.063601e+01 1.330654e+01 1.057655e+01 # Ow SPCE + 780 260 3 0.423800 2.040906e+01 1.425453e+01 1.079974e+01 # Hw SPCE + 781 261 3 0.423800 1.668139e+01 1.365676e+01 7.959222e+00 # Hw SPCE + 782 261 4 -0.847600 1.609109e+01 1.302602e+01 7.455519e+00 # Ow SPCE + 783 261 3 0.423800 1.657944e+01 1.216812e+01 7.295759e+00 # Hw SPCE + 784 262 3 0.423800 1.564369e+01 1.907066e+01 2.197727e+01 # Hw SPCE + 785 262 4 -0.847600 1.642857e+01 1.968608e+01 2.204959e+01 # Ow SPCE + 786 262 3 0.423800 1.726974e+01 1.914825e+01 2.210604e+01 # Hw SPCE + 787 263 3 0.423800 7.519411e+00 1.610097e+01 2.120584e+01 # Hw SPCE + 788 263 4 -0.847600 6.640364e+00 1.562428e+01 2.121221e+01 # Ow SPCE + 789 263 3 0.423800 5.897912e+00 1.629395e+01 2.119468e+01 # Hw SPCE + 790 264 3 0.423800 8.688944e+00 1.522738e+01 1.887923e+01 # Hw SPCE + 791 264 4 -0.847600 9.135790e+00 1.601512e+01 1.845520e+01 # Ow SPCE + 792 264 3 0.423800 1.009324e+01 1.579478e+01 1.826879e+01 # Hw SPCE + 793 265 3 0.423800 2.187599e+01 2.614658e+01 2.179133e+01 # Hw SPCE + 794 265 4 -0.847600 2.260916e+01 2.678722e+01 2.156320e+01 # Ow SPCE + 795 265 3 0.423800 2.235434e+01 2.770623e+01 2.186401e+01 # Hw SPCE + 796 266 3 0.423800 8.584848e+00 1.412426e+01 2.770388e+01 # Hw SPCE + 797 266 4 -0.847600 8.917922e+00 1.350413e+01 2.699360e+01 # Ow SPCE + 798 266 3 0.423800 8.385750e+00 1.363828e+01 2.615766e+01 # Hw SPCE + 799 267 3 0.423800 1.498403e+00 1.136667e+01 1.740482e+01 # Hw SPCE + 800 267 4 -0.847600 1.496704e+00 1.228079e+01 1.699937e+01 # Ow SPCE + 801 267 3 0.423800 1.493879e+00 1.296773e+01 1.772607e+01 # Hw SPCE + 802 268 3 0.423800 2.051142e+01 1.532290e+00 2.720074e+01 # Hw SPCE + 803 268 4 -0.847600 2.144152e+01 1.677620e+00 2.686340e+01 # Ow SPCE + 804 268 3 0.423800 2.143787e+01 1.673320e+00 2.586342e+01 # Hw SPCE + 805 269 3 0.423800 1.074975e+01 1.582297e+01 1.147179e+01 # Hw SPCE + 806 269 4 -0.847600 9.843024e+00 1.620321e+01 1.128940e+01 # Ow SPCE + 807 269 3 0.423800 9.486971e+00 1.582159e+01 1.043641e+01 # Hw SPCE + 808 270 3 0.423800 2.158512e+01 4.175374e+00 2.335242e+01 # Hw SPCE + 809 270 4 -0.847600 2.102097e+01 3.724302e+00 2.404399e+01 # Ow SPCE + 810 270 3 0.423800 2.100196e+01 4.281705e+00 2.487402e+01 # Hw SPCE + 811 271 3 0.423800 1.499420e+00 2.109325e+01 1.083546e+01 # Hw SPCE + 812 271 4 -0.847600 2.014482e+00 2.180659e+01 1.036021e+01 # Ow SPCE + 813 271 3 0.423800 2.990936e+00 2.159428e+01 1.039845e+01 # Hw SPCE + 814 272 3 0.423800 1.593017e+00 7.902730e+00 5.258905e+00 # Hw SPCE + 815 272 4 -0.847600 1.689156e+00 7.147133e+00 4.610962e+00 # Ow SPCE + 816 272 3 0.423800 1.505645e+00 7.476802e+00 3.684873e+00 # Hw SPCE + 817 273 3 0.423800 2.022395e+01 1.561529e+01 1.583840e+01 # Hw SPCE + 818 273 4 -0.847600 1.973203e+01 1.634844e+01 1.536883e+01 # Ow SPCE + 819 273 3 0.423800 1.880786e+01 1.603928e+01 1.514447e+01 # Hw SPCE + 820 274 3 0.423800 1.785576e+00 2.595467e+01 1.540470e+01 # Hw SPCE + 821 274 4 -0.847600 1.929174e+00 2.595737e+01 1.441507e+01 # Ow SPCE + 822 274 3 0.423800 1.499516e+00 2.676845e+01 1.401813e+01 # Hw SPCE + 823 275 3 0.423800 2.471608e+00 1.511177e+01 1.372759e+01 # Hw SPCE + 824 275 4 -0.847600 2.173815e+00 1.544011e+01 1.462398e+01 # Ow SPCE + 825 275 3 0.423800 1.499970e+00 1.616932e+01 1.450486e+01 # Hw SPCE + 826 276 3 0.423800 2.490164e+00 2.322823e+01 1.586321e+01 # Hw SPCE + 827 276 4 -0.847600 2.972830e+00 2.348324e+01 1.502535e+01 # Ow SPCE + 828 276 3 0.423800 3.763314e+00 2.405078e+01 1.525565e+01 # Hw SPCE + 829 277 3 0.423800 1.257057e+01 3.159471e+00 2.191679e+01 # Hw SPCE + 830 277 4 -0.847600 1.321241e+01 3.925963e+00 2.189377e+01 # Ow SPCE + 831 277 3 0.423800 1.270362e+01 4.785319e+00 2.184237e+01 # Hw SPCE + 832 278 3 0.423800 1.172696e+01 1.108398e+01 1.089481e+01 # Hw SPCE + 833 278 4 -0.847600 1.108144e+01 1.033095e+01 1.102229e+01 # Ow SPCE + 834 278 3 0.423800 1.021737e+01 1.055252e+01 1.057030e+01 # Hw SPCE + 835 279 3 0.423800 3.357999e+00 1.799692e+01 1.347523e+01 # Hw SPCE + 836 279 4 -0.847600 4.070804e+00 1.735174e+01 1.375027e+01 # Ow SPCE + 837 279 3 0.423800 4.175658e+00 1.737479e+01 1.474449e+01 # Hw SPCE + 838 280 3 0.423800 2.630102e+01 1.903409e+01 1.695517e+01 # Hw SPCE + 839 280 4 -0.847600 2.716892e+01 1.924741e+01 1.650657e+01 # Ow SPCE + 840 280 3 0.423800 2.727889e+01 1.866650e+01 1.570007e+01 # Hw SPCE + 841 281 3 0.423800 2.251004e+01 6.535603e+00 2.441833e+01 # Hw SPCE + 842 281 4 -0.847600 2.185183e+01 7.272694e+00 2.426517e+01 # Ow SPCE + 843 281 3 0.423800 2.104279e+01 7.120398e+00 2.483285e+01 # Hw SPCE + 844 282 3 0.423800 1.499087e+00 1.589499e+01 2.542090e+01 # Hw SPCE + 845 282 4 -0.847600 1.815620e+00 1.616034e+01 2.451019e+01 # Ow SPCE + 846 282 3 0.423800 2.765466e+00 1.587157e+01 2.439019e+01 # Hw SPCE + 847 283 3 0.423800 7.740973e+00 9.861514e+00 1.493066e+00 # Hw SPCE + 848 283 4 -0.847600 6.754170e+00 9.775212e+00 1.630077e+00 # Ow SPCE + 849 283 3 0.423800 6.577520e+00 9.309741e+00 2.497332e+00 # Hw SPCE + 850 284 3 0.423800 1.061617e+01 1.285220e+01 9.107683e+00 # Hw SPCE + 851 284 4 -0.847600 1.078537e+01 1.346180e+01 9.882119e+00 # Ow SPCE + 852 284 3 0.423800 1.170080e+01 1.385624e+01 9.802028e+00 # Hw SPCE + 853 285 3 0.423800 1.252982e+01 2.440492e+01 2.107781e+01 # Hw SPCE + 854 285 4 -0.847600 1.328350e+01 2.483431e+01 2.157539e+01 # Ow SPCE + 855 285 3 0.423800 1.301279e+01 2.575321e+01 2.186234e+01 # Hw SPCE + 856 286 3 0.423800 1.711392e+01 3.831843e+00 7.910876e+00 # Hw SPCE + 857 286 4 -0.847600 1.745648e+01 2.924441e+00 8.154342e+00 # Ow SPCE + 858 286 3 0.423800 1.668530e+01 2.317735e+00 8.347214e+00 # Hw SPCE + 859 287 3 0.423800 1.418372e+01 2.506933e+01 2.753477e+01 # Hw SPCE + 860 287 4 -0.847600 1.506448e+01 2.551120e+01 2.770510e+01 # Ow SPCE + 861 287 3 0.423800 1.537636e+01 2.596552e+01 2.687064e+01 # Hw SPCE + 862 288 3 0.423800 1.415443e+01 8.808654e+00 1.783263e+01 # Hw SPCE + 863 288 4 -0.847600 1.474094e+01 9.071980e+00 1.859858e+01 # Ow SPCE + 864 288 3 0.423800 1.484475e+01 1.006648e+01 1.861235e+01 # Hw SPCE + 865 289 3 0.423800 4.677556e+00 9.152557e+00 2.714451e+01 # Hw SPCE + 866 289 4 -0.847600 4.161429e+00 9.973113e+00 2.689895e+01 # Ow SPCE + 867 289 3 0.423800 3.680550e+00 1.031808e+01 2.770502e+01 # Hw SPCE + 868 290 3 0.423800 1.681375e+01 5.844343e+00 1.610055e+01 # Hw SPCE + 869 290 4 -0.847600 1.659584e+01 6.638638e+00 1.666766e+01 # Ow SPCE + 870 290 3 0.423800 1.560520e+01 6.774046e+00 1.668509e+01 # Hw SPCE + 871 291 3 0.423800 2.156748e+01 3.556166e+00 8.743084e+00 # Hw SPCE + 872 291 4 -0.847600 2.099885e+01 4.371413e+00 8.633380e+00 # Ow SPCE + 873 291 3 0.423800 2.011280e+01 4.110671e+00 8.250059e+00 # Hw SPCE + 874 292 3 0.423800 2.407964e+00 3.416603e+00 4.875553e+00 # Hw SPCE + 875 292 4 -0.847600 2.941172e+00 4.243659e+00 5.053503e+00 # Ow SPCE + 876 292 3 0.423800 3.734200e+00 4.013998e+00 5.617739e+00 # Hw SPCE + 877 293 3 0.423800 5.101947e+00 1.984796e+01 1.813229e+01 # Hw SPCE + 878 293 4 -0.847600 4.344155e+00 1.945528e+01 1.865340e+01 # Ow SPCE + 879 293 3 0.423800 4.223615e+00 1.849669e+01 1.839539e+01 # Hw SPCE + 880 294 3 0.423800 2.200936e+01 1.060534e+01 3.752114e+00 # Hw SPCE + 881 294 4 -0.847600 2.189049e+01 9.647989e+00 4.015453e+00 # Ow SPCE + 882 294 3 0.423800 2.092346e+01 9.401882e+00 3.949942e+00 # Hw SPCE + 883 295 3 0.423800 1.906823e+01 2.481498e+01 1.981312e+01 # Hw SPCE + 884 295 4 -0.847600 2.004704e+01 2.462769e+01 1.973036e+01 # Ow SPCE + 885 295 3 0.423800 2.020559e+01 2.364324e+01 1.980589e+01 # Hw SPCE + 886 296 3 0.423800 8.611320e+00 2.469462e+01 1.622672e+01 # Hw SPCE + 887 296 4 -0.847600 9.439002e+00 2.491431e+01 1.674313e+01 # Ow SPCE + 888 296 3 0.423800 9.564199e+00 2.590618e+01 1.676596e+01 # Hw SPCE + 889 297 3 0.423800 1.450721e+01 2.761357e+00 1.498414e+01 # Hw SPCE + 890 297 4 -0.847600 1.415911e+01 3.378652e+00 1.568967e+01 # Ow SPCE + 891 297 3 0.423800 1.492505e+01 3.846449e+00 1.613071e+01 # Hw SPCE + 892 298 3 0.423800 1.868170e+01 1.216338e+01 2.369258e+01 # Hw SPCE + 893 298 4 -0.847600 1.793724e+01 1.165537e+01 2.412583e+01 # Ow SPCE + 894 298 3 0.423800 1.733910e+01 1.127446e+01 2.342075e+01 # Hw SPCE + 895 299 3 0.423800 1.579916e+01 1.257851e+01 4.190722e+00 # Hw SPCE + 896 299 4 -0.847600 1.647864e+01 1.330728e+01 4.105902e+00 # Ow SPCE + 897 299 3 0.423800 1.738136e+01 1.290518e+01 3.952950e+00 # Hw SPCE + 898 300 3 0.423800 8.783834e+00 4.391999e+00 2.574931e+01 # Hw SPCE + 899 300 4 -0.847600 8.834362e+00 3.580977e+00 2.633214e+01 # Ow SPCE + 900 300 3 0.423800 9.303500e+00 3.811808e+00 2.718456e+01 # Hw SPCE + 901 301 3 0.423800 6.011865e+00 9.555313e+00 7.226940e+00 # Hw SPCE + 902 301 4 -0.847600 5.112292e+00 9.315952e+00 7.592283e+00 # Ow SPCE + 903 301 3 0.423800 5.076259e+00 9.543963e+00 8.565274e+00 # Hw SPCE + 904 302 3 0.423800 2.627737e+01 1.835769e+01 1.705721e+00 # Hw SPCE + 905 302 4 -0.847600 2.714217e+01 1.785579e+01 1.720783e+00 # Ow SPCE + 906 302 3 0.423800 2.696433e+01 1.689110e+01 1.915100e+00 # Hw SPCE + 907 303 3 0.423800 3.574592e+00 1.061416e+01 2.280540e+01 # Hw SPCE + 908 303 4 -0.847600 3.055829e+00 9.761396e+00 2.274473e+01 # Ow SPCE + 909 303 3 0.423800 2.083376e+00 9.969569e+00 2.263986e+01 # Hw SPCE + 910 304 3 0.423800 6.296561e+00 4.609936e+00 3.590033e+00 # Hw SPCE + 911 304 4 -0.847600 5.307980e+00 4.579235e+00 3.442501e+00 # Ow SPCE + 912 304 3 0.423800 4.921826e+00 5.491212e+00 3.581000e+00 # Hw SPCE + 913 305 3 0.423800 2.206674e+01 2.595682e+01 2.671382e+01 # Hw SPCE + 914 305 4 -0.847600 2.135678e+01 2.658763e+01 2.702694e+01 # Ow SPCE + 915 305 3 0.423800 2.078094e+01 2.613123e+01 2.770524e+01 # Hw SPCE + 916 306 3 0.423800 1.817609e+01 2.098444e+01 2.027086e+01 # Hw SPCE + 917 306 4 -0.847600 1.916371e+01 2.114133e+01 2.027198e+01 # Ow SPCE + 918 306 3 0.423800 1.957493e+01 2.067163e+01 2.105318e+01 # Hw SPCE + 919 307 3 0.423800 1.508206e+01 2.274541e+01 1.655332e+01 # Hw SPCE + 920 307 4 -0.847600 1.463912e+01 2.352206e+01 1.610542e+01 # Ow SPCE + 921 307 3 0.423800 1.476799e+01 2.434437e+01 1.665968e+01 # Hw SPCE + 922 308 3 0.423800 1.860141e+01 7.614679e+00 1.499272e+01 # Hw SPCE + 923 308 4 -0.847600 1.949309e+01 7.194380e+00 1.516084e+01 # Ow SPCE + 924 308 3 0.423800 1.938985e+01 6.200796e+00 1.520703e+01 # Hw SPCE + 925 309 3 0.423800 2.555072e+01 1.158947e+01 2.770860e+01 # Hw SPCE + 926 309 4 -0.847600 2.643932e+01 1.113079e+01 2.770565e+01 # Ow SPCE + 927 309 3 0.423800 2.716796e+01 1.181567e+01 2.770996e+01 # Hw SPCE + 928 310 3 0.423800 1.722971e+01 1.047192e+01 5.228288e+00 # Hw SPCE + 929 310 4 -0.847600 1.777259e+01 9.727661e+00 4.839246e+00 # Ow SPCE + 930 310 3 0.423800 1.859163e+01 9.586550e+00 5.395364e+00 # Hw SPCE + 931 311 3 0.423800 2.587903e+01 2.770480e+01 1.071070e+01 # Hw SPCE + 932 311 4 -0.847600 2.587408e+01 2.767484e+01 9.711163e+00 # Ow SPCE + 933 311 3 0.423800 2.681437e+01 2.762443e+01 9.374545e+00 # Hw SPCE + 934 312 3 0.423800 2.683452e+01 2.499904e+00 1.613606e+01 # Hw SPCE + 935 312 4 -0.847600 2.653269e+01 3.436233e+00 1.631547e+01 # Ow SPCE + 936 312 3 0.423800 2.724944e+01 3.928654e+00 1.680922e+01 # Hw SPCE + 937 313 3 0.423800 1.949268e+01 1.128367e+01 2.484942e+00 # Hw SPCE + 938 313 4 -0.847600 2.013505e+01 1.203650e+01 2.341412e+00 # Ow SPCE + 939 313 3 0.423800 1.964783e+01 1.290736e+01 2.406347e+00 # Hw SPCE + 940 314 3 0.423800 7.709374e+00 2.414404e+01 2.771162e+01 # Hw SPCE + 941 314 4 -0.847600 8.447079e+00 2.438436e+01 2.708072e+01 # Ow SPCE + 942 314 3 0.423800 9.057350e+00 2.360032e+01 2.696734e+01 # Hw SPCE + 943 315 3 0.423800 2.770494e+01 2.154717e+00 2.400702e+01 # Hw SPCE + 944 315 4 -0.847600 2.722867e+01 2.468793e+00 2.482831e+01 # Ow SPCE + 945 315 3 0.423800 2.767391e+01 2.087109e+00 2.563830e+01 # Hw SPCE + 946 316 3 0.423800 2.312652e+01 2.631054e+01 1.499737e+00 # Hw SPCE + 947 316 4 -0.847600 2.283269e+01 2.535561e+01 1.541925e+00 # Ow SPCE + 948 316 3 0.423800 2.209421e+01 2.526330e+01 2.209853e+00 # Hw SPCE + 949 317 3 0.423800 3.512223e+00 1.506331e+01 2.059379e+01 # Hw SPCE + 950 317 4 -0.847600 2.579657e+00 1.521266e+01 2.026513e+01 # Ow SPCE + 951 317 3 0.423800 1.995243e+00 1.548068e+01 2.103105e+01 # Hw SPCE + 952 318 3 0.423800 2.429693e+01 7.441439e+00 8.683691e+00 # Hw SPCE + 953 318 4 -0.847600 2.381138e+01 6.574628e+00 8.570202e+00 # Ow SPCE + 954 318 3 0.423800 2.314115e+01 6.662026e+00 7.833213e+00 # Hw SPCE + 955 319 3 0.423800 7.522703e+00 2.737277e+01 3.043788e+00 # Hw SPCE + 956 319 4 -0.847600 8.363778e+00 2.691935e+01 3.338753e+00 # Ow SPCE + 957 319 3 0.423800 9.106122e+00 2.758810e+01 3.380004e+00 # Hw SPCE + 958 320 3 0.423800 1.882098e+01 5.571858e+00 2.228557e+01 # Hw SPCE + 959 320 4 -0.847600 1.938648e+01 5.803385e+00 2.307715e+01 # Ow SPCE + 960 320 3 0.423800 1.882965e+01 5.766062e+00 2.390694e+01 # Hw SPCE + 961 321 3 0.423800 2.349594e+01 1.890656e+01 2.187820e+01 # Hw SPCE + 962 321 4 -0.847600 2.438719e+01 1.922899e+01 2.155931e+01 # Ow SPCE + 963 321 3 0.423800 2.446815e+01 1.906638e+01 2.057594e+01 # Hw SPCE + 964 322 3 0.423800 9.536260e+00 5.620589e+00 4.385983e+00 # Hw SPCE + 965 322 4 -0.847600 9.017970e+00 4.765629e+00 4.365479e+00 # Ow SPCE + 966 322 3 0.423800 9.365801e+00 4.147994e+00 5.070843e+00 # Hw SPCE + 967 323 3 0.423800 6.563604e+00 1.144852e+01 5.310816e+00 # Hw SPCE + 968 323 4 -0.847600 7.395750e+00 1.159137e+01 5.846659e+00 # Ow SPCE + 969 323 3 0.423800 7.176574e+00 1.211622e+01 6.669152e+00 # Hw SPCE + 970 324 3 0.423800 1.966990e+01 1.748868e+01 1.152281e+01 # Hw SPCE + 971 324 4 -0.847600 2.032778e+01 1.685289e+01 1.192649e+01 # Ow SPCE + 972 324 3 0.423800 1.986999e+01 1.629389e+01 1.261783e+01 # Hw SPCE + 973 325 3 0.423800 1.747869e+01 1.936643e+01 1.586861e+01 # Hw SPCE + 974 325 4 -0.847600 1.772310e+01 1.843509e+01 1.613854e+01 # Ow SPCE + 975 325 3 0.423800 1.692776e+01 1.783807e+01 1.603358e+01 # Hw SPCE + 976 326 3 0.423800 7.512513e+00 6.837798e+00 1.561602e+00 # Hw SPCE + 977 326 4 -0.847600 7.975365e+00 5.953103e+00 1.506077e+00 # Ow SPCE + 978 326 3 0.423800 8.941306e+00 6.067128e+00 1.738364e+00 # Hw SPCE + 979 327 3 0.423800 1.576153e+01 1.524842e+00 5.104682e+00 # Hw SPCE + 980 327 4 -0.847600 1.648750e+01 2.206265e+00 5.011799e+00 # Ow SPCE + 981 327 3 0.423800 1.619187e+01 3.066886e+00 5.426446e+00 # Hw SPCE + 982 328 3 0.423800 1.041282e+01 1.861899e+01 5.679153e+00 # Hw SPCE + 983 328 4 -0.847600 1.039014e+01 1.838326e+01 4.707600e+00 # Ow SPCE + 984 328 3 0.423800 1.080342e+01 1.748259e+01 4.573414e+00 # Hw SPCE + 985 329 3 0.423800 1.662912e+01 1.960472e+01 1.057467e+01 # Hw SPCE + 986 329 4 -0.847600 1.568158e+01 1.987224e+01 1.074964e+01 # Ow SPCE + 987 329 3 0.423800 1.512288e+01 1.905336e+01 1.088108e+01 # Hw SPCE + 988 330 3 0.423800 2.562112e+01 2.330374e+00 2.186263e+01 # Hw SPCE + 989 330 4 -0.847600 2.639694e+01 2.945170e+00 2.172070e+01 # Ow SPCE + 990 330 3 0.423800 2.613489e+01 3.671241e+00 2.108498e+01 # Hw SPCE + 991 331 3 0.423800 2.448963e+01 1.656753e+01 2.459110e+01 # Hw SPCE + 992 331 4 -0.847600 2.532168e+01 1.702758e+01 2.490103e+01 # Ow SPCE + 993 331 3 0.423800 2.611790e+01 1.646961e+01 2.466717e+01 # Hw SPCE + 994 332 3 0.423800 6.417758e+00 2.435520e+01 1.460340e+01 # Hw SPCE + 995 332 4 -0.847600 6.300358e+00 2.524145e+01 1.415532e+01 # Ow SPCE + 996 332 3 0.423800 7.192182e+00 2.558969e+01 1.386657e+01 # Hw SPCE + 997 333 3 0.423800 2.759772e+01 1.733045e+00 3.198930e+00 # Hw SPCE + 998 333 4 -0.847600 2.733255e+01 1.589050e+00 2.245541e+00 # Ow SPCE + 999 333 3 0.423800 2.681386e+01 2.379914e+00 1.920750e+00 # Hw SPCE + 1000 334 3 0.423800 2.588019e+01 1.500059e+00 1.857574e+01 # Hw SPCE + 1001 334 4 -0.847600 2.521085e+01 2.077152e+00 1.904366e+01 # Ow SPCE + 1002 334 3 0.423800 2.452203e+01 1.500061e+00 1.948240e+01 # Hw SPCE + 1003 335 3 0.423800 2.129430e+01 2.706783e+01 2.431980e+01 # Hw SPCE + 1004 335 4 -0.847600 2.048933e+01 2.761599e+01 2.454682e+01 # Ow SPCE + 1005 335 3 0.423800 1.990824e+01 2.770571e+01 2.373794e+01 # Hw SPCE + 1006 336 3 0.423800 7.846173e+00 1.094805e+01 9.044554e+00 # Hw SPCE + 1007 336 4 -0.847600 8.350386e+00 1.031715e+01 8.454855e+00 # Ow SPCE + 1008 336 3 0.423800 9.135128e+00 1.079028e+01 8.054438e+00 # Hw SPCE + 1009 337 3 0.423800 1.813806e+01 1.135820e+01 1.530019e+01 # Hw SPCE + 1010 337 4 -0.847600 1.803468e+01 1.102175e+01 1.436418e+01 # Ow SPCE + 1011 337 3 0.423800 1.870041e+01 1.029479e+01 1.419585e+01 # Hw SPCE + 1012 338 3 0.423800 1.930193e+01 1.912951e+00 3.422805e+00 # Hw SPCE + 1013 338 4 -0.847600 2.017995e+01 1.724286e+00 3.862672e+00 # Ow SPCE + 1014 338 3 0.423800 2.082751e+01 2.453171e+00 3.640448e+00 # Hw SPCE + 1015 339 3 0.423800 4.001940e+00 8.178245e+00 1.133370e+01 # Hw SPCE + 1016 339 4 -0.847600 3.264545e+00 8.098159e+00 1.066300e+01 # Ow SPCE + 1017 339 3 0.423800 3.600575e+00 7.615500e+00 9.854222e+00 # Hw SPCE + 1018 340 3 0.423800 1.659027e+01 2.182766e+01 6.306849e+00 # Hw SPCE + 1019 340 4 -0.847600 1.573368e+01 2.131770e+01 6.228114e+00 # Ow SPCE + 1020 340 3 0.423800 1.525717e+01 2.159339e+01 5.393290e+00 # Hw SPCE + 1021 341 3 0.423800 1.307614e+01 1.247914e+01 2.352415e+01 # Hw SPCE + 1022 341 4 -0.847600 1.282345e+01 1.342121e+01 2.374472e+01 # Ow SPCE + 1023 341 3 0.423800 1.200319e+01 1.367502e+01 2.323212e+01 # Hw SPCE + 1024 342 3 0.423800 1.497260e+00 1.394711e+01 5.663732e+00 # Hw SPCE + 1025 342 4 -0.847600 1.700412e+00 1.368341e+01 4.720762e+00 # Ow SPCE + 1026 342 3 0.423800 2.683724e+00 1.376262e+01 4.556984e+00 # Hw SPCE + 1027 343 3 0.423800 1.331392e+01 4.053633e+00 8.310192e+00 # Hw SPCE + 1028 343 4 -0.847600 1.396490e+01 4.044457e+00 7.551157e+00 # Ow SPCE + 1029 343 3 0.423800 1.422587e+01 3.100890e+00 7.347255e+00 # Hw SPCE + 1030 344 3 0.423800 1.981757e+01 1.143084e+01 8.740400e+00 # Hw SPCE + 1031 344 4 -0.847600 2.013820e+01 1.062139e+01 9.232317e+00 # Ow SPCE + 1032 344 3 0.423800 2.106600e+01 1.078181e+01 9.569139e+00 # Hw SPCE + 1033 345 3 0.423800 1.322045e+01 1.551728e+01 1.471662e+01 # Hw SPCE + 1034 345 4 -0.847600 1.356744e+01 1.622003e+01 1.533770e+01 # Ow SPCE + 1035 345 3 0.423800 1.280432e+01 1.676712e+01 1.568170e+01 # Hw SPCE + 1036 346 3 0.423800 2.397971e+01 1.596693e+01 4.479312e+00 # Hw SPCE + 1037 346 4 -0.847600 2.394370e+01 1.692386e+01 4.191220e+00 # Ow SPCE + 1038 346 3 0.423800 2.474897e+01 1.713577e+01 3.637489e+00 # Hw SPCE + 1039 347 3 0.423800 2.621039e+01 2.495880e+01 9.979554e+00 # Hw SPCE + 1040 347 4 -0.847600 2.717528e+01 2.491488e+01 9.720619e+00 # Ow SPCE + 1041 347 3 0.423800 2.770734e+01 2.453968e+01 1.047966e+01 # Hw SPCE + 1042 348 3 0.423800 1.496218e+01 1.063514e+01 2.219722e+01 # Hw SPCE + 1043 348 4 -0.847600 1.527717e+01 9.890283e+00 2.160902e+01 # Ow SPCE + 1044 348 3 0.423800 1.616433e+01 1.012956e+01 2.121444e+01 # Hw SPCE + 1045 349 3 0.423800 5.054437e+00 2.163300e+01 1.503551e+01 # Hw SPCE + 1046 349 4 -0.847600 4.322602e+00 2.106058e+01 1.466572e+01 # Ow SPCE + 1047 349 3 0.423800 4.564201e+00 2.009674e+01 1.477821e+01 # Hw SPCE + 1048 350 3 0.423800 1.707807e+01 2.164478e+01 1.236295e+01 # Hw SPCE + 1049 350 4 -0.847600 1.667106e+01 2.225955e+01 1.168739e+01 # Ow SPCE + 1050 350 3 0.423800 1.611709e+01 2.294854e+01 1.215474e+01 # Hw SPCE + 1051 351 3 0.423800 6.976035e+00 1.779520e+01 1.276337e+01 # Hw SPCE + 1052 351 4 -0.847600 6.523152e+00 1.699626e+01 1.236766e+01 # Ow SPCE + 1053 351 3 0.423800 7.208840e+00 1.630862e+01 1.212892e+01 # Hw SPCE + 1054 352 3 0.423800 2.164730e+01 2.694246e+01 1.255154e+01 # Hw SPCE + 1055 352 4 -0.847600 2.229751e+01 2.618901e+01 1.245390e+01 # Ow SPCE + 1056 352 3 0.423800 2.315706e+01 2.653692e+01 1.207954e+01 # Hw SPCE + 1057 353 3 0.423800 6.833277e+00 2.770802e+01 1.645841e+01 # Hw SPCE + 1058 353 4 -0.847600 7.004922e+00 2.688481e+01 1.699957e+01 # Ow SPCE + 1059 353 3 0.423800 6.350781e+00 2.617384e+01 1.674145e+01 # Hw SPCE + 1060 354 3 0.423800 1.839299e+01 2.770356e+01 2.009264e+01 # Hw SPCE + 1061 354 4 -0.847600 1.905118e+01 2.770991e+01 2.084546e+01 # Ow SPCE + 1062 354 3 0.423800 1.998036e+01 2.770478e+01 2.047586e+01 # Hw SPCE + 1063 355 3 0.423800 2.064587e+01 1.196502e+01 2.770409e+01 # Hw SPCE + 1064 355 4 -0.847600 2.115792e+01 1.209057e+01 2.685436e+01 # Ow SPCE + 1065 355 3 0.423800 2.178395e+01 1.286403e+01 2.695363e+01 # Hw SPCE + 1066 356 3 0.423800 2.679484e+01 2.239034e+01 1.193203e+01 # Hw SPCE + 1067 356 4 -0.847600 2.667630e+01 2.273676e+01 1.286259e+01 # Ow SPCE + 1068 356 3 0.423800 2.726684e+01 2.353199e+01 1.299996e+01 # Hw SPCE + 1069 357 3 0.423800 2.770507e+01 1.752615e+01 1.228536e+01 # Hw SPCE + 1070 357 4 -0.847600 2.749083e+01 1.721084e+01 1.320985e+01 # Ow SPCE + 1071 357 3 0.423800 2.659323e+01 1.677004e+01 1.321203e+01 # Hw SPCE + 1072 358 3 0.423800 7.054104e+00 1.410756e+01 4.776771e+00 # Hw SPCE + 1073 358 4 -0.847600 8.051952e+00 1.404602e+01 4.799402e+00 # Ow SPCE + 1074 358 3 0.423800 8.434858e+00 1.493321e+01 5.056846e+00 # Hw SPCE + 1075 359 3 0.423800 7.117855e+00 1.158648e+01 2.086169e+01 # Hw SPCE + 1076 359 4 -0.847600 7.039453e+00 1.242040e+01 2.031541e+01 # Ow SPCE + 1077 359 3 0.423800 7.832717e+00 1.249916e+01 1.971165e+01 # Hw SPCE + 1078 360 3 0.423800 2.261313e+01 1.962782e+01 4.727741e+00 # Hw SPCE + 1079 360 4 -0.847600 2.305377e+01 1.917276e+01 5.501535e+00 # Ow SPCE + 1080 360 3 0.423800 2.246091e+01 1.923188e+01 6.304662e+00 # Hw SPCE + 1081 361 3 0.423800 2.644084e+00 2.634256e+01 1.150517e+01 # Hw SPCE + 1082 361 4 -0.847600 2.636942e+00 2.733967e+01 1.158078e+01 # Ow SPCE + 1083 361 3 0.423800 1.836409e+00 2.770428e+01 1.110516e+01 # Hw SPCE + 1084 362 3 0.423800 8.040783e+00 1.358334e+01 9.796191e+00 # Hw SPCE + 1085 362 4 -0.847600 7.086989e+00 1.388373e+01 9.802364e+00 # Ow SPCE + 1086 362 3 0.423800 6.576055e+00 1.338543e+01 9.101906e+00 # Hw SPCE + 1087 363 3 0.423800 2.619651e+00 1.319647e+01 2.242900e+01 # Hw SPCE + 1088 363 4 -0.847600 1.972508e+00 1.282938e+01 2.309717e+01 # Ow SPCE + 1089 363 3 0.423800 1.494472e+00 1.358356e+01 2.354737e+01 # Hw SPCE + 1090 364 3 0.423800 4.287560e+00 6.326031e+00 2.681750e+01 # Hw SPCE + 1091 364 4 -0.847600 4.221751e+00 5.858179e+00 2.593615e+01 # Ow SPCE + 1092 364 3 0.423800 4.606223e+00 4.938624e+00 2.601739e+01 # Hw SPCE + 1093 365 3 0.423800 2.134184e+01 1.704290e+01 5.072956e+00 # Hw SPCE + 1094 365 4 -0.847600 2.040579e+01 1.710436e+01 4.726504e+00 # Ow SPCE + 1095 365 3 0.423800 2.037017e+01 1.673983e+01 3.795993e+00 # Hw SPCE + 1096 366 3 0.423800 1.898318e+01 2.671834e+01 1.475007e+01 # Hw SPCE + 1097 366 4 -0.847600 1.928304e+01 2.767034e+01 1.481164e+01 # Ow SPCE + 1098 366 3 0.423800 2.028241e+01 2.770555e+01 1.481376e+01 # Hw SPCE + 1099 367 3 0.423800 2.348205e+01 1.705352e+01 2.743345e+01 # Hw SPCE + 1100 367 4 -0.847600 2.446126e+01 1.722463e+01 2.754240e+01 # Ow SPCE + 1101 367 3 0.423800 2.461312e+01 1.819940e+01 2.770595e+01 # Hw SPCE + 1102 368 3 0.423800 2.430373e+01 1.513396e+01 1.529098e+01 # Hw SPCE + 1103 368 4 -0.847600 2.387002e+01 1.513478e+01 1.619203e+01 # Ow SPCE + 1104 368 3 0.423800 2.295803e+01 1.553908e+01 1.612260e+01 # Hw SPCE + 1105 369 3 0.423800 1.140164e+01 2.512691e+01 1.865711e+01 # Hw SPCE + 1106 369 4 -0.847600 1.159315e+01 2.415737e+01 1.850437e+01 # Ow SPCE + 1107 369 3 0.423800 1.256364e+01 2.403832e+01 1.829465e+01 # Hw SPCE + 1108 370 3 0.423800 1.903749e+01 1.236107e+01 6.079139e+00 # Hw SPCE + 1109 370 4 -0.847600 2.003143e+01 1.240506e+01 6.179850e+00 # Ow SPCE + 1110 370 3 0.423800 2.044270e+01 1.158083e+01 5.790615e+00 # Hw SPCE + 1111 371 3 0.423800 1.282548e+01 1.241244e+01 1.303471e+01 # Hw SPCE + 1112 371 4 -0.847600 1.310760e+01 1.337123e+01 1.300088e+01 # Ow SPCE + 1113 371 3 0.423800 1.235662e+01 1.392727e+01 1.264472e+01 # Hw SPCE + 1114 372 3 0.423800 1.455246e+01 1.713196e+01 1.777281e+01 # Hw SPCE + 1115 372 4 -0.847600 1.483389e+01 1.618051e+01 1.789743e+01 # Ow SPCE + 1116 372 3 0.423800 1.582185e+01 1.614204e+01 1.804727e+01 # Hw SPCE + 1117 373 3 0.423800 2.660254e+01 1.154715e+01 7.873309e+00 # Hw SPCE + 1118 373 4 -0.847600 2.566434e+01 1.120992e+01 7.951077e+00 # Ow SPCE + 1119 373 3 0.423800 2.566312e+01 1.021159e+01 7.893201e+00 # Hw SPCE + 1120 374 3 0.423800 8.706708e+00 9.237566e+00 1.972409e+01 # Hw SPCE + 1121 374 4 -0.847600 8.843305e+00 8.419627e+00 1.916524e+01 # Ow SPCE + 1122 374 3 0.423800 9.468501e+00 7.795949e+00 1.963445e+01 # Hw SPCE + 1123 375 3 0.423800 1.904385e+01 2.517573e+01 1.240879e+01 # Hw SPCE + 1124 375 4 -0.847600 1.846922e+01 2.435960e+01 1.234762e+01 # Ow SPCE + 1125 375 3 0.423800 1.904403e+01 2.355925e+01 1.217725e+01 # Hw SPCE + 1126 376 3 0.423800 1.112677e+01 1.997104e+01 2.147548e+00 # Hw SPCE + 1127 376 4 -0.847600 1.122781e+01 2.093546e+01 1.903215e+00 # Ow SPCE + 1128 376 3 0.423800 1.219941e+01 2.116740e+01 1.856343e+00 # Hw SPCE + 1129 377 3 0.423800 2.578920e+01 1.183896e+01 1.708350e+01 # Hw SPCE + 1130 377 4 -0.847600 2.566789e+01 1.208960e+01 1.612305e+01 # Ow SPCE + 1131 377 3 0.423800 2.594628e+01 1.304067e+01 1.598904e+01 # Hw SPCE + 1132 378 3 0.423800 1.394495e+01 2.009220e+01 8.623841e+00 # Hw SPCE + 1133 378 4 -0.847600 1.430818e+01 1.923404e+01 8.261025e+00 # Ow SPCE + 1134 378 3 0.423800 1.528668e+01 1.933569e+01 8.081558e+00 # Hw SPCE + 1135 379 3 0.423800 5.844676e+00 2.770452e+01 2.407135e+01 # Hw SPCE + 1136 379 4 -0.847600 6.002067e+00 2.672754e+01 2.421532e+01 # Ow SPCE + 1137 379 3 0.423800 6.928604e+00 2.658707e+01 2.456432e+01 # Hw SPCE + 1138 380 3 0.423800 1.960711e+01 1.884907e+01 1.867877e+01 # Hw SPCE + 1139 380 4 -0.847600 1.959153e+01 1.836640e+01 1.955444e+01 # Ow SPCE + 1140 380 3 0.423800 1.864928e+01 1.830285e+01 1.988328e+01 # Hw SPCE + 1141 381 3 0.423800 1.937001e+01 2.231144e+01 7.504950e+00 # Hw SPCE + 1142 381 4 -0.847600 1.903775e+01 2.136844e+01 7.486339e+00 # Ow SPCE + 1143 381 3 0.423800 1.981507e+01 2.074229e+01 7.425510e+00 # Hw SPCE + 1144 382 3 0.423800 1.186903e+01 7.804165e+00 2.097534e+01 # Hw SPCE + 1145 382 4 -0.847600 1.191707e+01 8.691479e+00 2.051668e+01 # Ow SPCE + 1146 382 3 0.423800 1.284539e+01 9.055616e+00 2.059166e+01 # Hw SPCE + 1147 383 3 0.423800 1.254816e+01 1.752163e+01 2.720322e+01 # Hw SPCE + 1148 383 4 -0.847600 1.171866e+01 1.807176e+01 2.729959e+01 # Ow SPCE + 1149 383 3 0.423800 1.195006e+01 1.895518e+01 2.770705e+01 # Hw SPCE + 1150 384 3 0.423800 2.457569e+01 2.221691e+01 1.644026e+01 # Hw SPCE + 1151 384 4 -0.847600 2.471053e+01 2.126493e+01 1.671514e+01 # Ow SPCE + 1152 384 3 0.423800 2.384588e+01 2.088835e+01 1.704767e+01 # Hw SPCE + 1153 385 3 0.423800 1.283404e+01 2.766561e+01 2.418101e+01 # Hw SPCE + 1154 385 4 -0.847600 1.206202e+01 2.770764e+01 2.354681e+01 # Ow SPCE + 1155 385 3 0.423800 1.120852e+01 2.757858e+01 2.405168e+01 # Hw SPCE + 1156 386 3 0.423800 1.749501e+01 9.243189e+00 2.770432e+01 # Hw SPCE + 1157 386 4 -0.847600 1.707406e+01 8.336104e+00 2.770498e+01 # Ow SPCE + 1158 386 3 0.423800 1.778896e+01 7.636892e+00 2.770954e+01 # Hw SPCE + 1159 387 3 0.423800 3.764698e+00 4.444911e+00 2.206397e+01 # Hw SPCE + 1160 387 4 -0.847600 3.228879e+00 4.580528e+00 2.123060e+01 # Ow SPCE + 1161 387 3 0.423800 3.845459e+00 4.663162e+00 2.044766e+01 # Hw SPCE + 1162 388 3 0.423800 1.825404e+01 5.005912e+00 1.014694e+01 # Hw SPCE + 1163 388 4 -0.847600 1.843498e+01 5.919465e+00 9.782683e+00 # Ow SPCE + 1164 388 3 0.423800 1.764323e+01 6.507321e+00 9.948697e+00 # Hw SPCE + 1165 389 3 0.423800 1.376578e+01 2.484946e+01 1.386117e+01 # Hw SPCE + 1166 389 4 -0.847600 1.385130e+01 2.411884e+01 1.318378e+01 # Ow SPCE + 1167 389 3 0.423800 1.295121e+01 2.391359e+01 1.279947e+01 # Hw SPCE + 1168 390 3 0.423800 6.083757e+00 4.915302e+00 1.185692e+01 # Hw SPCE + 1169 390 4 -0.847600 5.091254e+00 4.926633e+00 1.173522e+01 # Ow SPCE + 1170 390 3 0.423800 4.865042e+00 5.402990e+00 1.088557e+01 # Hw SPCE + 1171 391 3 0.423800 1.088455e+01 2.264855e+01 1.611957e+01 # Hw SPCE + 1172 391 4 -0.847600 1.184680e+01 2.283963e+01 1.592573e+01 # Ow SPCE + 1173 391 3 0.423800 1.194451e+01 2.378898e+01 1.562707e+01 # Hw SPCE + 1174 392 3 0.423800 2.206544e+01 9.962865e+00 2.373843e+01 # Hw SPCE + 1175 392 4 -0.847600 2.203099e+01 1.070683e+01 2.440575e+01 # Ow SPCE + 1176 392 3 0.423800 2.122829e+01 1.127638e+01 2.422883e+01 # Hw SPCE + 1177 393 3 0.423800 2.149681e+00 4.701448e+00 2.459932e+00 # Hw SPCE + 1178 393 4 -0.847600 2.971895e+00 4.426184e+00 1.961740e+00 # Ow SPCE + 1179 393 3 0.423800 3.296291e+00 5.191193e+00 1.405388e+00 # Hw SPCE + 1180 394 3 0.423800 2.234775e+01 2.162751e+01 2.770458e+01 # Hw SPCE + 1181 394 4 -0.847600 2.136405e+01 2.144770e+01 2.770458e+01 # Ow SPCE + 1182 394 3 0.423800 2.086664e+01 2.231522e+01 2.770463e+01 # Hw SPCE + 1183 395 3 0.423800 1.025105e+01 1.356885e+01 1.665922e+01 # Hw SPCE + 1184 395 4 -0.847600 1.035969e+01 1.403984e+01 1.578379e+01 # Ow SPCE + 1185 395 3 0.423800 1.099242e+01 1.352554e+01 1.520487e+01 # Hw SPCE + 1186 396 3 0.423800 1.072202e+01 2.377633e+01 9.484681e+00 # Hw SPCE + 1187 396 4 -0.847600 1.155152e+01 2.385537e+01 1.003758e+01 # Ow SPCE + 1188 396 3 0.423800 1.158705e+01 2.476225e+01 1.045747e+01 # Hw SPCE + 1189 397 3 0.423800 2.341205e+01 1.813661e+01 1.100851e+01 # Hw SPCE + 1190 397 4 -0.847600 2.312469e+01 1.893695e+01 1.153470e+01 # Ow SPCE + 1191 397 3 0.423800 2.213380e+01 1.891079e+01 1.166681e+01 # Hw SPCE + 1192 398 3 0.423800 1.500790e+01 2.394339e+01 3.351174e+00 # Hw SPCE + 1193 398 4 -0.847600 1.452101e+01 2.480831e+01 3.229359e+00 # Ow SPCE + 1194 398 3 0.423800 1.385157e+01 2.492026e+01 3.963743e+00 # Hw SPCE + 1195 399 3 0.423800 1.479502e+01 1.286237e+01 2.563621e+01 # Hw SPCE + 1196 399 4 -0.847600 1.547417e+01 1.230040e+01 2.516403e+01 # Ow SPCE + 1197 399 3 0.423800 1.510530e+01 1.138206e+01 2.502053e+01 # Hw SPCE + 1198 400 3 0.423800 8.068136e+00 1.885540e+01 1.505299e+01 # Hw SPCE + 1199 400 4 -0.847600 7.813925e+00 1.834922e+01 1.587711e+01 # Ow SPCE + 1200 400 3 0.423800 8.632664e+00 1.794760e+01 1.628743e+01 # Hw SPCE + 1201 401 3 0.423800 4.063418e+00 2.228502e+01 2.617453e+01 # Hw SPCE + 1202 401 4 -0.847600 4.103168e+00 2.200493e+01 2.713369e+01 # Ow SPCE + 1203 401 3 0.423800 4.240658e+00 2.281008e+01 2.771061e+01 # Hw SPCE + 1204 402 3 0.423800 1.495103e+00 1.280834e+01 9.475737e+00 # Hw SPCE + 1205 402 4 -0.847600 1.505699e+00 1.300445e+01 8.495213e+00 # Ow SPCE + 1206 402 3 0.423800 2.251321e+00 1.363848e+01 8.290148e+00 # Hw SPCE + 1207 403 3 0.423800 2.465760e+01 6.451081e+00 2.270306e+01 # Hw SPCE + 1208 403 4 -0.847600 2.409442e+01 5.715878e+00 2.232582e+01 # Ow SPCE + 1209 403 3 0.423800 2.432171e+01 4.854913e+00 2.278088e+01 # Hw SPCE + 1210 404 3 0.423800 1.999267e+01 7.260978e+00 2.497131e+00 # Hw SPCE + 1211 404 4 -0.847600 2.085928e+01 6.772162e+00 2.396875e+00 # Ow SPCE + 1212 404 3 0.423800 2.067784e+01 5.804151e+00 2.223575e+00 # Hw SPCE + 1213 405 3 0.423800 9.804016e+00 1.166498e+01 2.144260e+01 # Hw SPCE + 1214 405 4 -0.847600 1.060905e+01 1.108039e+01 2.134174e+01 # Ow SPCE + 1215 405 3 0.423800 1.143569e+01 1.162260e+01 2.149231e+01 # Hw SPCE + 1216 406 3 0.423800 3.092468e+00 1.075047e+01 1.184205e+01 # Hw SPCE + 1217 406 4 -0.847600 2.172613e+00 1.036170e+01 1.189426e+01 # Ow SPCE + 1218 406 3 0.423800 1.497139e+00 1.108044e+01 1.172948e+01 # Hw SPCE + 1219 407 3 0.423800 8.342000e+00 1.946949e+00 1.825736e+01 # Hw SPCE + 1220 407 4 -0.847600 7.967584e+00 2.874061e+00 1.827399e+01 # Ow SPCE + 1221 407 3 0.423800 8.362019e+00 3.379098e+00 1.904168e+01 # Hw SPCE + 1222 408 3 0.423800 1.182612e+01 2.367595e+01 5.346337e+00 # Hw SPCE + 1223 408 4 -0.847600 1.218656e+01 2.331296e+01 6.205591e+00 # Ow SPCE + 1224 408 3 0.423800 1.183999e+01 2.385789e+01 6.969091e+00 # Hw SPCE + 1225 409 3 0.423800 2.018572e+01 8.334075e+00 2.235069e+01 # Hw SPCE + 1226 409 4 -0.847600 1.935425e+01 8.544535e+00 2.286486e+01 # Ow SPCE + 1227 409 3 0.423800 1.940926e+01 9.477685e+00 2.322011e+01 # Hw SPCE + 1228 410 3 0.423800 1.150389e+01 1.904731e+01 2.337866e+01 # Hw SPCE + 1229 410 4 -0.847600 1.246144e+01 1.912402e+01 2.310078e+01 # Ow SPCE + 1230 410 3 0.423800 1.251260e+01 1.953763e+01 2.219177e+01 # Hw SPCE + 1231 411 3 0.423800 1.847815e+01 4.974998e+00 2.770084e+01 # Hw SPCE + 1232 411 4 -0.847600 1.940796e+01 5.342993e+00 2.770581e+01 # Ow SPCE + 1233 411 3 0.423800 2.006473e+01 4.589757e+00 2.767000e+01 # Hw SPCE + 1234 412 3 0.423800 1.580751e+01 1.573107e+01 1.381081e+01 # Hw SPCE + 1235 412 4 -0.847600 1.558902e+01 1.492275e+01 1.326411e+01 # Ow SPCE + 1236 412 3 0.423800 1.643597e+01 1.449518e+01 1.294811e+01 # Hw SPCE + 1237 413 3 0.423800 2.552671e+01 2.186200e+01 4.694186e+00 # Hw SPCE + 1238 413 4 -0.847600 2.590407e+01 2.278594e+01 4.631422e+00 # Ow SPCE + 1239 413 3 0.423800 2.664316e+01 2.279908e+01 3.957950e+00 # Hw SPCE + 1240 414 3 0.423800 1.035260e+01 1.601592e+01 2.375608e+01 # Hw SPCE + 1241 414 4 -0.847600 1.119407e+01 1.631619e+01 2.330691e+01 # Ow SPCE + 1242 414 3 0.423800 1.194221e+01 1.632219e+01 2.397043e+01 # Hw SPCE + 1243 415 3 0.423800 1.366476e+01 2.199974e+01 2.177637e+01 # Hw SPCE + 1244 415 4 -0.847600 1.412014e+01 2.188301e+01 2.265898e+01 # Ow SPCE + 1245 415 3 0.423800 1.408048e+01 2.274131e+01 2.317060e+01 # Hw SPCE + 1246 416 3 0.423800 2.364272e+01 2.771622e+01 1.585868e+01 # Hw SPCE + 1247 416 4 -0.847600 2.381273e+01 2.673639e+01 1.575366e+01 # Ow SPCE + 1248 416 3 0.423800 2.301817e+01 2.630404e+01 1.532735e+01 # Hw SPCE + 1249 417 3 0.423800 9.899911e+00 1.878785e+01 1.222479e+01 # Hw SPCE + 1250 417 4 -0.847600 9.152062e+00 1.943110e+01 1.238898e+01 # Ow SPCE + 1251 417 3 0.423800 9.422298e+00 2.034259e+01 1.207890e+01 # Hw SPCE + 1252 418 3 0.423800 1.878242e+01 4.765640e+00 5.930390e+00 # Hw SPCE + 1253 418 4 -0.847600 1.891751e+01 4.352003e+00 5.030026e+00 # Ow SPCE + 1254 418 3 0.423800 1.970449e+01 4.776921e+00 4.582694e+00 # Hw SPCE + 1255 419 3 0.423800 2.569329e+00 2.015592e+01 1.667337e+01 # Hw SPCE + 1256 419 4 -0.847600 1.639651e+00 1.989432e+01 1.641401e+01 # Ow SPCE + 1257 419 3 0.423800 1.669728e+00 1.906197e+01 1.586059e+01 # Hw SPCE + 1258 420 3 0.423800 1.419487e+01 1.526132e+01 2.687487e+01 # Hw SPCE + 1259 420 4 -0.847600 1.473359e+01 1.511839e+01 2.770514e+01 # Ow SPCE + 1260 420 3 0.423800 1.562750e+01 1.474196e+01 2.746177e+01 # Hw SPCE + 1261 421 3 0.423800 1.225934e+01 4.584227e+00 3.933375e+00 # Hw SPCE + 1262 421 4 -0.847600 1.246279e+01 3.746427e+00 4.440028e+00 # Ow SPCE + 1263 421 3 0.423800 1.333976e+01 3.376246e+00 4.133605e+00 # Hw SPCE + 1264 422 3 0.423800 1.620747e+01 1.499403e+00 1.137835e+01 # Hw SPCE + 1265 422 4 -0.847600 1.549499e+01 1.586802e+00 1.207458e+01 # Ow SPCE + 1266 422 3 0.423800 1.590320e+01 1.493891e+00 1.298273e+01 # Hw SPCE + 1267 423 3 0.423800 9.040061e+00 1.791814e+01 2.669513e+01 # Hw SPCE + 1268 423 4 -0.847600 9.361578e+00 1.786689e+01 2.574961e+01 # Ow SPCE + 1269 423 3 0.423800 9.763981e+00 1.874370e+01 2.548640e+01 # Hw SPCE + 1270 424 3 0.423800 4.419758e+00 1.589273e+01 4.038818e+00 # Hw SPCE + 1271 424 4 -0.847600 3.943488e+00 1.618125e+01 4.869433e+00 # Ow SPCE + 1272 424 3 0.423800 4.594864e+00 1.661046e+01 5.495121e+00 # Hw SPCE + 1273 425 3 0.423800 1.842571e+01 1.489983e+00 1.787524e+01 # Hw SPCE + 1274 425 4 -0.847600 1.758392e+01 1.950976e+00 1.815609e+01 # Ow SPCE + 1275 425 3 0.423800 1.679908e+01 1.499453e+00 1.773164e+01 # Hw SPCE + 1276 426 3 0.423800 9.617069e+00 1.503555e+01 7.768316e+00 # Hw SPCE + 1277 426 4 -0.847600 9.908997e+00 1.580937e+01 7.206183e+00 # Ow SPCE + 1278 426 3 0.423800 1.087713e+01 1.599609e+01 7.373049e+00 # Hw SPCE + 1279 427 3 0.423800 1.761915e+01 1.824001e+01 1.495841e+00 # Hw SPCE + 1280 427 4 -0.847600 1.707860e+01 1.740503e+01 1.598843e+00 # Ow SPCE + 1281 427 3 0.423800 1.610784e+01 1.764023e+01 1.646897e+00 # Hw SPCE + 1282 428 3 0.423800 2.926508e+00 1.529462e+00 2.267458e+01 # Hw SPCE + 1283 428 4 -0.847600 2.327395e+00 2.065396e+00 2.207974e+01 # Ow SPCE + 1284 428 3 0.423800 1.514758e+00 1.528181e+00 2.185386e+01 # Hw SPCE + 1285 429 3 0.423800 1.553029e+01 1.331892e+01 2.261128e+01 # Hw SPCE + 1286 429 4 -0.847600 1.550843e+01 1.423794e+01 2.221768e+01 # Ow SPCE + 1287 429 3 0.423800 1.458388e+01 1.444035e+01 2.189481e+01 # Hw SPCE + 1288 430 3 0.423800 4.535770e+00 7.778783e+00 1.481895e+00 # Hw SPCE + 1289 430 4 -0.847600 3.543503e+00 7.902817e+00 1.486495e+00 # Ow SPCE + 1290 430 3 0.423800 3.329718e+00 8.879692e+00 1.489737e+00 # Hw SPCE + 1291 431 3 0.423800 2.525719e+01 1.568518e+01 1.106507e+01 # Hw SPCE + 1292 431 4 -0.847600 2.557432e+01 1.474391e+01 1.094918e+01 # Ow SPCE + 1293 431 3 0.423800 2.628269e+01 1.454508e+01 1.162645e+01 # Hw SPCE + 1294 432 3 0.423800 1.664803e+01 1.910926e+01 3.917316e+00 # Hw SPCE + 1295 432 4 -0.847600 1.723132e+01 1.835477e+01 4.218178e+00 # Ow SPCE + 1296 432 3 0.423800 1.819067e+01 1.863032e+01 4.157108e+00 # Hw SPCE + 1297 433 3 0.423800 1.358310e+01 2.662050e+01 1.011150e+01 # Hw SPCE + 1298 433 4 -0.847600 1.300630e+01 2.743245e+01 1.002187e+01 # Ow SPCE + 1299 433 3 0.423800 1.296445e+01 2.770719e+01 9.061266e+00 # Hw SPCE + 1300 434 3 0.423800 1.435488e+01 2.080827e+01 2.772371e+01 # Hw SPCE + 1301 434 4 -0.847600 1.506496e+01 2.013414e+01 2.752040e+01 # Ow SPCE + 1302 434 3 0.423800 1.464175e+01 1.930210e+01 2.716177e+01 # Hw SPCE + 1303 435 3 0.423800 2.167525e+01 2.207461e+01 1.584656e+01 # Hw SPCE + 1304 435 4 -0.847600 2.087644e+01 2.148761e+01 1.597828e+01 # Ow SPCE + 1305 435 3 0.423800 2.114010e+01 2.067901e+01 1.650425e+01 # Hw SPCE + 1306 436 3 0.423800 1.336152e+01 8.766368e+00 1.286048e+01 # Hw SPCE + 1307 436 4 -0.847600 1.290502e+01 9.628651e+00 1.307975e+01 # Ow SPCE + 1308 436 3 0.423800 1.199822e+01 9.439351e+00 1.345642e+01 # Hw SPCE + 1309 437 3 0.423800 2.687223e+01 1.379076e+01 4.532287e+00 # Hw SPCE + 1310 437 4 -0.847600 2.610111e+01 1.321002e+01 4.793266e+00 # Ow SPCE + 1311 437 3 0.423800 2.541665e+01 1.376000e+01 5.271855e+00 # Hw SPCE + 1312 438 3 0.423800 2.387246e+01 1.507034e+00 1.669725e+01 # Hw SPCE + 1313 438 4 -0.847600 2.319211e+01 2.086236e+00 1.714629e+01 # Ow SPCE + 1314 438 3 0.423800 2.251393e+01 1.510750e+00 1.760333e+01 # Hw SPCE + 1315 439 3 0.423800 2.653441e+01 1.338040e+01 1.698890e+00 # Hw SPCE + 1316 439 4 -0.847600 2.568911e+01 1.287185e+01 1.862766e+00 # Ow SPCE + 1317 439 3 0.423800 2.578217e+01 1.194475e+01 1.499689e+00 # Hw SPCE + 1318 440 3 0.423800 1.654650e+01 7.351076e+00 4.198674e+00 # Hw SPCE + 1319 440 4 -0.847600 1.720204e+01 6.630419e+00 4.424346e+00 # Ow SPCE + 1320 440 3 0.423800 1.811991e+01 7.022369e+00 4.486733e+00 # Hw SPCE + 1321 441 3 0.423800 1.561748e+01 2.344616e+01 2.579500e+01 # Hw SPCE + 1322 441 4 -0.847600 1.584177e+01 2.276826e+01 2.649512e+01 # Ow SPCE + 1323 441 3 0.423800 1.643484e+01 2.318456e+01 2.718429e+01 # Hw SPCE + 1324 442 3 0.423800 6.712087e+00 1.647363e+01 2.402889e+01 # Hw SPCE + 1325 442 4 -0.847600 7.684457e+00 1.666294e+01 2.389230e+01 # Ow SPCE + 1326 442 3 0.423800 7.794810e+00 1.757954e+01 2.350803e+01 # Hw SPCE + 1327 443 3 0.423800 5.195124e+00 1.484833e+01 1.345621e+01 # Hw SPCE + 1328 443 4 -0.847600 5.562996e+00 1.495140e+01 1.438035e+01 # Ow SPCE + 1329 443 3 0.423800 4.853276e+00 1.472796e+01 1.504847e+01 # Hw SPCE + 1330 444 3 0.423800 8.810832e+00 8.170650e+00 3.650788e+00 # Hw SPCE + 1331 444 4 -0.847600 9.231504e+00 9.063820e+00 3.809800e+00 # Ow SPCE + 1332 444 3 0.423800 8.600516e+00 9.642123e+00 4.326925e+00 # Hw SPCE + 1333 445 3 0.423800 1.481433e+01 2.127865e+01 2.698847e+00 # Hw SPCE + 1334 445 4 -0.847600 1.527661e+01 2.130491e+01 1.812501e+00 # Ow SPCE + 1335 445 3 0.423800 1.564077e+01 2.039825e+01 1.599517e+00 # Hw SPCE + 1336 446 3 0.423800 2.770585e+01 9.745885e+00 6.112819e+00 # Hw SPCE + 1337 446 4 -0.847600 2.769138e+01 8.749499e+00 6.196517e+00 # Ow SPCE + 1338 446 3 0.423800 2.675145e+01 8.420868e+00 6.104123e+00 # Hw SPCE + 1339 447 3 0.423800 1.995729e+01 2.430246e+01 2.248412e+01 # Hw SPCE + 1340 447 4 -0.847600 1.958412e+01 2.507755e+01 2.299401e+01 # Ow SPCE + 1341 447 3 0.423800 1.884602e+01 2.549888e+01 2.246704e+01 # Hw SPCE + 1342 448 3 0.423800 1.497281e+00 1.817499e+01 1.855576e+01 # Hw SPCE + 1343 448 4 -0.847600 1.565131e+00 1.860877e+01 1.945422e+01 # Ow SPCE + 1344 448 3 0.423800 1.511007e+00 1.960184e+01 1.934984e+01 # Hw SPCE + 1345 449 3 0.423800 1.522308e+01 5.358237e+00 1.071042e+01 # Hw SPCE + 1346 449 4 -0.847600 1.552152e+01 4.758830e+00 9.967693e+00 # Ow SPCE + 1347 449 3 0.423800 1.530075e+01 3.810494e+00 1.019556e+01 # Hw SPCE + 1348 450 3 0.423800 2.551853e+01 2.712094e+01 2.391955e+01 # Hw SPCE + 1349 450 4 -0.847600 2.545744e+01 2.641384e+01 2.321508e+01 # Ow SPCE + 1350 450 3 0.423800 2.636236e+01 2.625938e+01 2.281851e+01 # Hw SPCE + 1351 451 3 0.423800 2.385946e+01 4.277050e+00 1.008061e+01 # Hw SPCE + 1352 451 4 -0.847600 2.334099e+01 3.853916e+00 1.082367e+01 # Ow SPCE + 1353 451 3 0.423800 2.397243e+01 3.414585e+00 1.146264e+01 # Hw SPCE + 1354 452 3 0.423800 1.024842e+01 2.543775e+01 1.414465e+01 # Hw SPCE + 1355 452 4 -0.847600 1.115630e+01 2.571591e+01 1.383099e+01 # Ow SPCE + 1356 452 3 0.423800 1.146598e+01 2.650375e+01 1.436336e+01 # Hw SPCE + 1357 453 3 0.423800 1.117636e+01 1.477962e+01 4.921439e+00 # Hw SPCE + 1358 453 4 -0.847600 1.106953e+01 1.411588e+01 4.181144e+00 # Ow SPCE + 1359 453 3 0.423800 1.192150e+01 1.360514e+01 4.065876e+00 # Hw SPCE + 1360 454 3 0.423800 1.155263e+01 2.419941e+01 2.638042e+00 # Hw SPCE + 1361 454 4 -0.847600 1.124181e+01 2.513186e+01 2.453834e+00 # Ow SPCE + 1362 454 3 0.423800 1.199737e+01 2.566636e+01 2.075120e+00 # Hw SPCE + 1363 455 3 0.423800 1.904382e+01 8.719465e+00 1.089114e+01 # Hw SPCE + 1364 455 4 -0.847600 1.879769e+01 8.867065e+00 1.184908e+01 # Ow SPCE + 1365 455 3 0.423800 1.935399e+01 8.274179e+00 1.243132e+01 # Hw SPCE + 1366 456 3 0.423800 2.055866e+01 2.186209e+01 5.026626e+00 # Hw SPCE + 1367 456 4 -0.847600 2.043424e+01 2.280967e+01 4.732347e+00 # Ow SPCE + 1368 456 3 0.423800 1.947974e+01 2.307708e+01 4.864316e+00 # Hw SPCE + 1369 457 3 0.423800 9.488490e+00 2.282360e+01 1.375688e+01 # Hw SPCE + 1370 457 4 -0.847600 1.031447e+01 2.268450e+01 1.321061e+01 # Ow SPCE + 1371 457 3 0.423800 1.029828e+01 2.329670e+01 1.242008e+01 # Hw SPCE + 1372 458 3 0.423800 2.759400e+01 1.561429e+01 1.901357e+01 # Hw SPCE + 1373 458 4 -0.847600 2.771901e+01 1.477632e+01 1.848237e+01 # Ow SPCE + 1374 458 3 0.423800 2.682701e+01 1.442853e+01 1.819361e+01 # Hw SPCE + 1375 459 3 0.423800 9.097112e+00 5.763777e+00 1.055170e+01 # Hw SPCE + 1376 459 4 -0.847600 8.930312e+00 6.009500e+00 1.150658e+01 # Ow SPCE + 1377 459 3 0.423800 9.350086e+00 6.896101e+00 1.170082e+01 # Hw SPCE + 1378 460 3 0.423800 5.431310e+00 2.264163e+01 3.120189e+00 # Hw SPCE + 1379 460 4 -0.847600 5.550080e+00 2.304881e+01 2.214596e+00 # Ow SPCE + 1380 460 3 0.423800 6.336473e+00 2.366641e+01 2.227360e+00 # Hw SPCE + 1381 461 3 0.423800 1.793842e+01 1.486923e+01 5.835118e+00 # Hw SPCE + 1382 461 4 -0.847600 1.846091e+01 1.518650e+01 5.043692e+00 # Ow SPCE + 1383 461 3 0.423800 1.785140e+01 1.566604e+01 4.412394e+00 # Hw SPCE + 1384 462 3 0.423800 2.184585e+00 1.115490e+01 1.453262e+01 # Hw SPCE + 1385 462 4 -0.847600 2.343389e+00 1.213111e+01 1.438500e+01 # Ow SPCE + 1386 462 3 0.423800 1.503737e+00 1.255845e+01 1.404979e+01 # Hw SPCE + 1387 463 3 0.423800 1.441481e+01 3.522791e+00 2.760204e+01 # Hw SPCE + 1388 463 4 -0.847600 1.362346e+01 4.133742e+00 2.762456e+01 # Ow SPCE + 1389 463 3 0.423800 1.393539e+01 5.080332e+00 2.770621e+01 # Hw SPCE + 1390 464 3 0.423800 1.499700e+00 2.188838e+01 2.362087e+01 # Hw SPCE + 1391 464 4 -0.847600 1.945099e+00 2.224829e+01 2.280106e+01 # Ow SPCE + 1392 464 3 0.423800 1.720463e+00 2.166848e+01 2.201789e+01 # Hw SPCE + 1393 465 3 0.423800 2.708400e+01 2.218371e+01 9.205305e+00 # Hw SPCE + 1394 465 4 -0.847600 2.770480e+01 2.226015e+01 8.425070e+00 # Ow SPCE + 1395 465 3 0.423800 2.735466e+01 2.294536e+01 7.786410e+00 # Hw SPCE + 1396 466 3 0.423800 1.333326e+01 1.012770e+01 2.714313e+00 # Hw SPCE + 1397 466 4 -0.847600 1.396010e+01 1.090684e+01 2.710577e+00 # Ow SPCE + 1398 466 3 0.423800 1.343444e+01 1.175750e+01 2.703131e+00 # Hw SPCE + 1399 467 3 0.423800 1.830816e+01 1.219159e+01 1.158591e+01 # Hw SPCE + 1400 467 4 -0.847600 1.755544e+01 1.270612e+01 1.117519e+01 # Ow SPCE + 1401 467 3 0.423800 1.789433e+01 1.322125e+01 1.038792e+01 # Hw SPCE + 1402 468 3 0.423800 2.172042e+01 6.831038e+00 2.770644e+01 # Hw SPCE + 1403 468 4 -0.847600 2.223302e+01 6.193086e+00 2.713176e+01 # Ow SPCE + 1404 468 3 0.423800 2.267323e+01 5.504849e+00 2.770842e+01 # Hw SPCE + 1405 469 3 0.423800 6.268257e+00 1.075389e+01 2.334065e+01 # Hw SPCE + 1406 469 4 -0.847600 7.056234e+00 1.126624e+01 2.368211e+01 # Ow SPCE + 1407 469 3 0.423800 7.274106e+00 1.096339e+01 2.460991e+01 # Hw SPCE + 1408 470 3 0.423800 3.714354e+00 2.000821e+00 1.146332e+01 # Hw SPCE + 1409 470 4 -0.847600 2.897249e+00 1.502381e+00 1.175297e+01 # Ow SPCE + 1410 470 3 0.423800 2.235593e+00 1.482765e+00 1.100342e+01 # Hw SPCE + 1411 471 3 0.423800 2.322907e+01 2.917361e+00 5.997148e+00 # Hw SPCE + 1412 471 4 -0.847600 2.223897e+01 2.777046e+00 5.995080e+00 # Ow SPCE + 1413 471 3 0.423800 2.177665e+01 3.663721e+00 6.003295e+00 # Hw SPCE + 1414 472 3 0.423800 1.763400e+01 1.243773e+01 2.094696e+01 # Hw SPCE + 1415 472 4 -0.847600 1.752266e+01 1.335506e+01 2.056472e+01 # Ow SPCE + 1416 472 3 0.423800 1.837391e+01 1.363744e+01 2.012242e+01 # Hw SPCE + 1417 473 3 0.423800 2.155614e+01 1.654986e+01 2.018860e+01 # Hw SPCE + 1418 473 4 -0.847600 2.107547e+01 1.603549e+01 1.947841e+01 # Ow SPCE + 1419 473 3 0.423800 2.128393e+01 1.642895e+01 1.858301e+01 # Hw SPCE + 1420 474 3 0.423800 1.728050e+01 2.423683e+01 9.871601e+00 # Hw SPCE + 1421 474 4 -0.847600 1.738375e+01 2.347556e+01 9.231428e+00 # Ow SPCE + 1422 474 3 0.423800 1.719527e+01 2.379354e+01 8.302252e+00 # Hw SPCE + 1423 475 3 0.423800 1.650810e+00 6.990915e+00 2.295043e+01 # Hw SPCE + 1424 475 4 -0.847600 2.208121e+00 7.329955e+00 2.370836e+01 # Ow SPCE + 1425 475 3 0.423800 3.171215e+00 7.128177e+00 2.353022e+01 # Hw SPCE + 1426 476 3 0.423800 1.499730e+00 8.992460e+00 8.752017e+00 # Hw SPCE + 1427 476 4 -0.847600 1.510449e+00 9.936633e+00 9.081292e+00 # Ow SPCE + 1428 476 3 0.423800 2.456253e+00 1.025222e+01 9.157852e+00 # Hw SPCE + 1429 477 3 0.423800 1.524357e+00 1.612612e+01 7.337394e+00 # Hw SPCE + 1430 477 4 -0.847600 1.499367e+00 1.628416e+01 8.324511e+00 # Ow SPCE + 1431 477 3 0.423800 1.500368e+00 1.726779e+01 8.504717e+00 # Hw SPCE + 1432 478 3 0.423800 4.508742e+00 2.060049e+01 1.519230e+00 # Hw SPCE + 1433 478 4 -0.847600 5.486779e+00 2.039253e+01 1.505170e+00 # Ow SPCE + 1434 478 3 0.423800 5.616682e+00 1.940102e+01 1.500039e+00 # Hw SPCE + 1435 479 3 0.423800 1.922274e+01 8.093379e+00 8.219502e+00 # Hw SPCE + 1436 479 4 -0.847600 1.916411e+01 7.383197e+00 7.517929e+00 # Ow SPCE + 1437 479 3 0.423800 1.995519e+01 6.775915e+00 7.591466e+00 # Hw SPCE + 1438 480 3 0.423800 1.943784e+01 1.013386e+01 2.597417e+01 # Hw SPCE + 1439 480 4 -0.847600 2.017081e+01 9.453976e+00 2.599674e+01 # Ow SPCE + 1440 480 3 0.423800 2.007103e+01 8.883198e+00 2.681176e+01 # Hw SPCE + 1441 481 3 0.423800 4.192983e+00 2.092863e+01 2.367681e+01 # Hw SPCE + 1442 481 4 -0.847600 3.622627e+00 2.015436e+01 2.340257e+01 # Ow SPCE + 1443 481 3 0.423800 3.162762e+00 1.977780e+01 2.420677e+01 # Hw SPCE + 1444 482 3 0.423800 2.075118e+01 1.717508e+01 2.770677e+01 # Hw SPCE + 1445 482 4 -0.847600 1.976142e+01 1.731709e+01 2.769234e+01 # Ow SPCE + 1446 482 3 0.423800 1.929769e+01 1.643117e+01 2.768228e+01 # Hw SPCE + 1447 483 3 0.423800 6.778056e+00 1.536002e+01 7.209241e+00 # Hw SPCE + 1448 483 4 -0.847600 7.198296e+00 1.626143e+01 7.313492e+00 # Ow SPCE + 1449 483 3 0.423800 6.485256e+00 1.694623e+01 7.463902e+00 # Hw SPCE + 1450 484 3 0.423800 2.425409e+01 5.401110e+00 1.659432e+00 # Hw SPCE + 1451 484 4 -0.847600 2.351087e+01 5.727686e+00 2.243365e+00 # Ow SPCE + 1452 484 3 0.423800 2.360826e+01 6.712456e+00 2.387383e+00 # Hw SPCE + 1453 485 3 0.423800 1.686252e+01 4.577775e+00 1.853409e+01 # Hw SPCE + 1454 485 4 -0.847600 1.717109e+01 5.331094e+00 1.911486e+01 # Ow SPCE + 1455 485 3 0.423800 1.782031e+01 4.985329e+00 1.979233e+01 # Hw SPCE + 1456 486 3 0.423800 2.559447e+01 6.830529e+00 2.554992e+01 # Hw SPCE + 1457 486 4 -0.847600 2.476010e+01 7.328675e+00 2.578589e+01 # Ow SPCE + 1458 486 3 0.423800 2.465753e+01 8.114730e+00 2.517630e+01 # Hw SPCE + 1459 487 3 0.423800 2.618329e+01 1.274776e+01 2.027220e+01 # Hw SPCE + 1460 487 4 -0.847600 2.536296e+01 1.243771e+01 2.075274e+01 # Ow SPCE + 1461 487 3 0.423800 2.554309e+01 1.241004e+01 2.173600e+01 # Hw SPCE + 1462 488 3 0.423800 1.919981e+01 2.661638e+00 2.030213e+01 # Hw SPCE + 1463 488 4 -0.847600 1.973061e+01 2.904574e+00 2.111406e+01 # Ow SPCE + 1464 488 3 0.423800 1.914388e+01 2.856844e+00 2.192244e+01 # Hw SPCE + 1465 489 3 0.423800 2.266744e+01 1.984307e+01 8.978618e+00 # Hw SPCE + 1466 489 4 -0.847600 2.185883e+01 2.037567e+01 9.228600e+00 # Ow SPCE + 1467 489 3 0.423800 2.212644e+01 2.132149e+01 9.412457e+00 # Hw SPCE + 1468 490 3 0.423800 4.817158e+00 1.523570e+00 6.050418e+00 # Hw SPCE + 1469 490 4 -0.847600 4.254228e+00 1.621274e+00 6.871127e+00 # Ow SPCE + 1470 490 3 0.423800 3.291277e+00 1.497598e+00 6.631484e+00 # Hw SPCE + 1471 491 3 0.423800 1.079473e+01 2.139909e+01 1.857674e+01 # Hw SPCE + 1472 491 4 -0.847600 1.177944e+01 2.140440e+01 1.840264e+01 # Ow SPCE + 1473 491 3 0.423800 1.226661e+01 2.114195e+01 1.923559e+01 # Hw SPCE + 1474 492 3 0.423800 2.471848e+01 2.047547e+01 7.260132e+00 # Hw SPCE + 1475 492 4 -0.847600 2.453164e+01 2.145726e+01 7.225866e+00 # Ow SPCE + 1476 492 3 0.423800 2.451936e+01 2.182685e+01 8.154981e+00 # Hw SPCE + 1477 493 3 0.423800 1.868210e+01 2.290815e+01 2.448807e+01 # Hw SPCE + 1478 493 4 -0.847600 1.872346e+01 2.190901e+01 2.448402e+01 # Ow SPCE + 1479 493 3 0.423800 1.929678e+01 2.160222e+01 2.372430e+01 # Hw SPCE + 1480 494 3 0.423800 9.843500e+00 1.140046e+01 2.548708e+01 # Hw SPCE + 1481 494 4 -0.847600 1.054880e+01 1.070283e+01 2.536110e+01 # Ow SPCE + 1482 494 3 0.423800 1.144375e+01 1.114300e+01 2.528825e+01 # Hw SPCE + 1483 495 3 0.423800 6.422993e+00 1.821276e+01 9.903863e+00 # Hw SPCE + 1484 495 4 -0.847600 7.333960e+00 1.850491e+01 9.612681e+00 # Ow SPCE + 1485 495 3 0.423800 8.018713e+00 1.813856e+01 1.024268e+01 # Hw SPCE + 1486 496 3 0.423800 2.471333e+01 2.384780e+01 2.166757e+01 # Hw SPCE + 1487 496 4 -0.847600 2.416185e+01 2.454566e+01 2.121055e+01 # Ow SPCE + 1488 496 3 0.423800 2.476291e+01 2.524546e+01 2.082453e+01 # Hw SPCE + 1489 497 3 0.423800 2.590620e+00 8.091003e+00 2.061080e+01 # Hw SPCE + 1490 497 4 -0.847600 3.231566e+00 7.330610e+00 2.071564e+01 # Ow SPCE + 1491 497 3 0.423800 3.920110e+00 7.372830e+00 1.999168e+01 # Hw SPCE + 1492 498 3 0.423800 8.949464e+00 2.425655e+01 3.695045e+00 # Hw SPCE + 1493 498 4 -0.847600 9.202844e+00 2.412128e+01 4.652907e+00 # Ow SPCE + 1494 498 3 0.423800 9.142579e+00 2.499262e+01 5.139877e+00 # Hw SPCE + 1495 499 3 0.423800 1.764683e+01 2.974023e+00 1.499949e+00 # Hw SPCE + 1496 499 4 -0.847600 1.685020e+01 2.477365e+00 1.844498e+00 # Ow SPCE + 1497 499 3 0.423800 1.705690e+01 1.499622e+00 1.880419e+00 # Hw SPCE + 1498 500 3 0.423800 2.126518e+01 3.913868e+00 1.808240e+01 # Hw SPCE + 1499 500 4 -0.847600 2.045368e+01 3.344904e+00 1.794915e+01 # Ow SPCE + 1500 500 3 0.423800 1.970398e+01 3.909289e+00 1.760359e+01 # Hw SPCE + 1501 501 3 0.423800 1.495876e+00 2.614890e+01 2.082634e+01 # Hw SPCE + 1502 501 4 -0.847600 2.060720e+00 2.545025e+01 2.126548e+01 # Ow SPCE + 1503 501 3 0.423800 1.496549e+00 2.465376e+01 2.148298e+01 # Hw SPCE + 1504 502 3 0.423800 2.279048e+01 9.290222e+00 2.681803e+01 # Hw SPCE + 1505 502 4 -0.847600 2.327017e+01 9.655579e+00 2.761579e+01 # Ow SPCE + 1506 502 3 0.423800 2.416046e+01 9.208611e+00 2.770297e+01 # Hw SPCE + 1507 503 3 0.423800 1.498663e+00 4.051791e+00 1.406843e+01 # Hw SPCE + 1508 503 4 -0.847600 2.227842e+00 4.516378e+00 1.356598e+01 # Ow SPCE + 1509 503 3 0.423800 2.947213e+00 3.859735e+00 1.333943e+01 # Hw SPCE + 1510 504 3 0.423800 4.121509e+00 1.297824e+01 1.026964e+01 # Hw SPCE + 1511 504 4 -0.847600 3.726321e+00 1.373934e+01 1.078398e+01 # Ow SPCE + 1512 504 3 0.423800 3.570218e+00 1.345664e+01 1.173040e+01 # Hw SPCE + 1513 505 3 0.423800 1.938062e+01 1.410367e+01 8.241157e+00 # Hw SPCE + 1514 505 4 -0.847600 1.995758e+01 1.491592e+01 8.155362e+00 # Ow SPCE + 1515 505 3 0.423800 2.066193e+01 1.475299e+01 7.464465e+00 # Hw SPCE + 1516 506 3 0.423800 1.635093e+01 4.629187e+00 2.599280e+01 # Hw SPCE + 1517 506 4 -0.847600 1.660343e+01 5.572751e+00 2.577847e+01 # Ow SPCE + 1518 506 3 0.423800 1.597027e+01 6.198813e+00 2.623361e+01 # Hw SPCE + 1519 507 3 0.423800 2.572095e+01 1.411800e+01 2.664163e+01 # Hw SPCE + 1520 507 4 -0.847600 2.489025e+01 1.466440e+01 2.653495e+01 # Ow SPCE + 1521 507 3 0.423800 2.417927e+01 1.431235e+01 2.714369e+01 # Hw SPCE + 1522 508 3 0.423800 2.106512e+01 3.934685e+00 1.521472e+01 # Hw SPCE + 1523 508 4 -0.847600 2.145982e+01 3.015920e+00 1.522367e+01 # Ow SPCE + 1524 508 3 0.423800 2.073659e+01 2.343985e+00 1.538314e+01 # Hw SPCE + 1525 509 3 0.423800 1.747101e+01 1.089516e+01 1.867742e+01 # Hw SPCE + 1526 509 4 -0.847600 1.750084e+01 1.180616e+01 1.826610e+01 # Ow SPCE + 1527 509 3 0.423800 1.671577e+01 1.192311e+01 1.765784e+01 # Hw SPCE + 1528 510 3 0.423800 2.149389e+01 8.833650e+00 6.611416e+00 # Hw SPCE + 1529 510 4 -0.847600 2.177394e+01 9.611791e+00 7.173615e+00 # Ow SPCE + 1530 510 3 0.423800 2.254669e+01 9.345700e+00 7.749852e+00 # Hw SPCE + 1531 511 3 0.423800 3.791408e+00 1.897825e+01 1.012530e+01 # Hw SPCE + 1532 511 4 -0.847600 3.851687e+00 1.885137e+01 9.135211e+00 # Ow SPCE + 1533 511 3 0.423800 3.179880e+00 1.943767e+01 8.682525e+00 # Hw SPCE + 1534 512 3 0.423800 1.252372e+01 2.047991e+01 2.549174e+01 # Hw SPCE + 1535 512 4 -0.847600 1.324747e+01 2.111712e+01 2.522688e+01 # Ow SPCE + 1536 512 3 0.423800 1.305955e+01 2.201712e+01 2.562020e+01 # Hw SPCE + 1537 513 3 0.423800 9.857980e+00 8.140566e+00 9.299584e+00 # Hw SPCE + 1538 513 4 -0.847600 1.080806e+01 7.847241e+00 9.193255e+00 # Ow SPCE + 1539 513 3 0.423800 1.136372e+01 8.620982e+00 8.889004e+00 # Hw SPCE + 1540 514 3 0.423800 2.468682e+01 1.540730e+01 1.499507e+00 # Hw SPCE + 1541 514 4 -0.847600 2.388089e+01 1.498355e+01 1.912937e+00 # Ow SPCE + 1542 514 3 0.423800 2.305466e+01 1.541498e+01 1.550717e+00 # Hw SPCE + 1543 515 3 0.423800 1.464646e+01 2.252692e+01 1.926250e+01 # Hw SPCE + 1544 515 4 -0.847600 1.547386e+01 2.308846e+01 1.925340e+01 # Ow SPCE + 1545 515 3 0.423800 1.626223e+01 2.251673e+01 1.902626e+01 # Hw SPCE + 1546 516 3 0.423800 2.767962e+01 2.118986e+01 2.645961e+01 # Hw SPCE + 1547 516 4 -0.847600 2.770572e+01 2.108694e+01 2.745396e+01 # Ow SPCE + 1548 516 3 0.423800 2.734198e+01 2.019016e+01 2.770589e+01 # Hw SPCE + 1549 517 3 0.423800 5.473025e+00 1.539565e+01 1.766372e+01 # Hw SPCE + 1550 517 4 -0.847600 5.457163e+00 1.532146e+01 1.866084e+01 # Ow SPCE + 1551 517 3 0.423800 5.719911e+00 1.439500e+01 1.893036e+01 # Hw SPCE + 1552 518 3 0.423800 1.355721e+01 1.609064e+01 7.981517e+00 # Hw SPCE + 1553 518 4 -0.847600 1.451195e+01 1.585086e+01 7.805517e+00 # Ow SPCE + 1554 518 3 0.423800 1.510515e+01 1.659197e+01 8.119965e+00 # Hw SPCE + 1555 519 3 0.423800 1.185686e+01 2.756045e+01 1.746044e+01 # Hw SPCE + 1556 519 4 -0.847600 1.271387e+01 2.750488e+01 1.694815e+01 # Ow SPCE + 1557 519 3 0.423800 1.289860e+01 2.655139e+01 1.670998e+01 # Hw SPCE + 1558 520 3 0.423800 2.770610e+01 1.433506e+01 2.192258e+01 # Hw SPCE + 1559 520 4 -0.847600 2.713948e+01 1.511976e+01 2.217392e+01 # Ow SPCE + 1560 520 3 0.423800 2.770524e+01 1.594383e+01 2.220271e+01 # Hw SPCE + 1561 521 3 0.423800 1.499493e+01 1.238797e+01 2.007948e+01 # Hw SPCE + 1562 521 4 -0.847600 1.464506e+01 1.280227e+01 1.923927e+01 # Ow SPCE + 1563 521 3 0.423800 1.485236e+01 1.378055e+01 1.923864e+01 # Hw SPCE + 1564 522 3 0.423800 1.136191e+01 6.926399e+00 2.399031e+01 # Hw SPCE + 1565 522 4 -0.847600 1.054592e+01 7.370139e+00 2.436079e+01 # Ow SPCE + 1566 522 3 0.423800 9.932311e+00 6.677061e+00 2.473911e+01 # Hw SPCE + 1567 523 3 0.423800 7.548290e+00 2.174968e+00 3.349358e+00 # Hw SPCE + 1568 523 4 -0.847600 6.864919e+00 1.475454e+00 3.558363e+00 # Ow SPCE + 1569 523 3 0.423800 5.952602e+00 1.884488e+00 3.539162e+00 # Hw SPCE + 1570 524 3 0.423800 2.257539e+01 7.886933e+00 2.106609e+01 # Hw SPCE + 1571 524 4 -0.847600 2.236455e+01 7.157236e+00 2.041564e+01 # Ow SPCE + 1572 524 3 0.423800 2.320865e+01 6.845285e+00 1.997954e+01 # Hw SPCE + 1573 525 3 0.423800 1.931716e+01 2.614213e+01 1.741829e+01 # Hw SPCE + 1574 525 4 -0.847600 1.896046e+01 2.707452e+01 1.747657e+01 # Ow SPCE + 1575 525 3 0.423800 1.970938e+01 2.770594e+01 1.767766e+01 # Hw SPCE + 1576 526 3 0.423800 1.293280e+01 1.317757e+01 1.712150e+01 # Hw SPCE + 1577 526 4 -0.847600 1.315759e+01 1.415177e+01 1.710169e+01 # Ow SPCE + 1578 526 3 0.423800 1.254740e+01 1.464728e+01 1.771987e+01 # Hw SPCE + 1579 527 3 0.423800 7.790007e+00 6.046852e+00 2.770758e+01 # Hw SPCE + 1580 527 4 -0.847600 6.829260e+00 5.769427e+00 2.770728e+01 # Ow SPCE + 1581 527 3 0.423800 6.770591e+00 4.771151e+00 2.770535e+01 # Hw SPCE + 1582 528 3 0.423800 1.123375e+01 2.298556e+01 2.380651e+01 # Hw SPCE + 1583 528 4 -0.847600 1.075845e+01 2.212317e+01 2.398080e+01 # Ow SPCE + 1584 528 3 0.423800 1.039779e+01 2.212396e+01 2.491350e+01 # Hw SPCE + 1585 529 3 0.423800 4.200882e+00 1.931622e+01 2.770757e+01 # Hw SPCE + 1586 529 4 -0.847600 5.175713e+00 1.953916e+01 2.770789e+01 # Ow SPCE + 1587 529 3 0.423800 5.710832e+00 1.869439e+01 2.770832e+01 # Hw SPCE + 1588 530 3 0.423800 2.770456e+01 1.697514e+01 9.342626e+00 # Hw SPCE + 1589 530 4 -0.847600 2.770706e+01 1.614854e+01 9.905419e+00 # Ow SPCE + 1590 530 3 0.423800 2.770253e+01 1.534242e+01 9.313697e+00 # Hw SPCE + 1591 531 3 0.423800 1.832884e+01 7.670320e+00 2.009972e+01 # Hw SPCE + 1592 531 4 -0.847600 1.770977e+01 8.379274e+00 1.976188e+01 # Ow SPCE + 1593 531 3 0.423800 1.728273e+01 8.071375e+00 1.891168e+01 # Hw SPCE + 1594 532 3 0.423800 1.164885e+01 2.369859e+00 6.675939e+00 # Hw SPCE + 1595 532 4 -0.847600 1.119973e+01 1.488536e+00 6.822766e+00 # Ow SPCE + 1596 532 3 0.423800 1.021557e+01 1.629733e+00 6.930003e+00 # Hw SPCE + 1597 533 3 0.423800 1.736192e+01 1.608261e+01 2.086977e+01 # Hw SPCE + 1598 533 4 -0.847600 1.663485e+01 1.658639e+01 2.133622e+01 # Ow SPCE + 1599 533 3 0.423800 1.582226e+01 1.661428e+01 2.075406e+01 # Hw SPCE + 1600 534 3 0.423800 2.770538e+01 1.618975e+01 6.697811e+00 # Hw SPCE + 1601 534 4 -0.847600 2.683077e+01 1.586285e+01 6.339763e+00 # Ow SPCE + 1602 534 3 0.423800 2.644970e+01 1.654559e+01 5.716346e+00 # Hw SPCE + 1603 535 3 0.423800 1.073071e+01 3.382764e+00 1.994761e+00 # Hw SPCE + 1604 535 4 -0.847600 1.068786e+01 2.506336e+00 2.474384e+00 # Ow SPCE + 1605 535 3 0.423800 1.061173e+01 1.764903e+00 1.807690e+00 # Hw SPCE + 1606 536 3 0.423800 5.975184e+00 9.418923e+00 1.756302e+01 # Hw SPCE + 1607 536 4 -0.847600 6.920951e+00 9.718084e+00 1.768962e+01 # Ow SPCE + 1608 536 3 0.423800 6.942337e+00 1.070925e+01 1.782049e+01 # Hw SPCE + 1609 537 3 0.423800 1.360924e+01 2.146817e+01 1.387145e+01 # Hw SPCE + 1610 537 4 -0.847600 1.450822e+01 2.119277e+01 1.353090e+01 # Ow SPCE + 1611 537 3 0.423800 1.516476e+01 2.119288e+01 1.428519e+01 # Hw SPCE + 1612 538 3 0.423800 8.874645e+00 2.735638e+00 1.567786e+01 # Hw SPCE + 1613 538 4 -0.847600 8.841213e+00 1.743745e+00 1.555526e+01 # Ow SPCE + 1614 538 3 0.423800 9.281324e+00 1.499682e+00 1.469112e+01 # Hw SPCE + 1615 539 3 0.423800 2.677837e+01 2.727822e+01 1.521683e+01 # Hw SPCE + 1616 539 4 -0.847600 2.716773e+01 2.651889e+01 1.573819e+01 # Ow SPCE + 1617 539 3 0.423800 2.770480e+01 2.593640e+01 1.512805e+01 # Hw SPCE + 1618 540 3 0.423800 1.348931e+01 2.050695e+01 1.644491e+01 # Hw SPCE + 1619 540 4 -0.847600 1.379303e+01 1.955419e+01 1.644174e+01 # Ow SPCE + 1620 540 3 0.423800 1.479253e+01 1.952299e+01 1.643578e+01 # Hw SPCE + 1621 541 3 0.423800 2.712765e+01 2.770458e+01 1.499784e+00 # Hw SPCE + 1622 541 4 -0.847600 2.710752e+01 2.724363e+01 2.386980e+00 # Ow SPCE + 1623 541 3 0.423800 2.619044e+01 2.731545e+01 2.779174e+00 # Hw SPCE + 1624 542 3 0.423800 9.946949e+00 2.110450e+01 2.770454e+01 # Hw SPCE + 1625 542 4 -0.847600 9.160696e+00 2.085784e+01 2.713800e+01 # Ow SPCE + 1626 542 3 0.423800 8.468408e+00 2.041129e+01 2.770486e+01 # Hw SPCE + 1627 543 3 0.423800 1.504399e+00 1.083302e+01 2.009960e+01 # Hw SPCE + 1628 543 4 -0.847600 1.816408e+00 1.177936e+01 2.018384e+01 # Ow SPCE + 1629 543 3 0.423800 2.807855e+00 1.181584e+01 2.005853e+01 # Hw SPCE + 1630 544 3 0.423800 2.543910e+01 2.947611e+00 2.768656e+01 # Hw SPCE + 1631 544 4 -0.847600 2.451490e+01 2.595735e+00 2.753807e+01 # Ow SPCE + 1632 544 3 0.423800 2.455905e+01 1.616936e+00 2.733806e+01 # Hw SPCE + 1633 545 3 0.423800 2.361457e+01 1.312219e+01 1.230861e+01 # Hw SPCE + 1634 545 4 -0.847600 2.413492e+01 1.356531e+01 1.303860e+01 # Ow SPCE + 1635 545 3 0.423800 2.440618e+01 1.288209e+01 1.371657e+01 # Hw SPCE + 1636 546 3 0.423800 1.870442e+01 2.642254e+01 9.001379e+00 # Hw SPCE + 1637 546 4 -0.847600 1.888946e+01 2.680197e+01 8.094851e+00 # Ow SPCE + 1638 546 3 0.423800 1.831281e+01 2.634447e+01 7.417974e+00 # Hw SPCE + 1639 547 3 0.423800 1.955187e+01 2.669861e+01 1.982066e+00 # Hw SPCE + 1640 547 4 -0.847600 1.983701e+01 2.765621e+01 2.023180e+00 # Ow SPCE + 1641 547 3 0.423800 2.083300e+01 2.770447e+01 2.098561e+00 # Hw SPCE + 1642 548 3 0.423800 5.421499e+00 2.757790e+01 1.294457e+01 # Hw SPCE + 1643 548 4 -0.847600 5.110506e+00 2.770464e+01 1.388649e+01 # Ow SPCE + 1644 548 3 0.423800 4.115657e+00 2.761068e+01 1.392453e+01 # Hw SPCE + 1645 549 3 0.423800 1.667681e+01 2.723516e+01 2.218951e+01 # Hw SPCE + 1646 549 4 -0.847600 1.593196e+01 2.771570e+01 2.265241e+01 # Ow SPCE + 1647 549 3 0.423800 1.507418e+01 2.754768e+01 2.216664e+01 # Hw SPCE + 1648 550 3 0.423800 2.433245e+01 2.342839e+01 1.128065e+01 # Hw SPCE + 1649 550 4 -0.847600 2.415467e+01 2.258524e+01 1.077321e+01 # Ow SPCE + 1650 550 3 0.423800 2.415864e+01 2.180938e+01 1.140410e+01 # Hw SPCE + 1651 551 3 0.423800 1.837587e+01 2.123822e+01 2.725995e+01 # Hw SPCE + 1652 551 4 -0.847600 1.779349e+01 2.043021e+01 2.734918e+01 # Ow SPCE + 1653 551 3 0.423800 1.833384e+01 1.966748e+01 2.770453e+01 # Hw SPCE + 1654 552 3 0.423800 1.592706e+01 1.936515e+00 2.435957e+01 # Hw SPCE + 1655 552 4 -0.847600 1.505896e+01 1.499035e+00 2.412505e+01 # Ow SPCE + 1656 552 3 0.423800 1.454993e+01 2.085140e+00 2.349467e+01 # Hw SPCE + 1657 553 3 0.423800 1.747565e+01 1.731294e+01 9.312832e+00 # Hw SPCE + 1658 553 4 -0.847600 1.766196e+01 1.635124e+01 9.111737e+00 # Ow SPCE + 1659 553 3 0.423800 1.809084e+01 1.592158e+01 9.906376e+00 # Hw SPCE + 1660 554 3 0.423800 8.312156e+00 2.203891e+01 1.687596e+01 # Hw SPCE + 1661 554 4 -0.847600 8.145446e+00 2.107334e+01 1.667629e+01 # Ow SPCE + 1662 554 3 0.423800 7.160271e+00 2.090436e+01 1.664666e+01 # Hw SPCE + 1663 555 3 0.423800 1.452310e+01 2.241336e+01 9.977204e+00 # Hw SPCE + 1664 555 4 -0.847600 1.467835e+01 2.336383e+01 9.707951e+00 # Ow SPCE + 1665 555 3 0.423800 1.427486e+01 2.397365e+01 1.039009e+01 # Hw SPCE + 1666 556 3 0.423800 2.770573e+01 9.991646e+00 1.639356e+01 # Hw SPCE + 1667 556 4 -0.847600 2.733485e+01 1.000499e+01 1.546498e+01 # Ow SPCE + 1668 556 3 0.423800 2.770500e+01 9.233753e+00 1.494711e+01 # Hw SPCE + 1669 557 3 0.423800 2.255789e+01 1.833507e+01 1.626641e+01 # Hw SPCE + 1670 557 4 -0.847600 2.351546e+01 1.820880e+01 1.652545e+01 # Ow SPCE + 1671 557 3 0.423800 2.406042e+01 1.802400e+01 1.570760e+01 # Hw SPCE + 1672 558 3 0.423800 1.525572e+01 2.770743e+01 1.200379e+01 # Hw SPCE + 1673 558 4 -0.847600 1.484040e+01 2.707735e+01 1.265992e+01 # Ow SPCE + 1674 558 3 0.423800 1.406834e+01 2.752601e+01 1.311006e+01 # Hw SPCE + 1675 559 3 0.423800 1.658932e+01 1.906188e+01 1.328318e+01 # Hw SPCE + 1676 559 4 -0.847600 1.675201e+01 1.815055e+01 1.290501e+01 # Ow SPCE + 1677 559 3 0.423800 1.758478e+01 1.776758e+01 1.330480e+01 # Hw SPCE + 1678 560 3 0.423800 1.004229e+01 1.712720e+01 2.079854e+01 # Hw SPCE + 1679 560 4 -0.847600 1.063564e+01 1.789587e+01 2.103746e+01 # Ow SPCE + 1680 560 3 0.423800 1.010311e+01 1.874227e+01 2.103197e+01 # Hw SPCE + 1681 561 3 0.423800 2.500505e+01 1.070351e+01 4.512067e+00 # Hw SPCE + 1682 561 4 -0.847600 2.573603e+01 1.010670e+01 4.181178e+00 # Ow SPCE + 1683 561 3 0.423800 2.648741e+01 1.066421e+01 3.828189e+00 # Hw SPCE + 1684 562 3 0.423800 1.210303e+01 1.800383e+01 9.349879e+00 # Hw SPCE + 1685 562 4 -0.847600 1.113080e+01 1.778888e+01 9.442458e+00 # Ow SPCE + 1686 562 3 0.423800 1.060025e+01 1.863653e+01 9.439283e+00 # Hw SPCE + 1687 563 3 0.423800 1.030762e+01 7.414060e+00 2.769564e+01 # Hw SPCE + 1688 563 4 -0.847600 1.049207e+01 6.470196e+00 2.742160e+01 # Ow SPCE + 1689 563 3 0.423800 1.141031e+01 6.209855e+00 2.772004e+01 # Hw SPCE + 1690 564 3 0.423800 4.398211e+00 2.689864e+01 2.124419e+01 # Hw SPCE + 1691 564 4 -0.847600 4.266022e+00 2.770576e+01 2.181959e+01 # Ow SPCE + 1692 564 3 0.423800 3.351717e+00 2.768078e+01 2.222384e+01 # Hw SPCE + 1693 565 3 0.423800 8.283521e+00 2.495708e+01 9.955134e+00 # Hw SPCE + 1694 565 4 -0.847600 7.965370e+00 2.543617e+01 1.077322e+01 # Ow SPCE + 1695 565 3 0.423800 8.600427e+00 2.526670e+01 1.152686e+01 # Hw SPCE + 1696 566 3 0.423800 2.718771e+01 5.401651e+00 2.294482e+01 # Hw SPCE + 1697 566 4 -0.847600 2.770619e+01 6.078594e+00 2.346725e+01 # Ow SPCE + 1698 566 3 0.423800 2.727173e+01 6.974594e+00 2.337542e+01 # Hw SPCE + 1699 567 3 0.423800 1.344671e+01 1.859690e+01 1.608430e+00 # Hw SPCE + 1700 567 4 -0.847600 1.362491e+01 1.880297e+01 2.570605e+00 # Ow SPCE + 1701 567 3 0.423800 1.316244e+01 1.812923e+01 3.146969e+00 # Hw SPCE + 1702 568 3 0.423800 1.583162e+01 2.444348e+01 5.926474e+00 # Hw SPCE + 1703 568 4 -0.847600 1.499075e+01 2.459672e+01 6.445563e+00 # Ow SPCE + 1704 568 3 0.423800 1.478045e+01 2.378288e+01 6.987262e+00 # Hw SPCE + 1705 569 3 0.423800 9.922789e+00 5.193782e+00 2.202243e+01 # Hw SPCE + 1706 569 4 -0.847600 9.563582e+00 6.125784e+00 2.207083e+01 # Ow SPCE + 1707 569 3 0.423800 8.644820e+00 6.149777e+00 2.167675e+01 # Hw SPCE + 1708 570 3 0.423800 8.914720e+00 8.315418e+00 1.641874e+01 # Hw SPCE + 1709 570 4 -0.847600 9.302874e+00 8.063947e+00 1.553212e+01 # Ow SPCE + 1710 570 3 0.423800 1.015658e+01 8.564357e+00 1.538800e+01 # Hw SPCE + 1711 571 3 0.423800 1.175235e+01 1.796050e+01 1.792472e+01 # Hw SPCE + 1712 571 4 -0.847600 1.132726e+01 1.866461e+01 1.849353e+01 # Ow SPCE + 1713 571 3 0.423800 1.034732e+01 1.870417e+01 1.829820e+01 # Hw SPCE + 1714 572 3 0.423800 2.334407e+01 2.469584e+01 1.753610e+01 # Hw SPCE + 1715 572 4 -0.847600 2.274051e+01 2.390140e+01 1.760386e+01 # Ow SPCE + 1716 572 3 0.423800 2.178874e+01 2.420714e+01 1.762968e+01 # Hw SPCE + 1717 573 3 0.423800 1.560477e+01 2.702754e+01 1.716266e+00 # Hw SPCE + 1718 573 4 -0.847600 1.525408e+01 2.737955e+01 2.584082e+00 # Ow SPCE + 1719 573 3 0.423800 1.428469e+01 2.760432e+01 2.485249e+00 # Hw SPCE + 1720 574 3 0.423800 7.381621e+00 2.092978e+01 1.938298e+01 # Hw SPCE + 1721 574 4 -0.847600 8.033211e+00 2.166093e+01 1.958511e+01 # Ow SPCE + 1722 574 3 0.423800 7.576710e+00 2.237804e+01 2.011176e+01 # Hw SPCE + 1723 575 3 0.423800 1.345344e+01 1.285413e+01 6.248165e+00 # Hw SPCE + 1724 575 4 -0.847600 1.335825e+01 1.348350e+01 7.019426e+00 # Ow SPCE + 1725 575 3 0.423800 1.239316e+01 1.371343e+01 7.144852e+00 # Hw SPCE + 1726 576 3 0.423800 1.684996e+01 1.496546e+00 2.112863e+01 # Hw SPCE + 1727 576 4 -0.847600 1.612315e+01 1.500121e+00 2.044180e+01 # Ow SPCE + 1728 576 3 0.423800 1.523334e+01 1.502605e+00 2.089813e+01 # Hw SPCE + 1729 577 3 0.423800 1.259795e+01 6.059961e+00 1.028903e+01 # Hw SPCE + 1730 577 4 -0.847600 1.265203e+01 6.809136e+00 1.094919e+01 # Ow SPCE + 1731 577 3 0.423800 1.210535e+01 6.583051e+00 1.175544e+01 # Hw SPCE + 1732 578 3 0.423800 1.175266e+01 1.642499e+01 1.504706e+00 # Hw SPCE + 1733 578 4 -0.847600 1.124046e+01 1.563939e+01 1.851816e+00 # Ow SPCE + 1734 578 3 0.423800 1.171187e+01 1.479512e+01 1.596895e+00 # Hw SPCE + 1735 579 3 0.423800 1.964008e+01 1.500636e+01 2.214316e+01 # Hw SPCE + 1736 579 4 -0.847600 2.038415e+01 1.503982e+01 2.281043e+01 # Ow SPCE + 1737 579 3 0.423800 2.013831e+01 1.449401e+01 2.361146e+01 # Hw SPCE + 1738 580 3 0.423800 6.359780e+00 1.494462e+00 9.725939e+00 # Hw SPCE + 1739 580 4 -0.847600 5.623160e+00 2.122431e+00 9.474851e+00 # Ow SPCE + 1740 580 3 0.423800 5.796855e+00 3.019459e+00 9.881263e+00 # Hw SPCE + 1741 581 3 0.423800 2.339449e+01 2.716322e+01 4.184562e+00 # Hw SPCE + 1742 581 4 -0.847600 2.365407e+01 2.624102e+01 4.471228e+00 # Ow SPCE + 1743 581 3 0.423800 2.284652e+01 2.575711e+01 4.808419e+00 # Hw SPCE + 1744 582 3 0.423800 2.817273e+00 2.461806e+01 5.932450e+00 # Hw SPCE + 1745 582 4 -0.847600 2.010189e+00 2.426140e+01 6.402994e+00 # Ow SPCE + 1746 582 3 0.423800 1.499435e+00 2.366530e+01 5.783477e+00 # Hw SPCE + 1747 583 3 0.423800 1.234255e+01 1.396176e+01 2.037507e+01 # Hw SPCE + 1748 583 4 -0.847600 1.153188e+01 1.453863e+01 2.027487e+01 # Ow SPCE + 1749 583 3 0.423800 1.071536e+01 1.396252e+01 2.023761e+01 # Hw SPCE + 1750 584 3 0.423800 2.810909e+00 2.179238e+01 7.310922e+00 # Hw SPCE + 1751 584 4 -0.847600 3.683406e+00 2.228090e+01 7.320812e+00 # Ow SPCE + 1752 584 3 0.423800 4.405822e+00 2.166653e+01 7.638090e+00 # Hw SPCE + 1753 585 3 0.423800 8.448996e+00 2.068506e+01 1.886024e+00 # Hw SPCE + 1754 585 4 -0.847600 8.120115e+00 2.158805e+01 1.609529e+00 # Ow SPCE + 1755 585 3 0.423800 8.825993e+00 2.227138e+01 1.796065e+00 # Hw SPCE + 1756 586 3 0.423800 1.552035e+01 1.189869e+01 1.283899e+01 # Hw SPCE + 1757 586 4 -0.847600 1.524184e+01 1.098045e+01 1.255745e+01 # Ow SPCE + 1758 586 3 0.423800 1.602690e+01 1.036326e+01 1.260993e+01 # Hw SPCE + 1759 587 3 0.423800 1.037404e+01 1.680250e+01 1.410571e+01 # Hw SPCE + 1760 587 4 -0.847600 9.390321e+00 1.671053e+01 1.395132e+01 # Ow SPCE + 1761 587 3 0.423800 9.132024e+00 1.574640e+01 1.401253e+01 # Hw SPCE + 1762 588 3 0.423800 1.925143e+01 2.771036e+01 1.136823e+01 # Hw SPCE + 1763 588 4 -0.847600 1.825753e+01 2.762221e+01 1.143454e+01 # Ow SPCE + 1764 588 3 0.423800 1.797827e+01 2.770904e+01 1.239082e+01 # Hw SPCE + 1765 589 3 0.423800 5.368954e+00 1.319885e+01 2.246010e+01 # Hw SPCE + 1766 589 4 -0.847600 5.623630e+00 1.391457e+01 2.311039e+01 # Ow SPCE + 1767 589 3 0.423800 4.872485e+00 1.456903e+01 2.319682e+01 # Hw SPCE + 1768 590 3 0.423800 2.502067e+01 2.248026e+01 2.658176e+01 # Hw SPCE + 1769 590 4 -0.847600 2.503552e+01 2.164180e+01 2.712652e+01 # Ow SPCE + 1770 590 3 0.423800 2.494862e+01 2.084997e+01 2.652199e+01 # Hw SPCE + 1771 591 3 0.423800 2.771210e+01 9.857496e+00 2.349471e+01 # Hw SPCE + 1772 591 4 -0.847600 2.758172e+01 1.077731e+01 2.312465e+01 # Ow SPCE + 1773 591 3 0.423800 2.770545e+01 1.075806e+01 2.213252e+01 # Hw SPCE + 1774 592 3 0.423800 2.236208e+01 1.289022e+01 1.568659e+01 # Hw SPCE + 1775 592 4 -0.847600 2.242230e+01 1.193201e+01 1.596625e+01 # Ow SPCE + 1776 592 3 0.423800 2.300802e+01 1.185651e+01 1.677324e+01 # Hw SPCE + 1777 593 3 0.423800 1.988201e+01 1.279194e+01 1.687017e+01 # Hw SPCE + 1778 593 4 -0.847600 2.021378e+01 1.300179e+01 1.778990e+01 # Ow SPCE + 1779 593 3 0.423800 2.066551e+01 1.219616e+01 1.817317e+01 # Hw SPCE + 1780 594 3 0.423800 1.468952e+01 2.770673e+01 5.255360e+00 # Hw SPCE + 1781 594 4 -0.847600 1.548366e+01 2.712680e+01 5.437112e+00 # Ow SPCE + 1782 594 3 0.423800 1.628119e+01 2.770158e+01 5.620343e+00 # Hw SPCE + 1783 595 3 0.423800 8.562539e+00 2.043599e+01 4.622579e+00 # Hw SPCE + 1784 595 4 -0.847600 8.510816e+00 2.140691e+01 4.856324e+00 # Ow SPCE + 1785 595 3 0.423800 7.721353e+00 2.181791e+01 4.400437e+00 # Hw SPCE + 1786 596 3 0.423800 2.770600e+01 1.600690e+01 2.686389e+01 # Hw SPCE + 1787 596 4 -0.847600 2.714850e+01 1.666860e+01 2.736525e+01 # Ow SPCE + 1788 596 3 0.423800 2.770517e+01 1.746675e+01 2.759565e+01 # Hw SPCE + 1789 597 3 0.423800 1.659849e+01 2.708928e+01 1.606821e+01 # Hw SPCE + 1790 597 4 -0.847600 1.561098e+01 2.693173e+01 1.606789e+01 # Ow SPCE + 1791 597 3 0.423800 1.515025e+01 2.770484e+01 1.563196e+01 # Hw SPCE + 1792 598 3 0.423800 2.769724e+01 2.030543e+01 2.142814e+01 # Hw SPCE + 1793 598 4 -0.847600 2.694008e+01 2.095316e+01 2.151277e+01 # Ow SPCE + 1794 598 3 0.423800 2.730269e+01 2.188246e+01 2.158290e+01 # Hw SPCE + 1795 599 3 0.423800 8.916687e+00 5.895426e+00 1.772221e+01 # Hw SPCE + 1796 599 4 -0.847600 9.042735e+00 5.158155e+00 1.705847e+01 # Ow SPCE + 1797 599 3 0.423800 9.690399e+00 5.450297e+00 1.635478e+01 # Hw SPCE + 1798 600 3 0.423800 1.753578e+01 1.707234e+01 2.389138e+01 # Hw SPCE + 1799 600 4 -0.847600 1.803190e+01 1.621348e+01 2.401877e+01 # Ow SPCE + 1800 600 3 0.423800 1.745017e+01 1.544840e+01 2.374267e+01 # Hw SPCE + +Bonds + + 1 1 2 1 # Ow-Hw + 2 1 3 2 # Ow-Hw + 3 1 5 4 # Ow-Hw + 4 1 6 5 # Ow-Hw + 5 1 8 7 # Ow-Hw + 6 1 9 8 # Ow-Hw + 7 1 11 10 # Ow-Hw + 8 1 12 11 # Ow-Hw + 9 1 14 13 # Ow-Hw + 10 1 15 14 # Ow-Hw + 11 1 17 16 # Ow-Hw + 12 1 18 17 # Ow-Hw + 13 1 20 19 # Ow-Hw + 14 1 21 20 # Ow-Hw + 15 1 23 22 # Ow-Hw + 16 1 24 23 # Ow-Hw + 17 1 26 25 # Ow-Hw + 18 1 27 26 # Ow-Hw + 19 1 29 28 # Ow-Hw + 20 1 30 29 # Ow-Hw + 21 1 32 31 # Ow-Hw + 22 1 33 32 # Ow-Hw + 23 1 35 34 # Ow-Hw + 24 1 36 35 # Ow-Hw + 25 1 38 37 # Ow-Hw + 26 1 39 38 # Ow-Hw + 27 1 41 40 # Ow-Hw + 28 1 42 41 # Ow-Hw + 29 1 44 43 # Ow-Hw + 30 1 45 44 # Ow-Hw + 31 1 47 46 # Ow-Hw + 32 1 48 47 # Ow-Hw + 33 1 50 49 # Ow-Hw + 34 1 51 50 # Ow-Hw + 35 1 53 52 # Ow-Hw + 36 1 54 53 # Ow-Hw + 37 1 56 55 # Ow-Hw + 38 1 57 56 # Ow-Hw + 39 1 59 58 # Ow-Hw + 40 1 60 59 # Ow-Hw + 41 1 62 61 # Ow-Hw + 42 1 63 62 # Ow-Hw + 43 1 65 64 # Ow-Hw + 44 1 66 65 # Ow-Hw + 45 1 68 67 # Ow-Hw + 46 1 69 68 # Ow-Hw + 47 1 71 70 # Ow-Hw + 48 1 72 71 # Ow-Hw + 49 1 74 73 # Ow-Hw + 50 1 75 74 # Ow-Hw + 51 1 77 76 # Ow-Hw + 52 1 78 77 # Ow-Hw + 53 1 80 79 # Ow-Hw + 54 1 81 80 # Ow-Hw + 55 1 83 82 # Ow-Hw + 56 1 84 83 # Ow-Hw + 57 1 86 85 # Ow-Hw + 58 1 87 86 # Ow-Hw + 59 1 89 88 # Ow-Hw + 60 1 90 89 # Ow-Hw + 61 1 92 91 # Ow-Hw + 62 1 93 92 # Ow-Hw + 63 1 95 94 # Ow-Hw + 64 1 96 95 # Ow-Hw + 65 1 98 97 # Ow-Hw + 66 1 99 98 # Ow-Hw + 67 1 101 100 # Ow-Hw + 68 1 102 101 # Ow-Hw + 69 1 104 103 # Ow-Hw + 70 1 105 104 # Ow-Hw + 71 1 107 106 # Ow-Hw + 72 1 108 107 # Ow-Hw + 73 1 110 109 # Ow-Hw + 74 1 111 110 # Ow-Hw + 75 1 113 112 # Ow-Hw + 76 1 114 113 # Ow-Hw + 77 1 116 115 # Ow-Hw + 78 1 117 116 # Ow-Hw + 79 1 119 118 # Ow-Hw + 80 1 120 119 # Ow-Hw + 81 1 122 121 # Ow-Hw + 82 1 123 122 # Ow-Hw + 83 1 125 124 # Ow-Hw + 84 1 126 125 # Ow-Hw + 85 1 128 127 # Ow-Hw + 86 1 129 128 # Ow-Hw + 87 1 131 130 # Ow-Hw + 88 1 132 131 # Ow-Hw + 89 1 134 133 # Ow-Hw + 90 1 135 134 # Ow-Hw + 91 1 137 136 # Ow-Hw + 92 1 138 137 # Ow-Hw + 93 1 140 139 # Ow-Hw + 94 1 141 140 # Ow-Hw + 95 1 143 142 # Ow-Hw + 96 1 144 143 # Ow-Hw + 97 1 146 145 # Ow-Hw + 98 1 147 146 # Ow-Hw + 99 1 149 148 # Ow-Hw + 100 1 150 149 # Ow-Hw + 101 1 152 151 # Ow-Hw + 102 1 153 152 # Ow-Hw + 103 1 155 154 # Ow-Hw + 104 1 156 155 # Ow-Hw + 105 1 158 157 # Ow-Hw + 106 1 159 158 # Ow-Hw + 107 1 161 160 # Ow-Hw + 108 1 162 161 # Ow-Hw + 109 1 164 163 # Ow-Hw + 110 1 165 164 # Ow-Hw + 111 1 167 166 # Ow-Hw + 112 1 168 167 # Ow-Hw + 113 1 170 169 # Ow-Hw + 114 1 171 170 # Ow-Hw + 115 1 173 172 # Ow-Hw + 116 1 174 173 # Ow-Hw + 117 1 176 175 # Ow-Hw + 118 1 177 176 # Ow-Hw + 119 1 179 178 # Ow-Hw + 120 1 180 179 # Ow-Hw + 121 1 182 181 # Ow-Hw + 122 1 183 182 # Ow-Hw + 123 1 185 184 # Ow-Hw + 124 1 186 185 # Ow-Hw + 125 1 188 187 # Ow-Hw + 126 1 189 188 # Ow-Hw + 127 1 191 190 # Ow-Hw + 128 1 192 191 # Ow-Hw + 129 1 194 193 # Ow-Hw + 130 1 195 194 # Ow-Hw + 131 1 197 196 # Ow-Hw + 132 1 198 197 # Ow-Hw + 133 1 200 199 # Ow-Hw + 134 1 201 200 # Ow-Hw + 135 1 203 202 # Ow-Hw + 136 1 204 203 # Ow-Hw + 137 1 206 205 # Ow-Hw + 138 1 207 206 # Ow-Hw + 139 1 209 208 # Ow-Hw + 140 1 210 209 # Ow-Hw + 141 1 212 211 # Ow-Hw + 142 1 213 212 # Ow-Hw + 143 1 215 214 # Ow-Hw + 144 1 216 215 # Ow-Hw + 145 1 218 217 # Ow-Hw + 146 1 219 218 # Ow-Hw + 147 1 221 220 # Ow-Hw + 148 1 222 221 # Ow-Hw + 149 1 224 223 # Ow-Hw + 150 1 225 224 # Ow-Hw + 151 1 227 226 # Ow-Hw + 152 1 228 227 # Ow-Hw + 153 1 230 229 # Ow-Hw + 154 1 231 230 # Ow-Hw + 155 1 233 232 # Ow-Hw + 156 1 234 233 # Ow-Hw + 157 1 236 235 # Ow-Hw + 158 1 237 236 # Ow-Hw + 159 1 239 238 # Ow-Hw + 160 1 240 239 # Ow-Hw + 161 1 242 241 # Ow-Hw + 162 1 243 242 # Ow-Hw + 163 1 245 244 # Ow-Hw + 164 1 246 245 # Ow-Hw + 165 1 248 247 # Ow-Hw + 166 1 249 248 # Ow-Hw + 167 1 251 250 # Ow-Hw + 168 1 252 251 # Ow-Hw + 169 1 254 253 # Ow-Hw + 170 1 255 254 # Ow-Hw + 171 1 257 256 # Ow-Hw + 172 1 258 257 # Ow-Hw + 173 1 260 259 # Ow-Hw + 174 1 261 260 # Ow-Hw + 175 1 263 262 # Ow-Hw + 176 1 264 263 # Ow-Hw + 177 1 266 265 # Ow-Hw + 178 1 267 266 # Ow-Hw + 179 1 269 268 # Ow-Hw + 180 1 270 269 # Ow-Hw + 181 1 272 271 # Ow-Hw + 182 1 273 272 # Ow-Hw + 183 1 275 274 # Ow-Hw + 184 1 276 275 # Ow-Hw + 185 1 278 277 # Ow-Hw + 186 1 279 278 # Ow-Hw + 187 1 281 280 # Ow-Hw + 188 1 282 281 # Ow-Hw + 189 1 284 283 # Ow-Hw + 190 1 285 284 # Ow-Hw + 191 1 287 286 # Ow-Hw + 192 1 288 287 # Ow-Hw + 193 1 290 289 # Ow-Hw + 194 1 291 290 # Ow-Hw + 195 1 293 292 # Ow-Hw + 196 1 294 293 # Ow-Hw + 197 1 296 295 # Ow-Hw + 198 1 297 296 # Ow-Hw + 199 1 299 298 # Ow-Hw + 200 1 300 299 # Ow-Hw + 201 1 302 301 # Ow-Hw + 202 1 303 302 # Ow-Hw + 203 1 305 304 # Ow-Hw + 204 1 306 305 # Ow-Hw + 205 1 308 307 # Ow-Hw + 206 1 309 308 # Ow-Hw + 207 1 311 310 # Ow-Hw + 208 1 312 311 # Ow-Hw + 209 1 314 313 # Ow-Hw + 210 1 315 314 # Ow-Hw + 211 1 317 316 # Ow-Hw + 212 1 318 317 # Ow-Hw + 213 1 320 319 # Ow-Hw + 214 1 321 320 # Ow-Hw + 215 1 323 322 # Ow-Hw + 216 1 324 323 # Ow-Hw + 217 1 326 325 # Ow-Hw + 218 1 327 326 # Ow-Hw + 219 1 329 328 # Ow-Hw + 220 1 330 329 # Ow-Hw + 221 1 332 331 # Ow-Hw + 222 1 333 332 # Ow-Hw + 223 1 335 334 # Ow-Hw + 224 1 336 335 # Ow-Hw + 225 1 338 337 # Ow-Hw + 226 1 339 338 # Ow-Hw + 227 1 341 340 # Ow-Hw + 228 1 342 341 # Ow-Hw + 229 1 344 343 # Ow-Hw + 230 1 345 344 # Ow-Hw + 231 1 347 346 # Ow-Hw + 232 1 348 347 # Ow-Hw + 233 1 350 349 # Ow-Hw + 234 1 351 350 # Ow-Hw + 235 1 353 352 # Ow-Hw + 236 1 354 353 # Ow-Hw + 237 1 356 355 # Ow-Hw + 238 1 357 356 # Ow-Hw + 239 1 359 358 # Ow-Hw + 240 1 360 359 # Ow-Hw + 241 1 362 361 # Ow-Hw + 242 1 363 362 # Ow-Hw + 243 1 365 364 # Ow-Hw + 244 1 366 365 # Ow-Hw + 245 1 368 367 # Ow-Hw + 246 1 369 368 # Ow-Hw + 247 1 371 370 # Ow-Hw + 248 1 372 371 # Ow-Hw + 249 1 374 373 # Ow-Hw + 250 1 375 374 # Ow-Hw + 251 1 377 376 # Ow-Hw + 252 1 378 377 # Ow-Hw + 253 1 380 379 # Ow-Hw + 254 1 381 380 # Ow-Hw + 255 1 383 382 # Ow-Hw + 256 1 384 383 # Ow-Hw + 257 1 386 385 # Ow-Hw + 258 1 387 386 # Ow-Hw + 259 1 389 388 # Ow-Hw + 260 1 390 389 # Ow-Hw + 261 1 392 391 # Ow-Hw + 262 1 393 392 # Ow-Hw + 263 1 395 394 # Ow-Hw + 264 1 396 395 # Ow-Hw + 265 1 398 397 # Ow-Hw + 266 1 399 398 # Ow-Hw + 267 1 401 400 # Ow-Hw + 268 1 402 401 # Ow-Hw + 269 1 404 403 # Ow-Hw + 270 1 405 404 # Ow-Hw + 271 1 407 406 # Ow-Hw + 272 1 408 407 # Ow-Hw + 273 1 410 409 # Ow-Hw + 274 1 411 410 # Ow-Hw + 275 1 413 412 # Ow-Hw + 276 1 414 413 # Ow-Hw + 277 1 416 415 # Ow-Hw + 278 1 417 416 # Ow-Hw + 279 1 419 418 # Ow-Hw + 280 1 420 419 # Ow-Hw + 281 1 422 421 # Ow-Hw + 282 1 423 422 # Ow-Hw + 283 1 425 424 # Ow-Hw + 284 1 426 425 # Ow-Hw + 285 1 428 427 # Ow-Hw + 286 1 429 428 # Ow-Hw + 287 1 431 430 # Ow-Hw + 288 1 432 431 # Ow-Hw + 289 1 434 433 # Ow-Hw + 290 1 435 434 # Ow-Hw + 291 1 437 436 # Ow-Hw + 292 1 438 437 # Ow-Hw + 293 1 440 439 # Ow-Hw + 294 1 441 440 # Ow-Hw + 295 1 443 442 # Ow-Hw + 296 1 444 443 # Ow-Hw + 297 1 446 445 # Ow-Hw + 298 1 447 446 # Ow-Hw + 299 1 449 448 # Ow-Hw + 300 1 450 449 # Ow-Hw + 301 1 452 451 # Ow-Hw + 302 1 453 452 # Ow-Hw + 303 1 455 454 # Ow-Hw + 304 1 456 455 # Ow-Hw + 305 1 458 457 # Ow-Hw + 306 1 459 458 # Ow-Hw + 307 1 461 460 # Ow-Hw + 308 1 462 461 # Ow-Hw + 309 1 464 463 # Ow-Hw + 310 1 465 464 # Ow-Hw + 311 1 467 466 # Ow-Hw + 312 1 468 467 # Ow-Hw + 313 1 470 469 # Ow-Hw + 314 1 471 470 # Ow-Hw + 315 1 473 472 # Ow-Hw + 316 1 474 473 # Ow-Hw + 317 1 476 475 # Ow-Hw + 318 1 477 476 # Ow-Hw + 319 1 479 478 # Ow-Hw + 320 1 480 479 # Ow-Hw + 321 1 482 481 # Ow-Hw + 322 1 483 482 # Ow-Hw + 323 1 485 484 # Ow-Hw + 324 1 486 485 # Ow-Hw + 325 1 488 487 # Ow-Hw + 326 1 489 488 # Ow-Hw + 327 1 491 490 # Ow-Hw + 328 1 492 491 # Ow-Hw + 329 1 494 493 # Ow-Hw + 330 1 495 494 # Ow-Hw + 331 1 497 496 # Ow-Hw + 332 1 498 497 # Ow-Hw + 333 1 500 499 # Ow-Hw + 334 1 501 500 # Ow-Hw + 335 1 503 502 # Ow-Hw + 336 1 504 503 # Ow-Hw + 337 1 506 505 # Ow-Hw + 338 1 507 506 # Ow-Hw + 339 1 509 508 # Ow-Hw + 340 1 510 509 # Ow-Hw + 341 1 512 511 # Ow-Hw + 342 1 513 512 # Ow-Hw + 343 1 515 514 # Ow-Hw + 344 1 516 515 # Ow-Hw + 345 1 518 517 # Ow-Hw + 346 1 519 518 # Ow-Hw + 347 1 521 520 # Ow-Hw + 348 1 522 521 # Ow-Hw + 349 1 524 523 # Ow-Hw + 350 1 525 524 # Ow-Hw + 351 1 527 526 # Ow-Hw + 352 1 528 527 # Ow-Hw + 353 1 530 529 # Ow-Hw + 354 1 531 530 # Ow-Hw + 355 1 533 532 # Ow-Hw + 356 1 534 533 # Ow-Hw + 357 1 536 535 # Ow-Hw + 358 1 537 536 # Ow-Hw + 359 1 539 538 # Ow-Hw + 360 1 540 539 # Ow-Hw + 361 1 542 541 # Ow-Hw + 362 1 543 542 # Ow-Hw + 363 1 545 544 # Ow-Hw + 364 1 546 545 # Ow-Hw + 365 1 548 547 # Ow-Hw + 366 1 549 548 # Ow-Hw + 367 1 551 550 # Ow-Hw + 368 1 552 551 # Ow-Hw + 369 1 554 553 # Ow-Hw + 370 1 555 554 # Ow-Hw + 371 1 557 556 # Ow-Hw + 372 1 558 557 # Ow-Hw + 373 1 560 559 # Ow-Hw + 374 1 561 560 # Ow-Hw + 375 1 563 562 # Ow-Hw + 376 1 564 563 # Ow-Hw + 377 1 566 565 # Ow-Hw + 378 1 567 566 # Ow-Hw + 379 1 569 568 # Ow-Hw + 380 1 570 569 # Ow-Hw + 381 1 572 571 # Ow-Hw + 382 1 573 572 # Ow-Hw + 383 1 575 574 # Ow-Hw + 384 1 576 575 # Ow-Hw + 385 1 578 577 # Ow-Hw + 386 1 579 578 # Ow-Hw + 387 1 581 580 # Ow-Hw + 388 1 582 581 # Ow-Hw + 389 1 584 583 # Ow-Hw + 390 1 585 584 # Ow-Hw + 391 1 587 586 # Ow-Hw + 392 1 588 587 # Ow-Hw + 393 1 590 589 # Ow-Hw + 394 1 591 590 # Ow-Hw + 395 1 593 592 # Ow-Hw + 396 1 594 593 # Ow-Hw + 397 1 596 595 # Ow-Hw + 398 1 597 596 # Ow-Hw + 399 1 599 598 # Ow-Hw + 400 1 600 599 # Ow-Hw + 401 1 602 601 # Ow-Hw + 402 1 603 602 # Ow-Hw + 403 1 605 604 # Ow-Hw + 404 1 606 605 # Ow-Hw + 405 1 608 607 # Ow-Hw + 406 1 609 608 # Ow-Hw + 407 1 611 610 # Ow-Hw + 408 1 612 611 # Ow-Hw + 409 1 614 613 # Ow-Hw + 410 1 615 614 # Ow-Hw + 411 1 617 616 # Ow-Hw + 412 1 618 617 # Ow-Hw + 413 1 620 619 # Ow-Hw + 414 1 621 620 # Ow-Hw + 415 1 623 622 # Ow-Hw + 416 1 624 623 # Ow-Hw + 417 1 626 625 # Ow-Hw + 418 1 627 626 # Ow-Hw + 419 1 629 628 # Ow-Hw + 420 1 630 629 # Ow-Hw + 421 1 632 631 # Ow-Hw + 422 1 633 632 # Ow-Hw + 423 1 635 634 # Ow-Hw + 424 1 636 635 # Ow-Hw + 425 1 638 637 # Ow-Hw + 426 1 639 638 # Ow-Hw + 427 1 641 640 # Ow-Hw + 428 1 642 641 # Ow-Hw + 429 1 644 643 # Ow-Hw + 430 1 645 644 # Ow-Hw + 431 1 647 646 # Ow-Hw + 432 1 648 647 # Ow-Hw + 433 1 650 649 # Ow-Hw + 434 1 651 650 # Ow-Hw + 435 1 653 652 # Ow-Hw + 436 1 654 653 # Ow-Hw + 437 1 656 655 # Ow-Hw + 438 1 657 656 # Ow-Hw + 439 1 659 658 # Ow-Hw + 440 1 660 659 # Ow-Hw + 441 1 662 661 # Ow-Hw + 442 1 663 662 # Ow-Hw + 443 1 665 664 # Ow-Hw + 444 1 666 665 # Ow-Hw + 445 1 668 667 # Ow-Hw + 446 1 669 668 # Ow-Hw + 447 1 671 670 # Ow-Hw + 448 1 672 671 # Ow-Hw + 449 1 674 673 # Ow-Hw + 450 1 675 674 # Ow-Hw + 451 1 677 676 # Ow-Hw + 452 1 678 677 # Ow-Hw + 453 1 680 679 # Ow-Hw + 454 1 681 680 # Ow-Hw + 455 1 683 682 # Ow-Hw + 456 1 684 683 # Ow-Hw + 457 1 686 685 # Ow-Hw + 458 1 687 686 # Ow-Hw + 459 1 689 688 # Ow-Hw + 460 1 690 689 # Ow-Hw + 461 1 692 691 # Ow-Hw + 462 1 693 692 # Ow-Hw + 463 1 695 694 # Ow-Hw + 464 1 696 695 # Ow-Hw + 465 1 698 697 # Ow-Hw + 466 1 699 698 # Ow-Hw + 467 1 701 700 # Ow-Hw + 468 1 702 701 # Ow-Hw + 469 1 704 703 # Ow-Hw + 470 1 705 704 # Ow-Hw + 471 1 707 706 # Ow-Hw + 472 1 708 707 # Ow-Hw + 473 1 710 709 # Ow-Hw + 474 1 711 710 # Ow-Hw + 475 1 713 712 # Ow-Hw + 476 1 714 713 # Ow-Hw + 477 1 716 715 # Ow-Hw + 478 1 717 716 # Ow-Hw + 479 1 719 718 # Ow-Hw + 480 1 720 719 # Ow-Hw + 481 1 722 721 # Ow-Hw + 482 1 723 722 # Ow-Hw + 483 1 725 724 # Ow-Hw + 484 1 726 725 # Ow-Hw + 485 1 728 727 # Ow-Hw + 486 1 729 728 # Ow-Hw + 487 1 731 730 # Ow-Hw + 488 1 732 731 # Ow-Hw + 489 1 734 733 # Ow-Hw + 490 1 735 734 # Ow-Hw + 491 1 737 736 # Ow-Hw + 492 1 738 737 # Ow-Hw + 493 1 740 739 # Ow-Hw + 494 1 741 740 # Ow-Hw + 495 1 743 742 # Ow-Hw + 496 1 744 743 # Ow-Hw + 497 1 746 745 # Ow-Hw + 498 1 747 746 # Ow-Hw + 499 1 749 748 # Ow-Hw + 500 1 750 749 # Ow-Hw + 501 1 752 751 # Ow-Hw + 502 1 753 752 # Ow-Hw + 503 1 755 754 # Ow-Hw + 504 1 756 755 # Ow-Hw + 505 1 758 757 # Ow-Hw + 506 1 759 758 # Ow-Hw + 507 1 761 760 # Ow-Hw + 508 1 762 761 # Ow-Hw + 509 1 764 763 # Ow-Hw + 510 1 765 764 # Ow-Hw + 511 1 767 766 # Ow-Hw + 512 1 768 767 # Ow-Hw + 513 1 770 769 # Ow-Hw + 514 1 771 770 # Ow-Hw + 515 1 773 772 # Ow-Hw + 516 1 774 773 # Ow-Hw + 517 1 776 775 # Ow-Hw + 518 1 777 776 # Ow-Hw + 519 1 779 778 # Ow-Hw + 520 1 780 779 # Ow-Hw + 521 1 782 781 # Ow-Hw + 522 1 783 782 # Ow-Hw + 523 1 785 784 # Ow-Hw + 524 1 786 785 # Ow-Hw + 525 1 788 787 # Ow-Hw + 526 1 789 788 # Ow-Hw + 527 1 791 790 # Ow-Hw + 528 1 792 791 # Ow-Hw + 529 1 794 793 # Ow-Hw + 530 1 795 794 # Ow-Hw + 531 1 797 796 # Ow-Hw + 532 1 798 797 # Ow-Hw + 533 1 800 799 # Ow-Hw + 534 1 801 800 # Ow-Hw + 535 1 803 802 # Ow-Hw + 536 1 804 803 # Ow-Hw + 537 1 806 805 # Ow-Hw + 538 1 807 806 # Ow-Hw + 539 1 809 808 # Ow-Hw + 540 1 810 809 # Ow-Hw + 541 1 812 811 # Ow-Hw + 542 1 813 812 # Ow-Hw + 543 1 815 814 # Ow-Hw + 544 1 816 815 # Ow-Hw + 545 1 818 817 # Ow-Hw + 546 1 819 818 # Ow-Hw + 547 1 821 820 # Ow-Hw + 548 1 822 821 # Ow-Hw + 549 1 824 823 # Ow-Hw + 550 1 825 824 # Ow-Hw + 551 1 827 826 # Ow-Hw + 552 1 828 827 # Ow-Hw + 553 1 830 829 # Ow-Hw + 554 1 831 830 # Ow-Hw + 555 1 833 832 # Ow-Hw + 556 1 834 833 # Ow-Hw + 557 1 836 835 # Ow-Hw + 558 1 837 836 # Ow-Hw + 559 1 839 838 # Ow-Hw + 560 1 840 839 # Ow-Hw + 561 1 842 841 # Ow-Hw + 562 1 843 842 # Ow-Hw + 563 1 845 844 # Ow-Hw + 564 1 846 845 # Ow-Hw + 565 1 848 847 # Ow-Hw + 566 1 849 848 # Ow-Hw + 567 1 851 850 # Ow-Hw + 568 1 852 851 # Ow-Hw + 569 1 854 853 # Ow-Hw + 570 1 855 854 # Ow-Hw + 571 1 857 856 # Ow-Hw + 572 1 858 857 # Ow-Hw + 573 1 860 859 # Ow-Hw + 574 1 861 860 # Ow-Hw + 575 1 863 862 # Ow-Hw + 576 1 864 863 # Ow-Hw + 577 1 866 865 # Ow-Hw + 578 1 867 866 # Ow-Hw + 579 1 869 868 # Ow-Hw + 580 1 870 869 # Ow-Hw + 581 1 872 871 # Ow-Hw + 582 1 873 872 # Ow-Hw + 583 1 875 874 # Ow-Hw + 584 1 876 875 # Ow-Hw + 585 1 878 877 # Ow-Hw + 586 1 879 878 # Ow-Hw + 587 1 881 880 # Ow-Hw + 588 1 882 881 # Ow-Hw + 589 1 884 883 # Ow-Hw + 590 1 885 884 # Ow-Hw + 591 1 887 886 # Ow-Hw + 592 1 888 887 # Ow-Hw + 593 1 890 889 # Ow-Hw + 594 1 891 890 # Ow-Hw + 595 1 893 892 # Ow-Hw + 596 1 894 893 # Ow-Hw + 597 1 896 895 # Ow-Hw + 598 1 897 896 # Ow-Hw + 599 1 899 898 # Ow-Hw + 600 1 900 899 # Ow-Hw + 601 1 902 901 # Ow-Hw + 602 1 903 902 # Ow-Hw + 603 1 905 904 # Ow-Hw + 604 1 906 905 # Ow-Hw + 605 1 908 907 # Ow-Hw + 606 1 909 908 # Ow-Hw + 607 1 911 910 # Ow-Hw + 608 1 912 911 # Ow-Hw + 609 1 914 913 # Ow-Hw + 610 1 915 914 # Ow-Hw + 611 1 917 916 # Ow-Hw + 612 1 918 917 # Ow-Hw + 613 1 920 919 # Ow-Hw + 614 1 921 920 # Ow-Hw + 615 1 923 922 # Ow-Hw + 616 1 924 923 # Ow-Hw + 617 1 926 925 # Ow-Hw + 618 1 927 926 # Ow-Hw + 619 1 929 928 # Ow-Hw + 620 1 930 929 # Ow-Hw + 621 1 932 931 # Ow-Hw + 622 1 933 932 # Ow-Hw + 623 1 935 934 # Ow-Hw + 624 1 936 935 # Ow-Hw + 625 1 938 937 # Ow-Hw + 626 1 939 938 # Ow-Hw + 627 1 941 940 # Ow-Hw + 628 1 942 941 # Ow-Hw + 629 1 944 943 # Ow-Hw + 630 1 945 944 # Ow-Hw + 631 1 947 946 # Ow-Hw + 632 1 948 947 # Ow-Hw + 633 1 950 949 # Ow-Hw + 634 1 951 950 # Ow-Hw + 635 1 953 952 # Ow-Hw + 636 1 954 953 # Ow-Hw + 637 1 956 955 # Ow-Hw + 638 1 957 956 # Ow-Hw + 639 1 959 958 # Ow-Hw + 640 1 960 959 # Ow-Hw + 641 1 962 961 # Ow-Hw + 642 1 963 962 # Ow-Hw + 643 1 965 964 # Ow-Hw + 644 1 966 965 # Ow-Hw + 645 1 968 967 # Ow-Hw + 646 1 969 968 # Ow-Hw + 647 1 971 970 # Ow-Hw + 648 1 972 971 # Ow-Hw + 649 1 974 973 # Ow-Hw + 650 1 975 974 # Ow-Hw + 651 1 977 976 # Ow-Hw + 652 1 978 977 # Ow-Hw + 653 1 980 979 # Ow-Hw + 654 1 981 980 # Ow-Hw + 655 1 983 982 # Ow-Hw + 656 1 984 983 # Ow-Hw + 657 1 986 985 # Ow-Hw + 658 1 987 986 # Ow-Hw + 659 1 989 988 # Ow-Hw + 660 1 990 989 # Ow-Hw + 661 1 992 991 # Ow-Hw + 662 1 993 992 # Ow-Hw + 663 1 995 994 # Ow-Hw + 664 1 996 995 # Ow-Hw + 665 1 998 997 # Ow-Hw + 666 1 999 998 # Ow-Hw + 667 1 1001 1000 # Ow-Hw + 668 1 1002 1001 # Ow-Hw + 669 1 1004 1003 # Ow-Hw + 670 1 1005 1004 # Ow-Hw + 671 1 1007 1006 # Ow-Hw + 672 1 1008 1007 # Ow-Hw + 673 1 1010 1009 # Ow-Hw + 674 1 1011 1010 # Ow-Hw + 675 1 1013 1012 # Ow-Hw + 676 1 1014 1013 # Ow-Hw + 677 1 1016 1015 # Ow-Hw + 678 1 1017 1016 # Ow-Hw + 679 1 1019 1018 # Ow-Hw + 680 1 1020 1019 # Ow-Hw + 681 1 1022 1021 # Ow-Hw + 682 1 1023 1022 # Ow-Hw + 683 1 1025 1024 # Ow-Hw + 684 1 1026 1025 # Ow-Hw + 685 1 1028 1027 # Ow-Hw + 686 1 1029 1028 # Ow-Hw + 687 1 1031 1030 # Ow-Hw + 688 1 1032 1031 # Ow-Hw + 689 1 1034 1033 # Ow-Hw + 690 1 1035 1034 # Ow-Hw + 691 1 1037 1036 # Ow-Hw + 692 1 1038 1037 # Ow-Hw + 693 1 1040 1039 # Ow-Hw + 694 1 1041 1040 # Ow-Hw + 695 1 1043 1042 # Ow-Hw + 696 1 1044 1043 # Ow-Hw + 697 1 1046 1045 # Ow-Hw + 698 1 1047 1046 # Ow-Hw + 699 1 1049 1048 # Ow-Hw + 700 1 1050 1049 # Ow-Hw + 701 1 1052 1051 # Ow-Hw + 702 1 1053 1052 # Ow-Hw + 703 1 1055 1054 # Ow-Hw + 704 1 1056 1055 # Ow-Hw + 705 1 1058 1057 # Ow-Hw + 706 1 1059 1058 # Ow-Hw + 707 1 1061 1060 # Ow-Hw + 708 1 1062 1061 # Ow-Hw + 709 1 1064 1063 # Ow-Hw + 710 1 1065 1064 # Ow-Hw + 711 1 1067 1066 # Ow-Hw + 712 1 1068 1067 # Ow-Hw + 713 1 1070 1069 # Ow-Hw + 714 1 1071 1070 # Ow-Hw + 715 1 1073 1072 # Ow-Hw + 716 1 1074 1073 # Ow-Hw + 717 1 1076 1075 # Ow-Hw + 718 1 1077 1076 # Ow-Hw + 719 1 1079 1078 # Ow-Hw + 720 1 1080 1079 # Ow-Hw + 721 1 1082 1081 # Ow-Hw + 722 1 1083 1082 # Ow-Hw + 723 1 1085 1084 # Ow-Hw + 724 1 1086 1085 # Ow-Hw + 725 1 1088 1087 # Ow-Hw + 726 1 1089 1088 # Ow-Hw + 727 1 1091 1090 # Ow-Hw + 728 1 1092 1091 # Ow-Hw + 729 1 1094 1093 # Ow-Hw + 730 1 1095 1094 # Ow-Hw + 731 1 1097 1096 # Ow-Hw + 732 1 1098 1097 # Ow-Hw + 733 1 1100 1099 # Ow-Hw + 734 1 1101 1100 # Ow-Hw + 735 1 1103 1102 # Ow-Hw + 736 1 1104 1103 # Ow-Hw + 737 1 1106 1105 # Ow-Hw + 738 1 1107 1106 # Ow-Hw + 739 1 1109 1108 # Ow-Hw + 740 1 1110 1109 # Ow-Hw + 741 1 1112 1111 # Ow-Hw + 742 1 1113 1112 # Ow-Hw + 743 1 1115 1114 # Ow-Hw + 744 1 1116 1115 # Ow-Hw + 745 1 1118 1117 # Ow-Hw + 746 1 1119 1118 # Ow-Hw + 747 1 1121 1120 # Ow-Hw + 748 1 1122 1121 # Ow-Hw + 749 1 1124 1123 # Ow-Hw + 750 1 1125 1124 # Ow-Hw + 751 1 1127 1126 # Ow-Hw + 752 1 1128 1127 # Ow-Hw + 753 1 1130 1129 # Ow-Hw + 754 1 1131 1130 # Ow-Hw + 755 1 1133 1132 # Ow-Hw + 756 1 1134 1133 # Ow-Hw + 757 1 1136 1135 # Ow-Hw + 758 1 1137 1136 # Ow-Hw + 759 1 1139 1138 # Ow-Hw + 760 1 1140 1139 # Ow-Hw + 761 1 1142 1141 # Ow-Hw + 762 1 1143 1142 # Ow-Hw + 763 1 1145 1144 # Ow-Hw + 764 1 1146 1145 # Ow-Hw + 765 1 1148 1147 # Ow-Hw + 766 1 1149 1148 # Ow-Hw + 767 1 1151 1150 # Ow-Hw + 768 1 1152 1151 # Ow-Hw + 769 1 1154 1153 # Ow-Hw + 770 1 1155 1154 # Ow-Hw + 771 1 1157 1156 # Ow-Hw + 772 1 1158 1157 # Ow-Hw + 773 1 1160 1159 # Ow-Hw + 774 1 1161 1160 # Ow-Hw + 775 1 1163 1162 # Ow-Hw + 776 1 1164 1163 # Ow-Hw + 777 1 1166 1165 # Ow-Hw + 778 1 1167 1166 # Ow-Hw + 779 1 1169 1168 # Ow-Hw + 780 1 1170 1169 # Ow-Hw + 781 1 1172 1171 # Ow-Hw + 782 1 1173 1172 # Ow-Hw + 783 1 1175 1174 # Ow-Hw + 784 1 1176 1175 # Ow-Hw + 785 1 1178 1177 # Ow-Hw + 786 1 1179 1178 # Ow-Hw + 787 1 1181 1180 # Ow-Hw + 788 1 1182 1181 # Ow-Hw + 789 1 1184 1183 # Ow-Hw + 790 1 1185 1184 # Ow-Hw + 791 1 1187 1186 # Ow-Hw + 792 1 1188 1187 # Ow-Hw + 793 1 1190 1189 # Ow-Hw + 794 1 1191 1190 # Ow-Hw + 795 1 1193 1192 # Ow-Hw + 796 1 1194 1193 # Ow-Hw + 797 1 1196 1195 # Ow-Hw + 798 1 1197 1196 # Ow-Hw + 799 1 1199 1198 # Ow-Hw + 800 1 1200 1199 # Ow-Hw + 801 1 1202 1201 # Ow-Hw + 802 1 1203 1202 # Ow-Hw + 803 1 1205 1204 # Ow-Hw + 804 1 1206 1205 # Ow-Hw + 805 1 1208 1207 # Ow-Hw + 806 1 1209 1208 # Ow-Hw + 807 1 1211 1210 # Ow-Hw + 808 1 1212 1211 # Ow-Hw + 809 1 1214 1213 # Ow-Hw + 810 1 1215 1214 # Ow-Hw + 811 1 1217 1216 # Ow-Hw + 812 1 1218 1217 # Ow-Hw + 813 1 1220 1219 # Ow-Hw + 814 1 1221 1220 # Ow-Hw + 815 1 1223 1222 # Ow-Hw + 816 1 1224 1223 # Ow-Hw + 817 1 1226 1225 # Ow-Hw + 818 1 1227 1226 # Ow-Hw + 819 1 1229 1228 # Ow-Hw + 820 1 1230 1229 # Ow-Hw + 821 1 1232 1231 # Ow-Hw + 822 1 1233 1232 # Ow-Hw + 823 1 1235 1234 # Ow-Hw + 824 1 1236 1235 # Ow-Hw + 825 1 1238 1237 # Ow-Hw + 826 1 1239 1238 # Ow-Hw + 827 1 1241 1240 # Ow-Hw + 828 1 1242 1241 # Ow-Hw + 829 1 1244 1243 # Ow-Hw + 830 1 1245 1244 # Ow-Hw + 831 1 1247 1246 # Ow-Hw + 832 1 1248 1247 # Ow-Hw + 833 1 1250 1249 # Ow-Hw + 834 1 1251 1250 # Ow-Hw + 835 1 1253 1252 # Ow-Hw + 836 1 1254 1253 # Ow-Hw + 837 1 1256 1255 # Ow-Hw + 838 1 1257 1256 # Ow-Hw + 839 1 1259 1258 # Ow-Hw + 840 1 1260 1259 # Ow-Hw + 841 1 1262 1261 # Ow-Hw + 842 1 1263 1262 # Ow-Hw + 843 1 1265 1264 # Ow-Hw + 844 1 1266 1265 # Ow-Hw + 845 1 1268 1267 # Ow-Hw + 846 1 1269 1268 # Ow-Hw + 847 1 1271 1270 # Ow-Hw + 848 1 1272 1271 # Ow-Hw + 849 1 1274 1273 # Ow-Hw + 850 1 1275 1274 # Ow-Hw + 851 1 1277 1276 # Ow-Hw + 852 1 1278 1277 # Ow-Hw + 853 1 1280 1279 # Ow-Hw + 854 1 1281 1280 # Ow-Hw + 855 1 1283 1282 # Ow-Hw + 856 1 1284 1283 # Ow-Hw + 857 1 1286 1285 # Ow-Hw + 858 1 1287 1286 # Ow-Hw + 859 1 1289 1288 # Ow-Hw + 860 1 1290 1289 # Ow-Hw + 861 1 1292 1291 # Ow-Hw + 862 1 1293 1292 # Ow-Hw + 863 1 1295 1294 # Ow-Hw + 864 1 1296 1295 # Ow-Hw + 865 1 1298 1297 # Ow-Hw + 866 1 1299 1298 # Ow-Hw + 867 1 1301 1300 # Ow-Hw + 868 1 1302 1301 # Ow-Hw + 869 1 1304 1303 # Ow-Hw + 870 1 1305 1304 # Ow-Hw + 871 1 1307 1306 # Ow-Hw + 872 1 1308 1307 # Ow-Hw + 873 1 1310 1309 # Ow-Hw + 874 1 1311 1310 # Ow-Hw + 875 1 1313 1312 # Ow-Hw + 876 1 1314 1313 # Ow-Hw + 877 1 1316 1315 # Ow-Hw + 878 1 1317 1316 # Ow-Hw + 879 1 1319 1318 # Ow-Hw + 880 1 1320 1319 # Ow-Hw + 881 1 1322 1321 # Ow-Hw + 882 1 1323 1322 # Ow-Hw + 883 1 1325 1324 # Ow-Hw + 884 1 1326 1325 # Ow-Hw + 885 1 1328 1327 # Ow-Hw + 886 1 1329 1328 # Ow-Hw + 887 1 1331 1330 # Ow-Hw + 888 1 1332 1331 # Ow-Hw + 889 1 1334 1333 # Ow-Hw + 890 1 1335 1334 # Ow-Hw + 891 1 1337 1336 # Ow-Hw + 892 1 1338 1337 # Ow-Hw + 893 1 1340 1339 # Ow-Hw + 894 1 1341 1340 # Ow-Hw + 895 1 1343 1342 # Ow-Hw + 896 1 1344 1343 # Ow-Hw + 897 1 1346 1345 # Ow-Hw + 898 1 1347 1346 # Ow-Hw + 899 1 1349 1348 # Ow-Hw + 900 1 1350 1349 # Ow-Hw + 901 1 1352 1351 # Ow-Hw + 902 1 1353 1352 # Ow-Hw + 903 1 1355 1354 # Ow-Hw + 904 1 1356 1355 # Ow-Hw + 905 1 1358 1357 # Ow-Hw + 906 1 1359 1358 # Ow-Hw + 907 1 1361 1360 # Ow-Hw + 908 1 1362 1361 # Ow-Hw + 909 1 1364 1363 # Ow-Hw + 910 1 1365 1364 # Ow-Hw + 911 1 1367 1366 # Ow-Hw + 912 1 1368 1367 # Ow-Hw + 913 1 1370 1369 # Ow-Hw + 914 1 1371 1370 # Ow-Hw + 915 1 1373 1372 # Ow-Hw + 916 1 1374 1373 # Ow-Hw + 917 1 1376 1375 # Ow-Hw + 918 1 1377 1376 # Ow-Hw + 919 1 1379 1378 # Ow-Hw + 920 1 1380 1379 # Ow-Hw + 921 1 1382 1381 # Ow-Hw + 922 1 1383 1382 # Ow-Hw + 923 1 1385 1384 # Ow-Hw + 924 1 1386 1385 # Ow-Hw + 925 1 1388 1387 # Ow-Hw + 926 1 1389 1388 # Ow-Hw + 927 1 1391 1390 # Ow-Hw + 928 1 1392 1391 # Ow-Hw + 929 1 1394 1393 # Ow-Hw + 930 1 1395 1394 # Ow-Hw + 931 1 1397 1396 # Ow-Hw + 932 1 1398 1397 # Ow-Hw + 933 1 1400 1399 # Ow-Hw + 934 1 1401 1400 # Ow-Hw + 935 1 1403 1402 # Ow-Hw + 936 1 1404 1403 # Ow-Hw + 937 1 1406 1405 # Ow-Hw + 938 1 1407 1406 # Ow-Hw + 939 1 1409 1408 # Ow-Hw + 940 1 1410 1409 # Ow-Hw + 941 1 1412 1411 # Ow-Hw + 942 1 1413 1412 # Ow-Hw + 943 1 1415 1414 # Ow-Hw + 944 1 1416 1415 # Ow-Hw + 945 1 1418 1417 # Ow-Hw + 946 1 1419 1418 # Ow-Hw + 947 1 1421 1420 # Ow-Hw + 948 1 1422 1421 # Ow-Hw + 949 1 1424 1423 # Ow-Hw + 950 1 1425 1424 # Ow-Hw + 951 1 1427 1426 # Ow-Hw + 952 1 1428 1427 # Ow-Hw + 953 1 1430 1429 # Ow-Hw + 954 1 1431 1430 # Ow-Hw + 955 1 1433 1432 # Ow-Hw + 956 1 1434 1433 # Ow-Hw + 957 1 1436 1435 # Ow-Hw + 958 1 1437 1436 # Ow-Hw + 959 1 1439 1438 # Ow-Hw + 960 1 1440 1439 # Ow-Hw + 961 1 1442 1441 # Ow-Hw + 962 1 1443 1442 # Ow-Hw + 963 1 1445 1444 # Ow-Hw + 964 1 1446 1445 # Ow-Hw + 965 1 1448 1447 # Ow-Hw + 966 1 1449 1448 # Ow-Hw + 967 1 1451 1450 # Ow-Hw + 968 1 1452 1451 # Ow-Hw + 969 1 1454 1453 # Ow-Hw + 970 1 1455 1454 # Ow-Hw + 971 1 1457 1456 # Ow-Hw + 972 1 1458 1457 # Ow-Hw + 973 1 1460 1459 # Ow-Hw + 974 1 1461 1460 # Ow-Hw + 975 1 1463 1462 # Ow-Hw + 976 1 1464 1463 # Ow-Hw + 977 1 1466 1465 # Ow-Hw + 978 1 1467 1466 # Ow-Hw + 979 1 1469 1468 # Ow-Hw + 980 1 1470 1469 # Ow-Hw + 981 1 1472 1471 # Ow-Hw + 982 1 1473 1472 # Ow-Hw + 983 1 1475 1474 # Ow-Hw + 984 1 1476 1475 # Ow-Hw + 985 1 1478 1477 # Ow-Hw + 986 1 1479 1478 # Ow-Hw + 987 1 1481 1480 # Ow-Hw + 988 1 1482 1481 # Ow-Hw + 989 1 1484 1483 # Ow-Hw + 990 1 1485 1484 # Ow-Hw + 991 1 1487 1486 # Ow-Hw + 992 1 1488 1487 # Ow-Hw + 993 1 1490 1489 # Ow-Hw + 994 1 1491 1490 # Ow-Hw + 995 1 1493 1492 # Ow-Hw + 996 1 1494 1493 # Ow-Hw + 997 1 1496 1495 # Ow-Hw + 998 1 1497 1496 # Ow-Hw + 999 1 1499 1498 # Ow-Hw + 1000 1 1500 1499 # Ow-Hw + 1001 1 1502 1501 # Ow-Hw + 1002 1 1503 1502 # Ow-Hw + 1003 1 1505 1504 # Ow-Hw + 1004 1 1506 1505 # Ow-Hw + 1005 1 1508 1507 # Ow-Hw + 1006 1 1509 1508 # Ow-Hw + 1007 1 1511 1510 # Ow-Hw + 1008 1 1512 1511 # Ow-Hw + 1009 1 1514 1513 # Ow-Hw + 1010 1 1515 1514 # Ow-Hw + 1011 1 1517 1516 # Ow-Hw + 1012 1 1518 1517 # Ow-Hw + 1013 1 1520 1519 # Ow-Hw + 1014 1 1521 1520 # Ow-Hw + 1015 1 1523 1522 # Ow-Hw + 1016 1 1524 1523 # Ow-Hw + 1017 1 1526 1525 # Ow-Hw + 1018 1 1527 1526 # Ow-Hw + 1019 1 1529 1528 # Ow-Hw + 1020 1 1530 1529 # Ow-Hw + 1021 1 1532 1531 # Ow-Hw + 1022 1 1533 1532 # Ow-Hw + 1023 1 1535 1534 # Ow-Hw + 1024 1 1536 1535 # Ow-Hw + 1025 1 1538 1537 # Ow-Hw + 1026 1 1539 1538 # Ow-Hw + 1027 1 1541 1540 # Ow-Hw + 1028 1 1542 1541 # Ow-Hw + 1029 1 1544 1543 # Ow-Hw + 1030 1 1545 1544 # Ow-Hw + 1031 1 1547 1546 # Ow-Hw + 1032 1 1548 1547 # Ow-Hw + 1033 1 1550 1549 # Ow-Hw + 1034 1 1551 1550 # Ow-Hw + 1035 1 1553 1552 # Ow-Hw + 1036 1 1554 1553 # Ow-Hw + 1037 1 1556 1555 # Ow-Hw + 1038 1 1557 1556 # Ow-Hw + 1039 1 1559 1558 # Ow-Hw + 1040 1 1560 1559 # Ow-Hw + 1041 1 1562 1561 # Ow-Hw + 1042 1 1563 1562 # Ow-Hw + 1043 1 1565 1564 # Ow-Hw + 1044 1 1566 1565 # Ow-Hw + 1045 1 1568 1567 # Ow-Hw + 1046 1 1569 1568 # Ow-Hw + 1047 1 1571 1570 # Ow-Hw + 1048 1 1572 1571 # Ow-Hw + 1049 1 1574 1573 # Ow-Hw + 1050 1 1575 1574 # Ow-Hw + 1051 1 1577 1576 # Ow-Hw + 1052 1 1578 1577 # Ow-Hw + 1053 1 1580 1579 # Ow-Hw + 1054 1 1581 1580 # Ow-Hw + 1055 1 1583 1582 # Ow-Hw + 1056 1 1584 1583 # Ow-Hw + 1057 1 1586 1585 # Ow-Hw + 1058 1 1587 1586 # Ow-Hw + 1059 1 1589 1588 # Ow-Hw + 1060 1 1590 1589 # Ow-Hw + 1061 1 1592 1591 # Ow-Hw + 1062 1 1593 1592 # Ow-Hw + 1063 1 1595 1594 # Ow-Hw + 1064 1 1596 1595 # Ow-Hw + 1065 1 1598 1597 # Ow-Hw + 1066 1 1599 1598 # Ow-Hw + 1067 1 1601 1600 # Ow-Hw + 1068 1 1602 1601 # Ow-Hw + 1069 1 1604 1603 # Ow-Hw + 1070 1 1605 1604 # Ow-Hw + 1071 1 1607 1606 # Ow-Hw + 1072 1 1608 1607 # Ow-Hw + 1073 1 1610 1609 # Ow-Hw + 1074 1 1611 1610 # Ow-Hw + 1075 1 1613 1612 # Ow-Hw + 1076 1 1614 1613 # Ow-Hw + 1077 1 1616 1615 # Ow-Hw + 1078 1 1617 1616 # Ow-Hw + 1079 1 1619 1618 # Ow-Hw + 1080 1 1620 1619 # Ow-Hw + 1081 1 1622 1621 # Ow-Hw + 1082 1 1623 1622 # Ow-Hw + 1083 1 1625 1624 # Ow-Hw + 1084 1 1626 1625 # Ow-Hw + 1085 1 1628 1627 # Ow-Hw + 1086 1 1629 1628 # Ow-Hw + 1087 1 1631 1630 # Ow-Hw + 1088 1 1632 1631 # Ow-Hw + 1089 1 1634 1633 # Ow-Hw + 1090 1 1635 1634 # Ow-Hw + 1091 1 1637 1636 # Ow-Hw + 1092 1 1638 1637 # Ow-Hw + 1093 1 1640 1639 # Ow-Hw + 1094 1 1641 1640 # Ow-Hw + 1095 1 1643 1642 # Ow-Hw + 1096 1 1644 1643 # Ow-Hw + 1097 1 1646 1645 # Ow-Hw + 1098 1 1647 1646 # Ow-Hw + 1099 1 1649 1648 # Ow-Hw + 1100 1 1650 1649 # Ow-Hw + 1101 1 1652 1651 # Ow-Hw + 1102 1 1653 1652 # Ow-Hw + 1103 1 1655 1654 # Ow-Hw + 1104 1 1656 1655 # Ow-Hw + 1105 1 1658 1657 # Ow-Hw + 1106 1 1659 1658 # Ow-Hw + 1107 1 1661 1660 # Ow-Hw + 1108 1 1662 1661 # Ow-Hw + 1109 1 1664 1663 # Ow-Hw + 1110 1 1665 1664 # Ow-Hw + 1111 1 1667 1666 # Ow-Hw + 1112 1 1668 1667 # Ow-Hw + 1113 1 1670 1669 # Ow-Hw + 1114 1 1671 1670 # Ow-Hw + 1115 1 1673 1672 # Ow-Hw + 1116 1 1674 1673 # Ow-Hw + 1117 1 1676 1675 # Ow-Hw + 1118 1 1677 1676 # Ow-Hw + 1119 1 1679 1678 # Ow-Hw + 1120 1 1680 1679 # Ow-Hw + 1121 1 1682 1681 # Ow-Hw + 1122 1 1683 1682 # Ow-Hw + 1123 1 1685 1684 # Ow-Hw + 1124 1 1686 1685 # Ow-Hw + 1125 1 1688 1687 # Ow-Hw + 1126 1 1689 1688 # Ow-Hw + 1127 1 1691 1690 # Ow-Hw + 1128 1 1692 1691 # Ow-Hw + 1129 1 1694 1693 # Ow-Hw + 1130 1 1695 1694 # Ow-Hw + 1131 1 1697 1696 # Ow-Hw + 1132 1 1698 1697 # Ow-Hw + 1133 1 1700 1699 # Ow-Hw + 1134 1 1701 1700 # Ow-Hw + 1135 1 1703 1702 # Ow-Hw + 1136 1 1704 1703 # Ow-Hw + 1137 1 1706 1705 # Ow-Hw + 1138 1 1707 1706 # Ow-Hw + 1139 1 1709 1708 # Ow-Hw + 1140 1 1710 1709 # Ow-Hw + 1141 1 1712 1711 # Ow-Hw + 1142 1 1713 1712 # Ow-Hw + 1143 1 1715 1714 # Ow-Hw + 1144 1 1716 1715 # Ow-Hw + 1145 1 1718 1717 # Ow-Hw + 1146 1 1719 1718 # Ow-Hw + 1147 1 1721 1720 # Ow-Hw + 1148 1 1722 1721 # Ow-Hw + 1149 1 1724 1723 # Ow-Hw + 1150 1 1725 1724 # Ow-Hw + 1151 1 1727 1726 # Ow-Hw + 1152 1 1728 1727 # Ow-Hw + 1153 1 1730 1729 # Ow-Hw + 1154 1 1731 1730 # Ow-Hw + 1155 1 1733 1732 # Ow-Hw + 1156 1 1734 1733 # Ow-Hw + 1157 1 1736 1735 # Ow-Hw + 1158 1 1737 1736 # Ow-Hw + 1159 1 1739 1738 # Ow-Hw + 1160 1 1740 1739 # Ow-Hw + 1161 1 1742 1741 # Ow-Hw + 1162 1 1743 1742 # Ow-Hw + 1163 1 1745 1744 # Ow-Hw + 1164 1 1746 1745 # Ow-Hw + 1165 1 1748 1747 # Ow-Hw + 1166 1 1749 1748 # Ow-Hw + 1167 1 1751 1750 # Ow-Hw + 1168 1 1752 1751 # Ow-Hw + 1169 1 1754 1753 # Ow-Hw + 1170 1 1755 1754 # Ow-Hw + 1171 1 1757 1756 # Ow-Hw + 1172 1 1758 1757 # Ow-Hw + 1173 1 1760 1759 # Ow-Hw + 1174 1 1761 1760 # Ow-Hw + 1175 1 1763 1762 # Ow-Hw + 1176 1 1764 1763 # Ow-Hw + 1177 1 1766 1765 # Ow-Hw + 1178 1 1767 1766 # Ow-Hw + 1179 1 1769 1768 # Ow-Hw + 1180 1 1770 1769 # Ow-Hw + 1181 1 1772 1771 # Ow-Hw + 1182 1 1773 1772 # Ow-Hw + 1183 1 1775 1774 # Ow-Hw + 1184 1 1776 1775 # Ow-Hw + 1185 1 1778 1777 # Ow-Hw + 1186 1 1779 1778 # Ow-Hw + 1187 1 1781 1780 # Ow-Hw + 1188 1 1782 1781 # Ow-Hw + 1189 1 1784 1783 # Ow-Hw + 1190 1 1785 1784 # Ow-Hw + 1191 1 1787 1786 # Ow-Hw + 1192 1 1788 1787 # Ow-Hw + 1193 1 1790 1789 # Ow-Hw + 1194 1 1791 1790 # Ow-Hw + 1195 1 1793 1792 # Ow-Hw + 1196 1 1794 1793 # Ow-Hw + 1197 1 1796 1795 # Ow-Hw + 1198 1 1797 1796 # Ow-Hw + 1199 1 1799 1798 # Ow-Hw + 1200 1 1800 1799 # Ow-Hw + +Angles + + 1 1 1 2 3 # Hw-Ow-Hw + 2 1 4 5 6 # Hw-Ow-Hw + 3 1 7 8 9 # Hw-Ow-Hw + 4 1 10 11 12 # Hw-Ow-Hw + 5 1 13 14 15 # Hw-Ow-Hw + 6 1 16 17 18 # Hw-Ow-Hw + 7 1 19 20 21 # Hw-Ow-Hw + 8 1 22 23 24 # Hw-Ow-Hw + 9 1 25 26 27 # Hw-Ow-Hw + 10 1 28 29 30 # Hw-Ow-Hw + 11 1 31 32 33 # Hw-Ow-Hw + 12 1 34 35 36 # Hw-Ow-Hw + 13 1 37 38 39 # Hw-Ow-Hw + 14 1 40 41 42 # Hw-Ow-Hw + 15 1 43 44 45 # Hw-Ow-Hw + 16 1 46 47 48 # Hw-Ow-Hw + 17 1 49 50 51 # Hw-Ow-Hw + 18 1 52 53 54 # Hw-Ow-Hw + 19 1 55 56 57 # Hw-Ow-Hw + 20 1 58 59 60 # Hw-Ow-Hw + 21 1 61 62 63 # Hw-Ow-Hw + 22 1 64 65 66 # Hw-Ow-Hw + 23 1 67 68 69 # Hw-Ow-Hw + 24 1 70 71 72 # Hw-Ow-Hw + 25 1 73 74 75 # Hw-Ow-Hw + 26 1 76 77 78 # Hw-Ow-Hw + 27 1 79 80 81 # Hw-Ow-Hw + 28 1 82 83 84 # Hw-Ow-Hw + 29 1 85 86 87 # Hw-Ow-Hw + 30 1 88 89 90 # Hw-Ow-Hw + 31 1 91 92 93 # Hw-Ow-Hw + 32 1 94 95 96 # Hw-Ow-Hw + 33 1 97 98 99 # Hw-Ow-Hw + 34 1 100 101 102 # Hw-Ow-Hw + 35 1 103 104 105 # Hw-Ow-Hw + 36 1 106 107 108 # Hw-Ow-Hw + 37 1 109 110 111 # Hw-Ow-Hw + 38 1 112 113 114 # Hw-Ow-Hw + 39 1 115 116 117 # Hw-Ow-Hw + 40 1 118 119 120 # Hw-Ow-Hw + 41 1 121 122 123 # Hw-Ow-Hw + 42 1 124 125 126 # Hw-Ow-Hw + 43 1 127 128 129 # Hw-Ow-Hw + 44 1 130 131 132 # Hw-Ow-Hw + 45 1 133 134 135 # Hw-Ow-Hw + 46 1 136 137 138 # Hw-Ow-Hw + 47 1 139 140 141 # Hw-Ow-Hw + 48 1 142 143 144 # Hw-Ow-Hw + 49 1 145 146 147 # Hw-Ow-Hw + 50 1 148 149 150 # Hw-Ow-Hw + 51 1 151 152 153 # Hw-Ow-Hw + 52 1 154 155 156 # Hw-Ow-Hw + 53 1 157 158 159 # Hw-Ow-Hw + 54 1 160 161 162 # Hw-Ow-Hw + 55 1 163 164 165 # Hw-Ow-Hw + 56 1 166 167 168 # Hw-Ow-Hw + 57 1 169 170 171 # Hw-Ow-Hw + 58 1 172 173 174 # Hw-Ow-Hw + 59 1 175 176 177 # Hw-Ow-Hw + 60 1 178 179 180 # Hw-Ow-Hw + 61 1 181 182 183 # Hw-Ow-Hw + 62 1 184 185 186 # Hw-Ow-Hw + 63 1 187 188 189 # Hw-Ow-Hw + 64 1 190 191 192 # Hw-Ow-Hw + 65 1 193 194 195 # Hw-Ow-Hw + 66 1 196 197 198 # Hw-Ow-Hw + 67 1 199 200 201 # Hw-Ow-Hw + 68 1 202 203 204 # Hw-Ow-Hw + 69 1 205 206 207 # Hw-Ow-Hw + 70 1 208 209 210 # Hw-Ow-Hw + 71 1 211 212 213 # Hw-Ow-Hw + 72 1 214 215 216 # Hw-Ow-Hw + 73 1 217 218 219 # Hw-Ow-Hw + 74 1 220 221 222 # Hw-Ow-Hw + 75 1 223 224 225 # Hw-Ow-Hw + 76 1 226 227 228 # Hw-Ow-Hw + 77 1 229 230 231 # Hw-Ow-Hw + 78 1 232 233 234 # Hw-Ow-Hw + 79 1 235 236 237 # Hw-Ow-Hw + 80 1 238 239 240 # Hw-Ow-Hw + 81 1 241 242 243 # Hw-Ow-Hw + 82 1 244 245 246 # Hw-Ow-Hw + 83 1 247 248 249 # Hw-Ow-Hw + 84 1 250 251 252 # Hw-Ow-Hw + 85 1 253 254 255 # Hw-Ow-Hw + 86 1 256 257 258 # Hw-Ow-Hw + 87 1 259 260 261 # Hw-Ow-Hw + 88 1 262 263 264 # Hw-Ow-Hw + 89 1 265 266 267 # Hw-Ow-Hw + 90 1 268 269 270 # Hw-Ow-Hw + 91 1 271 272 273 # Hw-Ow-Hw + 92 1 274 275 276 # Hw-Ow-Hw + 93 1 277 278 279 # Hw-Ow-Hw + 94 1 280 281 282 # Hw-Ow-Hw + 95 1 283 284 285 # Hw-Ow-Hw + 96 1 286 287 288 # Hw-Ow-Hw + 97 1 289 290 291 # Hw-Ow-Hw + 98 1 292 293 294 # Hw-Ow-Hw + 99 1 295 296 297 # Hw-Ow-Hw + 100 1 298 299 300 # Hw-Ow-Hw + 101 1 301 302 303 # Hw-Ow-Hw + 102 1 304 305 306 # Hw-Ow-Hw + 103 1 307 308 309 # Hw-Ow-Hw + 104 1 310 311 312 # Hw-Ow-Hw + 105 1 313 314 315 # Hw-Ow-Hw + 106 1 316 317 318 # Hw-Ow-Hw + 107 1 319 320 321 # Hw-Ow-Hw + 108 1 322 323 324 # Hw-Ow-Hw + 109 1 325 326 327 # Hw-Ow-Hw + 110 1 328 329 330 # Hw-Ow-Hw + 111 1 331 332 333 # Hw-Ow-Hw + 112 1 334 335 336 # Hw-Ow-Hw + 113 1 337 338 339 # Hw-Ow-Hw + 114 1 340 341 342 # Hw-Ow-Hw + 115 1 343 344 345 # Hw-Ow-Hw + 116 1 346 347 348 # Hw-Ow-Hw + 117 1 349 350 351 # Hw-Ow-Hw + 118 1 352 353 354 # Hw-Ow-Hw + 119 1 355 356 357 # Hw-Ow-Hw + 120 1 358 359 360 # Hw-Ow-Hw + 121 1 361 362 363 # Hw-Ow-Hw + 122 1 364 365 366 # Hw-Ow-Hw + 123 1 367 368 369 # Hw-Ow-Hw + 124 1 370 371 372 # Hw-Ow-Hw + 125 1 373 374 375 # Hw-Ow-Hw + 126 1 376 377 378 # Hw-Ow-Hw + 127 1 379 380 381 # Hw-Ow-Hw + 128 1 382 383 384 # Hw-Ow-Hw + 129 1 385 386 387 # Hw-Ow-Hw + 130 1 388 389 390 # Hw-Ow-Hw + 131 1 391 392 393 # Hw-Ow-Hw + 132 1 394 395 396 # Hw-Ow-Hw + 133 1 397 398 399 # Hw-Ow-Hw + 134 1 400 401 402 # Hw-Ow-Hw + 135 1 403 404 405 # Hw-Ow-Hw + 136 1 406 407 408 # Hw-Ow-Hw + 137 1 409 410 411 # Hw-Ow-Hw + 138 1 412 413 414 # Hw-Ow-Hw + 139 1 415 416 417 # Hw-Ow-Hw + 140 1 418 419 420 # Hw-Ow-Hw + 141 1 421 422 423 # Hw-Ow-Hw + 142 1 424 425 426 # Hw-Ow-Hw + 143 1 427 428 429 # Hw-Ow-Hw + 144 1 430 431 432 # Hw-Ow-Hw + 145 1 433 434 435 # Hw-Ow-Hw + 146 1 436 437 438 # Hw-Ow-Hw + 147 1 439 440 441 # Hw-Ow-Hw + 148 1 442 443 444 # Hw-Ow-Hw + 149 1 445 446 447 # Hw-Ow-Hw + 150 1 448 449 450 # Hw-Ow-Hw + 151 1 451 452 453 # Hw-Ow-Hw + 152 1 454 455 456 # Hw-Ow-Hw + 153 1 457 458 459 # Hw-Ow-Hw + 154 1 460 461 462 # Hw-Ow-Hw + 155 1 463 464 465 # Hw-Ow-Hw + 156 1 466 467 468 # Hw-Ow-Hw + 157 1 469 470 471 # Hw-Ow-Hw + 158 1 472 473 474 # Hw-Ow-Hw + 159 1 475 476 477 # Hw-Ow-Hw + 160 1 478 479 480 # Hw-Ow-Hw + 161 1 481 482 483 # Hw-Ow-Hw + 162 1 484 485 486 # Hw-Ow-Hw + 163 1 487 488 489 # Hw-Ow-Hw + 164 1 490 491 492 # Hw-Ow-Hw + 165 1 493 494 495 # Hw-Ow-Hw + 166 1 496 497 498 # Hw-Ow-Hw + 167 1 499 500 501 # Hw-Ow-Hw + 168 1 502 503 504 # Hw-Ow-Hw + 169 1 505 506 507 # Hw-Ow-Hw + 170 1 508 509 510 # Hw-Ow-Hw + 171 1 511 512 513 # Hw-Ow-Hw + 172 1 514 515 516 # Hw-Ow-Hw + 173 1 517 518 519 # Hw-Ow-Hw + 174 1 520 521 522 # Hw-Ow-Hw + 175 1 523 524 525 # Hw-Ow-Hw + 176 1 526 527 528 # Hw-Ow-Hw + 177 1 529 530 531 # Hw-Ow-Hw + 178 1 532 533 534 # Hw-Ow-Hw + 179 1 535 536 537 # Hw-Ow-Hw + 180 1 538 539 540 # Hw-Ow-Hw + 181 1 541 542 543 # Hw-Ow-Hw + 182 1 544 545 546 # Hw-Ow-Hw + 183 1 547 548 549 # Hw-Ow-Hw + 184 1 550 551 552 # Hw-Ow-Hw + 185 1 553 554 555 # Hw-Ow-Hw + 186 1 556 557 558 # Hw-Ow-Hw + 187 1 559 560 561 # Hw-Ow-Hw + 188 1 562 563 564 # Hw-Ow-Hw + 189 1 565 566 567 # Hw-Ow-Hw + 190 1 568 569 570 # Hw-Ow-Hw + 191 1 571 572 573 # Hw-Ow-Hw + 192 1 574 575 576 # Hw-Ow-Hw + 193 1 577 578 579 # Hw-Ow-Hw + 194 1 580 581 582 # Hw-Ow-Hw + 195 1 583 584 585 # Hw-Ow-Hw + 196 1 586 587 588 # Hw-Ow-Hw + 197 1 589 590 591 # Hw-Ow-Hw + 198 1 592 593 594 # Hw-Ow-Hw + 199 1 595 596 597 # Hw-Ow-Hw + 200 1 598 599 600 # Hw-Ow-Hw + 201 1 601 602 603 # Hw-Ow-Hw + 202 1 604 605 606 # Hw-Ow-Hw + 203 1 607 608 609 # Hw-Ow-Hw + 204 1 610 611 612 # Hw-Ow-Hw + 205 1 613 614 615 # Hw-Ow-Hw + 206 1 616 617 618 # Hw-Ow-Hw + 207 1 619 620 621 # Hw-Ow-Hw + 208 1 622 623 624 # Hw-Ow-Hw + 209 1 625 626 627 # Hw-Ow-Hw + 210 1 628 629 630 # Hw-Ow-Hw + 211 1 631 632 633 # Hw-Ow-Hw + 212 1 634 635 636 # Hw-Ow-Hw + 213 1 637 638 639 # Hw-Ow-Hw + 214 1 640 641 642 # Hw-Ow-Hw + 215 1 643 644 645 # Hw-Ow-Hw + 216 1 646 647 648 # Hw-Ow-Hw + 217 1 649 650 651 # Hw-Ow-Hw + 218 1 652 653 654 # Hw-Ow-Hw + 219 1 655 656 657 # Hw-Ow-Hw + 220 1 658 659 660 # Hw-Ow-Hw + 221 1 661 662 663 # Hw-Ow-Hw + 222 1 664 665 666 # Hw-Ow-Hw + 223 1 667 668 669 # Hw-Ow-Hw + 224 1 670 671 672 # Hw-Ow-Hw + 225 1 673 674 675 # Hw-Ow-Hw + 226 1 676 677 678 # Hw-Ow-Hw + 227 1 679 680 681 # Hw-Ow-Hw + 228 1 682 683 684 # Hw-Ow-Hw + 229 1 685 686 687 # Hw-Ow-Hw + 230 1 688 689 690 # Hw-Ow-Hw + 231 1 691 692 693 # Hw-Ow-Hw + 232 1 694 695 696 # Hw-Ow-Hw + 233 1 697 698 699 # Hw-Ow-Hw + 234 1 700 701 702 # Hw-Ow-Hw + 235 1 703 704 705 # Hw-Ow-Hw + 236 1 706 707 708 # Hw-Ow-Hw + 237 1 709 710 711 # Hw-Ow-Hw + 238 1 712 713 714 # Hw-Ow-Hw + 239 1 715 716 717 # Hw-Ow-Hw + 240 1 718 719 720 # Hw-Ow-Hw + 241 1 721 722 723 # Hw-Ow-Hw + 242 1 724 725 726 # Hw-Ow-Hw + 243 1 727 728 729 # Hw-Ow-Hw + 244 1 730 731 732 # Hw-Ow-Hw + 245 1 733 734 735 # Hw-Ow-Hw + 246 1 736 737 738 # Hw-Ow-Hw + 247 1 739 740 741 # Hw-Ow-Hw + 248 1 742 743 744 # Hw-Ow-Hw + 249 1 745 746 747 # Hw-Ow-Hw + 250 1 748 749 750 # Hw-Ow-Hw + 251 1 751 752 753 # Hw-Ow-Hw + 252 1 754 755 756 # Hw-Ow-Hw + 253 1 757 758 759 # Hw-Ow-Hw + 254 1 760 761 762 # Hw-Ow-Hw + 255 1 763 764 765 # Hw-Ow-Hw + 256 1 766 767 768 # Hw-Ow-Hw + 257 1 769 770 771 # Hw-Ow-Hw + 258 1 772 773 774 # Hw-Ow-Hw + 259 1 775 776 777 # Hw-Ow-Hw + 260 1 778 779 780 # Hw-Ow-Hw + 261 1 781 782 783 # Hw-Ow-Hw + 262 1 784 785 786 # Hw-Ow-Hw + 263 1 787 788 789 # Hw-Ow-Hw + 264 1 790 791 792 # Hw-Ow-Hw + 265 1 793 794 795 # Hw-Ow-Hw + 266 1 796 797 798 # Hw-Ow-Hw + 267 1 799 800 801 # Hw-Ow-Hw + 268 1 802 803 804 # Hw-Ow-Hw + 269 1 805 806 807 # Hw-Ow-Hw + 270 1 808 809 810 # Hw-Ow-Hw + 271 1 811 812 813 # Hw-Ow-Hw + 272 1 814 815 816 # Hw-Ow-Hw + 273 1 817 818 819 # Hw-Ow-Hw + 274 1 820 821 822 # Hw-Ow-Hw + 275 1 823 824 825 # Hw-Ow-Hw + 276 1 826 827 828 # Hw-Ow-Hw + 277 1 829 830 831 # Hw-Ow-Hw + 278 1 832 833 834 # Hw-Ow-Hw + 279 1 835 836 837 # Hw-Ow-Hw + 280 1 838 839 840 # Hw-Ow-Hw + 281 1 841 842 843 # Hw-Ow-Hw + 282 1 844 845 846 # Hw-Ow-Hw + 283 1 847 848 849 # Hw-Ow-Hw + 284 1 850 851 852 # Hw-Ow-Hw + 285 1 853 854 855 # Hw-Ow-Hw + 286 1 856 857 858 # Hw-Ow-Hw + 287 1 859 860 861 # Hw-Ow-Hw + 288 1 862 863 864 # Hw-Ow-Hw + 289 1 865 866 867 # Hw-Ow-Hw + 290 1 868 869 870 # Hw-Ow-Hw + 291 1 871 872 873 # Hw-Ow-Hw + 292 1 874 875 876 # Hw-Ow-Hw + 293 1 877 878 879 # Hw-Ow-Hw + 294 1 880 881 882 # Hw-Ow-Hw + 295 1 883 884 885 # Hw-Ow-Hw + 296 1 886 887 888 # Hw-Ow-Hw + 297 1 889 890 891 # Hw-Ow-Hw + 298 1 892 893 894 # Hw-Ow-Hw + 299 1 895 896 897 # Hw-Ow-Hw + 300 1 898 899 900 # Hw-Ow-Hw + 301 1 901 902 903 # Hw-Ow-Hw + 302 1 904 905 906 # Hw-Ow-Hw + 303 1 907 908 909 # Hw-Ow-Hw + 304 1 910 911 912 # Hw-Ow-Hw + 305 1 913 914 915 # Hw-Ow-Hw + 306 1 916 917 918 # Hw-Ow-Hw + 307 1 919 920 921 # Hw-Ow-Hw + 308 1 922 923 924 # Hw-Ow-Hw + 309 1 925 926 927 # Hw-Ow-Hw + 310 1 928 929 930 # Hw-Ow-Hw + 311 1 931 932 933 # Hw-Ow-Hw + 312 1 934 935 936 # Hw-Ow-Hw + 313 1 937 938 939 # Hw-Ow-Hw + 314 1 940 941 942 # Hw-Ow-Hw + 315 1 943 944 945 # Hw-Ow-Hw + 316 1 946 947 948 # Hw-Ow-Hw + 317 1 949 950 951 # Hw-Ow-Hw + 318 1 952 953 954 # Hw-Ow-Hw + 319 1 955 956 957 # Hw-Ow-Hw + 320 1 958 959 960 # Hw-Ow-Hw + 321 1 961 962 963 # Hw-Ow-Hw + 322 1 964 965 966 # Hw-Ow-Hw + 323 1 967 968 969 # Hw-Ow-Hw + 324 1 970 971 972 # Hw-Ow-Hw + 325 1 973 974 975 # Hw-Ow-Hw + 326 1 976 977 978 # Hw-Ow-Hw + 327 1 979 980 981 # Hw-Ow-Hw + 328 1 982 983 984 # Hw-Ow-Hw + 329 1 985 986 987 # Hw-Ow-Hw + 330 1 988 989 990 # Hw-Ow-Hw + 331 1 991 992 993 # Hw-Ow-Hw + 332 1 994 995 996 # Hw-Ow-Hw + 333 1 997 998 999 # Hw-Ow-Hw + 334 1 1000 1001 1002 # Hw-Ow-Hw + 335 1 1003 1004 1005 # Hw-Ow-Hw + 336 1 1006 1007 1008 # Hw-Ow-Hw + 337 1 1009 1010 1011 # Hw-Ow-Hw + 338 1 1012 1013 1014 # Hw-Ow-Hw + 339 1 1015 1016 1017 # Hw-Ow-Hw + 340 1 1018 1019 1020 # Hw-Ow-Hw + 341 1 1021 1022 1023 # Hw-Ow-Hw + 342 1 1024 1025 1026 # Hw-Ow-Hw + 343 1 1027 1028 1029 # Hw-Ow-Hw + 344 1 1030 1031 1032 # Hw-Ow-Hw + 345 1 1033 1034 1035 # Hw-Ow-Hw + 346 1 1036 1037 1038 # Hw-Ow-Hw + 347 1 1039 1040 1041 # Hw-Ow-Hw + 348 1 1042 1043 1044 # Hw-Ow-Hw + 349 1 1045 1046 1047 # Hw-Ow-Hw + 350 1 1048 1049 1050 # Hw-Ow-Hw + 351 1 1051 1052 1053 # Hw-Ow-Hw + 352 1 1054 1055 1056 # Hw-Ow-Hw + 353 1 1057 1058 1059 # Hw-Ow-Hw + 354 1 1060 1061 1062 # Hw-Ow-Hw + 355 1 1063 1064 1065 # Hw-Ow-Hw + 356 1 1066 1067 1068 # Hw-Ow-Hw + 357 1 1069 1070 1071 # Hw-Ow-Hw + 358 1 1072 1073 1074 # Hw-Ow-Hw + 359 1 1075 1076 1077 # Hw-Ow-Hw + 360 1 1078 1079 1080 # Hw-Ow-Hw + 361 1 1081 1082 1083 # Hw-Ow-Hw + 362 1 1084 1085 1086 # Hw-Ow-Hw + 363 1 1087 1088 1089 # Hw-Ow-Hw + 364 1 1090 1091 1092 # Hw-Ow-Hw + 365 1 1093 1094 1095 # Hw-Ow-Hw + 366 1 1096 1097 1098 # Hw-Ow-Hw + 367 1 1099 1100 1101 # Hw-Ow-Hw + 368 1 1102 1103 1104 # Hw-Ow-Hw + 369 1 1105 1106 1107 # Hw-Ow-Hw + 370 1 1108 1109 1110 # Hw-Ow-Hw + 371 1 1111 1112 1113 # Hw-Ow-Hw + 372 1 1114 1115 1116 # Hw-Ow-Hw + 373 1 1117 1118 1119 # Hw-Ow-Hw + 374 1 1120 1121 1122 # Hw-Ow-Hw + 375 1 1123 1124 1125 # Hw-Ow-Hw + 376 1 1126 1127 1128 # Hw-Ow-Hw + 377 1 1129 1130 1131 # Hw-Ow-Hw + 378 1 1132 1133 1134 # Hw-Ow-Hw + 379 1 1135 1136 1137 # Hw-Ow-Hw + 380 1 1138 1139 1140 # Hw-Ow-Hw + 381 1 1141 1142 1143 # Hw-Ow-Hw + 382 1 1144 1145 1146 # Hw-Ow-Hw + 383 1 1147 1148 1149 # Hw-Ow-Hw + 384 1 1150 1151 1152 # Hw-Ow-Hw + 385 1 1153 1154 1155 # Hw-Ow-Hw + 386 1 1156 1157 1158 # Hw-Ow-Hw + 387 1 1159 1160 1161 # Hw-Ow-Hw + 388 1 1162 1163 1164 # Hw-Ow-Hw + 389 1 1165 1166 1167 # Hw-Ow-Hw + 390 1 1168 1169 1170 # Hw-Ow-Hw + 391 1 1171 1172 1173 # Hw-Ow-Hw + 392 1 1174 1175 1176 # Hw-Ow-Hw + 393 1 1177 1178 1179 # Hw-Ow-Hw + 394 1 1180 1181 1182 # Hw-Ow-Hw + 395 1 1183 1184 1185 # Hw-Ow-Hw + 396 1 1186 1187 1188 # Hw-Ow-Hw + 397 1 1189 1190 1191 # Hw-Ow-Hw + 398 1 1192 1193 1194 # Hw-Ow-Hw + 399 1 1195 1196 1197 # Hw-Ow-Hw + 400 1 1198 1199 1200 # Hw-Ow-Hw + 401 1 1201 1202 1203 # Hw-Ow-Hw + 402 1 1204 1205 1206 # Hw-Ow-Hw + 403 1 1207 1208 1209 # Hw-Ow-Hw + 404 1 1210 1211 1212 # Hw-Ow-Hw + 405 1 1213 1214 1215 # Hw-Ow-Hw + 406 1 1216 1217 1218 # Hw-Ow-Hw + 407 1 1219 1220 1221 # Hw-Ow-Hw + 408 1 1222 1223 1224 # Hw-Ow-Hw + 409 1 1225 1226 1227 # Hw-Ow-Hw + 410 1 1228 1229 1230 # Hw-Ow-Hw + 411 1 1231 1232 1233 # Hw-Ow-Hw + 412 1 1234 1235 1236 # Hw-Ow-Hw + 413 1 1237 1238 1239 # Hw-Ow-Hw + 414 1 1240 1241 1242 # Hw-Ow-Hw + 415 1 1243 1244 1245 # Hw-Ow-Hw + 416 1 1246 1247 1248 # Hw-Ow-Hw + 417 1 1249 1250 1251 # Hw-Ow-Hw + 418 1 1252 1253 1254 # Hw-Ow-Hw + 419 1 1255 1256 1257 # Hw-Ow-Hw + 420 1 1258 1259 1260 # Hw-Ow-Hw + 421 1 1261 1262 1263 # Hw-Ow-Hw + 422 1 1264 1265 1266 # Hw-Ow-Hw + 423 1 1267 1268 1269 # Hw-Ow-Hw + 424 1 1270 1271 1272 # Hw-Ow-Hw + 425 1 1273 1274 1275 # Hw-Ow-Hw + 426 1 1276 1277 1278 # Hw-Ow-Hw + 427 1 1279 1280 1281 # Hw-Ow-Hw + 428 1 1282 1283 1284 # Hw-Ow-Hw + 429 1 1285 1286 1287 # Hw-Ow-Hw + 430 1 1288 1289 1290 # Hw-Ow-Hw + 431 1 1291 1292 1293 # Hw-Ow-Hw + 432 1 1294 1295 1296 # Hw-Ow-Hw + 433 1 1297 1298 1299 # Hw-Ow-Hw + 434 1 1300 1301 1302 # Hw-Ow-Hw + 435 1 1303 1304 1305 # Hw-Ow-Hw + 436 1 1306 1307 1308 # Hw-Ow-Hw + 437 1 1309 1310 1311 # Hw-Ow-Hw + 438 1 1312 1313 1314 # Hw-Ow-Hw + 439 1 1315 1316 1317 # Hw-Ow-Hw + 440 1 1318 1319 1320 # Hw-Ow-Hw + 441 1 1321 1322 1323 # Hw-Ow-Hw + 442 1 1324 1325 1326 # Hw-Ow-Hw + 443 1 1327 1328 1329 # Hw-Ow-Hw + 444 1 1330 1331 1332 # Hw-Ow-Hw + 445 1 1333 1334 1335 # Hw-Ow-Hw + 446 1 1336 1337 1338 # Hw-Ow-Hw + 447 1 1339 1340 1341 # Hw-Ow-Hw + 448 1 1342 1343 1344 # Hw-Ow-Hw + 449 1 1345 1346 1347 # Hw-Ow-Hw + 450 1 1348 1349 1350 # Hw-Ow-Hw + 451 1 1351 1352 1353 # Hw-Ow-Hw + 452 1 1354 1355 1356 # Hw-Ow-Hw + 453 1 1357 1358 1359 # Hw-Ow-Hw + 454 1 1360 1361 1362 # Hw-Ow-Hw + 455 1 1363 1364 1365 # Hw-Ow-Hw + 456 1 1366 1367 1368 # Hw-Ow-Hw + 457 1 1369 1370 1371 # Hw-Ow-Hw + 458 1 1372 1373 1374 # Hw-Ow-Hw + 459 1 1375 1376 1377 # Hw-Ow-Hw + 460 1 1378 1379 1380 # Hw-Ow-Hw + 461 1 1381 1382 1383 # Hw-Ow-Hw + 462 1 1384 1385 1386 # Hw-Ow-Hw + 463 1 1387 1388 1389 # Hw-Ow-Hw + 464 1 1390 1391 1392 # Hw-Ow-Hw + 465 1 1393 1394 1395 # Hw-Ow-Hw + 466 1 1396 1397 1398 # Hw-Ow-Hw + 467 1 1399 1400 1401 # Hw-Ow-Hw + 468 1 1402 1403 1404 # Hw-Ow-Hw + 469 1 1405 1406 1407 # Hw-Ow-Hw + 470 1 1408 1409 1410 # Hw-Ow-Hw + 471 1 1411 1412 1413 # Hw-Ow-Hw + 472 1 1414 1415 1416 # Hw-Ow-Hw + 473 1 1417 1418 1419 # Hw-Ow-Hw + 474 1 1420 1421 1422 # Hw-Ow-Hw + 475 1 1423 1424 1425 # Hw-Ow-Hw + 476 1 1426 1427 1428 # Hw-Ow-Hw + 477 1 1429 1430 1431 # Hw-Ow-Hw + 478 1 1432 1433 1434 # Hw-Ow-Hw + 479 1 1435 1436 1437 # Hw-Ow-Hw + 480 1 1438 1439 1440 # Hw-Ow-Hw + 481 1 1441 1442 1443 # Hw-Ow-Hw + 482 1 1444 1445 1446 # Hw-Ow-Hw + 483 1 1447 1448 1449 # Hw-Ow-Hw + 484 1 1450 1451 1452 # Hw-Ow-Hw + 485 1 1453 1454 1455 # Hw-Ow-Hw + 486 1 1456 1457 1458 # Hw-Ow-Hw + 487 1 1459 1460 1461 # Hw-Ow-Hw + 488 1 1462 1463 1464 # Hw-Ow-Hw + 489 1 1465 1466 1467 # Hw-Ow-Hw + 490 1 1468 1469 1470 # Hw-Ow-Hw + 491 1 1471 1472 1473 # Hw-Ow-Hw + 492 1 1474 1475 1476 # Hw-Ow-Hw + 493 1 1477 1478 1479 # Hw-Ow-Hw + 494 1 1480 1481 1482 # Hw-Ow-Hw + 495 1 1483 1484 1485 # Hw-Ow-Hw + 496 1 1486 1487 1488 # Hw-Ow-Hw + 497 1 1489 1490 1491 # Hw-Ow-Hw + 498 1 1492 1493 1494 # Hw-Ow-Hw + 499 1 1495 1496 1497 # Hw-Ow-Hw + 500 1 1498 1499 1500 # Hw-Ow-Hw + 501 1 1501 1502 1503 # Hw-Ow-Hw + 502 1 1504 1505 1506 # Hw-Ow-Hw + 503 1 1507 1508 1509 # Hw-Ow-Hw + 504 1 1510 1511 1512 # Hw-Ow-Hw + 505 1 1513 1514 1515 # Hw-Ow-Hw + 506 1 1516 1517 1518 # Hw-Ow-Hw + 507 1 1519 1520 1521 # Hw-Ow-Hw + 508 1 1522 1523 1524 # Hw-Ow-Hw + 509 1 1525 1526 1527 # Hw-Ow-Hw + 510 1 1528 1529 1530 # Hw-Ow-Hw + 511 1 1531 1532 1533 # Hw-Ow-Hw + 512 1 1534 1535 1536 # Hw-Ow-Hw + 513 1 1537 1538 1539 # Hw-Ow-Hw + 514 1 1540 1541 1542 # Hw-Ow-Hw + 515 1 1543 1544 1545 # Hw-Ow-Hw + 516 1 1546 1547 1548 # Hw-Ow-Hw + 517 1 1549 1550 1551 # Hw-Ow-Hw + 518 1 1552 1553 1554 # Hw-Ow-Hw + 519 1 1555 1556 1557 # Hw-Ow-Hw + 520 1 1558 1559 1560 # Hw-Ow-Hw + 521 1 1561 1562 1563 # Hw-Ow-Hw + 522 1 1564 1565 1566 # Hw-Ow-Hw + 523 1 1567 1568 1569 # Hw-Ow-Hw + 524 1 1570 1571 1572 # Hw-Ow-Hw + 525 1 1573 1574 1575 # Hw-Ow-Hw + 526 1 1576 1577 1578 # Hw-Ow-Hw + 527 1 1579 1580 1581 # Hw-Ow-Hw + 528 1 1582 1583 1584 # Hw-Ow-Hw + 529 1 1585 1586 1587 # Hw-Ow-Hw + 530 1 1588 1589 1590 # Hw-Ow-Hw + 531 1 1591 1592 1593 # Hw-Ow-Hw + 532 1 1594 1595 1596 # Hw-Ow-Hw + 533 1 1597 1598 1599 # Hw-Ow-Hw + 534 1 1600 1601 1602 # Hw-Ow-Hw + 535 1 1603 1604 1605 # Hw-Ow-Hw + 536 1 1606 1607 1608 # Hw-Ow-Hw + 537 1 1609 1610 1611 # Hw-Ow-Hw + 538 1 1612 1613 1614 # Hw-Ow-Hw + 539 1 1615 1616 1617 # Hw-Ow-Hw + 540 1 1618 1619 1620 # Hw-Ow-Hw + 541 1 1621 1622 1623 # Hw-Ow-Hw + 542 1 1624 1625 1626 # Hw-Ow-Hw + 543 1 1627 1628 1629 # Hw-Ow-Hw + 544 1 1630 1631 1632 # Hw-Ow-Hw + 545 1 1633 1634 1635 # Hw-Ow-Hw + 546 1 1636 1637 1638 # Hw-Ow-Hw + 547 1 1639 1640 1641 # Hw-Ow-Hw + 548 1 1642 1643 1644 # Hw-Ow-Hw + 549 1 1645 1646 1647 # Hw-Ow-Hw + 550 1 1648 1649 1650 # Hw-Ow-Hw + 551 1 1651 1652 1653 # Hw-Ow-Hw + 552 1 1654 1655 1656 # Hw-Ow-Hw + 553 1 1657 1658 1659 # Hw-Ow-Hw + 554 1 1660 1661 1662 # Hw-Ow-Hw + 555 1 1663 1664 1665 # Hw-Ow-Hw + 556 1 1666 1667 1668 # Hw-Ow-Hw + 557 1 1669 1670 1671 # Hw-Ow-Hw + 558 1 1672 1673 1674 # Hw-Ow-Hw + 559 1 1675 1676 1677 # Hw-Ow-Hw + 560 1 1678 1679 1680 # Hw-Ow-Hw + 561 1 1681 1682 1683 # Hw-Ow-Hw + 562 1 1684 1685 1686 # Hw-Ow-Hw + 563 1 1687 1688 1689 # Hw-Ow-Hw + 564 1 1690 1691 1692 # Hw-Ow-Hw + 565 1 1693 1694 1695 # Hw-Ow-Hw + 566 1 1696 1697 1698 # Hw-Ow-Hw + 567 1 1699 1700 1701 # Hw-Ow-Hw + 568 1 1702 1703 1704 # Hw-Ow-Hw + 569 1 1705 1706 1707 # Hw-Ow-Hw + 570 1 1708 1709 1710 # Hw-Ow-Hw + 571 1 1711 1712 1713 # Hw-Ow-Hw + 572 1 1714 1715 1716 # Hw-Ow-Hw + 573 1 1717 1718 1719 # Hw-Ow-Hw + 574 1 1720 1721 1722 # Hw-Ow-Hw + 575 1 1723 1724 1725 # Hw-Ow-Hw + 576 1 1726 1727 1728 # Hw-Ow-Hw + 577 1 1729 1730 1731 # Hw-Ow-Hw + 578 1 1732 1733 1734 # Hw-Ow-Hw + 579 1 1735 1736 1737 # Hw-Ow-Hw + 580 1 1738 1739 1740 # Hw-Ow-Hw + 581 1 1741 1742 1743 # Hw-Ow-Hw + 582 1 1744 1745 1746 # Hw-Ow-Hw + 583 1 1747 1748 1749 # Hw-Ow-Hw + 584 1 1750 1751 1752 # Hw-Ow-Hw + 585 1 1753 1754 1755 # Hw-Ow-Hw + 586 1 1756 1757 1758 # Hw-Ow-Hw + 587 1 1759 1760 1761 # Hw-Ow-Hw + 588 1 1762 1763 1764 # Hw-Ow-Hw + 589 1 1765 1766 1767 # Hw-Ow-Hw + 590 1 1768 1769 1770 # Hw-Ow-Hw + 591 1 1771 1772 1773 # Hw-Ow-Hw + 592 1 1774 1775 1776 # Hw-Ow-Hw + 593 1 1777 1778 1779 # Hw-Ow-Hw + 594 1 1780 1781 1782 # Hw-Ow-Hw + 595 1 1783 1784 1785 # Hw-Ow-Hw + 596 1 1786 1787 1788 # Hw-Ow-Hw + 597 1 1789 1790 1791 # Hw-Ow-Hw + 598 1 1792 1793 1794 # Hw-Ow-Hw + 599 1 1795 1796 1797 # Hw-Ow-Hw + 600 1 1798 1799 1800 # Hw-Ow-Hw diff --git a/examples/USER/fep/SPCEhyd/mols/spce.ff b/examples/USER/fep/SPCEhyd/mols/spce.ff new file mode 100644 index 0000000000..b9fd69f4fd --- /dev/null +++ b/examples/USER/fep/SPCEhyd/mols/spce.ff @@ -0,0 +1,14 @@ +# SPC/E water (kJ/mol, A, deg) + +ATOMS +# type m/uma q/e pot pars +Ow Ow 15.999 -0.8476 lj 3.1655 0.6503 +Hw Hw 1.008 0.4238 lj 0.0000 0.0000 + +BONDS +# i j pot re/A ka/kJmol-1 +Ow Hw cons 1.000 4331.53 + +ANGLES +# i j k pot th/deg ka/kjmol-1 +Hw Ow Hw harm 109.47 317.57 diff --git a/examples/USER/fep/SPCEhyd/mols/spce.zmat b/examples/USER/fep/SPCEhyd/mols/spce.zmat new file mode 100644 index 0000000000..e5e60c4f1b --- /dev/null +++ b/examples/USER/fep/SPCEhyd/mols/spce.zmat @@ -0,0 +1,7 @@ +SPCE + +Hw +Ow 1 1.000 +Hw 2 1.000 1 109.47 + +spce.ff diff --git a/examples/USER/fep/SPCEhyd/mols/spce_h.ff b/examples/USER/fep/SPCEhyd/mols/spce_h.ff new file mode 100644 index 0000000000..a1c6933404 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/mols/spce_h.ff @@ -0,0 +1,14 @@ +# SPC/E water (kJ/mol, A, deg) + +ATOMS +# type m/uma q/e pot pars +Owh Ow 15.999 -0.8476 lj 3.1655 0.6503 +Hwh Hw 1.008 0.4238 lj 0.0000 0.0000 + +BONDS +# i j pot re/A ka/kJmol-1 +Ow Hw cons 1.000 4331.53 + +ANGLES +# i j k pot th/deg ka/kjmol-1 +Hw Ow Hw harm 109.47 317.57 diff --git a/examples/USER/fep/SPCEhyd/mols/spce_h.zmat b/examples/USER/fep/SPCEhyd/mols/spce_h.zmat new file mode 100644 index 0000000000..54c4cf9107 --- /dev/null +++ b/examples/USER/fep/SPCEhyd/mols/spce_h.zmat @@ -0,0 +1,7 @@ +SPCE + +Hwh +Owh 1 1.000 +Hwh 2 1.000 1 109.47 + +spce_h.ff diff --git a/examples/USER/misc/dpd_ext/README b/examples/USER/misc/dpd_ext/README new file mode 100644 index 0000000000..43d66c4bd3 --- /dev/null +++ b/examples/USER/misc/dpd_ext/README @@ -0,0 +1,10 @@ +Examples for Extended Dissipative Particle Dynamics (DPD) +--------------------------------------------------------- +This directory contains examples for extended DPD simulations + +1) 'dpdext' - test case (DPD fluid) for 'dpdext' pair style (in.dpdext) and an initial + configuration (dpdext.data) + +2) 'dpdext_tstat' - test case (coarse-grained SPC/E water) for 'dpdext/tstat' pair style + (in.cg_spce), an initial configuration (dpdext.data) and tabulated potential + (cg_spce_table.pot) obtained by bottom-up coarse-graining of the atomistic SPC/E water. diff --git a/examples/USER/misc/dpd_ext/dpdext/dpdext.data b/examples/USER/misc/dpd_ext/dpdext/dpdext.data new file mode 100644 index 0000000000..dddbf6ad6c --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext/dpdext.data @@ -0,0 +1,2196 @@ + DPD Fluid + + 2180 atoms + + 1 atom types + + 0.0000000E+00 40.310000000000 xlo xhi + 0.0000000E+00 40.310000000000 ylo yhi + 0.0000000E+00 40.310000000000 zlo zhi + + Masses + +1 18.01540 + + Atoms + +1 1 2.815000E+01 5.430000E+00 2.370000E+00 +2 1 1.890000E+00 2.957000E+01 1.761000E+01 +3 1 8.920000E+00 3.556000E+01 8.240000E+00 +4 1 2.307000E+01 9.600000E+00 4.710000E+00 +5 1 1.688000E+01 8.940000E+00 3.880000E+00 +6 1 2.571000E+01 1.277000E+01 1.056000E+01 +7 1 2.788000E+01 3.328000E+01 1.300000E-01 +8 1 3.287000E+01 2.050000E+00 1.368000E+01 +9 1 4.900000E+00 2.183000E+01 1.751000E+01 +10 1 9.670000E+00 3.108000E+01 1.843000E+01 +11 1 1.233000E+01 3.490000E+00 1.091000E+01 +12 1 6.630000E+00 1.581000E+01 3.455000E+01 +13 1 3.951000E+01 2.047000E+01 2.288000E+01 +14 1 3.977000E+01 3.173000E+01 9.060000E+00 +15 1 5.370000E+00 8.940000E+00 3.646000E+01 +16 1 2.129000E+01 3.853000E+01 3.468000E+01 +17 1 1.987000E+01 2.677000E+01 3.762000E+01 +18 1 2.658000E+01 3.167000E+01 2.280000E+00 +19 1 1.231000E+01 3.336000E+01 1.098000E+01 +20 1 7.310000E+00 1.410000E+01 1.654000E+01 +21 1 3.388000E+01 2.584000E+01 1.677000E+01 +22 1 1.115000E+01 3.070000E+00 3.992000E+01 +23 1 3.171000E+01 3.195000E+01 2.267000E+01 +24 1 5.960000E+00 3.507000E+01 1.230000E+01 +25 1 2.904000E+01 1.740000E+00 9.460000E+00 +26 1 1.539000E+01 2.686000E+01 2.030000E+00 +27 1 3.890000E+00 2.148000E+01 2.877000E+01 +28 1 4.550000E+00 2.800000E+01 2.431000E+01 +29 1 9.680000E+00 3.992000E+01 2.964000E+01 +30 1 2.560000E+00 3.939000E+01 2.987000E+01 +31 1 4.960000E+00 2.280000E+01 6.230000E+00 +32 1 2.795000E+01 3.511000E+01 9.810000E+00 +33 1 3.254000E+01 3.032000E+01 3.025000E+01 +34 1 2.292000E+01 3.033000E+01 1.730000E+01 +35 1 2.190000E+00 2.025000E+01 3.929000E+01 +36 1 9.460000E+00 3.815000E+01 6.950000E+00 +37 1 2.409000E+01 2.885000E+01 7.730000E+00 +38 1 3.711000E+01 3.888000E+01 3.314000E+01 +39 1 3.492000E+01 1.987000E+01 8.240000E+00 +40 1 1.350000E+00 3.799000E+01 3.885000E+01 +41 1 3.289000E+01 3.289000E+01 1.859000E+01 +42 1 3.337000E+01 1.603000E+01 3.141000E+01 +43 1 5.120000E+00 6.540000E+00 3.231000E+01 +44 1 5.080000E+00 3.640000E+00 2.178000E+01 +45 1 7.090000E+00 1.072000E+01 1.911000E+01 +46 1 2.804000E+01 1.444000E+01 2.027000E+01 +47 1 2.972000E+01 3.928000E+01 2.997000E+01 +48 1 2.170000E+01 3.263000E+01 3.100000E+01 +49 1 3.063000E+01 8.940000E+00 3.410000E+00 +50 1 2.400000E+00 1.484000E+01 2.534000E+01 +51 1 2.128000E+01 3.944000E+01 1.892000E+01 +52 1 3.616000E+01 3.993000E+01 1.443000E+01 +53 1 2.416000E+01 2.414000E+01 1.280000E+01 +54 1 3.177000E+01 1.047000E+01 1.568000E+01 +55 1 4.024000E+01 1.188000E+01 3.343000E+01 +56 1 6.040000E+00 1.367000E+01 4.028000E+01 +57 1 1.537000E+01 3.589000E+01 6.930000E+00 +58 1 1.231000E+01 2.220000E+00 1.471000E+01 +59 1 3.450000E+00 4.810000E+00 2.487000E+01 +60 1 1.589000E+01 2.520000E+00 1.705000E+01 +61 1 3.705000E+01 3.620000E+01 6.730000E+00 +62 1 3.777000E+01 2.710000E+01 4.029000E+01 +63 1 8.260000E+00 2.033000E+01 4.030000E+01 +64 1 8.210000E+00 3.558000E+01 1.717000E+01 +65 1 3.338000E+01 1.389000E+01 2.210000E+01 +66 1 1.454000E+01 1.650000E+00 1.300000E+01 +67 1 1.977000E+01 3.489000E+01 1.751000E+01 +68 1 5.630000E+00 4.220000E+00 3.875000E+01 +69 1 7.570000E+00 2.576000E+01 1.371000E+01 +70 1 9.340000E+00 3.392000E+01 3.538000E+01 +71 1 2.116000E+01 8.590000E+00 1.475000E+01 +72 1 2.328000E+01 4.022000E+01 1.138000E+01 +73 1 1.298000E+01 3.479000E+01 2.338000E+01 +74 1 2.232000E+01 3.339000E+01 5.320000E+00 +75 1 3.290000E+00 3.240000E+01 2.024000E+01 +76 1 3.794000E+01 3.982000E+01 1.790000E+00 +77 1 1.111000E+01 1.440000E+01 2.301000E+01 +78 1 2.556000E+01 1.714000E+01 1.684000E+01 +79 1 2.500000E+00 2.474000E+01 2.028000E+01 +80 1 1.692000E+01 3.837000E+01 1.303000E+01 +81 1 6.310000E+00 2.551000E+01 3.960000E+01 +82 1 2.402000E+01 1.966000E+01 2.905000E+01 +83 1 2.216000E+01 9.500000E+00 2.543000E+01 +84 1 2.006000E+01 3.431000E+01 4.260000E+00 +85 1 2.198000E+01 8.670000E+00 2.806000E+01 +86 1 1.465000E+01 2.763000E+01 8.340000E+00 +87 1 3.975000E+01 3.870000E+00 3.701000E+01 +88 1 2.952000E+01 7.340000E+00 5.310000E+00 +89 1 2.759000E+01 1.589000E+01 3.402000E+01 +90 1 3.746000E+01 3.945000E+01 2.486000E+01 +91 1 2.370000E+01 2.429000E+01 2.803000E+01 +92 1 1.270000E+01 1.653000E+01 2.314000E+01 +93 1 1.653000E+01 2.786000E+01 2.885000E+01 +94 1 3.146000E+01 2.340000E+00 8.320000E+00 +95 1 3.406000E+01 2.124000E+01 2.389000E+01 +96 1 5.130000E+00 1.574000E+01 8.360000E+00 +97 1 3.087000E+01 6.020000E+00 2.295000E+01 +98 1 3.607000E+01 3.674000E+01 9.200000E+00 +99 1 2.507000E+01 2.107000E+01 3.778000E+01 +100 1 3.351000E+01 4.870000E+00 1.301000E+01 +101 1 2.978000E+01 1.879000E+01 1.277000E+01 +102 1 2.496000E+01 1.400000E-01 3.900000E+01 +103 1 3.761000E+01 3.179000E+01 2.540000E+00 +104 1 2.600000E+00 6.800000E+00 3.347000E+01 +105 1 2.570000E+01 3.173000E+01 1.831000E+01 +106 1 9.460000E+00 1.524000E+01 2.542000E+01 +107 1 2.255000E+01 2.515000E+01 2.190000E+00 +108 1 1.902000E+01 1.988000E+01 3.138000E+01 +109 1 9.450000E+00 3.164000E+01 2.652000E+01 +110 1 6.810000E+00 9.420000E+00 1.463000E+01 +111 1 1.651000E+01 5.200000E+00 2.836000E+01 +112 1 2.234000E+01 2.475000E+01 3.956000E+01 +113 1 3.805000E+01 2.946000E+01 9.080000E+00 +114 1 3.553000E+01 1.590000E+01 1.032000E+01 +115 1 2.565000E+01 3.402000E+01 1.062000E+01 +116 1 1.554000E+01 5.410000E+00 3.926000E+01 +117 1 2.449000E+01 1.282000E+01 1.305000E+01 +118 1 1.590000E+00 3.743000E+01 3.398000E+01 +119 1 1.954000E+01 9.570000E+00 1.179000E+01 +120 1 9.870000E+00 1.497000E+01 1.872000E+01 +121 1 2.925000E+01 3.397000E+01 7.650000E+00 +122 1 2.738000E+01 3.514000E+01 2.980000E+01 +123 1 3.704000E+01 2.310000E+00 2.189000E+01 +124 1 1.988000E+01 1.471000E+01 1.600000E-01 +125 1 1.118000E+01 1.476000E+01 3.354000E+01 +126 1 3.100000E-01 2.588000E+01 3.313000E+01 +127 1 3.437000E+01 2.586000E+01 2.337000E+01 +128 1 3.931000E+01 3.398000E+01 3.424000E+01 +129 1 7.070000E+00 3.063000E+01 2.188000E+01 +130 1 1.840000E+00 1.104000E+01 1.974000E+01 +131 1 1.924000E+01 3.244000E+01 3.670000E+01 +132 1 1.675000E+01 3.463000E+01 1.524000E+01 +133 1 1.670000E+01 3.557000E+01 2.765000E+01 +134 1 3.999000E+01 3.970000E+01 2.385000E+01 +135 1 3.096000E+01 5.990000E+00 1.962000E+01 +136 1 2.357000E+01 1.297000E+01 2.012000E+01 +137 1 5.010000E+00 1.524000E+01 3.843000E+01 +138 1 6.180000E+00 1.152000E+01 2.331000E+01 +139 1 1.200000E+00 2.550000E+01 2.334000E+01 +140 1 4.210000E+00 2.882000E+01 1.460000E+00 +141 1 5.750000E+00 2.729000E+01 7.300000E+00 +142 1 2.792000E+01 6.980000E+00 2.345000E+01 +143 1 9.150000E+00 1.540000E+00 3.415000E+01 +144 1 3.475000E+01 3.229000E+01 2.751000E+01 +145 1 2.668000E+01 2.350000E+00 2.394000E+01 +146 1 3.942000E+01 8.270000E+00 2.016000E+01 +147 1 7.790000E+00 9.330000E+00 2.277000E+01 +148 1 3.106000E+01 3.520000E+01 1.946000E+01 +149 1 1.154000E+01 4.670000E+00 2.609000E+01 +150 1 3.318000E+01 3.935000E+01 3.181000E+01 +151 1 3.033000E+01 3.290000E+00 1.594000E+01 +152 1 2.314000E+01 1.230000E+00 6.300000E-01 +153 1 2.688000E+01 1.040000E+01 1.937000E+01 +154 1 2.805000E+01 3.313000E+01 1.849000E+01 +155 1 3.801000E+01 1.582000E+01 2.545000E+01 +156 1 2.225000E+01 3.680000E+00 9.400000E-01 +157 1 3.259000E+01 2.797000E+01 1.170000E+01 +158 1 1.934000E+01 1.035000E+01 4.000000E-02 +159 1 2.211000E+01 1.586000E+01 4.280000E+00 +160 1 2.636000E+01 2.283000E+01 3.116000E+01 +161 1 3.060000E+00 1.832000E+01 3.778000E+01 +162 1 4.009000E+01 3.503000E+01 8.480000E+00 +163 1 2.116000E+01 3.349000E+01 2.047000E+01 +164 1 2.972000E+01 2.068000E+01 8.160000E+00 +165 1 2.669000E+01 9.500000E-01 7.660000E+00 +166 1 4.360000E+00 6.290000E+00 2.123000E+01 +167 1 3.325000E+01 3.367000E+01 1.095000E+01 +168 1 3.761000E+01 3.190000E+00 1.278000E+01 +169 1 3.670000E+00 2.074000E+01 1.536000E+01 +170 1 1.508000E+01 1.371000E+01 3.257000E+01 +171 1 3.460000E+00 2.393000E+01 2.349000E+01 +172 1 1.095000E+01 1.959000E+01 1.153000E+01 +173 1 2.578000E+01 2.144000E+01 3.342000E+01 +174 1 1.847000E+01 6.670000E+00 6.450000E+00 +175 1 3.564000E+01 3.459000E+01 1.988000E+01 +176 1 1.759000E+01 1.536000E+01 2.579000E+01 +177 1 1.543000E+01 4.010000E+00 1.133000E+01 +178 1 5.270000E+00 8.170000E+00 2.305000E+01 +179 1 7.670000E+00 2.964000E+01 3.700000E-01 +180 1 8.700000E-01 2.032000E+01 3.475000E+01 +181 1 6.880000E+00 3.688000E+01 5.760000E+00 +182 1 2.034000E+01 2.438000E+01 7.170000E+00 +183 1 2.680000E+01 2.198000E+01 1.000000E-02 +184 1 1.444000E+01 2.689000E+01 1.594000E+01 +185 1 3.904000E+01 2.121000E+01 9.920000E+00 +186 1 9.170000E+00 3.546000E+01 4.400000E-01 +187 1 1.350000E+01 1.685000E+01 5.530000E+00 +188 1 7.110000E+00 2.915000E+01 1.820000E+01 +189 1 3.826000E+01 1.259000E+01 2.531000E+01 +190 1 1.024000E+01 1.480000E+00 1.877000E+01 +191 1 3.318000E+01 2.380000E+00 1.160000E+00 +192 1 1.620000E+01 2.425000E+01 2.638000E+01 +193 1 3.329000E+01 1.363000E+01 1.299000E+01 +194 1 2.751000E+01 2.008000E+01 1.454000E+01 +195 1 6.290000E+00 2.970000E+01 6.260000E+00 +196 1 2.577000E+01 1.073000E+01 1.675000E+01 +197 1 1.178000E+01 2.553000E+01 2.947000E+01 +198 1 1.227000E+01 2.341000E+01 1.374000E+01 +199 1 3.420000E+00 3.994000E+01 3.429000E+01 +200 1 7.020000E+00 3.270000E+00 1.405000E+01 +201 1 3.130000E+01 8.500000E-01 3.230000E+01 +202 1 3.793000E+01 6.070000E+00 2.987000E+01 +203 1 5.770000E+00 2.558000E+01 2.327000E+01 +204 1 3.144000E+01 3.996000E+01 2.539000E+01 +205 1 2.692000E+01 2.118000E+01 2.730000E+00 +206 1 1.698000E+01 1.947000E+01 3.821000E+01 +207 1 2.264000E+01 3.201000E+01 3.543000E+01 +208 1 3.579000E+01 8.900000E-01 2.210000E+00 +209 1 2.386000E+01 9.300000E-01 7.290000E+00 +210 1 1.831000E+01 2.571000E+01 8.400000E-01 +211 1 1.325000E+01 1.549000E+01 1.296000E+01 +212 1 2.693000E+01 3.916000E+01 3.400000E-01 +213 1 2.757000E+01 1.330000E+01 1.579000E+01 +214 1 3.146000E+01 2.151000E+01 2.460000E+01 +215 1 5.010000E+00 2.472000E+01 1.316000E+01 +216 1 3.586000E+01 7.470000E+00 1.382000E+01 +217 1 2.176000E+01 1.877000E+01 1.732000E+01 +218 1 7.300000E+00 1.480000E+01 7.050000E+00 +219 1 8.680000E+00 2.746000E+01 7.610000E+00 +220 1 3.326000E+01 3.281000E+01 1.580000E+01 +221 1 2.980000E+00 1.509000E+01 2.820000E+01 +222 1 3.621000E+01 1.533000E+01 1.612000E+01 +223 1 8.640000E+00 9.260000E+00 1.227000E+01 +224 1 2.920000E+01 1.315000E+01 2.229000E+01 +225 1 1.842000E+01 3.040000E+00 2.652000E+01 +226 1 6.990000E+00 1.572000E+01 3.156000E+01 +227 1 9.330000E+00 4.450000E+00 3.682000E+01 +228 1 3.521000E+01 1.321000E+01 9.970000E+00 +229 1 1.032000E+01 1.774000E+01 3.277000E+01 +230 1 3.870000E+01 2.491000E+01 3.721000E+01 +231 1 2.480000E+00 3.320000E+01 3.706000E+01 +232 1 3.795000E+01 5.200000E+00 2.095000E+01 +233 1 1.240000E+00 1.685000E+01 1.170000E+01 +234 1 2.528000E+01 3.293000E+01 3.957000E+01 +235 1 3.658000E+01 3.679000E+01 1.689000E+01 +236 1 1.325000E+01 2.419000E+01 4.700000E+00 +237 1 1.819000E+01 4.320000E+00 0.000000E+00 +238 1 3.282000E+01 7.330000E+00 3.172000E+01 +239 1 5.030000E+00 3.222000E+01 1.552000E+01 +240 1 6.640000E+00 3.435000E+01 1.538000E+01 +241 1 7.250000E+00 8.860000E+00 3.137000E+01 +242 1 2.514000E+01 5.190000E+00 5.740000E+00 +243 1 1.975000E+01 2.949000E+01 2.054000E+01 +244 1 2.737000E+01 2.537000E+01 9.950000E+00 +245 1 1.586000E+01 1.974000E+01 9.550000E+00 +246 1 3.506000E+01 2.875000E+01 3.141000E+01 +247 1 2.802000E+01 2.129000E+01 1.900000E+01 +248 1 3.022000E+01 2.140000E+01 3.370000E+01 +249 1 7.530000E+00 1.148000E+01 1.661000E+01 +250 1 2.137000E+01 2.405000E+01 1.341000E+01 +251 1 8.940000E+00 1.907000E+01 2.363000E+01 +252 1 2.814000E+01 3.540000E+01 1.704000E+01 +253 1 2.201000E+01 1.323000E+01 5.790000E+00 +254 1 3.282000E+01 1.123000E+01 2.798000E+01 +255 1 3.007000E+01 3.075000E+01 3.564000E+01 +256 1 2.144000E+01 2.451000E+01 3.577000E+01 +257 1 2.238000E+01 2.254000E+01 6.560000E+00 +258 1 2.965000E+01 3.416000E+01 2.582000E+01 +259 1 3.839000E+01 3.504000E+01 3.685000E+01 +260 1 3.415000E+01 1.119000E+01 3.936000E+01 +261 1 3.310000E+01 1.422000E+01 2.646000E+01 +262 1 1.370000E+01 3.952000E+01 1.585000E+01 +263 1 1.279000E+01 2.395000E+01 2.746000E+01 +264 1 1.760000E+00 3.403000E+01 1.054000E+01 +265 1 1.049000E+01 7.180000E+00 2.963000E+01 +266 1 1.886000E+01 4.200000E+00 1.764000E+01 +267 1 7.570000E+00 1.001000E+01 8.850000E+00 +268 1 2.180000E+01 2.746000E+01 3.128000E+01 +269 1 3.308000E+01 2.905000E+01 1.539000E+01 +270 1 3.186000E+01 2.445000E+01 6.800000E+00 +271 1 3.047000E+01 2.204000E+01 6.050000E+00 +272 1 1.734000E+01 2.366000E+01 3.421000E+01 +273 1 1.277000E+01 2.862000E+01 2.138000E+01 +274 1 9.830000E+00 2.602000E+01 1.516000E+01 +275 1 3.661000E+01 1.411000E+01 2.375000E+01 +276 1 1.343000E+01 1.414000E+01 2.735000E+01 +277 1 1.653000E+01 2.172000E+01 2.870000E+00 +278 1 2.107000E+01 2.185000E+01 3.690000E+01 +279 1 3.664000E+01 3.410000E+01 2.809000E+01 +280 1 3.016000E+01 2.572000E+01 2.045000E+01 +281 1 1.800000E+00 1.859000E+01 6.690000E+00 +282 1 9.300000E-01 2.920000E+00 3.291000E+01 +283 1 1.215000E+01 2.864000E+01 5.550000E+00 +284 1 1.697000E+01 3.419000E+01 1.006000E+01 +285 1 1.210000E+00 4.930000E+00 4.830000E+00 +286 1 1.177000E+01 4.940000E+00 1.829000E+01 +287 1 2.625000E+01 7.380000E+00 2.798000E+01 +288 1 9.000000E-01 9.530000E+00 2.272000E+01 +289 1 1.592000E+01 1.530000E+01 1.692000E+01 +290 1 2.390000E+00 1.613000E+01 6.940000E+00 +291 1 3.898000E+01 7.710000E+00 8.020000E+00 +292 1 3.644000E+01 2.475000E+01 3.385000E+01 +293 1 2.802000E+01 3.480000E+00 4.028000E+01 +294 1 3.279000E+01 2.458000E+01 2.784000E+01 +295 1 1.913000E+01 3.837000E+01 2.331000E+01 +296 1 2.613000E+01 3.081000E+01 2.674000E+01 +297 1 2.532000E+01 3.771000E+01 1.013000E+01 +298 1 1.711000E+01 2.262000E+01 1.300000E+01 +299 1 2.871000E+01 1.246000E+01 1.832000E+01 +300 1 1.272000E+01 4.620000E+00 1.570000E+01 +301 1 2.197000E+01 2.425000E+01 2.139000E+01 +302 1 8.500000E+00 3.999000E+01 2.546000E+01 +303 1 4.070000E+00 3.246000E+01 4.270000E+00 +304 1 4.013000E+01 2.952000E+01 1.460000E+01 +305 1 5.930000E+00 3.346000E+01 2.326000E+01 +306 1 1.439000E+01 9.140000E+00 2.484000E+01 +307 1 9.330000E+00 6.640000E+00 2.131000E+01 +308 1 1.420000E+00 3.616000E+01 1.303000E+01 +309 1 2.305000E+01 2.713000E+01 1.359000E+01 +310 1 1.925000E+01 2.965000E+01 3.961000E+01 +311 1 2.497000E+01 6.660000E+00 1.485000E+01 +312 1 2.556000E+01 2.865000E+01 2.880000E+01 +313 1 7.550000E+00 2.085000E+01 3.045000E+01 +314 1 1.802000E+01 2.925000E+01 3.721000E+01 +315 1 1.246000E+01 3.098000E+01 2.556000E+01 +316 1 2.276000E+01 1.251000E+01 2.868000E+01 +317 1 3.486000E+01 2.344000E+01 3.855000E+01 +318 1 6.280000E+00 3.151000E+01 3.906000E+01 +319 1 3.735000E+01 2.264000E+01 3.812000E+01 +320 1 1.332000E+01 8.980000E+00 7.770000E+00 +321 1 7.600000E+00 3.136000E+01 7.920000E+00 +322 1 3.200000E+00 2.920000E+00 5.280000E+00 +323 1 8.170000E+00 3.254000E+01 2.026000E+01 +324 1 3.333000E+01 1.170000E+00 1.636000E+01 +325 1 6.700000E+00 2.234000E+01 2.669000E+01 +326 1 6.900000E+00 1.025000E+01 1.160000E+00 +327 1 2.358000E+01 5.690000E+00 2.170000E+01 +328 1 6.430000E+00 2.517000E+01 1.905000E+01 +329 1 2.326000E+01 8.260000E+00 2.295000E+01 +330 1 2.460000E+01 5.410000E+00 4.700000E-01 +331 1 1.027000E+01 3.768000E+01 9.570000E+00 +332 1 9.450000E+00 1.871000E+01 3.017000E+01 +333 1 2.388000E+01 3.240000E+01 3.140000E+00 +334 1 1.889000E+01 2.567000E+01 1.466000E+01 +335 1 2.108000E+01 3.427000E+01 3.588000E+01 +336 1 3.488000E+01 3.803000E+01 2.242000E+01 +337 1 3.365000E+01 1.929000E+01 1.290000E+01 +338 1 1.810000E+01 3.344000E+01 1.303000E+01 +339 1 2.758000E+01 1.885000E+01 3.407000E+01 +340 1 3.829000E+01 2.758000E+01 7.120000E+00 +341 1 2.168000E+01 3.619000E+01 2.075000E+01 +342 1 5.040000E+00 2.573000E+01 5.050000E+00 +343 1 1.410000E+00 3.445000E+01 2.788000E+01 +344 1 2.773000E+01 1.125000E+01 3.333000E+01 +345 1 2.771000E+01 2.476000E+01 3.514000E+01 +346 1 2.428000E+01 1.029000E+01 2.774000E+01 +347 1 3.090000E+00 2.826000E+01 2.660000E+01 +348 1 3.362000E+01 1.246000E+01 1.582000E+01 +349 1 3.486000E+01 7.960000E+00 2.133000E+01 +350 1 8.200000E-01 3.203000E+01 2.350000E+01 +351 1 3.545000E+01 3.597000E+01 2.943000E+01 +352 1 8.600000E-01 1.621000E+01 1.422000E+01 +353 1 3.739000E+01 3.666000E+01 1.962000E+01 +354 1 2.228000E+01 2.954000E+01 3.150000E+00 +355 1 2.835000E+01 5.820000E+00 7.670000E+00 +356 1 9.200000E-01 2.790000E+00 3.912000E+01 +357 1 3.029000E+01 1.368000E+01 1.318000E+01 +358 1 9.330000E+00 2.945000E+01 3.619000E+01 +359 1 2.842000E+01 4.110000E+00 2.477000E+01 +360 1 3.226000E+01 3.613000E+01 3.814000E+01 +361 1 1.100000E+01 1.278000E+01 1.770000E+00 +362 1 4.630000E+00 2.791000E+01 1.784000E+01 +363 1 1.707000E+01 6.750000E+00 2.289000E+01 +364 1 1.461000E+01 2.572000E+01 2.945000E+01 +365 1 3.159000E+01 2.440000E+01 3.511000E+01 +366 1 3.020000E+01 1.310000E+00 1.446000E+01 +367 1 3.759000E+01 2.400000E+00 6.600000E+00 +368 1 2.129000E+01 3.053000E+01 3.711000E+01 +369 1 3.927000E+01 3.698000E+01 3.886000E+01 +370 1 2.680000E+01 1.916000E+01 2.140000E+01 +371 1 1.641000E+01 3.931000E+01 2.595000E+01 +372 1 9.690000E+00 2.920000E+01 1.350000E+01 +373 1 2.753000E+01 3.731000E+01 1.496000E+01 +374 1 3.919000E+01 3.481000E+01 2.686000E+01 +375 1 4.580000E+00 3.495000E+01 3.575000E+01 +376 1 1.669000E+01 3.878000E+01 1.774000E+01 +377 1 3.577000E+01 2.542000E+01 8.300000E-01 +378 1 2.120000E+00 7.530000E+00 1.505000E+01 +379 1 2.696000E+01 1.639000E+01 2.185000E+01 +380 1 1.869000E+01 2.578000E+01 3.481000E+01 +381 1 3.108000E+01 2.050000E+00 1.130000E+01 +382 1 2.538000E+01 2.567000E+01 1.472000E+01 +383 1 1.538000E+01 3.608000E+01 4.100000E+00 +384 1 1.799000E+01 1.564000E+01 7.600000E+00 +385 1 1.348000E+01 2.671000E+01 3.384000E+01 +386 1 2.680000E+01 1.150000E+01 2.732000E+01 +387 1 1.540000E+00 1.068000E+01 6.000000E+00 +388 1 4.023000E+01 1.474000E+01 5.400000E+00 +389 1 3.603000E+01 1.044000E+01 1.040000E+00 +390 1 4.027000E+01 2.082000E+01 1.968000E+01 +391 1 8.140000E+00 7.470000E+00 1.017000E+01 +392 1 2.301000E+01 2.329000E+01 2.513000E+01 +393 1 2.445000E+01 3.558000E+01 3.913000E+01 +394 1 1.612000E+01 7.370000E+00 3.142000E+01 +395 1 5.760000E+00 3.391000E+01 1.460000E+00 +396 1 3.129000E+01 8.290000E+00 2.114000E+01 +397 1 2.631000E+01 3.050000E+00 2.120000E+00 +398 1 9.910000E+00 1.148000E+01 4.270000E+00 +399 1 3.146000E+01 1.048000E+01 9.000000E-02 +400 1 3.029000E+01 2.582000E+01 3.696000E+01 +401 1 9.700000E-01 3.600000E-01 6.090000E+00 +402 1 3.565000E+01 1.051000E+01 3.233000E+01 +403 1 1.931000E+01 3.769000E+01 1.438000E+01 +404 1 3.355000E+01 3.627000E+01 1.898000E+01 +405 1 1.822000E+01 3.092000E+01 1.960000E+00 +406 1 2.619000E+01 2.340000E+01 4.470000E+00 +407 1 3.452000E+01 1.894000E+01 1.873000E+01 +408 1 1.800000E+01 1.734000E+01 2.255000E+01 +409 1 2.946000E+01 3.888000E+01 3.664000E+01 +410 1 2.969000E+01 3.251000E+01 2.916000E+01 +411 1 3.049000E+01 3.154000E+01 1.894000E+01 +412 1 9.580000E+00 2.081000E+01 1.784000E+01 +413 1 6.710000E+00 3.164000E+01 1.056000E+01 +414 1 2.241000E+01 2.598000E+01 2.520000E+01 +415 1 9.400000E-01 3.714000E+01 7.120000E+00 +416 1 1.092000E+01 3.565000E+01 1.807000E+01 +417 1 3.221000E+01 3.286000E+01 2.858000E+01 +418 1 1.093000E+01 2.681000E+01 2.706000E+01 +419 1 3.190000E+00 3.247000E+01 3.307000E+01 +420 1 3.676000E+01 3.171000E+01 1.952000E+01 +421 1 2.035000E+01 1.811000E+01 2.446000E+01 +422 1 2.091000E+01 6.640000E+00 2.509000E+01 +423 1 1.010000E+01 1.037000E+01 1.606000E+01 +424 1 2.802000E+01 5.650000E+00 3.563000E+01 +425 1 3.514000E+01 3.759000E+01 3.460000E+01 +426 1 1.331000E+01 6.790000E+00 2.066000E+01 +427 1 3.670000E+01 3.280000E+00 1.023000E+01 +428 1 2.502000E+01 1.631000E+01 4.016000E+01 +429 1 3.680000E+01 3.883000E+01 3.693000E+01 +430 1 2.102000E+01 2.652000E+01 2.284000E+01 +431 1 3.128000E+01 1.447000E+01 3.730000E+01 +432 1 3.794000E+01 2.310000E+01 8.370000E+00 +433 1 5.030000E+00 3.022000E+01 2.741000E+01 +434 1 2.962000E+01 1.390000E+00 2.630000E+00 +435 1 7.470000E+00 1.300000E-01 8.060000E+00 +436 1 3.823000E+01 5.110000E+00 4.540000E+00 +437 1 3.993000E+01 2.487000E+01 2.555000E+01 +438 1 3.419000E+01 2.951000E+01 2.442000E+01 +439 1 2.047000E+01 2.120000E+00 1.372000E+01 +440 1 3.523000E+01 2.256000E+01 8.270000E+00 +441 1 2.551000E+01 3.081000E+01 9.110000E+00 +442 1 1.465000E+01 2.800000E+00 2.347000E+01 +443 1 2.903000E+01 1.144000E+01 1.204000E+01 +444 1 2.534000E+01 9.610000E+00 6.210000E+00 +445 1 3.062000E+01 7.070000E+00 2.967000E+01 +446 1 2.014000E+01 2.659000E+01 1.931000E+01 +447 1 2.399000E+01 1.880000E+01 3.480000E+01 +448 1 5.950000E+00 4.015000E+01 2.619000E+01 +449 1 1.404000E+01 3.854000E+01 3.780000E+00 +450 1 2.456000E+01 3.041000E+01 1.332000E+01 +451 1 2.196000E+01 1.540000E+01 3.747000E+01 +452 1 1.775000E+01 2.995000E+01 1.391000E+01 +453 1 3.000000E+01 2.423000E+01 1.001000E+01 +454 1 2.089000E+01 1.681000E+01 1.216000E+01 +455 1 1.788000E+01 2.556000E+01 7.570000E+00 +456 1 4.270000E+00 3.488000E+01 2.894000E+01 +457 1 2.754000E+01 3.101000E+01 2.264000E+01 +458 1 3.745000E+01 1.266000E+01 1.446000E+01 +459 1 1.948000E+01 8.000000E-02 3.541000E+01 +460 1 2.737000E+01 1.305000E+01 7.530000E+00 +461 1 3.302000E+01 2.540000E+01 2.041000E+01 +462 1 1.480000E+00 1.862000E+01 3.188000E+01 +463 1 7.900000E+00 1.395000E+01 1.408000E+01 +464 1 2.880000E+00 2.228000E+01 2.579000E+01 +465 1 3.848000E+01 3.161000E+01 2.994000E+01 +466 1 2.209000E+01 5.990000E+00 3.548000E+01 +467 1 2.863000E+01 3.632000E+01 3.624000E+01 +468 1 3.886000E+01 6.300000E+00 5.500000E-01 +469 1 3.331000E+01 1.047000E+01 4.380000E+00 +470 1 1.915000E+01 3.204000E+01 1.581000E+01 +471 1 8.850000E+00 2.500000E+01 2.963000E+01 +472 1 8.900000E+00 2.761000E+01 2.023000E+01 +473 1 1.218000E+01 1.500000E+01 2.970000E+00 +474 1 3.538000E+01 2.514000E+01 2.735000E+01 +475 1 3.498000E+01 3.620000E+00 1.695000E+01 +476 1 2.180000E+00 2.672000E+01 3.022000E+01 +477 1 2.349000E+01 3.983000E+01 1.417000E+01 +478 1 2.961000E+01 2.362000E+01 1.624000E+01 +479 1 1.777000E+01 4.920000E+00 3.195000E+01 +480 1 2.344000E+01 3.231000E+01 2.207000E+01 +481 1 3.998000E+01 9.400000E+00 3.494000E+01 +482 1 2.316000E+01 2.077000E+01 2.094000E+01 +483 1 3.072000E+01 3.947000E+01 1.320000E+00 +484 1 3.821000E+01 3.383000E+01 6.130000E+00 +485 1 2.503000E+01 2.028000E+01 5.030000E+00 +486 1 8.130000E+00 2.060000E+00 2.800000E-01 +487 1 2.430000E+01 2.911000E+01 4.990000E+00 +488 1 2.613000E+01 2.770000E+00 2.049000E+01 +489 1 3.885000E+01 2.315000E+01 1.970000E+01 +490 1 3.372000E+01 2.897000E+01 3.922000E+01 +491 1 1.540000E+01 3.012000E+01 2.314000E+01 +492 1 2.695000E+01 2.389000E+01 1.219000E+01 +493 1 3.379000E+01 3.924000E+01 2.480000E+00 +494 1 3.960000E+00 2.416000E+01 3.545000E+01 +495 1 1.618000E+01 2.350000E+01 3.071000E+01 +496 1 2.070000E+00 1.474000E+01 3.868000E+01 +497 1 3.018000E+01 2.268000E+01 1.230000E+01 +498 1 2.320000E+01 2.918000E+01 2.774000E+01 +499 1 1.001000E+01 3.753000E+01 2.846000E+01 +500 1 2.132000E+01 2.645000E+01 1.565000E+01 +501 1 2.124000E+01 4.000000E-01 1.562000E+01 +502 1 2.089000E+01 3.840000E+00 3.390000E+00 +503 1 9.170000E+00 2.348000E+01 1.682000E+01 +504 1 3.598000E+01 1.163000E+01 1.901000E+01 +505 1 6.180000E+00 2.294000E+01 3.150000E+01 +506 1 2.943000E+01 2.030000E+01 1.530000E+00 +507 1 3.094000E+01 1.106000E+01 1.918000E+01 +508 1 7.800000E-01 2.906000E+01 2.530000E+01 +509 1 2.225000E+01 3.673000E+01 1.809000E+01 +510 1 2.905000E+01 3.090000E+01 4.890000E+00 +511 1 2.936000E+01 2.555000E+01 1.342000E+01 +512 1 3.532000E+01 3.460000E+00 3.339000E+01 +513 1 1.160000E+00 1.028000E+01 3.751000E+01 +514 1 2.057000E+01 3.865000E+01 2.644000E+01 +515 1 3.607000E+01 2.724000E+01 2.521000E+01 +516 1 2.070000E+00 2.438000E+01 1.330000E+01 +517 1 3.426000E+01 1.288000E+01 3.510000E+00 +518 1 1.031000E+01 1.441000E+01 1.237000E+01 +519 1 9.380000E+00 3.884000E+01 1.909000E+01 +520 1 1.407000E+01 8.440000E+00 4.290000E+00 +521 1 1.541000E+01 2.054000E+01 1.640000E+01 +522 1 2.758000E+01 1.626000E+01 1.016000E+01 +523 1 2.593000E+01 1.352000E+01 3.500000E+01 +524 1 1.201000E+01 2.840000E+00 2.228000E+01 +525 1 2.295000E+01 1.030000E+00 2.891000E+01 +526 1 1.343000E+01 3.535000E+01 1.220000E+00 +527 1 1.510000E+00 1.070000E+01 3.078000E+01 +528 1 1.510000E+00 3.334000E+01 1.352000E+01 +529 1 1.523000E+01 2.434000E+01 1.679000E+01 +530 1 7.270000E+00 1.314000E+01 3.473000E+01 +531 1 7.970000E+00 3.660000E+00 2.739000E+01 +532 1 1.714000E+01 3.790000E+01 3.372000E+01 +533 1 1.506000E+01 3.911000E+01 2.845000E+01 +534 1 1.887000E+01 1.030000E+01 1.960000E+01 +535 1 1.438000E+01 2.701000E+01 1.312000E+01 +536 1 8.390000E+00 3.570000E+00 2.481000E+01 +537 1 3.839000E+01 2.238000E+01 2.579000E+01 +538 1 1.575000E+01 1.470000E+00 2.340000E+00 +539 1 3.519000E+01 5.500000E-01 2.541000E+01 +540 1 2.842000E+01 2.741000E+01 3.819000E+01 +541 1 5.460000E+00 1.297000E+01 6.280000E+00 +542 1 8.890000E+00 2.460000E+00 8.160000E+00 +543 1 2.594000E+01 3.498000E+01 2.231000E+01 +544 1 1.479000E+01 2.808000E+01 5.580000E+00 +545 1 6.030000E+00 1.235000E+01 2.913000E+01 +546 1 3.869000E+01 3.718000E+01 1.300000E+01 +547 1 1.380000E+00 3.164000E+01 3.510000E+00 +548 1 3.547000E+01 2.438000E+01 6.340000E+00 +549 1 3.259000E+01 5.000000E-01 2.295000E+01 +550 1 1.518000E+01 6.600000E-01 1.028000E+01 +551 1 3.941000E+01 9.710000E+00 6.370000E+00 +552 1 2.449000E+01 2.411000E+01 2.216000E+01 +553 1 2.358000E+01 3.512000E+01 2.349000E+01 +554 1 2.868000E+01 2.597000E+01 2.906000E+01 +555 1 1.977000E+01 3.606000E+01 3.134000E+01 +556 1 1.723000E+01 2.773000E+01 1.903000E+01 +557 1 9.900000E+00 7.220000E+00 4.900000E-01 +558 1 3.167000E+01 3.729000E+01 1.212000E+01 +559 1 1.327000E+01 1.870000E+01 3.987000E+01 +560 1 7.720000E+00 2.210000E+01 1.457000E+01 +561 1 3.201000E+01 3.360000E+01 4.220000E+00 +562 1 2.924000E+01 1.310000E+00 2.747000E+01 +563 1 3.574000E+01 3.101000E+01 1.548000E+01 +564 1 2.924000E+01 3.047000E+01 3.831000E+01 +565 1 1.850000E+00 8.130000E+00 3.932000E+01 +566 1 1.161000E+01 2.185000E+01 8.210000E+00 +567 1 3.442000E+01 6.840000E+00 2.270000E+00 +568 1 3.389000E+01 1.524000E+01 3.643000E+01 +569 1 1.774000E+01 1.401000E+01 1.280000E+01 +570 1 1.943000E+01 2.805000E+01 8.920000E+00 +571 1 3.791000E+01 3.482000E+01 3.156000E+01 +572 1 9.810000E+00 6.760000E+00 1.259000E+01 +573 1 1.101000E+01 1.849000E+01 2.777000E+01 +574 1 3.854000E+01 2.472000E+01 2.208000E+01 +575 1 5.050000E+00 1.827000E+01 1.847000E+01 +576 1 3.709000E+01 3.437000E+01 2.310000E+00 +577 1 1.735000E+01 3.308000E+01 9.600000E-01 +578 1 2.036000E+01 1.672000E+01 8.720000E+00 +579 1 2.025000E+01 1.720000E+00 3.060000E+01 +580 1 2.330000E+01 3.287000E+01 1.820000E+01 +581 1 2.037000E+01 1.620000E+01 2.636000E+01 +582 1 2.366000E+01 3.854000E+01 3.295000E+01 +583 1 1.795000E+01 3.777000E+01 2.290000E+00 +584 1 3.894000E+01 1.893000E+01 3.680000E+01 +585 1 1.733000E+01 1.950000E+00 1.934000E+01 +586 1 2.097000E+01 2.876000E+01 1.299000E+01 +587 1 1.085000E+01 1.202000E+01 2.193000E+01 +588 1 1.420000E+01 1.297000E+01 7.240000E+00 +589 1 3.595000E+01 3.720000E+01 2.476000E+01 +590 1 2.613000E+01 3.840000E+00 3.338000E+01 +591 1 2.638000E+01 1.730000E+01 1.315000E+01 +592 1 3.991000E+01 3.899000E+01 3.256000E+01 +593 1 3.695000E+01 3.579000E+01 4.020000E+01 +594 1 1.289000E+01 3.423000E+01 2.926000E+01 +595 1 2.269000E+01 2.160000E+01 3.927000E+01 +596 1 9.350000E+00 1.344000E+01 3.833000E+01 +597 1 1.540000E+01 5.170000E+00 2.454000E+01 +598 1 2.038000E+01 2.065000E+01 2.232000E+01 +599 1 1.578000E+01 3.991000E+01 2.335000E+01 +600 1 5.790000E+00 1.380000E+00 3.840000E+00 +601 1 3.080000E+00 8.560000E+00 3.132000E+01 +602 1 1.149000E+01 3.351000E+01 3.040000E+00 +603 1 2.710000E+00 6.500000E-01 2.371000E+01 +604 1 1.380000E+00 1.240000E+00 2.604000E+01 +605 1 2.461000E+01 1.463000E+01 2.216000E+01 +606 1 3.489000E+01 3.560000E+01 1.214000E+01 +607 1 2.110000E+01 1.130000E+01 3.203000E+01 +608 1 2.710000E+00 2.171000E+01 1.921000E+01 +609 1 2.371000E+01 2.064000E+01 1.711000E+01 +610 1 2.608000E+01 3.770000E+01 2.926000E+01 +611 1 9.100000E-01 3.790000E+00 2.455000E+01 +612 1 1.232000E+01 3.946000E+01 2.822000E+01 +613 1 7.920000E+00 3.155000E+01 3.494000E+01 +614 1 8.640000E+00 1.228000E+01 3.600000E-01 +615 1 1.209000E+01 1.765000E+01 1.449000E+01 +616 1 9.430000E+00 3.682000E+01 2.133000E+01 +617 1 3.655000E+01 3.211000E+01 1.296000E+01 +618 1 8.400000E+00 3.299000E+01 2.640000E+00 +619 1 3.150000E+01 1.270000E+00 2.872000E+01 +620 1 2.434000E+01 2.294000E+01 9.930000E+00 +621 1 7.010000E+00 3.645000E+01 2.206000E+01 +622 1 2.411000E+01 7.500000E+00 7.340000E+00 +623 1 3.769000E+01 2.512000E+01 1.061000E+01 +624 1 2.642000E+01 2.827000E+01 1.392000E+01 +625 1 1.534000E+01 2.490000E+00 3.676000E+01 +626 1 3.848000E+01 1.350000E+00 9.000000E+00 +627 1 2.170000E+01 3.500000E+01 9.420000E+00 +628 1 3.720000E+00 3.177000E+01 2.306000E+01 +629 1 1.584000E+01 9.150000E+00 2.081000E+01 +630 1 3.619000E+01 2.571000E+01 3.644000E+01 +631 1 5.290000E+00 4.017000E+01 3.818000E+01 +632 1 2.045000E+01 3.980000E+00 3.903000E+01 +633 1 2.976000E+01 1.756000E+01 6.560000E+00 +634 1 2.771000E+01 2.528000E+01 1.758000E+01 +635 1 2.285000E+01 2.420000E+00 3.632000E+01 +636 1 3.797000E+01 1.128000E+01 8.220000E+00 +637 1 1.619000E+01 3.179000E+01 2.109000E+01 +638 1 1.248000E+01 2.994000E+01 1.643000E+01 +639 1 3.304000E+01 1.518000E+01 4.690000E+00 +640 1 1.678000E+01 2.830000E+01 1.621000E+01 +641 1 1.230000E+01 3.206000E+01 1.360000E+01 +642 1 3.749000E+01 1.930000E+01 8.980000E+00 +643 1 3.385000E+01 2.638000E+01 1.406000E+01 +644 1 1.365000E+01 3.490000E+00 3.058000E+01 +645 1 6.730000E+00 2.010000E+01 1.255000E+01 +646 1 3.550000E+01 3.928000E+01 1.700000E+01 +647 1 3.594000E+01 6.490000E+00 4.005000E+01 +648 1 3.877000E+01 3.043000E+01 1.877000E+01 +649 1 9.340000E+00 2.314000E+01 3.499000E+01 +650 1 3.007000E+01 2.930000E+01 1.071000E+01 +651 1 3.420000E+01 1.243000E+01 3.417000E+01 +652 1 6.270000E+00 3.567000E+01 3.941000E+01 +653 1 3.647000E+01 2.536000E+01 2.990000E+01 +654 1 3.468000E+01 8.800000E-01 3.509000E+01 +655 1 3.280000E+01 2.184000E+01 1.227000E+01 +656 1 1.615000E+01 1.291000E+01 1.584000E+01 +657 1 3.990000E+01 3.177000E+01 1.626000E+01 +658 1 5.200000E+00 2.090000E+01 3.293000E+01 +659 1 3.609000E+01 7.970000E+00 3.355000E+01 +660 1 2.126000E+01 1.560000E+00 1.093000E+01 +661 1 3.862000E+01 1.842000E+01 1.982000E+01 +662 1 1.861000E+01 1.123000E+01 2.674000E+01 +663 1 2.391000E+01 1.732000E+01 3.061000E+01 +664 1 6.350000E+00 1.859000E+01 2.796000E+01 +665 1 3.644000E+01 6.380000E+00 1.109000E+01 +666 1 1.520000E+00 2.203000E+01 1.682000E+01 +667 1 3.213000E+01 1.863000E+01 5.570000E+00 +668 1 3.212000E+01 2.800000E+01 8.050000E+00 +669 1 3.344000E+01 1.076000E+01 1.339000E+01 +670 1 1.797000E+01 3.840000E+00 3.663000E+01 +671 1 7.730000E+00 5.790000E+00 3.015000E+01 +672 1 2.891000E+01 2.616000E+01 2.630000E+01 +673 1 1.781000E+01 1.785000E+01 4.280000E+00 +674 1 2.327000E+01 2.643000E+01 3.553000E+01 +675 1 8.190000E+00 3.984000E+01 3.549000E+01 +676 1 3.472000E+01 2.874000E+01 2.162000E+01 +677 1 2.685000E+01 2.769000E+01 8.010000E+00 +678 1 1.593000E+01 1.886000E+01 3.164000E+01 +679 1 1.452000E+01 6.930000E+00 1.527000E+01 +680 1 1.704000E+01 2.665000E+01 2.424000E+01 +681 1 3.051000E+01 2.600000E-01 2.126000E+01 +682 1 3.610000E+00 1.666000E+01 4.260000E+00 +683 1 1.560000E+00 2.023000E+01 2.785000E+01 +684 1 7.960000E+00 6.270000E+00 1.879000E+01 +685 1 1.494000E+01 2.269000E+01 2.395000E+01 +686 1 3.239000E+01 3.789000E+01 1.615000E+01 +687 1 2.933000E+01 3.430000E+01 1.219000E+01 +688 1 3.053000E+01 3.060000E+01 1.596000E+01 +689 1 3.924000E+01 4.960000E+00 1.373000E+01 +690 1 3.640000E+00 7.120000E+00 3.330000E+00 +691 1 1.567000E+01 3.612000E+01 4.030000E+01 +692 1 1.589000E+01 1.675000E+01 1.275000E+01 +693 1 2.139000E+01 2.311000E+01 1.618000E+01 +694 1 2.488000E+01 2.183000E+01 1.498000E+01 +695 1 3.215000E+01 3.492000E+01 2.542000E+01 +696 1 2.819000E+01 1.378000E+01 3.237000E+01 +697 1 3.815000E+01 1.373000E+01 3.633000E+01 +698 1 4.340000E+00 3.811000E+01 5.780000E+00 +699 1 4.390000E+00 3.276000E+01 3.068000E+01 +700 1 2.930000E+01 4.008000E+01 1.894000E+01 +701 1 1.313000E+01 1.999000E+01 9.970000E+00 +702 1 3.142000E+01 3.774000E+01 2.725000E+01 +703 1 2.779000E+01 3.169000E+01 8.130000E+00 +704 1 5.340000E+00 3.398000E+01 9.790000E+00 +705 1 2.602000E+01 6.270000E+00 9.090000E+00 +706 1 2.247000E+01 2.886000E+01 1.950000E+01 +707 1 4.650000E+00 3.260000E+00 8.180000E+00 +708 1 3.039000E+01 3.515000E+01 2.966000E+01 +709 1 2.434000E+01 7.210000E+00 3.155000E+01 +710 1 1.250000E+00 5.230000E+00 3.544000E+01 +711 1 1.390000E+01 2.491000E+01 2.517000E+01 +712 1 3.581000E+01 1.145000E+01 2.867000E+01 +713 1 5.800000E-01 1.696000E+01 3.703000E+01 +714 1 2.303000E+01 3.198000E+01 1.486000E+01 +715 1 2.135000E+01 1.115000E+01 1.687000E+01 +716 1 3.806000E+01 3.995000E+01 1.678000E+01 +717 1 4.140000E+00 3.313000E+01 1.790000E+01 +718 1 3.480000E+01 3.762000E+01 6.200000E-01 +719 1 3.188000E+01 1.792000E+01 2.097000E+01 +720 1 2.350000E+00 1.273000E+01 2.318000E+01 +721 1 2.728000E+01 1.889000E+01 9.160000E+00 +722 1 3.408000E+01 3.084000E+01 3.294000E+01 +723 1 3.240000E+00 1.244000E+01 2.943000E+01 +724 1 2.051000E+01 1.324000E+01 1.061000E+01 +725 1 3.179000E+01 2.032000E+01 3.777000E+01 +726 1 1.300000E+00 3.036000E+01 3.260000E+01 +727 1 5.810000E+00 3.539000E+01 2.529000E+01 +728 1 1.356000E+01 4.050000E+00 7.980000E+00 +729 1 1.280000E+00 1.406000E+01 3.084000E+01 +730 1 3.751000E+01 9.910000E+00 1.419000E+01 +731 1 3.560000E+00 2.043000E+01 3.572000E+01 +732 1 2.807000E+01 1.272000E+01 2.957000E+01 +733 1 1.030000E+01 3.771000E+01 3.320000E+00 +734 1 2.519000E+01 3.108000E+01 3.485000E+01 +735 1 4.210000E+00 1.015000E+01 1.481000E+01 +736 1 3.297000E+01 3.553000E+01 3.800000E-01 +737 1 1.391000E+01 4.250000E+00 2.798000E+01 +738 1 3.163000E+01 3.147000E+01 2.522000E+01 +739 1 6.800000E-01 9.000000E+00 9.580000E+00 +740 1 3.693000E+01 1.269000E+01 2.138000E+01 +741 1 3.779000E+01 1.676000E+01 2.900000E+00 +742 1 3.409000E+01 3.193000E+01 3.230000E+00 +743 1 2.104000E+01 1.530000E+00 3.802000E+01 +744 1 3.698000E+01 8.310000E+00 2.317000E+01 +745 1 1.636000E+01 3.968000E+01 2.039000E+01 +746 1 1.718000E+01 2.280000E+01 1.567000E+01 +747 1 2.872000E+01 3.545000E+01 2.363000E+01 +748 1 1.478000E+01 2.706000E+01 1.992000E+01 +749 1 2.920000E+00 2.723000E+01 4.320000E+00 +750 1 9.980000E+00 3.424000E+01 2.143000E+01 +751 1 3.957000E+01 3.017000E+01 3.709000E+01 +752 1 4.000000E+00 3.655000E+01 7.970000E+00 +753 1 3.551000E+01 4.002000E+01 2.020000E+01 +754 1 3.830000E+00 3.087000E+01 6.520000E+00 +755 1 2.354000E+01 2.238000E+01 4.140000E+00 +756 1 1.044000E+01 3.541000E+01 5.160000E+00 +757 1 2.194000E+01 3.613000E+01 3.780000E+01 +758 1 2.092000E+01 2.245000E+01 1.115000E+01 +759 1 3.496000E+01 1.040000E+00 1.250000E+01 +760 1 3.112000E+01 2.356000E+01 2.265000E+01 +761 1 4.018000E+01 2.631000E+01 1.422000E+01 +762 1 3.725000E+01 2.257000E+01 4.990000E+00 +763 1 4.260000E+00 7.250000E+00 5.800000E-01 +764 1 1.535000E+01 2.568000E+01 4.500000E+00 +765 1 2.280000E+00 7.200000E+00 2.548000E+01 +766 1 1.892000E+01 2.767000E+01 3.048000E+01 +767 1 3.965000E+01 2.569000E+01 8.820000E+00 +768 1 3.997000E+01 2.795000E+01 1.922000E+01 +769 1 3.916000E+01 2.240000E+01 1.647000E+01 +770 1 2.000000E-02 1.028000E+01 2.766000E+01 +771 1 8.010000E+00 6.310000E+00 2.720000E+00 +772 1 1.906000E+01 3.198000E+01 2.144000E+01 +773 1 2.095000E+01 2.715000E+01 3.392000E+01 +774 1 3.462000E+01 2.642000E+01 3.263000E+01 +775 1 1.301000E+01 2.714000E+01 1.069000E+01 +776 1 1.523000E+01 2.320000E+00 6.840000E+00 +777 1 5.620000E+00 1.000000E-01 2.002000E+01 +778 1 5.430000E+00 8.100000E+00 8.940000E+00 +779 1 1.961000E+01 2.385000E+01 4.008000E+01 +780 1 1.642000E+01 1.774000E+01 3.617000E+01 +781 1 1.140000E+00 2.459000E+01 3.976000E+01 +782 1 6.360000E+00 7.020000E+00 3.485000E+01 +783 1 3.050000E+00 3.680000E+01 3.114000E+01 +784 1 3.819000E+01 3.930000E+01 1.971000E+01 +785 1 3.449000E+01 5.310000E+00 7.490000E+00 +786 1 2.447000E+01 2.977000E+01 2.104000E+01 +787 1 1.216000E+01 2.083000E+01 1.964000E+01 +788 1 3.000000E-02 1.740000E+01 3.406000E+01 +789 1 1.061000E+01 6.600000E-01 1.321000E+01 +790 1 6.150000E+00 1.853000E+01 3.426000E+01 +791 1 3.316000E+01 1.856000E+01 3.208000E+01 +792 1 9.170000E+00 1.165000E+01 1.375000E+01 +793 1 7.100000E+00 2.260000E+00 3.753000E+01 +794 1 3.203000E+01 8.540000E+00 2.772000E+01 +795 1 3.570000E+01 1.662000E+01 1.270000E+00 +796 1 1.294000E+01 1.035000E+01 2.984000E+01 +797 1 2.190000E+00 3.980000E+01 7.100000E-01 +798 1 3.700000E+01 1.581000E+01 3.798000E+01 +799 1 7.490000E+00 1.611000E+01 2.699000E+01 +800 1 1.770000E+01 3.511000E+01 2.850000E+00 +801 1 3.115000E+01 2.188000E+01 1.933000E+01 +802 1 1.725000E+01 7.210000E+00 2.589000E+01 +803 1 2.056000E+01 2.099000E+01 4.240000E+00 +804 1 9.800000E+00 8.470000E+00 4.960000E+00 +805 1 3.926000E+01 1.310000E+00 3.630000E+01 +806 1 1.438000E+01 1.603000E+01 3.682000E+01 +807 1 3.647000E+01 2.067000E+01 3.631000E+01 +808 1 6.610000E+00 2.971000E+01 3.295000E+01 +809 1 2.104000E+01 7.710000E+00 3.731000E+01 +810 1 1.582000E+01 3.212000E+01 1.447000E+01 +811 1 1.030000E+00 1.449000E+01 2.940000E+00 +812 1 9.300000E-01 5.000000E-01 3.422000E+01 +813 1 2.733000E+01 3.544000E+01 2.021000E+01 +814 1 1.997000E+01 8.780000E+00 3.361000E+01 +815 1 1.831000E+01 1.683000E+01 1.128000E+01 +816 1 4.900000E+00 9.750000E+00 2.688000E+01 +817 1 2.096000E+01 9.670000E+00 6.390000E+00 +818 1 8.240000E+00 2.498000E+01 3.239000E+01 +819 1 2.763000E+01 1.116000E+01 9.470000E+00 +820 1 3.852000E+01 3.052000E+01 1.193000E+01 +821 1 3.237000E+01 2.209000E+01 1.608000E+01 +822 1 3.000000E+01 2.932000E+01 2.511000E+01 +823 1 3.354000E+01 3.845000E+01 1.356000E+01 +824 1 1.186000E+01 2.160000E+00 3.527000E+01 +825 1 3.336000E+01 2.013000E+01 2.136000E+01 +826 1 3.470000E+01 1.719000E+01 3.890000E+00 +827 1 3.460000E+00 3.257000E+01 9.700000E-01 +828 1 1.512000E+01 3.043000E+01 1.635000E+01 +829 1 1.564000E+01 1.436000E+01 3.110000E+00 +830 1 1.960000E+00 3.510000E+00 2.854000E+01 +831 1 3.933000E+01 1.727000E+01 2.233000E+01 +832 1 6.770000E+00 2.061000E+01 1.888000E+01 +833 1 1.690000E+01 3.100000E+00 8.990000E+00 +834 1 7.920000E+00 1.209000E+01 2.119000E+01 +835 1 8.140000E+00 1.669000E+01 1.654000E+01 +836 1 1.356000E+01 3.261000E+01 1.777000E+01 +837 1 1.916000E+01 2.254000E+01 2.240000E+00 +838 1 8.200000E-01 1.630000E+00 9.600000E+00 +839 1 4.230000E+00 7.800000E-01 1.595000E+01 +840 1 3.256000E+01 3.110000E+01 1.334000E+01 +841 1 2.620000E+00 3.921000E+01 1.443000E+01 +842 1 2.916000E+01 2.898000E+01 2.530000E+00 +843 1 4.006000E+01 2.917000E+01 3.966000E+01 +844 1 9.600000E+00 3.287000E+01 1.425000E+01 +845 1 7.700000E+00 4.030000E+01 2.270000E+00 +846 1 2.284000E+01 1.328000E+01 3.290000E+01 +847 1 1.866000E+01 2.900000E-01 2.668000E+01 +848 1 5.620000E+00 1.563000E+01 2.383000E+01 +849 1 2.584000E+01 1.075000E+01 1.414000E+01 +850 1 3.147000E+01 3.050000E+00 5.580000E+00 +851 1 2.520000E+01 3.040000E+01 1.900000E-01 +852 1 2.617000E+01 2.138000E+01 2.898000E+01 +853 1 3.771000E+01 1.780000E+01 4.010000E+01 +854 1 1.203000E+01 3.870000E+01 1.346000E+01 +855 1 6.580000E+00 2.261000E+01 4.900000E-01 +856 1 2.727000E+01 3.260000E+00 1.314000E+01 +857 1 3.430000E+00 1.018000E+01 2.242000E+01 +858 1 1.162000E+01 2.183000E+01 2.590000E+00 +859 1 2.840000E+01 2.584000E+01 4.910000E+00 +860 1 2.730000E+00 1.896000E+01 1.988000E+01 +861 1 2.209000E+01 3.577000E+01 1.290000E+01 +862 1 2.057000E+01 6.120000E+00 1.587000E+01 +863 1 2.596000E+01 9.010000E+00 9.880000E+00 +864 1 1.852000E+01 1.698000E+01 1.500000E+01 +865 1 7.580000E+00 9.280000E+00 2.879000E+01 +866 1 2.592000E+01 1.074000E+01 1.900000E-01 +867 1 1.295000E+01 5.200000E+00 4.022000E+01 +868 1 2.274000E+01 1.780000E+01 2.731000E+01 +869 1 3.434000E+01 4.240000E+00 2.660000E+01 +870 1 1.378000E+01 3.530000E+01 2.066000E+01 +871 1 3.765000E+01 9.920000E+00 2.705000E+01 +872 1 3.754000E+01 2.837000E+01 3.605000E+01 +873 1 5.760000E+00 3.360000E+00 3.454000E+01 +874 1 3.029000E+01 2.226000E+01 2.898000E+01 +875 1 3.327000E+01 1.732000E+01 7.840000E+00 +876 1 3.632000E+01 1.310000E+01 6.250000E+00 +877 1 3.194000E+01 2.590000E+01 2.524000E+01 +878 1 1.028000E+01 1.960000E+00 4.490000E+00 +879 1 3.579000E+01 2.290000E+00 2.966000E+01 +880 1 3.942000E+01 3.196000E+01 6.600000E-01 +881 1 3.678000E+01 3.858000E+01 5.240000E+00 +882 1 1.144000E+01 3.168000E+01 3.634000E+01 +883 1 1.450000E+01 2.814000E+01 3.868000E+01 +884 1 3.402000E+01 1.046000E+01 2.060000E+01 +885 1 1.743000E+01 3.810000E+01 3.998000E+01 +886 1 3.809000E+01 3.529000E+01 2.441000E+01 +887 1 3.648000E+01 2.244000E+01 1.856000E+01 +888 1 3.363000E+01 1.148000E+01 2.301000E+01 +889 1 1.700000E+00 2.129000E+01 9.050000E+00 +890 1 7.440000E+00 2.906000E+01 2.745000E+01 +891 1 2.516000E+01 1.413000E+01 3.209000E+01 +892 1 1.770000E+00 1.710000E+00 2.115000E+01 +893 1 3.475000E+01 4.018000E+01 3.987000E+01 +894 1 3.282000E+01 3.888000E+01 3.845000E+01 +895 1 2.771000E+01 2.233000E+01 2.152000E+01 +896 1 1.500000E-01 3.264000E+01 6.430000E+00 +897 1 3.724000E+01 1.184000E+01 3.794000E+01 +898 1 1.817000E+01 3.143000E+01 2.934000E+01 +899 1 3.997000E+01 7.000000E+00 2.259000E+01 +900 1 1.854000E+01 1.541000E+01 1.812000E+01 +901 1 1.820000E+00 2.583000E+01 3.519000E+01 +902 1 3.299000E+01 2.158000E+01 2.852000E+01 +903 1 3.254000E+01 2.840000E+01 2.650000E+01 +904 1 2.985000E+01 1.900000E+01 1.933000E+01 +905 1 3.170000E+00 1.346000E+01 8.600000E+00 +906 1 1.997000E+01 3.786000E+01 8.920000E+00 +907 1 3.431000E+01 1.089000E+01 7.990000E+00 +908 1 2.038000E+01 7.980000E+00 3.979000E+01 +909 1 4.080000E+00 2.395000E+01 3.035000E+01 +910 1 3.444000E+01 9.670000E+00 3.008000E+01 +911 1 1.583000E+01 1.467000E+01 2.227000E+01 +912 1 1.431000E+01 1.500000E+01 3.947000E+01 +913 1 4.670000E+00 2.058000E+01 3.000000E-01 +914 1 9.300000E+00 2.344000E+01 5.290000E+00 +915 1 2.399000E+01 2.950000E+01 2.521000E+01 +916 1 2.265000E+01 5.580000E+00 3.851000E+01 +917 1 2.574000E+01 2.662000E+01 3.447000E+01 +918 1 2.933000E+01 2.029000E+01 2.288000E+01 +919 1 2.541000E+01 9.850000E+00 2.358000E+01 +920 1 5.910000E+00 3.300000E+00 5.750000E+00 +921 1 1.326000E+01 7.000000E-02 2.430000E+01 +922 1 3.950000E+00 2.194000E+01 2.171000E+01 +923 1 3.333000E+01 3.333000E+01 3.166000E+01 +924 1 1.750000E+00 1.349000E+01 1.146000E+01 +925 1 3.112000E+01 2.539000E+01 1.787000E+01 +926 1 1.868000E+01 1.020000E+00 1.011000E+01 +927 1 1.286000E+01 2.967000E+01 1.190000E+01 +928 1 7.900000E+00 3.319000E+01 5.760000E+00 +929 1 3.152000E+01 1.395000E+01 1.066000E+01 +930 1 1.509000E+01 3.071000E+01 1.065000E+01 +931 1 2.109000E+01 1.130000E+01 8.650000E+00 +932 1 3.999000E+01 2.953000E+01 2.270000E+01 +933 1 1.099000E+01 3.969000E+01 2.321000E+01 +934 1 1.117000E+01 3.025000E+01 3.283000E+01 +935 1 3.573000E+01 2.144000E+01 3.377000E+01 +936 1 3.968000E+01 2.056000E+01 3.883000E+01 +937 1 3.883000E+01 2.733000E+01 2.522000E+01 +938 1 3.058000E+01 3.023000E+01 3.197000E+01 +939 1 1.682000E+01 3.112000E+01 3.195000E+01 +940 1 5.210000E+00 1.511000E+01 2.270000E+00 +941 1 2.484000E+01 3.855000E+01 1.900000E+01 +942 1 1.251000E+01 8.200000E-01 6.010000E+00 +943 1 1.945000E+01 2.246000E+01 2.716000E+01 +944 1 3.236000E+01 2.477000E+01 4.090000E+00 +945 1 3.575000E+01 2.625000E+01 2.092000E+01 +946 1 3.212000E+01 3.182000E+01 8.550000E+00 +947 1 8.700000E+00 3.527000E+01 2.976000E+01 +948 1 3.505000E+01 1.031000E+01 3.573000E+01 +949 1 1.260000E+00 1.847000E+01 3.270000E+00 +950 1 2.692000E+01 3.179000E+01 3.059000E+01 +951 1 1.983000E+01 3.155000E+01 1.247000E+01 +952 1 2.251000E+01 2.447000E+01 3.282000E+01 +953 1 3.023000E+01 1.924000E+01 3.172000E+01 +954 1 1.474000E+01 3.618000E+01 2.940000E+01 +955 1 5.110000E+00 5.140000E+00 1.415000E+01 +956 1 1.730000E+01 2.116000E+01 1.800000E-01 +957 1 1.817000E+01 3.470000E+00 2.967000E+01 +958 1 1.196000E+01 3.108000E+01 2.941000E+01 +959 1 3.782000E+01 2.364000E+01 1.930000E+00 +960 1 1.775000E+01 1.363000E+01 2.943000E+01 +961 1 1.126000E+01 4.530000E+00 1.315000E+01 +962 1 1.827000E+01 3.255000E+01 2.395000E+01 +963 1 1.220000E+01 9.900000E-01 2.410000E+00 +964 1 2.614000E+01 3.974000E+01 1.483000E+01 +965 1 1.964000E+01 3.425000E+01 2.586000E+01 +966 1 2.316000E+01 5.030000E+00 2.602000E+01 +967 1 2.478000E+01 3.461000E+01 2.617000E+01 +968 1 3.113000E+01 1.817000E+01 2.240000E+00 +969 1 8.710000E+00 3.614000E+01 1.418000E+01 +970 1 1.900000E-01 3.677000E+01 3.071000E+01 +971 1 3.538000E+01 5.140000E+00 2.318000E+01 +972 1 9.790000E+00 2.135000E+01 2.544000E+01 +973 1 1.234000E+01 3.592000E+01 1.006000E+01 +974 1 2.808000E+01 2.346000E+01 6.350000E+00 +975 1 1.086000E+01 3.276000E+01 2.368000E+01 +976 1 3.010000E+01 1.223000E+01 2.699000E+01 +977 1 1.798000E+01 3.060000E+00 4.020000E+00 +978 1 9.390000E+00 1.377000E+01 5.800000E+00 +979 1 9.450000E+00 9.490000E+00 2.509000E+01 +980 1 1.634000E+01 2.181000E+01 2.177000E+01 +981 1 2.499000E+01 2.674000E+01 4.900000E-01 +982 1 7.580000E+00 1.520000E+01 3.701000E+01 +983 1 3.193000E+01 1.752000E+01 1.411000E+01 +984 1 3.935000E+01 5.860000E+00 1.126000E+01 +985 1 4.690000E+00 2.804000E+01 1.205000E+01 +986 1 1.666000E+01 4.480000E+00 5.880000E+00 +987 1 1.574000E+01 1.277000E+01 2.425000E+01 +988 1 3.410000E+00 5.510000E+00 9.080000E+00 +989 1 3.154000E+01 1.890000E+00 1.838000E+01 +990 1 9.200000E-01 1.946000E+01 1.111000E+01 +991 1 1.300000E-01 3.681000E+01 1.547000E+01 +992 1 2.851000E+01 3.912000E+01 2.277000E+01 +993 1 1.302000E+01 3.893000E+01 3.916000E+01 +994 1 2.523000E+01 2.550000E+01 2.880000E+00 +995 1 1.403000E+01 2.277000E+01 1.031000E+01 +996 1 9.250000E+00 3.892000E+01 1.171000E+01 +997 1 2.110000E+00 4.720000E+00 1.958000E+01 +998 1 3.144000E+01 3.505000E+01 3.586000E+01 +999 1 8.950000E+00 3.743000E+01 3.477000E+01 +1000 1 3.336000E+01 2.864000E+01 3.608000E+01 +1001 1 8.380000E+00 6.150000E+00 3.305000E+01 +1002 1 4.015000E+01 3.770000E+01 4.670000E+00 +1003 1 2.169000E+01 8.000000E+00 8.710000E+00 +1004 1 3.218000E+01 8.590000E+00 3.414000E+01 +1005 1 1.451000E+01 1.921000E+01 2.655000E+01 +1006 1 3.070000E+01 5.380000E+00 1.411000E+01 +1007 1 1.231000E+01 1.584000E+01 1.988000E+01 +1008 1 1.339000E+01 1.660000E+00 2.670000E+01 +1009 1 1.676000E+01 3.086000E+01 5.210000E+00 +1010 1 1.886000E+01 4.200000E+00 1.443000E+01 +1011 1 4.390000E+00 2.058000E+01 7.710000E+00 +1012 1 1.980000E+00 1.848000E+01 1.524000E+01 +1013 1 8.270000E+00 4.710000E+00 1.614000E+01 +1014 1 3.172000E+01 1.239000E+01 2.488000E+01 +1015 1 5.750000E+00 1.411000E+01 1.242000E+01 +1016 1 3.544000E+01 3.200000E+01 9.300000E-01 +1017 1 3.444000E+01 2.616000E+01 3.838000E+01 +1018 1 2.259000E+01 3.158000E+01 7.330000E+00 +1019 1 1.400000E+01 3.055000E+01 3.491000E+01 +1020 1 2.852000E+01 2.002000E+01 2.953000E+01 +1021 1 3.060000E+01 1.624000E+01 9.080000E+00 +1022 1 1.561000E+01 1.068000E+01 1.044000E+01 +1023 1 2.138000E+01 2.543000E+01 2.883000E+01 +1024 1 1.760000E+00 2.414000E+01 4.110000E+00 +1025 1 1.033000E+01 2.356000E+01 3.815000E+01 +1026 1 1.698000E+01 1.150000E+01 2.182000E+01 +1027 1 1.922000E+01 1.262000E+01 3.896000E+01 +1028 1 3.953000E+01 1.910000E+00 2.334000E+01 +1029 1 9.940000E+00 2.793000E+01 3.256000E+01 +1030 1 4.600000E-01 1.283000E+01 3.671000E+01 +1031 1 1.190000E+00 7.660000E+00 1.186000E+01 +1032 1 1.931000E+01 1.312000E+01 4.800000E+00 +1033 1 3.352000E+01 2.255000E+01 3.626000E+01 +1034 1 1.631000E+01 7.100000E+00 8.830000E+00 +1035 1 1.934000E+01 7.420000E+00 2.788000E+01 +1036 1 2.025000E+01 2.075000E+01 4.015000E+01 +1037 1 2.824000E+01 9.520000E+00 1.630000E+01 +1038 1 3.989000E+01 3.390000E+01 2.986000E+01 +1039 1 2.294000E+01 4.790000E+00 1.448000E+01 +1040 1 4.019000E+01 2.327000E+01 3.411000E+01 +1041 1 3.940000E+00 2.697000E+01 2.054000E+01 +1042 1 1.789000E+01 9.490000E+00 6.520000E+00 +1043 1 2.719000E+01 3.389000E+01 3.250000E+01 +1044 1 2.649000E+01 2.743000E+01 4.230000E+00 +1045 1 1.330000E+00 2.940000E+01 3.013000E+01 +1046 1 3.535000E+01 7.110000E+00 2.989000E+01 +1047 1 2.787000E+01 2.802000E+01 1.162000E+01 +1048 1 1.347000E+01 1.450000E+00 2.050000E+01 +1049 1 3.466000E+01 4.150000E+00 2.072000E+01 +1050 1 2.759000E+01 3.805000E+01 1.863000E+01 +1051 1 2.095000E+01 6.790000E+00 3.055000E+01 +1052 1 2.306000E+01 4.640000E+00 2.881000E+01 +1053 1 1.007000E+01 4.480000E+00 9.390000E+00 +1054 1 1.015000E+01 1.046000E+01 3.502000E+01 +1055 1 3.088000E+01 3.307000E+01 3.856000E+01 +1056 1 2.231000E+01 1.040000E+01 1.146000E+01 +1057 1 2.929000E+01 3.853000E+01 3.949000E+01 +1058 1 1.854000E+01 1.947000E+01 6.520000E+00 +1059 1 2.403000E+01 2.653000E+01 1.121000E+01 +1060 1 3.800000E+01 2.400000E+00 3.421000E+01 +1061 1 6.580000E+00 2.857000E+01 9.530000E+00 +1062 1 4.490000E+00 3.065000E+01 3.451000E+01 +1063 1 3.653000E+01 3.394000E+01 1.567000E+01 +1064 1 2.440000E+00 9.340000E+00 3.483000E+01 +1065 1 3.460000E+00 1.150000E+01 3.806000E+01 +1066 1 2.549000E+01 2.264000E+01 2.415000E+01 +1067 1 1.379000E+01 1.752000E+01 9.020000E+00 +1068 1 2.549000E+01 5.930000E+00 3.170000E+00 +1069 1 2.217000E+01 2.260000E+01 1.850000E+00 +1070 1 6.090000E+00 2.440000E+00 1.047000E+01 +1071 1 1.302000E+01 5.270000E+00 4.540000E+00 +1072 1 5.730000E+00 3.967000E+01 3.079000E+01 +1073 1 3.165000E+01 3.579000E+01 7.390000E+00 +1074 1 1.633000E+01 3.326000E+01 2.629000E+01 +1075 1 2.980000E+01 1.057000E+01 2.904000E+01 +1076 1 3.549000E+01 3.290000E+00 1.411000E+01 +1077 1 8.450000E+00 1.779000E+01 1.943000E+01 +1078 1 1.337000E+01 3.361000E+01 3.931000E+01 +1079 1 2.140000E+01 1.651000E+01 3.171000E+01 +1080 1 1.546000E+01 1.432000E+01 1.942000E+01 +1081 1 2.476000E+01 6.300000E+00 1.785000E+01 +1082 1 4.200000E+00 1.800000E+01 2.192000E+01 +1083 1 1.934000E+01 3.368000E+01 9.130000E+00 +1084 1 3.580000E+00 1.281000E+01 1.377000E+01 +1085 1 3.595000E+01 1.280000E+00 3.766000E+01 +1086 1 2.502000E+01 3.406000E+01 3.411000E+01 +1087 1 3.642000E+01 2.752000E+01 1.059000E+01 +1088 1 2.228000E+01 3.248000E+01 1.165000E+01 +1089 1 1.361000E+01 1.065000E+01 2.154000E+01 +1090 1 4.050000E+00 2.082000E+01 2.820000E+00 +1091 1 3.283000E+01 7.500000E+00 3.904000E+01 +1092 1 3.332000E+01 3.896000E+01 2.900000E+01 +1093 1 1.987000E+01 1.390000E+00 1.983000E+01 +1094 1 2.039000E+01 3.180000E+01 3.345000E+01 +1095 1 1.746000E+01 6.920000E+00 2.017000E+01 +1096 1 1.084000E+01 2.573000E+01 2.256000E+01 +1097 1 2.710000E+01 2.340000E+01 1.489000E+01 +1098 1 1.000000E-01 4.290000E+00 2.696000E+01 +1099 1 6.400000E+00 1.850000E+01 4.014000E+01 +1100 1 2.334000E+01 2.521000E+01 1.682000E+01 +1101 1 2.029000E+01 1.331000E+01 2.654000E+01 +1102 1 3.414000E+01 1.391000E+01 1.841000E+01 +1103 1 2.984000E+01 3.839000E+01 4.600000E+00 +1104 1 2.570000E+01 1.898000E+01 2.920000E+00 +1105 1 3.812000E+01 3.690000E+01 2.990000E+00 +1106 1 3.477000E+01 1.278000E+01 3.741000E+01 +1107 1 2.619000E+01 8.990000E+00 3.811000E+01 +1108 1 2.288000E+01 3.753000E+01 1.554000E+01 +1109 1 9.580000E+00 1.119000E+01 2.883000E+01 +1110 1 2.885000E+01 3.501000E+01 3.864000E+01 +1111 1 3.804000E+01 2.327000E+01 1.392000E+01 +1112 1 3.221000E+01 1.475000E+01 4.019000E+01 +1113 1 2.298000E+01 3.750000E+00 2.336000E+01 +1114 1 3.079000E+01 2.918000E+01 2.843000E+01 +1115 1 2.192000E+01 3.333000E+01 2.466000E+01 +1116 1 3.105000E+01 1.491000E+01 2.302000E+01 +1117 1 1.463000E+01 1.740000E+01 1.902000E+01 +1118 1 5.160000E+00 1.431000E+01 1.833000E+01 +1119 1 3.748000E+01 3.474000E+01 1.228000E+01 +1120 1 1.928000E+01 2.761000E+01 1.711000E+01 +1121 1 3.456000E+01 2.111000E+01 1.480000E+01 +1122 1 3.947000E+01 1.284000E+01 2.774000E+01 +1123 1 3.109000E+01 1.864000E+01 1.692000E+01 +1124 1 1.101000E+01 3.502000E+01 2.637000E+01 +1125 1 6.450000E+00 8.300000E+00 3.935000E+01 +1126 1 1.102000E+01 3.965000E+01 3.741000E+01 +1127 1 3.034000E+01 2.946000E+01 1.600000E-01 +1128 1 5.820000E+00 2.265000E+01 3.620000E+00 +1129 1 1.668000E+01 3.081000E+01 2.721000E+01 +1130 1 3.337000E+01 3.333000E+01 3.704000E+01 +1131 1 8.670000E+00 1.893000E+01 3.462000E+01 +1132 1 5.250000E+00 2.861000E+01 3.655000E+01 +1133 1 3.401000E+01 2.099000E+01 3.105000E+01 +1134 1 1.878000E+01 6.930000E+00 3.430000E+00 +1135 1 1.820000E+01 2.042000E+01 1.970000E+01 +1136 1 3.604000E+01 1.869000E+01 2.686000E+01 +1137 1 7.900000E-01 2.344000E+01 7.790000E+00 +1138 1 1.429000E+01 2.965000E+01 2.851000E+01 +1139 1 2.285000E+01 2.852000E+01 6.800000E-01 +1140 1 1.117000E+01 3.682000E+01 2.353000E+01 +1141 1 2.882000E+01 3.799000E+01 9.160000E+00 +1142 1 4.028000E+01 9.430000E+00 1.387000E+01 +1143 1 5.200000E+00 2.358000E+01 3.807000E+01 +1144 1 1.787000E+01 1.770000E+00 3.866000E+01 +1145 1 5.650000E+00 3.737000E+01 2.922000E+01 +1146 1 2.560000E+00 3.544000E+01 1.994000E+01 +1147 1 3.677000E+01 2.009000E+01 2.316000E+01 +1148 1 1.355000E+01 1.968000E+01 5.330000E+00 +1149 1 1.637000E+01 2.384000E+01 9.270000E+00 +1150 1 3.193000E+01 4.010000E+01 3.606000E+01 +1151 1 3.170000E+01 3.120000E+01 5.860000E+00 +1152 1 2.779000E+01 1.944000E+01 6.280000E+00 +1153 1 2.472000E+01 3.992000E+01 2.727000E+01 +1154 1 2.030000E+01 2.963000E+01 2.512000E+01 +1155 1 3.187000E+01 3.400000E+00 3.720000E+01 +1156 1 2.517000E+01 8.650000E+00 1.247000E+01 +1157 1 1.124000E+01 1.631000E+01 3.400000E-01 +1158 1 1.664000E+01 1.285000E+01 2.707000E+01 +1159 1 4.510000E+00 2.920000E+01 2.199000E+01 +1160 1 5.080000E+00 3.390000E+00 3.060000E+01 +1161 1 2.670000E+01 2.982000E+01 3.829000E+01 +1162 1 2.712000E+01 2.265000E+01 9.090000E+00 +1163 1 3.638000E+01 3.170000E+01 5.510000E+00 +1164 1 2.496000E+01 1.438000E+01 1.584000E+01 +1165 1 1.659000E+01 3.052000E+01 1.874000E+01 +1166 1 1.083000E+01 2.998000E+01 2.351000E+01 +1167 1 3.754000E+01 3.751000E+01 3.049000E+01 +1168 1 3.229000E+01 2.187000E+01 3.982000E+01 +1169 1 3.652000E+01 2.556000E+01 1.345000E+01 +1170 1 3.551000E+01 4.010000E+01 1.011000E+01 +1171 1 2.740000E+00 1.585000E+01 3.276000E+01 +1172 1 3.376000E+01 2.291000E+01 1.852000E+01 +1173 1 2.598000E+01 3.266000E+01 2.092000E+01 +1174 1 3.882000E+01 1.360000E+00 1.439000E+01 +1175 1 2.282000E+01 1.660000E+01 2.088000E+01 +1176 1 1.938000E+01 7.990000E+00 2.275000E+01 +1177 1 1.095000E+01 1.666000E+01 4.800000E+00 +1178 1 3.468000E+01 1.184000E+01 2.623000E+01 +1179 1 3.108000E+01 2.838000E+01 1.891000E+01 +1180 1 3.415000E+01 7.750000E+00 1.679000E+01 +1181 1 3.713000E+01 1.988000E+01 5.110000E+00 +1182 1 2.110000E+00 3.913000E+01 3.360000E+00 +1183 1 2.311000E+01 3.560000E+01 6.700000E+00 +1184 1 2.552000E+01 3.364000E+01 7.380000E+00 +1185 1 1.535000E+01 1.344000E+01 1.084000E+01 +1186 1 6.340000E+00 1.187000E+01 1.055000E+01 +1187 1 1.725000E+01 1.950000E+01 1.471000E+01 +1188 1 4.015000E+01 1.317000E+01 1.957000E+01 +1189 1 3.513000E+01 3.980000E+00 3.989000E+01 +1190 1 2.488000E+01 2.747000E+01 3.122000E+01 +1191 1 9.150000E+00 2.214000E+01 3.258000E+01 +1192 1 2.424000E+01 1.200000E+01 6.930000E+00 +1193 1 3.965000E+01 1.413000E+01 1.342000E+01 +1194 1 3.927000E+01 1.600000E-01 4.270000E+00 +1195 1 2.271000E+01 3.680000E+00 1.178000E+01 +1196 1 2.294000E+01 7.560000E+00 1.360000E+00 +1197 1 1.907000E+01 1.235000E+01 1.466000E+01 +1198 1 1.544000E+01 5.110000E+00 1.966000E+01 +1199 1 2.580000E+01 2.601000E+01 2.841000E+01 +1200 1 4.280000E+00 3.770000E+01 2.640000E+01 +1201 1 2.765000E+01 2.761000E+01 5.000000E-01 +1202 1 3.100000E+01 2.392000E+01 3.257000E+01 +1203 1 3.931000E+01 2.020000E+01 2.697000E+01 +1204 1 2.428000E+01 2.482000E+01 3.084000E+01 +1205 1 1.408000E+01 1.666000E+01 1.350000E+00 +1206 1 1.547000E+01 3.540000E+01 3.676000E+01 +1207 1 3.507000E+01 2.395000E+01 1.057000E+01 +1208 1 3.648000E+01 8.430000E+00 9.010000E+00 +1209 1 2.923000E+01 1.604000E+01 1.253000E+01 +1210 1 1.365000E+01 9.500000E-01 1.787000E+01 +1211 1 1.272000E+01 2.981000E+01 7.750000E+00 +1212 1 1.840000E+00 2.728000E+01 3.907000E+01 +1213 1 1.120000E+00 1.518000E+01 1.694000E+01 +1214 1 3.563000E+01 9.240000E+00 3.370000E+00 +1215 1 1.424000E+01 2.757000E+01 2.428000E+01 +1216 1 5.890000E+00 1.033000E+01 5.660000E+00 +1217 1 9.570000E+00 3.371000E+01 3.266000E+01 +1218 1 2.773000E+01 1.012000E+01 2.509000E+01 +1219 1 3.792000E+01 3.945000E+01 2.844000E+01 +1220 1 5.150000E+00 1.463000E+01 2.636000E+01 +1221 1 3.328000E+01 3.381000E+01 2.108000E+01 +1222 1 8.140000E+00 2.831000E+01 2.295000E+01 +1223 1 1.308000E+01 3.189000E+01 3.179000E+01 +1224 1 4.870000E+00 3.625000E+01 1.928000E+01 +1225 1 1.535000E+01 3.519000E+01 1.842000E+01 +1226 1 1.529000E+01 1.635000E+01 2.662000E+01 +1227 1 1.112000E+01 2.849000E+01 1.917000E+01 +1228 1 1.693000E+01 8.820000E+00 3.693000E+01 +1229 1 3.550000E+00 8.000000E-02 4.940000E+00 +1230 1 1.206000E+01 3.431000E+01 3.570000E+01 +1231 1 5.870000E+00 5.960000E+00 4.430000E+00 +1232 1 3.294000E+01 1.180000E+00 3.710000E+00 +1233 1 2.256000E+01 7.940000E+00 1.246000E+01 +1234 1 1.547000E+01 2.903000E+01 3.290000E+01 +1235 1 7.720000E+00 1.020000E+00 2.322000E+01 +1236 1 2.902000E+01 2.914000E+01 8.300000E+00 +1237 1 1.436000E+01 3.453000E+01 3.256000E+01 +1238 1 2.781000E+01 3.972000E+01 3.000000E+00 +1239 1 2.858000E+01 2.193000E+01 3.591000E+01 +1240 1 2.391000E+01 2.270000E+01 1.922000E+01 +1241 1 1.600000E-01 2.370000E+00 3.034000E+01 +1242 1 2.127000E+01 3.586000E+01 3.348000E+01 +1243 1 2.298000E+01 1.863000E+01 2.466000E+01 +1244 1 2.380000E+00 1.022000E+01 2.573000E+01 +1245 1 2.251000E+01 1.543000E+01 1.045000E+01 +1246 1 1.938000E+01 3.690000E+00 7.760000E+00 +1247 1 1.976000E+01 6.120000E+00 3.336000E+01 +1248 1 2.334000E+01 3.926000E+01 2.133000E+01 +1249 1 3.026000E+01 2.779000E+01 5.850000E+00 +1250 1 2.347000E+01 8.300000E-01 3.432000E+01 +1251 1 3.707000E+01 4.440000E+00 2.697000E+01 +1252 1 1.840000E+01 2.950000E+00 2.370000E+01 +1253 1 2.758000E+01 3.078000E+01 1.500000E+01 +1254 1 3.211000E+01 1.728000E+01 2.356000E+01 +1255 1 1.314000E+01 1.152000E+01 2.412000E+01 +1256 1 5.890000E+00 2.665000E+01 3.327000E+01 +1257 1 1.501000E+01 2.282000E+01 2.825000E+01 +1258 1 1.249000E+01 3.631000E+01 7.180000E+00 +1259 1 5.500000E+00 2.406000E+01 9.120000E+00 +1260 1 1.059000E+01 4.300000E-01 3.199000E+01 +1261 1 3.132000E+01 3.683000E+01 2.740000E+00 +1262 1 1.165000E+01 2.439000E+01 1.650000E+00 +1263 1 1.434000E+01 6.550000E+00 6.850000E+00 +1264 1 7.480000E+00 2.303000E+01 7.160000E+00 +1265 1 3.002000E+01 2.488000E+01 2.780000E+00 +1266 1 4.010000E+01 2.802000E+01 3.485000E+01 +1267 1 1.400000E+00 2.684000E+01 1.046000E+01 +1268 1 2.590000E+01 2.991000E+01 3.237000E+01 +1269 1 2.170000E+01 3.797000E+01 2.319000E+01 +1270 1 3.904000E+01 1.949000E+01 2.990000E+00 +1271 1 2.555000E+01 4.360000E+00 1.111000E+01 +1272 1 2.977000E+01 2.702000E+01 1.584000E+01 +1273 1 1.501000E+01 3.299000E+01 2.369000E+01 +1274 1 1.219000E+01 2.916000E+01 3.926000E+01 +1275 1 2.820000E+01 3.847000E+01 2.768000E+01 +1276 1 2.101000E+01 1.450000E+01 2.000000E+01 +1277 1 5.330000E+00 1.646000E+01 2.920000E+01 +1278 1 3.312000E+01 3.543000E+01 2.790000E+01 +1279 1 1.800000E+01 1.098000E+01 1.700000E+01 +1280 1 7.030000E+00 3.831000E+01 1.719000E+01 +1281 1 1.319000E+01 9.240000E+00 1.075000E+01 +1282 1 3.920000E+00 7.200000E+00 1.115000E+01 +1283 1 3.650000E+00 2.979000E+01 1.546000E+01 +1284 1 3.500000E+00 3.072000E+01 3.912000E+01 +1285 1 3.430000E+00 1.000000E+00 2.804000E+01 +1286 1 3.679000E+01 8.930000E+00 1.675000E+01 +1287 1 3.414000E+01 7.190000E+00 2.456000E+01 +1288 1 6.710000E+00 1.730000E+01 1.122000E+01 +1289 1 1.709000E+01 2.770000E+01 1.262000E+01 +1290 1 3.694000E+01 1.546000E+01 1.331000E+01 +1291 1 2.718000E+01 2.792000E+01 1.645000E+01 +1292 1 2.908000E+01 3.329000E+01 3.528000E+01 +1293 1 3.268000E+01 2.537000E+01 3.058000E+01 +1294 1 1.485000E+01 1.259000E+01 1.325000E+01 +1295 1 8.820000E+00 3.261000E+01 4.007000E+01 +1296 1 3.998000E+01 1.613000E+01 2.972000E+01 +1297 1 3.139000E+01 2.758000E+01 3.560000E+00 +1298 1 3.836000E+01 3.975000E+01 3.901000E+01 +1299 1 1.090000E+00 4.980000E+00 1.548000E+01 +1300 1 1.421000E+01 3.173000E+01 5.250000E+00 +1301 1 3.944000E+01 1.907000E+01 6.630000E+00 +1302 1 1.319000E+01 2.388000E+01 3.310000E+01 +1303 1 1.448000E+01 2.150000E+01 1.276000E+01 +1304 1 2.870000E+01 1.075000E+01 3.650000E+00 +1305 1 6.410000E+00 1.970000E+01 9.590000E+00 +1306 1 1.254000E+01 3.653000E+01 3.732000E+01 +1307 1 3.622000E+01 3.267000E+01 3.146000E+01 +1308 1 3.814000E+01 3.510000E+00 2.927000E+01 +1309 1 3.172000E+01 1.006000E+01 3.114000E+01 +1310 1 4.270000E+00 3.802000E+01 1.210000E+01 +1311 1 2.905000E+01 3.354000E+01 4.750000E+00 +1312 1 2.541000E+01 1.406000E+01 2.628000E+01 +1313 1 1.076000E+01 4.920000E+00 3.349000E+01 +1314 1 2.420000E+01 1.290000E+00 3.290000E+00 +1315 1 2.271000E+01 3.960000E+01 2.526000E+01 +1316 1 2.240000E+00 3.942000E+01 8.460000E+00 +1317 1 2.018000E+01 1.189000E+01 2.936000E+01 +1318 1 6.670000E+00 3.647000E+01 3.150000E+00 +1319 1 1.217000E+01 3.813000E+01 1.310000E+00 +1320 1 2.958000E+01 8.560000E+00 2.654000E+01 +1321 1 6.460000E+00 1.124000E+01 3.265000E+01 +1322 1 3.173000E+01 4.810000E+00 3.261000E+01 +1323 1 1.022000E+01 7.550000E+00 2.677000E+01 +1324 1 1.739000E+01 1.514000E+01 4.980000E+00 +1325 1 1.226000E+01 2.119000E+01 2.735000E+01 +1326 1 3.404000E+01 6.900000E+00 3.635000E+01 +1327 1 2.650000E+01 3.732000E+01 5.370000E+00 +1328 1 3.277000E+01 4.990000E+00 1.680000E+01 +1329 1 1.502000E+01 1.545000E+01 7.820000E+00 +1330 1 7.740000E+00 2.527000E+01 3.585000E+01 +1331 1 1.992000E+01 3.187000E+01 1.825000E+01 +1332 1 3.401000E+01 6.910000E+00 2.720000E+01 +1333 1 2.875000E+01 2.100000E+00 2.223000E+01 +1334 1 2.556000E+01 2.718000E+01 2.141000E+01 +1335 1 4.860000E+00 3.796000E+01 4.027000E+01 +1336 1 4.010000E+00 2.570000E+01 1.649000E+01 +1337 1 2.580000E+00 2.737000E+01 1.471000E+01 +1338 1 2.040000E+01 4.770000E+00 2.774000E+01 +1339 1 2.217000E+01 2.430000E+01 8.960000E+00 +1340 1 2.120000E+01 1.712000E+01 1.479000E+01 +1341 1 2.385000E+01 1.226000E+01 1.738000E+01 +1342 1 2.168000E+01 3.595000E+01 2.633000E+01 +1343 1 3.779000E+01 2.744000E+01 2.254000E+01 +1344 1 3.197000E+01 8.010000E+00 1.350000E+00 +1345 1 1.345000E+01 1.666000E+01 2.972000E+01 +1346 1 2.106000E+01 1.860000E+01 5.840000E+00 +1347 1 2.651000E+01 1.600000E-01 3.379000E+01 +1348 1 1.457000E+01 4.990000E+00 3.677000E+01 +1349 1 2.559000E+01 1.070000E+01 3.575000E+01 +1350 1 3.456000E+01 3.082000E+01 1.151000E+01 +1351 1 2.127000E+01 6.240000E+00 6.000000E+00 +1352 1 6.170000E+00 3.078000E+01 3.640000E+00 +1353 1 1.606000E+01 2.608000E+01 3.980000E+01 +1354 1 2.043000E+01 3.960000E+00 2.226000E+01 +1355 1 3.570000E+00 1.118000E+01 1.740000E+01 +1356 1 2.415000E+01 3.418000E+01 1.358000E+01 +1357 1 2.250000E+01 1.542000E+01 7.510000E+00 +1358 1 2.400000E-01 2.390000E+00 1.615000E+01 +1359 1 1.864000E+01 3.642000E+01 2.140000E+01 +1360 1 3.561000E+01 2.350000E+00 1.924000E+01 +1361 1 1.393000E+01 2.400000E+01 4.011000E+01 +1362 1 2.980000E+01 5.650000E+00 3.999000E+01 +1363 1 6.930000E+00 2.818000E+01 2.740000E+00 +1364 1 2.728000E+01 8.100000E-01 3.012000E+01 +1365 1 2.297000E+01 3.893000E+01 3.844000E+01 +1366 1 1.987000E+01 3.658000E+01 5.510000E+00 +1367 1 1.177000E+01 2.127000E+01 3.189000E+01 +1368 1 3.160000E+01 1.245000E+01 3.217000E+01 +1369 1 3.270000E+01 1.684000E+01 1.796000E+01 +1370 1 2.535000E+01 2.905000E+01 1.800000E+01 +1371 1 2.630000E+00 4.370000E+00 1.343000E+01 +1372 1 1.124000E+01 1.275000E+01 1.044000E+01 +1373 1 1.947000E+01 1.880000E+01 2.250000E+00 +1374 1 3.409000E+01 4.040000E+00 5.220000E+00 +1375 1 1.379000E+01 1.329000E+01 4.620000E+00 +1376 1 1.963000E+01 1.086000E+01 3.570000E+00 +1377 1 1.305000E+01 1.861000E+01 3.700000E+01 +1378 1 5.910000E+00 3.479000E+01 7.090000E+00 +1379 1 2.664000E+01 3.274000E+01 1.313000E+01 +1380 1 3.940000E+00 3.429000E+01 3.908000E+01 +1381 1 4.960000E+00 1.359000E+01 3.255000E+01 +1382 1 2.380000E+01 1.574000E+01 3.517000E+01 +1383 1 9.930000E+00 1.304000E+01 3.540000E+01 +1384 1 8.350000E+00 2.658000E+01 1.746000E+01 +1385 1 2.680000E+01 1.073000E+01 3.069000E+01 +1386 1 2.992000E+01 1.538000E+01 2.555000E+01 +1387 1 2.805000E+01 1.774000E+01 3.190000E+00 +1388 1 3.191000E+01 3.929000E+01 6.120000E+00 +1389 1 3.335000E+01 1.971000E+01 1.050000E+00 +1390 1 2.216000E+01 1.137000E+01 2.750000E+00 +1391 1 2.882000E+01 1.110000E+01 7.400000E-01 +1392 1 7.640000E+00 3.850000E+01 3.779000E+01 +1393 1 3.707000E+01 2.949000E+01 3.358000E+01 +1394 1 2.828000E+01 9.070000E+00 1.356000E+01 +1395 1 1.108000E+01 6.850000E+00 8.000000E+00 +1396 1 1.787000E+01 1.364000E+01 9.840000E+00 +1397 1 2.900000E+01 3.620000E+01 1.090000E+00 +1398 1 9.170000E+00 3.214000E+01 1.168000E+01 +1399 1 1.810000E+01 9.150000E+00 9.360000E+00 +1400 1 2.430000E+00 2.545000E+01 1.760000E+00 +1401 1 2.090000E+00 3.653000E+01 1.733000E+01 +1402 1 9.260000E+00 2.339000E+01 4.100000E-01 +1403 1 3.103000E+01 5.880000E+00 8.890000E+00 +1404 1 3.511000E+01 2.325000E+01 1.322000E+01 +1405 1 1.774000E+01 2.442000E+01 4.870000E+00 +1406 1 3.054000E+01 1.328000E+01 1.581000E+01 +1407 1 3.084000E+01 2.721000E+01 3.022000E+01 +1408 1 3.960000E+00 3.703000E+01 3.776000E+01 +1409 1 2.184000E+01 1.208000E+01 3.655000E+01 +1410 1 2.615000E+01 1.950000E+01 1.868000E+01 +1411 1 3.420000E+00 7.500000E-01 3.176000E+01 +1412 1 3.223000E+01 2.681000E+01 3.401000E+01 +1413 1 2.986000E+01 2.995000E+01 2.098000E+01 +1414 1 2.076000E+01 2.310000E+01 2.351000E+01 +1415 1 2.757000E+01 1.960000E+00 1.832000E+01 +1416 1 2.290000E+01 1.656000E+01 1.825000E+01 +1417 1 3.730000E+00 3.849000E+01 2.385000E+01 +1418 1 2.070000E+00 3.006000E+01 3.690000E+01 +1419 1 2.486000E+01 3.901000E+01 3.640000E+00 +1420 1 6.690000E+00 1.080000E+00 1.762000E+01 +1421 1 2.810000E+01 3.061000E+01 2.849000E+01 +1422 1 1.667000E+01 2.217000E+01 3.643000E+01 +1423 1 1.246000E+01 3.921000E+01 3.348000E+01 +1424 1 1.620000E+00 1.527000E+01 2.182000E+01 +1425 1 8.390000E+00 2.229000E+01 2.910000E+00 +1426 1 4.960000E+00 1.722000E+01 3.227000E+01 +1427 1 1.097000E+01 3.120000E+00 3.136000E+01 +1428 1 1.470000E+00 3.810000E+01 2.636000E+01 +1429 1 9.630000E+00 1.670000E+00 3.791000E+01 +1430 1 1.733000E+01 9.980000E+00 3.389000E+01 +1431 1 1.300000E-01 1.829000E+01 5.300000E-01 +1432 1 1.720000E+01 2.888000E+01 3.760000E+00 +1433 1 3.608000E+01 1.331000E+01 1.390000E+00 +1434 1 3.466000E+01 2.952000E+01 2.841000E+01 +1435 1 2.257000E+01 9.070000E+00 3.054000E+01 +1436 1 8.100000E+00 2.772000E+01 3.451000E+01 +1437 1 1.917000E+01 2.970000E+01 3.244000E+01 +1438 1 2.160000E+00 9.940000E+00 1.380000E+00 +1439 1 1.853000E+01 1.426000E+01 2.321000E+01 +1440 1 2.528000E+01 3.675000E+01 3.157000E+01 +1441 1 2.960000E+00 2.813000E+01 3.537000E+01 +1442 1 5.020000E+00 4.000000E-01 1.215000E+01 +1443 1 1.564000E+01 3.659000E+01 2.433000E+01 +1444 1 3.000000E+00 3.658000E+01 1.670000E+00 +1445 1 3.501000E+01 1.470000E+01 3.992000E+01 +1446 1 2.720000E+01 3.610000E+00 6.250000E+00 +1447 1 3.294000E+01 3.124000E+01 3.537000E+01 +1448 1 5.810000E+00 2.759000E+01 1.464000E+01 +1449 1 3.810000E+01 3.890000E+01 8.600000E+00 +1450 1 4.022000E+01 5.010000E+00 7.200000E+00 +1451 1 2.377000E+01 3.116000E+01 3.824000E+01 +1452 1 3.817000E+01 1.637000E+01 5.570000E+00 +1453 1 3.050000E+00 2.772000E+01 3.266000E+01 +1454 1 3.022000E+01 3.328000E+01 1.495000E+01 +1455 1 6.080000E+00 1.196000E+01 2.602000E+01 +1456 1 2.198000E+01 3.821000E+01 6.410000E+00 +1457 1 3.644000E+01 7.460000E+00 3.733000E+01 +1458 1 1.589000E+01 3.311000E+01 3.883000E+01 +1459 1 3.532000E+01 1.931000E+01 2.946000E+01 +1460 1 2.519000E+01 1.542000E+01 1.105000E+01 +1461 1 7.320000E+00 1.694000E+01 1.880000E+00 +1462 1 1.205000E+01 2.463000E+01 1.075000E+01 +1463 1 1.325000E+01 2.868000E+01 1.600000E+00 +1464 1 2.294000E+01 2.149000E+01 3.254000E+01 +1465 1 1.392000E+01 7.080000E+00 2.761000E+01 +1466 1 3.159000E+01 3.295000E+01 3.362000E+01 +1467 1 1.675000E+01 6.980000E+00 1.550000E+00 +1468 1 4.680000E+00 4.700000E-01 8.310000E+00 +1469 1 2.746000E+01 3.543000E+01 3.680000E+00 +1470 1 2.042000E+01 2.320000E+01 3.005000E+01 +1471 1 3.860000E+01 1.418000E+01 1.530000E+00 +1472 1 2.749000E+01 3.548000E+01 2.641000E+01 +1473 1 1.658000E+01 2.845000E+01 1.001000E+01 +1474 1 2.232000E+01 3.803000E+01 2.870000E+00 +1475 1 2.061000E+01 3.710000E+00 3.526000E+01 +1476 1 9.570000E+00 1.493000E+01 3.136000E+01 +1477 1 4.630000E+00 1.600000E+00 1.140000E+00 +1478 1 3.290000E+00 7.150000E+00 3.688000E+01 +1479 1 5.330000E+00 3.326000E+01 2.706000E+01 +1480 1 1.874000E+01 2.017000E+01 3.637000E+01 +1481 1 1.154000E+01 1.770000E+00 8.630000E+00 +1482 1 2.200000E-01 1.175000E+01 9.020000E+00 +1483 1 1.778000E+01 1.796000E+01 8.780000E+00 +1484 1 8.550000E+00 1.950000E+01 1.572000E+01 +1485 1 1.368000E+01 9.410000E+00 3.781000E+01 +1486 1 5.060000E+00 2.528000E+01 1.760000E+00 +1487 1 1.348000E+01 7.750000E+00 3.034000E+01 +1488 1 1.100000E-01 3.838000E+01 1.051000E+01 +1489 1 7.400000E-01 2.262000E+01 2.198000E+01 +1490 1 1.359000E+01 1.589000E+01 3.418000E+01 +1491 1 2.760000E+01 5.130000E+00 3.155000E+01 +1492 1 8.070000E+00 3.178000E+01 1.642000E+01 +1493 1 3.561000E+01 2.099000E+01 4.011000E+01 +1494 1 1.933000E+01 1.870000E+00 3.318000E+01 +1495 1 3.815000E+01 2.150000E+01 5.100000E-01 +1496 1 1.389000E+01 3.694000E+01 1.196000E+01 +1497 1 9.190000E+00 2.380000E+01 1.214000E+01 +1498 1 1.472000E+01 2.570000E+01 2.248000E+01 +1499 1 9.430000E+00 6.980000E+00 1.543000E+01 +1500 1 3.500000E+01 1.781000E+01 3.705000E+01 +1501 1 3.357000E+01 1.549000E+01 1.559000E+01 +1502 1 1.196000E+01 3.850000E+01 5.740000E+00 +1503 1 9.320000E+00 2.848000E+01 2.568000E+01 +1504 1 1.820000E+00 8.920000E+00 3.910000E+00 +1505 1 6.640000E+00 1.783000E+01 4.430000E+00 +1506 1 1.285000E+01 3.971000E+01 9.180000E+00 +1507 1 8.750000E+00 3.740000E+00 5.670000E+00 +1508 1 1.418000E+01 1.894000E+01 1.328000E+01 +1509 1 3.084000E+01 1.262000E+01 3.479000E+01 +1510 1 3.272000E+01 2.918000E+01 1.780000E+00 +1511 1 2.370000E+00 1.336000E+01 5.600000E+00 +1512 1 2.893000E+01 6.660000E+00 1.092000E+01 +1513 1 4.600000E-01 1.000000E-01 1.299000E+01 +1514 1 1.375000E+01 2.610000E+00 4.080000E+00 +1515 1 2.833000E+01 3.156000E+01 2.518000E+01 +1516 1 1.641000E+01 2.219000E+01 5.640000E+00 +1517 1 3.764000E+01 9.750000E+00 3.632000E+01 +1518 1 1.009000E+01 3.697000E+01 3.843000E+01 +1519 1 1.439000E+01 3.326000E+01 3.508000E+01 +1520 1 4.320000E+00 4.370000E+00 2.500000E+00 +1521 1 9.200000E+00 2.266000E+01 9.410000E+00 +1522 1 8.290000E+00 2.166000E+01 3.791000E+01 +1523 1 2.775000E+01 1.574000E+01 7.580000E+00 +1524 1 3.112000E+01 1.926000E+01 1.035000E+01 +1525 1 2.905000E+01 1.047000E+01 2.138000E+01 +1526 1 2.190000E+01 9.510000E+00 3.525000E+01 +1527 1 3.581000E+01 2.896000E+01 1.660000E+00 +1528 1 9.700000E-01 3.178000E+01 1.872000E+01 +1529 1 7.040000E+00 5.100000E+00 9.470000E+00 +1530 1 3.515000E+01 1.636000E+01 2.275000E+01 +1531 1 1.136000E+01 2.126000E+01 3.580000E+01 +1532 1 2.387000E+01 1.600000E+00 2.197000E+01 +1533 1 1.347000E+01 8.830000E+00 5.600000E-01 +1534 1 3.177000E+01 1.369000E+01 2.890000E+01 +1535 1 1.407000E+01 2.034000E+01 2.640000E+00 +1536 1 3.052000E+01 1.010000E+01 8.730000E+00 +1537 1 3.484000E+01 1.526000E+01 3.368000E+01 +1538 1 2.878000E+01 1.497000E+01 3.620000E+01 +1539 1 1.971000E+01 2.704000E+01 1.131000E+01 +1540 1 6.930000E+00 3.917000E+01 1.046000E+01 +1541 1 2.469000E+01 1.259000E+01 2.390000E+01 +1542 1 1.780000E+00 2.473000E+01 1.754000E+01 +1543 1 3.880000E+01 5.180000E+00 1.822000E+01 +1544 1 1.251000E+01 3.104000E+01 3.040000E+00 +1545 1 2.450000E+01 2.044000E+01 2.614000E+01 +1546 1 1.047000E+01 3.333000E+01 7.610000E+00 +1547 1 7.280000E+00 7.750000E+00 5.920000E+00 +1548 1 2.830000E+00 2.413000E+01 3.270000E+01 +1549 1 1.217000E+01 2.309000E+01 2.254000E+01 +1550 1 2.141000E+01 3.446000E+01 2.861000E+01 +1551 1 3.979000E+01 1.027000E+01 2.290000E+00 +1552 1 7.000000E-01 2.459000E+01 2.969000E+01 +1553 1 1.352000E+01 1.136000E+01 2.727000E+01 +1554 1 3.741000E+01 3.061000E+01 2.193000E+01 +1555 1 2.734000E+01 2.234000E+01 2.685000E+01 +1556 1 2.172000E+01 2.230000E+00 8.240000E+00 +1557 1 3.788000E+01 1.843000E+01 2.492000E+01 +1558 1 6.350000E+00 3.578000E+01 3.374000E+01 +1559 1 2.286000E+01 2.200000E+00 3.186000E+01 +1560 1 3.322000E+01 4.590000E+00 2.710000E+00 +1561 1 1.315000E+01 1.466000E+01 1.008000E+01 +1562 1 2.883000E+01 2.383000E+01 3.093000E+01 +1563 1 1.278000E+01 1.185000E+01 3.666000E+01 +1564 1 4.220000E+00 1.916000E+01 5.310000E+00 +1565 1 2.612000E+01 6.230000E+00 2.050000E+01 +1566 1 1.400000E+00 1.401000E+01 3.426000E+01 +1567 1 5.210000E+00 2.573000E+01 2.616000E+01 +1568 1 1.423000E+01 1.097000E+01 3.458000E+01 +1569 1 1.777000E+01 2.522000E+01 1.154000E+01 +1570 1 3.381000E+01 6.400000E+00 1.077000E+01 +1571 1 1.508000E+01 4.400000E-01 3.908000E+01 +1572 1 6.730000E+00 3.688000E+01 9.070000E+00 +1573 1 2.040000E+01 2.065000E+01 1.584000E+01 +1574 1 1.844000E+01 9.810000E+00 2.893000E+01 +1575 1 1.950000E+00 6.940000E+00 2.815000E+01 +1576 1 9.500000E+00 2.587000E+01 9.680000E+00 +1577 1 3.990000E+00 2.400000E+00 1.982000E+01 +1578 1 2.900000E+01 3.571000E+01 3.371000E+01 +1579 1 3.817000E+01 1.882000E+01 2.905000E+01 +1580 1 1.229000E+01 1.288000E+01 1.493000E+01 +1581 1 2.226000E+01 1.038000E+01 2.000000E-01 +1582 1 8.750000E+00 1.312000E+01 2.703000E+01 +1583 1 9.670000E+00 3.071000E+01 1.930000E+00 +1584 1 1.697000E+01 2.436000E+01 2.133000E+01 +1585 1 3.249000E+01 3.746000E+01 3.428000E+01 +1586 1 2.899000E+01 3.809000E+01 1.194000E+01 +1587 1 3.445000E+01 2.889000E+01 9.390000E+00 +1588 1 1.401000E+01 2.116000E+01 3.661000E+01 +1589 1 8.700000E-01 2.382000E+01 3.668000E+01 +1590 1 3.915000E+01 7.480000E+00 1.593000E+01 +1591 1 1.036000E+01 1.030000E+01 3.190000E+01 +1592 1 4.220000E+00 1.625000E+01 1.119000E+01 +1593 1 3.389000E+01 1.780000E+00 2.755000E+01 +1594 1 1.246000E+01 8.160000E+00 3.565000E+01 +1595 1 3.811000E+01 1.320000E+01 4.170000E+00 +1596 1 2.947000E+01 6.310000E+00 3.321000E+01 +1597 1 1.444000E+01 2.160000E+01 7.480000E+00 +1598 1 3.360000E+01 2.825000E+01 1.814000E+01 +1599 1 6.400000E-01 3.160000E+01 2.619000E+01 +1600 1 2.477000E+01 2.643000E+01 1.880000E+01 +1601 1 1.755000E+01 2.823000E+01 3.460000E+01 +1602 1 3.945000E+01 2.520000E+01 1.824000E+01 +1603 1 3.013000E+01 2.077000E+01 1.514000E+01 +1604 1 2.459000E+01 3.660000E+01 3.478000E+01 +1605 1 2.318000E+01 9.770000E+00 3.799000E+01 +1606 1 3.523000E+01 9.760000E+00 1.120000E+01 +1607 1 3.625000E+01 3.149000E+01 8.750000E+00 +1608 1 3.202000E+01 7.500000E+00 7.090000E+00 +1609 1 1.357000E+01 3.376000E+01 2.663000E+01 +1610 1 2.101000E+01 1.504000E+01 1.717000E+01 +1611 1 2.895000E+01 4.980000E+00 2.930000E+01 +1612 1 3.817000E+01 2.899000E+01 3.097000E+01 +1613 1 3.765000E+01 3.460000E+00 3.898000E+01 +1614 1 2.575000E+01 4.890000E+00 2.528000E+01 +1615 1 3.599000E+01 1.568000E+01 1.927000E+01 +1616 1 2.431000E+01 5.700000E+00 3.397000E+01 +1617 1 2.130000E+00 2.891000E+01 6.330000E+00 +1618 1 3.190000E+00 5.440000E+00 3.909000E+01 +1619 1 2.340000E+00 3.554000E+01 2.575000E+01 +1620 1 1.124000E+01 7.820000E+00 3.241000E+01 +1621 1 5.200000E-01 5.850000E+00 3.887000E+01 +1622 1 8.370000E+00 6.440000E+00 3.862000E+01 +1623 1 1.790000E+00 3.708000E+01 2.244000E+01 +1624 1 1.278000E+01 2.651000E+01 1.812000E+01 +1625 1 2.391000E+01 2.164000E+01 1.222000E+01 +1626 1 2.356000E+01 1.921000E+01 7.060000E+00 +1627 1 3.853000E+01 3.246000E+01 3.819000E+01 +1628 1 6.430000E+00 2.372000E+01 3.407000E+01 +1629 1 1.055000E+01 2.012000E+01 5.500000E+00 +1630 1 2.635000E+01 1.908000E+01 3.655000E+01 +1631 1 1.615000E+01 5.330000E+00 1.680000E+01 +1632 1 2.050000E+01 2.713000E+01 2.675000E+01 +1633 1 2.450000E+00 1.850000E+00 1.185000E+01 +1634 1 3.842000E+01 1.927000E+01 1.340000E+01 +1635 1 3.560000E+01 2.991000E+01 3.746000E+01 +1636 1 1.205000E+01 1.955000E+01 3.382000E+01 +1637 1 3.346000E+01 1.793000E+01 3.918000E+01 +1638 1 1.804000E+01 1.845000E+01 2.919000E+01 +1639 1 2.013000E+01 3.484000E+01 1.485000E+01 +1640 1 1.857000E+01 2.674000E+01 2.141000E+01 +1641 1 1.780000E+00 3.457000E+01 3.455000E+01 +1642 1 1.133000E+01 5.160000E+00 2.104000E+01 +1643 1 8.710000E+00 2.148000E+01 2.817000E+01 +1644 1 2.564000E+01 2.289000E+01 3.583000E+01 +1645 1 1.795000E+01 2.480000E+01 3.808000E+01 +1646 1 2.110000E+00 2.141000E+01 3.274000E+01 +1647 1 3.600000E+01 1.830000E+01 2.078000E+01 +1648 1 1.551000E+01 4.011000E+01 5.650000E+00 +1649 1 3.445000E+01 3.825000E+01 6.640000E+00 +1650 1 2.430000E+00 3.178000E+01 2.884000E+01 +1651 1 3.040000E+01 1.860000E+00 3.503000E+01 +1652 1 2.811000E+01 8.440000E+00 2.985000E+01 +1653 1 1.467000E+01 1.845000E+01 3.386000E+01 +1654 1 3.925000E+01 6.950000E+00 3.398000E+01 +1655 1 3.377000E+01 2.648000E+01 6.800000E+00 +1656 1 4.520000E+00 2.755000E+01 3.924000E+01 +1657 1 2.454000E+01 3.519000E+01 2.140000E+00 +1658 1 3.307000E+01 3.625000E+01 4.980000E+00 +1659 1 3.070000E+00 3.100000E+00 1.713000E+01 +1660 1 3.759000E+01 1.688000E+01 3.333000E+01 +1661 1 9.100000E+00 3.988000E+01 4.560000E+00 +1662 1 2.423000E+01 8.630000E+00 3.409000E+01 +1663 1 3.720000E+01 2.865000E+01 2.818000E+01 +1664 1 9.920000E+00 1.170000E+00 2.153000E+01 +1665 1 5.900000E+00 1.950000E+00 2.841000E+01 +1666 1 3.709000E+01 1.570000E+01 2.824000E+01 +1667 1 3.722000E+01 7.380000E+00 2.617000E+01 +1668 1 3.050000E+00 2.716000E+01 8.050000E+00 +1669 1 1.669000E+01 3.698000E+01 1.056000E+01 +1670 1 3.190000E+00 9.160000E+00 7.780000E+00 +1671 1 2.651000E+01 2.454000E+01 1.986000E+01 +1672 1 2.637000E+01 1.740000E+00 2.675000E+01 +1673 1 2.998000E+01 3.964000E+01 1.620000E+01 +1674 1 1.909000E+01 1.974000E+01 2.647000E+01 +1675 1 1.444000E+01 2.134000E+01 3.925000E+01 +1676 1 6.450000E+00 3.316000E+01 3.692000E+01 +1677 1 1.319000E+01 2.623000E+01 3.686000E+01 +1678 1 2.803000E+01 2.920000E+01 3.413000E+01 +1679 1 2.336000E+01 1.011000E+01 1.954000E+01 +1680 1 2.556000E+01 1.220000E+01 3.832000E+01 +1681 1 2.229000E+01 2.916000E+01 2.311000E+01 +1682 1 3.942000E+01 3.332000E+01 1.121000E+01 +1683 1 2.733000E+01 1.537000E+01 2.445000E+01 +1684 1 1.812000E+01 3.589000E+01 3.707000E+01 +1685 1 1.044000E+01 2.163000E+01 1.333000E+01 +1686 1 2.497000E+01 1.248000E+01 2.150000E+00 +1687 1 2.822000E+01 2.474000E+01 8.800000E-01 +1688 1 2.875000E+01 1.143000E+01 3.599000E+01 +1689 1 1.142000E+01 2.230000E+00 2.508000E+01 +1690 1 2.919000E+01 1.269000E+01 5.180000E+00 +1691 1 3.500000E+00 2.240000E+00 3.905000E+01 +1692 1 2.187000E+01 1.219000E+01 2.446000E+01 +1693 1 1.705000E+01 5.650000E+00 1.264000E+01 +1694 1 1.888000E+01 3.955000E+01 2.936000E+01 +1695 1 1.288000E+01 8.860000E+00 1.602000E+01 +1696 1 1.724000E+01 1.053000E+01 1.660000E+00 +1697 1 2.829000E+01 6.300000E-01 1.257000E+01 +1698 1 2.346000E+01 1.376000E+01 3.924000E+01 +1699 1 2.246000E+01 3.885000E+01 3.055000E+01 +1700 1 9.180000E+00 2.009000E+01 9.260000E+00 +1701 1 3.654000E+01 2.511000E+01 1.799000E+01 +1702 1 1.297000E+01 2.850000E+01 2.644000E+01 +1703 1 2.678000E+01 8.660000E+00 2.131000E+01 +1704 1 1.525000E+01 1.230000E+01 6.700000E-01 +1705 1 4.003000E+01 6.860000E+00 2.565000E+01 +1706 1 2.540000E+00 2.277000E+01 3.831000E+01 +1707 1 3.055000E+01 4.690000E+00 1.134000E+01 +1708 1 9.390000E+00 8.790000E+00 1.818000E+01 +1709 1 2.059000E+01 4.900000E-01 1.360000E+00 +1710 1 2.695000E+01 3.643000E+01 1.245000E+01 +1711 1 2.780000E+00 2.471000E+01 6.670000E+00 +1712 1 3.233000E+01 4.870000E+00 3.930000E+01 +1713 1 3.906000E+01 1.200000E+00 2.692000E+01 +1714 1 2.170000E+01 1.590000E+00 2.602000E+01 +1715 1 1.250000E+01 6.840000E+00 2.030000E+00 +1716 1 2.013000E+01 2.539000E+01 3.270000E+00 +1717 1 2.575000E+01 2.447000E+01 3.931000E+01 +1718 1 2.806000E+01 3.913000E+01 6.600000E+00 +1719 1 3.321000E+01 1.275000E+01 6.310000E+00 +1720 1 1.335000E+01 1.245000E+01 1.926000E+01 +1721 1 2.568000E+01 3.640000E+01 7.660000E+00 +1722 1 9.700000E-01 1.674000E+01 2.402000E+01 +1723 1 3.637000E+01 1.364000E+01 3.056000E+01 +1724 1 1.406000E+01 3.772000E+01 3.148000E+01 +1725 1 3.019000E+01 2.769000E+01 3.261000E+01 +1726 1 3.516000E+01 3.715000E+01 3.827000E+01 +1727 1 1.748000E+01 1.960000E+01 1.160000E+01 +1728 1 1.846000E+01 2.165000E+01 9.830000E+00 +1729 1 2.400000E+01 1.108000E+01 9.510000E+00 +1730 1 2.802000E+01 2.607000E+01 2.209000E+01 +1731 1 1.259000E+01 1.397000E+01 3.003000E+01 +1732 1 2.862000E+01 4.430000E+00 2.085000E+01 +1733 1 4.460000E+00 3.632000E+01 1.409000E+01 +1734 1 3.450000E+01 2.260000E+00 2.344000E+01 +1735 1 1.382000E+01 1.144000E+01 1.661000E+01 +1736 1 5.300000E-01 2.182000E+01 3.018000E+01 +1737 1 4.340000E+00 3.899000E+01 1.785000E+01 +1738 1 1.810000E+00 3.137000E+01 1.155000E+01 +1739 1 1.918000E+01 1.017000E+01 3.683000E+01 +1740 1 9.850000E+00 1.740000E+01 2.490000E+00 +1741 1 1.590000E+01 2.014000E+01 2.892000E+01 +1742 1 3.247000E+01 3.502000E+01 1.348000E+01 +1743 1 4.860000E+00 2.190000E+00 2.418000E+01 +1744 1 3.659000E+01 7.050000E+00 5.770000E+00 +1745 1 2.973000E+01 3.784000E+01 2.522000E+01 +1746 1 2.486000E+01 1.655000E+01 6.790000E+00 +1747 1 6.670000E+00 4.340000E+00 9.500000E-01 +1748 1 1.712000E+01 1.086000E+01 1.260000E+01 +1749 1 6.540000E+00 3.900000E-01 1.445000E+01 +1750 1 3.619000E+01 1.766000E+01 1.223000E+01 +1751 1 1.913000E+01 1.603000E+01 2.980000E+01 +1752 1 1.849000E+01 3.419000E+01 2.948000E+01 +1753 1 2.348000E+01 3.249000E+01 2.717000E+01 +1754 1 2.548000E+01 5.370000E+00 2.971000E+01 +1755 1 2.172000E+01 3.547000E+01 2.350000E+00 +1756 1 1.574000E+01 8.970000E+00 2.768000E+01 +1757 1 2.262000E+01 1.982000E+01 9.520000E+00 +1758 1 2.746000E+01 1.683000E+01 1.884000E+01 +1759 1 1.144000E+01 3.645000E+01 3.426000E+01 +1760 1 3.298000E+01 2.106000E+01 3.349000E+01 +1761 1 5.250000E+00 1.928000E+01 3.035000E+01 +1762 1 6.300000E-01 1.250000E+01 2.530000E+01 +1763 1 9.400000E-01 1.665000E+01 1.941000E+01 +1764 1 1.082000E+01 2.477000E+01 2.503000E+01 +1765 1 2.280000E+00 2.330000E+00 2.390000E+00 +1766 1 4.002000E+01 4.001000E+01 2.991000E+01 +1767 1 1.660000E+01 3.330000E+00 2.148000E+01 +1768 1 1.935000E+01 6.840000E+00 1.167000E+01 +1769 1 1.072000E+01 1.611000E+01 2.903000E+01 +1770 1 2.711000E+01 3.258000E+01 3.736000E+01 +1771 1 2.850000E+01 7.330000E+00 3.782000E+01 +1772 1 2.094000E+01 3.183000E+01 2.010000E+00 +1773 1 1.675000E+01 1.975000E+01 2.478000E+01 +1774 1 7.740000E+00 1.220000E+00 3.048000E+01 +1775 1 1.595000E+01 4.029000E+01 1.457000E+01 +1776 1 3.644000E+01 1.568000E+01 7.500000E+00 +1777 1 3.895000E+01 2.472000E+01 4.001000E+01 +1778 1 1.380000E+00 1.794000E+01 2.928000E+01 +1779 1 3.220000E+00 3.290000E+01 8.260000E+00 +1780 1 3.617000E+01 3.785000E+01 1.173000E+01 +1781 1 1.069000E+01 1.774000E+01 2.524000E+01 +1782 1 1.614000E+01 1.690000E+00 2.742000E+01 +1783 1 2.514000E+01 1.900000E+01 3.252000E+01 +1784 1 1.745000E+01 2.930000E+01 2.496000E+01 +1785 1 3.321000E+01 4.022000E+01 8.670000E+00 +1786 1 2.966000E+01 3.301000E+01 3.181000E+01 +1787 1 1.331000E+01 1.131000E+01 2.400000E+00 +1788 1 8.890000E+00 1.479000E+01 2.137000E+01 +1789 1 3.566000E+01 3.528000E+01 3.652000E+01 +1790 1 3.735000E+01 1.192000E+01 1.096000E+01 +1791 1 3.360000E+01 2.954000E+01 4.820000E+00 +1792 1 1.115000E+01 2.559000E+01 3.225000E+01 +1793 1 3.132000E+01 2.833000E+01 3.790000E+01 +1794 1 1.190000E+00 1.581000E+01 7.000000E-01 +1795 1 1.856000E+01 2.268000E+01 1.798000E+01 +1796 1 3.294000E+01 4.810000E+00 3.516000E+01 +1797 1 3.802000E+01 1.726000E+01 1.693000E+01 +1798 1 2.040000E+01 3.594000E+01 4.023000E+01 +1799 1 9.300000E+00 2.855000E+01 3.863000E+01 +1800 1 9.360000E+00 1.686000E+01 3.854000E+01 +1801 1 1.280000E+01 6.540000E+00 2.445000E+01 +1802 1 2.370000E+00 4.027000E+01 1.901000E+01 +1803 1 2.906000E+01 1.402000E+01 5.900000E-01 +1804 1 1.776000E+01 1.308000E+01 1.941000E+01 +1805 1 2.507000E+01 2.350000E+00 3.028000E+01 +1806 1 3.982000E+01 2.348000E+01 1.195000E+01 +1807 1 3.519000E+01 2.357000E+01 2.474000E+01 +1808 1 3.429000E+01 8.730000E+00 6.230000E+00 +1809 1 1.530000E+00 2.867000E+01 1.236000E+01 +1810 1 6.780000E+00 3.438000E+01 3.128000E+01 +1811 1 2.726000E+01 1.453000E+01 3.880000E+01 +1812 1 1.550000E+01 1.497000E+01 3.016000E+01 +1813 1 8.100000E+00 1.239000E+01 3.094000E+01 +1814 1 2.568000E+01 3.996000E+01 2.365000E+01 +1815 1 1.689000E+01 3.979000E+01 3.122000E+01 +1816 1 5.090000E+00 1.760000E+01 1.576000E+01 +1817 1 1.208000E+01 7.970000E+00 1.855000E+01 +1818 1 3.058000E+01 1.607000E+01 3.210000E+01 +1819 1 2.125000E+01 1.535000E+01 3.423000E+01 +1820 1 3.765000E+01 2.319000E+01 3.189000E+01 +1821 1 3.334000E+01 8.090000E+00 1.414000E+01 +1822 1 1.188000E+01 2.877000E+01 3.491000E+01 +1823 1 3.550000E+01 3.490000E+01 4.560000E+00 +1824 1 3.913000E+01 3.114000E+01 3.342000E+01 +1825 1 1.413000E+01 6.370000E+00 1.086000E+01 +1826 1 3.283000E+01 3.270000E+01 2.100000E-01 +1827 1 1.939000E+01 3.919000E+01 1.671000E+01 +1828 1 2.796000E+01 7.160000E+00 1.817000E+01 +1829 1 3.993000E+01 7.720000E+00 2.884000E+01 +1830 1 2.421000E+01 1.850000E+01 2.216000E+01 +1831 1 2.020000E+01 2.950000E+01 6.580000E+00 +1832 1 2.442000E+01 1.847000E+01 1.490000E+01 +1833 1 1.147000E+01 3.184000E+01 3.898000E+01 +1834 1 4.028000E+01 8.290000E+00 3.143000E+01 +1835 1 2.108000E+01 2.404000E+01 1.882000E+01 +1836 1 3.810000E+01 1.056000E+01 4.260000E+00 +1837 1 3.573000E+01 1.000000E+00 5.380000E+00 +1838 1 2.222000E+01 2.716000E+01 9.020000E+00 +1839 1 3.159000E+01 3.808000E+01 9.170000E+00 +1840 1 3.800000E-01 3.962000E+01 1.735000E+01 +1841 1 1.787000E+01 3.647000E+01 1.850000E+01 +1842 1 2.036000E+01 3.717000E+01 2.874000E+01 +1843 1 2.341000E+01 8.270000E+00 1.640000E+01 +1844 1 3.000000E-02 3.900000E+00 1.260000E+00 +1845 1 2.710000E+01 8.220000E+00 4.250000E+00 +1846 1 2.366000E+01 1.866000E+01 8.300000E-01 +1847 1 1.576000E+01 8.180000E+00 3.938000E+01 +1848 1 3.188000E+01 3.540000E+00 2.061000E+01 +1849 1 1.290000E+01 1.954000E+01 3.000000E+01 +1850 1 1.485000E+01 1.040000E+00 2.991000E+01 +1851 1 1.851000E+01 3.678000E+01 2.594000E+01 +1852 1 2.624000E+01 3.060000E+00 1.558000E+01 +1853 1 3.924000E+01 3.449000E+01 1.527000E+01 +1854 1 3.210000E+00 6.620000E+00 6.430000E+00 +1855 1 5.410000E+00 1.136000E+01 3.553000E+01 +1856 1 3.661000E+01 3.311000E+01 2.536000E+01 +1857 1 5.570000E+00 8.200000E-01 3.565000E+01 +1858 1 1.049000E+01 3.328000E+01 3.019000E+01 +1859 1 7.730000E+00 1.702000E+01 2.246000E+01 +1860 1 3.585000E+01 1.798000E+01 6.350000E+00 +1861 1 2.886000E+01 3.490000E+00 4.270000E+00 +1862 1 2.747000E+01 3.870000E+01 3.198000E+01 +1863 1 1.700000E+00 3.540000E+01 4.007000E+01 +1864 1 5.500000E-01 1.921000E+01 1.775000E+01 +1865 1 2.096000E+01 3.016000E+01 1.527000E+01 +1866 1 1.844000E+01 1.621000E+01 3.494000E+01 +1867 1 3.465000E+01 3.493000E+01 2.428000E+01 +1868 1 1.211000E+01 2.377000E+01 1.886000E+01 +1869 1 3.870000E+01 3.101000E+01 2.706000E+01 +1870 1 3.814000E+01 1.502000E+01 2.090000E+01 +1871 1 2.744000E+01 6.160000E+00 1.375000E+01 +1872 1 3.002000E+01 3.709000E+01 3.162000E+01 +1873 1 1.150000E+00 2.778000E+01 2.136000E+01 +1874 1 3.644000E+01 1.673000E+01 3.066000E+01 +1875 1 1.287000E+01 2.362000E+01 3.770000E+01 +1876 1 1.185000E+01 3.817000E+01 1.808000E+01 +1877 1 2.347000E+01 3.306000E+01 9.350000E+00 +1878 1 1.964000E+01 9.700000E-01 4.610000E+00 +1879 1 7.420000E+00 3.815000E+01 3.236000E+01 +1880 1 2.014000E+01 3.887000E+01 1.179000E+01 +1881 1 3.820000E+00 5.500000E+00 2.936000E+01 +1882 1 9.780000E+00 1.925000E+01 3.726000E+01 +1883 1 3.490000E+00 2.258000E+01 1.048000E+01 +1884 1 2.490000E+00 4.002000E+01 3.716000E+01 +1885 1 2.331000E+01 3.465000E+01 3.216000E+01 +1886 1 3.424000E+01 3.044000E+01 7.240000E+00 +1887 1 3.263000E+01 2.463000E+01 9.450000E+00 +1888 1 1.900000E+01 3.387000E+01 3.913000E+01 +1889 1 1.298000E+01 2.100000E+01 2.478000E+01 +1890 1 4.660000E+00 1.164000E+01 2.001000E+01 +1891 1 8.660000E+00 1.968000E+01 3.490000E+00 +1892 1 3.391000E+01 3.492000E+01 8.690000E+00 +1893 1 1.517000E+01 3.302000E+01 1.216000E+01 +1894 1 6.180000E+00 3.916000E+01 2.259000E+01 +1895 1 1.852000E+01 2.288000E+01 3.203000E+01 +1896 1 1.905000E+01 3.223000E+01 6.490000E+00 +1897 1 9.770000E+00 1.761000E+01 1.277000E+01 +1898 1 2.610000E+01 3.758000E+01 2.540000E+01 +1899 1 2.390000E+00 3.675000E+01 1.053000E+01 +1900 1 8.360000E+00 1.743000E+01 6.530000E+00 +1901 1 2.823000E+01 1.711000E+01 2.806000E+01 +1902 1 5.350000E+00 6.730000E+00 2.541000E+01 +1903 1 3.550000E+01 1.965000E+01 2.970000E+00 +1904 1 3.121000E+01 2.204000E+01 1.890000E+00 +1905 1 1.863000E+01 9.320000E+00 1.485000E+01 +1906 1 2.233000E+01 3.000000E-02 4.780000E+00 +1907 1 2.608000E+01 3.149000E+01 5.060000E+00 +1908 1 3.112000E+01 1.725000E+01 2.705000E+01 +1909 1 1.776000E+01 3.282000E+01 3.413000E+01 +1910 1 2.572000E+01 7.650000E+00 2.505000E+01 +1911 1 6.210000E+00 6.950000E+00 2.819000E+01 +1912 1 4.017000E+01 1.496000E+01 1.018000E+01 +1913 1 1.221000E+01 1.925000E+01 1.672000E+01 +1914 1 2.248000E+01 3.717000E+01 1.079000E+01 +1915 1 1.144000E+01 3.481000E+01 1.522000E+01 +1916 1 1.109000E+01 3.150000E+01 9.400000E+00 +1917 1 7.050000E+00 1.754000E+01 1.385000E+01 +1918 1 1.539000E+01 3.066000E+01 3.746000E+01 +1919 1 9.780000E+00 2.493000E+01 1.945000E+01 +1920 1 2.155000E+01 2.014000E+01 3.036000E+01 +1921 1 2.627000E+01 1.994000E+01 1.207000E+01 +1922 1 1.927000E+01 7.270000E+00 1.826000E+01 +1923 1 1.879000E+01 3.570000E+01 3.430000E+01 +1924 1 2.097000E+01 1.404000E+01 2.410000E+00 +1925 1 7.430000E+00 3.211000E+01 2.874000E+01 +1926 1 3.223000E+01 2.498000E+01 1.243000E+01 +1927 1 3.034000E+01 2.710000E+01 2.332000E+01 +1928 1 2.535000E+01 2.886000E+01 1.108000E+01 +1929 1 2.469000E+01 1.790000E+01 9.410000E+00 +1930 1 2.729000E+01 1.739000E+01 3.872000E+01 +1931 1 1.462000E+01 1.766000E+01 1.618000E+01 +1932 1 2.636000E+01 2.520000E+00 3.791000E+01 +1933 1 3.723000E+01 1.258000E+01 3.390000E+01 +1934 1 2.390000E+00 3.449000E+01 6.190000E+00 +1935 1 3.512000E+01 2.505000E+01 3.450000E+00 +1936 1 1.540000E+01 1.715000E+01 3.580000E+00 +1937 1 2.794000E+01 4.620000E+00 1.701000E+01 +1938 1 3.736000E+01 2.940000E+01 4.100000E+00 +1939 1 8.540000E+00 3.099000E+01 3.167000E+01 +1940 1 3.295000E+01 9.760000E+00 3.737000E+01 +1941 1 3.131000E+01 1.453000E+01 2.660000E+00 +1942 1 3.097000E+01 2.230000E+00 4.007000E+01 +1943 1 2.284000E+01 1.487000E+01 1.404000E+01 +1944 1 1.652000E+01 7.380000E+00 3.470000E+01 +1945 1 3.885000E+01 1.276000E+01 3.047000E+01 +1946 1 2.190000E+01 3.253000E+01 3.989000E+01 +1947 1 9.730000E+00 2.930000E+01 2.916000E+01 +1948 1 9.940000E+00 2.907000E+01 4.120000E+00 +1949 1 1.190000E+00 1.979000E+01 2.460000E+01 +1950 1 9.110000E+00 3.736000E+01 2.585000E+01 +1951 1 1.398000E+01 3.498000E+01 1.410000E+01 +1952 1 2.461000E+01 4.540000E+00 3.690000E+01 +1953 1 2.442000E+01 1.181000E+01 3.066000E+01 +1954 1 1.450000E+01 3.678000E+01 1.617000E+01 +1955 1 4.290000E+00 3.034000E+01 1.083000E+01 +1956 1 3.091000E+01 3.558000E+01 1.665000E+01 +1957 1 3.978000E+01 2.183000E+01 5.820000E+00 +1958 1 2.088000E+01 1.798000E+01 6.000000E-02 +1959 1 1.122000E+01 1.952000E+01 1.430000E+00 +1960 1 2.802000E+01 7.800000E-01 3.607000E+01 +1961 1 4.170000E+00 1.698000E+01 5.000000E-02 +1962 1 2.842000E+01 1.480000E+01 3.340000E+00 +1963 1 2.181000E+01 7.510000E+00 3.770000E+00 +1964 1 3.611000E+01 2.040000E+01 1.695000E+01 +1965 1 3.023000E+01 3.286000E+01 1.530000E+00 +1966 1 4.480000E+00 2.643000E+01 2.905000E+01 +1967 1 1.683000E+01 3.526000E+01 3.156000E+01 +1968 1 1.940000E+00 5.440000E+00 2.230000E+01 +1969 1 9.040000E+00 3.510000E+01 1.158000E+01 +1970 1 1.770000E+01 2.642000E+01 2.703000E+01 +1971 1 3.857000E+01 2.051000E+01 3.124000E+01 +1972 1 7.100000E+00 2.992000E+01 1.491000E+01 +1973 1 5.650000E+00 3.046000E+01 2.999000E+01 +1974 1 1.350000E+01 5.300000E-01 3.686000E+01 +1975 1 3.550000E+01 9.410000E+00 2.492000E+01 +1976 1 3.505000E+01 2.131000E+01 2.675000E+01 +1977 1 1.567000E+01 1.046000E+01 3.034000E+01 +1978 1 1.478000E+01 3.745000E+01 2.196000E+01 +1979 1 3.800000E-01 3.909000E+01 2.115000E+01 +1980 1 2.131000E+01 9.730000E+00 2.169000E+01 +1981 1 1.924000E+01 2.112000E+01 1.348000E+01 +1982 1 1.861000E+01 3.049000E+01 1.008000E+01 +1983 1 3.514000E+01 5.950000E+00 1.891000E+01 +1984 1 3.828000E+01 1.015000E+01 3.113000E+01 +1985 1 2.987000E+01 9.100000E+00 3.284000E+01 +1986 1 3.806000E+01 1.669000E+01 9.930000E+00 +1987 1 3.625000E+01 3.150000E+00 3.690000E+00 +1988 1 1.120000E+01 1.831000E+01 1.908000E+01 +1989 1 1.729000E+01 1.204000E+01 3.186000E+01 +1990 1 2.065000E+01 1.251000E+01 2.196000E+01 +1991 1 3.660000E+00 1.325000E+01 3.220000E+00 +1992 1 3.760000E+01 4.830000E+00 8.060000E+00 +1993 1 3.707000E+01 5.360000E+00 3.269000E+01 +1994 1 2.071000E+01 2.979000E+01 2.930000E+01 +1995 1 5.900000E-01 3.394000E+01 1.640000E+00 +1996 1 3.053000E+01 7.920000E+00 1.475000E+01 +1997 1 1.812000E+01 1.180000E+00 1.559000E+01 +1998 1 1.635000E+01 2.170000E+00 3.428000E+01 +1999 1 3.770000E+01 1.321000E+01 1.713000E+01 +2000 1 1.345000E+01 3.422000E+01 4.590000E+00 +2001 1 6.390000E+00 7.100000E+00 1.604000E+01 +2002 1 2.936000E+01 2.284000E+01 3.840000E+01 +2003 1 2.132000E+01 1.267000E+01 1.311000E+01 +2004 1 3.830000E+00 1.482000E+01 3.601000E+01 +2005 1 3.017000E+01 3.080000E+00 3.063000E+01 +2006 1 5.670000E+00 2.356000E+01 1.549000E+01 +2007 1 2.568000E+01 1.509000E+01 2.150000E+00 +2008 1 3.750000E+01 5.240000E+00 3.576000E+01 +2009 1 4.020000E+01 6.800000E+00 3.420000E+00 +2010 1 7.520000E+00 4.850000E+00 2.242000E+01 +2011 1 9.120000E+00 1.100000E+00 1.607000E+01 +2012 1 3.420000E+01 3.660000E+00 9.460000E+00 +2013 1 1.500000E+00 4.630000E+00 1.097000E+01 +2014 1 8.710000E+00 3.340000E+00 1.196000E+01 +2015 1 1.524000E+01 4.090000E+00 3.273000E+01 +2016 1 3.619000E+01 2.718000E+01 5.430000E+00 +2017 1 3.464000E+01 3.084000E+01 1.802000E+01 +2018 1 3.812000E+01 2.797000E+01 1.283000E+01 +2019 1 1.100000E+01 3.628000E+01 3.115000E+01 +2020 1 1.196000E+01 4.770000E+00 3.605000E+01 +2021 1 2.456000E+01 1.463000E+01 2.922000E+01 +2022 1 3.370000E+00 1.203000E+01 3.398000E+01 +2023 1 2.095000E+01 1.951000E+01 1.167000E+01 +2024 1 7.290000E+00 3.550000E+00 3.223000E+01 +2025 1 1.255000E+01 2.448000E+01 7.530000E+00 +2026 1 8.020000E+00 3.410000E+00 1.872000E+01 +2027 1 1.272000E+01 2.208000E+01 1.634000E+01 +2028 1 2.495000E+01 7.100000E-01 1.731000E+01 +2029 1 1.877000E+01 6.440000E+00 3.718000E+01 +2030 1 1.307000E+01 3.171000E+01 2.130000E+01 +2031 1 7.780000E+00 2.693000E+01 4.990000E+00 +2032 1 2.468000E+01 1.657000E+01 4.060000E+00 +2033 1 1.011000E+01 2.092000E+01 2.196000E+01 +2034 1 1.853000E+01 2.212000E+01 7.060000E+00 +2035 1 1.012000E+01 5.650000E+00 4.570000E+00 +2036 1 3.418000E+01 1.482000E+01 2.907000E+01 +2037 1 3.052000E+01 1.917000E+01 2.514000E+01 +2038 1 3.050000E+01 8.230000E+00 1.743000E+01 +2039 1 3.790000E+00 1.501000E+01 1.572000E+01 +2040 1 6.640000E+00 4.770000E+00 3.640000E+01 +2041 1 7.250000E+00 1.136000E+01 3.650000E+00 +2042 1 3.843000E+01 1.134000E+01 2.400000E-01 +2043 1 1.824000E+01 2.348000E+01 2.447000E+01 +2044 1 3.782000E+01 4.890000E+00 2.427000E+01 +2045 1 1.455000E+01 3.351000E+01 8.510000E+00 +2046 1 1.213000E+01 1.013000E+01 5.290000E+00 +2047 1 1.491000E+01 3.854000E+01 7.660000E+00 +2048 1 3.424000E+01 1.661000E+01 2.545000E+01 +2049 1 6.710000E+00 3.793000E+01 1.432000E+01 +2050 1 3.840000E+00 1.933000E+01 2.429000E+01 +2051 1 5.700000E-01 3.471000E+01 2.379000E+01 +2052 1 3.556000E+01 3.795000E+01 2.740000E+01 +2053 1 6.480000E+00 1.991000E+01 2.495000E+01 +2054 1 3.000000E+01 2.298000E+01 2.647000E+01 +2055 1 1.057000E+01 1.534000E+01 1.510000E+01 +2056 1 6.830000E+00 1.818000E+01 3.757000E+01 +2057 1 1.961000E+01 2.792000E+01 4.360000E+00 +2058 1 1.999000E+01 1.749000E+01 3.711000E+01 +2059 1 6.520000E+00 3.406000E+01 1.856000E+01 +2060 1 2.003000E+01 4.008000E+01 7.370000E+00 +2061 1 1.647000E+01 1.287000E+01 3.846000E+01 +2062 1 1.188000E+01 2.675000E+01 3.140000E+00 +2063 1 3.070000E+01 8.620000E+00 1.174000E+01 +2064 1 7.650000E+00 2.423000E+01 2.152000E+01 +2065 1 3.066000E+01 1.515000E+01 1.777000E+01 +2066 1 9.030000E+00 2.920000E+01 1.074000E+01 +2067 1 2.170000E+01 5.990000E+00 1.078000E+01 +2068 1 2.112000E+01 6.610000E+00 2.084000E+01 +2069 1 1.844000E+01 1.560000E+01 3.228000E+01 +2070 1 8.050000E+00 2.401000E+01 2.487000E+01 +2071 1 1.931000E+01 1.304000E+01 3.612000E+01 +2072 1 3.055000E+01 3.181000E+01 1.144000E+01 +2073 1 2.670000E+01 3.999000E+01 1.013000E+01 +2074 1 3.010000E+00 3.455000E+01 1.576000E+01 +2075 1 1.197000E+01 3.352000E+01 1.999000E+01 +2076 1 7.530000E+00 3.550000E+01 2.745000E+01 +2077 1 6.260000E+00 2.133000E+01 3.595000E+01 +2078 1 3.640000E+00 1.123000E+01 1.010000E+01 +2079 1 3.208000E+01 3.646000E+01 2.263000E+01 +2080 1 2.974000E+01 3.693000E+01 2.101000E+01 +2081 1 3.843000E+01 1.063000E+01 1.834000E+01 +2082 1 1.259000E+01 1.919000E+01 2.240000E+01 +2083 1 1.861000E+01 3.866000E+01 3.746000E+01 +2084 1 3.072000E+01 2.510000E+00 2.531000E+01 +2085 1 1.811000E+01 3.599000E+01 7.630000E+00 +2086 1 1.513000E+01 4.009000E+01 3.336000E+01 +2087 1 1.111000E+01 1.203000E+01 7.930000E+00 +2088 1 1.400000E+01 2.710000E+00 4.600000E-01 +2089 1 8.820000E+00 7.960000E+00 3.614000E+01 +2090 1 2.054000E+01 3.935000E+01 3.947000E+01 +2091 1 4.016000E+01 3.491000E+01 4.170000E+00 +2092 1 5.450000E+00 7.670000E+00 1.850000E+01 +2093 1 2.836000E+01 1.260000E+01 2.475000E+01 +2094 1 3.201000E+01 2.872000E+01 2.179000E+01 +2095 1 3.032000E+01 1.611000E+01 2.945000E+01 +2096 1 2.493000E+01 2.700000E+01 2.410000E+01 +2097 1 2.096000E+01 3.122000E+01 2.710000E+01 +2098 1 1.995000E+01 1.826000E+01 3.333000E+01 +2099 1 1.625000E+01 3.130000E+01 8.000000E+00 +2100 1 1.063000E+01 1.206000E+01 1.804000E+01 +2101 1 1.247000E+01 1.196000E+01 3.214000E+01 +2102 1 3.433000E+01 3.517000E+01 1.640000E+01 +2103 1 2.322000E+01 3.050000E+00 1.655000E+01 +2104 1 3.519000E+01 8.700000E-01 3.234000E+01 +2105 1 1.722000E+01 1.723000E+01 1.978000E+01 +2106 1 2.480000E+01 3.750000E+01 6.700000E-01 +2107 1 3.973000E+01 3.731000E+01 2.819000E+01 +2108 1 1.546000E+01 1.690000E+01 2.411000E+01 +2109 1 1.067000E+01 1.007000E+01 1.075000E+01 +2110 1 3.864000E+01 1.058000E+01 2.272000E+01 +2111 1 3.115000E+01 9.980000E+00 2.317000E+01 +2112 1 2.253000E+01 1.992000E+01 1.380000E+01 +2113 1 1.176000E+01 1.405000E+01 3.903000E+01 +2114 1 1.018000E+01 9.280000E+00 8.030000E+00 +2115 1 1.445000E+01 2.184000E+01 3.200000E+01 +2116 1 1.692000E+01 2.470000E+01 1.871000E+01 +2117 1 2.841000E+01 2.090000E+01 1.081000E+01 +2118 1 1.582000E+01 9.670000E+00 1.823000E+01 +2119 1 3.260000E+00 4.080000E+00 3.358000E+01 +2120 1 3.262000E+01 2.107000E+01 3.990000E+00 +2121 1 1.652000E+01 1.218000E+01 3.564000E+01 +2122 1 2.648000E+01 2.505000E+01 2.501000E+01 +2123 1 3.168000E+01 8.160000E+00 2.482000E+01 +2124 1 1.468000E+01 1.968000E+01 2.087000E+01 +2125 1 1.103000E+01 2.608000E+01 6.010000E+00 +2126 1 1.102000E+01 1.184000E+01 2.603000E+01 +2127 1 3.776000E+01 3.770000E+00 1.490000E+00 +2128 1 2.031000E+01 2.734000E+01 6.700000E-01 +2129 1 3.770000E+00 3.563000E+01 4.170000E+00 +2130 1 4.490000E+00 2.167000E+01 1.302000E+01 +2131 1 3.730000E+00 2.565000E+01 1.098000E+01 +2132 1 3.893000E+01 2.628000E+01 3.085000E+01 +2133 1 1.716000E+01 7.780000E+00 1.678000E+01 +2134 1 3.330000E+01 3.916000E+01 1.899000E+01 +2135 1 3.264000E+01 4.210000E+00 2.427000E+01 +2136 1 1.114000E+01 8.100000E+00 2.329000E+01 +2137 1 1.026000E+01 8.900000E-01 2.724000E+01 +2138 1 2.257000E+01 2.754000E+01 3.789000E+01 +2139 1 2.495000E+01 2.840000E+01 3.687000E+01 +2140 1 3.977000E+01 2.981000E+01 5.800000E+00 +2141 1 2.256000E+01 3.840000E+00 6.270000E+00 +2142 1 7.580000E+00 1.410000E+01 3.520000E+00 +2143 1 1.702000E+01 3.918000E+01 9.200000E+00 +2144 1 2.898000E+01 1.973000E+01 3.924000E+01 +2145 1 4.020000E+01 1.529000E+01 2.723000E+01 +2146 1 7.220000E+00 2.652000E+01 2.819000E+01 +2147 1 1.020000E+01 4.510000E+00 2.913000E+01 +2148 1 1.075000E+01 1.786000E+01 8.600000E+00 +2149 1 2.851000E+01 6.170000E+00 2.682000E+01 +2150 1 1.450000E+00 2.132000E+01 4.020000E+00 +2151 1 4.360000E+00 1.142000E+01 4.500000E-01 +2152 1 6.800000E+00 2.136000E+01 2.166000E+01 +2153 1 1.803000E+01 3.907000E+01 4.900000E+00 +2154 1 3.187000E+01 1.368000E+01 1.983000E+01 +2155 1 3.040000E+01 9.820000E+00 3.786000E+01 +2156 1 3.694000E+01 5.550000E+00 1.614000E+01 +2157 1 1.520000E+00 2.840000E+00 7.180000E+00 +2158 1 7.550000E+00 3.788000E+01 1.150000E+00 +2159 1 3.262000E+01 8.680000E+00 1.004000E+01 +2160 1 9.400000E+00 1.616000E+01 1.029000E+01 +2161 1 5.980000E+00 1.628000E+01 2.001000E+01 +2162 1 1.590000E+00 2.898000E+01 2.510000E+00 +2163 1 2.260000E+00 2.503000E+01 2.702000E+01 +2164 1 3.725000E+01 2.886000E+01 1.681000E+01 +2165 1 1.751000E+01 3.490000E+01 2.327000E+01 +2166 1 2.729000E+01 1.952000E+01 2.661000E+01 +2167 1 8.190000E+00 3.201000E+01 2.417000E+01 +2168 1 7.080000E+00 2.577000E+01 1.091000E+01 +2169 1 3.065000E+01 6.030000E+00 2.910000E+00 +2170 1 2.078000E+01 1.994000E+01 1.970000E+01 +2171 1 7.100000E-01 7.250000E+00 1.784000E+01 +2172 1 3.287000E+01 8.740000E+00 1.891000E+01 +2173 1 1.178000E+01 2.800000E+01 1.470000E+01 +2174 1 2.178000E+01 2.015000E+01 3.462000E+01 +2175 1 3.874000E+01 1.992000E+01 1.613000E+01 +2176 1 3.554000E+01 3.239000E+01 3.856000E+01 +2177 1 1.772000E+01 4.020000E+01 1.210000E+00 +2178 1 2.093000E+01 1.558000E+01 2.323000E+01 +2179 1 8.900000E+00 2.592000E+01 3.849000E+01 +2180 1 1.428000E+01 6.460000E+00 3.351000E+01 diff --git a/examples/USER/misc/dpd_ext/dpdext/in.dpdext b/examples/USER/misc/dpd_ext/dpdext/in.dpdext new file mode 100644 index 0000000000..726f3a7b39 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext/in.dpdext @@ -0,0 +1,44 @@ +# DPD Fluid + +variable T equal 1.0 +variable rc equal 1.0 +variable rcD equal 1.2 + +units lj +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +### create box and configuration +variable L equal 5.0 +lattice fcc 3.0 +region simBox block 0 ${L} 0 ${L} 0 ${L} +create_box 2 simBox +#create_atoms 1 region simBox +create_atoms 1 random 100 132456 simBox +create_atoms 2 random 100 132456 simBox +mass 1 1.0 +mass 2 2.0 +### + +pair_style dpd/ext ${T} ${rc} 3854262 + +pair_coeff 1 1 25.0 4.5 4.53 0.5 0.53 1.2 #${rcD} +pair_coeff 1 2 25.1 4.51 4.54 0.51 0.54 1.21 #${rcD} +pair_coeff 2 2 25.2 4.52 4.55 0.52 0.55 1.22 #${rcD} + +timestep 0.01 +run_style verlet + +velocity all create ${T} 68768932 + +thermo_style custom step time temp press +thermo 500 + +fix 1 all nve + +run 50000 + +write_data final.data pair ij \ No newline at end of file diff --git a/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.1 b/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.1 new file mode 100644 index 0000000000..862aea77af --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.1 @@ -0,0 +1,201 @@ +LAMMPS (8 Apr 2021) +# DPD Fluid + +variable T equal 1.0 +variable rc equal 1.0 +variable rcD equal 1.2 + +units lj +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +### create box and configuration +variable L equal 5.0 +lattice fcc 3.0 +Lattice spacing in x,y,z = 1.1006424 1.1006424 1.1006424 +region simBox block 0 ${L} 0 ${L} 0 ${L} +region simBox block 0 5 0 ${L} 0 ${L} +region simBox block 0 5 0 5 0 ${L} +region simBox block 0 5 0 5 0 5 +create_box 2 simBox +Created orthogonal box = (0.0000000 0.0000000 0.0000000) to (5.5032121 5.5032121 5.5032121) + 1 by 1 by 1 MPI processor grid +#create_atoms 1 region simBox +create_atoms 1 random 100 132456 simBox +Created 100 atoms + create_atoms CPU = 0.001 seconds +create_atoms 2 random 100 132456 simBox +Created 100 atoms + create_atoms CPU = 0.000 seconds +mass 1 1.0 +mass 2 2.0 +### + +pair_style dpd/ext ${T} ${rc} 3854262 +pair_style dpd/ext 1 ${rc} 3854262 +pair_style dpd/ext 1 1 3854262 + +pair_coeff 1 1 25.0 4.5 4.53 0.5 0.53 1.2 #${rcD} +pair_coeff 1 2 25.1 4.51 4.54 0.51 0.54 1.21 #${rcD} +pair_coeff 2 2 25.2 4.52 4.55 0.52 0.55 1.22 #${rcD} + +timestep 0.01 +run_style verlet + +velocity all create ${T} 68768932 +velocity all create 1 68768932 + +thermo_style custom step time temp press +thermo 500 + +fix 1 all nve + +run 50000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 1.52 + ghost atom cutoff = 1.52 + binsize = 0.76, bins = 8 8 8 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair dpd/ext, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.087 | 3.087 | 3.087 Mbytes +Step Time Temp Press + 0 0 1 8.8992215 + 500 5 0.93699892 8.1219621 + 1000 10 0.99211009 7.4709658 + 1500 15 0.91190984 8.828742 + 2000 20 0.90749036 9.1258378 + 2500 25 0.97960404 7.085574 + 3000 30 1.0314836 6.8400202 + 3500 35 1.0137019 7.2346862 + 4000 40 0.98189616 6.7265624 + 4500 45 1.0127497 6.6718402 + 5000 50 0.90659787 7.4911309 + 5500 55 1.0257891 6.8163777 + 6000 60 1.0596209 7.8511522 + 6500 65 0.95679865 8.4091947 + 7000 70 1.012617 7.4162991 + 7500 75 1.0990412 7.160905 + 8000 80 0.91085269 7.6861008 + 8500 85 1.1000209 6.4818934 + 9000 90 0.99982282 8.1312206 + 9500 95 1.1330979 7.7167159 + 10000 100 0.98147521 8.4394218 + 10500 105 1.0254021 7.23574 + 11000 110 0.94064194 7.9766833 + 11500 115 1.012364 8.4285752 + 12000 120 0.94787277 7.0819132 + 12500 125 1.13729 7.9636837 + 13000 130 1.1200519 7.1570016 + 13500 135 0.96797085 8.9794827 + 14000 140 1.0271217 7.4193307 + 14500 145 1.0154843 7.3495938 + 15000 150 1.0408558 7.3047404 + 15500 155 1.0801685 6.8072764 + 16000 160 0.9921089 7.3200563 + 16500 165 0.92952943 7.281934 + 17000 170 0.87149276 7.6508951 + 17500 175 0.92808338 6.4774803 + 18000 180 1.008898 7.1954708 + 18500 185 0.95962238 8.0257166 + 19000 190 0.99501354 8.5364854 + 19500 195 0.97420657 8.3140832 + 20000 200 0.99926953 7.7840117 + 20500 205 1.0503096 7.9214552 + 21000 210 0.97782558 7.4084605 + 21500 215 0.90363877 7.2867997 + 22000 220 1.0045369 7.7341956 + 22500 225 1.0319487 8.4140146 + 23000 230 1.006863 7.6023442 + 23500 235 0.90302749 8.0230562 + 24000 240 1.0768463 7.7315652 + 24500 245 1.0529241 7.9835388 + 25000 250 0.96057288 6.9591339 + 25500 255 0.98941425 7.4287206 + 26000 260 0.99120107 7.0440907 + 26500 265 0.94017831 7.9499345 + 27000 270 0.93766339 8.118634 + 27500 275 0.98309918 7.9865412 + 28000 280 1.0191736 8.3330592 + 28500 285 0.99546328 8.3419405 + 29000 290 0.95703084 7.313665 + 29500 295 1.0122694 8.1900103 + 30000 300 1.0758207 8.2876755 + 30500 305 1.0981472 6.4742286 + 31000 310 1.0356215 6.4857599 + 31500 315 0.95584989 8.4446078 + 32000 320 1.0591455 8.3936647 + 32500 325 0.92674627 7.0391747 + 33000 330 0.93486399 7.6892746 + 33500 335 1.0772579 7.1395468 + 34000 340 1.1029975 7.4249835 + 34500 345 0.9845352 6.3478805 + 35000 350 1.1004884 8.0179815 + 35500 355 0.97596833 8.1652441 + 36000 360 1.0026086 7.8100907 + 36500 365 1.0242946 7.4683685 + 37000 370 0.98485255 7.9021959 + 37500 375 1.078371 8.726722 + 38000 380 0.99139516 7.3585787 + 38500 385 1.0531594 8.5221732 + 39000 390 1.0290073 7.0905003 + 39500 395 1.0368491 8.0293456 + 40000 400 1.0520724 7.6372283 + 40500 405 0.94925657 8.9578914 + 41000 410 0.99919726 7.7207005 + 41500 415 1.0507736 6.9924906 + 42000 420 1.0442899 7.8115665 + 42500 425 1.0192672 8.5123404 + 43000 430 0.9784861 8.0556966 + 43500 435 0.99592222 8.0665153 + 44000 440 0.95621235 8.4132911 + 44500 445 0.93400296 7.3266133 + 45000 450 1.0389454 7.2458003 + 45500 455 1.1076673 6.5868539 + 46000 460 1.0826918 7.9286381 + 46500 465 0.93589963 8.5310745 + 47000 470 1.0352143 6.6366463 + 47500 475 1.0497186 8.5074329 + 48000 480 0.96107226 7.7505527 + 48500 485 1.1061337 8.2753596 + 49000 490 1.0337198 7.5777833 + 49500 495 0.94052507 7.3661443 + 50000 500 0.98527818 7.1746325 +Loop time of 9.88248 on 1 procs for 50000 steps with 200 atoms + +Performance: 4371371.882 tau/day, 5059.458 timesteps/s +99.9% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 8.7028 | 8.7028 | 8.7028 | 0.0 | 88.06 +Neigh | 0.73687 | 0.73687 | 0.73687 | 0.0 | 7.46 +Comm | 0.31881 | 0.31881 | 0.31881 | 0.0 | 3.23 +Output | 0.0013947 | 0.0013947 | 0.0013947 | 0.0 | 0.01 +Modify | 0.081394 | 0.081394 | 0.081394 | 0.0 | 0.82 +Other | | 0.04118 | | | 0.42 + +Nlocal: 200.000 ave 200 max 200 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 547.000 ave 547 max 547 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 1651.00 ave 1651 max 1651 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 1651 +Ave neighs/atom = 8.2550000 +Neighbor list builds = 5000 +Dangerous builds = 5000 + +write_data final.data pair ij +System init for write_data ... +Total wall time: 0:00:10 diff --git a/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.4 b/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.4 new file mode 100644 index 0000000000..12b35ecf53 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext/log.10Mar21.dpdext.g++.4 @@ -0,0 +1,201 @@ +LAMMPS (8 Apr 2021) +# DPD Fluid + +variable T equal 1.0 +variable rc equal 1.0 +variable rcD equal 1.2 + +units lj +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +### create box and configuration +variable L equal 5.0 +lattice fcc 3.0 +Lattice spacing in x,y,z = 1.1006424 1.1006424 1.1006424 +region simBox block 0 ${L} 0 ${L} 0 ${L} +region simBox block 0 5 0 ${L} 0 ${L} +region simBox block 0 5 0 5 0 ${L} +region simBox block 0 5 0 5 0 5 +create_box 2 simBox +Created orthogonal box = (0.0000000 0.0000000 0.0000000) to (5.5032121 5.5032121 5.5032121) + 1 by 2 by 2 MPI processor grid +#create_atoms 1 region simBox +create_atoms 1 random 100 132456 simBox +Created 100 atoms + create_atoms CPU = 0.001 seconds +create_atoms 2 random 100 132456 simBox +Created 100 atoms + create_atoms CPU = 0.000 seconds +mass 1 1.0 +mass 2 2.0 +### + +pair_style dpd/ext ${T} ${rc} 3854262 +pair_style dpd/ext 1 ${rc} 3854262 +pair_style dpd/ext 1 1 3854262 + +pair_coeff 1 1 25.0 4.5 4.53 0.5 0.53 1.2 #${rcD} +pair_coeff 1 2 25.1 4.51 4.54 0.51 0.54 1.21 #${rcD} +pair_coeff 2 2 25.2 4.52 4.55 0.52 0.55 1.22 #${rcD} + +timestep 0.01 +run_style verlet + +velocity all create ${T} 68768932 +velocity all create 1 68768932 + +thermo_style custom step time temp press +thermo 500 + +fix 1 all nve + +run 50000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 1.52 + ghost atom cutoff = 1.52 + binsize = 0.76, bins = 8 8 8 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair dpd/ext, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard +Per MPI rank memory allocation (min/avg/max) = 3.064 | 3.064 | 3.064 Mbytes +Step Time Temp Press + 0 0 1 7.9021356 + 500 5 0.937908 7.0735774 + 1000 10 0.89467862 7.7074585 + 1500 15 1.0197239 8.6662041 + 2000 20 1.0306203 8.0831978 + 2500 25 0.94106312 7.4609953 + 3000 30 1.0217162 7.7000536 + 3500 35 0.9694633 6.9496101 + 4000 40 0.89886564 7.5844291 + 4500 45 0.9914389 6.5459858 + 5000 50 1.0503316 7.1639528 + 5500 55 0.95397384 7.2900451 + 6000 60 0.91097079 7.4484481 + 6500 65 1.0212125 8.6396803 + 7000 70 0.84788375 9.2247619 + 7500 75 1.0477577 7.9631111 + 8000 80 1.0473514 7.2904431 + 8500 85 1.0482936 7.9668363 + 9000 90 1.0239558 7.1715815 + 9500 95 1.0727305 8.2075133 + 10000 100 0.96755536 7.8062307 + 10500 105 1.0357222 8.2249507 + 11000 110 1.053488 6.8283393 + 11500 115 0.89283913 8.9044509 + 12000 120 1.0085932 8.1844316 + 12500 125 0.84259725 6.9608932 + 13000 130 1.0559908 7.5907714 + 13500 135 0.95175487 8.8486631 + 14000 140 0.954129 8.2199072 + 14500 145 1.0034836 8.6956618 + 15000 150 0.99411864 7.3723436 + 15500 155 1.0876662 8.5906664 + 16000 160 0.98613154 7.6599681 + 16500 165 1.0355659 6.7243908 + 17000 170 1.0838802 7.5905171 + 17500 175 0.95966717 7.3268842 + 18000 180 0.91267962 8.1126836 + 18500 185 0.9625394 8.0889468 + 19000 190 1.0209688 7.2104928 + 19500 195 0.93315956 8.3484128 + 20000 200 1.0430989 6.4154856 + 20500 205 1.037892 7.3727084 + 21000 210 1.0551654 8.3732908 + 21500 215 0.97922101 8.0403654 + 22000 220 1.0480356 9.2304431 + 22500 225 1.0009668 8.0807868 + 23000 230 1.0808549 7.9128664 + 23500 235 0.99282487 7.550466 + 24000 240 0.96893196 8.0123396 + 24500 245 0.96945612 6.9129899 + 25000 250 0.9373397 6.2942852 + 25500 255 0.98958822 7.8259805 + 26000 260 0.97971277 7.3263113 + 26500 265 0.91588062 8.284996 + 27000 270 1.0045677 7.490418 + 27500 275 0.92664827 7.2434156 + 28000 280 0.98527367 7.1695053 + 28500 285 0.97862372 8.2272887 + 29000 290 1.067876 8.3157621 + 29500 295 1.0688998 7.5106281 + 30000 300 1.117583 8.8135518 + 30500 305 1.035452 7.3572033 + 31000 310 1.03275 8.1486503 + 31500 315 0.96000074 7.6740792 + 32000 320 0.91763282 7.6603754 + 32500 325 0.99394287 8.8127132 + 33000 330 1.0021499 7.9881263 + 33500 335 0.97639399 8.2361021 + 34000 340 1.0309313 8.2918535 + 34500 345 1.0214124 7.3886765 + 35000 350 1.0029326 8.2745874 + 35500 355 1.0634485 6.4161924 + 36000 360 1.0242523 7.4099968 + 36500 365 1.0302234 8.0604043 + 37000 370 1.0143945 7.34914 + 37500 375 0.99553421 6.8818266 + 38000 380 1.0073546 7.6254332 + 38500 385 1.0068118 7.4673312 + 39000 390 0.95181135 6.1644033 + 39500 395 0.98964849 8.501371 + 40000 400 0.99441011 8.1515808 + 40500 405 1.0339683 7.6747037 + 41000 410 0.99467835 7.8743708 + 41500 415 1.0231331 7.3169584 + 42000 420 0.94617359 8.0079888 + 42500 425 1.0163237 7.7949198 + 43000 430 0.97039825 8.8842702 + 43500 435 1.0326956 7.6700965 + 44000 440 1.1106283 8.2900664 + 44500 445 0.96697428 7.0408563 + 45000 450 1.0137186 6.8316108 + 45500 455 1.0531692 8.0051631 + 46000 460 1.0382619 7.2937333 + 46500 465 0.90277459 7.9676952 + 47000 470 1.00751 8.7594948 + 47500 475 0.95565907 8.320444 + 48000 480 1.0396091 7.9262425 + 48500 485 1.0349892 8.333501 + 49000 490 0.9759139 7.4839858 + 49500 495 0.91538068 7.1780491 + 50000 500 1.0310634 7.1522794 +Loop time of 8.5908 on 4 procs for 50000 steps with 200 atoms + +Performance: 5028633.375 tau/day, 5820.178 timesteps/s +95.7% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 4.9505 | 5.054 | 5.1885 | 4.1 | 58.83 +Neigh | 0.47025 | 0.47603 | 0.47954 | 0.5 | 5.54 +Comm | 2.7876 | 2.9237 | 3.0336 | 5.5 | 34.03 +Output | 0.0024114 | 0.0029766 | 0.0046443 | 1.8 | 0.03 +Modify | 0.062911 | 0.064188 | 0.065603 | 0.4 | 0.75 +Other | | 0.06992 | | | 0.81 + +Nlocal: 50.0000 ave 53 max 46 min +Histogram: 1 0 0 0 1 0 0 0 1 1 +Nghost: 296.000 ave 301 max 290 min +Histogram: 1 0 0 0 0 1 1 0 0 1 +Neighs: 410.750 ave 431 max 357 min +Histogram: 1 0 0 0 0 0 0 0 0 3 + +Total # of neighbors = 1643 +Ave neighs/atom = 8.2150000 +Neighbor list builds = 5000 +Dangerous builds = 5000 + +write_data final.data pair ij +System init for write_data ... +Total wall time: 0:00:08 diff --git a/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce.data b/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce.data new file mode 100644 index 0000000000..d487e2c73c --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce.data @@ -0,0 +1,2196 @@ + Coarse-Grained SPC/E Water + + 2180 atoms + + 1 atom types + + 0.0000000E+00 40.310000000000 xlo xhi + 0.0000000E+00 40.310000000000 ylo yhi + 0.0000000E+00 40.310000000000 zlo zhi + + Masses + +1 18.01540 + + Atoms + +1 1 2.815000E+01 5.430000E+00 2.370000E+00 +2 1 1.890000E+00 2.957000E+01 1.761000E+01 +3 1 8.920000E+00 3.556000E+01 8.240000E+00 +4 1 2.307000E+01 9.600000E+00 4.710000E+00 +5 1 1.688000E+01 8.940000E+00 3.880000E+00 +6 1 2.571000E+01 1.277000E+01 1.056000E+01 +7 1 2.788000E+01 3.328000E+01 1.300000E-01 +8 1 3.287000E+01 2.050000E+00 1.368000E+01 +9 1 4.900000E+00 2.183000E+01 1.751000E+01 +10 1 9.670000E+00 3.108000E+01 1.843000E+01 +11 1 1.233000E+01 3.490000E+00 1.091000E+01 +12 1 6.630000E+00 1.581000E+01 3.455000E+01 +13 1 3.951000E+01 2.047000E+01 2.288000E+01 +14 1 3.977000E+01 3.173000E+01 9.060000E+00 +15 1 5.370000E+00 8.940000E+00 3.646000E+01 +16 1 2.129000E+01 3.853000E+01 3.468000E+01 +17 1 1.987000E+01 2.677000E+01 3.762000E+01 +18 1 2.658000E+01 3.167000E+01 2.280000E+00 +19 1 1.231000E+01 3.336000E+01 1.098000E+01 +20 1 7.310000E+00 1.410000E+01 1.654000E+01 +21 1 3.388000E+01 2.584000E+01 1.677000E+01 +22 1 1.115000E+01 3.070000E+00 3.992000E+01 +23 1 3.171000E+01 3.195000E+01 2.267000E+01 +24 1 5.960000E+00 3.507000E+01 1.230000E+01 +25 1 2.904000E+01 1.740000E+00 9.460000E+00 +26 1 1.539000E+01 2.686000E+01 2.030000E+00 +27 1 3.890000E+00 2.148000E+01 2.877000E+01 +28 1 4.550000E+00 2.800000E+01 2.431000E+01 +29 1 9.680000E+00 3.992000E+01 2.964000E+01 +30 1 2.560000E+00 3.939000E+01 2.987000E+01 +31 1 4.960000E+00 2.280000E+01 6.230000E+00 +32 1 2.795000E+01 3.511000E+01 9.810000E+00 +33 1 3.254000E+01 3.032000E+01 3.025000E+01 +34 1 2.292000E+01 3.033000E+01 1.730000E+01 +35 1 2.190000E+00 2.025000E+01 3.929000E+01 +36 1 9.460000E+00 3.815000E+01 6.950000E+00 +37 1 2.409000E+01 2.885000E+01 7.730000E+00 +38 1 3.711000E+01 3.888000E+01 3.314000E+01 +39 1 3.492000E+01 1.987000E+01 8.240000E+00 +40 1 1.350000E+00 3.799000E+01 3.885000E+01 +41 1 3.289000E+01 3.289000E+01 1.859000E+01 +42 1 3.337000E+01 1.603000E+01 3.141000E+01 +43 1 5.120000E+00 6.540000E+00 3.231000E+01 +44 1 5.080000E+00 3.640000E+00 2.178000E+01 +45 1 7.090000E+00 1.072000E+01 1.911000E+01 +46 1 2.804000E+01 1.444000E+01 2.027000E+01 +47 1 2.972000E+01 3.928000E+01 2.997000E+01 +48 1 2.170000E+01 3.263000E+01 3.100000E+01 +49 1 3.063000E+01 8.940000E+00 3.410000E+00 +50 1 2.400000E+00 1.484000E+01 2.534000E+01 +51 1 2.128000E+01 3.944000E+01 1.892000E+01 +52 1 3.616000E+01 3.993000E+01 1.443000E+01 +53 1 2.416000E+01 2.414000E+01 1.280000E+01 +54 1 3.177000E+01 1.047000E+01 1.568000E+01 +55 1 4.024000E+01 1.188000E+01 3.343000E+01 +56 1 6.040000E+00 1.367000E+01 4.028000E+01 +57 1 1.537000E+01 3.589000E+01 6.930000E+00 +58 1 1.231000E+01 2.220000E+00 1.471000E+01 +59 1 3.450000E+00 4.810000E+00 2.487000E+01 +60 1 1.589000E+01 2.520000E+00 1.705000E+01 +61 1 3.705000E+01 3.620000E+01 6.730000E+00 +62 1 3.777000E+01 2.710000E+01 4.029000E+01 +63 1 8.260000E+00 2.033000E+01 4.030000E+01 +64 1 8.210000E+00 3.558000E+01 1.717000E+01 +65 1 3.338000E+01 1.389000E+01 2.210000E+01 +66 1 1.454000E+01 1.650000E+00 1.300000E+01 +67 1 1.977000E+01 3.489000E+01 1.751000E+01 +68 1 5.630000E+00 4.220000E+00 3.875000E+01 +69 1 7.570000E+00 2.576000E+01 1.371000E+01 +70 1 9.340000E+00 3.392000E+01 3.538000E+01 +71 1 2.116000E+01 8.590000E+00 1.475000E+01 +72 1 2.328000E+01 4.022000E+01 1.138000E+01 +73 1 1.298000E+01 3.479000E+01 2.338000E+01 +74 1 2.232000E+01 3.339000E+01 5.320000E+00 +75 1 3.290000E+00 3.240000E+01 2.024000E+01 +76 1 3.794000E+01 3.982000E+01 1.790000E+00 +77 1 1.111000E+01 1.440000E+01 2.301000E+01 +78 1 2.556000E+01 1.714000E+01 1.684000E+01 +79 1 2.500000E+00 2.474000E+01 2.028000E+01 +80 1 1.692000E+01 3.837000E+01 1.303000E+01 +81 1 6.310000E+00 2.551000E+01 3.960000E+01 +82 1 2.402000E+01 1.966000E+01 2.905000E+01 +83 1 2.216000E+01 9.500000E+00 2.543000E+01 +84 1 2.006000E+01 3.431000E+01 4.260000E+00 +85 1 2.198000E+01 8.670000E+00 2.806000E+01 +86 1 1.465000E+01 2.763000E+01 8.340000E+00 +87 1 3.975000E+01 3.870000E+00 3.701000E+01 +88 1 2.952000E+01 7.340000E+00 5.310000E+00 +89 1 2.759000E+01 1.589000E+01 3.402000E+01 +90 1 3.746000E+01 3.945000E+01 2.486000E+01 +91 1 2.370000E+01 2.429000E+01 2.803000E+01 +92 1 1.270000E+01 1.653000E+01 2.314000E+01 +93 1 1.653000E+01 2.786000E+01 2.885000E+01 +94 1 3.146000E+01 2.340000E+00 8.320000E+00 +95 1 3.406000E+01 2.124000E+01 2.389000E+01 +96 1 5.130000E+00 1.574000E+01 8.360000E+00 +97 1 3.087000E+01 6.020000E+00 2.295000E+01 +98 1 3.607000E+01 3.674000E+01 9.200000E+00 +99 1 2.507000E+01 2.107000E+01 3.778000E+01 +100 1 3.351000E+01 4.870000E+00 1.301000E+01 +101 1 2.978000E+01 1.879000E+01 1.277000E+01 +102 1 2.496000E+01 1.400000E-01 3.900000E+01 +103 1 3.761000E+01 3.179000E+01 2.540000E+00 +104 1 2.600000E+00 6.800000E+00 3.347000E+01 +105 1 2.570000E+01 3.173000E+01 1.831000E+01 +106 1 9.460000E+00 1.524000E+01 2.542000E+01 +107 1 2.255000E+01 2.515000E+01 2.190000E+00 +108 1 1.902000E+01 1.988000E+01 3.138000E+01 +109 1 9.450000E+00 3.164000E+01 2.652000E+01 +110 1 6.810000E+00 9.420000E+00 1.463000E+01 +111 1 1.651000E+01 5.200000E+00 2.836000E+01 +112 1 2.234000E+01 2.475000E+01 3.956000E+01 +113 1 3.805000E+01 2.946000E+01 9.080000E+00 +114 1 3.553000E+01 1.590000E+01 1.032000E+01 +115 1 2.565000E+01 3.402000E+01 1.062000E+01 +116 1 1.554000E+01 5.410000E+00 3.926000E+01 +117 1 2.449000E+01 1.282000E+01 1.305000E+01 +118 1 1.590000E+00 3.743000E+01 3.398000E+01 +119 1 1.954000E+01 9.570000E+00 1.179000E+01 +120 1 9.870000E+00 1.497000E+01 1.872000E+01 +121 1 2.925000E+01 3.397000E+01 7.650000E+00 +122 1 2.738000E+01 3.514000E+01 2.980000E+01 +123 1 3.704000E+01 2.310000E+00 2.189000E+01 +124 1 1.988000E+01 1.471000E+01 1.600000E-01 +125 1 1.118000E+01 1.476000E+01 3.354000E+01 +126 1 3.100000E-01 2.588000E+01 3.313000E+01 +127 1 3.437000E+01 2.586000E+01 2.337000E+01 +128 1 3.931000E+01 3.398000E+01 3.424000E+01 +129 1 7.070000E+00 3.063000E+01 2.188000E+01 +130 1 1.840000E+00 1.104000E+01 1.974000E+01 +131 1 1.924000E+01 3.244000E+01 3.670000E+01 +132 1 1.675000E+01 3.463000E+01 1.524000E+01 +133 1 1.670000E+01 3.557000E+01 2.765000E+01 +134 1 3.999000E+01 3.970000E+01 2.385000E+01 +135 1 3.096000E+01 5.990000E+00 1.962000E+01 +136 1 2.357000E+01 1.297000E+01 2.012000E+01 +137 1 5.010000E+00 1.524000E+01 3.843000E+01 +138 1 6.180000E+00 1.152000E+01 2.331000E+01 +139 1 1.200000E+00 2.550000E+01 2.334000E+01 +140 1 4.210000E+00 2.882000E+01 1.460000E+00 +141 1 5.750000E+00 2.729000E+01 7.300000E+00 +142 1 2.792000E+01 6.980000E+00 2.345000E+01 +143 1 9.150000E+00 1.540000E+00 3.415000E+01 +144 1 3.475000E+01 3.229000E+01 2.751000E+01 +145 1 2.668000E+01 2.350000E+00 2.394000E+01 +146 1 3.942000E+01 8.270000E+00 2.016000E+01 +147 1 7.790000E+00 9.330000E+00 2.277000E+01 +148 1 3.106000E+01 3.520000E+01 1.946000E+01 +149 1 1.154000E+01 4.670000E+00 2.609000E+01 +150 1 3.318000E+01 3.935000E+01 3.181000E+01 +151 1 3.033000E+01 3.290000E+00 1.594000E+01 +152 1 2.314000E+01 1.230000E+00 6.300000E-01 +153 1 2.688000E+01 1.040000E+01 1.937000E+01 +154 1 2.805000E+01 3.313000E+01 1.849000E+01 +155 1 3.801000E+01 1.582000E+01 2.545000E+01 +156 1 2.225000E+01 3.680000E+00 9.400000E-01 +157 1 3.259000E+01 2.797000E+01 1.170000E+01 +158 1 1.934000E+01 1.035000E+01 4.000000E-02 +159 1 2.211000E+01 1.586000E+01 4.280000E+00 +160 1 2.636000E+01 2.283000E+01 3.116000E+01 +161 1 3.060000E+00 1.832000E+01 3.778000E+01 +162 1 4.009000E+01 3.503000E+01 8.480000E+00 +163 1 2.116000E+01 3.349000E+01 2.047000E+01 +164 1 2.972000E+01 2.068000E+01 8.160000E+00 +165 1 2.669000E+01 9.500000E-01 7.660000E+00 +166 1 4.360000E+00 6.290000E+00 2.123000E+01 +167 1 3.325000E+01 3.367000E+01 1.095000E+01 +168 1 3.761000E+01 3.190000E+00 1.278000E+01 +169 1 3.670000E+00 2.074000E+01 1.536000E+01 +170 1 1.508000E+01 1.371000E+01 3.257000E+01 +171 1 3.460000E+00 2.393000E+01 2.349000E+01 +172 1 1.095000E+01 1.959000E+01 1.153000E+01 +173 1 2.578000E+01 2.144000E+01 3.342000E+01 +174 1 1.847000E+01 6.670000E+00 6.450000E+00 +175 1 3.564000E+01 3.459000E+01 1.988000E+01 +176 1 1.759000E+01 1.536000E+01 2.579000E+01 +177 1 1.543000E+01 4.010000E+00 1.133000E+01 +178 1 5.270000E+00 8.170000E+00 2.305000E+01 +179 1 7.670000E+00 2.964000E+01 3.700000E-01 +180 1 8.700000E-01 2.032000E+01 3.475000E+01 +181 1 6.880000E+00 3.688000E+01 5.760000E+00 +182 1 2.034000E+01 2.438000E+01 7.170000E+00 +183 1 2.680000E+01 2.198000E+01 1.000000E-02 +184 1 1.444000E+01 2.689000E+01 1.594000E+01 +185 1 3.904000E+01 2.121000E+01 9.920000E+00 +186 1 9.170000E+00 3.546000E+01 4.400000E-01 +187 1 1.350000E+01 1.685000E+01 5.530000E+00 +188 1 7.110000E+00 2.915000E+01 1.820000E+01 +189 1 3.826000E+01 1.259000E+01 2.531000E+01 +190 1 1.024000E+01 1.480000E+00 1.877000E+01 +191 1 3.318000E+01 2.380000E+00 1.160000E+00 +192 1 1.620000E+01 2.425000E+01 2.638000E+01 +193 1 3.329000E+01 1.363000E+01 1.299000E+01 +194 1 2.751000E+01 2.008000E+01 1.454000E+01 +195 1 6.290000E+00 2.970000E+01 6.260000E+00 +196 1 2.577000E+01 1.073000E+01 1.675000E+01 +197 1 1.178000E+01 2.553000E+01 2.947000E+01 +198 1 1.227000E+01 2.341000E+01 1.374000E+01 +199 1 3.420000E+00 3.994000E+01 3.429000E+01 +200 1 7.020000E+00 3.270000E+00 1.405000E+01 +201 1 3.130000E+01 8.500000E-01 3.230000E+01 +202 1 3.793000E+01 6.070000E+00 2.987000E+01 +203 1 5.770000E+00 2.558000E+01 2.327000E+01 +204 1 3.144000E+01 3.996000E+01 2.539000E+01 +205 1 2.692000E+01 2.118000E+01 2.730000E+00 +206 1 1.698000E+01 1.947000E+01 3.821000E+01 +207 1 2.264000E+01 3.201000E+01 3.543000E+01 +208 1 3.579000E+01 8.900000E-01 2.210000E+00 +209 1 2.386000E+01 9.300000E-01 7.290000E+00 +210 1 1.831000E+01 2.571000E+01 8.400000E-01 +211 1 1.325000E+01 1.549000E+01 1.296000E+01 +212 1 2.693000E+01 3.916000E+01 3.400000E-01 +213 1 2.757000E+01 1.330000E+01 1.579000E+01 +214 1 3.146000E+01 2.151000E+01 2.460000E+01 +215 1 5.010000E+00 2.472000E+01 1.316000E+01 +216 1 3.586000E+01 7.470000E+00 1.382000E+01 +217 1 2.176000E+01 1.877000E+01 1.732000E+01 +218 1 7.300000E+00 1.480000E+01 7.050000E+00 +219 1 8.680000E+00 2.746000E+01 7.610000E+00 +220 1 3.326000E+01 3.281000E+01 1.580000E+01 +221 1 2.980000E+00 1.509000E+01 2.820000E+01 +222 1 3.621000E+01 1.533000E+01 1.612000E+01 +223 1 8.640000E+00 9.260000E+00 1.227000E+01 +224 1 2.920000E+01 1.315000E+01 2.229000E+01 +225 1 1.842000E+01 3.040000E+00 2.652000E+01 +226 1 6.990000E+00 1.572000E+01 3.156000E+01 +227 1 9.330000E+00 4.450000E+00 3.682000E+01 +228 1 3.521000E+01 1.321000E+01 9.970000E+00 +229 1 1.032000E+01 1.774000E+01 3.277000E+01 +230 1 3.870000E+01 2.491000E+01 3.721000E+01 +231 1 2.480000E+00 3.320000E+01 3.706000E+01 +232 1 3.795000E+01 5.200000E+00 2.095000E+01 +233 1 1.240000E+00 1.685000E+01 1.170000E+01 +234 1 2.528000E+01 3.293000E+01 3.957000E+01 +235 1 3.658000E+01 3.679000E+01 1.689000E+01 +236 1 1.325000E+01 2.419000E+01 4.700000E+00 +237 1 1.819000E+01 4.320000E+00 0.000000E+00 +238 1 3.282000E+01 7.330000E+00 3.172000E+01 +239 1 5.030000E+00 3.222000E+01 1.552000E+01 +240 1 6.640000E+00 3.435000E+01 1.538000E+01 +241 1 7.250000E+00 8.860000E+00 3.137000E+01 +242 1 2.514000E+01 5.190000E+00 5.740000E+00 +243 1 1.975000E+01 2.949000E+01 2.054000E+01 +244 1 2.737000E+01 2.537000E+01 9.950000E+00 +245 1 1.586000E+01 1.974000E+01 9.550000E+00 +246 1 3.506000E+01 2.875000E+01 3.141000E+01 +247 1 2.802000E+01 2.129000E+01 1.900000E+01 +248 1 3.022000E+01 2.140000E+01 3.370000E+01 +249 1 7.530000E+00 1.148000E+01 1.661000E+01 +250 1 2.137000E+01 2.405000E+01 1.341000E+01 +251 1 8.940000E+00 1.907000E+01 2.363000E+01 +252 1 2.814000E+01 3.540000E+01 1.704000E+01 +253 1 2.201000E+01 1.323000E+01 5.790000E+00 +254 1 3.282000E+01 1.123000E+01 2.798000E+01 +255 1 3.007000E+01 3.075000E+01 3.564000E+01 +256 1 2.144000E+01 2.451000E+01 3.577000E+01 +257 1 2.238000E+01 2.254000E+01 6.560000E+00 +258 1 2.965000E+01 3.416000E+01 2.582000E+01 +259 1 3.839000E+01 3.504000E+01 3.685000E+01 +260 1 3.415000E+01 1.119000E+01 3.936000E+01 +261 1 3.310000E+01 1.422000E+01 2.646000E+01 +262 1 1.370000E+01 3.952000E+01 1.585000E+01 +263 1 1.279000E+01 2.395000E+01 2.746000E+01 +264 1 1.760000E+00 3.403000E+01 1.054000E+01 +265 1 1.049000E+01 7.180000E+00 2.963000E+01 +266 1 1.886000E+01 4.200000E+00 1.764000E+01 +267 1 7.570000E+00 1.001000E+01 8.850000E+00 +268 1 2.180000E+01 2.746000E+01 3.128000E+01 +269 1 3.308000E+01 2.905000E+01 1.539000E+01 +270 1 3.186000E+01 2.445000E+01 6.800000E+00 +271 1 3.047000E+01 2.204000E+01 6.050000E+00 +272 1 1.734000E+01 2.366000E+01 3.421000E+01 +273 1 1.277000E+01 2.862000E+01 2.138000E+01 +274 1 9.830000E+00 2.602000E+01 1.516000E+01 +275 1 3.661000E+01 1.411000E+01 2.375000E+01 +276 1 1.343000E+01 1.414000E+01 2.735000E+01 +277 1 1.653000E+01 2.172000E+01 2.870000E+00 +278 1 2.107000E+01 2.185000E+01 3.690000E+01 +279 1 3.664000E+01 3.410000E+01 2.809000E+01 +280 1 3.016000E+01 2.572000E+01 2.045000E+01 +281 1 1.800000E+00 1.859000E+01 6.690000E+00 +282 1 9.300000E-01 2.920000E+00 3.291000E+01 +283 1 1.215000E+01 2.864000E+01 5.550000E+00 +284 1 1.697000E+01 3.419000E+01 1.006000E+01 +285 1 1.210000E+00 4.930000E+00 4.830000E+00 +286 1 1.177000E+01 4.940000E+00 1.829000E+01 +287 1 2.625000E+01 7.380000E+00 2.798000E+01 +288 1 9.000000E-01 9.530000E+00 2.272000E+01 +289 1 1.592000E+01 1.530000E+01 1.692000E+01 +290 1 2.390000E+00 1.613000E+01 6.940000E+00 +291 1 3.898000E+01 7.710000E+00 8.020000E+00 +292 1 3.644000E+01 2.475000E+01 3.385000E+01 +293 1 2.802000E+01 3.480000E+00 4.028000E+01 +294 1 3.279000E+01 2.458000E+01 2.784000E+01 +295 1 1.913000E+01 3.837000E+01 2.331000E+01 +296 1 2.613000E+01 3.081000E+01 2.674000E+01 +297 1 2.532000E+01 3.771000E+01 1.013000E+01 +298 1 1.711000E+01 2.262000E+01 1.300000E+01 +299 1 2.871000E+01 1.246000E+01 1.832000E+01 +300 1 1.272000E+01 4.620000E+00 1.570000E+01 +301 1 2.197000E+01 2.425000E+01 2.139000E+01 +302 1 8.500000E+00 3.999000E+01 2.546000E+01 +303 1 4.070000E+00 3.246000E+01 4.270000E+00 +304 1 4.013000E+01 2.952000E+01 1.460000E+01 +305 1 5.930000E+00 3.346000E+01 2.326000E+01 +306 1 1.439000E+01 9.140000E+00 2.484000E+01 +307 1 9.330000E+00 6.640000E+00 2.131000E+01 +308 1 1.420000E+00 3.616000E+01 1.303000E+01 +309 1 2.305000E+01 2.713000E+01 1.359000E+01 +310 1 1.925000E+01 2.965000E+01 3.961000E+01 +311 1 2.497000E+01 6.660000E+00 1.485000E+01 +312 1 2.556000E+01 2.865000E+01 2.880000E+01 +313 1 7.550000E+00 2.085000E+01 3.045000E+01 +314 1 1.802000E+01 2.925000E+01 3.721000E+01 +315 1 1.246000E+01 3.098000E+01 2.556000E+01 +316 1 2.276000E+01 1.251000E+01 2.868000E+01 +317 1 3.486000E+01 2.344000E+01 3.855000E+01 +318 1 6.280000E+00 3.151000E+01 3.906000E+01 +319 1 3.735000E+01 2.264000E+01 3.812000E+01 +320 1 1.332000E+01 8.980000E+00 7.770000E+00 +321 1 7.600000E+00 3.136000E+01 7.920000E+00 +322 1 3.200000E+00 2.920000E+00 5.280000E+00 +323 1 8.170000E+00 3.254000E+01 2.026000E+01 +324 1 3.333000E+01 1.170000E+00 1.636000E+01 +325 1 6.700000E+00 2.234000E+01 2.669000E+01 +326 1 6.900000E+00 1.025000E+01 1.160000E+00 +327 1 2.358000E+01 5.690000E+00 2.170000E+01 +328 1 6.430000E+00 2.517000E+01 1.905000E+01 +329 1 2.326000E+01 8.260000E+00 2.295000E+01 +330 1 2.460000E+01 5.410000E+00 4.700000E-01 +331 1 1.027000E+01 3.768000E+01 9.570000E+00 +332 1 9.450000E+00 1.871000E+01 3.017000E+01 +333 1 2.388000E+01 3.240000E+01 3.140000E+00 +334 1 1.889000E+01 2.567000E+01 1.466000E+01 +335 1 2.108000E+01 3.427000E+01 3.588000E+01 +336 1 3.488000E+01 3.803000E+01 2.242000E+01 +337 1 3.365000E+01 1.929000E+01 1.290000E+01 +338 1 1.810000E+01 3.344000E+01 1.303000E+01 +339 1 2.758000E+01 1.885000E+01 3.407000E+01 +340 1 3.829000E+01 2.758000E+01 7.120000E+00 +341 1 2.168000E+01 3.619000E+01 2.075000E+01 +342 1 5.040000E+00 2.573000E+01 5.050000E+00 +343 1 1.410000E+00 3.445000E+01 2.788000E+01 +344 1 2.773000E+01 1.125000E+01 3.333000E+01 +345 1 2.771000E+01 2.476000E+01 3.514000E+01 +346 1 2.428000E+01 1.029000E+01 2.774000E+01 +347 1 3.090000E+00 2.826000E+01 2.660000E+01 +348 1 3.362000E+01 1.246000E+01 1.582000E+01 +349 1 3.486000E+01 7.960000E+00 2.133000E+01 +350 1 8.200000E-01 3.203000E+01 2.350000E+01 +351 1 3.545000E+01 3.597000E+01 2.943000E+01 +352 1 8.600000E-01 1.621000E+01 1.422000E+01 +353 1 3.739000E+01 3.666000E+01 1.962000E+01 +354 1 2.228000E+01 2.954000E+01 3.150000E+00 +355 1 2.835000E+01 5.820000E+00 7.670000E+00 +356 1 9.200000E-01 2.790000E+00 3.912000E+01 +357 1 3.029000E+01 1.368000E+01 1.318000E+01 +358 1 9.330000E+00 2.945000E+01 3.619000E+01 +359 1 2.842000E+01 4.110000E+00 2.477000E+01 +360 1 3.226000E+01 3.613000E+01 3.814000E+01 +361 1 1.100000E+01 1.278000E+01 1.770000E+00 +362 1 4.630000E+00 2.791000E+01 1.784000E+01 +363 1 1.707000E+01 6.750000E+00 2.289000E+01 +364 1 1.461000E+01 2.572000E+01 2.945000E+01 +365 1 3.159000E+01 2.440000E+01 3.511000E+01 +366 1 3.020000E+01 1.310000E+00 1.446000E+01 +367 1 3.759000E+01 2.400000E+00 6.600000E+00 +368 1 2.129000E+01 3.053000E+01 3.711000E+01 +369 1 3.927000E+01 3.698000E+01 3.886000E+01 +370 1 2.680000E+01 1.916000E+01 2.140000E+01 +371 1 1.641000E+01 3.931000E+01 2.595000E+01 +372 1 9.690000E+00 2.920000E+01 1.350000E+01 +373 1 2.753000E+01 3.731000E+01 1.496000E+01 +374 1 3.919000E+01 3.481000E+01 2.686000E+01 +375 1 4.580000E+00 3.495000E+01 3.575000E+01 +376 1 1.669000E+01 3.878000E+01 1.774000E+01 +377 1 3.577000E+01 2.542000E+01 8.300000E-01 +378 1 2.120000E+00 7.530000E+00 1.505000E+01 +379 1 2.696000E+01 1.639000E+01 2.185000E+01 +380 1 1.869000E+01 2.578000E+01 3.481000E+01 +381 1 3.108000E+01 2.050000E+00 1.130000E+01 +382 1 2.538000E+01 2.567000E+01 1.472000E+01 +383 1 1.538000E+01 3.608000E+01 4.100000E+00 +384 1 1.799000E+01 1.564000E+01 7.600000E+00 +385 1 1.348000E+01 2.671000E+01 3.384000E+01 +386 1 2.680000E+01 1.150000E+01 2.732000E+01 +387 1 1.540000E+00 1.068000E+01 6.000000E+00 +388 1 4.023000E+01 1.474000E+01 5.400000E+00 +389 1 3.603000E+01 1.044000E+01 1.040000E+00 +390 1 4.027000E+01 2.082000E+01 1.968000E+01 +391 1 8.140000E+00 7.470000E+00 1.017000E+01 +392 1 2.301000E+01 2.329000E+01 2.513000E+01 +393 1 2.445000E+01 3.558000E+01 3.913000E+01 +394 1 1.612000E+01 7.370000E+00 3.142000E+01 +395 1 5.760000E+00 3.391000E+01 1.460000E+00 +396 1 3.129000E+01 8.290000E+00 2.114000E+01 +397 1 2.631000E+01 3.050000E+00 2.120000E+00 +398 1 9.910000E+00 1.148000E+01 4.270000E+00 +399 1 3.146000E+01 1.048000E+01 9.000000E-02 +400 1 3.029000E+01 2.582000E+01 3.696000E+01 +401 1 9.700000E-01 3.600000E-01 6.090000E+00 +402 1 3.565000E+01 1.051000E+01 3.233000E+01 +403 1 1.931000E+01 3.769000E+01 1.438000E+01 +404 1 3.355000E+01 3.627000E+01 1.898000E+01 +405 1 1.822000E+01 3.092000E+01 1.960000E+00 +406 1 2.619000E+01 2.340000E+01 4.470000E+00 +407 1 3.452000E+01 1.894000E+01 1.873000E+01 +408 1 1.800000E+01 1.734000E+01 2.255000E+01 +409 1 2.946000E+01 3.888000E+01 3.664000E+01 +410 1 2.969000E+01 3.251000E+01 2.916000E+01 +411 1 3.049000E+01 3.154000E+01 1.894000E+01 +412 1 9.580000E+00 2.081000E+01 1.784000E+01 +413 1 6.710000E+00 3.164000E+01 1.056000E+01 +414 1 2.241000E+01 2.598000E+01 2.520000E+01 +415 1 9.400000E-01 3.714000E+01 7.120000E+00 +416 1 1.092000E+01 3.565000E+01 1.807000E+01 +417 1 3.221000E+01 3.286000E+01 2.858000E+01 +418 1 1.093000E+01 2.681000E+01 2.706000E+01 +419 1 3.190000E+00 3.247000E+01 3.307000E+01 +420 1 3.676000E+01 3.171000E+01 1.952000E+01 +421 1 2.035000E+01 1.811000E+01 2.446000E+01 +422 1 2.091000E+01 6.640000E+00 2.509000E+01 +423 1 1.010000E+01 1.037000E+01 1.606000E+01 +424 1 2.802000E+01 5.650000E+00 3.563000E+01 +425 1 3.514000E+01 3.759000E+01 3.460000E+01 +426 1 1.331000E+01 6.790000E+00 2.066000E+01 +427 1 3.670000E+01 3.280000E+00 1.023000E+01 +428 1 2.502000E+01 1.631000E+01 4.016000E+01 +429 1 3.680000E+01 3.883000E+01 3.693000E+01 +430 1 2.102000E+01 2.652000E+01 2.284000E+01 +431 1 3.128000E+01 1.447000E+01 3.730000E+01 +432 1 3.794000E+01 2.310000E+01 8.370000E+00 +433 1 5.030000E+00 3.022000E+01 2.741000E+01 +434 1 2.962000E+01 1.390000E+00 2.630000E+00 +435 1 7.470000E+00 1.300000E-01 8.060000E+00 +436 1 3.823000E+01 5.110000E+00 4.540000E+00 +437 1 3.993000E+01 2.487000E+01 2.555000E+01 +438 1 3.419000E+01 2.951000E+01 2.442000E+01 +439 1 2.047000E+01 2.120000E+00 1.372000E+01 +440 1 3.523000E+01 2.256000E+01 8.270000E+00 +441 1 2.551000E+01 3.081000E+01 9.110000E+00 +442 1 1.465000E+01 2.800000E+00 2.347000E+01 +443 1 2.903000E+01 1.144000E+01 1.204000E+01 +444 1 2.534000E+01 9.610000E+00 6.210000E+00 +445 1 3.062000E+01 7.070000E+00 2.967000E+01 +446 1 2.014000E+01 2.659000E+01 1.931000E+01 +447 1 2.399000E+01 1.880000E+01 3.480000E+01 +448 1 5.950000E+00 4.015000E+01 2.619000E+01 +449 1 1.404000E+01 3.854000E+01 3.780000E+00 +450 1 2.456000E+01 3.041000E+01 1.332000E+01 +451 1 2.196000E+01 1.540000E+01 3.747000E+01 +452 1 1.775000E+01 2.995000E+01 1.391000E+01 +453 1 3.000000E+01 2.423000E+01 1.001000E+01 +454 1 2.089000E+01 1.681000E+01 1.216000E+01 +455 1 1.788000E+01 2.556000E+01 7.570000E+00 +456 1 4.270000E+00 3.488000E+01 2.894000E+01 +457 1 2.754000E+01 3.101000E+01 2.264000E+01 +458 1 3.745000E+01 1.266000E+01 1.446000E+01 +459 1 1.948000E+01 8.000000E-02 3.541000E+01 +460 1 2.737000E+01 1.305000E+01 7.530000E+00 +461 1 3.302000E+01 2.540000E+01 2.041000E+01 +462 1 1.480000E+00 1.862000E+01 3.188000E+01 +463 1 7.900000E+00 1.395000E+01 1.408000E+01 +464 1 2.880000E+00 2.228000E+01 2.579000E+01 +465 1 3.848000E+01 3.161000E+01 2.994000E+01 +466 1 2.209000E+01 5.990000E+00 3.548000E+01 +467 1 2.863000E+01 3.632000E+01 3.624000E+01 +468 1 3.886000E+01 6.300000E+00 5.500000E-01 +469 1 3.331000E+01 1.047000E+01 4.380000E+00 +470 1 1.915000E+01 3.204000E+01 1.581000E+01 +471 1 8.850000E+00 2.500000E+01 2.963000E+01 +472 1 8.900000E+00 2.761000E+01 2.023000E+01 +473 1 1.218000E+01 1.500000E+01 2.970000E+00 +474 1 3.538000E+01 2.514000E+01 2.735000E+01 +475 1 3.498000E+01 3.620000E+00 1.695000E+01 +476 1 2.180000E+00 2.672000E+01 3.022000E+01 +477 1 2.349000E+01 3.983000E+01 1.417000E+01 +478 1 2.961000E+01 2.362000E+01 1.624000E+01 +479 1 1.777000E+01 4.920000E+00 3.195000E+01 +480 1 2.344000E+01 3.231000E+01 2.207000E+01 +481 1 3.998000E+01 9.400000E+00 3.494000E+01 +482 1 2.316000E+01 2.077000E+01 2.094000E+01 +483 1 3.072000E+01 3.947000E+01 1.320000E+00 +484 1 3.821000E+01 3.383000E+01 6.130000E+00 +485 1 2.503000E+01 2.028000E+01 5.030000E+00 +486 1 8.130000E+00 2.060000E+00 2.800000E-01 +487 1 2.430000E+01 2.911000E+01 4.990000E+00 +488 1 2.613000E+01 2.770000E+00 2.049000E+01 +489 1 3.885000E+01 2.315000E+01 1.970000E+01 +490 1 3.372000E+01 2.897000E+01 3.922000E+01 +491 1 1.540000E+01 3.012000E+01 2.314000E+01 +492 1 2.695000E+01 2.389000E+01 1.219000E+01 +493 1 3.379000E+01 3.924000E+01 2.480000E+00 +494 1 3.960000E+00 2.416000E+01 3.545000E+01 +495 1 1.618000E+01 2.350000E+01 3.071000E+01 +496 1 2.070000E+00 1.474000E+01 3.868000E+01 +497 1 3.018000E+01 2.268000E+01 1.230000E+01 +498 1 2.320000E+01 2.918000E+01 2.774000E+01 +499 1 1.001000E+01 3.753000E+01 2.846000E+01 +500 1 2.132000E+01 2.645000E+01 1.565000E+01 +501 1 2.124000E+01 4.000000E-01 1.562000E+01 +502 1 2.089000E+01 3.840000E+00 3.390000E+00 +503 1 9.170000E+00 2.348000E+01 1.682000E+01 +504 1 3.598000E+01 1.163000E+01 1.901000E+01 +505 1 6.180000E+00 2.294000E+01 3.150000E+01 +506 1 2.943000E+01 2.030000E+01 1.530000E+00 +507 1 3.094000E+01 1.106000E+01 1.918000E+01 +508 1 7.800000E-01 2.906000E+01 2.530000E+01 +509 1 2.225000E+01 3.673000E+01 1.809000E+01 +510 1 2.905000E+01 3.090000E+01 4.890000E+00 +511 1 2.936000E+01 2.555000E+01 1.342000E+01 +512 1 3.532000E+01 3.460000E+00 3.339000E+01 +513 1 1.160000E+00 1.028000E+01 3.751000E+01 +514 1 2.057000E+01 3.865000E+01 2.644000E+01 +515 1 3.607000E+01 2.724000E+01 2.521000E+01 +516 1 2.070000E+00 2.438000E+01 1.330000E+01 +517 1 3.426000E+01 1.288000E+01 3.510000E+00 +518 1 1.031000E+01 1.441000E+01 1.237000E+01 +519 1 9.380000E+00 3.884000E+01 1.909000E+01 +520 1 1.407000E+01 8.440000E+00 4.290000E+00 +521 1 1.541000E+01 2.054000E+01 1.640000E+01 +522 1 2.758000E+01 1.626000E+01 1.016000E+01 +523 1 2.593000E+01 1.352000E+01 3.500000E+01 +524 1 1.201000E+01 2.840000E+00 2.228000E+01 +525 1 2.295000E+01 1.030000E+00 2.891000E+01 +526 1 1.343000E+01 3.535000E+01 1.220000E+00 +527 1 1.510000E+00 1.070000E+01 3.078000E+01 +528 1 1.510000E+00 3.334000E+01 1.352000E+01 +529 1 1.523000E+01 2.434000E+01 1.679000E+01 +530 1 7.270000E+00 1.314000E+01 3.473000E+01 +531 1 7.970000E+00 3.660000E+00 2.739000E+01 +532 1 1.714000E+01 3.790000E+01 3.372000E+01 +533 1 1.506000E+01 3.911000E+01 2.845000E+01 +534 1 1.887000E+01 1.030000E+01 1.960000E+01 +535 1 1.438000E+01 2.701000E+01 1.312000E+01 +536 1 8.390000E+00 3.570000E+00 2.481000E+01 +537 1 3.839000E+01 2.238000E+01 2.579000E+01 +538 1 1.575000E+01 1.470000E+00 2.340000E+00 +539 1 3.519000E+01 5.500000E-01 2.541000E+01 +540 1 2.842000E+01 2.741000E+01 3.819000E+01 +541 1 5.460000E+00 1.297000E+01 6.280000E+00 +542 1 8.890000E+00 2.460000E+00 8.160000E+00 +543 1 2.594000E+01 3.498000E+01 2.231000E+01 +544 1 1.479000E+01 2.808000E+01 5.580000E+00 +545 1 6.030000E+00 1.235000E+01 2.913000E+01 +546 1 3.869000E+01 3.718000E+01 1.300000E+01 +547 1 1.380000E+00 3.164000E+01 3.510000E+00 +548 1 3.547000E+01 2.438000E+01 6.340000E+00 +549 1 3.259000E+01 5.000000E-01 2.295000E+01 +550 1 1.518000E+01 6.600000E-01 1.028000E+01 +551 1 3.941000E+01 9.710000E+00 6.370000E+00 +552 1 2.449000E+01 2.411000E+01 2.216000E+01 +553 1 2.358000E+01 3.512000E+01 2.349000E+01 +554 1 2.868000E+01 2.597000E+01 2.906000E+01 +555 1 1.977000E+01 3.606000E+01 3.134000E+01 +556 1 1.723000E+01 2.773000E+01 1.903000E+01 +557 1 9.900000E+00 7.220000E+00 4.900000E-01 +558 1 3.167000E+01 3.729000E+01 1.212000E+01 +559 1 1.327000E+01 1.870000E+01 3.987000E+01 +560 1 7.720000E+00 2.210000E+01 1.457000E+01 +561 1 3.201000E+01 3.360000E+01 4.220000E+00 +562 1 2.924000E+01 1.310000E+00 2.747000E+01 +563 1 3.574000E+01 3.101000E+01 1.548000E+01 +564 1 2.924000E+01 3.047000E+01 3.831000E+01 +565 1 1.850000E+00 8.130000E+00 3.932000E+01 +566 1 1.161000E+01 2.185000E+01 8.210000E+00 +567 1 3.442000E+01 6.840000E+00 2.270000E+00 +568 1 3.389000E+01 1.524000E+01 3.643000E+01 +569 1 1.774000E+01 1.401000E+01 1.280000E+01 +570 1 1.943000E+01 2.805000E+01 8.920000E+00 +571 1 3.791000E+01 3.482000E+01 3.156000E+01 +572 1 9.810000E+00 6.760000E+00 1.259000E+01 +573 1 1.101000E+01 1.849000E+01 2.777000E+01 +574 1 3.854000E+01 2.472000E+01 2.208000E+01 +575 1 5.050000E+00 1.827000E+01 1.847000E+01 +576 1 3.709000E+01 3.437000E+01 2.310000E+00 +577 1 1.735000E+01 3.308000E+01 9.600000E-01 +578 1 2.036000E+01 1.672000E+01 8.720000E+00 +579 1 2.025000E+01 1.720000E+00 3.060000E+01 +580 1 2.330000E+01 3.287000E+01 1.820000E+01 +581 1 2.037000E+01 1.620000E+01 2.636000E+01 +582 1 2.366000E+01 3.854000E+01 3.295000E+01 +583 1 1.795000E+01 3.777000E+01 2.290000E+00 +584 1 3.894000E+01 1.893000E+01 3.680000E+01 +585 1 1.733000E+01 1.950000E+00 1.934000E+01 +586 1 2.097000E+01 2.876000E+01 1.299000E+01 +587 1 1.085000E+01 1.202000E+01 2.193000E+01 +588 1 1.420000E+01 1.297000E+01 7.240000E+00 +589 1 3.595000E+01 3.720000E+01 2.476000E+01 +590 1 2.613000E+01 3.840000E+00 3.338000E+01 +591 1 2.638000E+01 1.730000E+01 1.315000E+01 +592 1 3.991000E+01 3.899000E+01 3.256000E+01 +593 1 3.695000E+01 3.579000E+01 4.020000E+01 +594 1 1.289000E+01 3.423000E+01 2.926000E+01 +595 1 2.269000E+01 2.160000E+01 3.927000E+01 +596 1 9.350000E+00 1.344000E+01 3.833000E+01 +597 1 1.540000E+01 5.170000E+00 2.454000E+01 +598 1 2.038000E+01 2.065000E+01 2.232000E+01 +599 1 1.578000E+01 3.991000E+01 2.335000E+01 +600 1 5.790000E+00 1.380000E+00 3.840000E+00 +601 1 3.080000E+00 8.560000E+00 3.132000E+01 +602 1 1.149000E+01 3.351000E+01 3.040000E+00 +603 1 2.710000E+00 6.500000E-01 2.371000E+01 +604 1 1.380000E+00 1.240000E+00 2.604000E+01 +605 1 2.461000E+01 1.463000E+01 2.216000E+01 +606 1 3.489000E+01 3.560000E+01 1.214000E+01 +607 1 2.110000E+01 1.130000E+01 3.203000E+01 +608 1 2.710000E+00 2.171000E+01 1.921000E+01 +609 1 2.371000E+01 2.064000E+01 1.711000E+01 +610 1 2.608000E+01 3.770000E+01 2.926000E+01 +611 1 9.100000E-01 3.790000E+00 2.455000E+01 +612 1 1.232000E+01 3.946000E+01 2.822000E+01 +613 1 7.920000E+00 3.155000E+01 3.494000E+01 +614 1 8.640000E+00 1.228000E+01 3.600000E-01 +615 1 1.209000E+01 1.765000E+01 1.449000E+01 +616 1 9.430000E+00 3.682000E+01 2.133000E+01 +617 1 3.655000E+01 3.211000E+01 1.296000E+01 +618 1 8.400000E+00 3.299000E+01 2.640000E+00 +619 1 3.150000E+01 1.270000E+00 2.872000E+01 +620 1 2.434000E+01 2.294000E+01 9.930000E+00 +621 1 7.010000E+00 3.645000E+01 2.206000E+01 +622 1 2.411000E+01 7.500000E+00 7.340000E+00 +623 1 3.769000E+01 2.512000E+01 1.061000E+01 +624 1 2.642000E+01 2.827000E+01 1.392000E+01 +625 1 1.534000E+01 2.490000E+00 3.676000E+01 +626 1 3.848000E+01 1.350000E+00 9.000000E+00 +627 1 2.170000E+01 3.500000E+01 9.420000E+00 +628 1 3.720000E+00 3.177000E+01 2.306000E+01 +629 1 1.584000E+01 9.150000E+00 2.081000E+01 +630 1 3.619000E+01 2.571000E+01 3.644000E+01 +631 1 5.290000E+00 4.017000E+01 3.818000E+01 +632 1 2.045000E+01 3.980000E+00 3.903000E+01 +633 1 2.976000E+01 1.756000E+01 6.560000E+00 +634 1 2.771000E+01 2.528000E+01 1.758000E+01 +635 1 2.285000E+01 2.420000E+00 3.632000E+01 +636 1 3.797000E+01 1.128000E+01 8.220000E+00 +637 1 1.619000E+01 3.179000E+01 2.109000E+01 +638 1 1.248000E+01 2.994000E+01 1.643000E+01 +639 1 3.304000E+01 1.518000E+01 4.690000E+00 +640 1 1.678000E+01 2.830000E+01 1.621000E+01 +641 1 1.230000E+01 3.206000E+01 1.360000E+01 +642 1 3.749000E+01 1.930000E+01 8.980000E+00 +643 1 3.385000E+01 2.638000E+01 1.406000E+01 +644 1 1.365000E+01 3.490000E+00 3.058000E+01 +645 1 6.730000E+00 2.010000E+01 1.255000E+01 +646 1 3.550000E+01 3.928000E+01 1.700000E+01 +647 1 3.594000E+01 6.490000E+00 4.005000E+01 +648 1 3.877000E+01 3.043000E+01 1.877000E+01 +649 1 9.340000E+00 2.314000E+01 3.499000E+01 +650 1 3.007000E+01 2.930000E+01 1.071000E+01 +651 1 3.420000E+01 1.243000E+01 3.417000E+01 +652 1 6.270000E+00 3.567000E+01 3.941000E+01 +653 1 3.647000E+01 2.536000E+01 2.990000E+01 +654 1 3.468000E+01 8.800000E-01 3.509000E+01 +655 1 3.280000E+01 2.184000E+01 1.227000E+01 +656 1 1.615000E+01 1.291000E+01 1.584000E+01 +657 1 3.990000E+01 3.177000E+01 1.626000E+01 +658 1 5.200000E+00 2.090000E+01 3.293000E+01 +659 1 3.609000E+01 7.970000E+00 3.355000E+01 +660 1 2.126000E+01 1.560000E+00 1.093000E+01 +661 1 3.862000E+01 1.842000E+01 1.982000E+01 +662 1 1.861000E+01 1.123000E+01 2.674000E+01 +663 1 2.391000E+01 1.732000E+01 3.061000E+01 +664 1 6.350000E+00 1.859000E+01 2.796000E+01 +665 1 3.644000E+01 6.380000E+00 1.109000E+01 +666 1 1.520000E+00 2.203000E+01 1.682000E+01 +667 1 3.213000E+01 1.863000E+01 5.570000E+00 +668 1 3.212000E+01 2.800000E+01 8.050000E+00 +669 1 3.344000E+01 1.076000E+01 1.339000E+01 +670 1 1.797000E+01 3.840000E+00 3.663000E+01 +671 1 7.730000E+00 5.790000E+00 3.015000E+01 +672 1 2.891000E+01 2.616000E+01 2.630000E+01 +673 1 1.781000E+01 1.785000E+01 4.280000E+00 +674 1 2.327000E+01 2.643000E+01 3.553000E+01 +675 1 8.190000E+00 3.984000E+01 3.549000E+01 +676 1 3.472000E+01 2.874000E+01 2.162000E+01 +677 1 2.685000E+01 2.769000E+01 8.010000E+00 +678 1 1.593000E+01 1.886000E+01 3.164000E+01 +679 1 1.452000E+01 6.930000E+00 1.527000E+01 +680 1 1.704000E+01 2.665000E+01 2.424000E+01 +681 1 3.051000E+01 2.600000E-01 2.126000E+01 +682 1 3.610000E+00 1.666000E+01 4.260000E+00 +683 1 1.560000E+00 2.023000E+01 2.785000E+01 +684 1 7.960000E+00 6.270000E+00 1.879000E+01 +685 1 1.494000E+01 2.269000E+01 2.395000E+01 +686 1 3.239000E+01 3.789000E+01 1.615000E+01 +687 1 2.933000E+01 3.430000E+01 1.219000E+01 +688 1 3.053000E+01 3.060000E+01 1.596000E+01 +689 1 3.924000E+01 4.960000E+00 1.373000E+01 +690 1 3.640000E+00 7.120000E+00 3.330000E+00 +691 1 1.567000E+01 3.612000E+01 4.030000E+01 +692 1 1.589000E+01 1.675000E+01 1.275000E+01 +693 1 2.139000E+01 2.311000E+01 1.618000E+01 +694 1 2.488000E+01 2.183000E+01 1.498000E+01 +695 1 3.215000E+01 3.492000E+01 2.542000E+01 +696 1 2.819000E+01 1.378000E+01 3.237000E+01 +697 1 3.815000E+01 1.373000E+01 3.633000E+01 +698 1 4.340000E+00 3.811000E+01 5.780000E+00 +699 1 4.390000E+00 3.276000E+01 3.068000E+01 +700 1 2.930000E+01 4.008000E+01 1.894000E+01 +701 1 1.313000E+01 1.999000E+01 9.970000E+00 +702 1 3.142000E+01 3.774000E+01 2.725000E+01 +703 1 2.779000E+01 3.169000E+01 8.130000E+00 +704 1 5.340000E+00 3.398000E+01 9.790000E+00 +705 1 2.602000E+01 6.270000E+00 9.090000E+00 +706 1 2.247000E+01 2.886000E+01 1.950000E+01 +707 1 4.650000E+00 3.260000E+00 8.180000E+00 +708 1 3.039000E+01 3.515000E+01 2.966000E+01 +709 1 2.434000E+01 7.210000E+00 3.155000E+01 +710 1 1.250000E+00 5.230000E+00 3.544000E+01 +711 1 1.390000E+01 2.491000E+01 2.517000E+01 +712 1 3.581000E+01 1.145000E+01 2.867000E+01 +713 1 5.800000E-01 1.696000E+01 3.703000E+01 +714 1 2.303000E+01 3.198000E+01 1.486000E+01 +715 1 2.135000E+01 1.115000E+01 1.687000E+01 +716 1 3.806000E+01 3.995000E+01 1.678000E+01 +717 1 4.140000E+00 3.313000E+01 1.790000E+01 +718 1 3.480000E+01 3.762000E+01 6.200000E-01 +719 1 3.188000E+01 1.792000E+01 2.097000E+01 +720 1 2.350000E+00 1.273000E+01 2.318000E+01 +721 1 2.728000E+01 1.889000E+01 9.160000E+00 +722 1 3.408000E+01 3.084000E+01 3.294000E+01 +723 1 3.240000E+00 1.244000E+01 2.943000E+01 +724 1 2.051000E+01 1.324000E+01 1.061000E+01 +725 1 3.179000E+01 2.032000E+01 3.777000E+01 +726 1 1.300000E+00 3.036000E+01 3.260000E+01 +727 1 5.810000E+00 3.539000E+01 2.529000E+01 +728 1 1.356000E+01 4.050000E+00 7.980000E+00 +729 1 1.280000E+00 1.406000E+01 3.084000E+01 +730 1 3.751000E+01 9.910000E+00 1.419000E+01 +731 1 3.560000E+00 2.043000E+01 3.572000E+01 +732 1 2.807000E+01 1.272000E+01 2.957000E+01 +733 1 1.030000E+01 3.771000E+01 3.320000E+00 +734 1 2.519000E+01 3.108000E+01 3.485000E+01 +735 1 4.210000E+00 1.015000E+01 1.481000E+01 +736 1 3.297000E+01 3.553000E+01 3.800000E-01 +737 1 1.391000E+01 4.250000E+00 2.798000E+01 +738 1 3.163000E+01 3.147000E+01 2.522000E+01 +739 1 6.800000E-01 9.000000E+00 9.580000E+00 +740 1 3.693000E+01 1.269000E+01 2.138000E+01 +741 1 3.779000E+01 1.676000E+01 2.900000E+00 +742 1 3.409000E+01 3.193000E+01 3.230000E+00 +743 1 2.104000E+01 1.530000E+00 3.802000E+01 +744 1 3.698000E+01 8.310000E+00 2.317000E+01 +745 1 1.636000E+01 3.968000E+01 2.039000E+01 +746 1 1.718000E+01 2.280000E+01 1.567000E+01 +747 1 2.872000E+01 3.545000E+01 2.363000E+01 +748 1 1.478000E+01 2.706000E+01 1.992000E+01 +749 1 2.920000E+00 2.723000E+01 4.320000E+00 +750 1 9.980000E+00 3.424000E+01 2.143000E+01 +751 1 3.957000E+01 3.017000E+01 3.709000E+01 +752 1 4.000000E+00 3.655000E+01 7.970000E+00 +753 1 3.551000E+01 4.002000E+01 2.020000E+01 +754 1 3.830000E+00 3.087000E+01 6.520000E+00 +755 1 2.354000E+01 2.238000E+01 4.140000E+00 +756 1 1.044000E+01 3.541000E+01 5.160000E+00 +757 1 2.194000E+01 3.613000E+01 3.780000E+01 +758 1 2.092000E+01 2.245000E+01 1.115000E+01 +759 1 3.496000E+01 1.040000E+00 1.250000E+01 +760 1 3.112000E+01 2.356000E+01 2.265000E+01 +761 1 4.018000E+01 2.631000E+01 1.422000E+01 +762 1 3.725000E+01 2.257000E+01 4.990000E+00 +763 1 4.260000E+00 7.250000E+00 5.800000E-01 +764 1 1.535000E+01 2.568000E+01 4.500000E+00 +765 1 2.280000E+00 7.200000E+00 2.548000E+01 +766 1 1.892000E+01 2.767000E+01 3.048000E+01 +767 1 3.965000E+01 2.569000E+01 8.820000E+00 +768 1 3.997000E+01 2.795000E+01 1.922000E+01 +769 1 3.916000E+01 2.240000E+01 1.647000E+01 +770 1 2.000000E-02 1.028000E+01 2.766000E+01 +771 1 8.010000E+00 6.310000E+00 2.720000E+00 +772 1 1.906000E+01 3.198000E+01 2.144000E+01 +773 1 2.095000E+01 2.715000E+01 3.392000E+01 +774 1 3.462000E+01 2.642000E+01 3.263000E+01 +775 1 1.301000E+01 2.714000E+01 1.069000E+01 +776 1 1.523000E+01 2.320000E+00 6.840000E+00 +777 1 5.620000E+00 1.000000E-01 2.002000E+01 +778 1 5.430000E+00 8.100000E+00 8.940000E+00 +779 1 1.961000E+01 2.385000E+01 4.008000E+01 +780 1 1.642000E+01 1.774000E+01 3.617000E+01 +781 1 1.140000E+00 2.459000E+01 3.976000E+01 +782 1 6.360000E+00 7.020000E+00 3.485000E+01 +783 1 3.050000E+00 3.680000E+01 3.114000E+01 +784 1 3.819000E+01 3.930000E+01 1.971000E+01 +785 1 3.449000E+01 5.310000E+00 7.490000E+00 +786 1 2.447000E+01 2.977000E+01 2.104000E+01 +787 1 1.216000E+01 2.083000E+01 1.964000E+01 +788 1 3.000000E-02 1.740000E+01 3.406000E+01 +789 1 1.061000E+01 6.600000E-01 1.321000E+01 +790 1 6.150000E+00 1.853000E+01 3.426000E+01 +791 1 3.316000E+01 1.856000E+01 3.208000E+01 +792 1 9.170000E+00 1.165000E+01 1.375000E+01 +793 1 7.100000E+00 2.260000E+00 3.753000E+01 +794 1 3.203000E+01 8.540000E+00 2.772000E+01 +795 1 3.570000E+01 1.662000E+01 1.270000E+00 +796 1 1.294000E+01 1.035000E+01 2.984000E+01 +797 1 2.190000E+00 3.980000E+01 7.100000E-01 +798 1 3.700000E+01 1.581000E+01 3.798000E+01 +799 1 7.490000E+00 1.611000E+01 2.699000E+01 +800 1 1.770000E+01 3.511000E+01 2.850000E+00 +801 1 3.115000E+01 2.188000E+01 1.933000E+01 +802 1 1.725000E+01 7.210000E+00 2.589000E+01 +803 1 2.056000E+01 2.099000E+01 4.240000E+00 +804 1 9.800000E+00 8.470000E+00 4.960000E+00 +805 1 3.926000E+01 1.310000E+00 3.630000E+01 +806 1 1.438000E+01 1.603000E+01 3.682000E+01 +807 1 3.647000E+01 2.067000E+01 3.631000E+01 +808 1 6.610000E+00 2.971000E+01 3.295000E+01 +809 1 2.104000E+01 7.710000E+00 3.731000E+01 +810 1 1.582000E+01 3.212000E+01 1.447000E+01 +811 1 1.030000E+00 1.449000E+01 2.940000E+00 +812 1 9.300000E-01 5.000000E-01 3.422000E+01 +813 1 2.733000E+01 3.544000E+01 2.021000E+01 +814 1 1.997000E+01 8.780000E+00 3.361000E+01 +815 1 1.831000E+01 1.683000E+01 1.128000E+01 +816 1 4.900000E+00 9.750000E+00 2.688000E+01 +817 1 2.096000E+01 9.670000E+00 6.390000E+00 +818 1 8.240000E+00 2.498000E+01 3.239000E+01 +819 1 2.763000E+01 1.116000E+01 9.470000E+00 +820 1 3.852000E+01 3.052000E+01 1.193000E+01 +821 1 3.237000E+01 2.209000E+01 1.608000E+01 +822 1 3.000000E+01 2.932000E+01 2.511000E+01 +823 1 3.354000E+01 3.845000E+01 1.356000E+01 +824 1 1.186000E+01 2.160000E+00 3.527000E+01 +825 1 3.336000E+01 2.013000E+01 2.136000E+01 +826 1 3.470000E+01 1.719000E+01 3.890000E+00 +827 1 3.460000E+00 3.257000E+01 9.700000E-01 +828 1 1.512000E+01 3.043000E+01 1.635000E+01 +829 1 1.564000E+01 1.436000E+01 3.110000E+00 +830 1 1.960000E+00 3.510000E+00 2.854000E+01 +831 1 3.933000E+01 1.727000E+01 2.233000E+01 +832 1 6.770000E+00 2.061000E+01 1.888000E+01 +833 1 1.690000E+01 3.100000E+00 8.990000E+00 +834 1 7.920000E+00 1.209000E+01 2.119000E+01 +835 1 8.140000E+00 1.669000E+01 1.654000E+01 +836 1 1.356000E+01 3.261000E+01 1.777000E+01 +837 1 1.916000E+01 2.254000E+01 2.240000E+00 +838 1 8.200000E-01 1.630000E+00 9.600000E+00 +839 1 4.230000E+00 7.800000E-01 1.595000E+01 +840 1 3.256000E+01 3.110000E+01 1.334000E+01 +841 1 2.620000E+00 3.921000E+01 1.443000E+01 +842 1 2.916000E+01 2.898000E+01 2.530000E+00 +843 1 4.006000E+01 2.917000E+01 3.966000E+01 +844 1 9.600000E+00 3.287000E+01 1.425000E+01 +845 1 7.700000E+00 4.030000E+01 2.270000E+00 +846 1 2.284000E+01 1.328000E+01 3.290000E+01 +847 1 1.866000E+01 2.900000E-01 2.668000E+01 +848 1 5.620000E+00 1.563000E+01 2.383000E+01 +849 1 2.584000E+01 1.075000E+01 1.414000E+01 +850 1 3.147000E+01 3.050000E+00 5.580000E+00 +851 1 2.520000E+01 3.040000E+01 1.900000E-01 +852 1 2.617000E+01 2.138000E+01 2.898000E+01 +853 1 3.771000E+01 1.780000E+01 4.010000E+01 +854 1 1.203000E+01 3.870000E+01 1.346000E+01 +855 1 6.580000E+00 2.261000E+01 4.900000E-01 +856 1 2.727000E+01 3.260000E+00 1.314000E+01 +857 1 3.430000E+00 1.018000E+01 2.242000E+01 +858 1 1.162000E+01 2.183000E+01 2.590000E+00 +859 1 2.840000E+01 2.584000E+01 4.910000E+00 +860 1 2.730000E+00 1.896000E+01 1.988000E+01 +861 1 2.209000E+01 3.577000E+01 1.290000E+01 +862 1 2.057000E+01 6.120000E+00 1.587000E+01 +863 1 2.596000E+01 9.010000E+00 9.880000E+00 +864 1 1.852000E+01 1.698000E+01 1.500000E+01 +865 1 7.580000E+00 9.280000E+00 2.879000E+01 +866 1 2.592000E+01 1.074000E+01 1.900000E-01 +867 1 1.295000E+01 5.200000E+00 4.022000E+01 +868 1 2.274000E+01 1.780000E+01 2.731000E+01 +869 1 3.434000E+01 4.240000E+00 2.660000E+01 +870 1 1.378000E+01 3.530000E+01 2.066000E+01 +871 1 3.765000E+01 9.920000E+00 2.705000E+01 +872 1 3.754000E+01 2.837000E+01 3.605000E+01 +873 1 5.760000E+00 3.360000E+00 3.454000E+01 +874 1 3.029000E+01 2.226000E+01 2.898000E+01 +875 1 3.327000E+01 1.732000E+01 7.840000E+00 +876 1 3.632000E+01 1.310000E+01 6.250000E+00 +877 1 3.194000E+01 2.590000E+01 2.524000E+01 +878 1 1.028000E+01 1.960000E+00 4.490000E+00 +879 1 3.579000E+01 2.290000E+00 2.966000E+01 +880 1 3.942000E+01 3.196000E+01 6.600000E-01 +881 1 3.678000E+01 3.858000E+01 5.240000E+00 +882 1 1.144000E+01 3.168000E+01 3.634000E+01 +883 1 1.450000E+01 2.814000E+01 3.868000E+01 +884 1 3.402000E+01 1.046000E+01 2.060000E+01 +885 1 1.743000E+01 3.810000E+01 3.998000E+01 +886 1 3.809000E+01 3.529000E+01 2.441000E+01 +887 1 3.648000E+01 2.244000E+01 1.856000E+01 +888 1 3.363000E+01 1.148000E+01 2.301000E+01 +889 1 1.700000E+00 2.129000E+01 9.050000E+00 +890 1 7.440000E+00 2.906000E+01 2.745000E+01 +891 1 2.516000E+01 1.413000E+01 3.209000E+01 +892 1 1.770000E+00 1.710000E+00 2.115000E+01 +893 1 3.475000E+01 4.018000E+01 3.987000E+01 +894 1 3.282000E+01 3.888000E+01 3.845000E+01 +895 1 2.771000E+01 2.233000E+01 2.152000E+01 +896 1 1.500000E-01 3.264000E+01 6.430000E+00 +897 1 3.724000E+01 1.184000E+01 3.794000E+01 +898 1 1.817000E+01 3.143000E+01 2.934000E+01 +899 1 3.997000E+01 7.000000E+00 2.259000E+01 +900 1 1.854000E+01 1.541000E+01 1.812000E+01 +901 1 1.820000E+00 2.583000E+01 3.519000E+01 +902 1 3.299000E+01 2.158000E+01 2.852000E+01 +903 1 3.254000E+01 2.840000E+01 2.650000E+01 +904 1 2.985000E+01 1.900000E+01 1.933000E+01 +905 1 3.170000E+00 1.346000E+01 8.600000E+00 +906 1 1.997000E+01 3.786000E+01 8.920000E+00 +907 1 3.431000E+01 1.089000E+01 7.990000E+00 +908 1 2.038000E+01 7.980000E+00 3.979000E+01 +909 1 4.080000E+00 2.395000E+01 3.035000E+01 +910 1 3.444000E+01 9.670000E+00 3.008000E+01 +911 1 1.583000E+01 1.467000E+01 2.227000E+01 +912 1 1.431000E+01 1.500000E+01 3.947000E+01 +913 1 4.670000E+00 2.058000E+01 3.000000E-01 +914 1 9.300000E+00 2.344000E+01 5.290000E+00 +915 1 2.399000E+01 2.950000E+01 2.521000E+01 +916 1 2.265000E+01 5.580000E+00 3.851000E+01 +917 1 2.574000E+01 2.662000E+01 3.447000E+01 +918 1 2.933000E+01 2.029000E+01 2.288000E+01 +919 1 2.541000E+01 9.850000E+00 2.358000E+01 +920 1 5.910000E+00 3.300000E+00 5.750000E+00 +921 1 1.326000E+01 7.000000E-02 2.430000E+01 +922 1 3.950000E+00 2.194000E+01 2.171000E+01 +923 1 3.333000E+01 3.333000E+01 3.166000E+01 +924 1 1.750000E+00 1.349000E+01 1.146000E+01 +925 1 3.112000E+01 2.539000E+01 1.787000E+01 +926 1 1.868000E+01 1.020000E+00 1.011000E+01 +927 1 1.286000E+01 2.967000E+01 1.190000E+01 +928 1 7.900000E+00 3.319000E+01 5.760000E+00 +929 1 3.152000E+01 1.395000E+01 1.066000E+01 +930 1 1.509000E+01 3.071000E+01 1.065000E+01 +931 1 2.109000E+01 1.130000E+01 8.650000E+00 +932 1 3.999000E+01 2.953000E+01 2.270000E+01 +933 1 1.099000E+01 3.969000E+01 2.321000E+01 +934 1 1.117000E+01 3.025000E+01 3.283000E+01 +935 1 3.573000E+01 2.144000E+01 3.377000E+01 +936 1 3.968000E+01 2.056000E+01 3.883000E+01 +937 1 3.883000E+01 2.733000E+01 2.522000E+01 +938 1 3.058000E+01 3.023000E+01 3.197000E+01 +939 1 1.682000E+01 3.112000E+01 3.195000E+01 +940 1 5.210000E+00 1.511000E+01 2.270000E+00 +941 1 2.484000E+01 3.855000E+01 1.900000E+01 +942 1 1.251000E+01 8.200000E-01 6.010000E+00 +943 1 1.945000E+01 2.246000E+01 2.716000E+01 +944 1 3.236000E+01 2.477000E+01 4.090000E+00 +945 1 3.575000E+01 2.625000E+01 2.092000E+01 +946 1 3.212000E+01 3.182000E+01 8.550000E+00 +947 1 8.700000E+00 3.527000E+01 2.976000E+01 +948 1 3.505000E+01 1.031000E+01 3.573000E+01 +949 1 1.260000E+00 1.847000E+01 3.270000E+00 +950 1 2.692000E+01 3.179000E+01 3.059000E+01 +951 1 1.983000E+01 3.155000E+01 1.247000E+01 +952 1 2.251000E+01 2.447000E+01 3.282000E+01 +953 1 3.023000E+01 1.924000E+01 3.172000E+01 +954 1 1.474000E+01 3.618000E+01 2.940000E+01 +955 1 5.110000E+00 5.140000E+00 1.415000E+01 +956 1 1.730000E+01 2.116000E+01 1.800000E-01 +957 1 1.817000E+01 3.470000E+00 2.967000E+01 +958 1 1.196000E+01 3.108000E+01 2.941000E+01 +959 1 3.782000E+01 2.364000E+01 1.930000E+00 +960 1 1.775000E+01 1.363000E+01 2.943000E+01 +961 1 1.126000E+01 4.530000E+00 1.315000E+01 +962 1 1.827000E+01 3.255000E+01 2.395000E+01 +963 1 1.220000E+01 9.900000E-01 2.410000E+00 +964 1 2.614000E+01 3.974000E+01 1.483000E+01 +965 1 1.964000E+01 3.425000E+01 2.586000E+01 +966 1 2.316000E+01 5.030000E+00 2.602000E+01 +967 1 2.478000E+01 3.461000E+01 2.617000E+01 +968 1 3.113000E+01 1.817000E+01 2.240000E+00 +969 1 8.710000E+00 3.614000E+01 1.418000E+01 +970 1 1.900000E-01 3.677000E+01 3.071000E+01 +971 1 3.538000E+01 5.140000E+00 2.318000E+01 +972 1 9.790000E+00 2.135000E+01 2.544000E+01 +973 1 1.234000E+01 3.592000E+01 1.006000E+01 +974 1 2.808000E+01 2.346000E+01 6.350000E+00 +975 1 1.086000E+01 3.276000E+01 2.368000E+01 +976 1 3.010000E+01 1.223000E+01 2.699000E+01 +977 1 1.798000E+01 3.060000E+00 4.020000E+00 +978 1 9.390000E+00 1.377000E+01 5.800000E+00 +979 1 9.450000E+00 9.490000E+00 2.509000E+01 +980 1 1.634000E+01 2.181000E+01 2.177000E+01 +981 1 2.499000E+01 2.674000E+01 4.900000E-01 +982 1 7.580000E+00 1.520000E+01 3.701000E+01 +983 1 3.193000E+01 1.752000E+01 1.411000E+01 +984 1 3.935000E+01 5.860000E+00 1.126000E+01 +985 1 4.690000E+00 2.804000E+01 1.205000E+01 +986 1 1.666000E+01 4.480000E+00 5.880000E+00 +987 1 1.574000E+01 1.277000E+01 2.425000E+01 +988 1 3.410000E+00 5.510000E+00 9.080000E+00 +989 1 3.154000E+01 1.890000E+00 1.838000E+01 +990 1 9.200000E-01 1.946000E+01 1.111000E+01 +991 1 1.300000E-01 3.681000E+01 1.547000E+01 +992 1 2.851000E+01 3.912000E+01 2.277000E+01 +993 1 1.302000E+01 3.893000E+01 3.916000E+01 +994 1 2.523000E+01 2.550000E+01 2.880000E+00 +995 1 1.403000E+01 2.277000E+01 1.031000E+01 +996 1 9.250000E+00 3.892000E+01 1.171000E+01 +997 1 2.110000E+00 4.720000E+00 1.958000E+01 +998 1 3.144000E+01 3.505000E+01 3.586000E+01 +999 1 8.950000E+00 3.743000E+01 3.477000E+01 +1000 1 3.336000E+01 2.864000E+01 3.608000E+01 +1001 1 8.380000E+00 6.150000E+00 3.305000E+01 +1002 1 4.015000E+01 3.770000E+01 4.670000E+00 +1003 1 2.169000E+01 8.000000E+00 8.710000E+00 +1004 1 3.218000E+01 8.590000E+00 3.414000E+01 +1005 1 1.451000E+01 1.921000E+01 2.655000E+01 +1006 1 3.070000E+01 5.380000E+00 1.411000E+01 +1007 1 1.231000E+01 1.584000E+01 1.988000E+01 +1008 1 1.339000E+01 1.660000E+00 2.670000E+01 +1009 1 1.676000E+01 3.086000E+01 5.210000E+00 +1010 1 1.886000E+01 4.200000E+00 1.443000E+01 +1011 1 4.390000E+00 2.058000E+01 7.710000E+00 +1012 1 1.980000E+00 1.848000E+01 1.524000E+01 +1013 1 8.270000E+00 4.710000E+00 1.614000E+01 +1014 1 3.172000E+01 1.239000E+01 2.488000E+01 +1015 1 5.750000E+00 1.411000E+01 1.242000E+01 +1016 1 3.544000E+01 3.200000E+01 9.300000E-01 +1017 1 3.444000E+01 2.616000E+01 3.838000E+01 +1018 1 2.259000E+01 3.158000E+01 7.330000E+00 +1019 1 1.400000E+01 3.055000E+01 3.491000E+01 +1020 1 2.852000E+01 2.002000E+01 2.953000E+01 +1021 1 3.060000E+01 1.624000E+01 9.080000E+00 +1022 1 1.561000E+01 1.068000E+01 1.044000E+01 +1023 1 2.138000E+01 2.543000E+01 2.883000E+01 +1024 1 1.760000E+00 2.414000E+01 4.110000E+00 +1025 1 1.033000E+01 2.356000E+01 3.815000E+01 +1026 1 1.698000E+01 1.150000E+01 2.182000E+01 +1027 1 1.922000E+01 1.262000E+01 3.896000E+01 +1028 1 3.953000E+01 1.910000E+00 2.334000E+01 +1029 1 9.940000E+00 2.793000E+01 3.256000E+01 +1030 1 4.600000E-01 1.283000E+01 3.671000E+01 +1031 1 1.190000E+00 7.660000E+00 1.186000E+01 +1032 1 1.931000E+01 1.312000E+01 4.800000E+00 +1033 1 3.352000E+01 2.255000E+01 3.626000E+01 +1034 1 1.631000E+01 7.100000E+00 8.830000E+00 +1035 1 1.934000E+01 7.420000E+00 2.788000E+01 +1036 1 2.025000E+01 2.075000E+01 4.015000E+01 +1037 1 2.824000E+01 9.520000E+00 1.630000E+01 +1038 1 3.989000E+01 3.390000E+01 2.986000E+01 +1039 1 2.294000E+01 4.790000E+00 1.448000E+01 +1040 1 4.019000E+01 2.327000E+01 3.411000E+01 +1041 1 3.940000E+00 2.697000E+01 2.054000E+01 +1042 1 1.789000E+01 9.490000E+00 6.520000E+00 +1043 1 2.719000E+01 3.389000E+01 3.250000E+01 +1044 1 2.649000E+01 2.743000E+01 4.230000E+00 +1045 1 1.330000E+00 2.940000E+01 3.013000E+01 +1046 1 3.535000E+01 7.110000E+00 2.989000E+01 +1047 1 2.787000E+01 2.802000E+01 1.162000E+01 +1048 1 1.347000E+01 1.450000E+00 2.050000E+01 +1049 1 3.466000E+01 4.150000E+00 2.072000E+01 +1050 1 2.759000E+01 3.805000E+01 1.863000E+01 +1051 1 2.095000E+01 6.790000E+00 3.055000E+01 +1052 1 2.306000E+01 4.640000E+00 2.881000E+01 +1053 1 1.007000E+01 4.480000E+00 9.390000E+00 +1054 1 1.015000E+01 1.046000E+01 3.502000E+01 +1055 1 3.088000E+01 3.307000E+01 3.856000E+01 +1056 1 2.231000E+01 1.040000E+01 1.146000E+01 +1057 1 2.929000E+01 3.853000E+01 3.949000E+01 +1058 1 1.854000E+01 1.947000E+01 6.520000E+00 +1059 1 2.403000E+01 2.653000E+01 1.121000E+01 +1060 1 3.800000E+01 2.400000E+00 3.421000E+01 +1061 1 6.580000E+00 2.857000E+01 9.530000E+00 +1062 1 4.490000E+00 3.065000E+01 3.451000E+01 +1063 1 3.653000E+01 3.394000E+01 1.567000E+01 +1064 1 2.440000E+00 9.340000E+00 3.483000E+01 +1065 1 3.460000E+00 1.150000E+01 3.806000E+01 +1066 1 2.549000E+01 2.264000E+01 2.415000E+01 +1067 1 1.379000E+01 1.752000E+01 9.020000E+00 +1068 1 2.549000E+01 5.930000E+00 3.170000E+00 +1069 1 2.217000E+01 2.260000E+01 1.850000E+00 +1070 1 6.090000E+00 2.440000E+00 1.047000E+01 +1071 1 1.302000E+01 5.270000E+00 4.540000E+00 +1072 1 5.730000E+00 3.967000E+01 3.079000E+01 +1073 1 3.165000E+01 3.579000E+01 7.390000E+00 +1074 1 1.633000E+01 3.326000E+01 2.629000E+01 +1075 1 2.980000E+01 1.057000E+01 2.904000E+01 +1076 1 3.549000E+01 3.290000E+00 1.411000E+01 +1077 1 8.450000E+00 1.779000E+01 1.943000E+01 +1078 1 1.337000E+01 3.361000E+01 3.931000E+01 +1079 1 2.140000E+01 1.651000E+01 3.171000E+01 +1080 1 1.546000E+01 1.432000E+01 1.942000E+01 +1081 1 2.476000E+01 6.300000E+00 1.785000E+01 +1082 1 4.200000E+00 1.800000E+01 2.192000E+01 +1083 1 1.934000E+01 3.368000E+01 9.130000E+00 +1084 1 3.580000E+00 1.281000E+01 1.377000E+01 +1085 1 3.595000E+01 1.280000E+00 3.766000E+01 +1086 1 2.502000E+01 3.406000E+01 3.411000E+01 +1087 1 3.642000E+01 2.752000E+01 1.059000E+01 +1088 1 2.228000E+01 3.248000E+01 1.165000E+01 +1089 1 1.361000E+01 1.065000E+01 2.154000E+01 +1090 1 4.050000E+00 2.082000E+01 2.820000E+00 +1091 1 3.283000E+01 7.500000E+00 3.904000E+01 +1092 1 3.332000E+01 3.896000E+01 2.900000E+01 +1093 1 1.987000E+01 1.390000E+00 1.983000E+01 +1094 1 2.039000E+01 3.180000E+01 3.345000E+01 +1095 1 1.746000E+01 6.920000E+00 2.017000E+01 +1096 1 1.084000E+01 2.573000E+01 2.256000E+01 +1097 1 2.710000E+01 2.340000E+01 1.489000E+01 +1098 1 1.000000E-01 4.290000E+00 2.696000E+01 +1099 1 6.400000E+00 1.850000E+01 4.014000E+01 +1100 1 2.334000E+01 2.521000E+01 1.682000E+01 +1101 1 2.029000E+01 1.331000E+01 2.654000E+01 +1102 1 3.414000E+01 1.391000E+01 1.841000E+01 +1103 1 2.984000E+01 3.839000E+01 4.600000E+00 +1104 1 2.570000E+01 1.898000E+01 2.920000E+00 +1105 1 3.812000E+01 3.690000E+01 2.990000E+00 +1106 1 3.477000E+01 1.278000E+01 3.741000E+01 +1107 1 2.619000E+01 8.990000E+00 3.811000E+01 +1108 1 2.288000E+01 3.753000E+01 1.554000E+01 +1109 1 9.580000E+00 1.119000E+01 2.883000E+01 +1110 1 2.885000E+01 3.501000E+01 3.864000E+01 +1111 1 3.804000E+01 2.327000E+01 1.392000E+01 +1112 1 3.221000E+01 1.475000E+01 4.019000E+01 +1113 1 2.298000E+01 3.750000E+00 2.336000E+01 +1114 1 3.079000E+01 2.918000E+01 2.843000E+01 +1115 1 2.192000E+01 3.333000E+01 2.466000E+01 +1116 1 3.105000E+01 1.491000E+01 2.302000E+01 +1117 1 1.463000E+01 1.740000E+01 1.902000E+01 +1118 1 5.160000E+00 1.431000E+01 1.833000E+01 +1119 1 3.748000E+01 3.474000E+01 1.228000E+01 +1120 1 1.928000E+01 2.761000E+01 1.711000E+01 +1121 1 3.456000E+01 2.111000E+01 1.480000E+01 +1122 1 3.947000E+01 1.284000E+01 2.774000E+01 +1123 1 3.109000E+01 1.864000E+01 1.692000E+01 +1124 1 1.101000E+01 3.502000E+01 2.637000E+01 +1125 1 6.450000E+00 8.300000E+00 3.935000E+01 +1126 1 1.102000E+01 3.965000E+01 3.741000E+01 +1127 1 3.034000E+01 2.946000E+01 1.600000E-01 +1128 1 5.820000E+00 2.265000E+01 3.620000E+00 +1129 1 1.668000E+01 3.081000E+01 2.721000E+01 +1130 1 3.337000E+01 3.333000E+01 3.704000E+01 +1131 1 8.670000E+00 1.893000E+01 3.462000E+01 +1132 1 5.250000E+00 2.861000E+01 3.655000E+01 +1133 1 3.401000E+01 2.099000E+01 3.105000E+01 +1134 1 1.878000E+01 6.930000E+00 3.430000E+00 +1135 1 1.820000E+01 2.042000E+01 1.970000E+01 +1136 1 3.604000E+01 1.869000E+01 2.686000E+01 +1137 1 7.900000E-01 2.344000E+01 7.790000E+00 +1138 1 1.429000E+01 2.965000E+01 2.851000E+01 +1139 1 2.285000E+01 2.852000E+01 6.800000E-01 +1140 1 1.117000E+01 3.682000E+01 2.353000E+01 +1141 1 2.882000E+01 3.799000E+01 9.160000E+00 +1142 1 4.028000E+01 9.430000E+00 1.387000E+01 +1143 1 5.200000E+00 2.358000E+01 3.807000E+01 +1144 1 1.787000E+01 1.770000E+00 3.866000E+01 +1145 1 5.650000E+00 3.737000E+01 2.922000E+01 +1146 1 2.560000E+00 3.544000E+01 1.994000E+01 +1147 1 3.677000E+01 2.009000E+01 2.316000E+01 +1148 1 1.355000E+01 1.968000E+01 5.330000E+00 +1149 1 1.637000E+01 2.384000E+01 9.270000E+00 +1150 1 3.193000E+01 4.010000E+01 3.606000E+01 +1151 1 3.170000E+01 3.120000E+01 5.860000E+00 +1152 1 2.779000E+01 1.944000E+01 6.280000E+00 +1153 1 2.472000E+01 3.992000E+01 2.727000E+01 +1154 1 2.030000E+01 2.963000E+01 2.512000E+01 +1155 1 3.187000E+01 3.400000E+00 3.720000E+01 +1156 1 2.517000E+01 8.650000E+00 1.247000E+01 +1157 1 1.124000E+01 1.631000E+01 3.400000E-01 +1158 1 1.664000E+01 1.285000E+01 2.707000E+01 +1159 1 4.510000E+00 2.920000E+01 2.199000E+01 +1160 1 5.080000E+00 3.390000E+00 3.060000E+01 +1161 1 2.670000E+01 2.982000E+01 3.829000E+01 +1162 1 2.712000E+01 2.265000E+01 9.090000E+00 +1163 1 3.638000E+01 3.170000E+01 5.510000E+00 +1164 1 2.496000E+01 1.438000E+01 1.584000E+01 +1165 1 1.659000E+01 3.052000E+01 1.874000E+01 +1166 1 1.083000E+01 2.998000E+01 2.351000E+01 +1167 1 3.754000E+01 3.751000E+01 3.049000E+01 +1168 1 3.229000E+01 2.187000E+01 3.982000E+01 +1169 1 3.652000E+01 2.556000E+01 1.345000E+01 +1170 1 3.551000E+01 4.010000E+01 1.011000E+01 +1171 1 2.740000E+00 1.585000E+01 3.276000E+01 +1172 1 3.376000E+01 2.291000E+01 1.852000E+01 +1173 1 2.598000E+01 3.266000E+01 2.092000E+01 +1174 1 3.882000E+01 1.360000E+00 1.439000E+01 +1175 1 2.282000E+01 1.660000E+01 2.088000E+01 +1176 1 1.938000E+01 7.990000E+00 2.275000E+01 +1177 1 1.095000E+01 1.666000E+01 4.800000E+00 +1178 1 3.468000E+01 1.184000E+01 2.623000E+01 +1179 1 3.108000E+01 2.838000E+01 1.891000E+01 +1180 1 3.415000E+01 7.750000E+00 1.679000E+01 +1181 1 3.713000E+01 1.988000E+01 5.110000E+00 +1182 1 2.110000E+00 3.913000E+01 3.360000E+00 +1183 1 2.311000E+01 3.560000E+01 6.700000E+00 +1184 1 2.552000E+01 3.364000E+01 7.380000E+00 +1185 1 1.535000E+01 1.344000E+01 1.084000E+01 +1186 1 6.340000E+00 1.187000E+01 1.055000E+01 +1187 1 1.725000E+01 1.950000E+01 1.471000E+01 +1188 1 4.015000E+01 1.317000E+01 1.957000E+01 +1189 1 3.513000E+01 3.980000E+00 3.989000E+01 +1190 1 2.488000E+01 2.747000E+01 3.122000E+01 +1191 1 9.150000E+00 2.214000E+01 3.258000E+01 +1192 1 2.424000E+01 1.200000E+01 6.930000E+00 +1193 1 3.965000E+01 1.413000E+01 1.342000E+01 +1194 1 3.927000E+01 1.600000E-01 4.270000E+00 +1195 1 2.271000E+01 3.680000E+00 1.178000E+01 +1196 1 2.294000E+01 7.560000E+00 1.360000E+00 +1197 1 1.907000E+01 1.235000E+01 1.466000E+01 +1198 1 1.544000E+01 5.110000E+00 1.966000E+01 +1199 1 2.580000E+01 2.601000E+01 2.841000E+01 +1200 1 4.280000E+00 3.770000E+01 2.640000E+01 +1201 1 2.765000E+01 2.761000E+01 5.000000E-01 +1202 1 3.100000E+01 2.392000E+01 3.257000E+01 +1203 1 3.931000E+01 2.020000E+01 2.697000E+01 +1204 1 2.428000E+01 2.482000E+01 3.084000E+01 +1205 1 1.408000E+01 1.666000E+01 1.350000E+00 +1206 1 1.547000E+01 3.540000E+01 3.676000E+01 +1207 1 3.507000E+01 2.395000E+01 1.057000E+01 +1208 1 3.648000E+01 8.430000E+00 9.010000E+00 +1209 1 2.923000E+01 1.604000E+01 1.253000E+01 +1210 1 1.365000E+01 9.500000E-01 1.787000E+01 +1211 1 1.272000E+01 2.981000E+01 7.750000E+00 +1212 1 1.840000E+00 2.728000E+01 3.907000E+01 +1213 1 1.120000E+00 1.518000E+01 1.694000E+01 +1214 1 3.563000E+01 9.240000E+00 3.370000E+00 +1215 1 1.424000E+01 2.757000E+01 2.428000E+01 +1216 1 5.890000E+00 1.033000E+01 5.660000E+00 +1217 1 9.570000E+00 3.371000E+01 3.266000E+01 +1218 1 2.773000E+01 1.012000E+01 2.509000E+01 +1219 1 3.792000E+01 3.945000E+01 2.844000E+01 +1220 1 5.150000E+00 1.463000E+01 2.636000E+01 +1221 1 3.328000E+01 3.381000E+01 2.108000E+01 +1222 1 8.140000E+00 2.831000E+01 2.295000E+01 +1223 1 1.308000E+01 3.189000E+01 3.179000E+01 +1224 1 4.870000E+00 3.625000E+01 1.928000E+01 +1225 1 1.535000E+01 3.519000E+01 1.842000E+01 +1226 1 1.529000E+01 1.635000E+01 2.662000E+01 +1227 1 1.112000E+01 2.849000E+01 1.917000E+01 +1228 1 1.693000E+01 8.820000E+00 3.693000E+01 +1229 1 3.550000E+00 8.000000E-02 4.940000E+00 +1230 1 1.206000E+01 3.431000E+01 3.570000E+01 +1231 1 5.870000E+00 5.960000E+00 4.430000E+00 +1232 1 3.294000E+01 1.180000E+00 3.710000E+00 +1233 1 2.256000E+01 7.940000E+00 1.246000E+01 +1234 1 1.547000E+01 2.903000E+01 3.290000E+01 +1235 1 7.720000E+00 1.020000E+00 2.322000E+01 +1236 1 2.902000E+01 2.914000E+01 8.300000E+00 +1237 1 1.436000E+01 3.453000E+01 3.256000E+01 +1238 1 2.781000E+01 3.972000E+01 3.000000E+00 +1239 1 2.858000E+01 2.193000E+01 3.591000E+01 +1240 1 2.391000E+01 2.270000E+01 1.922000E+01 +1241 1 1.600000E-01 2.370000E+00 3.034000E+01 +1242 1 2.127000E+01 3.586000E+01 3.348000E+01 +1243 1 2.298000E+01 1.863000E+01 2.466000E+01 +1244 1 2.380000E+00 1.022000E+01 2.573000E+01 +1245 1 2.251000E+01 1.543000E+01 1.045000E+01 +1246 1 1.938000E+01 3.690000E+00 7.760000E+00 +1247 1 1.976000E+01 6.120000E+00 3.336000E+01 +1248 1 2.334000E+01 3.926000E+01 2.133000E+01 +1249 1 3.026000E+01 2.779000E+01 5.850000E+00 +1250 1 2.347000E+01 8.300000E-01 3.432000E+01 +1251 1 3.707000E+01 4.440000E+00 2.697000E+01 +1252 1 1.840000E+01 2.950000E+00 2.370000E+01 +1253 1 2.758000E+01 3.078000E+01 1.500000E+01 +1254 1 3.211000E+01 1.728000E+01 2.356000E+01 +1255 1 1.314000E+01 1.152000E+01 2.412000E+01 +1256 1 5.890000E+00 2.665000E+01 3.327000E+01 +1257 1 1.501000E+01 2.282000E+01 2.825000E+01 +1258 1 1.249000E+01 3.631000E+01 7.180000E+00 +1259 1 5.500000E+00 2.406000E+01 9.120000E+00 +1260 1 1.059000E+01 4.300000E-01 3.199000E+01 +1261 1 3.132000E+01 3.683000E+01 2.740000E+00 +1262 1 1.165000E+01 2.439000E+01 1.650000E+00 +1263 1 1.434000E+01 6.550000E+00 6.850000E+00 +1264 1 7.480000E+00 2.303000E+01 7.160000E+00 +1265 1 3.002000E+01 2.488000E+01 2.780000E+00 +1266 1 4.010000E+01 2.802000E+01 3.485000E+01 +1267 1 1.400000E+00 2.684000E+01 1.046000E+01 +1268 1 2.590000E+01 2.991000E+01 3.237000E+01 +1269 1 2.170000E+01 3.797000E+01 2.319000E+01 +1270 1 3.904000E+01 1.949000E+01 2.990000E+00 +1271 1 2.555000E+01 4.360000E+00 1.111000E+01 +1272 1 2.977000E+01 2.702000E+01 1.584000E+01 +1273 1 1.501000E+01 3.299000E+01 2.369000E+01 +1274 1 1.219000E+01 2.916000E+01 3.926000E+01 +1275 1 2.820000E+01 3.847000E+01 2.768000E+01 +1276 1 2.101000E+01 1.450000E+01 2.000000E+01 +1277 1 5.330000E+00 1.646000E+01 2.920000E+01 +1278 1 3.312000E+01 3.543000E+01 2.790000E+01 +1279 1 1.800000E+01 1.098000E+01 1.700000E+01 +1280 1 7.030000E+00 3.831000E+01 1.719000E+01 +1281 1 1.319000E+01 9.240000E+00 1.075000E+01 +1282 1 3.920000E+00 7.200000E+00 1.115000E+01 +1283 1 3.650000E+00 2.979000E+01 1.546000E+01 +1284 1 3.500000E+00 3.072000E+01 3.912000E+01 +1285 1 3.430000E+00 1.000000E+00 2.804000E+01 +1286 1 3.679000E+01 8.930000E+00 1.675000E+01 +1287 1 3.414000E+01 7.190000E+00 2.456000E+01 +1288 1 6.710000E+00 1.730000E+01 1.122000E+01 +1289 1 1.709000E+01 2.770000E+01 1.262000E+01 +1290 1 3.694000E+01 1.546000E+01 1.331000E+01 +1291 1 2.718000E+01 2.792000E+01 1.645000E+01 +1292 1 2.908000E+01 3.329000E+01 3.528000E+01 +1293 1 3.268000E+01 2.537000E+01 3.058000E+01 +1294 1 1.485000E+01 1.259000E+01 1.325000E+01 +1295 1 8.820000E+00 3.261000E+01 4.007000E+01 +1296 1 3.998000E+01 1.613000E+01 2.972000E+01 +1297 1 3.139000E+01 2.758000E+01 3.560000E+00 +1298 1 3.836000E+01 3.975000E+01 3.901000E+01 +1299 1 1.090000E+00 4.980000E+00 1.548000E+01 +1300 1 1.421000E+01 3.173000E+01 5.250000E+00 +1301 1 3.944000E+01 1.907000E+01 6.630000E+00 +1302 1 1.319000E+01 2.388000E+01 3.310000E+01 +1303 1 1.448000E+01 2.150000E+01 1.276000E+01 +1304 1 2.870000E+01 1.075000E+01 3.650000E+00 +1305 1 6.410000E+00 1.970000E+01 9.590000E+00 +1306 1 1.254000E+01 3.653000E+01 3.732000E+01 +1307 1 3.622000E+01 3.267000E+01 3.146000E+01 +1308 1 3.814000E+01 3.510000E+00 2.927000E+01 +1309 1 3.172000E+01 1.006000E+01 3.114000E+01 +1310 1 4.270000E+00 3.802000E+01 1.210000E+01 +1311 1 2.905000E+01 3.354000E+01 4.750000E+00 +1312 1 2.541000E+01 1.406000E+01 2.628000E+01 +1313 1 1.076000E+01 4.920000E+00 3.349000E+01 +1314 1 2.420000E+01 1.290000E+00 3.290000E+00 +1315 1 2.271000E+01 3.960000E+01 2.526000E+01 +1316 1 2.240000E+00 3.942000E+01 8.460000E+00 +1317 1 2.018000E+01 1.189000E+01 2.936000E+01 +1318 1 6.670000E+00 3.647000E+01 3.150000E+00 +1319 1 1.217000E+01 3.813000E+01 1.310000E+00 +1320 1 2.958000E+01 8.560000E+00 2.654000E+01 +1321 1 6.460000E+00 1.124000E+01 3.265000E+01 +1322 1 3.173000E+01 4.810000E+00 3.261000E+01 +1323 1 1.022000E+01 7.550000E+00 2.677000E+01 +1324 1 1.739000E+01 1.514000E+01 4.980000E+00 +1325 1 1.226000E+01 2.119000E+01 2.735000E+01 +1326 1 3.404000E+01 6.900000E+00 3.635000E+01 +1327 1 2.650000E+01 3.732000E+01 5.370000E+00 +1328 1 3.277000E+01 4.990000E+00 1.680000E+01 +1329 1 1.502000E+01 1.545000E+01 7.820000E+00 +1330 1 7.740000E+00 2.527000E+01 3.585000E+01 +1331 1 1.992000E+01 3.187000E+01 1.825000E+01 +1332 1 3.401000E+01 6.910000E+00 2.720000E+01 +1333 1 2.875000E+01 2.100000E+00 2.223000E+01 +1334 1 2.556000E+01 2.718000E+01 2.141000E+01 +1335 1 4.860000E+00 3.796000E+01 4.027000E+01 +1336 1 4.010000E+00 2.570000E+01 1.649000E+01 +1337 1 2.580000E+00 2.737000E+01 1.471000E+01 +1338 1 2.040000E+01 4.770000E+00 2.774000E+01 +1339 1 2.217000E+01 2.430000E+01 8.960000E+00 +1340 1 2.120000E+01 1.712000E+01 1.479000E+01 +1341 1 2.385000E+01 1.226000E+01 1.738000E+01 +1342 1 2.168000E+01 3.595000E+01 2.633000E+01 +1343 1 3.779000E+01 2.744000E+01 2.254000E+01 +1344 1 3.197000E+01 8.010000E+00 1.350000E+00 +1345 1 1.345000E+01 1.666000E+01 2.972000E+01 +1346 1 2.106000E+01 1.860000E+01 5.840000E+00 +1347 1 2.651000E+01 1.600000E-01 3.379000E+01 +1348 1 1.457000E+01 4.990000E+00 3.677000E+01 +1349 1 2.559000E+01 1.070000E+01 3.575000E+01 +1350 1 3.456000E+01 3.082000E+01 1.151000E+01 +1351 1 2.127000E+01 6.240000E+00 6.000000E+00 +1352 1 6.170000E+00 3.078000E+01 3.640000E+00 +1353 1 1.606000E+01 2.608000E+01 3.980000E+01 +1354 1 2.043000E+01 3.960000E+00 2.226000E+01 +1355 1 3.570000E+00 1.118000E+01 1.740000E+01 +1356 1 2.415000E+01 3.418000E+01 1.358000E+01 +1357 1 2.250000E+01 1.542000E+01 7.510000E+00 +1358 1 2.400000E-01 2.390000E+00 1.615000E+01 +1359 1 1.864000E+01 3.642000E+01 2.140000E+01 +1360 1 3.561000E+01 2.350000E+00 1.924000E+01 +1361 1 1.393000E+01 2.400000E+01 4.011000E+01 +1362 1 2.980000E+01 5.650000E+00 3.999000E+01 +1363 1 6.930000E+00 2.818000E+01 2.740000E+00 +1364 1 2.728000E+01 8.100000E-01 3.012000E+01 +1365 1 2.297000E+01 3.893000E+01 3.844000E+01 +1366 1 1.987000E+01 3.658000E+01 5.510000E+00 +1367 1 1.177000E+01 2.127000E+01 3.189000E+01 +1368 1 3.160000E+01 1.245000E+01 3.217000E+01 +1369 1 3.270000E+01 1.684000E+01 1.796000E+01 +1370 1 2.535000E+01 2.905000E+01 1.800000E+01 +1371 1 2.630000E+00 4.370000E+00 1.343000E+01 +1372 1 1.124000E+01 1.275000E+01 1.044000E+01 +1373 1 1.947000E+01 1.880000E+01 2.250000E+00 +1374 1 3.409000E+01 4.040000E+00 5.220000E+00 +1375 1 1.379000E+01 1.329000E+01 4.620000E+00 +1376 1 1.963000E+01 1.086000E+01 3.570000E+00 +1377 1 1.305000E+01 1.861000E+01 3.700000E+01 +1378 1 5.910000E+00 3.479000E+01 7.090000E+00 +1379 1 2.664000E+01 3.274000E+01 1.313000E+01 +1380 1 3.940000E+00 3.429000E+01 3.908000E+01 +1381 1 4.960000E+00 1.359000E+01 3.255000E+01 +1382 1 2.380000E+01 1.574000E+01 3.517000E+01 +1383 1 9.930000E+00 1.304000E+01 3.540000E+01 +1384 1 8.350000E+00 2.658000E+01 1.746000E+01 +1385 1 2.680000E+01 1.073000E+01 3.069000E+01 +1386 1 2.992000E+01 1.538000E+01 2.555000E+01 +1387 1 2.805000E+01 1.774000E+01 3.190000E+00 +1388 1 3.191000E+01 3.929000E+01 6.120000E+00 +1389 1 3.335000E+01 1.971000E+01 1.050000E+00 +1390 1 2.216000E+01 1.137000E+01 2.750000E+00 +1391 1 2.882000E+01 1.110000E+01 7.400000E-01 +1392 1 7.640000E+00 3.850000E+01 3.779000E+01 +1393 1 3.707000E+01 2.949000E+01 3.358000E+01 +1394 1 2.828000E+01 9.070000E+00 1.356000E+01 +1395 1 1.108000E+01 6.850000E+00 8.000000E+00 +1396 1 1.787000E+01 1.364000E+01 9.840000E+00 +1397 1 2.900000E+01 3.620000E+01 1.090000E+00 +1398 1 9.170000E+00 3.214000E+01 1.168000E+01 +1399 1 1.810000E+01 9.150000E+00 9.360000E+00 +1400 1 2.430000E+00 2.545000E+01 1.760000E+00 +1401 1 2.090000E+00 3.653000E+01 1.733000E+01 +1402 1 9.260000E+00 2.339000E+01 4.100000E-01 +1403 1 3.103000E+01 5.880000E+00 8.890000E+00 +1404 1 3.511000E+01 2.325000E+01 1.322000E+01 +1405 1 1.774000E+01 2.442000E+01 4.870000E+00 +1406 1 3.054000E+01 1.328000E+01 1.581000E+01 +1407 1 3.084000E+01 2.721000E+01 3.022000E+01 +1408 1 3.960000E+00 3.703000E+01 3.776000E+01 +1409 1 2.184000E+01 1.208000E+01 3.655000E+01 +1410 1 2.615000E+01 1.950000E+01 1.868000E+01 +1411 1 3.420000E+00 7.500000E-01 3.176000E+01 +1412 1 3.223000E+01 2.681000E+01 3.401000E+01 +1413 1 2.986000E+01 2.995000E+01 2.098000E+01 +1414 1 2.076000E+01 2.310000E+01 2.351000E+01 +1415 1 2.757000E+01 1.960000E+00 1.832000E+01 +1416 1 2.290000E+01 1.656000E+01 1.825000E+01 +1417 1 3.730000E+00 3.849000E+01 2.385000E+01 +1418 1 2.070000E+00 3.006000E+01 3.690000E+01 +1419 1 2.486000E+01 3.901000E+01 3.640000E+00 +1420 1 6.690000E+00 1.080000E+00 1.762000E+01 +1421 1 2.810000E+01 3.061000E+01 2.849000E+01 +1422 1 1.667000E+01 2.217000E+01 3.643000E+01 +1423 1 1.246000E+01 3.921000E+01 3.348000E+01 +1424 1 1.620000E+00 1.527000E+01 2.182000E+01 +1425 1 8.390000E+00 2.229000E+01 2.910000E+00 +1426 1 4.960000E+00 1.722000E+01 3.227000E+01 +1427 1 1.097000E+01 3.120000E+00 3.136000E+01 +1428 1 1.470000E+00 3.810000E+01 2.636000E+01 +1429 1 9.630000E+00 1.670000E+00 3.791000E+01 +1430 1 1.733000E+01 9.980000E+00 3.389000E+01 +1431 1 1.300000E-01 1.829000E+01 5.300000E-01 +1432 1 1.720000E+01 2.888000E+01 3.760000E+00 +1433 1 3.608000E+01 1.331000E+01 1.390000E+00 +1434 1 3.466000E+01 2.952000E+01 2.841000E+01 +1435 1 2.257000E+01 9.070000E+00 3.054000E+01 +1436 1 8.100000E+00 2.772000E+01 3.451000E+01 +1437 1 1.917000E+01 2.970000E+01 3.244000E+01 +1438 1 2.160000E+00 9.940000E+00 1.380000E+00 +1439 1 1.853000E+01 1.426000E+01 2.321000E+01 +1440 1 2.528000E+01 3.675000E+01 3.157000E+01 +1441 1 2.960000E+00 2.813000E+01 3.537000E+01 +1442 1 5.020000E+00 4.000000E-01 1.215000E+01 +1443 1 1.564000E+01 3.659000E+01 2.433000E+01 +1444 1 3.000000E+00 3.658000E+01 1.670000E+00 +1445 1 3.501000E+01 1.470000E+01 3.992000E+01 +1446 1 2.720000E+01 3.610000E+00 6.250000E+00 +1447 1 3.294000E+01 3.124000E+01 3.537000E+01 +1448 1 5.810000E+00 2.759000E+01 1.464000E+01 +1449 1 3.810000E+01 3.890000E+01 8.600000E+00 +1450 1 4.022000E+01 5.010000E+00 7.200000E+00 +1451 1 2.377000E+01 3.116000E+01 3.824000E+01 +1452 1 3.817000E+01 1.637000E+01 5.570000E+00 +1453 1 3.050000E+00 2.772000E+01 3.266000E+01 +1454 1 3.022000E+01 3.328000E+01 1.495000E+01 +1455 1 6.080000E+00 1.196000E+01 2.602000E+01 +1456 1 2.198000E+01 3.821000E+01 6.410000E+00 +1457 1 3.644000E+01 7.460000E+00 3.733000E+01 +1458 1 1.589000E+01 3.311000E+01 3.883000E+01 +1459 1 3.532000E+01 1.931000E+01 2.946000E+01 +1460 1 2.519000E+01 1.542000E+01 1.105000E+01 +1461 1 7.320000E+00 1.694000E+01 1.880000E+00 +1462 1 1.205000E+01 2.463000E+01 1.075000E+01 +1463 1 1.325000E+01 2.868000E+01 1.600000E+00 +1464 1 2.294000E+01 2.149000E+01 3.254000E+01 +1465 1 1.392000E+01 7.080000E+00 2.761000E+01 +1466 1 3.159000E+01 3.295000E+01 3.362000E+01 +1467 1 1.675000E+01 6.980000E+00 1.550000E+00 +1468 1 4.680000E+00 4.700000E-01 8.310000E+00 +1469 1 2.746000E+01 3.543000E+01 3.680000E+00 +1470 1 2.042000E+01 2.320000E+01 3.005000E+01 +1471 1 3.860000E+01 1.418000E+01 1.530000E+00 +1472 1 2.749000E+01 3.548000E+01 2.641000E+01 +1473 1 1.658000E+01 2.845000E+01 1.001000E+01 +1474 1 2.232000E+01 3.803000E+01 2.870000E+00 +1475 1 2.061000E+01 3.710000E+00 3.526000E+01 +1476 1 9.570000E+00 1.493000E+01 3.136000E+01 +1477 1 4.630000E+00 1.600000E+00 1.140000E+00 +1478 1 3.290000E+00 7.150000E+00 3.688000E+01 +1479 1 5.330000E+00 3.326000E+01 2.706000E+01 +1480 1 1.874000E+01 2.017000E+01 3.637000E+01 +1481 1 1.154000E+01 1.770000E+00 8.630000E+00 +1482 1 2.200000E-01 1.175000E+01 9.020000E+00 +1483 1 1.778000E+01 1.796000E+01 8.780000E+00 +1484 1 8.550000E+00 1.950000E+01 1.572000E+01 +1485 1 1.368000E+01 9.410000E+00 3.781000E+01 +1486 1 5.060000E+00 2.528000E+01 1.760000E+00 +1487 1 1.348000E+01 7.750000E+00 3.034000E+01 +1488 1 1.100000E-01 3.838000E+01 1.051000E+01 +1489 1 7.400000E-01 2.262000E+01 2.198000E+01 +1490 1 1.359000E+01 1.589000E+01 3.418000E+01 +1491 1 2.760000E+01 5.130000E+00 3.155000E+01 +1492 1 8.070000E+00 3.178000E+01 1.642000E+01 +1493 1 3.561000E+01 2.099000E+01 4.011000E+01 +1494 1 1.933000E+01 1.870000E+00 3.318000E+01 +1495 1 3.815000E+01 2.150000E+01 5.100000E-01 +1496 1 1.389000E+01 3.694000E+01 1.196000E+01 +1497 1 9.190000E+00 2.380000E+01 1.214000E+01 +1498 1 1.472000E+01 2.570000E+01 2.248000E+01 +1499 1 9.430000E+00 6.980000E+00 1.543000E+01 +1500 1 3.500000E+01 1.781000E+01 3.705000E+01 +1501 1 3.357000E+01 1.549000E+01 1.559000E+01 +1502 1 1.196000E+01 3.850000E+01 5.740000E+00 +1503 1 9.320000E+00 2.848000E+01 2.568000E+01 +1504 1 1.820000E+00 8.920000E+00 3.910000E+00 +1505 1 6.640000E+00 1.783000E+01 4.430000E+00 +1506 1 1.285000E+01 3.971000E+01 9.180000E+00 +1507 1 8.750000E+00 3.740000E+00 5.670000E+00 +1508 1 1.418000E+01 1.894000E+01 1.328000E+01 +1509 1 3.084000E+01 1.262000E+01 3.479000E+01 +1510 1 3.272000E+01 2.918000E+01 1.780000E+00 +1511 1 2.370000E+00 1.336000E+01 5.600000E+00 +1512 1 2.893000E+01 6.660000E+00 1.092000E+01 +1513 1 4.600000E-01 1.000000E-01 1.299000E+01 +1514 1 1.375000E+01 2.610000E+00 4.080000E+00 +1515 1 2.833000E+01 3.156000E+01 2.518000E+01 +1516 1 1.641000E+01 2.219000E+01 5.640000E+00 +1517 1 3.764000E+01 9.750000E+00 3.632000E+01 +1518 1 1.009000E+01 3.697000E+01 3.843000E+01 +1519 1 1.439000E+01 3.326000E+01 3.508000E+01 +1520 1 4.320000E+00 4.370000E+00 2.500000E+00 +1521 1 9.200000E+00 2.266000E+01 9.410000E+00 +1522 1 8.290000E+00 2.166000E+01 3.791000E+01 +1523 1 2.775000E+01 1.574000E+01 7.580000E+00 +1524 1 3.112000E+01 1.926000E+01 1.035000E+01 +1525 1 2.905000E+01 1.047000E+01 2.138000E+01 +1526 1 2.190000E+01 9.510000E+00 3.525000E+01 +1527 1 3.581000E+01 2.896000E+01 1.660000E+00 +1528 1 9.700000E-01 3.178000E+01 1.872000E+01 +1529 1 7.040000E+00 5.100000E+00 9.470000E+00 +1530 1 3.515000E+01 1.636000E+01 2.275000E+01 +1531 1 1.136000E+01 2.126000E+01 3.580000E+01 +1532 1 2.387000E+01 1.600000E+00 2.197000E+01 +1533 1 1.347000E+01 8.830000E+00 5.600000E-01 +1534 1 3.177000E+01 1.369000E+01 2.890000E+01 +1535 1 1.407000E+01 2.034000E+01 2.640000E+00 +1536 1 3.052000E+01 1.010000E+01 8.730000E+00 +1537 1 3.484000E+01 1.526000E+01 3.368000E+01 +1538 1 2.878000E+01 1.497000E+01 3.620000E+01 +1539 1 1.971000E+01 2.704000E+01 1.131000E+01 +1540 1 6.930000E+00 3.917000E+01 1.046000E+01 +1541 1 2.469000E+01 1.259000E+01 2.390000E+01 +1542 1 1.780000E+00 2.473000E+01 1.754000E+01 +1543 1 3.880000E+01 5.180000E+00 1.822000E+01 +1544 1 1.251000E+01 3.104000E+01 3.040000E+00 +1545 1 2.450000E+01 2.044000E+01 2.614000E+01 +1546 1 1.047000E+01 3.333000E+01 7.610000E+00 +1547 1 7.280000E+00 7.750000E+00 5.920000E+00 +1548 1 2.830000E+00 2.413000E+01 3.270000E+01 +1549 1 1.217000E+01 2.309000E+01 2.254000E+01 +1550 1 2.141000E+01 3.446000E+01 2.861000E+01 +1551 1 3.979000E+01 1.027000E+01 2.290000E+00 +1552 1 7.000000E-01 2.459000E+01 2.969000E+01 +1553 1 1.352000E+01 1.136000E+01 2.727000E+01 +1554 1 3.741000E+01 3.061000E+01 2.193000E+01 +1555 1 2.734000E+01 2.234000E+01 2.685000E+01 +1556 1 2.172000E+01 2.230000E+00 8.240000E+00 +1557 1 3.788000E+01 1.843000E+01 2.492000E+01 +1558 1 6.350000E+00 3.578000E+01 3.374000E+01 +1559 1 2.286000E+01 2.200000E+00 3.186000E+01 +1560 1 3.322000E+01 4.590000E+00 2.710000E+00 +1561 1 1.315000E+01 1.466000E+01 1.008000E+01 +1562 1 2.883000E+01 2.383000E+01 3.093000E+01 +1563 1 1.278000E+01 1.185000E+01 3.666000E+01 +1564 1 4.220000E+00 1.916000E+01 5.310000E+00 +1565 1 2.612000E+01 6.230000E+00 2.050000E+01 +1566 1 1.400000E+00 1.401000E+01 3.426000E+01 +1567 1 5.210000E+00 2.573000E+01 2.616000E+01 +1568 1 1.423000E+01 1.097000E+01 3.458000E+01 +1569 1 1.777000E+01 2.522000E+01 1.154000E+01 +1570 1 3.381000E+01 6.400000E+00 1.077000E+01 +1571 1 1.508000E+01 4.400000E-01 3.908000E+01 +1572 1 6.730000E+00 3.688000E+01 9.070000E+00 +1573 1 2.040000E+01 2.065000E+01 1.584000E+01 +1574 1 1.844000E+01 9.810000E+00 2.893000E+01 +1575 1 1.950000E+00 6.940000E+00 2.815000E+01 +1576 1 9.500000E+00 2.587000E+01 9.680000E+00 +1577 1 3.990000E+00 2.400000E+00 1.982000E+01 +1578 1 2.900000E+01 3.571000E+01 3.371000E+01 +1579 1 3.817000E+01 1.882000E+01 2.905000E+01 +1580 1 1.229000E+01 1.288000E+01 1.493000E+01 +1581 1 2.226000E+01 1.038000E+01 2.000000E-01 +1582 1 8.750000E+00 1.312000E+01 2.703000E+01 +1583 1 9.670000E+00 3.071000E+01 1.930000E+00 +1584 1 1.697000E+01 2.436000E+01 2.133000E+01 +1585 1 3.249000E+01 3.746000E+01 3.428000E+01 +1586 1 2.899000E+01 3.809000E+01 1.194000E+01 +1587 1 3.445000E+01 2.889000E+01 9.390000E+00 +1588 1 1.401000E+01 2.116000E+01 3.661000E+01 +1589 1 8.700000E-01 2.382000E+01 3.668000E+01 +1590 1 3.915000E+01 7.480000E+00 1.593000E+01 +1591 1 1.036000E+01 1.030000E+01 3.190000E+01 +1592 1 4.220000E+00 1.625000E+01 1.119000E+01 +1593 1 3.389000E+01 1.780000E+00 2.755000E+01 +1594 1 1.246000E+01 8.160000E+00 3.565000E+01 +1595 1 3.811000E+01 1.320000E+01 4.170000E+00 +1596 1 2.947000E+01 6.310000E+00 3.321000E+01 +1597 1 1.444000E+01 2.160000E+01 7.480000E+00 +1598 1 3.360000E+01 2.825000E+01 1.814000E+01 +1599 1 6.400000E-01 3.160000E+01 2.619000E+01 +1600 1 2.477000E+01 2.643000E+01 1.880000E+01 +1601 1 1.755000E+01 2.823000E+01 3.460000E+01 +1602 1 3.945000E+01 2.520000E+01 1.824000E+01 +1603 1 3.013000E+01 2.077000E+01 1.514000E+01 +1604 1 2.459000E+01 3.660000E+01 3.478000E+01 +1605 1 2.318000E+01 9.770000E+00 3.799000E+01 +1606 1 3.523000E+01 9.760000E+00 1.120000E+01 +1607 1 3.625000E+01 3.149000E+01 8.750000E+00 +1608 1 3.202000E+01 7.500000E+00 7.090000E+00 +1609 1 1.357000E+01 3.376000E+01 2.663000E+01 +1610 1 2.101000E+01 1.504000E+01 1.717000E+01 +1611 1 2.895000E+01 4.980000E+00 2.930000E+01 +1612 1 3.817000E+01 2.899000E+01 3.097000E+01 +1613 1 3.765000E+01 3.460000E+00 3.898000E+01 +1614 1 2.575000E+01 4.890000E+00 2.528000E+01 +1615 1 3.599000E+01 1.568000E+01 1.927000E+01 +1616 1 2.431000E+01 5.700000E+00 3.397000E+01 +1617 1 2.130000E+00 2.891000E+01 6.330000E+00 +1618 1 3.190000E+00 5.440000E+00 3.909000E+01 +1619 1 2.340000E+00 3.554000E+01 2.575000E+01 +1620 1 1.124000E+01 7.820000E+00 3.241000E+01 +1621 1 5.200000E-01 5.850000E+00 3.887000E+01 +1622 1 8.370000E+00 6.440000E+00 3.862000E+01 +1623 1 1.790000E+00 3.708000E+01 2.244000E+01 +1624 1 1.278000E+01 2.651000E+01 1.812000E+01 +1625 1 2.391000E+01 2.164000E+01 1.222000E+01 +1626 1 2.356000E+01 1.921000E+01 7.060000E+00 +1627 1 3.853000E+01 3.246000E+01 3.819000E+01 +1628 1 6.430000E+00 2.372000E+01 3.407000E+01 +1629 1 1.055000E+01 2.012000E+01 5.500000E+00 +1630 1 2.635000E+01 1.908000E+01 3.655000E+01 +1631 1 1.615000E+01 5.330000E+00 1.680000E+01 +1632 1 2.050000E+01 2.713000E+01 2.675000E+01 +1633 1 2.450000E+00 1.850000E+00 1.185000E+01 +1634 1 3.842000E+01 1.927000E+01 1.340000E+01 +1635 1 3.560000E+01 2.991000E+01 3.746000E+01 +1636 1 1.205000E+01 1.955000E+01 3.382000E+01 +1637 1 3.346000E+01 1.793000E+01 3.918000E+01 +1638 1 1.804000E+01 1.845000E+01 2.919000E+01 +1639 1 2.013000E+01 3.484000E+01 1.485000E+01 +1640 1 1.857000E+01 2.674000E+01 2.141000E+01 +1641 1 1.780000E+00 3.457000E+01 3.455000E+01 +1642 1 1.133000E+01 5.160000E+00 2.104000E+01 +1643 1 8.710000E+00 2.148000E+01 2.817000E+01 +1644 1 2.564000E+01 2.289000E+01 3.583000E+01 +1645 1 1.795000E+01 2.480000E+01 3.808000E+01 +1646 1 2.110000E+00 2.141000E+01 3.274000E+01 +1647 1 3.600000E+01 1.830000E+01 2.078000E+01 +1648 1 1.551000E+01 4.011000E+01 5.650000E+00 +1649 1 3.445000E+01 3.825000E+01 6.640000E+00 +1650 1 2.430000E+00 3.178000E+01 2.884000E+01 +1651 1 3.040000E+01 1.860000E+00 3.503000E+01 +1652 1 2.811000E+01 8.440000E+00 2.985000E+01 +1653 1 1.467000E+01 1.845000E+01 3.386000E+01 +1654 1 3.925000E+01 6.950000E+00 3.398000E+01 +1655 1 3.377000E+01 2.648000E+01 6.800000E+00 +1656 1 4.520000E+00 2.755000E+01 3.924000E+01 +1657 1 2.454000E+01 3.519000E+01 2.140000E+00 +1658 1 3.307000E+01 3.625000E+01 4.980000E+00 +1659 1 3.070000E+00 3.100000E+00 1.713000E+01 +1660 1 3.759000E+01 1.688000E+01 3.333000E+01 +1661 1 9.100000E+00 3.988000E+01 4.560000E+00 +1662 1 2.423000E+01 8.630000E+00 3.409000E+01 +1663 1 3.720000E+01 2.865000E+01 2.818000E+01 +1664 1 9.920000E+00 1.170000E+00 2.153000E+01 +1665 1 5.900000E+00 1.950000E+00 2.841000E+01 +1666 1 3.709000E+01 1.570000E+01 2.824000E+01 +1667 1 3.722000E+01 7.380000E+00 2.617000E+01 +1668 1 3.050000E+00 2.716000E+01 8.050000E+00 +1669 1 1.669000E+01 3.698000E+01 1.056000E+01 +1670 1 3.190000E+00 9.160000E+00 7.780000E+00 +1671 1 2.651000E+01 2.454000E+01 1.986000E+01 +1672 1 2.637000E+01 1.740000E+00 2.675000E+01 +1673 1 2.998000E+01 3.964000E+01 1.620000E+01 +1674 1 1.909000E+01 1.974000E+01 2.647000E+01 +1675 1 1.444000E+01 2.134000E+01 3.925000E+01 +1676 1 6.450000E+00 3.316000E+01 3.692000E+01 +1677 1 1.319000E+01 2.623000E+01 3.686000E+01 +1678 1 2.803000E+01 2.920000E+01 3.413000E+01 +1679 1 2.336000E+01 1.011000E+01 1.954000E+01 +1680 1 2.556000E+01 1.220000E+01 3.832000E+01 +1681 1 2.229000E+01 2.916000E+01 2.311000E+01 +1682 1 3.942000E+01 3.332000E+01 1.121000E+01 +1683 1 2.733000E+01 1.537000E+01 2.445000E+01 +1684 1 1.812000E+01 3.589000E+01 3.707000E+01 +1685 1 1.044000E+01 2.163000E+01 1.333000E+01 +1686 1 2.497000E+01 1.248000E+01 2.150000E+00 +1687 1 2.822000E+01 2.474000E+01 8.800000E-01 +1688 1 2.875000E+01 1.143000E+01 3.599000E+01 +1689 1 1.142000E+01 2.230000E+00 2.508000E+01 +1690 1 2.919000E+01 1.269000E+01 5.180000E+00 +1691 1 3.500000E+00 2.240000E+00 3.905000E+01 +1692 1 2.187000E+01 1.219000E+01 2.446000E+01 +1693 1 1.705000E+01 5.650000E+00 1.264000E+01 +1694 1 1.888000E+01 3.955000E+01 2.936000E+01 +1695 1 1.288000E+01 8.860000E+00 1.602000E+01 +1696 1 1.724000E+01 1.053000E+01 1.660000E+00 +1697 1 2.829000E+01 6.300000E-01 1.257000E+01 +1698 1 2.346000E+01 1.376000E+01 3.924000E+01 +1699 1 2.246000E+01 3.885000E+01 3.055000E+01 +1700 1 9.180000E+00 2.009000E+01 9.260000E+00 +1701 1 3.654000E+01 2.511000E+01 1.799000E+01 +1702 1 1.297000E+01 2.850000E+01 2.644000E+01 +1703 1 2.678000E+01 8.660000E+00 2.131000E+01 +1704 1 1.525000E+01 1.230000E+01 6.700000E-01 +1705 1 4.003000E+01 6.860000E+00 2.565000E+01 +1706 1 2.540000E+00 2.277000E+01 3.831000E+01 +1707 1 3.055000E+01 4.690000E+00 1.134000E+01 +1708 1 9.390000E+00 8.790000E+00 1.818000E+01 +1709 1 2.059000E+01 4.900000E-01 1.360000E+00 +1710 1 2.695000E+01 3.643000E+01 1.245000E+01 +1711 1 2.780000E+00 2.471000E+01 6.670000E+00 +1712 1 3.233000E+01 4.870000E+00 3.930000E+01 +1713 1 3.906000E+01 1.200000E+00 2.692000E+01 +1714 1 2.170000E+01 1.590000E+00 2.602000E+01 +1715 1 1.250000E+01 6.840000E+00 2.030000E+00 +1716 1 2.013000E+01 2.539000E+01 3.270000E+00 +1717 1 2.575000E+01 2.447000E+01 3.931000E+01 +1718 1 2.806000E+01 3.913000E+01 6.600000E+00 +1719 1 3.321000E+01 1.275000E+01 6.310000E+00 +1720 1 1.335000E+01 1.245000E+01 1.926000E+01 +1721 1 2.568000E+01 3.640000E+01 7.660000E+00 +1722 1 9.700000E-01 1.674000E+01 2.402000E+01 +1723 1 3.637000E+01 1.364000E+01 3.056000E+01 +1724 1 1.406000E+01 3.772000E+01 3.148000E+01 +1725 1 3.019000E+01 2.769000E+01 3.261000E+01 +1726 1 3.516000E+01 3.715000E+01 3.827000E+01 +1727 1 1.748000E+01 1.960000E+01 1.160000E+01 +1728 1 1.846000E+01 2.165000E+01 9.830000E+00 +1729 1 2.400000E+01 1.108000E+01 9.510000E+00 +1730 1 2.802000E+01 2.607000E+01 2.209000E+01 +1731 1 1.259000E+01 1.397000E+01 3.003000E+01 +1732 1 2.862000E+01 4.430000E+00 2.085000E+01 +1733 1 4.460000E+00 3.632000E+01 1.409000E+01 +1734 1 3.450000E+01 2.260000E+00 2.344000E+01 +1735 1 1.382000E+01 1.144000E+01 1.661000E+01 +1736 1 5.300000E-01 2.182000E+01 3.018000E+01 +1737 1 4.340000E+00 3.899000E+01 1.785000E+01 +1738 1 1.810000E+00 3.137000E+01 1.155000E+01 +1739 1 1.918000E+01 1.017000E+01 3.683000E+01 +1740 1 9.850000E+00 1.740000E+01 2.490000E+00 +1741 1 1.590000E+01 2.014000E+01 2.892000E+01 +1742 1 3.247000E+01 3.502000E+01 1.348000E+01 +1743 1 4.860000E+00 2.190000E+00 2.418000E+01 +1744 1 3.659000E+01 7.050000E+00 5.770000E+00 +1745 1 2.973000E+01 3.784000E+01 2.522000E+01 +1746 1 2.486000E+01 1.655000E+01 6.790000E+00 +1747 1 6.670000E+00 4.340000E+00 9.500000E-01 +1748 1 1.712000E+01 1.086000E+01 1.260000E+01 +1749 1 6.540000E+00 3.900000E-01 1.445000E+01 +1750 1 3.619000E+01 1.766000E+01 1.223000E+01 +1751 1 1.913000E+01 1.603000E+01 2.980000E+01 +1752 1 1.849000E+01 3.419000E+01 2.948000E+01 +1753 1 2.348000E+01 3.249000E+01 2.717000E+01 +1754 1 2.548000E+01 5.370000E+00 2.971000E+01 +1755 1 2.172000E+01 3.547000E+01 2.350000E+00 +1756 1 1.574000E+01 8.970000E+00 2.768000E+01 +1757 1 2.262000E+01 1.982000E+01 9.520000E+00 +1758 1 2.746000E+01 1.683000E+01 1.884000E+01 +1759 1 1.144000E+01 3.645000E+01 3.426000E+01 +1760 1 3.298000E+01 2.106000E+01 3.349000E+01 +1761 1 5.250000E+00 1.928000E+01 3.035000E+01 +1762 1 6.300000E-01 1.250000E+01 2.530000E+01 +1763 1 9.400000E-01 1.665000E+01 1.941000E+01 +1764 1 1.082000E+01 2.477000E+01 2.503000E+01 +1765 1 2.280000E+00 2.330000E+00 2.390000E+00 +1766 1 4.002000E+01 4.001000E+01 2.991000E+01 +1767 1 1.660000E+01 3.330000E+00 2.148000E+01 +1768 1 1.935000E+01 6.840000E+00 1.167000E+01 +1769 1 1.072000E+01 1.611000E+01 2.903000E+01 +1770 1 2.711000E+01 3.258000E+01 3.736000E+01 +1771 1 2.850000E+01 7.330000E+00 3.782000E+01 +1772 1 2.094000E+01 3.183000E+01 2.010000E+00 +1773 1 1.675000E+01 1.975000E+01 2.478000E+01 +1774 1 7.740000E+00 1.220000E+00 3.048000E+01 +1775 1 1.595000E+01 4.029000E+01 1.457000E+01 +1776 1 3.644000E+01 1.568000E+01 7.500000E+00 +1777 1 3.895000E+01 2.472000E+01 4.001000E+01 +1778 1 1.380000E+00 1.794000E+01 2.928000E+01 +1779 1 3.220000E+00 3.290000E+01 8.260000E+00 +1780 1 3.617000E+01 3.785000E+01 1.173000E+01 +1781 1 1.069000E+01 1.774000E+01 2.524000E+01 +1782 1 1.614000E+01 1.690000E+00 2.742000E+01 +1783 1 2.514000E+01 1.900000E+01 3.252000E+01 +1784 1 1.745000E+01 2.930000E+01 2.496000E+01 +1785 1 3.321000E+01 4.022000E+01 8.670000E+00 +1786 1 2.966000E+01 3.301000E+01 3.181000E+01 +1787 1 1.331000E+01 1.131000E+01 2.400000E+00 +1788 1 8.890000E+00 1.479000E+01 2.137000E+01 +1789 1 3.566000E+01 3.528000E+01 3.652000E+01 +1790 1 3.735000E+01 1.192000E+01 1.096000E+01 +1791 1 3.360000E+01 2.954000E+01 4.820000E+00 +1792 1 1.115000E+01 2.559000E+01 3.225000E+01 +1793 1 3.132000E+01 2.833000E+01 3.790000E+01 +1794 1 1.190000E+00 1.581000E+01 7.000000E-01 +1795 1 1.856000E+01 2.268000E+01 1.798000E+01 +1796 1 3.294000E+01 4.810000E+00 3.516000E+01 +1797 1 3.802000E+01 1.726000E+01 1.693000E+01 +1798 1 2.040000E+01 3.594000E+01 4.023000E+01 +1799 1 9.300000E+00 2.855000E+01 3.863000E+01 +1800 1 9.360000E+00 1.686000E+01 3.854000E+01 +1801 1 1.280000E+01 6.540000E+00 2.445000E+01 +1802 1 2.370000E+00 4.027000E+01 1.901000E+01 +1803 1 2.906000E+01 1.402000E+01 5.900000E-01 +1804 1 1.776000E+01 1.308000E+01 1.941000E+01 +1805 1 2.507000E+01 2.350000E+00 3.028000E+01 +1806 1 3.982000E+01 2.348000E+01 1.195000E+01 +1807 1 3.519000E+01 2.357000E+01 2.474000E+01 +1808 1 3.429000E+01 8.730000E+00 6.230000E+00 +1809 1 1.530000E+00 2.867000E+01 1.236000E+01 +1810 1 6.780000E+00 3.438000E+01 3.128000E+01 +1811 1 2.726000E+01 1.453000E+01 3.880000E+01 +1812 1 1.550000E+01 1.497000E+01 3.016000E+01 +1813 1 8.100000E+00 1.239000E+01 3.094000E+01 +1814 1 2.568000E+01 3.996000E+01 2.365000E+01 +1815 1 1.689000E+01 3.979000E+01 3.122000E+01 +1816 1 5.090000E+00 1.760000E+01 1.576000E+01 +1817 1 1.208000E+01 7.970000E+00 1.855000E+01 +1818 1 3.058000E+01 1.607000E+01 3.210000E+01 +1819 1 2.125000E+01 1.535000E+01 3.423000E+01 +1820 1 3.765000E+01 2.319000E+01 3.189000E+01 +1821 1 3.334000E+01 8.090000E+00 1.414000E+01 +1822 1 1.188000E+01 2.877000E+01 3.491000E+01 +1823 1 3.550000E+01 3.490000E+01 4.560000E+00 +1824 1 3.913000E+01 3.114000E+01 3.342000E+01 +1825 1 1.413000E+01 6.370000E+00 1.086000E+01 +1826 1 3.283000E+01 3.270000E+01 2.100000E-01 +1827 1 1.939000E+01 3.919000E+01 1.671000E+01 +1828 1 2.796000E+01 7.160000E+00 1.817000E+01 +1829 1 3.993000E+01 7.720000E+00 2.884000E+01 +1830 1 2.421000E+01 1.850000E+01 2.216000E+01 +1831 1 2.020000E+01 2.950000E+01 6.580000E+00 +1832 1 2.442000E+01 1.847000E+01 1.490000E+01 +1833 1 1.147000E+01 3.184000E+01 3.898000E+01 +1834 1 4.028000E+01 8.290000E+00 3.143000E+01 +1835 1 2.108000E+01 2.404000E+01 1.882000E+01 +1836 1 3.810000E+01 1.056000E+01 4.260000E+00 +1837 1 3.573000E+01 1.000000E+00 5.380000E+00 +1838 1 2.222000E+01 2.716000E+01 9.020000E+00 +1839 1 3.159000E+01 3.808000E+01 9.170000E+00 +1840 1 3.800000E-01 3.962000E+01 1.735000E+01 +1841 1 1.787000E+01 3.647000E+01 1.850000E+01 +1842 1 2.036000E+01 3.717000E+01 2.874000E+01 +1843 1 2.341000E+01 8.270000E+00 1.640000E+01 +1844 1 3.000000E-02 3.900000E+00 1.260000E+00 +1845 1 2.710000E+01 8.220000E+00 4.250000E+00 +1846 1 2.366000E+01 1.866000E+01 8.300000E-01 +1847 1 1.576000E+01 8.180000E+00 3.938000E+01 +1848 1 3.188000E+01 3.540000E+00 2.061000E+01 +1849 1 1.290000E+01 1.954000E+01 3.000000E+01 +1850 1 1.485000E+01 1.040000E+00 2.991000E+01 +1851 1 1.851000E+01 3.678000E+01 2.594000E+01 +1852 1 2.624000E+01 3.060000E+00 1.558000E+01 +1853 1 3.924000E+01 3.449000E+01 1.527000E+01 +1854 1 3.210000E+00 6.620000E+00 6.430000E+00 +1855 1 5.410000E+00 1.136000E+01 3.553000E+01 +1856 1 3.661000E+01 3.311000E+01 2.536000E+01 +1857 1 5.570000E+00 8.200000E-01 3.565000E+01 +1858 1 1.049000E+01 3.328000E+01 3.019000E+01 +1859 1 7.730000E+00 1.702000E+01 2.246000E+01 +1860 1 3.585000E+01 1.798000E+01 6.350000E+00 +1861 1 2.886000E+01 3.490000E+00 4.270000E+00 +1862 1 2.747000E+01 3.870000E+01 3.198000E+01 +1863 1 1.700000E+00 3.540000E+01 4.007000E+01 +1864 1 5.500000E-01 1.921000E+01 1.775000E+01 +1865 1 2.096000E+01 3.016000E+01 1.527000E+01 +1866 1 1.844000E+01 1.621000E+01 3.494000E+01 +1867 1 3.465000E+01 3.493000E+01 2.428000E+01 +1868 1 1.211000E+01 2.377000E+01 1.886000E+01 +1869 1 3.870000E+01 3.101000E+01 2.706000E+01 +1870 1 3.814000E+01 1.502000E+01 2.090000E+01 +1871 1 2.744000E+01 6.160000E+00 1.375000E+01 +1872 1 3.002000E+01 3.709000E+01 3.162000E+01 +1873 1 1.150000E+00 2.778000E+01 2.136000E+01 +1874 1 3.644000E+01 1.673000E+01 3.066000E+01 +1875 1 1.287000E+01 2.362000E+01 3.770000E+01 +1876 1 1.185000E+01 3.817000E+01 1.808000E+01 +1877 1 2.347000E+01 3.306000E+01 9.350000E+00 +1878 1 1.964000E+01 9.700000E-01 4.610000E+00 +1879 1 7.420000E+00 3.815000E+01 3.236000E+01 +1880 1 2.014000E+01 3.887000E+01 1.179000E+01 +1881 1 3.820000E+00 5.500000E+00 2.936000E+01 +1882 1 9.780000E+00 1.925000E+01 3.726000E+01 +1883 1 3.490000E+00 2.258000E+01 1.048000E+01 +1884 1 2.490000E+00 4.002000E+01 3.716000E+01 +1885 1 2.331000E+01 3.465000E+01 3.216000E+01 +1886 1 3.424000E+01 3.044000E+01 7.240000E+00 +1887 1 3.263000E+01 2.463000E+01 9.450000E+00 +1888 1 1.900000E+01 3.387000E+01 3.913000E+01 +1889 1 1.298000E+01 2.100000E+01 2.478000E+01 +1890 1 4.660000E+00 1.164000E+01 2.001000E+01 +1891 1 8.660000E+00 1.968000E+01 3.490000E+00 +1892 1 3.391000E+01 3.492000E+01 8.690000E+00 +1893 1 1.517000E+01 3.302000E+01 1.216000E+01 +1894 1 6.180000E+00 3.916000E+01 2.259000E+01 +1895 1 1.852000E+01 2.288000E+01 3.203000E+01 +1896 1 1.905000E+01 3.223000E+01 6.490000E+00 +1897 1 9.770000E+00 1.761000E+01 1.277000E+01 +1898 1 2.610000E+01 3.758000E+01 2.540000E+01 +1899 1 2.390000E+00 3.675000E+01 1.053000E+01 +1900 1 8.360000E+00 1.743000E+01 6.530000E+00 +1901 1 2.823000E+01 1.711000E+01 2.806000E+01 +1902 1 5.350000E+00 6.730000E+00 2.541000E+01 +1903 1 3.550000E+01 1.965000E+01 2.970000E+00 +1904 1 3.121000E+01 2.204000E+01 1.890000E+00 +1905 1 1.863000E+01 9.320000E+00 1.485000E+01 +1906 1 2.233000E+01 3.000000E-02 4.780000E+00 +1907 1 2.608000E+01 3.149000E+01 5.060000E+00 +1908 1 3.112000E+01 1.725000E+01 2.705000E+01 +1909 1 1.776000E+01 3.282000E+01 3.413000E+01 +1910 1 2.572000E+01 7.650000E+00 2.505000E+01 +1911 1 6.210000E+00 6.950000E+00 2.819000E+01 +1912 1 4.017000E+01 1.496000E+01 1.018000E+01 +1913 1 1.221000E+01 1.925000E+01 1.672000E+01 +1914 1 2.248000E+01 3.717000E+01 1.079000E+01 +1915 1 1.144000E+01 3.481000E+01 1.522000E+01 +1916 1 1.109000E+01 3.150000E+01 9.400000E+00 +1917 1 7.050000E+00 1.754000E+01 1.385000E+01 +1918 1 1.539000E+01 3.066000E+01 3.746000E+01 +1919 1 9.780000E+00 2.493000E+01 1.945000E+01 +1920 1 2.155000E+01 2.014000E+01 3.036000E+01 +1921 1 2.627000E+01 1.994000E+01 1.207000E+01 +1922 1 1.927000E+01 7.270000E+00 1.826000E+01 +1923 1 1.879000E+01 3.570000E+01 3.430000E+01 +1924 1 2.097000E+01 1.404000E+01 2.410000E+00 +1925 1 7.430000E+00 3.211000E+01 2.874000E+01 +1926 1 3.223000E+01 2.498000E+01 1.243000E+01 +1927 1 3.034000E+01 2.710000E+01 2.332000E+01 +1928 1 2.535000E+01 2.886000E+01 1.108000E+01 +1929 1 2.469000E+01 1.790000E+01 9.410000E+00 +1930 1 2.729000E+01 1.739000E+01 3.872000E+01 +1931 1 1.462000E+01 1.766000E+01 1.618000E+01 +1932 1 2.636000E+01 2.520000E+00 3.791000E+01 +1933 1 3.723000E+01 1.258000E+01 3.390000E+01 +1934 1 2.390000E+00 3.449000E+01 6.190000E+00 +1935 1 3.512000E+01 2.505000E+01 3.450000E+00 +1936 1 1.540000E+01 1.715000E+01 3.580000E+00 +1937 1 2.794000E+01 4.620000E+00 1.701000E+01 +1938 1 3.736000E+01 2.940000E+01 4.100000E+00 +1939 1 8.540000E+00 3.099000E+01 3.167000E+01 +1940 1 3.295000E+01 9.760000E+00 3.737000E+01 +1941 1 3.131000E+01 1.453000E+01 2.660000E+00 +1942 1 3.097000E+01 2.230000E+00 4.007000E+01 +1943 1 2.284000E+01 1.487000E+01 1.404000E+01 +1944 1 1.652000E+01 7.380000E+00 3.470000E+01 +1945 1 3.885000E+01 1.276000E+01 3.047000E+01 +1946 1 2.190000E+01 3.253000E+01 3.989000E+01 +1947 1 9.730000E+00 2.930000E+01 2.916000E+01 +1948 1 9.940000E+00 2.907000E+01 4.120000E+00 +1949 1 1.190000E+00 1.979000E+01 2.460000E+01 +1950 1 9.110000E+00 3.736000E+01 2.585000E+01 +1951 1 1.398000E+01 3.498000E+01 1.410000E+01 +1952 1 2.461000E+01 4.540000E+00 3.690000E+01 +1953 1 2.442000E+01 1.181000E+01 3.066000E+01 +1954 1 1.450000E+01 3.678000E+01 1.617000E+01 +1955 1 4.290000E+00 3.034000E+01 1.083000E+01 +1956 1 3.091000E+01 3.558000E+01 1.665000E+01 +1957 1 3.978000E+01 2.183000E+01 5.820000E+00 +1958 1 2.088000E+01 1.798000E+01 6.000000E-02 +1959 1 1.122000E+01 1.952000E+01 1.430000E+00 +1960 1 2.802000E+01 7.800000E-01 3.607000E+01 +1961 1 4.170000E+00 1.698000E+01 5.000000E-02 +1962 1 2.842000E+01 1.480000E+01 3.340000E+00 +1963 1 2.181000E+01 7.510000E+00 3.770000E+00 +1964 1 3.611000E+01 2.040000E+01 1.695000E+01 +1965 1 3.023000E+01 3.286000E+01 1.530000E+00 +1966 1 4.480000E+00 2.643000E+01 2.905000E+01 +1967 1 1.683000E+01 3.526000E+01 3.156000E+01 +1968 1 1.940000E+00 5.440000E+00 2.230000E+01 +1969 1 9.040000E+00 3.510000E+01 1.158000E+01 +1970 1 1.770000E+01 2.642000E+01 2.703000E+01 +1971 1 3.857000E+01 2.051000E+01 3.124000E+01 +1972 1 7.100000E+00 2.992000E+01 1.491000E+01 +1973 1 5.650000E+00 3.046000E+01 2.999000E+01 +1974 1 1.350000E+01 5.300000E-01 3.686000E+01 +1975 1 3.550000E+01 9.410000E+00 2.492000E+01 +1976 1 3.505000E+01 2.131000E+01 2.675000E+01 +1977 1 1.567000E+01 1.046000E+01 3.034000E+01 +1978 1 1.478000E+01 3.745000E+01 2.196000E+01 +1979 1 3.800000E-01 3.909000E+01 2.115000E+01 +1980 1 2.131000E+01 9.730000E+00 2.169000E+01 +1981 1 1.924000E+01 2.112000E+01 1.348000E+01 +1982 1 1.861000E+01 3.049000E+01 1.008000E+01 +1983 1 3.514000E+01 5.950000E+00 1.891000E+01 +1984 1 3.828000E+01 1.015000E+01 3.113000E+01 +1985 1 2.987000E+01 9.100000E+00 3.284000E+01 +1986 1 3.806000E+01 1.669000E+01 9.930000E+00 +1987 1 3.625000E+01 3.150000E+00 3.690000E+00 +1988 1 1.120000E+01 1.831000E+01 1.908000E+01 +1989 1 1.729000E+01 1.204000E+01 3.186000E+01 +1990 1 2.065000E+01 1.251000E+01 2.196000E+01 +1991 1 3.660000E+00 1.325000E+01 3.220000E+00 +1992 1 3.760000E+01 4.830000E+00 8.060000E+00 +1993 1 3.707000E+01 5.360000E+00 3.269000E+01 +1994 1 2.071000E+01 2.979000E+01 2.930000E+01 +1995 1 5.900000E-01 3.394000E+01 1.640000E+00 +1996 1 3.053000E+01 7.920000E+00 1.475000E+01 +1997 1 1.812000E+01 1.180000E+00 1.559000E+01 +1998 1 1.635000E+01 2.170000E+00 3.428000E+01 +1999 1 3.770000E+01 1.321000E+01 1.713000E+01 +2000 1 1.345000E+01 3.422000E+01 4.590000E+00 +2001 1 6.390000E+00 7.100000E+00 1.604000E+01 +2002 1 2.936000E+01 2.284000E+01 3.840000E+01 +2003 1 2.132000E+01 1.267000E+01 1.311000E+01 +2004 1 3.830000E+00 1.482000E+01 3.601000E+01 +2005 1 3.017000E+01 3.080000E+00 3.063000E+01 +2006 1 5.670000E+00 2.356000E+01 1.549000E+01 +2007 1 2.568000E+01 1.509000E+01 2.150000E+00 +2008 1 3.750000E+01 5.240000E+00 3.576000E+01 +2009 1 4.020000E+01 6.800000E+00 3.420000E+00 +2010 1 7.520000E+00 4.850000E+00 2.242000E+01 +2011 1 9.120000E+00 1.100000E+00 1.607000E+01 +2012 1 3.420000E+01 3.660000E+00 9.460000E+00 +2013 1 1.500000E+00 4.630000E+00 1.097000E+01 +2014 1 8.710000E+00 3.340000E+00 1.196000E+01 +2015 1 1.524000E+01 4.090000E+00 3.273000E+01 +2016 1 3.619000E+01 2.718000E+01 5.430000E+00 +2017 1 3.464000E+01 3.084000E+01 1.802000E+01 +2018 1 3.812000E+01 2.797000E+01 1.283000E+01 +2019 1 1.100000E+01 3.628000E+01 3.115000E+01 +2020 1 1.196000E+01 4.770000E+00 3.605000E+01 +2021 1 2.456000E+01 1.463000E+01 2.922000E+01 +2022 1 3.370000E+00 1.203000E+01 3.398000E+01 +2023 1 2.095000E+01 1.951000E+01 1.167000E+01 +2024 1 7.290000E+00 3.550000E+00 3.223000E+01 +2025 1 1.255000E+01 2.448000E+01 7.530000E+00 +2026 1 8.020000E+00 3.410000E+00 1.872000E+01 +2027 1 1.272000E+01 2.208000E+01 1.634000E+01 +2028 1 2.495000E+01 7.100000E-01 1.731000E+01 +2029 1 1.877000E+01 6.440000E+00 3.718000E+01 +2030 1 1.307000E+01 3.171000E+01 2.130000E+01 +2031 1 7.780000E+00 2.693000E+01 4.990000E+00 +2032 1 2.468000E+01 1.657000E+01 4.060000E+00 +2033 1 1.011000E+01 2.092000E+01 2.196000E+01 +2034 1 1.853000E+01 2.212000E+01 7.060000E+00 +2035 1 1.012000E+01 5.650000E+00 4.570000E+00 +2036 1 3.418000E+01 1.482000E+01 2.907000E+01 +2037 1 3.052000E+01 1.917000E+01 2.514000E+01 +2038 1 3.050000E+01 8.230000E+00 1.743000E+01 +2039 1 3.790000E+00 1.501000E+01 1.572000E+01 +2040 1 6.640000E+00 4.770000E+00 3.640000E+01 +2041 1 7.250000E+00 1.136000E+01 3.650000E+00 +2042 1 3.843000E+01 1.134000E+01 2.400000E-01 +2043 1 1.824000E+01 2.348000E+01 2.447000E+01 +2044 1 3.782000E+01 4.890000E+00 2.427000E+01 +2045 1 1.455000E+01 3.351000E+01 8.510000E+00 +2046 1 1.213000E+01 1.013000E+01 5.290000E+00 +2047 1 1.491000E+01 3.854000E+01 7.660000E+00 +2048 1 3.424000E+01 1.661000E+01 2.545000E+01 +2049 1 6.710000E+00 3.793000E+01 1.432000E+01 +2050 1 3.840000E+00 1.933000E+01 2.429000E+01 +2051 1 5.700000E-01 3.471000E+01 2.379000E+01 +2052 1 3.556000E+01 3.795000E+01 2.740000E+01 +2053 1 6.480000E+00 1.991000E+01 2.495000E+01 +2054 1 3.000000E+01 2.298000E+01 2.647000E+01 +2055 1 1.057000E+01 1.534000E+01 1.510000E+01 +2056 1 6.830000E+00 1.818000E+01 3.757000E+01 +2057 1 1.961000E+01 2.792000E+01 4.360000E+00 +2058 1 1.999000E+01 1.749000E+01 3.711000E+01 +2059 1 6.520000E+00 3.406000E+01 1.856000E+01 +2060 1 2.003000E+01 4.008000E+01 7.370000E+00 +2061 1 1.647000E+01 1.287000E+01 3.846000E+01 +2062 1 1.188000E+01 2.675000E+01 3.140000E+00 +2063 1 3.070000E+01 8.620000E+00 1.174000E+01 +2064 1 7.650000E+00 2.423000E+01 2.152000E+01 +2065 1 3.066000E+01 1.515000E+01 1.777000E+01 +2066 1 9.030000E+00 2.920000E+01 1.074000E+01 +2067 1 2.170000E+01 5.990000E+00 1.078000E+01 +2068 1 2.112000E+01 6.610000E+00 2.084000E+01 +2069 1 1.844000E+01 1.560000E+01 3.228000E+01 +2070 1 8.050000E+00 2.401000E+01 2.487000E+01 +2071 1 1.931000E+01 1.304000E+01 3.612000E+01 +2072 1 3.055000E+01 3.181000E+01 1.144000E+01 +2073 1 2.670000E+01 3.999000E+01 1.013000E+01 +2074 1 3.010000E+00 3.455000E+01 1.576000E+01 +2075 1 1.197000E+01 3.352000E+01 1.999000E+01 +2076 1 7.530000E+00 3.550000E+01 2.745000E+01 +2077 1 6.260000E+00 2.133000E+01 3.595000E+01 +2078 1 3.640000E+00 1.123000E+01 1.010000E+01 +2079 1 3.208000E+01 3.646000E+01 2.263000E+01 +2080 1 2.974000E+01 3.693000E+01 2.101000E+01 +2081 1 3.843000E+01 1.063000E+01 1.834000E+01 +2082 1 1.259000E+01 1.919000E+01 2.240000E+01 +2083 1 1.861000E+01 3.866000E+01 3.746000E+01 +2084 1 3.072000E+01 2.510000E+00 2.531000E+01 +2085 1 1.811000E+01 3.599000E+01 7.630000E+00 +2086 1 1.513000E+01 4.009000E+01 3.336000E+01 +2087 1 1.111000E+01 1.203000E+01 7.930000E+00 +2088 1 1.400000E+01 2.710000E+00 4.600000E-01 +2089 1 8.820000E+00 7.960000E+00 3.614000E+01 +2090 1 2.054000E+01 3.935000E+01 3.947000E+01 +2091 1 4.016000E+01 3.491000E+01 4.170000E+00 +2092 1 5.450000E+00 7.670000E+00 1.850000E+01 +2093 1 2.836000E+01 1.260000E+01 2.475000E+01 +2094 1 3.201000E+01 2.872000E+01 2.179000E+01 +2095 1 3.032000E+01 1.611000E+01 2.945000E+01 +2096 1 2.493000E+01 2.700000E+01 2.410000E+01 +2097 1 2.096000E+01 3.122000E+01 2.710000E+01 +2098 1 1.995000E+01 1.826000E+01 3.333000E+01 +2099 1 1.625000E+01 3.130000E+01 8.000000E+00 +2100 1 1.063000E+01 1.206000E+01 1.804000E+01 +2101 1 1.247000E+01 1.196000E+01 3.214000E+01 +2102 1 3.433000E+01 3.517000E+01 1.640000E+01 +2103 1 2.322000E+01 3.050000E+00 1.655000E+01 +2104 1 3.519000E+01 8.700000E-01 3.234000E+01 +2105 1 1.722000E+01 1.723000E+01 1.978000E+01 +2106 1 2.480000E+01 3.750000E+01 6.700000E-01 +2107 1 3.973000E+01 3.731000E+01 2.819000E+01 +2108 1 1.546000E+01 1.690000E+01 2.411000E+01 +2109 1 1.067000E+01 1.007000E+01 1.075000E+01 +2110 1 3.864000E+01 1.058000E+01 2.272000E+01 +2111 1 3.115000E+01 9.980000E+00 2.317000E+01 +2112 1 2.253000E+01 1.992000E+01 1.380000E+01 +2113 1 1.176000E+01 1.405000E+01 3.903000E+01 +2114 1 1.018000E+01 9.280000E+00 8.030000E+00 +2115 1 1.445000E+01 2.184000E+01 3.200000E+01 +2116 1 1.692000E+01 2.470000E+01 1.871000E+01 +2117 1 2.841000E+01 2.090000E+01 1.081000E+01 +2118 1 1.582000E+01 9.670000E+00 1.823000E+01 +2119 1 3.260000E+00 4.080000E+00 3.358000E+01 +2120 1 3.262000E+01 2.107000E+01 3.990000E+00 +2121 1 1.652000E+01 1.218000E+01 3.564000E+01 +2122 1 2.648000E+01 2.505000E+01 2.501000E+01 +2123 1 3.168000E+01 8.160000E+00 2.482000E+01 +2124 1 1.468000E+01 1.968000E+01 2.087000E+01 +2125 1 1.103000E+01 2.608000E+01 6.010000E+00 +2126 1 1.102000E+01 1.184000E+01 2.603000E+01 +2127 1 3.776000E+01 3.770000E+00 1.490000E+00 +2128 1 2.031000E+01 2.734000E+01 6.700000E-01 +2129 1 3.770000E+00 3.563000E+01 4.170000E+00 +2130 1 4.490000E+00 2.167000E+01 1.302000E+01 +2131 1 3.730000E+00 2.565000E+01 1.098000E+01 +2132 1 3.893000E+01 2.628000E+01 3.085000E+01 +2133 1 1.716000E+01 7.780000E+00 1.678000E+01 +2134 1 3.330000E+01 3.916000E+01 1.899000E+01 +2135 1 3.264000E+01 4.210000E+00 2.427000E+01 +2136 1 1.114000E+01 8.100000E+00 2.329000E+01 +2137 1 1.026000E+01 8.900000E-01 2.724000E+01 +2138 1 2.257000E+01 2.754000E+01 3.789000E+01 +2139 1 2.495000E+01 2.840000E+01 3.687000E+01 +2140 1 3.977000E+01 2.981000E+01 5.800000E+00 +2141 1 2.256000E+01 3.840000E+00 6.270000E+00 +2142 1 7.580000E+00 1.410000E+01 3.520000E+00 +2143 1 1.702000E+01 3.918000E+01 9.200000E+00 +2144 1 2.898000E+01 1.973000E+01 3.924000E+01 +2145 1 4.020000E+01 1.529000E+01 2.723000E+01 +2146 1 7.220000E+00 2.652000E+01 2.819000E+01 +2147 1 1.020000E+01 4.510000E+00 2.913000E+01 +2148 1 1.075000E+01 1.786000E+01 8.600000E+00 +2149 1 2.851000E+01 6.170000E+00 2.682000E+01 +2150 1 1.450000E+00 2.132000E+01 4.020000E+00 +2151 1 4.360000E+00 1.142000E+01 4.500000E-01 +2152 1 6.800000E+00 2.136000E+01 2.166000E+01 +2153 1 1.803000E+01 3.907000E+01 4.900000E+00 +2154 1 3.187000E+01 1.368000E+01 1.983000E+01 +2155 1 3.040000E+01 9.820000E+00 3.786000E+01 +2156 1 3.694000E+01 5.550000E+00 1.614000E+01 +2157 1 1.520000E+00 2.840000E+00 7.180000E+00 +2158 1 7.550000E+00 3.788000E+01 1.150000E+00 +2159 1 3.262000E+01 8.680000E+00 1.004000E+01 +2160 1 9.400000E+00 1.616000E+01 1.029000E+01 +2161 1 5.980000E+00 1.628000E+01 2.001000E+01 +2162 1 1.590000E+00 2.898000E+01 2.510000E+00 +2163 1 2.260000E+00 2.503000E+01 2.702000E+01 +2164 1 3.725000E+01 2.886000E+01 1.681000E+01 +2165 1 1.751000E+01 3.490000E+01 2.327000E+01 +2166 1 2.729000E+01 1.952000E+01 2.661000E+01 +2167 1 8.190000E+00 3.201000E+01 2.417000E+01 +2168 1 7.080000E+00 2.577000E+01 1.091000E+01 +2169 1 3.065000E+01 6.030000E+00 2.910000E+00 +2170 1 2.078000E+01 1.994000E+01 1.970000E+01 +2171 1 7.100000E-01 7.250000E+00 1.784000E+01 +2172 1 3.287000E+01 8.740000E+00 1.891000E+01 +2173 1 1.178000E+01 2.800000E+01 1.470000E+01 +2174 1 2.178000E+01 2.015000E+01 3.462000E+01 +2175 1 3.874000E+01 1.992000E+01 1.613000E+01 +2176 1 3.554000E+01 3.239000E+01 3.856000E+01 +2177 1 1.772000E+01 4.020000E+01 1.210000E+00 +2178 1 2.093000E+01 1.558000E+01 2.323000E+01 +2179 1 8.900000E+00 2.592000E+01 3.849000E+01 +2180 1 1.428000E+01 6.460000E+00 3.351000E+01 diff --git a/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce_table.pot b/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce_table.pot new file mode 100644 index 0000000000..853ff4bec0 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext_tstat/cg_spce_table.pot @@ -0,0 +1,354 @@ +VOTCA +N 351 R 2.0 9.0 + +1 2.000000E+00 2.190202E+01 7.229762E+01 +2 2.020000E+00 2.048957E+01 6.887333E+01 +3 2.040000E+00 1.915004E+01 6.500604E+01 +4 2.060000E+00 1.789228E+01 6.069573E+01 +5 2.080000E+00 1.672516E+01 5.594242E+01 +6 2.100000E+00 1.565754E+01 5.074609E+01 +7 2.120000E+00 1.467088E+01 4.787307E+01 +8 2.140000E+00 1.374450E+01 4.471740E+01 +9 2.160000E+00 1.288407E+01 4.127908E+01 +10 2.180000E+00 1.209522E+01 3.755811E+01 +11 2.200000E+00 1.138363E+01 3.355449E+01 +12 2.220000E+00 1.072913E+01 3.188695E+01 +13 2.240000E+00 1.010845E+01 3.017359E+01 +14 2.260000E+00 9.522496E+00 2.841440E+01 +15 2.280000E+00 8.972182E+00 2.660938E+01 +16 2.300000E+00 8.458426E+00 2.475854E+01 +17 2.320000E+00 8.014166E+00 2.006698E+01 +18 2.340000E+00 7.639767E+00 1.777244E+01 +19 2.360000E+00 7.287288E+00 1.787493E+01 +20 2.380000E+00 6.908790E+00 2.037445E+01 +21 2.400000E+00 6.456330E+00 2.527099E+01 +22 2.420000E+00 5.858025E+00 3.384695E+01 +23 2.440000E+00 5.130955E+00 3.814748E+01 +24 2.460000E+00 4.360629E+00 3.817257E+01 +25 2.480000E+00 3.632555E+00 3.392224E+01 +26 2.500000E+00 3.032242E+00 2.539647E+01 +27 2.520000E+00 2.547993E+00 2.297813E+01 +28 2.540000E+00 2.115131E+00 2.025763E+01 +29 2.560000E+00 1.739702E+00 1.723497E+01 +30 2.580000E+00 1.427747E+00 1.391013E+01 +31 2.600000E+00 1.185311E+00 1.028314E+01 +32 2.620000E+00 9.860176E-01 9.578245E+00 +33 2.640000E+00 8.048986E-01 8.465708E+00 +34 2.660000E+00 6.501069E-01 6.945526E+00 +35 2.680000E+00 5.297952E-01 5.017699E+00 +36 2.700000E+00 4.521166E-01 2.682227E+00 +37 2.720000E+00 3.986447E-01 2.615311E+00 +38 2.740000E+00 3.494900E-01 2.250522E+00 +39 2.760000E+00 3.106097E-01 1.587859E+00 +40 2.780000E+00 2.879614E-01 6.273237E-01 +41 2.800000E+00 2.875026E-01 -6.310851E-01 +42 2.820000E+00 3.002733E-01 -6.543549E-01 +43 2.840000E+00 3.140112E-01 -7.277911E-01 +44 2.860000E+00 3.297194E-01 -8.513935E-01 +45 2.880000E+00 3.484014E-01 -1.025162E+00 +46 2.900000E+00 3.710604E-01 -1.249097E+00 +47 2.920000E+00 3.974884E-01 -1.380483E+00 +48 2.940000E+00 4.257507E-01 -1.432530E+00 +49 2.960000E+00 4.542607E-01 -1.405240E+00 +50 2.980000E+00 4.814314E-01 -1.298611E+00 +51 3.000000E+00 5.056762E-01 -1.112645E+00 +52 3.020000E+00 5.266502E-01 -9.832894E-01 +53 3.040000E+00 5.449492E-01 -8.451544E-01 +54 3.060000E+00 5.603978E-01 -6.982396E-01 +55 3.080000E+00 5.728203E-01 -5.425450E-01 +56 3.100000E+00 5.820411E-01 -3.780706E-01 +57 3.120000E+00 5.882509E-01 -2.409307E-01 +58 3.140000E+00 5.915991E-01 -9.190908E-02 +59 3.160000E+00 5.918481E-01 6.899430E-02 +60 3.180000E+00 5.887601E-01 2.417794E-01 +61 3.200000E+00 5.820977E-01 4.264463E-01 +62 3.220000E+00 5.733491E-01 4.528343E-01 +63 3.240000E+00 5.638075E-01 5.057356E-01 +64 3.260000E+00 5.529429E-01 5.851503E-01 +65 3.280000E+00 5.402248E-01 6.910784E-01 +66 3.300000E+00 5.251230E-01 8.235199E-01 +67 3.320000E+00 5.086524E-01 8.236482E-01 +68 3.340000E+00 4.921725E-01 8.244583E-01 +69 3.360000E+00 4.756696E-01 8.259503E-01 +70 3.380000E+00 4.591299E-01 8.281240E-01 +71 3.400000E+00 4.425400E-01 8.309796E-01 +72 3.420000E+00 4.259181E-01 8.311861E-01 +73 3.440000E+00 4.092937E-01 8.312292E-01 +74 3.460000E+00 3.926700E-01 8.311089E-01 +75 3.480000E+00 3.760504E-01 8.308252E-01 +76 3.500000E+00 3.594381E-01 8.303781E-01 +77 3.520000E+00 3.428394E-01 8.295412E-01 +78 3.540000E+00 3.262547E-01 8.289646E-01 +79 3.560000E+00 3.096790E-01 8.286483E-01 +80 3.580000E+00 2.931071E-01 8.285923E-01 +81 3.600000E+00 2.765336E-01 8.287966E-01 +82 3.620000E+00 2.599901E-01 8.254306E-01 +83 3.640000E+00 2.435212E-01 8.213359E-01 +84 3.660000E+00 2.271415E-01 8.165124E-01 +85 3.680000E+00 2.108656E-01 8.109603E-01 +86 3.700000E+00 1.947080E-01 8.046794E-01 +87 3.720000E+00 1.790243E-01 7.653050E-01 +88 3.740000E+00 1.640312E-01 7.356166E-01 +89 3.760000E+00 1.495351E-01 7.156143E-01 +90 3.780000E+00 1.353421E-01 7.052980E-01 +91 3.800000E+00 1.212586E-01 7.046676E-01 +92 3.820000E+00 1.072429E-01 6.965706E-01 +93 3.840000E+00 9.340878E-02 6.865180E-01 +94 3.860000E+00 7.979524E-02 6.745098E-01 +95 3.880000E+00 6.644142E-02 6.605462E-01 +96 3.900000E+00 5.338643E-02 6.446270E-01 +97 3.920000E+00 4.067486E-02 6.268536E-01 +98 3.940000E+00 2.829935E-02 6.110218E-01 +99 3.960000E+00 1.622105E-02 5.971317E-01 +100 3.980000E+00 4.401131E-03 5.851833E-01 +101 4.000000E+00 -7.199230E-03 5.751764E-01 +102 4.020000E+00 -1.856170E-02 5.611971E-01 +103 4.040000E+00 -2.965216E-02 5.479743E-01 +104 4.060000E+00 -4.048572E-02 5.355079E-01 +105 4.080000E+00 -5.107752E-02 5.237981E-01 +106 4.100000E+00 -6.144268E-02 5.128447E-01 +107 4.120000E+00 -7.151117E-02 4.939504E-01 +108 4.140000E+00 -8.119856E-02 4.747353E-01 +109 4.160000E+00 -9.049845E-02 4.551994E-01 +110 4.180000E+00 -9.940440E-02 4.353427E-01 +111 4.200000E+00 -1.079100E-01 4.151651E-01 +112 4.220000E+00 -1.159565E-01 3.900062E-01 +113 4.240000E+00 -1.235312E-01 3.679865E-01 +114 4.260000E+00 -1.306969E-01 3.491061E-01 +115 4.280000E+00 -1.375164E-01 3.333651E-01 +116 4.300000E+00 -1.440524E-01 3.207633E-01 +117 4.320000E+00 -1.503014E-01 3.040292E-01 +118 4.340000E+00 -1.562092E-01 2.866389E-01 +119 4.360000E+00 -1.617626E-01 2.685925E-01 +120 4.380000E+00 -1.669485E-01 2.498899E-01 +121 4.400000E+00 -1.717538E-01 2.305311E-01 +122 4.420000E+00 -1.760941E-01 2.036400E-01 +123 4.440000E+00 -1.799054E-01 1.776469E-01 +124 4.460000E+00 -1.832059E-01 1.525518E-01 +125 4.480000E+00 -1.860135E-01 1.283546E-01 +126 4.500000E+00 -1.883461E-01 1.050554E-01 +127 4.520000E+00 -1.902569E-01 8.558005E-02 +128 4.540000E+00 -1.917515E-01 6.344105E-02 +129 4.560000E+00 -1.927768E-01 3.863842E-02 +130 4.580000E+00 -1.932793E-01 1.117216E-02 +131 4.600000E+00 -1.932059E-01 -1.895774E-02 +132 4.620000E+00 -1.926829E-01 -3.331832E-02 +133 4.640000E+00 -1.918741E-01 -4.753697E-02 +134 4.660000E+00 -1.907824E-01 -6.161370E-02 +135 4.680000E+00 -1.894105E-01 -7.554851E-02 +136 4.700000E+00 -1.877614E-01 -8.934140E-02 +137 4.720000E+00 -1.859159E-01 -9.580751E-02 +138 4.740000E+00 -1.839049E-01 -1.058976E-01 +139 4.760000E+00 -1.816559E-01 -1.196116E-01 +140 4.780000E+00 -1.790963E-01 -1.369495E-01 +141 4.800000E+00 -1.761537E-01 -1.579114E-01 +142 4.820000E+00 -1.728280E-01 -1.744216E-01 +143 4.840000E+00 -1.691864E-01 -1.895036E-01 +144 4.860000E+00 -1.652574E-01 -2.031575E-01 +145 4.880000E+00 -1.610696E-01 -2.153832E-01 +146 4.900000E+00 -1.566516E-01 -2.261808E-01 +147 4.920000E+00 -1.521084E-01 -2.290714E-01 +148 4.940000E+00 -1.474515E-01 -2.375453E-01 +149 4.960000E+00 -1.425693E-01 -2.516026E-01 +150 4.980000E+00 -1.373502E-01 -2.712432E-01 +151 5.000000E+00 -1.316824E-01 -2.964672E-01 +152 5.020000E+00 -1.257009E-01 -3.016666E-01 +153 5.040000E+00 -1.196162E-01 -3.067953E-01 +154 5.060000E+00 -1.134296E-01 -3.118535E-01 +155 5.080000E+00 -1.071425E-01 -3.168409E-01 +156 5.100000E+00 -1.007564E-01 -3.217577E-01 +157 5.120000E+00 -9.430843E-02 -3.230025E-01 +158 5.140000E+00 -8.783782E-02 -3.240216E-01 +159 5.160000E+00 -8.134907E-02 -3.248150E-01 +160 5.180000E+00 -7.484672E-02 -3.253827E-01 +161 5.200000E+00 -6.833527E-02 -3.257248E-01 +162 5.220000E+00 -6.171989E-02 -3.350608E-01 +163 5.240000E+00 -5.496291E-02 -3.398853E-01 +164 5.260000E+00 -4.815456E-02 -3.401983E-01 +165 5.280000E+00 -4.138506E-02 -3.359997E-01 +166 5.300000E+00 -3.474465E-02 -3.272895E-01 +167 5.320000E+00 -2.866480E-02 -2.819209E-01 +168 5.340000E+00 -2.341879E-02 -2.439062E-01 +169 5.360000E+00 -1.885953E-02 -2.132454E-01 +170 5.380000E+00 -1.483994E-02 -1.899386E-01 +171 5.400000E+00 -1.121296E-02 -1.739857E-01 +172 5.420000E+00 -7.974056E-03 -1.497398E-01 +173 5.440000E+00 -5.229953E-03 -1.245058E-01 +174 5.460000E+00 -3.000413E-03 -9.828350E-02 +175 5.480000E+00 -1.305201E-03 -7.107305E-02 +176 5.500000E+00 -1.640790E-04 -4.287441E-02 +177 5.520000E+00 6.371635E-04 -3.612657E-02 +178 5.540000E+00 1.236053E-03 -2.263906E-02 +179 5.560000E+00 1.497795E-03 -2.411882E-03 +180 5.580000E+00 1.287597E-03 2.455496E-02 +181 5.600000E+00 4.706651E-04 5.826147E-02 +182 5.620000E+00 -7.026386E-04 5.910929E-02 +183 5.640000E+00 -1.895322E-03 6.019943E-02 +184 5.660000E+00 -3.112231E-03 6.153190E-02 +185 5.680000E+00 -4.358213E-03 6.310668E-02 +186 5.700000E+00 -5.638114E-03 6.492378E-02 +187 5.720000E+00 -6.949688E-03 6.610584E-02 +188 5.740000E+00 -8.277238E-03 6.652145E-02 +189 5.760000E+00 -9.605436E-03 6.617062E-02 +190 5.780000E+00 -1.091895E-02 6.505335E-02 +191 5.800000E+00 -1.220246E-02 6.316963E-02 +192 5.820000E+00 -1.341489E-02 5.820182E-02 +193 5.840000E+00 -1.453566E-02 5.400257E-02 +194 5.860000E+00 -1.558012E-02 5.057189E-02 +195 5.880000E+00 -1.656366E-02 4.790978E-02 +196 5.900000E+00 -1.750164E-02 4.601622E-02 +197 5.920000E+00 -1.840088E-02 4.358369E-02 +198 5.940000E+00 -1.923199E-02 3.920163E-02 +199 5.960000E+00 -1.995595E-02 3.287003E-02 +200 5.980000E+00 -2.053379E-02 2.458889E-02 +201 6.000000E+00 -2.092651E-02 1.435822E-02 +202 6.020000E+00 -2.120502E-02 1.352840E-02 +203 6.040000E+00 -2.146907E-02 1.291186E-02 +204 6.060000E+00 -2.172292E-02 1.250861E-02 +205 6.080000E+00 -2.197084E-02 1.231865E-02 +206 6.100000E+00 -2.221709E-02 1.234198E-02 +207 6.120000E+00 -2.246474E-02 1.237271E-02 +208 6.140000E+00 -2.270998E-02 1.210114E-02 +209 6.160000E+00 -2.294677E-02 1.152726E-02 +210 6.180000E+00 -2.316905E-02 1.065107E-02 +211 6.200000E+00 -2.337079E-02 9.472569E-03 +212 6.220000E+00 -2.332237E-02 -1.276224E-02 +213 6.240000E+00 -2.292243E-02 -2.567822E-02 +214 6.260000E+00 -2.235736E-02 -2.927535E-02 +215 6.280000E+00 -2.181354E-02 -2.355364E-02 +216 6.300000E+00 -2.147734E-02 -8.513096E-03 +217 6.320000E+00 -2.141633E-02 1.466366E-03 +218 6.340000E+00 -2.149820E-02 5.775798E-03 +219 6.360000E+00 -2.160956E-02 4.415202E-03 +220 6.380000E+00 -2.163701E-02 -2.615423E-03 +221 6.400000E+00 -2.146714E-02 -1.531608E-02 +222 6.420000E+00 -2.107402E-02 -2.337955E-02 +223 6.440000E+00 -2.055660E-02 -2.774728E-02 +224 6.460000E+00 -1.998877E-02 -2.841924E-02 +225 6.480000E+00 -1.944446E-02 -2.539546E-02 +226 6.500000E+00 -1.899759E-02 -1.867591E-02 +227 6.520000E+00 -1.869042E-02 -1.259095E-02 +228 6.540000E+00 -1.847196E-02 -9.804901E-03 +229 6.560000E+00 -1.827623E-02 -1.031775E-02 +230 6.580000E+00 -1.803726E-02 -1.412951E-02 +231 6.600000E+00 -1.768906E-02 -2.124018E-02 +232 6.620000E+00 -1.710949E-02 -3.551655E-02 +233 6.640000E+00 -1.631641E-02 -4.259122E-02 +234 6.660000E+00 -1.545385E-02 -4.246419E-02 +235 6.680000E+00 -1.466585E-02 -3.513545E-02 +236 6.700000E+00 -1.409644E-02 -2.060502E-02 +237 6.720000E+00 -1.374966E-02 -1.461056E-02 +238 6.740000E+00 -1.349054E-02 -1.183851E-02 +239 6.760000E+00 -1.325464E-02 -1.228886E-02 +240 6.780000E+00 -1.297750E-02 -1.596163E-02 +241 6.800000E+00 -1.259469E-02 -2.285680E-02 +242 6.820000E+00 -1.213049E-02 -2.349903E-02 +243 6.840000E+00 -1.165728E-02 -2.375897E-02 +244 6.860000E+00 -1.118268E-02 -2.363664E-02 +245 6.880000E+00 -1.071436E-02 -2.313203E-02 +246 6.900000E+00 -1.025995E-02 -2.224514E-02 +247 6.920000E+00 -9.817276E-03 -2.203990E-02 +248 6.940000E+00 -9.377653E-03 -2.193988E-02 +249 6.960000E+00 -8.938979E-03 -2.194508E-02 +250 6.980000E+00 -8.499148E-03 -2.205550E-02 +251 7.000000E+00 -8.056057E-03 -2.227113E-02 +252 7.020000E+00 -7.597830E-03 -2.345789E-02 +253 7.040000E+00 -7.121492E-03 -2.408210E-02 +254 7.060000E+00 -6.638296E-03 -2.414376E-02 +255 7.080000E+00 -6.159492E-03 -2.364288E-02 +256 7.100000E+00 -5.696331E-03 -2.257946E-02 +257 7.120000E+00 -5.301441E-03 -1.729553E-02 +258 7.140000E+00 -4.989070E-03 -1.432759E-02 +259 7.160000E+00 -4.712898E-03 -1.367562E-02 +260 7.180000E+00 -4.426605E-03 -1.533964E-02 +261 7.200000E+00 -4.083872E-03 -1.931964E-02 +262 7.220000E+00 -3.631995E-03 -2.538390E-02 +263 7.240000E+00 -3.087883E-03 -2.854317E-02 +264 7.260000E+00 -2.509635E-03 -2.879748E-02 +265 7.280000E+00 -1.955351E-03 -2.614680E-02 +266 7.300000E+00 -1.483130E-03 -2.059115E-02 +267 7.320000E+00 -1.113389E-03 -1.639767E-02 +268 7.340000E+00 -8.266321E-04 -1.229279E-02 +269 7.360000E+00 -6.210869E-04 -8.276492E-03 +270 7.380000E+00 -4.949818E-04 -4.348786E-03 +271 7.400000E+00 -4.465449E-04 -5.096684E-04 +272 7.420000E+00 -5.304321E-04 8.162452E-03 +273 7.440000E+00 -7.436056E-04 1.241897E-02 +274 7.460000E+00 -9.977534E-04 1.225988E-02 +275 7.480000E+00 -1.204563E-03 7.685191E-03 +276 7.500000E+00 -1.275724E-03 -1.305104E-03 +277 7.520000E+00 -1.199415E-03 -5.916706E-03 +278 7.540000E+00 -1.055417E-03 -8.074089E-03 +279 7.560000E+00 -8.928131E-04 -7.777253E-03 +280 7.580000E+00 -7.606883E-04 -5.026198E-03 +281 7.600000E+00 -7.081267E-04 1.790768E-04 +282 7.620000E+00 -7.213835E-04 1.157786E-03 +283 7.640000E+00 -7.548855E-04 2.203601E-03 +284 7.660000E+00 -8.099749E-04 3.316523E-03 +285 7.680000E+00 -8.879938E-04 4.496550E-03 +286 7.700000E+00 -9.902843E-04 5.743685E-03 +287 7.720000E+00 -1.122403E-03 7.421734E-03 +288 7.740000E+00 -1.285295E-03 8.820936E-03 +289 7.760000E+00 -1.473382E-03 9.941291E-03 +290 7.780000E+00 -1.681087E-03 1.078280E-02 +291 7.800000E+00 -1.902835E-03 1.134546E-02 +292 7.820000E+00 -2.225281E-03 2.008573E-02 +293 7.840000E+00 -2.673724E-03 2.394500E-02 +294 7.860000E+00 -3.150542E-03 2.292328E-02 +295 7.880000E+00 -3.558115E-03 1.702056E-02 +296 7.900000E+00 -3.798824E-03 6.236836E-03 +297 7.920000E+00 -3.844315E-03 -1.142168E-03 +298 7.940000E+00 -3.774961E-03 -5.247538E-03 +299 7.960000E+00 -3.656237E-03 -6.079274E-03 +300 7.980000E+00 -3.553615E-03 -3.637376E-03 +301 8.000000E+00 -3.532566E-03 2.078155E-03 +302 8.020000E+00 -3.611956E-03 5.494873E-03 +303 8.040000E+00 -3.737724E-03 6.716053E-03 +304 8.060000E+00 -3.865961E-03 5.741694E-03 +305 8.080000E+00 -3.952755E-03 2.571796E-03 +306 8.100000E+00 -3.954196E-03 -2.793640E-03 +307 8.120000E+00 -3.873685E-03 -5.086591E-03 +308 8.140000E+00 -3.757567E-03 -6.354313E-03 +309 8.160000E+00 -3.626347E-03 -6.596805E-03 +310 8.180000E+00 -3.500530E-03 -5.814068E-03 +311 8.200000E+00 -3.400620E-03 -4.006101E-03 +312 8.220000E+00 -3.334411E-03 -2.730570E-03 +313 8.240000E+00 -3.286762E-03 -2.150229E-03 +314 8.260000E+00 -3.243768E-03 -2.265076E-03 +315 8.280000E+00 -3.191524E-03 -3.075114E-03 +316 8.300000E+00 -3.116129E-03 -4.580340E-03 +317 8.320000E+00 -2.964210E-03 -1.014102E-02 +318 8.340000E+00 -2.729309E-03 -1.287854E-02 +319 8.360000E+00 -2.467889E-03 -1.279292E-02 +320 8.380000E+00 -2.236413E-03 -9.884157E-03 +321 8.400000E+00 -2.091344E-03 -4.152240E-03 +322 8.420000E+00 -2.034875E-03 -1.692189E-03 +323 8.440000E+00 -2.015752E-03 -4.177491E-04 +324 8.460000E+00 -2.010261E-03 -3.289192E-04 +325 8.480000E+00 -1.994691E-03 -1.425700E-03 +326 8.500000E+00 -1.945329E-03 -3.708091E-03 +327 8.520000E+00 -1.867098E-03 -4.115259E-03 +328 8.540000E+00 -1.780711E-03 -4.523663E-03 +329 8.560000E+00 -1.686143E-03 -4.933304E-03 +330 8.580000E+00 -1.583370E-03 -5.344181E-03 +331 8.600000E+00 -1.472368E-03 -5.756296E-03 +332 8.620000E+00 -1.328792E-03 -8.394009E-03 +333 8.640000E+00 -1.144899E-03 -9.787974E-03 +334 8.660000E+00 -9.455644E-04 -9.938189E-03 +335 8.680000E+00 -7.556630E-04 -8.844656E-03 +336 8.700000E+00 -6.000698E-04 -6.507373E-03 +337 8.720000E+00 -5.364035E-04 -3.286769E-04 +338 8.740000E+00 -5.681458E-04 3.033482E-03 +339 8.760000E+00 -6.389659E-04 3.579102E-03 +340 8.780000E+00 -6.925330E-04 1.308185E-03 +341 8.800000E+00 -6.725164E-04 -3.779270E-03 +342 8.820000E+00 -5.113768E-04 -1.169180E-02 +343 8.840000E+00 -2.305599E-04 -1.574700E-02 +344 8.860000E+00 9.278768E-05 -1.594487E-02 +345 8.880000E+00 3.815195E-04 -1.228542E-02 +346 8.900000E+00 5.584889E-04 -4.768636E-03 +347 8.920000E+00 6.079481E-04 -2.335309E-04 +348 8.940000E+00 5.700798E-04 3.964121E-03 +349 8.960000E+00 4.516330E-04 7.824320E-03 +350 8.980000E+00 2.593567E-04 1.134707E-02 +351 9.000000E+00 0.000000E+00 1.453236E-02 diff --git a/examples/USER/misc/dpd_ext/dpdext_tstat/in.cg_spce b/examples/USER/misc/dpd_ext/dpdext_tstat/in.cg_spce new file mode 100644 index 0000000000..b93dc3eec5 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext_tstat/in.cg_spce @@ -0,0 +1,31 @@ +# Coarse-Grained SPC/E Water + +variable T equal 300.0 +variable rc equal 9.0 +variable rcD equal 10.0 + +units real +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +read_data cg_spce.data + +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat ${T} ${T} ${rc} 385262 + +pair_coeff 1 1 table cg_spce_table.pot VOTCA ${rc} +pair_coeff 1 1 dpd/ext/tstat 20.0 10.0 0.5 0.5 ${rcD} + +timestep 1.0 +run_style verlet + +velocity all create ${T} 68768932 + +thermo_style custom step time temp press +thermo 10 + +fix 1 all nve + +run 2000 diff --git a/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.1 b/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.1 new file mode 100644 index 0000000000..8f75dfa917 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.1 @@ -0,0 +1,293 @@ +LAMMPS (8 Apr 2021) +# Coarse-Grained SPC/E Water + +variable T equal 300.0 +variable rc equal 9.0 +variable rcD equal 10.0 + +units real +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +read_data cg_spce.data +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (40.310000 40.310000 40.310000) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 2180 atoms + read_data CPU = 0.020 seconds + +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat ${T} ${T} ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 ${T} ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 300 ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 300 9 385262 + +pair_coeff 1 1 table cg_spce_table.pot VOTCA ${rc} +pair_coeff 1 1 table cg_spce_table.pot VOTCA 9 +WARNING: 16 of 351 force values in table VOTCA are inconsistent with -dE/dr. + Should only be flagged at inflection points (../pair_table.cpp:461) +pair_coeff 1 1 dpd/ext/tstat 20.0 10.0 0.5 0.5 ${rcD} +pair_coeff 1 1 dpd/ext/tstat 20.0 10.0 0.5 0.5 10 + +timestep 1.0 +run_style verlet + +velocity all create ${T} 68768932 +velocity all create 300 68768932 + +thermo_style custom step time temp press +thermo 10 + +fix 1 all nve + +run 2000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 7 7 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair table, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard + (2) pair dpd/ext/tstat, perpetual, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 5.380 | 5.380 | 5.380 Mbytes +Step Time Temp Press + 0 0 300 7368.7186 + 10 10 298.34842 6443.6033 + 20 20 303.36187 9303.0158 + 30 30 301.59356 7533.7912 + 40 40 300.97217 5623.9089 + 50 50 300.31652 9105.8093 + 60 60 296.92173 9213.304 + 70 70 294.36593 12701.327 + 80 80 295.30077 6098.4732 + 90 90 296.35396 8051.719 + 100 100 293.72532 5555.983 + 110 110 290.95711 9001.8346 + 120 120 290.91972 10264.241 + 130 130 294.14911 11450.959 + 140 140 299.11994 7244.1639 + 150 150 301.20082 7675.7516 + 160 160 300.71883 9718.1901 + 170 170 295.47176 8931.1414 + 180 180 290.45284 7381.7674 + 190 190 291.66922 11028.436 + 200 200 294.0543 11897.269 + 210 210 299.17955 8939.2171 + 220 220 298.45193 8047.038 + 230 230 300.48548 10033.64 + 240 240 299.24752 6310.7247 + 250 250 304.51487 8710.5626 + 260 260 303.6513 5230.8162 + 270 270 300.76074 12164.773 + 280 280 302.60275 11145.98 + 290 290 297.22957 9521.4384 + 300 300 297.1365 7446.9006 + 310 310 292.18323 8021.8344 + 320 320 295.03958 9130.8594 + 330 330 293.9622 4647.512 + 340 340 290.77751 8001.486 + 350 350 292.34687 11887.668 + 360 360 295.95968 9262.148 + 370 370 293.50476 4181.549 + 380 380 288.69498 7632.071 + 390 390 289.63957 5130.0205 + 400 400 295.02212 5643.5024 + 410 410 296.3944 7267.235 + 420 420 299.22019 7149.9305 + 430 430 298.36689 8384.595 + 440 440 295.33149 10515.75 + 450 450 294.76959 11569.389 + 460 460 300.141 7272.4453 + 470 470 299.14431 7792.5419 + 480 480 302.3697 5837.8675 + 490 490 301.94692 6999.1059 + 500 500 300.25929 4885.3948 + 510 510 302.50013 8231.0438 + 520 520 300.76412 8445.0349 + 530 530 298.5016 9110.432 + 540 540 301.14513 9348.6421 + 550 550 297.36425 10753.314 + 560 560 296.50046 10476.823 + 570 570 300.57267 9889.7968 + 580 580 300.4868 8377.423 + 590 590 296.65103 6859.32 + 600 600 298.50013 7080.5995 + 610 610 300.28274 9502.5438 + 620 620 298.45508 8819.7846 + 630 630 300.24859 6291.4944 + 640 640 299.38719 7430.2366 + 650 650 297.91915 9435.3218 + 660 660 300.61208 6287.9931 + 670 670 303.59291 8357.7639 + 680 680 301.85511 1697.3038 + 690 690 298.96873 5210.2286 + 700 700 298.09035 7510.4359 + 710 710 303.11692 10129.526 + 720 720 302.65473 10488.388 + 730 730 300.15444 7118.5953 + 740 740 300.19245 10582.032 + 750 750 296.73618 6538.0363 + 760 760 299.72857 7588.9487 + 770 770 299.00347 6633.9983 + 780 780 301.38129 8053.5347 + 790 790 298.54819 8711.4965 + 800 800 305.54197 9717.9727 + 810 810 302.96497 7582.0444 + 820 820 306.81537 9433.6446 + 830 830 309.16373 10088.582 + 840 840 313.53881 9509.8624 + 850 850 310.82992 5366.015 + 860 860 306.49798 8499.9157 + 870 870 308.93421 5690.3242 + 880 880 302.56668 5526.3636 + 890 890 306.72501 7380.8469 + 900 900 308.87199 10388.13 + 910 910 312.7367 6613.0734 + 920 920 308.34508 5903.4291 + 930 930 306.39924 8615.6622 + 940 940 310.37544 6849.4694 + 950 950 310.13051 6188.7605 + 960 960 308.68049 7637.532 + 970 970 302.85465 6448.7926 + 980 980 307.40719 8763.0959 + 990 990 304.02815 8373.6518 + 1000 1000 300.69539 5682.6678 + 1010 1010 299.16385 6012.246 + 1020 1020 305.118 7913.4144 + 1030 1030 304.20382 10580.788 + 1040 1040 302.91134 7698.4548 + 1050 1050 298.08593 8952.6724 + 1060 1060 302.56196 10602.997 + 1070 1070 305.98211 12174.358 + 1080 1080 305.70253 12288.219 + 1090 1090 303.22805 7922.7166 + 1100 1100 301.54879 5031.3836 + 1110 1110 302.57611 8547.4189 + 1120 1120 302.00845 12966.595 + 1130 1130 296.10912 4514.1707 + 1140 1140 295.11601 6543.7239 + 1150 1150 287.29188 6453.3386 + 1160 1160 284.83881 7168.9427 + 1170 1170 289.77871 7895.7434 + 1180 1180 293.48011 7680.6885 + 1190 1190 295.69035 8609.6593 + 1200 1200 296.0653 7343.68 + 1210 1210 302.72922 6973.6048 + 1220 1220 304.11805 7322.7664 + 1230 1230 300.24647 6418.2612 + 1240 1240 293.24074 9039.1214 + 1250 1250 300.56214 7877.4055 + 1260 1260 308.03086 5644.2135 + 1270 1270 311.12289 6875.5126 + 1280 1280 307.83182 7204.9894 + 1290 1290 309.58491 9993.2255 + 1300 1300 305.36536 8626.859 + 1310 1310 304.35084 3471.1205 + 1320 1320 304.40125 2149.2701 + 1330 1330 295.74547 6252.9592 + 1340 1340 293.16034 3407.4408 + 1350 1350 298.6302 10139.977 + 1360 1360 300.46627 7312.9011 + 1370 1370 298.00367 2780.8886 + 1380 1380 300.97807 9403.3451 + 1390 1390 294.32612 12005.453 + 1400 1400 296.13403 5569.4907 + 1410 1410 297.86152 9558.6064 + 1420 1420 303.01992 8678.345 + 1430 1430 298.53849 5544.6316 + 1440 1440 293.60633 12879.765 + 1450 1450 296.28813 9312.4229 + 1460 1460 292.64466 8344.5877 + 1470 1470 295.28975 7689.9396 + 1480 1480 300.10761 7436.7346 + 1490 1490 291.6152 8909.6757 + 1500 1500 286.644 9756.5014 + 1510 1510 294.52064 10383.164 + 1520 1520 297.49618 4972.89 + 1530 1530 295.63379 6192.5729 + 1540 1540 295.04528 4987.7191 + 1550 1550 290.41403 7013.6076 + 1560 1560 295.62326 7222.5009 + 1570 1570 299.90584 4282.5688 + 1580 1580 299.04532 7885.433 + 1590 1590 300.03907 5508.0652 + 1600 1600 298.05683 9262.3744 + 1610 1610 297.50015 9544.6913 + 1620 1620 303.21217 6393.6756 + 1630 1630 304.44383 9674.6583 + 1640 1640 302.68977 9065.4408 + 1650 1650 303.62415 6851.1575 + 1660 1660 306.11103 8592.0481 + 1670 1670 300.84566 8483.551 + 1680 1680 303.92882 10113.096 + 1690 1690 305.02534 7389.9402 + 1700 1700 303.52902 5541.9256 + 1710 1710 299.27905 9547.7344 + 1720 1720 294.14366 7269.2402 + 1730 1730 299.49977 8086.0601 + 1740 1740 298.66942 7026.6067 + 1750 1750 296.94428 9595.2435 + 1760 1760 297.36921 6268.7436 + 1770 1770 299.88423 10598.189 + 1780 1780 293.76868 7405.7641 + 1790 1790 297.19444 10837.102 + 1800 1800 296.46054 8345.699 + 1810 1810 299.06801 5256.5992 + 1820 1820 294.17725 5510.7529 + 1830 1830 286.78527 6310.8881 + 1840 1840 284.89686 8249.1144 + 1850 1850 293.79389 4578.9263 + 1860 1860 298.31279 8752.305 + 1870 1870 295.31087 8401.2736 + 1880 1880 298.13297 4354.8694 + 1890 1890 298.90786 11454.088 + 1900 1900 299.1416 9121.4138 + 1910 1910 296.43134 12157.884 + 1920 1920 292.05445 8613.1522 + 1930 1930 300.3421 7898.3626 + 1940 1940 304.55746 6311.259 + 1950 1950 304.03899 8789.3537 + 1960 1960 305.08259 7243.5622 + 1970 1970 304.0858 8712.4796 + 1980 1980 299.14574 5166.3501 + 1990 1990 300.07254 10019.769 + 2000 2000 301.78176 8789.7968 +Loop time of 91.2059 on 1 procs for 2000 steps with 2180 atoms + +Performance: 1.895 ns/day, 12.667 hours/ns, 21.928 timesteps/s +99.8% CPU use with 1 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 90.668 | 90.668 | 90.668 | 0.0 | 99.41 +Neigh | 0.23231 | 0.23231 | 0.23231 | 0.0 | 0.25 +Comm | 0.20819 | 0.20819 | 0.20819 | 0.0 | 0.23 +Output | 0.0049558 | 0.0049558 | 0.0049558 | 0.0 | 0.01 +Modify | 0.052906 | 0.052906 | 0.052906 | 0.0 | 0.06 +Other | | 0.03904 | | | 0.04 + +Nlocal: 2180.00 ave 2180 max 2180 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 6693.00 ave 6693 max 6693 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 261496.0 ave 261496 max 261496 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 261496 +Ave neighs/atom = 119.95229 +Neighbor list builds = 25 +Dangerous builds = 0 +Total wall time: 0:01:31 diff --git a/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.4 b/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.4 new file mode 100644 index 0000000000..278aba0687 --- /dev/null +++ b/examples/USER/misc/dpd_ext/dpdext_tstat/log.10Mar21.dpdext.g++.4 @@ -0,0 +1,293 @@ +LAMMPS (8 Apr 2021) +# Coarse-Grained SPC/E Water + +variable T equal 300.0 +variable rc equal 9.0 +variable rcD equal 10.0 + +units real +boundary p p p +atom_style atomic +dimension 3 +newton on +comm_modify vel yes + +read_data cg_spce.data +Reading data file ... + orthogonal box = (0.0000000 0.0000000 0.0000000) to (40.310000 40.310000 40.310000) + 1 by 2 by 2 MPI processor grid + reading atoms ... + 2180 atoms + read_data CPU = 0.005 seconds + +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat ${T} ${T} ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 ${T} ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 300 ${rc} 385262 +pair_style hybrid/overlay table linear 1000 dpd/ext/tstat 300 300 9 385262 + +pair_coeff 1 1 table cg_spce_table.pot VOTCA ${rc} +pair_coeff 1 1 table cg_spce_table.pot VOTCA 9 +WARNING: 16 of 351 force values in table VOTCA are inconsistent with -dE/dr. + Should only be flagged at inflection points (../pair_table.cpp:461) +pair_coeff 1 1 dpd/ext/tstat 20.0 10.0 0.5 0.5 ${rcD} +pair_coeff 1 1 dpd/ext/tstat 20.0 10.0 0.5 0.5 10 + +timestep 1.0 +run_style verlet + +velocity all create ${T} 68768932 +velocity all create 300 68768932 + +thermo_style custom step time temp press +thermo 10 + +fix 1 all nve + +run 2000 +Neighbor list info ... + update every 1 steps, delay 10 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 12 + ghost atom cutoff = 12 + binsize = 6, bins = 7 7 7 + 2 neighbor lists, perpetual/occasional/extra = 2 0 0 + (1) pair table, perpetual + attributes: half, newton on + pair build: half/bin/atomonly/newton + stencil: half/bin/3d/newton + bin: standard + (2) pair dpd/ext/tstat, perpetual, copy from (1) + attributes: half, newton on + pair build: copy + stencil: none + bin: none +Per MPI rank memory allocation (min/avg/max) = 3.695 | 3.696 | 3.697 Mbytes +Step Time Temp Press + 0 0 300 5965.5396 + 10 10 303.16391 8779.1574 + 20 20 306.9014 8268.573 + 30 30 305.84291 9976.0547 + 40 40 301.20527 8832.3902 + 50 50 305.72012 8041.0146 + 60 60 305.1676 7118.8042 + 70 70 305.01132 9423.9307 + 80 80 308.10236 10781.423 + 90 90 309.18703 3637.9961 + 100 100 305.11814 7726.7672 + 110 110 298.37346 8575.1602 + 120 120 304.79786 8910.8048 + 130 130 309.05401 6351.4839 + 140 140 304.28367 4805.137 + 150 150 300.28903 7412.6411 + 160 160 299.39358 10183.593 + 170 170 296.80729 5437.1054 + 180 180 295.2755 8317.0414 + 190 190 303.25949 8338.3453 + 200 200 303.24607 9636.5224 + 210 210 298.56684 10288.264 + 220 220 293.42999 9001.0482 + 230 230 293.12497 9083.5194 + 240 240 291.92847 9659.3388 + 250 250 299.2202 6328.759 + 260 260 297.45209 10405.677 + 270 270 292.12257 7273.9369 + 280 280 289.81113 8957.8747 + 290 290 299.06683 6695.3776 + 300 300 300.75468 6298.5705 + 310 310 296.26524 7432.4815 + 320 320 294.21403 9941.7038 + 330 330 293.01776 4750.2993 + 340 340 295.22553 4968.3595 + 350 350 293.95589 9224.5496 + 360 360 297.94278 8792.0395 + 370 370 298.99075 5453.7814 + 380 380 302.1188 6229.2283 + 390 390 298.48943 8517.5273 + 400 400 295.3701 11328.394 + 410 410 287.74238 4058.0382 + 420 420 288.83732 5706.6773 + 430 430 298.8242 6178.7142 + 440 440 304.42682 10138.321 + 450 450 300.28695 9731.3417 + 460 460 300.34539 9249.4691 + 470 470 303.32231 11638.718 + 480 480 301.46777 4186.402 + 490 490 292.56069 9184.8386 + 500 500 297.26162 11766.733 + 510 510 295.34018 6436.33 + 520 520 300.16314 9325.3669 + 530 530 305.00513 5947.6408 + 540 540 300.88805 5222.7384 + 550 550 301.56707 6669.1808 + 560 560 304.89854 10730.053 + 570 570 299.50424 7956.1042 + 580 580 301.23382 10192.246 + 590 590 298.81222 6017.2125 + 600 600 300.57891 4575.433 + 610 610 301.95936 6309.7515 + 620 620 301.09393 5993.6489 + 630 630 300.47565 4388.7137 + 640 640 299.31886 9535.6093 + 650 650 295.06025 7954.5811 + 660 660 298.72666 8630.7466 + 670 670 302.53833 5636.1305 + 680 680 306.32833 12539.149 + 690 690 296.1951 11345.293 + 700 700 297.00325 6352.1448 + 710 710 298.51181 6922.4379 + 720 720 293.80125 4849.4922 + 730 730 296.52677 11141.583 + 740 740 294.15306 3527.8677 + 750 750 294.74737 8454.0815 + 760 760 292.53913 8187.9032 + 770 770 294.37078 7487.5703 + 780 780 297.50085 9198.7697 + 790 790 298.37773 8969.0024 + 800 800 293.29879 6506.6479 + 810 810 296.58266 8805.7872 + 820 820 290.85616 5248.8123 + 830 830 292.29488 5123.8203 + 840 840 292.77623 8263.5675 + 850 850 297.88225 6777.7444 + 860 860 300.01913 10439.087 + 870 870 295.79578 7318.1322 + 880 880 301.5994 8242.4774 + 890 890 306.63208 8090.6106 + 900 900 303.53759 6831.2666 + 910 910 300.70481 3811.0498 + 920 920 299.96274 8351.1573 + 930 930 299.67435 7046.0534 + 940 940 310.81742 6887.6925 + 950 950 305.09984 4811.088 + 960 960 301.33039 4184.851 + 970 970 301.19205 6417.6542 + 980 980 299.6491 7738.2233 + 990 990 297.33655 9264.0874 + 1000 1000 302.33418 7166.2751 + 1010 1010 300.08402 9121.0882 + 1020 1020 302.82225 6405.7109 + 1030 1030 304.01683 6944.0839 + 1040 1040 305.82618 6160.3838 + 1050 1050 308.12518 4356.0931 + 1060 1060 307.64811 6954.7245 + 1070 1070 313.70509 5558.9804 + 1080 1080 316.09239 7250.6147 + 1090 1090 310.2845 5441.3722 + 1100 1100 300.18899 4417.8774 + 1110 1110 304.02471 5609.1668 + 1120 1120 303.46016 10355.031 + 1130 1130 305.68165 6400.913 + 1140 1140 308.78348 7235.1894 + 1150 1150 299.30025 9246.4856 + 1160 1160 302.70799 9866.9536 + 1170 1170 302.0977 8643.5532 + 1180 1180 307.15407 8866.4664 + 1190 1190 305.78146 7562.4911 + 1200 1200 302.54605 7974.9973 + 1210 1210 306.14264 9554.2381 + 1220 1220 308.89843 6219.5361 + 1230 1230 305.71844 7633.9105 + 1240 1240 306.51911 7705.4795 + 1250 1250 304.78473 8590.5595 + 1260 1260 300.82969 9281.5964 + 1270 1270 305.9271 4951.1323 + 1280 1280 310.32728 9446.3989 + 1290 1290 318.27879 9102.5544 + 1300 1300 310.45777 5931.5457 + 1310 1310 304.81268 1214.4291 + 1320 1320 307.08811 10315.961 + 1330 1330 306.86917 8584.9658 + 1340 1340 307.26912 7254.864 + 1350 1350 310.02754 8508.6256 + 1360 1360 306.12763 4912.6641 + 1370 1370 301.67924 6715.8196 + 1380 1380 298.37239 6149.8821 + 1390 1390 299.62894 8181.4761 + 1400 1400 301.60395 6714.4244 + 1410 1410 297.65752 7035.6575 + 1420 1420 297.02817 7510.2637 + 1430 1430 303.59177 10361.937 + 1440 1440 300.10771 8473.2311 + 1450 1450 291.21837 6097.9954 + 1460 1460 291.58663 7729.0841 + 1470 1470 292.52447 6555.8661 + 1480 1480 294.48264 6960.0201 + 1490 1490 298.34869 8044.2321 + 1500 1500 296.8193 11731.289 + 1510 1510 296.52073 5452.8935 + 1520 1520 294.54819 9591.7969 + 1530 1530 297.36394 5148.5383 + 1540 1540 289.08137 6057.0981 + 1550 1550 288.27007 8965.1965 + 1560 1560 294.84398 8316.9487 + 1570 1570 299.79573 8760.7322 + 1580 1580 295.66745 5045.5322 + 1590 1590 298.14356 7161.1834 + 1600 1600 297.10402 6529.9938 + 1610 1610 299.69137 7741.6027 + 1620 1620 304.93043 11222.109 + 1630 1630 302.01322 10893.107 + 1640 1640 295.47422 8400.3124 + 1650 1650 301.93122 7190.2609 + 1660 1660 305.02639 6140.5552 + 1670 1670 302.86047 8651.5366 + 1680 1680 304.82151 9909.407 + 1690 1690 300.48426 8428.8845 + 1700 1700 293.06643 5333.8144 + 1710 1710 295.43687 9103.4353 + 1720 1720 298.77208 8162.1053 + 1730 1730 300.08189 9603.4371 + 1740 1740 303.16004 10693.291 + 1750 1750 303.54199 9151.023 + 1760 1760 300.99281 4641.2985 + 1770 1770 297.36657 3888.5753 + 1780 1780 298.32969 7286.2299 + 1790 1790 297.34183 8975.8956 + 1800 1800 295.83042 6366.7607 + 1810 1810 295.92044 9308.4953 + 1820 1820 298.10087 7117.2369 + 1830 1830 296.13936 4849.3739 + 1840 1840 296.5869 8321.4011 + 1850 1850 296.74513 9530.6806 + 1860 1860 298.57398 8788.0603 + 1870 1870 299.12825 6015.4777 + 1880 1880 301.91639 11706.441 + 1890 1890 309.85968 10909.493 + 1900 1900 302.64998 8779.8967 + 1910 1910 301.62919 9176.3902 + 1920 1920 300.66238 5369.8681 + 1930 1930 297.64499 8185.09 + 1940 1940 296.47852 10188.803 + 1950 1950 297.802 6679.4466 + 1960 1960 299.78754 7316.8198 + 1970 1970 300.09083 6008.9414 + 1980 1980 297.94119 5615.6403 + 1990 1990 298.37687 9727.308 + 2000 2000 296.08394 6400.2746 +Loop time of 41.5171 on 4 procs for 2000 steps with 2180 atoms + +Performance: 4.162 ns/day, 5.766 hours/ns, 48.173 timesteps/s +99.5% CPU use with 4 MPI tasks x no OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 38.667 | 38.954 | 39.453 | 4.8 | 93.83 +Neigh | 0.10947 | 0.11039 | 0.11153 | 0.3 | 0.27 +Comm | 1.8661 | 2.3644 | 2.652 | 19.6 | 5.70 +Output | 0.0082644 | 0.0094232 | 0.01281 | 2.0 | 0.02 +Modify | 0.024678 | 0.025206 | 0.025888 | 0.3 | 0.06 +Other | | 0.05335 | | | 0.13 + +Nlocal: 545.000 ave 559 max 531 min +Histogram: 1 0 0 0 1 1 0 0 0 1 +Nghost: 3619.00 ave 3655 max 3594 min +Histogram: 1 1 0 0 1 0 0 0 0 1 +Neighs: 65415.5 ave 66835 max 64310 min +Histogram: 1 0 0 2 0 0 0 0 0 1 + +Total # of neighbors = 261662 +Ave neighs/atom = 120.02844 +Neighbor list builds = 26 +Dangerous builds = 0 +Total wall time: 0:00:41 diff --git a/examples/USER/misc/propel_self/2d_velocity/in.2d_langevin b/examples/USER/misc/propel_self/2d_velocity/in.2d_langevin deleted file mode 100644 index 6a23e0d005..0000000000 --- a/examples/USER/misc/propel_self/2d_velocity/in.2d_langevin +++ /dev/null @@ -1,54 +0,0 @@ -dimension 2 -boundary p p p - -variable L equal 20 -region total block -$L $L -$L $L -0.5 0.5 -lattice hex 0.3 -create_box 2 total -create_atoms 1 box - -# Set random fraction to passive: -set type 1 type/fraction 2 0.5 1337 - -# Purely repulsive particles: -variable rc equal "2^(1.0/6.0)" -pair_style lj/cut ${rc} -pair_coeff * * 1.0 1.0 -pair_modify shift yes - -mass * 1.0 - -fix step all nve -fix temp all langevin 1.0 1.0 1.0 13 -fix twod all enforce2d - -neighbor 0.6 bin - -dump traj all custom 250 2d_active.dump.bin id type x y z - -thermo_style custom time step pe ke etotal temp -thermo 1000 -run 5000 - -group one type 1 -group two type 2 - -compute ke1 one ke -compute ke2 two ke - -thermo_style custom step pe ke etotal temp c_ke1 c_ke2 - -fix active all propel/self velocity 1.0 - -# With active force there is more motion so increase bin size: -neighbor 1.0 bin -run 10000 - -# Only make type 1 active: -fix active all propel/self velocity 1.0 types 1 - -# With active force there is more motion so increase bin size: -neighbor 1.0 bin -run 10000 - - diff --git a/examples/USER/misc/propel_self/2d_velocity/in.2d_viscous b/examples/USER/misc/propel_self/2d_velocity/in.2d_viscous deleted file mode 100644 index 1283a5d574..0000000000 --- a/examples/USER/misc/propel_self/2d_velocity/in.2d_viscous +++ /dev/null @@ -1,37 +0,0 @@ -dimension 2 -boundary p p p - -variable L equal 20 -region total block -$L $L -$L $L -0.5 0.5 -lattice hex 0.3 -create_box 2 total -create_atoms 1 box - -# Set random fraction to passive: -set type 1 type/fraction 2 0.5 1337 - -# Purely repulsive particles: -variable rc equal "2^(1.0/6.0)" -pair_style lj/cut ${rc} -pair_coeff * * 1.0 1.0 -pair_modify shift yes - -mass * 1.0 - -fix step all nve -fix twod all enforce2d - -neighbor 0.6 bin - -dump traj all custom 250 2d_active.dump.bin id type x y z - -thermo_style custom step pe ke etotal temp -thermo 1000 -run 10000 - -fix active all propel/self velocity 1.0 -fix fric all viscous 1.0 - -# With active force there is more motion so increase bin size: -neighbor 1.0 bin -run 10000 diff --git a/examples/USER/misc/propel_self/3d_quaternion/in.3d_quaternion b/examples/USER/misc/propel_self/3d_quaternion/in.3d_quaternion deleted file mode 100644 index d6b6aff7dd..0000000000 --- a/examples/USER/misc/propel_self/3d_quaternion/in.3d_quaternion +++ /dev/null @@ -1,40 +0,0 @@ -dimension 3 -boundary p p p - -atom_style ellipsoid -variable L equal 20 -region total block -$L $L -$L $L -$L $L -lattice sc 0.1 -create_box 2 total -create_atoms 1 box - -# Set random fraction to passive: -set type 1 type/fraction 2 0.5 1337 - -# Purely repulsive particles: -variable rc equal "2^(1.0/6.0)" -pair_style lj/cut ${rc} -pair_coeff * * 1.0 1.0 -pair_modify shift yes - -# mass * 1.0 -set type * shape 1.0 1.0 1.0 -set type * density 1.9098593171027443 -set type * quat 0 0 1 0 - -fix step all nve/asphere -fix temp all langevin 1.0 1.0 1.0 13 angmom 3.333333333 - -neighbor 0.6 bin - -dump traj all custom 100 3d_active.dump.bin id type x y z fx fy fz - -thermo_style custom step pe ke etotal temp -thermo 100 -run 500 - -fix active all propel/self quat 1.0 - -# With active force there is more motion so increase bin size: -neighbor 1.0 bin -run 500 diff --git a/examples/granregion/in.granregion.funnel b/examples/granregion/in.granregion.funnel index 63e79a7114..ef74ce5109 100644 --- a/examples/granregion/in.granregion.funnel +++ b/examples/granregion/in.granregion.funnel @@ -86,7 +86,7 @@ pair_style gran/hertz/history & ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 pair_coeff * * -neighbor ${skin} bin +neighbor ${skin} multi thermo ${logfreq} comm_style brick diff --git a/examples/granregion/in.granregion.mixer b/examples/granregion/in.granregion.mixer index f9a9d04cbe..383f51f074 100644 --- a/examples/granregion/in.granregion.mixer +++ b/examples/granregion/in.granregion.mixer @@ -49,7 +49,7 @@ pair_style gran/hertz/history & ${kn} ${kt} ${gamma_n} ${gamma_t} ${coeffFric} 1 pair_coeff * * -neighbor ${skin} bin +neighbor ${skin} multi thermo ${logfreq} comm_style brick diff --git a/examples/multi/data.powerlaw b/examples/multi/data.powerlaw new file mode 100644 index 0000000000..2ce54cf4a6 --- /dev/null +++ b/examples/multi/data.powerlaw @@ -0,0 +1,20015 @@ +LAMMPS data file via write_data, version 24 Dec 2020, timestep = 400000 + +10000 atoms +1 atom types + +9.95143358025075 331.8139610404791 xlo xhi +9.95143358025075 331.8139610404791 ylo yhi +0 1 zlo zhi +0 0 0 xy xz yz + +Atoms # sphere + +16 1 27.0148 1 21.578661820808055 19.894003593559244 0 0 0 0 +6528 1 1.2402 1 40.11018907053191 29.030167715273407 0 0 1 0 +8976 1 1.0539 1 36.97821790225197 19.05186774766389 0 0 0 0 +168 1 7.3782 1 49.35369389791803 25.320840580930078 0 0 0 0 +194 1 6.9422 1 37.8963499906581 24.060540533134542 0 0 0 0 +208 1 6.6527 1 30.20573931579442 36.96891799058152 0 0 0 0 +336 1 5.417 1 42.81946909263247 31.018306090834393 0 0 0 0 +346 1 5.3618 1 17.904145680770682 40.365474113094464 0 0 0 0 +364 1 5.1987 1 45.47784864569917 20.574121185710485 0 0 0 0 +412 1 4.8776 1 22.52913680808026 42.40500703613544 0 0 0 0 +439 1 4.6882 1 35.32921707623989 30.55316138336846 0 0 0 0 +511 1 4.3207 1 43.71579096264905 26.313752950912164 0 0 0 0 +527 1 4.2767 1 40.53481826871412 15.977906579131261 0 0 0 0 +529 1 4.2701 1 14.88365052239063 45.532953698817934 0 0 0 0 +543 1 4.2317 1 22.663739581205114 36.42482542930276 0 0 0 0 +5300 1 1.3759 1 11.61412862355682 32.093048107213875 0 1 0 0 +569 1 4.1329 1 11.928958139921995 34.823339484175335 0 0 0 0 +4350 1 1.5228 1 15.212423557099871 48.57106966637227 0 1 0 0 +629 1 3.9339 1 45.09696092099179 35.7722795000036 0 0 0 0 +3990 1 1.5888 1 58.92019192272275 14.95895467917481 0 0 0 0 +675 1 3.8345 1 40.15765471413111 36.06383064621343 0 0 0 0 +9041 1 1.0504 1 55.77699479392789 9.970907140369798 0 0 0 0 +816 1 3.5492 1 16.452908912680222 36.21565336475413 0 0 0 0 +818 1 3.5444 1 36.541570162495695 35.70067868845737 0 0 0 0 +826 1 3.5256 1 52.30925084700716 16.04861130638131 0 0 0 0 +839 1 3.4855 1 35.24334328159685 38.94852316157538 0 0 0 0 +2313 1 2.0838 1 57.455123864848815 55.135965850023766 0 0 0 0 +8135 1 1.1054 1 56.26666776397481 11.048273991127116 0 0 1 0 +8715 1 1.069 1 33.089131184975045 39.39757074693322 0 0 0 0 +924 1 3.3086 1 41.55880907889308 39.31737418096756 0 0 0 0 +936 1 3.2842 1 13.641094663530836 39.762393867144 0 0 0 0 +1686 1 2.4305 1 13.197156681098686 50.38853953617213 0 0 0 0 +8693 1 1.0703 1 12.610728810526174 44.15043865012347 0 0 0 0 +9386 1 1.0316 1 54.57630894614476 12.334859359346071 0 0 0 0 +1098 1 3.022 1 44.14832414847253 15.727048407766592 0 0 0 0 +7031 1 1.1912 1 11.077973015555523 29.14264930766089 0 1 0 0 +1146 1 2.9657 1 33.89012644139848 33.97955045401272 0 0 0 0 +1205 1 2.9015 1 29.35532369665812 41.538928307812185 0 0 0 0 +1238 1 2.8644 1 39.906009037088026 19.464872027524255 0 0 0 0 +1253 1 2.8463 1 24.60028899431814 39.297432036365265 0 0 0 0 +1292 1 2.8008 1 39.65307886849775 41.84975851185574 0 0 0 0 +1297 1 2.7955 1 18.831738288628333 45.40258086528899 0 0 0 0 +1311 1 2.7798 1 33.114224444272814 41.24012227806397 0 0 0 0 +1335 1 2.754 1 45.04645590392897 39.36337510582233 0 0 0 0 +9282 1 1.0376 1 26.628878165758536 42.958885995733006 0 0 0 0 +1020 1 3.1491 1 60.768071211565506 13.6336199723619 0 0 0 0 +6758 1 1.2177 1 33.00652805722686 11.735792827464168 0 0 1 0 +1475 1 2.6 1 25.12222821463131 34.14565905448225 0 0 0 0 +7604 1 1.1438 1 36.44836690638488 18.120986556337378 0 0 1 0 +9200 1 1.0419 1 34.033749761121825 37.07256214706817 0 0 0 0 +2244 1 2.1187 1 34.45980840425659 12.388659177439965 0 0 0 0 +4472 1 1.5023 1 62.256694515106346 22.397513318287157 0 0 0 0 +2271 1 2.1066 1 55.052489052539485 26.949860728787538 0 0 0 0 +2824 1 1.8871 1 13.59961695668536 48.29468873521025 0 1 0 0 +5921 1 1.3027 1 38.64159581373756 13.985150260984675 0 0 1 0 +1886 1 2.3096 1 42.37270538067058 23.32963343426341 0 0 0 0 +1932 1 2.2815 1 42.70205203105403 18.23422371757612 0 0 0 0 +1989 1 2.2483 1 32.22320672399786 31.976337083792878 0 0 0 0 +1143 1 2.9682 1 47.101590887407895 15.45167429373528 0 0 1 0 +9159 1 1.0441 1 38.07514410981266 16.96814997109896 0 0 0 0 +1246 1 2.857 1 37.12168846110451 15.303352469220034 0 0 1 0 +8536 1 1.0788 1 27.904954039132484 40.17176784654623 0 0 0 0 +5856 1 1.3093 1 53.20673294569117 23.466090964759672 0 0 0 0 +9822 1 1.0088 1 63.49068494134137 15.83812990753988 0 0 0 0 +2405 1 2.0459 1 14.706642652903431 42.17414629169267 0 0 0 0 +2408 1 2.0449 1 44.46085088152153 41.673551128001975 0 0 0 0 +8638 1 1.0727 1 58.012198401824 57.27955877195098 0 0 0 0 +2545 1 1.9909 1 26.006280180254453 37.47746097846873 0 0 0 0 +6729 1 1.2196 1 62.80332574746185 53.86175172957645 0 0 0 0 +2561 1 1.985 1 46.17906062755227 32.2700164966316 0 0 0 0 +567 1 4.1383 1 10.860852424388417 42.140013083067934 0 0 0 0 +2629 1 1.9572 1 35.506297790949716 41.637337436533414 0 0 0 0 +2631 1 1.9568 1 17.697031914274604 33.79263127875804 0 0 0 0 +2671 1 1.9414 1 37.867307907543676 38.71934987696995 0 0 0 0 +6562 1 1.2362 1 36.55336728079724 20.224040626537718 0 0 1 0 +8927 1 1.0562 1 38.12212768723624 37.306696973858436 0 0 0 0 +2753 1 1.9103 1 29.01854732105566 32.1541138853016 0 0 0 0 +2797 1 1.894 1 41.05746634191323 27.860037778582736 0 0 0 0 +2836 1 1.8833 1 19.760454173704876 35.670967023370785 0 0 0 0 +2843 1 1.8818 1 49.21325306621086 14.296854377177057 0 0 0 0 +2243 1 2.1187 1 34.94648797461569 14.357142610901509 0 0 1 0 +8984 1 1.0535 1 35.57625908817165 20.810071134515802 0 0 0 0 +3020 1 1.8199 1 10.896679162217586 37.547781112463625 0 0 0 0 +1803 1 2.3533 1 54.14323277672714 25.008423797722934 0 0 0 0 +3094 1 1.7994 1 35.606572540488216 16.968763334433838 0 0 0 0 +3114 1 1.7915 1 37.36023041320446 41.904309707520746 0 0 0 0 +3151 1 1.7783 1 42.07423320166492 20.100295352097113 0 0 0 0 +3218 1 1.7608 1 15.858672031193938 33.665943858928415 0 0 0 0 +3295 1 1.7414 1 50.01861381687267 20.85482618603466 0 0 0 0 +3315 1 1.7361 1 17.409412365383336 47.037725458213394 0 0 0 0 +3336 1 1.7322 1 35.25417865790216 27.431463738250866 0 0 0 0 +3351 1 1.728 1 47.95782920998391 32.350825943628905 0 0 0 0 +9959 1 1.0029 1 62.100090285758775 53.00462572364712 0 0 0 0 +3396 1 1.7163 1 17.29776544901717 43.810604187075086 0 0 0 0 +3409 1 1.7124 1 11.199930109107735 39.261904309283324 0 0 0 0 +3418 1 1.7114 1 52.43215448860303 28.38901673807935 0 0 0 0 +3433 1 1.7087 1 40.17785867083898 33.369322482025886 0 0 0 0 +9495 1 1.0262 1 26.85665552342102 40.26850160598177 0 0 0 0 +3439 1 1.7061 1 47.08190270092935 33.8157072471912 0 0 0 0 +3440 1 1.7056 1 51.75237212366951 20.282909702154566 0 0 0 0 +3453 1 1.7034 1 52.00718562489987 18.618804905231404 0 0 0 0 +3472 1 1.6992 1 47.13010148677168 29.259257088332998 0 0 0 0 +4261 1 1.5399 1 36.38214385096527 13.240601162439297 0 0 1 0 +5007 1 1.4198 1 45.850566168617064 17.27063596764003 0 0 0 0 +3549 1 1.682 1 47.98539429745084 30.66918916874388 0 0 0 0 +3590 1 1.6735 1 45.53500899699106 44.40705801961884 0 0 0 0 +3604 1 1.6702 1 32.80159186079488 28.738250031699515 0 0 0 0 +9545 1 1.0235 1 14.747555419119312 49.71217862367672 0 1 0 0 +3661 1 1.6595 1 53.88196459667662 14.075829397894434 0 0 0 0 +3723 1 1.6437 1 20.07782770798551 37.682353057210285 0 0 0 0 +8580 1 1.0764 1 31.972451240256976 33.58466598168734 0 0 0 0 +3889 1 1.61 1 39.18586546372093 39.787653910887364 0 0 0 0 +2760 1 1.9081 1 63.57975362177234 17.287864471269202 0 0 1 0 +605 1 4.0029 1 49.247078568192904 18.152110070419937 0 0 0 0 +4000 1 1.5838 1 13.145572822660027 37.39023521261207 0 0 0 0 +4024 1 1.5786 1 45.93160992715367 28.197283227765347 0 0 0 0 +4050 1 1.5744 1 45.888888576923755 42.75899866699067 0 0 0 0 +4056 1 1.5736 1 12.678352329911053 31.064674408812202 0 0 0 0 +1375 1 2.7088 1 38.87491412074401 30.488878578801177 0 0 1 0 +4119 1 1.5635 1 54.72666740048703 15.370029118278666 0 0 0 0 +9783 1 1.0108 1 48.99512704569563 31.519764795891582 0 0 0 0 +4138 1 1.5607 1 25.82294662926591 41.0437389572987 0 0 0 0 +1030 1 3.1257 1 11.517688617247746 46.9832765751679 0 1 0 0 +4180 1 1.553 1 19.434013623964244 34.00054248564178 0 0 0 0 +3303 1 1.7393 1 60.872682829292245 53.53267773128485 0 0 0 0 +4252 1 1.5421 1 22.157744637579807 39.241737835372696 0 0 0 0 +6789 1 1.2137 1 11.565036544073369 9.990954041984343 0 0 1 0 +4323 1 1.5281 1 34.298361212633736 26.186922638648376 0 0 0 0 +8369 1 1.089 1 51.220713557913506 21.550652284770962 0 0 0 0 +9343 1 1.0339 1 37.07518235252341 17.239875233185163 0 0 1 0 +4451 1 1.5063 1 27.207865463436615 34.190350701785135 0 0 0 0 +2775 1 1.9047 1 58.80667600289856 53.72150810373531 0 0 0 0 +4480 1 1.5008 1 43.51570952151649 37.967993066541155 0 0 0 0 +4497 1 1.4979 1 42.64025541453424 36.80962937666705 0 0 0 0 +4143 1 1.5597 1 61.18039985657195 10.194254586732388 0 0 0 0 +4522 1 1.4941 1 14.235942660327586 33.299031172113985 0 0 0 0 +4527 1 1.4937 1 20.950496943023225 34.13323728314044 0 0 0 0 +9801 1 1.0099 1 21.047948900874584 39.86826969939236 0 0 0 0 +4624 1 1.4777 1 13.958576664956741 31.873256263365267 0 0 0 0 +4628 1 1.4773 1 41.019605920759425 21.303852243326084 0 0 0 0 +4381 1 1.5182 1 58.290583018409045 26.549374733533583 0 0 0 0 +4271 1 1.5379 1 60.19305520184584 11.416245970324052 0 0 0 0 +6358 1 1.2561 1 44.60976020524821 43.30073688967851 0 0 0 0 +4762 1 1.4544 1 26.729382149071693 39.039755722270385 0 0 0 0 +4796 1 1.4496 1 37.84033202649424 19.904811231053152 0 0 0 0 +4820 1 1.4459 1 37.299765977408995 40.3015213450493 0 0 0 0 +4868 1 1.4381 1 39.23712859691417 28.023502400876577 0 0 0 0 +4872 1 1.4378 1 37.99894989819266 32.53278716222322 0 0 0 0 +4893 1 1.4337 1 38.4788255858269 33.92014373411623 0 0 0 0 +4913 1 1.4304 1 33.67440811497025 27.494364831838595 0 0 0 0 +4950 1 1.4257 1 27.226404383994673 41.43283788763147 0 0 0 0 +4998 1 1.4204 1 52.31502136772867 22.112022176063753 0 0 0 0 +4989 1 1.4218 1 11.556259768218077 44.77372830033593 0 1 0 0 +5063 1 1.4107 1 13.365610473622286 43.188848472900986 0 0 0 0 +5068 1 1.4098 1 18.77141996257687 36.97046305354236 0 0 0 0 +5108 1 1.4029 1 31.062042361579635 30.603805215669162 0 0 0 0 +5123 1 1.3992 1 20.86560116190994 45.02676685041844 0 0 0 0 +6628 1 1.2292 1 12.231189353813452 48.94949520212886 0 1 0 0 +5190 1 1.3897 1 44.12883409969886 23.531003216921665 0 0 0 0 +9707 1 1.0148 1 48.46723556607936 29.416092838836512 0 0 0 0 +5266 1 1.3805 1 14.63859565322603 34.64066131124903 0 0 0 0 +6557 1 1.2369 1 11.36873391444792 50.40957256794121 0 1 0 0 +9552 1 1.0232 1 19.648930717211265 43.00686804460399 0 0 0 0 +5363 1 1.3683 1 46.41616027094052 30.613599976609216 0 0 0 0 +7372 1 1.1638 1 62.48448768624046 54.97839260556774 0 0 0 0 +5390 1 1.3651 1 25.4013662990187 36.017122828002435 0 0 0 0 +5437 1 1.3584 1 49.94918548696768 15.641585439258401 0 0 0 0 +5510 1 1.3498 1 42.385448946764676 21.57098667230009 0 0 0 0 +8020 1 1.1135 1 11.146446678210932 30.955075833164344 0 1 0 0 +1746 1 2.3871 1 61.837103656240245 16.15289709903347 0 0 1 0 +5549 1 1.3442 1 43.41269324577694 43.70119161878439 0 0 0 0 +5576 1 1.3407 1 41.93087168612756 34.243852842380065 0 0 0 0 +5587 1 1.3389 1 46.7655637057532 45.24007405576653 0 0 0 0 +5601 1 1.3372 1 42.87100643369671 41.181150028944494 0 0 0 0 +5694 1 1.3266 1 41.76896312711079 41.95599559280933 0 0 0 0 +5093 1 1.405 1 62.387743526792164 18.395951733700237 0 0 0 0 +5884 1 1.3063 1 26.57185735956745 35.42529930453942 0 0 0 0 +5932 1 1.3018 1 38.0317938260052 28.67125773049791 0 0 0 0 +6035 1 1.2911 1 45.37123432960863 23.802336138616127 0 0 0 0 +6036 1 1.291 1 15.33634549453504 38.30587247886252 0 0 0 0 +6063 1 1.2872 1 43.01983178923077 42.46106443675535 0 0 0 0 +6094 1 1.284 1 50.90207932535825 29.38951233983492 0 0 0 0 +6180 1 1.2743 1 36.91217920136338 28.038788319129157 0 0 0 0 +6181 1 1.2742 1 16.42528586738043 48.06668471039881 0 0 0 0 +9177 1 1.043 1 29.987809912706552 31.095728136478392 0 0 0 0 +6432 1 1.249 1 49.57926511382341 29.55286483942659 0 0 0 0 +5147 1 1.397 1 11.012599672884406 49.177743455931214 0 1 0 0 +6575 1 1.2351 1 56.74863520906546 26.781129303921634 0 0 0 0 +6626 1 1.2296 1 38.607045679524546 17.93635539561258 0 0 0 0 +6637 1 1.2287 1 16.05022872278062 43.06561568608562 0 0 0 0 +6796 1 1.2127 1 15.182993354336118 32.39588284608114 0 0 0 0 +6803 1 1.2123 1 39.4146266986761 38.43381492054183 0 0 0 0 +6839 1 1.2084 1 14.091122399670969 36.368730259185575 0 0 0 0 +8455 1 1.0841 1 63.08500820555876 52.77333870525498 0 0 0 0 +7940 1 1.1187 1 12.80317264244689 32.38554164805814 0 1 0 0 +7008 1 1.1934 1 49.65732785921609 30.692454470720023 0 0 0 0 +7112 1 1.1846 1 53.67852388934914 27.75861021744224 0 0 0 0 +7130 1 1.1835 1 34.20288763547781 36.0020191407111 0 0 0 0 +7162 1 1.1809 1 28.35987814211682 33.529450491970834 0 0 0 0 +7178 1 1.1799 1 31.216497550887574 40.73914846822162 0 0 0 0 +17 1 25.5929 1 59.16195510046014 40.0475485205291 0 0 0 0 +7250 1 1.1739 1 41.0677649999395 26.389535571105903 0 0 0 0 +3258 1 1.751 1 62.65080090209237 23.950084102199213 0 0 0 0 +7264 1 1.1734 1 42.22440776315708 43.35755314797204 0 0 0 0 +6006 1 1.2939 1 61.75781447900299 59.794915339039825 0 0 0 0 +8569 1 1.0769 1 12.13349130199637 38.230734943687835 0 0 0 0 +2767 1 1.9064 1 56.34762938103495 53.48865716150091 0 0 0 0 +7327 1 1.1682 1 23.271580642960338 33.83876035282353 0 0 0 0 +7333 1 1.1678 1 11.806516836056229 30.037755753263895 0 0 0 0 +7379 1 1.1632 1 27.665407416949254 42.63565949313833 0 0 0 0 +2713 1 1.9259 1 63.33267354544042 11.18440141578792 0 0 0 0 +7460 1 1.1563 1 45.743139843872406 29.546762462498776 0 0 0 0 +7473 1 1.1549 1 53.419627514125224 26.614396933559043 0 0 0 0 +9322 1 1.035 1 37.520821306467724 18.169858873692586 0 0 0 0 +7537 1 1.1497 1 27.60167033230894 32.61851602609817 0 0 0 0 +7574 1 1.1461 1 20.889209235246295 38.80756890050824 0 0 0 0 +7633 1 1.1419 1 26.576922826820827 33.036938218148535 0 0 0 0 +7648 1 1.1404 1 31.016375779530534 33.11976735641855 0 0 0 0 +7661 1 1.1392 1 30.535607005501625 32.05419950866602 0 0 0 0 +1729 1 2.4068 1 11.6650106570362 52.17316959881492 0 1 0 0 +7697 1 1.1367 1 29.945588862992313 33.19117715314967 0 0 0 0 +7770 1 1.1308 1 25.77287489799074 42.33675882158441 0 0 0 0 +7792 1 1.1293 1 31.735884598828196 29.58099845285611 0 0 0 0 +7814 1 1.1279 1 14.485197079171677 37.46356671872724 0 0 0 0 +7852 1 1.1248 1 20.054129703670164 43.974404817984016 0 0 0 0 +7895 1 1.1217 1 41.156715321620005 43.04842995505035 0 0 0 0 +4785 1 1.4509 1 35.748483439060706 19.18650844296434 0 0 1 0 +7941 1 1.1186 1 43.1339358467942 34.245662389498115 0 0 0 0 +8037 1 1.1123 1 25.339302144201778 43.32775782965171 0 0 0 0 +8013 1 1.1137 1 10.293068997353283 44.68424113897238 0 1 0 0 +1904 1 2.2971 1 60.38297629560764 61.87195529121335 0 0 0 0 +8182 1 1.1023 1 45.88799629927677 41.080980721170334 0 0 0 0 +8871 1 1.0589 1 32.47746881614435 30.35749338378177 0 0 0 0 +8206 1 1.1012 1 44.29001550853123 17.72029766104093 0 0 0 0 +8285 1 1.0959 1 48.62190083295452 20.622877412776504 0 0 0 0 +8302 1 1.0944 1 18.44217442495531 35.08569027820755 0 0 0 0 +8319 1 1.0927 1 39.762720472024995 32.09666380337404 0 0 0 0 +5374 1 1.3675 1 59.76509932621137 10.083510701157994 0 0 0 0 +5513 1 1.3496 1 58.99718822266526 12.246584767255836 0 0 0 0 +600 1 4.0221 1 60.25589587149994 56.25302593169586 0 0 0 0 +4272 1 1.5377 1 50.77781951265265 13.654969208467508 0 0 1 0 +6865 1 1.2053 1 32.85720461176839 10.604853580210769 0 0 1 0 +108 1 9.414 1 57.30411219332998 20.119312794378157 0 0 0 0 +7984 1 1.1154 1 62.654451964987665 59.02681991835429 0 0 0 0 +2887 1 1.8657 1 52.332644063528974 13.010579609985802 0 0 0 0 +632 1 3.927 1 56.68038570627997 13.508754853528643 0 0 0 0 +1570 1 2.5183 1 57.96317816720037 10.612197899872568 0 0 0 0 +781 1 3.6204 1 60.67768945221664 25.65132119763454 0 0 0 0 +9419 1 1.0296 1 58.50625892286157 58.20161712154007 0 0 0 0 +2529 1 1.9999 1 10.589920762648905 54.03661088861205 0 0 0 0 +3544 1 1.6837 1 56.097853785059954 25.465955409046515 0 0 0 0 +9606 1 1.0204 1 53.74636469824011 12.852902425711713 0 0 0 0 +9140 1 1.045 1 61.75418936770645 58.33387351891163 0 0 0 0 +9350 1 1.0336 1 58.43644160232753 25.190970935654565 0 0 0 0 +1387 1 2.6993 1 59.84440593693293 59.49250203411478 0 0 0 0 +5695 1 1.3265 1 53.582436054265685 11.776437388261462 0 0 1 0 +7758 1 1.1316 1 57.45396048398975 25.557354392372982 0 0 0 0 +4461 1 1.5037 1 61.705023231365246 11.574838858658744 0 0 0 0 +6108 1 1.2828 1 60.123244094396526 15.677942667874326 0 0 1 0 +4222 1 1.5465 1 62.684860061859254 20.968993767910586 0 0 0 0 +9824 1 1.0088 1 62.99903250215423 14.61811403350157 0 0 0 0 +5286 1 1.3775 1 62.69179071841003 12.623264732412684 0 0 0 0 +3370 1 1.7234 1 54.91608141202255 11.050800115762133 0 0 0 0 +7019 1 1.1923 1 61.36873478113042 23.39353079977532 0 0 0 0 +5774 1 1.3168 1 10.062332642204813 28.03599097425468 0 0 1 0 +4383 1 1.5173 1 10.124823790065975 50.99879448649947 0 0 0 0 +2504 1 2.0087 1 9.991453422675384 32.50411291213858 0 1 0 0 +8740 1 1.0674 1 9.96908946512555 38.61817762977279 0 0 0 0 +5 1 53.3452 1 33.64631439503559 69.20632078630118 0 0 0 0 +6848 1 1.2078 1 47.202065587861306 106.8871527997061 0 0 0 0 +8029 1 1.1128 1 52.89998476501549 111.46368489355213 0 0 0 0 +2135 1 2.1622 1 55.95366085848594 107.82838227232645 0 0 0 0 +9039 1 1.0505 1 46.66208439639257 109.16143007478021 0 0 0 0 +183 1 7.1535 1 19.628350184929452 100.98109349507067 0 0 0 0 +196 1 6.9228 1 43.701779640190985 98.79070172428742 0 0 0 0 +210 1 6.6285 1 20.61859893221387 110.21673033432005 0 0 0 0 +19 1 22.7491 1 34.6077536372408 114.16725147522095 0 0 0 0 +264 1 6.0937 1 51.51863733967346 94.03527112257845 0 0 0 0 +286 1 5.8578 1 62.53661751397902 79.69821890273849 0 0 0 0 +296 1 5.7976 1 53.25634063594402 103.546724162042 0 0 0 0 +361 1 5.2589 1 26.847358000273747 97.62921146216213 0 0 0 0 +411 1 4.8876 1 16.644715693660398 114.21359594052198 0 0 0 0 +534 1 4.2484 1 57.70382247376281 84.9957662865745 0 0 0 0 +546 1 4.2131 1 36.290943306332764 97.80668592897838 0 0 0 0 +2384 1 2.0542 1 13.398391839751476 113.16480014016683 0 0 0 0 +574 1 4.1145 1 25.074179149394205 102.11800282310529 0 0 0 0 +4970 1 1.4239 1 10.424515718069618 85.48176427069185 0 1 0 0 +652 1 3.8853 1 56.822031142393435 88.97765395220036 0 0 0 0 +1059 1 3.0784 1 46.97042173932284 102.48801116139688 0 0 0 0 +2628 1 1.9573 1 21.3584205985184 116.95253213360395 0 0 0 0 +223 1 6.4364 1 52.118847435898154 114.99964176259597 0 0 0 0 +867 1 3.4314 1 33.722613312892044 101.2536217337373 0 0 0 0 +875 1 3.415 1 61.90060988563905 68.40246831176692 0 0 0 0 +880 1 3.3897 1 39.90568987625906 102.22700526350046 0 0 0 0 +895 1 3.3646 1 47.26639202088181 111.2776131914347 0 0 0 0 +1012 1 3.1586 1 53.30174248397758 98.1121857522763 0 0 0 0 +1014 1 3.1565 1 14.181976045761017 110.57696689189548 0 0 0 0 +1099 1 3.0209 1 55.74794528109329 99.92174082345082 0 0 0 0 +1131 1 2.976 1 11.434840643931219 100.94837480953191 0 0 0 0 +1227 1 2.8794 1 14.701194834435807 104.33279316560667 0 0 0 0 +1310 1 2.7799 1 43.090369653746556 104.53291000509647 0 0 0 0 +4936 1 1.4277 1 11.131541273632925 115.26539252934111 0 0 0 0 +3790 1 1.6319 1 58.9579668231131 104.86492373395822 0 0 0 0 +1400 1 2.6823 1 21.07169695599918 96.03136912886171 0 0 0 0 +7401 1 1.1612 1 62.06573658133837 113.81046585596864 0 0 0 0 +1465 1 2.6063 1 16.52915102896241 108.18758015658032 0 0 0 0 +1466 1 2.6055 1 53.59664503254448 88.76241882483006 0 0 0 0 +1586 1 2.5042 1 48.72774774716604 100.39436694786939 0 0 0 0 +1589 1 2.502 1 50.480185028798545 98.17233750444198 0 0 0 0 +1613 1 2.4836 1 20.067525259755573 105.74423497791095 0 0 0 0 +1632 1 2.4657 1 19.12390563169569 92.92109181965061 0 0 0 0 +6352 1 1.2568 1 15.637152877210434 117.08439007248235 0 0 0 0 +1661 1 2.4463 1 53.3735456140381 107.58175537556713 0 0 0 0 +1668 1 2.4439 1 46.27791222053626 93.93996741771068 0 0 0 0 +5153 1 1.3956 1 12.180911257513014 114.34930721215659 0 0 0 0 +1718 1 2.412 1 54.79677399295187 91.37571032224017 0 0 0 0 +1776 1 2.3708 1 28.834623243477164 100.7932066808443 0 0 0 0 +1845 1 2.332 1 31.011848885220928 98.41313226698641 0 0 0 0 +1877 1 2.3156 1 39.893908033757796 96.27710825448057 0 0 0 0 +4067 1 1.5716 1 62.98134333571782 72.44106166517024 0 0 0 0 +1931 1 2.2823 1 57.12893030447247 102.95838140371093 0 0 0 0 +204 1 6.7727 1 60.28392526711077 108.76534165439841 0 0 0 0 +2016 1 2.23 1 61.16414377811947 74.82555944458923 0 0 0 0 +2029 1 2.2229 1 37.72817560376545 100.63983745475598 0 0 0 0 +2048 1 2.2127 1 29.669218288425053 102.82074091879778 0 0 0 0 +2085 1 2.1901 1 48.170958023370005 98.18376391049004 0 0 0 0 +2104 1 2.1818 1 23.29965829528316 98.14327863381189 0 0 0 0 +9625 1 1.0195 1 26.647530161357484 104.11781819454905 0 0 0 0 +9080 1 1.0481 1 55.33746449406946 113.1119933952277 0 0 0 0 +2298 1 2.0938 1 61.108842848941215 72.70230605219017 0 0 0 0 +1031 1 3.1251 1 47.415662903031695 115.38261110898635 0 0 0 0 +2342 1 2.0716 1 60.7803572901875 84.78030013973033 0 0 0 0 +2459 1 2.0253 1 32.96702985302739 97.53113644676579 0 0 0 0 +2460 1 2.025 1 54.863674338913256 86.89981641912627 0 0 0 0 +2479 1 2.0171 1 17.924437892879276 96.29965069681907 0 0 0 0 +969 1 3.2196 1 13.840225906943427 92.13321325418538 0 1 0 0 +341 1 5.3799 1 58.86001663315635 114.5500839085094 0 0 0 0 +2509 1 2.0069 1 23.415197134865554 96.0527075124839 0 0 0 0 +9538 1 1.0238 1 60.77565186132296 70.23425712830431 0 0 0 0 +9934 1 1.0037 1 13.641594547368326 102.77892229139098 0 0 0 0 +2807 1 1.8913 1 16.305765191439924 106.0194535592548 0 0 0 0 +2817 1 1.8898 1 62.872403991428776 86.93206782031979 0 0 0 0 +2903 1 1.8623 1 55.330465281814455 94.78089326623883 0 0 0 0 +2961 1 1.8444 1 45.32567455640256 104.26793695747492 0 0 0 0 +2972 1 1.8411 1 22.373622164791048 94.31306708025409 0 0 0 0 +3083 1 1.8053 1 51.53014870235686 90.11546095620115 0 0 0 0 +8566 1 1.0771 1 15.624074942736788 89.57523702148514 0 1 0 0 +3163 1 1.7762 1 30.79388853482638 101.20733561825769 0 0 0 0 +9929 1 1.004 1 58.72064559009926 79.63345139895297 0 0 0 0 +8789 1 1.0641 1 62.96262999844164 103.64392641887868 0 0 0 0 +3201 1 1.766 1 23.114737198987527 106.92023818395663 0 0 0 0 +3207 1 1.7648 1 55.60825465007569 97.55905558271785 0 0 0 0 +3282 1 1.7447 1 15.254119814553004 100.83162650556524 0 0 0 0 +7242 1 1.1744 1 44.91929448360093 107.96474243833268 0 0 0 0 +3328 1 1.733 1 14.447167169224162 108.16563531286944 0 0 0 0 +6100 1 1.2831 1 56.873732842116105 110.74650890994782 0 0 0 0 +3384 1 1.72 1 61.24403324471752 64.95671820539967 0 0 0 0 +725 1 3.7356 1 14.806779785153934 98.13100232539144 0 1 0 0 +9924 1 1.0041 1 55.02312617480991 93.37283189595566 0 0 0 0 +3455 1 1.7027 1 13.641967353942707 100.48326675016494 0 0 0 0 +3489 1 1.6957 1 47.90152307135388 92.69747488301117 0 0 0 0 +3505 1 1.6931 1 60.73379277762791 82.95391986197296 0 0 0 0 +3558 1 1.6793 1 44.77345762360236 105.91291701701465 0 0 0 0 +3561 1 1.6789 1 22.455524009224117 105.38752001790772 0 0 0 0 +3594 1 1.6724 1 16.927981465212717 104.39293037078147 0 0 0 0 +3616 1 1.6685 1 57.6304106142621 101.16426078427787 0 0 0 0 +3619 1 1.6673 1 59.82482531034166 77.29155912087123 0 0 0 0 +3622 1 1.6671 1 24.93572156807563 106.81371858934816 0 0 0 0 +3664 1 1.6571 1 57.527969308284334 105.66845229095198 0 0 0 0 +3685 1 1.6523 1 18.047221073131997 106.04095218687507 0 0 0 0 +3699 1 1.6473 1 46.36780778968348 105.78491539326086 0 0 0 0 +3809 1 1.6261 1 50.76385659637319 100.20851359518963 0 0 0 0 +3450 1 1.7041 1 19.3172345256637 116.07432608920283 0 0 0 0 +3912 1 1.6057 1 62.0856767465587 71.12831391799739 0 0 0 0 +3947 1 1.5975 1 56.00103234656144 105.96779443144764 0 0 0 0 +3954 1 1.5955 1 57.87487860297681 82.09218676261656 0 0 0 0 +4108 1 1.565 1 16.43717530754938 111.09034613654343 0 0 0 0 +4112 1 1.5642 1 23.841664087416937 104.60994586407071 0 0 0 0 +4133 1 1.561 1 51.56919412642588 106.73924793012536 0 0 0 0 +3999 1 1.5841 1 49.907886627474795 111.70696931352155 0 0 0 0 +4197 1 1.55 1 22.516292681615234 113.80145862107422 0 0 0 0 +4237 1 1.5439 1 25.326198530704367 104.92856374207129 0 0 0 0 +4249 1 1.5422 1 17.103840336070853 93.86480999539278 0 0 0 0 +4262 1 1.5397 1 24.11480190597896 108.17798397998514 0 0 0 0 +4269 1 1.5381 1 49.2436603012176 102.6671139122375 0 0 0 0 +4274 1 1.5374 1 18.34856008006103 94.67663253767068 0 0 0 0 +4351 1 1.5228 1 59.942780691964366 86.74434076900629 0 0 0 0 +4574 1 1.4852 1 53.04235011407969 90.64960505903409 0 0 0 0 +5406 1 1.3628 1 46.46277436011285 107.91471314999357 0 0 0 0 +7555 1 1.148 1 49.000236877163694 112.71154524811526 0 0 0 0 +4698 1 1.4651 1 50.246276675413554 101.61457682752825 0 0 0 0 +4706 1 1.4641 1 35.97164677362748 100.58225193520678 0 0 0 0 +4734 1 1.4588 1 61.354762440610486 86.3729499070697 0 0 0 0 +4749 1 1.457 1 32.705657113078054 99.1434467523568 0 0 0 0 +4800 1 1.4489 1 31.656055616953 102.49865983612983 0 0 0 0 +8344 1 1.0909 1 16.453943133764874 90.26738444330138 0 1 0 0 +4840 1 1.4429 1 54.6359868551355 109.01226904275406 0 0 0 0 +735 1 3.7083 1 13.21258956410292 116.6615289677607 0 0 0 0 +5011 1 1.4191 1 20.576987029289228 94.12018747470424 0 0 0 0 +9446 1 1.0286 1 62.027560828720894 114.871318614151 0 0 0 0 +5106 1 1.4035 1 59.247253098051395 82.65067586960505 0 0 0 0 +5125 1 1.3991 1 41.14914484838094 104.13706431927574 0 0 0 0 +5141 1 1.3977 1 42.23926573283382 102.65869665854028 0 0 0 0 +5144 1 1.3974 1 27.524287887980122 103.3076110079099 0 0 0 0 +5203 1 1.3882 1 24.80830957032649 95.08468170998984 0 0 0 0 +7490 1 1.153 1 45.606899681494156 107.02694985615051 0 0 0 0 +9953 1 1.003 1 54.397385762829785 96.33339289906363 0 0 0 0 +5319 1 1.3735 1 17.31609842467502 92.42475969466894 0 0 0 0 +5396 1 1.3642 1 47.276631598989866 96.70267981046872 0 0 0 0 +5405 1 1.3629 1 44.77453486709596 102.7781318697799 0 0 0 0 +5419 1 1.361 1 39.729117544269506 99.88169661991056 0 0 0 0 +3578 1 1.675 1 12.962715950104535 94.38498098946621 0 1 0 0 +5545 1 1.3448 1 60.419904232163404 63.68025337722689 0 0 0 0 +5836 1 1.311 1 50.26579100191666 107.22154782638228 0 0 0 0 +5566 1 1.3421 1 30.960086863324307 96.59676581802977 0 0 0 0 +8866 1 1.0591 1 62.890425635048736 112.44477382939682 0 0 0 0 +5600 1 1.3373 1 22.83576999753046 103.65754010991627 0 0 0 0 +5608 1 1.3359 1 29.726833664554338 96.15743613747783 0 0 0 0 +5618 1 1.3349 1 23.693055298796292 99.81641035931956 0 0 0 0 +5688 1 1.3277 1 31.714719213313895 100.05240137957041 0 0 0 0 +5731 1 1.3228 1 17.16861727822393 97.65819484880299 0 0 0 0 +5733 1 1.3226 1 52.44762628106402 100.1561719603466 0 0 0 0 +5753 1 1.3201 1 49.37983514497815 110.4056521535671 0 0 0 0 +5843 1 1.3103 1 46.40991943428573 95.74527753788637 0 0 0 0 +5897 1 1.305 1 38.646911412663336 99.15710813454682 0 0 0 0 +5903 1 1.3046 1 48.351937690119975 95.93005873577769 0 0 0 0 +5536 1 1.3464 1 22.75006471999093 116.1140186429966 0 0 0 0 +6022 1 1.2922 1 51.61223614830924 108.12250379246936 0 0 0 0 +400 1 4.9357 1 11.689572499471604 88.68830110432461 0 1 0 0 +6069 1 1.2866 1 56.577164249760365 91.52496672984961 0 0 0 0 +6083 1 1.2851 1 34.022252990383876 96.39947654844433 0 0 0 0 +6121 1 1.2812 1 59.21111978424475 78.61605131751357 0 0 0 0 +7356 1 1.1651 1 63.23479886229715 111.40628883991772 0 0 0 0 +6188 1 1.2731 1 60.79045366753066 66.36073586969998 0 0 0 0 +6195 1 1.2719 1 26.66174729064331 105.23466738821989 0 0 0 0 +8774 1 1.0648 1 57.615500564092756 111.61569786801023 0 0 0 0 +6311 1 1.2601 1 49.199614027370096 96.84265653365301 0 0 0 0 +1967 1 2.2607 1 61.609960693124094 104.52924067035332 0 0 0 0 +9848 1 1.0077 1 58.213044689100066 80.83240133284662 0 0 0 0 +6412 1 1.2505 1 21.171860744767354 114.07600891173303 0 0 0 0 +6462 1 1.2466 1 58.781896953437816 103.45733363345366 0 0 0 0 +6502 1 1.2429 1 62.40194369695053 73.6550715521376 0 0 0 0 +6537 1 1.2385 1 62.297795668766845 84.28684359007238 0 0 0 0 +6608 1 1.231 1 48.918037398536306 91.6557012457665 0 0 0 0 +7371 1 1.1638 1 15.442600704700297 90.67755963037713 0 1 0 0 +5544 1 1.3452 1 63.12835899670466 114.44273842507418 0 0 0 0 +6621 1 1.2302 1 12.722396679082282 99.36703349117597 0 0 0 0 +6704 1 1.2217 1 43.436705955541775 94.72785222523156 0 0 0 0 +9875 1 1.0061 1 29.921142455937 97.24751533354504 0 0 0 0 +4174 1 1.5535 1 20.71629805469617 115.3492875746384 0 0 0 0 +4369 1 1.5198 1 63.017261972538726 105.71039383262722 0 0 0 0 +1622 1 2.4747 1 11.79436888194201 97.8087543188737 0 1 0 0 +3284 1 1.7442 1 12.99620342402336 96.08366081858736 0 1 0 0 +9643 1 1.0183 1 59.20836510809096 80.49344704980004 0 0 0 0 +1104 1 3.0137 1 54.86856678373958 111.18105069428594 0 0 0 0 +9125 1 1.046 1 57.76151334018269 104.40218847870705 0 0 0 0 +7000 1 1.1942 1 19.377871886932517 96.87698156599927 0 0 0 0 +7029 1 1.1913 1 60.22424391901769 88.03955771359348 0 0 0 0 +7047 1 1.1896 1 53.69099095010131 100.16617793825533 0 0 0 0 +7071 1 1.1882 1 61.021421823928534 76.5245078139782 0 0 0 0 +10000 1 1 1 44.36085028114173 94.11690183043294 0 0 0 0 +6944 1 1.1985 1 22.047668977403408 115.07269579618232 0 0 0 0 +7139 1 1.183 1 44.88939969664278 95.00806598902422 0 0 0 0 +7148 1 1.1825 1 12.57800762859025 102.66617642412523 0 0 0 0 +7197 1 1.1783 1 39.69923137419893 98.54998614602309 0 0 0 0 +7653 1 1.14 1 45.636701412597155 108.80714563991002 0 0 0 0 +7234 1 1.1755 1 59.994541675707275 75.95184554281667 0 0 0 0 +7279 1 1.1727 1 14.442034805100437 102.04284499835735 0 0 0 0 +7282 1 1.1725 1 16.42168412282745 96.378557402888 0 0 0 0 +9593 1 1.0212 1 11.86073362635678 91.6049146556664 0 1 0 0 +8451 1 1.0842 1 11.190291767277529 84.51061370623029 0 1 0 0 +3802 1 1.6285 1 11.073617817610018 113.34315470930076 0 0 0 0 +9313 1 1.0355 1 50.514253532209835 108.3326397497489 0 0 0 0 +5475 1 1.3533 1 14.48688148673355 89.96866148944869 0 1 0 0 +8891 1 1.0579 1 59.84582332242316 102.68297319473767 0 0 0 0 +7388 1 1.1624 1 13.303468937585194 101.79816738649117 0 0 0 0 +7399 1 1.1615 1 60.85113417461941 103.0930470877961 0 0 0 0 +7402 1 1.1611 1 61.31183920846095 87.63549586143041 0 0 0 0 +7432 1 1.1584 1 55.96378693188033 92.74349574858061 0 0 0 0 +9340 1 1.0341 1 55.775775217143675 115.05703818475811 0 0 0 0 +7510 1 1.1518 1 38.9407074833958 97.69857646089451 0 0 0 0 +7523 1 1.1509 1 21.85070405593177 97.61662436108286 0 0 0 0 +7580 1 1.1454 1 46.551240094827946 113.42637419910137 0 0 0 0 +9755 1 1.0126 1 51.693799931010474 99.35035025535346 0 0 0 0 +7684 1 1.1377 1 58.81604822041859 87.45107731848488 0 0 0 0 +6886 1 1.2035 1 63.178447739211634 70.24892120606194 0 0 0 0 +7730 1 1.1344 1 29.561975192063755 99.25549806184664 0 0 0 0 +7762 1 1.1314 1 47.69554533846499 113.3678271945476 0 0 0 0 +7763 1 1.1314 1 41.334547768274234 95.33623081779001 0 0 0 0 +7929 1 1.1193 1 44.19869677278089 107.13860894090804 0 0 0 0 +4286 1 1.5352 1 50.468683110065214 109.5792643130453 0 0 0 0 +7993 1 1.1149 1 27.679281134859686 102.07415101670732 0 0 0 0 +5148 1 1.3967 1 58.765746338559126 102.15391768765546 0 0 0 0 +8041 1 1.112 1 24.01294213728663 105.8561036137368 0 0 0 0 +8046 1 1.1115 1 15.567394298044066 102.21705538069229 0 0 0 0 +8074 1 1.1093 1 62.548745033380605 83.15995108443329 0 0 0 0 +8091 1 1.108 1 62.12569314800232 76.24445768135325 0 0 0 0 +9800 1 1.0099 1 55.238352499894845 85.52452489470012 0 0 0 0 +8108 1 1.1072 1 38.22571850138331 96.02262308448644 0 0 0 0 +8127 1 1.1059 1 27.17826296722366 100.73737350605967 0 0 0 0 +8141 1 1.1051 1 59.2643063445494 88.62391998973672 0 0 0 0 +8181 1 1.1024 1 19.619196490302677 94.8195066878861 0 0 0 0 +8240 1 1.0988 1 33.95399574865623 99.01145847264887 0 0 0 0 +8253 1 1.0976 1 18.127452911993164 107.347473963248 0 0 0 0 +8287 1 1.0957 1 14.351446443212062 106.27359483952212 0 0 0 0 +1496 1 2.5805 1 52.44784101313397 109.81596728549351 0 0 0 0 +8317 1 1.0929 1 15.168396399981914 106.96383117609156 0 0 0 0 +9845 1 1.008 1 63.37531673686015 71.26812914193158 0 0 0 0 +8432 1 1.0859 1 46.7211888122124 104.50709111822185 0 0 0 0 +8435 1 1.0857 1 23.76140480397075 94.53724032168859 0 0 0 0 +8439 1 1.0853 1 47.985440467265065 94.07536961119513 0 0 0 0 +8462 1 1.0837 1 16.827700383893305 109.91704191703822 0 0 0 0 +8475 1 1.0827 1 16.181150242935498 103.11489480895654 0 0 0 0 +8487 1 1.0818 1 60.75668294669702 71.22428315209946 0 0 0 0 +8510 1 1.0802 1 28.522819654407865 103.96956743605024 0 0 0 0 +6033 1 1.2912 1 55.78655287750612 116.18362812210965 0 0 0 0 +8553 1 1.0778 1 47.58168582362771 95.07116663442142 0 0 0 0 +4821 1 1.4459 1 11.799643692136586 85.58207093228735 0 1 0 0 +8745 1 1.0673 1 45.65279192122411 109.84834442069834 0 0 0 0 +8784 1 1.0642 1 17.29562723342854 90.90954781297654 0 0 0 0 +8816 1 1.0624 1 27.60111332388285 104.53525734988793 0 0 0 0 +8832 1 1.0614 1 19.81415872346516 114.23887851765481 0 0 0 0 +8857 1 1.0597 1 36.01778956844708 102.03487401821386 0 0 0 0 +8862 1 1.0593 1 21.663922014882157 106.5120576881501 0 0 0 0 +8863 1 1.0592 1 32.09837620735988 96.31527164752112 0 0 0 0 +5710 1 1.3248 1 59.96616013114533 103.86760634204002 0 0 0 0 +8955 1 1.055 1 21.397133815650314 104.62071959245425 0 0 0 0 +8971 1 1.0541 1 43.5062857921393 106.34629066025447 0 0 0 0 +8988 1 1.0532 1 19.281271710000052 95.78292693926385 0 0 0 0 +7191 1 1.179 1 10.233272311806441 114.39709212480287 0 0 0 0 +9161 1 1.044 1 18.118340677071117 91.52102877704486 0 0 0 0 +9215 1 1.0412 1 18.209547100485718 104.76444506999569 0 0 0 0 +772 1 3.6426 1 48.92035257152528 105.19831245691519 0 0 0 0 +9222 1 1.0408 1 43.581233015518805 102.72961464122575 0 0 0 0 +9279 1 1.0378 1 62.04871397525218 66.14978560954646 0 0 0 0 +9280 1 1.0378 1 21.369340953025972 93.33513529995967 0 0 0 0 +7380 1 1.163 1 54.83721070688121 106.61949272433397 0 0 0 0 +9320 1 1.0351 1 56.5636777008612 104.65666304765593 0 0 0 0 +4618 1 1.4785 1 15.999781964887688 92.90280270984682 0 1 0 0 +4581 1 1.4838 1 61.65379412334682 112.5991052505566 0 0 0 0 +9400 1 1.0307 1 55.66321521167543 96.17546275384393 0 0 0 0 +1209 1 2.8982 1 15.140492123558975 94.87223236063801 0 1 0 0 +9420 1 1.0296 1 37.15439104989806 102.37167985416163 0 0 0 0 +9650 1 1.0179 1 42.35794455936201 95.01760996969433 0 0 0 0 +9469 1 1.0273 1 59.02192387651729 81.47541306922159 0 0 0 0 +9502 1 1.0259 1 10.71612321589405 99.12175146380456 0 0 0 0 +1121 1 2.9867 1 48.54015917199273 108.44755660936535 0 0 0 0 +9329 1 1.0346 1 48.66147394578625 113.73516911808804 0 0 0 0 +5275 1 1.3791 1 16.29184243650043 91.54632885525108 0 0 0 0 +7102 1 1.1854 1 14.719483809272202 88.75949284372466 0 0 0 0 +9038 1 1.0505 1 55.7199917648647 114.04415412371445 0 0 0 0 +2491 1 2.0134 1 11.950451274088806 111.81514450392956 0 0 0 0 +8823 1 1.0618 1 56.71129095760521 116.89129444306812 0 0 0 0 +6155 1 1.2776 1 18.09571741814021 116.88903163694532 0 0 0 0 +1648 1 2.4535 1 63.456202860437664 75.07726900461155 0 0 0 0 +7113 1 1.1846 1 46.16959419898665 117.03828640663204 0 0 0 0 +7754 1 1.1318 1 10.015741252902748 115.83645466847936 0 0 0 0 +7369 1 1.164 1 9.969876087769475 98.34642536799905 0 0 0 0 +7225 1 1.1761 1 48.41572181664998 117.22653582902123 0 0 0 0 +5960 1 1.2989 1 16.89668252739845 117.23440189622342 0 0 0 0 +7967 1 1.1166 1 13.093943892513412 152.7194043292777 0 1 0 0 +9566 1 1.0221 1 58.00444530546631 129.1218503516055 0 0 0 0 +4746 1 1.4572 1 54.64362273881403 119.0816143163472 0 0 0 0 +141 1 7.8511 1 38.11759560224471 131.8322296859251 0 0 0 0 +170 1 7.3576 1 50.34446513172632 121.55617045353962 0 0 0 0 +219 1 6.5064 1 15.897341371339346 120.92678989742633 0 0 0 0 +244 1 6.2615 1 31.507884119316994 129.7070695934164 0 0 0 0 +353 1 5.3242 1 20.823259199269103 127.42232997544805 0 0 0 0 +7089 1 1.1871 1 59.27679376164719 117.76797928619158 0 0 0 0 +8162 1 1.1036 1 11.312940821727219 128.43147905800225 0 0 0 0 +489 1 4.4494 1 44.20497480474461 123.76491273209312 0 0 0 0 +544 1 4.2225 1 40.10079554761608 126.35924681092864 0 0 0 0 +550 1 4.1961 1 51.487033579710285 129.13787564237083 0 0 0 0 +744 1 3.6939 1 19.586855980607915 145.37869011260844 0 1 0 0 +630 1 3.9303 1 29.764112913999003 134.4208919307257 0 0 0 0 +637 1 3.919 1 19.439290701660365 134.72209186915555 0 0 0 0 +5779 1 1.3163 1 60.92334762890005 128.5773166284785 0 0 0 0 +664 1 3.8557 1 55.72389272506843 128.258642011445 0 0 0 0 +699 1 3.7858 1 29.550411782118992 138.36843672273272 0 0 0 0 +7513 1 1.1517 1 11.152665508232719 133.12026292371183 0 0 0 0 +7328 1 1.1682 1 11.122254932156187 135.28476139783155 0 0 0 0 +767 1 3.6482 1 23.917089770238466 131.07800127591153 0 0 0 0 +3760 1 1.6378 1 56.87613842820234 120.56539933651763 0 0 0 0 +791 1 3.6079 1 47.78666567900912 130.33398365897642 0 0 0 0 +836 1 3.4952 1 16.346049591125233 130.9618223722896 0 0 0 0 +3318 1 1.7357 1 12.04163696121329 134.1897137347882 0 0 0 0 +898 1 3.3585 1 45.52141950415548 127.73138352485707 0 0 0 0 +918 1 3.316 1 27.2772851453939 131.8644175694293 0 0 0 0 +975 1 3.2136 1 22.16616160499538 136.81538790474923 0 0 0 0 +9658 1 1.0176 1 43.183070201634784 129.85736992792565 0 0 0 0 +4464 1 1.5032 1 60.493102059561735 127.30740016759394 0 0 0 0 +1067 1 3.0623 1 24.76838750645169 126.38868338420376 0 0 0 0 +1087 1 3.0351 1 20.65920775467519 131.53111549058326 0 0 0 0 +1118 1 2.9952 1 24.95000320900464 137.77918972822908 0 0 0 0 +8308 1 1.0941 1 45.395085098557544 119.03439541291854 0 0 0 0 +1139 1 2.972 1 16.74172699833404 127.82652430441317 0 0 0 0 +1295 1 2.7964 1 18.915615423358354 140.96810509997746 0 0 0 0 +1327 1 2.7606 1 21.859922312700387 119.37253964361322 0 0 0 0 +4217 1 1.5471 1 18.617959348694384 143.04910283727418 0 1 0 0 +1551 1 2.5331 1 34.32949219341185 135.34092159511388 0 0 0 0 +1591 1 2.5002 1 21.641699471680923 143.07608812082202 0 0 0 0 +1605 1 2.4876 1 23.953834184318843 120.8080190896242 0 0 0 0 +1720 1 2.4103 1 20.33793335784522 138.88701815880174 0 0 0 0 +1739 1 2.3971 1 22.80831159802798 122.93490591409181 0 0 0 0 +1760 1 2.3781 1 18.408107366098122 124.51532482007286 0 0 0 0 +1892 1 2.3051 1 44.859115667015196 130.46084720410022 0 0 0 0 +1926 1 2.2859 1 45.26571645508948 120.63372816972755 0 0 0 0 +1958 1 2.2662 1 12.264487655711678 127.07638181143126 0 0 0 0 +4428 1 1.5096 1 14.202455555474026 132.16511290773005 0 1 0 0 +2218 1 2.1281 1 51.0342633940096 126.11157390836864 0 0 0 0 +2292 1 2.0977 1 24.56838323675032 140.24286986476218 0 0 0 0 +2301 1 2.0923 1 14.315010237317189 126.49904644920777 0 0 0 0 +2348 1 2.0692 1 13.831238170985143 128.48517282246044 0 0 0 0 +621 1 3.9539 1 56.46073367029561 124.48430650094342 0 0 0 0 +2396 1 2.0497 1 24.79135430155985 123.89739635326865 0 0 0 0 +2419 1 2.0415 1 18.439318836652646 137.499209336563 0 0 0 0 +2422 1 2.0399 1 25.54218436111553 128.7783317552702 0 0 0 0 +2484 1 2.0151 1 53.993160088977746 126.0198209397584 0 0 0 0 +2527 1 2.0007 1 13.466967229608288 124.37785288707302 0 0 0 0 +2572 1 1.9805 1 27.01804079332359 127.52178434521852 0 0 0 0 +5679 1 1.329 1 17.811370248400593 147.10155641280312 0 1 0 0 +2650 1 1.9477 1 42.93480194207842 131.29053767612237 0 0 0 0 +2825 1 1.8868 1 26.019736240872273 135.37183755396524 0 0 0 0 +2870 1 1.8708 1 27.094566648364392 136.85322027702216 0 0 0 0 +2875 1 1.8687 1 15.736555563811217 150.0275577361013 0 0 0 0 +2978 1 1.8398 1 25.587932412681802 141.9444692477334 0 0 0 0 +3097 1 1.7976 1 21.16970627776528 140.9986883484342 0 0 0 0 +1405 1 2.6748 1 19.485727165476984 118.22144592947399 0 0 0 0 +3171 1 1.7731 1 26.51181978518419 124.71089426895408 0 0 0 0 +3177 1 1.7714 1 31.110683076630313 125.8203859619088 0 0 0 0 +3217 1 1.761 1 27.490264905190894 129.33194479121428 0 0 0 0 +3233 1 1.7567 1 29.504955481020538 125.19996738449511 0 0 0 0 +3237 1 1.7555 1 27.98030481069075 125.92418662922843 0 0 0 0 +3270 1 1.7472 1 17.618364915506234 139.17033344554093 0 0 0 0 +3283 1 1.7446 1 44.35729088732751 132.4141476210161 0 0 0 0 +3305 1 1.739 1 47.10473141161888 124.66283266282103 0 0 0 0 +3309 1 1.7378 1 22.903843327434146 141.15092112353358 0 0 0 0 +3448 1 1.7045 1 63.45035424585881 128.13362302409269 0 0 0 0 +3390 1 1.7178 1 46.724054123095854 119.05891518695144 0 0 0 0 +3392 1 1.7172 1 23.037706257333046 139.11673106281225 0 0 0 0 +3410 1 1.7123 1 24.2672127346042 135.55191178187167 0 0 0 0 +3503 1 1.6932 1 15.19649131776351 124.88602328551328 0 0 0 0 +3614 1 1.6686 1 36.46995996640372 126.76298665085353 0 0 0 0 +3638 1 1.6648 1 42.69741891782295 133.0637787162429 0 0 0 0 +3773 1 1.6347 1 19.90274862326179 120.32486405438661 0 0 0 0 +7220 1 1.1765 1 57.70197898720324 121.69951068757867 0 0 0 0 +3818 1 1.6234 1 15.022046537102364 133.42060431084232 0 0 0 0 +3847 1 1.6174 1 32.29634953283039 135.51839824631807 0 0 0 0 +9645 1 1.0182 1 43.68763620625426 126.46353663654082 0 0 0 0 +4086 1 1.5687 1 19.895819993593562 121.9123694111032 0 0 0 0 +4090 1 1.5683 1 49.53498960864767 127.14276627016127 0 0 0 0 +4570 1 1.486 1 11.705743497113378 153.11753187205196 0 1 0 0 +4450 1 1.5064 1 22.904010308273435 133.41412285185 0 0 0 0 +4452 1 1.5062 1 28.091446522056625 140.54516892973643 0 0 0 0 +726 1 3.7336 1 10.717061710242255 123.7251836981836 0 0 0 0 +4578 1 1.4847 1 36.16186096223818 136.03617489696393 0 0 0 0 +4622 1 1.4781 1 12.04254707923342 120.2562482147588 0 0 0 0 +9575 1 1.0218 1 26.04199493863641 130.16067153385626 0 0 0 0 +4658 1 1.4717 1 26.198773009142908 122.87149725329408 0 0 0 0 +4660 1 1.4709 1 26.9886283108839 138.49354692433417 0 0 0 0 +4669 1 1.4694 1 28.143902976660605 124.36625580915667 0 0 0 0 +4726 1 1.4596 1 45.90007799767973 132.01111450187335 0 0 0 0 +4792 1 1.4504 1 48.16542718600806 126.72933326556256 0 0 0 0 +4809 1 1.4471 1 41.42054482507872 124.00963105045864 0 0 0 0 +9680 1 1.0165 1 33.117344604734186 136.60597972837374 0 0 0 0 +1726 1 2.4091 1 59.08652259635777 122.76944600844848 0 0 0 0 +5048 1 1.4137 1 27.12450587069599 134.19461351730982 0 0 0 0 +5064 1 1.4105 1 21.34333136501749 124.1065196281288 0 0 0 0 +5081 1 1.4075 1 28.628234599301745 127.3054562676619 0 0 0 0 +7637 1 1.1414 1 60.70432340698385 122.21173192046741 0 0 0 0 +5209 1 1.3876 1 18.18341471264495 129.42802396950202 0 0 0 0 +5277 1 1.3789 1 47.25858148803163 117.64726707799491 0 0 0 0 +5353 1 1.3692 1 23.89836015524824 128.5900725616743 0 0 0 0 +5364 1 1.3683 1 42.75660380757836 127.23786237736878 0 0 0 0 +5376 1 1.3671 1 12.069320852453814 121.63614417402461 0 0 0 0 +5403 1 1.3631 1 22.04603573897947 134.55168687527885 0 0 0 0 +9704 1 1.015 1 53.44328197897137 127.42664131360463 0 0 0 0 +9438 1 1.0289 1 10.115785110938326 129.23471430760097 0 0 0 0 +1184 1 2.9227 1 59.69005798086899 125.31750823941343 0 0 0 0 +5645 1 1.3327 1 31.273395123552824 136.5382333362651 0 0 0 0 +5699 1 1.3259 1 49.36034786574309 125.74722829543539 0 0 0 0 +1879 1 2.3137 1 58.8419463952177 120.45266286050537 0 0 0 0 +5776 1 1.3164 1 32.067484232095374 138.24667587411972 0 0 0 0 +2082 1 2.1914 1 55.00891207064151 121.88005430152447 0 0 0 0 +2045 1 2.2145 1 58.666780487771966 127.64584035910461 0 0 0 0 +5791 1 1.3152 1 17.665857962307022 132.88610594985943 0 0 0 0 +6506 1 1.2425 1 54.429686769145015 120.33823700043075 0 0 0 0 +6009 1 1.2935 1 55.95571715171498 119.43909916609758 0 0 0 0 +5709 1 1.3248 1 10.124807257964271 132.50908876976024 0 0 0 0 +8778 1 1.0647 1 59.236926868989045 118.8584717942394 0 0 0 0 +5985 1 1.2963 1 42.08220271156898 129.58538215406287 0 0 0 0 +6002 1 1.2942 1 17.043061254462746 134.01199148130326 0 0 0 0 +6078 1 1.2857 1 23.420560966240444 142.55940177486815 0 0 0 0 +1534 1 2.5434 1 61.793921058290195 123.64350491101965 0 0 0 0 +9571 1 1.022 1 32.26856085938133 137.11921198719816 0 0 0 0 +6135 1 1.2802 1 52.994249985368626 124.83840646202027 0 0 0 0 +149 1 7.7028 1 63.56176730831309 118.91616604914338 0 0 0 0 +6185 1 1.2736 1 52.57448674394144 126.68774033449382 0 0 0 0 +6225 1 1.2682 1 16.627346634474215 124.67321387488053 0 0 0 0 +6257 1 1.2643 1 34.083220144100295 137.18928243053804 0 0 0 0 +6297 1 1.2609 1 24.27337086499601 133.4903713118666 0 0 0 0 +6402 1 1.2515 1 14.316018007478348 151.58184934172502 0 1 0 0 +6353 1 1.2568 1 34.48073360848591 126.16345315152715 0 0 0 0 +6498 1 1.2433 1 27.01001210793671 141.37425527327255 0 0 0 0 +8613 1 1.0744 1 59.76973086351533 128.82606932694614 0 0 0 0 +6713 1 1.2211 1 35.043199783324106 128.50516753698147 0 0 0 0 +6747 1 1.2184 1 19.897538630614427 142.67430254049623 0 0 0 0 +6807 1 1.2117 1 27.038038844469664 139.78315689190268 0 0 0 0 +7531 1 1.1504 1 16.299433877318577 133.19688846708934 0 1 0 0 +6862 1 1.2066 1 33.982470610826866 133.56298635439546 0 0 0 0 +6909 1 1.2013 1 47.09526229139049 126.10042250914178 0 0 0 0 +6910 1 1.2012 1 26.15349490512297 140.5628545028383 0 0 0 0 +6916 1 1.2006 1 16.932607098901595 125.79852942834368 0 0 0 0 +6965 1 1.197 1 21.209203552628537 121.52909843195143 0 0 0 0 +6968 1 1.1967 1 32.995102115502604 126.07980235979454 0 0 0 0 +1585 1 2.5046 1 57.55881683819603 118.4354364276049 0 0 0 0 +7128 1 1.1836 1 20.01009190415177 137.16422849690005 0 0 0 0 +7150 1 1.1824 1 32.940057030443946 133.1178588172395 0 0 0 0 +7152 1 1.1821 1 56.623495017816616 121.94804610719214 0 0 0 0 +7177 1 1.1801 1 21.58653117678313 133.38533827826316 0 0 0 0 +7184 1 1.1794 1 47.88917504193709 127.97815076806361 0 0 0 0 +7959 1 1.1172 1 45.82167553511042 118.0601837660385 0 0 0 0 +7221 1 1.1764 1 25.44059537363748 121.82548232098173 0 0 0 0 +7228 1 1.1758 1 37.476123076286065 125.7721417464497 0 0 0 0 +833 1 3.4991 1 16.040547970234197 136.12307877216065 0 1 0 0 +2385 1 2.0539 1 17.15543501400348 148.6255469201683 0 1 0 0 +7376 1 1.1635 1 53.32700030038611 118.58418635301467 0 0 0 0 +7438 1 1.1576 1 22.867290291419152 144.3556737893451 0 0 0 0 +2654 1 1.9451 1 13.801588802502486 134.60777427867606 0 1 0 0 +8530 1 1.079 1 23.74278974836332 119.03763757986073 0 0 0 0 +7526 1 1.1507 1 21.94734455117968 145.00680120122865 0 0 0 0 +7542 1 1.1489 1 12.04584491024251 151.7057296666072 0 0 0 0 +7619 1 1.143 1 23.755881246839984 143.6843996798998 0 0 0 0 +7722 1 1.1347 1 18.632476723769866 131.1419501025784 0 0 0 0 +7726 1 1.1347 1 18.729903725007137 132.2974142457588 0 0 0 0 +1191 1 2.9163 1 62.404036736769825 126.22122111656785 0 0 0 0 +7771 1 1.1308 1 29.636438707843606 126.58030656803183 0 0 0 0 +7773 1 1.1307 1 42.33593759682723 128.4032645854333 0 0 0 0 +7840 1 1.1265 1 46.22364769026755 121.95998810863543 0 0 0 0 +7934 1 1.119 1 13.744246320597204 136.08803740831618 0 0 0 0 +7948 1 1.1183 1 32.55138510625268 134.1888757913321 0 0 0 0 +4014 1 1.5807 1 22.981360701017906 117.55469941091764 0 0 0 0 +7965 1 1.1167 1 21.076182636477597 122.67541480220953 0 0 0 0 +8000 1 1.1144 1 20.11639972134218 124.28984026334545 0 0 0 0 +8043 1 1.1117 1 15.832188401914475 126.06910543537217 0 0 0 0 +8116 1 1.1066 1 23.041231957900578 124.93945408716738 0 0 0 0 +9638 1 1.0186 1 33.13103092433066 137.79633913146714 0 0 0 0 +8170 1 1.1028 1 23.246868229030802 134.64753033247837 0 0 0 0 +8192 1 1.1019 1 14.31704401521343 129.96966007866598 0 0 0 0 +8251 1 1.0978 1 12.37699344065893 125.43956203532012 0 0 0 0 +8273 1 1.0966 1 46.1105997432695 125.64602263935669 0 0 0 0 +8286 1 1.0958 1 28.360601912133838 136.34373527695777 0 0 0 0 +8303 1 1.0943 1 19.154039314346093 130.15792000741612 0 0 0 0 +8335 1 1.0919 1 19.09899232882064 122.95068667651051 0 0 0 0 +8372 1 1.089 1 34.28467583259069 127.31361819074462 0 0 0 0 +8377 1 1.0887 1 41.28734898030418 128.71258761002613 0 0 0 0 +8402 1 1.0876 1 24.642149755876098 143.03763973958763 0 0 0 0 +8491 1 1.0815 1 48.97551279714752 128.32883733131519 0 0 0 0 +8504 1 1.0807 1 48.216604395332496 125.47516529712301 0 0 0 0 +8584 1 1.0763 1 49.42417834853456 117.5191732047897 0 0 0 0 +9775 1 1.0112 1 35.32117774692222 127.43117743573237 0 0 0 0 +8666 1 1.0715 1 42.70611735917798 126.04401651840988 0 0 0 0 +8701 1 1.0698 1 27.253900130494532 123.51140120510836 0 0 0 0 +8762 1 1.0656 1 21.82918040402853 139.75239713821762 0 0 0 0 +8793 1 1.0638 1 24.176054949848737 141.72867225601175 0 0 0 0 +8845 1 1.0605 1 37.67471562876764 127.39973875366799 0 0 0 0 +8860 1 1.0594 1 25.965229081169053 139.48070781803565 0 0 0 0 +8915 1 1.0569 1 20.136005945503847 123.20795964514701 0 0 0 0 +8940 1 1.0557 1 31.91256093826849 133.31590123814544 0 0 0 0 +8990 1 1.0531 1 25.310760701253237 132.97092779634988 0 0 0 0 +8578 1 1.0765 1 11.68088959916388 154.40131125773897 0 1 0 0 +9050 1 1.05 1 16.573491601806047 138.29664782649175 0 0 0 0 +2858 1 1.8771 1 55.54095231153645 117.71605025785388 0 0 0 0 +9182 1 1.0429 1 17.95224971956568 126.15250994763052 0 0 0 0 +9195 1 1.0422 1 15.205426508227866 129.06637942189676 0 0 0 0 +9218 1 1.041 1 24.52220603604065 122.42712534609072 0 0 0 0 +9232 1 1.0404 1 43.867840324192 129.13498305003932 0 0 0 0 +9266 1 1.0385 1 25.087009088991383 134.27261980345384 0 0 0 0 +9859 1 1.0067 1 54.18881170878511 117.99925927987252 0 0 0 0 +9352 1 1.0335 1 43.39310221298294 128.23586390881107 0 0 0 0 +9792 1 1.0101 1 10.682513148775929 151.88257088492446 0 0 0 0 +9449 1 1.0285 1 33.7903737249161 132.47891382628015 0 0 0 0 +9464 1 1.0276 1 22.261312202876756 121.22021178262331 0 0 0 0 +9471 1 1.0273 1 53.96443979076501 129.9432646715825 0 0 0 0 +9509 1 1.0254 1 25.984077755900984 133.76254278434163 0 0 0 0 +9548 1 1.0234 1 26.691402594863238 126.0833242480338 0 0 0 0 +8224 1 1.1001 1 62.10770380842474 128.46854951949888 0 0 0 0 +5896 1 1.3052 1 10.807567034339334 121.22857656908509 0 0 0 0 +5515 1 1.3493 1 13.139053158546409 133.11203801500244 0 0 0 0 +657 1 3.8757 1 11.994390467696695 130.77694950265743 0 0 0 0 +41 1 15.4992 1 10.207369809372185 143.54646434891913 0 1 0 0 +6510 1 1.242 1 12.558786424296677 135.55722962199525 0 0 0 0 +939 1 3.2646 1 21.095314730134973 276.1885835380781 0 0 0 0 +1769 1 2.3732 1 19.25019784330931 274.0934713196493 0 0 0 0 +6417 1 1.2501 1 11.584056617582133 272.93456496567114 0 1 0 0 +2684 1 1.9366 1 11.664006081725935 270.1879008558593 0 1 0 0 +2522 1 2.0041 1 14.322729385105893 273.28199180052314 0 0 0 0 +2862 1 1.8735 1 17.795194203525377 272.5449239244619 0 0 0 0 +7271 1 1.1731 1 11.130634348241422 268.68784380654876 0 1 0 0 +2259 1 2.1139 1 10.420229367644321 271.7644318895074 0 1 0 0 +4720 1 1.4606 1 16.190087025718725 272.1018741844433 0 0 0 0 +1717 1 2.4125 1 14.818017805852596 270.11276911158905 0 1 0 0 +6977 1 1.1961 1 23.288507044235622 276.59011288737963 0 0 0 0 +9428 1 1.0293 1 10.818497189095424 265.0494321187188 0 1 0 0 +9905 1 1.0047 1 13.124390336396157 270.2626635576358 0 1 0 0 +6816 1 1.2106 1 10.543808644453668 273.49955969064325 0 1 0 0 +9926 1 1.004 1 12.55241016107405 266.87546091277727 0 1 0 0 +9193 1 1.0422 1 17.692252739509705 274.6159019810527 0 0 0 0 +7444 1 1.1572 1 14.93475026551949 271.8631803036404 0 0 0 0 +5282 1 1.3781 1 12.10416158332391 271.76187452927815 0 0 0 0 +2000 1 2.2425 1 16.280083185100793 273.87275029580167 0 0 0 0 +6370 1 1.2551 1 12.792213994025825 272.8690718078852 0 1 0 0 +580 1 4.1031 1 12.280343650809503 275.4880798717021 0 1 0 0 +6517 1 1.2416 1 16.449346466314672 270.8578168312259 0 1 0 0 +3538 1 1.6852 1 13.553698525734054 271.6298824289498 0 1 0 0 +325 1 5.5027 1 16.54461224498606 277.6236392389093 0 0 0 0 +6991 1 1.1951 1 23.218114416012362 277.7820340478395 0 0 0 0 +1765 1 2.3752 1 10.926875491818963 266.71175641579265 0 1 0 0 +1618 1 2.4826 1 13.026556901461374 268.5022516287686 0 1 0 0 +5434 1 1.3585 1 24.407087311877408 277.4398518895966 0 0 0 0 +3412 1 1.7122 1 11.15384660962711 278.14874037367315 0 0 0 0 +12 1 32.319 1 43.958158843905814 319.97973245843343 0 0 0 0 +18 1 25.1498 1 10.508541231438633 296.4193438939298 0 0 0 0 +50 1 13.2136 1 35.481694375619746 299.11115379296183 0 0 0 0 +58 1 12.4673 1 25.379203701550228 284.2567258855725 0 0 0 0 +7257 1 1.1737 1 26.15948394243882 328.44099268856183 0 0 -1 0 +116 1 9.135 1 23.746486557894837 323.8999840196396 0 0 0 0 +143 1 7.8305 1 52.36483631918757 301.8825016164016 0 0 0 0 +7897 1 1.1216 1 30.85095924765836 330.29558287000214 0 0 -1 0 +158 1 7.5128 1 26.653603927108986 294.3123492515384 0 0 0 0 +167 1 7.3828 1 21.846874594481562 307.90818868745606 0 0 0 0 +205 1 6.7519 1 16.392750392104613 316.07736078943475 0 0 0 0 +234 1 6.3152 1 26.612540587865954 303.0504092780427 0 0 0 0 +299 1 5.7461 1 48.87724060153895 291.5444897493093 0 0 0 0 +322 1 5.5335 1 24.560134074856496 314.4290637689313 0 0 0 0 +3861 1 1.6156 1 10.314420292479909 283.04617313435404 0 0 0 0 +386 1 5.0124 1 36.082526809324605 288.9775980072527 0 0 0 0 +4583 1 1.4831 1 59.6395380945145 329.99062892967686 0 0 -1 0 +636 1 3.9197 1 40.664104205796995 291.0790863211843 0 0 0 0 +788 1 3.6122 1 56.93509579294166 298.64054334066645 0 0 0 0 +799 1 3.5954 1 15.084653680047897 282.90273505875604 0 0 0 0 +821 1 3.5423 1 60.9184779734519 304.5332444910421 0 0 0 0 +8494 1 1.0812 1 60.4233803900698 330.9784275098339 0 0 -1 0 +869 1 3.4291 1 20.352936288156766 313.05559531488854 0 0 0 0 +874 1 3.4158 1 43.565429335658344 297.427487419465 0 0 0 0 +4722 1 1.4601 1 20.03097413012545 327.62653159357853 0 0 -1 0 +945 1 3.2533 1 12.602267580059374 310.3488517022603 0 0 0 0 +1037 1 3.1125 1 28.9417840118901 307.57165180039027 0 0 0 0 +8410 1 1.0871 1 16.200224208884276 327.3788187715355 0 0 -1 0 +1112 1 2.9989 1 17.036862092042483 310.8746282557808 0 0 0 0 +1137 1 2.9732 1 47.22795593080497 300.4252105231261 0 0 0 0 +1222 1 2.8858 1 56.61142149143374 307.90965621713707 0 0 0 0 +1202 1 2.9034 1 12.972804053047524 329.83314707638056 0 0 0 0 +1206 1 2.8995 1 14.126961385802389 325.2241047977615 0 0 0 0 +9978 1 1.0014 1 56.41629918290741 331.038565057577 0 0 -1 0 +2989 1 1.8361 1 60.055525372002045 309.1423439949216 0 0 0 0 +1296 1 2.7962 1 43.96532614832317 293.08119666275945 0 0 0 0 +6658 1 1.2264 1 32.98556534202404 282.7539439180597 0 0 0 0 +1312 1 2.7768 1 10.834284453512726 313.192375008906 0 0 0 0 +1315 1 2.7729 1 12.92167050974414 280.61982514600726 0 0 0 0 +1341 1 2.745 1 43.575849374164235 289.5815766779806 0 0 0 0 +1342 1 2.7447 1 55.92646868681522 294.18865845355697 0 0 0 0 +6062 1 1.2872 1 31.8939752639151 282.1808093893685 0 0 0 0 +1404 1 2.6784 1 58.074226656691955 295.7679090836133 0 0 0 0 +3855 1 1.6164 1 18.530068560071918 327.8082336646117 0 0 0 0 +1445 1 2.6284 1 52.567140637175974 293.82017877615124 0 0 0 0 +1530 1 2.5464 1 54.04226917186146 295.92548684341045 0 0 0 0 +1666 1 2.4441 1 32.61805525489107 290.91329932991283 0 0 0 0 +1677 1 2.4408 1 59.44069243887236 293.5400448850139 0 0 0 0 +1683 1 2.4326 1 55.917647219482426 291.6638456171062 0 0 0 0 +1752 1 2.3838 1 57.977510673190444 304.65800106157366 0 0 0 0 +1789 1 2.3619 1 47.39088610926946 303.02399156413435 0 0 0 0 +1828 1 2.3422 1 31.316650964257004 306.3824675049714 0 0 0 0 +1835 1 2.3375 1 18.07987077799267 282.92642918515065 0 0 0 0 +9710 1 1.0146 1 16.740705120442016 281.3556427030654 0 0 0 0 +9829 1 1.0087 1 60.261291966798275 323.36389917958695 0 0 0 0 +2324 1 2.0777 1 34.84891450807014 284.2137121146019 0 0 0 0 +1916 1 2.2894 1 40.161530749895846 288.1164567601222 0 0 0 0 +1929 1 2.2841 1 47.56448116412327 297.8954678904781 0 0 0 0 +1942 1 2.2747 1 53.664139618080746 291.07843302017045 0 0 0 0 +1959 1 2.2649 1 15.204623974736743 328.6650721793745 0 0 0 0 +1980 1 2.2544 1 43.05516108541595 300.2108397069343 0 0 0 0 +2007 1 2.2352 1 32.28025094492128 286.6017841920105 0 0 0 0 +2019 1 2.2278 1 58.13207473868493 309.9401614632504 0 0 0 0 +2025 1 2.2241 1 55.79375387354908 305.52728065529504 0 0 0 0 +2064 1 2.202 1 14.719636520618632 311.977873164927 0 0 0 0 +2090 1 2.1881 1 57.294364269439995 302.4928718452555 0 0 0 0 +2109 1 2.1781 1 18.206965391890694 285.1835321126967 0 0 0 0 +9698 1 1.0154 1 27.455344656685206 298.4910200201764 0 0 0 0 +2325 1 2.0772 1 60.979525831218155 322.0340353924739 0 0 0 0 +2600 1 1.9673 1 31.600838331729964 331.5857983805857 0 0 -1 0 +2279 1 2.1033 1 20.219459687341292 318.2316106512171 0 0 0 0 +2321 1 2.08 1 21.866347591190422 317.01025690825884 0 0 0 0 +2329 1 2.0763 1 30.41804608811478 291.3601966951815 0 0 0 0 +2338 1 2.0738 1 26.844897020090514 318.67676667555344 0 0 0 0 +2363 1 2.0615 1 28.151961583894312 313.4526427656356 0 0 0 0 +2374 1 2.0584 1 26.51937197656556 308.377108292281 0 0 0 0 +2439 1 2.0308 1 32.44039290614326 288.71751886025123 0 0 0 0 +2455 1 2.026 1 42.34036661128952 287.5539493968782 0 0 0 0 +2597 1 1.9698 1 45.72568457477809 294.635659091771 0 0 0 0 +2613 1 1.962 1 22.561621716943606 302.5313799678986 0 0 0 0 +2746 1 1.9121 1 30.480508672433402 289.3671755430184 0 0 0 0 +2765 1 1.9068 1 28.191498714507137 309.9074351822093 0 0 0 0 +2790 1 1.8974 1 36.24275622474118 285.5667181907797 0 0 0 0 +2826 1 1.886 1 48.95619782505228 295.26879953335674 0 0 0 0 +8009 1 1.1141 1 59.69459688632871 325.4570149499149 0 0 0 0 +2863 1 1.8733 1 61.13566088023577 292.27208779573976 0 0 0 0 +2907 1 1.8617 1 15.79900469149044 308.8176886097211 0 0 0 0 +2945 1 1.85 1 30.357348788729066 304.57084705568894 0 0 0 0 +3095 1 1.7987 1 45.162731106465536 291.16357068105884 0 0 0 0 +9407 1 1.0302 1 60.27540290868392 326.28278650936517 0 0 -1 0 +1513 1 2.5624 1 18.298514146735503 325.77490027324677 0 0 -1 0 +3246 1 1.7538 1 12.390782838409207 314.78446279352727 0 0 0 0 +3330 1 1.7327 1 23.472367878844793 318.0129863300513 0 0 0 0 +3353 1 1.7271 1 52.36540259190575 297.1784434673805 0 0 0 0 +3372 1 1.7232 1 51.62282213582993 295.69212969075664 0 0 0 0 +3424 1 1.7105 1 25.21842824799086 310.90283119638264 0 0 0 0 +3441 1 1.7056 1 22.937766091440494 291.97081667121006 0 0 0 0 +3479 1 1.6982 1 27.905143963382358 311.6390323211237 0 0 0 0 +3491 1 1.6955 1 31.198415101163988 308.6833966140821 0 0 0 0 +3522 1 1.6887 1 21.983352832426988 318.8475846872502 0 0 0 0 +3532 1 1.686 1 46.73779160690031 296.13382233931657 0 0 0 0 +3543 1 1.684 1 50.69043716597872 297.08836218522896 0 0 0 0 +9310 1 1.0357 1 19.05263862029667 286.53579145124746 0 0 0 0 +3613 1 1.6687 1 39.50546583271709 286.1829639392506 0 0 0 0 +3621 1 1.6672 1 31.077056938986424 293.1158031124262 0 0 0 0 +7239 1 1.1748 1 59.26925460320453 326.59300323291814 0 0 -1 0 +3710 1 1.6448 1 49.49417291319357 298.16783302503444 0 0 0 0 +3730 1 1.643 1 29.48755316038969 311.10974705293745 0 0 0 0 +8759 1 1.0661 1 58.998971047642364 331.04780972428074 0 0 -1 0 +3804 1 1.6282 1 24.277228561636228 298.68087748324916 0 0 0 0 +3814 1 1.625 1 42.8938024357534 295.00201055916125 0 0 0 0 +9359 1 1.0329 1 58.63439841345815 291.5213931189907 0 0 0 0 +3854 1 1.6164 1 60.56745192820562 316.7585983743114 0 0 0 0 +9346 1 1.0338 1 12.525435847709234 312.41563142024296 0 0 0 0 +3882 1 1.6111 1 37.870408581540936 286.2123210984749 0 0 0 0 +3887 1 1.6103 1 40.40428555156438 293.7354596322807 0 0 0 0 +3897 1 1.6088 1 28.89013257474141 290.3444910200273 0 0 0 0 +8294 1 1.0951 1 61.823449190427034 302.48020391380464 0 0 0 0 +3949 1 1.5968 1 45.73420738899308 298.70167820309496 0 0 0 0 +3962 1 1.5939 1 13.7585392509604 323.08045495628255 0 0 0 0 +3993 1 1.5879 1 53.9109297178837 306.27847804225695 0 0 0 0 +4008 1 1.5819 1 13.281407809692297 313.3997923479043 0 0 0 0 +4033 1 1.5772 1 38.24244966128504 292.3040065752241 0 0 0 0 +4083 1 1.5692 1 17.88585344566372 280.869709843212 0 0 0 0 +4085 1 1.5689 1 22.483814367704884 290.5517122913517 0 0 0 0 +4121 1 1.5632 1 41.910854549029054 293.5010440466486 0 0 0 0 +9601 1 1.0206 1 34.704070637128744 291.6481385968592 0 0 0 0 +3436 1 1.7079 1 18.560664601341205 322.71174578105035 0 0 -1 0 +9180 1 1.0429 1 60.59895490070254 320.55360591568865 0 0 0 0 +4246 1 1.5428 1 59.4524277736277 311.79690708808664 0 0 0 0 +9670 1 1.017 1 33.73484049207224 306.0071926668599 0 0 0 0 +4270 1 1.5379 1 17.057764648626325 328.28087238911723 0 0 0 0 +917 1 3.3207 1 16.151566879758352 322.9127006331845 0 0 -1 0 +4282 1 1.536 1 21.079926930414143 315.4065301176818 0 0 0 0 +4321 1 1.5286 1 42.25698909485568 301.92530124586165 0 0 0 0 +4342 1 1.5241 1 45.74726591297944 302.04917182579135 0 0 0 0 +4371 1 1.5198 1 54.33912039280698 292.8156706249186 0 0 0 0 +4411 1 1.5134 1 41.537283492398586 303.2570820359975 0 0 0 0 +4418 1 1.5122 1 19.122285913467675 279.9871256879079 0 0 0 0 +4509 1 1.4954 1 44.56347287694786 301.2203499534981 0 0 0 0 +4580 1 1.4839 1 32.305328825184105 284.77365529900976 0 0 0 0 +4759 1 1.4546 1 24.86264444601415 318.76129157989567 0 0 0 0 +6080 1 1.2854 1 15.164004689274396 326.9367681112294 0 0 0 0 +1872 1 2.3195 1 61.811837159878394 324.0278332195628 0 0 0 0 +4832 1 1.4446 1 13.883764082625946 327.3810961115895 0 0 0 0 +4856 1 1.4404 1 60.04050297345014 295.3482396200815 0 0 0 0 +4957 1 1.425 1 47.400816956980016 294.7661439964143 0 0 0 0 +5000 1 1.4202 1 26.513677345776415 299.2186187934734 0 0 0 0 +5039 1 1.4152 1 23.93252316378178 290.8978496446939 0 0 0 0 +5047 1 1.4137 1 23.322839033102554 299.828223783598 0 0 0 0 +997 1 3.1796 1 18.733499642299414 320.3646431747856 0 0 -1 0 +5113 1 1.4015 1 58.11571390911357 306.487202842436 0 0 0 0 +5121 1 1.3993 1 45.44770790846269 288.6112062432585 0 0 0 0 +5135 1 1.3982 1 29.99755908392872 309.6764225706641 0 0 0 0 +5303 1 1.3756 1 41.37569400866632 294.8380032698173 0 0 0 0 +5320 1 1.3734 1 40.968627396588595 286.56565688040683 0 0 0 0 +5343 1 1.3706 1 15.721049954827036 320.07424715129235 0 0 0 0 +5358 1 1.3687 1 27.786802633770755 315.479115484811 0 0 0 0 +5460 1 1.3551 1 26.62500844806578 310.3181857698038 0 0 0 0 +5492 1 1.3517 1 44.396856349228685 303.16523870169675 0 0 0 0 +4268 1 1.5381 1 58.733524679246905 308.18891154096605 0 0 0 0 +5673 1 1.3296 1 25.594782069287824 317.61985695165 0 0 0 0 +8488 1 1.0817 1 16.750569393363 326.531975063857 0 0 -1 0 +5728 1 1.3231 1 32.427665164901846 307.7883967284068 0 0 0 0 +8894 1 1.0577 1 29.913859917609273 328.97952817196614 0 0 -1 0 +8524 1 1.0796 1 59.75942056571983 310.5460273020253 0 0 0 0 +5857 1 1.3093 1 42.932789998652815 303.22013185987737 0 0 0 0 +5865 1 1.3088 1 21.51805710340379 289.60618604293336 0 0 0 0 +5870 1 1.3085 1 16.602951575654338 284.72124404466285 0 0 0 0 +5890 1 1.3059 1 57.399744346000084 292.8040785135404 0 0 0 0 +9452 1 1.0281 1 58.1059721333359 328.7620232160202 0 0 -1 0 +5934 1 1.3015 1 50.53996285154272 294.6436129677088 0 0 0 0 +5978 1 1.2967 1 46.77702750111573 288.73843557758073 0 0 0 0 +5990 1 1.2959 1 14.500738446379252 320.58946891090466 0 0 0 0 +6073 1 1.286 1 19.141784881665444 281.4584216306321 0 0 0 0 +2370 1 2.0591 1 57.70769702623692 330.228554592285 0 0 -1 0 +6158 1 1.277 1 49.108078760040875 296.8051411279461 0 0 0 0 +6171 1 1.2753 1 23.350418384025264 301.14434390971945 0 0 0 0 +2705 1 1.9275 1 61.09478159331471 296.6047136113791 0 0 0 0 +6190 1 1.273 1 43.60323868534577 302.14829948781176 0 0 0 0 +6243 1 1.2659 1 44.3923779337684 287.833138336008 0 0 0 0 +6301 1 1.2608 1 17.62147249784345 308.82448812254074 0 0 0 0 +6309 1 1.2604 1 33.60292888545601 285.3768587862327 0 0 0 0 +6406 1 1.251 1 21.48721928813231 303.66622591916956 0 0 0 0 +2443 1 2.029 1 59.48973653479886 297.6382968896255 0 0 0 0 +6533 1 1.2391 1 56.36838211817213 303.91504876824683 0 0 0 0 +9955 1 1.003 1 55.96289602200882 296.1870820061161 0 0 0 0 +9045 1 1.0501 1 29.86203134819652 330.02432591764665 0 0 -1 0 +6644 1 1.2277 1 19.081334853184003 311.1608528566097 0 0 0 0 +6646 1 1.2275 1 45.88066430493983 297.30313409514235 0 0 0 0 +6650 1 1.2267 1 26.46333696110881 311.6460564567064 0 0 0 0 +6670 1 1.225 1 52.26326713587023 291.9824822943392 0 0 0 0 +6698 1 1.2223 1 26.9412550765164 306.7955146316063 0 0 0 0 +6712 1 1.2212 1 14.2034683365639 321.77717718240734 0 0 0 0 +6736 1 1.2192 1 23.62997668536158 297.4346965038519 0 0 0 0 +9152 1 1.0446 1 10.486628811397075 309.6349677836176 0 0 0 0 +7920 1 1.1195 1 60.73073706134936 298.55796144704783 0 0 0 0 +6773 1 1.2156 1 45.65025283654487 303.359544139143 0 0 0 0 +6788 1 1.2139 1 33.27534345921974 283.89953157334287 0 0 0 0 +8089 1 1.1082 1 54.769290817758915 307.2635851110576 0 0 0 0 +6793 1 1.213 1 45.856286567020696 289.8374901097112 0 0 0 0 +9357 1 1.0332 1 58.255338707567915 311.52173494582684 0 0 0 0 +1294 1 2.7971 1 62.182226662449985 309.92344288171466 0 0 0 0 +6872 1 1.2046 1 59.70350046303503 291.7645090979151 0 0 0 0 +6885 1 1.2036 1 17.515154237904035 307.59681102224005 0 0 0 0 +6898 1 1.2023 1 20.31064541947069 316.5798628002103 0 0 0 0 +6923 1 1.2 1 38.66466661833742 287.32476355619497 0 0 0 0 +7033 1 1.191 1 54.789604516209764 297.6257462169832 0 0 0 0 +8234 1 1.0993 1 37.55888777365526 284.9427756204561 0 0 0 0 +7073 1 1.1881 1 35.74543734665524 291.9884829030191 0 0 0 0 +7087 1 1.1872 1 60.114188124958986 324.4223662747037 0 0 0 0 +7093 1 1.1867 1 44.556021960576736 299.4348127511253 0 0 0 0 +7156 1 1.1815 1 15.837219279981158 280.76359630706065 0 0 0 0 +7190 1 1.179 1 45.35735598694164 296.11780101215396 0 0 0 0 +7292 1 1.1715 1 36.920137048244655 291.9512317269375 0 0 0 0 +7298 1 1.1709 1 27.263669493429123 320.20203072285915 0 0 0 0 +6936 1 1.1993 1 59.202104746869736 328.7668017111276 0 0 -1 0 +7519 1 1.1512 1 45.88886901916948 293.12424476670645 0 0 0 0 +7582 1 1.1453 1 11.012909929980031 329.74783205029195 0 0 0 0 +2841 1 1.8826 1 59.66291772855214 306.83787183577294 0 0 0 0 +7631 1 1.1424 1 41.89299618324815 295.94507096530987 0 0 0 0 +7676 1 1.1383 1 14.318067829820938 308.993024756768 0 0 0 0 +7710 1 1.1355 1 22.35134005835359 312.0493958103695 0 0 0 0 +7719 1 1.135 1 31.115973529555284 287.88007644833397 0 0 0 0 +7741 1 1.1333 1 33.38458337561994 307.02128222033684 0 0 0 0 +7896 1 1.1216 1 44.25570986757064 295.241255696783 0 0 0 0 +9874 1 1.0061 1 38.22400766971685 291.03860419269114 0 0 0 0 +7956 1 1.1173 1 14.917432972175023 310.1391726536465 0 0 0 0 +7976 1 1.1162 1 34.87526574913041 286.1625684899302 0 0 0 0 +7982 1 1.1157 1 32.385482332647456 292.6638603852313 0 0 0 0 +9830 1 1.0087 1 25.665385997446 309.6335221443811 0 0 0 0 +8027 1 1.113 1 58.9795099061741 303.26724172619606 0 0 0 0 +7496 1 1.1528 1 28.395037721961184 325.9662270039563 0 0 -1 0 +2336 1 2.0745 1 61.40165660886041 307.6639558744865 0 0 0 0 +9834 1 1.0085 1 58.580168447903674 327.8752642136275 0 0 0 0 +6975 1 1.1962 1 12.26652612843918 324.62038240306504 0 0 -1 0 +8227 1 1.0998 1 14.40962908976049 319.4254398491719 0 0 0 0 +622 1 3.9488 1 59.87840082812155 300.937542680541 0 0 0 0 +8241 1 1.0988 1 53.66749144661429 297.6641722549306 0 0 0 0 +9325 1 1.0348 1 48.63503033442205 304.0761809594136 0 0 0 0 +8334 1 1.0919 1 33.81107231734215 292.18293505281275 0 0 0 0 +8853 1 1.0599 1 18.656984425925636 324.04637701159777 0 0 -1 0 +8354 1 1.0904 1 45.290781824434326 300.2126941416288 0 0 0 0 +8413 1 1.0868 1 26.907391193399977 317.0923542712556 0 0 0 0 +8417 1 1.0865 1 12.779556437557552 282.51911778593205 0 0 0 0 +7056 1 1.1893 1 59.622884110442406 327.6772206732479 0 0 0 0 +8468 1 1.0832 1 34.724636875356225 306.1619508165643 0 0 0 0 +8486 1 1.0818 1 33.92512196313251 286.68472288908407 0 0 0 0 +9740 1 1.0131 1 33.4660550056939 287.6192263209046 0 0 0 0 +8339 1 1.0911 1 28.871389277562155 329.8158781750101 0 0 -1 0 +8582 1 1.0763 1 57.77444257332037 293.9307027275433 0 0 0 0 +8595 1 1.0755 1 28.2234094212129 299.5081129004928 0 0 0 0 +8649 1 1.0723 1 15.888751303564238 325.99643642465287 0 0 0 0 +8653 1 1.0722 1 12.89956623589786 283.57212862212094 0 0 0 0 +8656 1 1.0719 1 50.27656631932238 295.79827114027194 0 0 0 0 +8669 1 1.0713 1 25.576201838614697 298.4427526242388 0 0 0 0 +9714 1 1.0145 1 20.85484350344629 319.66924397321014 0 0 0 0 +8712 1 1.0693 1 32.12139772876258 283.5094497127028 0 0 0 0 +8755 1 1.0666 1 28.429705702108063 298.2019807368503 0 0 0 0 +8851 1 1.0602 1 32.798155934872206 305.68431074034567 0 0 0 0 +8958 1 1.0549 1 48.800803894254244 299.2597813664487 0 0 0 0 +9008 1 1.0523 1 24.549965238571065 299.99820581643377 0 0 0 0 +9011 1 1.0522 1 29.304784347263556 305.5426907538099 0 0 0 0 +9129 1 1.0457 1 48.05243783206458 296.3521992687056 0 0 0 0 +9148 1 1.0448 1 16.6752620944793 320.80055474261997 0 0 0 0 +1130 1 2.9764 1 28.173707477428746 327.97623853672945 0 0 -1 0 +9349 1 1.0336 1 20.35180598188748 279.77294750599157 0 0 0 0 +9199 1 1.0419 1 43.10888401938394 291.3940337899394 0 0 0 0 +9212 1 1.0413 1 57.63182289621972 291.66000522847787 0 0 0 0 +9245 1 1.0397 1 25.83996142995151 306.63686031768026 0 0 0 0 +1417 1 2.6646 1 60.19247572747286 313.71955646784795 0 0 0 0 +2497 1 2.011 1 10.65755515571061 279.92391298475803 0 1 0 0 +505 1 4.3556 1 11.022960286917371 327.0406847690507 0 0 0 0 +6177 1 1.2748 1 60.64960567532367 318.1769736648131 0 0 0 0 +8507 1 1.0804 1 62.23865634764754 300.1268295210728 0 0 0 0 +4783 1 1.4511 1 61.0836879058248 319.44275460172196 0 0 0 0 +7973 1 1.1164 1 61.877750108755 314.5156665119015 0 0 0 0 +8564 1 1.0771 1 60.83401987834822 325.4026466716566 0 0 0 0 +8572 1 1.0767 1 62.28580591817296 306.3858292086975 0 0 0 0 +8902 1 1.0573 1 14.799983831389552 280.38766470190615 0 0 0 0 +4281 1 1.5361 1 63.23849987938655 305.5209437729072 0 0 0 0 +5204 1 1.3881 1 11.763213291533251 283.2092925637144 0 0 0 0 +4787 1 1.4508 1 60.89148100101002 311.57673133711944 0 0 0 0 +5792 1 1.3151 1 61.11960016973828 315.4416351365425 0 0 0 0 +9118 1 1.0464 1 63.46296982597681 324.2461075532608 0 0 -1 0 +9632 1 1.0189 1 11.316779345702976 330.7848601349705 0 0 -1 0 +3780 1 1.6336 1 10.314337955314684 311.07912312356996 0 0 0 0 +5905 1 1.3044 1 21.129045054494984 278.9271528556147 0 0 0 0 +1275 1 2.8181 1 61.93002493324886 294.4235802678563 0 0 0 0 +3904 1 1.6065 1 11.045846744508399 281.6682446421086 0 0 0 0 +7518 1 1.1512 1 61.644121212253246 299.18477971226827 0 0 0 0 +9888 1 1.0056 1 61.617769698754635 320.5418768439937 0 0 0 0 +2799 1 1.8937 1 12.945031645295757 278.350040483698 0 1 0 0 +3152 1 1.7783 1 62.71717124269744 321.37941001184 0 0 0 0 +3669 1 1.6558 1 62.878586448233854 292.4225555726158 0 0 0 0 +1183 1 2.9256 1 62.73173465866718 312.7139914222765 0 0 0 0 +4144 1 1.5595 1 19.939648364514042 278.27009712988325 0 0 0 0 +1706 1 2.4176 1 63.23028776849537 301.5595174644926 0 0 0 0 +4488 1 1.5001 1 63.177365095225944 303.48234543742024 0 0 0 0 +6516 1 1.2416 1 22.109525733958158 278.18042968682727 0 0 0 0 +434 1 4.726 1 105.17612755216766 12.892386463264963 0 0 0 0 +21 1 21.4617 1 96.63908067874068 52.03870985143944 0 0 0 0 +69 1 11.2782 1 71.41045490177207 25.42044717555252 0 0 0 0 +83 1 10.1031 1 98.20110899245296 34.47002956767655 0 0 0 0 +8095 1 1.1076 1 66.10651395931112 58.433255133562014 0 0 0 0 +121 1 9.0689 1 88.91424809873992 16.568051351495725 0 0 0 0 +133 1 8.3183 1 97.14733706397736 18.66692737563729 0 0 0 0 +148 1 7.7316 1 85.03696891246967 25.666658100564405 0 0 0 0 +250 1 6.2083 1 112.99842383468102 37.87296891746763 0 0 0 0 +257 1 6.1596 1 115.56614748529289 31.16287264676628 0 0 0 0 +284 1 5.8668 1 89.88191663331591 30.3033319758313 0 0 0 0 +332 1 5.4683 1 103.97570775294771 39.609264246117526 0 0 0 0 +8478 1 1.0825 1 108.57981586208808 24.84761734387709 0 0 0 0 +355 1 5.304 1 103.75405679689858 17.654742683282052 0 0 0 0 +374 1 5.0865 1 74.75846818910156 43.71601361643775 0 0 0 0 +8920 1 1.0564 1 64.62808538665003 11.873644968567316 0 0 0 0 +394 1 4.9598 1 84.90872531226611 37.68887971148406 0 0 0 0 +419 1 4.8193 1 90.93442524314868 35.44299690604385 0 0 0 0 +32 1 17.7495 1 116.27683773689931 12.361418784183613 0 0 0 0 +238 1 6.2924 1 69.2562494144066 14.225411786869314 0 0 1 0 +4048 1 1.5748 1 108.34779976467935 21.23748001094171 0 0 0 0 +4953 1 1.4255 1 69.45633826743936 51.70477258369727 0 0 0 0 +501 1 4.3637 1 86.54797958430323 41.97998264843935 0 0 0 0 +513 1 4.3173 1 111.79707472760319 48.30629853402377 0 0 0 0 +528 1 4.2756 1 112.79784807497515 44.20838029504775 0 0 0 0 +608 1 3.9972 1 81.07979139801311 29.792666566481564 0 0 0 0 +665 1 3.8515 1 92.97986512056951 26.69455394254134 0 0 0 0 +9737 1 1.0132 1 70.36130003024584 62.323480093502006 0 0 0 0 +723 1 3.7442 1 108.83821182659342 35.30625145011232 0 0 0 0 +729 1 3.7291 1 80.8956588955734 36.234443118722425 0 0 0 0 +745 1 3.6937 1 108.18120271491276 41.22198027200564 0 0 0 0 +753 1 3.6804 1 108.6102999527701 45.08148090698733 0 0 0 0 +876 1 3.4104 1 115.99074106550852 41.50105040379105 0 0 0 0 +883 1 3.3827 1 100.25186952499017 24.665275081602548 0 0 0 0 +935 1 3.2856 1 111.18503645932425 32.73110418090971 0 0 0 0 +9489 1 1.0264 1 110.67954544580043 20.73969552764041 0 0 0 0 +960 1 3.229 1 99.15336442031935 13.332821534951389 0 0 0 0 +973 1 3.2143 1 97.03375174470473 24.341912068968558 0 0 0 0 +982 1 3.2075 1 76.52475353289998 36.11482137770424 0 0 0 0 +1006 1 3.167 1 83.56018667046004 13.009923171852648 0 0 0 0 +1018 1 3.1502 1 106.63671433891032 29.41473932456902 0 0 0 0 +1565 1 2.5225 1 116.12770935476541 44.372733215207774 0 0 0 0 +3976 1 1.5908 1 74.01823799229616 33.85519292741358 0 0 0 0 +844 1 3.4658 1 64.12795148035946 26.420256471959632 0 0 0 0 +1090 1 3.0312 1 84.1737837216242 47.00010285433257 0 0 0 0 +1103 1 3.014 1 108.75589001621984 51.58000455129784 0 0 0 0 +1045 1 3.0949 1 89.80778205904244 10.62794006286147 0 0 0 0 +4382 1 1.5178 1 72.20342467447443 31.757818348134013 0 0 0 0 +1185 1 2.9221 1 81.83031373548008 33.07667009421448 0 0 0 0 +1194 1 2.9134 1 103.41426528858449 30.66846265689985 0 0 0 0 +1343 1 2.7444 1 68.26830847065405 19.26475884568273 0 0 0 0 +1352 1 2.735 1 82.62891660159576 54.320305359330305 0 0 0 0 +1355 1 2.733 1 84.44495324531786 33.9122399710808 0 0 0 0 +1362 1 2.7265 1 84.89272963573903 49.69316297661039 0 0 0 0 +1395 1 2.6877 1 101.43078340098258 21.962670197188597 0 0 0 0 +1430 1 2.6475 1 64.07956461221215 19.468202338148643 0 0 0 0 +3980 1 1.5901 1 65.72037460965527 12.571985927916987 0 0 1 0 +1467 1 2.6054 1 104.69779511918956 35.06962314461163 0 0 0 0 +1518 1 2.5596 1 89.94298524683103 42.15241419256932 0 0 0 0 +4395 1 1.5156 1 81.50636267327235 58.3897072408862 0 0 0 0 +1550 1 2.5331 1 104.8665443687493 60.663604045107704 0 0 0 0 +1560 1 2.5242 1 83.27238692670038 51.72864917239192 0 0 0 0 +7913 1 1.1198 1 68.45889398751204 10.664274036991658 0 0 1 0 +1575 1 2.5131 1 100.83743138915412 63.16516291710566 0 0 0 0 +1593 1 2.4997 1 81.71274154713751 45.82221291000151 0 0 0 0 +1620 1 2.4786 1 85.08558565315434 54.91535268149571 0 0 0 0 +1660 1 2.4477 1 89.17233091344416 61.232931472519674 0 0 0 0 +1674 1 2.4413 1 95.6289852461033 28.37123599173441 0 0 0 0 +1680 1 2.44 1 106.4302774055005 58.78767432224272 0 0 0 0 +7768 1 1.1309 1 116.4074874691813 21.76524992470695 0 0 0 0 +1727 1 2.4073 1 95.72651186090246 40.200335408733565 0 0 0 0 +1728 1 2.4071 1 108.54825160497482 57.78698327020635 0 0 0 0 +1732 1 2.4049 1 113.16358533157376 53.83751342954066 0 0 0 0 +1753 1 2.3838 1 78.54037508448602 31.592483637479724 0 0 0 0 +1755 1 2.3833 1 93.17746844335703 12.934105567582273 0 0 0 0 +1758 1 2.3818 1 78.97523444721608 48.50612060838281 0 0 0 0 +1768 1 2.3737 1 91.58351040026447 38.9537450289753 0 0 0 0 +3175 1 1.7717 1 64.27503698621283 54.09385383315164 0 0 0 0 +1829 1 2.3419 1 86.49160176761897 32.513615786857834 0 0 0 0 +7902 1 1.1211 1 72.47774354141708 62.249809453058795 0 0 0 0 +1848 1 2.3311 1 109.83355506138312 55.8709738052277 0 0 0 0 +1894 1 2.3034 1 77.90186356578538 41.87337348756708 0 0 0 0 +1901 1 2.3004 1 73.83467218064217 35.80196566890807 0 0 0 0 +1943 1 2.2741 1 93.44621357001466 40.66807034861193 0 0 0 0 +1968 1 2.259 1 112.07139962024215 55.82351684727031 0 0 0 0 +2002 1 2.2423 1 106.26111945322089 43.40305468678126 0 0 0 0 +2006 1 2.2359 1 80.50006484094658 41.81449315573719 0 0 0 0 +2015 1 2.2303 1 97.46044316092632 26.957916949691437 0 0 0 0 +2028 1 2.2237 1 106.35992038734415 36.762756638623046 0 0 0 0 +2042 1 2.2165 1 98.92188672435505 28.50121273483586 0 0 0 0 +2068 1 2.1988 1 85.52575403146741 30.530279846475338 0 0 0 0 +2126 1 2.1662 1 102.95453979802312 62.013103936261814 0 0 0 0 +2143 1 2.1582 1 108.648365029531 47.91738423282546 0 0 0 0 +2167 1 2.1496 1 80.01242535064422 26.93570134017484 0 0 0 0 +2202 1 2.1361 1 89.2411651762343 22.124359732265205 0 0 0 0 +2205 1 2.1343 1 73.97057406681495 31.55419267756115 0 0 0 0 +8202 1 1.1013 1 64.71848356811739 22.995713976924183 0 0 0 0 +2258 1 2.1144 1 107.24445873757574 31.91236750384839 0 0 0 0 +2267 1 2.1076 1 78.60006017602049 33.82201042803484 0 0 0 0 +4506 1 1.4959 1 109.67122564775713 24.209698906040554 0 0 0 0 +2311 1 2.0841 1 85.88130995138836 11.946211995758024 0 0 0 0 +9277 1 1.0379 1 68.69597847111575 54.51451779934062 0 0 0 0 +5943 1 1.3005 1 64.20067582194403 52.497411623816475 0 0 0 0 +2347 1 2.0696 1 87.59330866140897 35.56938889005916 0 0 0 0 +2361 1 2.0617 1 97.90000333133403 40.44307976003919 0 0 0 0 +2377 1 2.0565 1 85.46731582641493 20.851086111920004 0 0 0 0 +2403 1 2.0471 1 80.51133692666514 43.939037701237424 0 0 0 0 +2458 1 2.0253 1 107.6058867948881 38.44865857658284 0 0 0 0 +2463 1 2.024 1 110.99128567863843 41.39371384563105 0 0 0 0 +2482 1 2.0167 1 92.32580707694098 22.760648306840533 0 0 0 0 +2489 1 2.0142 1 85.00099887036134 44.68434701270415 0 0 0 0 +2513 1 2.0064 1 104.23550899381661 43.2429273977583 0 0 0 0 +2517 1 2.0053 1 91.07227629405233 62.308412945641884 0 0 0 0 +2528 1 2.0004 1 109.01304959859613 54.001497929203815 0 0 0 0 +2536 1 1.9972 1 99.85045248834966 40.78433701140499 0 0 0 0 +2596 1 1.9701 1 72.44858251607631 46.84443551416395 0 0 0 0 +6566 1 1.236 1 102.27618527442296 13.237630534183007 0 0 0 0 +2630 1 1.9568 1 80.07164510913346 50.29412140245684 0 0 0 0 +2089 1 2.1881 1 73.70809772018771 13.406842530044594 0 0 1 0 +2656 1 1.9447 1 95.19357810044482 10.220091178748087 0 0 0 0 +2659 1 1.9441 1 77.945003574881 45.15607270303883 0 0 0 0 +2685 1 1.9363 1 103.98031723874274 32.974855045338515 0 0 0 0 +2690 1 1.9335 1 74.0899225282604 40.296085633851696 0 0 0 0 +2740 1 1.9143 1 77.5866613248711 38.39197287403101 0 0 0 0 +2773 1 1.9049 1 97.27960940082778 11.68229747942421 0 0 0 0 +2819 1 1.8893 1 76.86963593168943 40.10293748443791 0 0 0 0 +8252 1 1.0977 1 109.66420289461624 21.035748887520352 0 0 0 0 +2850 1 1.879 1 78.22179279479238 29.490768486452886 0 0 0 0 +7932 1 1.119 1 115.27274238251458 49.318257376614895 0 0 0 0 +9415 1 1.0298 1 71.47437972652631 49.63090861949424 0 0 0 0 +2949 1 1.849 1 72.81245156149191 38.80735999005511 0 0 0 0 +2990 1 1.836 1 101.4002594736752 29.512839402248584 0 0 0 0 +2997 1 1.8332 1 76.43898855727053 29.536864962535624 0 0 0 0 +3038 1 1.8149 1 93.2472169809775 37.701996973266446 0 0 0 0 +3039 1 1.8147 1 64.20884011710054 21.656947913280625 0 0 0 0 +3068 1 1.808 1 80.43469660623865 23.79860819298939 0 0 0 0 +3105 1 1.796 1 89.44810256631801 24.043391421622413 0 0 0 0 +5898 1 1.305 1 109.4565841144079 29.554609628634214 0 0 0 0 +128 1 8.5121 1 75.31965207479595 52.46663624714516 0 0 0 0 +829 1 3.51 1 72.03112884801429 18.186837657338796 0 0 1 0 +5401 1 1.3634 1 106.93598349849408 10.44566893977381 0 0 0 0 +3211 1 1.7635 1 101.32727367676968 14.368091557389775 0 0 0 0 +3219 1 1.7606 1 79.35593054280059 38.4232948117379 0 0 0 0 +3226 1 1.7586 1 82.0623144485701 48.07518801111986 0 0 0 0 +3228 1 1.7584 1 87.37182469776954 21.65446690033872 0 0 0 0 +3841 1 1.619 1 80.30653458616466 62.29498982953348 0 0 0 0 +3266 1 1.7483 1 86.71092850220572 45.42935507880906 0 0 0 0 +3285 1 1.7442 1 81.7035069031971 40.26470227482615 0 0 0 0 +3286 1 1.744 1 71.75479691162414 45.16342450123758 0 0 0 0 +8497 1 1.0811 1 111.11476821388337 21.63655616097023 0 0 0 0 +3293 1 1.7419 1 76.70037398652022 46.47230022509693 0 0 0 0 +1304 1 2.7888 1 69.56493191814883 49.627775571174325 0 0 0 0 +3365 1 1.7248 1 91.14443208205196 24.164859672998137 0 0 0 0 +5372 1 1.3675 1 75.49572193479139 30.773313203406957 0 0 0 0 +3481 1 1.6974 1 113.04906909692474 51.01827782347724 0 0 0 0 +5262 1 1.3806 1 108.44060672069483 26.79344677474848 0 0 0 0 +3547 1 1.6831 1 110.14673183234295 42.9777214818795 0 0 0 0 +3553 1 1.6805 1 95.65600049423111 26.31660228050961 0 0 0 0 +3555 1 1.6799 1 72.39272432668217 37.11685696085291 0 0 0 0 +3569 1 1.6762 1 100.09919688223872 27.08738349365727 0 0 0 0 +3579 1 1.675 1 83.76587114374858 15.33308689924395 0 0 0 0 +3605 1 1.6697 1 77.79876050786338 25.071608264856295 0 0 0 0 +3610 1 1.6688 1 89.04580190625606 39.18140168435809 0 0 0 0 +3674 1 1.6544 1 107.72637064474344 55.61286585323143 0 0 0 0 +562 1 4.1677 1 66.88242684997194 52.68752517709902 0 0 0 0 +3679 1 1.6538 1 83.35813343708848 40.564141169560585 0 0 0 0 +3680 1 1.6534 1 110.96238364007209 52.02628117397564 0 0 0 0 +3697 1 1.6481 1 93.75795399451692 23.875316873385074 0 0 0 0 +3747 1 1.6403 1 74.51676005580988 38.57922409335624 0 0 0 0 +3838 1 1.6194 1 87.62864112225272 11.417618652622481 0 0 0 0 +6945 1 1.1985 1 72.9310416533753 14.842024788055586 0 0 1 0 +9662 1 1.0174 1 114.28637068147027 27.904090930369684 0 0 0 0 +3934 1 1.6013 1 115.56206757853437 48.044926490743705 0 0 0 0 +8757 1 1.0664 1 70.83115836014666 50.97916112377148 0 0 0 0 +3966 1 1.5931 1 75.1510010808891 47.011676798260176 0 0 0 0 +3973 1 1.5912 1 114.39000704523886 46.995507590043644 0 0 0 0 +3997 1 1.5863 1 102.99657364170145 28.28357761575715 0 0 0 0 +6025 1 1.292 1 73.96068087251831 11.718486380406205 0 0 0 0 +4034 1 1.5771 1 79.6292229832826 46.223644498953064 0 0 0 0 +4038 1 1.5762 1 108.5780914571747 30.662417642235265 0 0 0 0 +4040 1 1.5761 1 80.56976728362879 47.44204173946097 0 0 0 0 +4043 1 1.5752 1 66.1486615111353 19.34567117909387 0 0 0 0 +4072 1 1.5709 1 96.90506686037824 13.799071475087183 0 0 0 0 +4075 1 1.5706 1 98.56227523025787 63.30291947128198 0 0 0 0 +347 1 5.3603 1 113.69850999301406 23.458858070515124 0 0 0 0 +166 1 7.4036 1 65.08181861768664 62.52153064839315 0 0 0 0 +9259 1 1.0389 1 116.65567204723196 34.57685232375498 0 0 0 0 +4243 1 1.5429 1 104.44246270945631 28.772103268427244 0 0 0 0 +4266 1 1.5384 1 66.8896105557475 20.884660126663846 0 0 0 0 +4289 1 1.535 1 107.83171180767076 49.53661380216921 0 0 0 0 +4326 1 1.5275 1 114.15750800990911 49.926676437467535 0 0 0 0 +4335 1 1.5257 1 94.43011410426007 38.82096391952505 0 0 0 0 +4337 1 1.5253 1 85.22421656910846 51.724546302950635 0 0 0 0 +4345 1 1.5235 1 80.90149885865627 38.84420336987982 0 0 0 0 +4372 1 1.5198 1 114.29819117478819 55.39257101617522 0 0 0 0 +4377 1 1.5189 1 72.62601026702151 34.396230548020775 0 0 0 0 +5961 1 1.2988 1 69.70205174572533 17.9377766529949 0 0 1 0 +4401 1 1.5148 1 70.34231837118399 47.6933457403805 0 0 0 0 +4439 1 1.508 1 95.07012951740111 23.077684623314934 0 0 0 0 +7224 1 1.1762 1 71.21075908178992 60.994773437895404 0 0 0 0 +4482 1 1.5007 1 82.33116341577824 41.73809693175104 0 0 0 0 +4485 1 1.5002 1 105.53925703316774 32.36350997743259 0 0 0 0 +4505 1 1.4964 1 81.63820623243564 49.641950640793176 0 0 0 0 +4538 1 1.4912 1 88.77316461542054 43.777290595258144 0 0 0 0 +487 1 4.4531 1 76.77634276723647 11.201388453792827 0 0 0 0 +4576 1 1.485 1 93.53122775815363 30.247495641791826 0 0 0 0 +4594 1 1.4814 1 90.1939401709319 40.2089594192116 0 0 0 0 +4657 1 1.472 1 91.86369509648783 41.62381436971309 0 0 0 0 +4666 1 1.4699 1 79.27731999879795 25.293671417649236 0 0 0 0 +4514 1 1.4948 1 65.27732596331923 24.136456240773686 0 0 0 0 +4708 1 1.4634 1 82.4968626740704 44.04086724183906 0 0 0 0 +5713 1 1.3246 1 81.74217495556846 57.02685770425055 0 0 0 0 +4760 1 1.4545 1 78.81052048479086 23.891024187120667 0 0 0 0 +4810 1 1.447 1 71.92484931112277 35.662948654302795 0 0 0 0 +4816 1 1.4464 1 83.73562697957684 30.301394562068594 0 0 0 0 +4835 1 1.4438 1 78.24385002127288 46.78668536081891 0 0 0 0 +4838 1 1.4433 1 83.54358688802378 31.73054450890789 0 0 0 0 +4848 1 1.4421 1 101.28814787180463 41.65348967199978 0 0 0 0 +4849 1 1.4419 1 83.72731741077243 42.04260378474006 0 0 0 0 +8058 1 1.1106 1 67.33747163998216 29.780868516707045 0 0 0 0 +8053 1 1.1112 1 65.7957807758775 22.840328060996722 0 0 0 0 +4896 1 1.4331 1 93.06454658390325 21.259579294486578 0 0 0 0 +4897 1 1.4331 1 113.64950279685236 41.563897774395606 0 0 0 0 +8814 1 1.0625 1 73.6834486889048 15.840898204800261 0 0 1 0 +4988 1 1.4219 1 94.85222458387605 24.914642115102623 0 0 0 0 +5026 1 1.4171 1 86.39295261787207 46.96343807249402 0 0 0 0 +5029 1 1.4168 1 109.20270675827807 37.84353756449067 0 0 0 0 +8528 1 1.0792 1 77.86084798779895 61.54627142601715 0 0 0 0 +8167 1 1.1032 1 116.87947106175254 22.96422331987754 0 0 0 0 +5067 1 1.41 1 94.47146735155927 11.658481706420682 0 0 0 0 +4920 1 1.4297 1 110.76831268521617 25.056415719063104 0 0 0 0 +5091 1 1.4051 1 86.40886469723746 34.36508962072146 0 0 0 0 +7606 1 1.1437 1 116.63325526894339 38.05300552948329 0 0 0 0 +7203 1 1.1778 1 116.72359140770227 50.139975939648714 0 0 0 0 +5162 1 1.3934 1 90.88643906812469 21.50934469932835 0 0 0 0 +5193 1 1.3896 1 107.0105356739826 47.248520745582475 0 0 0 0 +5196 1 1.3892 1 91.5092296007772 12.069238604564566 0 0 0 0 +7975 1 1.1162 1 106.15481883522133 15.591222954433423 0 0 0 0 +5219 1 1.3867 1 94.57216372600583 14.143032734121066 0 0 0 0 +5223 1 1.3863 1 75.975142948453 38.36046712759472 0 0 0 0 +5234 1 1.3845 1 87.69528287690291 33.880881479522806 0 0 0 0 +5244 1 1.3828 1 90.37294342101146 26.73344850914943 0 0 0 0 +5273 1 1.3794 1 111.31736837036128 53.487692309998266 0 0 0 0 +5314 1 1.3738 1 70.92435493491955 46.44230863048433 0 0 0 0 +5333 1 1.3716 1 82.9665544415823 49.30860030328542 0 0 0 0 +5351 1 1.3696 1 101.00550036888157 15.83910612900224 0 0 0 0 +8868 1 1.059 1 81.60363427029864 55.86727827245207 0 0 0 0 +5412 1 1.3618 1 87.56942096482045 39.36733312609736 0 0 0 0 +5470 1 1.3536 1 89.54488172513192 25.61164516627751 0 0 0 0 +5479 1 1.3531 1 104.97709383445323 62.51612386467452 0 0 0 0 +495 1 4.3956 1 111.64065446385942 27.760045791827785 0 0 0 0 +9146 1 1.0448 1 74.19537669646257 14.932560991881617 0 0 1 0 +7786 1 1.1297 1 75.18874576879614 57.247707781620456 0 0 0 0 +5581 1 1.3398 1 93.8543372780666 15.217692557759218 0 0 0 0 +5582 1 1.3398 1 109.27632654004795 49.515659933579016 0 0 0 0 +5604 1 1.3364 1 106.32981460778831 46.075265590828934 0 0 0 0 +5617 1 1.3354 1 85.30556196479574 53.088349237451986 0 0 0 0 +5662 1 1.331 1 80.2026143234364 40.06751725269431 0 0 0 0 +2610 1 1.9628 1 85.22122882676237 57.06464583247164 0 0 0 0 +5740 1 1.3216 1 80.6031949636313 25.329115397358706 0 0 0 0 +5758 1 1.3193 1 78.54659969901775 37.105731491159304 0 0 0 0 +5762 1 1.319 1 112.33889955783725 52.273370279117245 0 0 0 0 +5782 1 1.3159 1 95.00412405812266 12.87832994936092 0 0 0 0 +5785 1 1.3157 1 83.92907977701816 43.40656052677813 0 0 0 0 +2406 1 2.0453 1 66.76159754073167 17.49833617729068 0 0 1 0 +5864 1 1.309 1 83.64824615209227 57.332568559557274 0 0 0 0 +5876 1 1.3078 1 81.53680271723366 51.002747290454565 0 0 0 0 +5888 1 1.306 1 106.90533484897084 56.939407906009635 0 0 0 0 +9973 1 1.002 1 74.78456864775491 37.28774897869477 0 0 0 0 +5924 1 1.3022 1 114.96486987787428 34.764364858408435 0 0 0 0 +5930 1 1.302 1 84.59321691080397 19.43465061144736 0 0 0 0 +6581 1 1.2342 1 72.57093676999058 15.945940767438312 0 0 1 0 +8972 1 1.0541 1 108.66341944676456 22.44288817713709 0 0 0 0 +5963 1 1.2986 1 88.99363158770885 37.7241640936893 0 0 0 0 +5974 1 1.2971 1 105.56964033335414 45.0114975431644 0 0 0 0 +6000 1 1.2946 1 77.4325457484544 23.65078999859486 0 0 0 0 +6017 1 1.2926 1 72.47757699702203 41.565792876888096 0 0 0 0 +5259 1 1.3808 1 68.9646114614527 31.05786202207244 0 0 0 0 +6089 1 1.2841 1 102.76298738177144 14.558865616146416 0 0 0 0 +6098 1 1.2832 1 80.4349852615733 12.759942869759165 0 0 0 0 +6163 1 1.2759 1 77.29661285840966 28.195651609570145 0 0 0 0 +6197 1 1.2718 1 65.49436184996637 20.813867065203226 0 0 0 0 +6206 1 1.2711 1 83.41111634147126 45.01474742276008 0 0 0 0 +6231 1 1.2674 1 72.5368455474228 40.31589954893258 0 0 0 0 +2549 1 1.9893 1 103.67782664105319 21.82605318701698 0 0 0 0 +6320 1 1.2591 1 115.40321017056866 50.45874818431408 0 0 0 0 +6326 1 1.2587 1 96.78239583684238 10.238713219932404 0 0 0 0 +6350 1 1.257 1 116.36556399834095 36.375475328720206 0 0 0 0 +2286 1 2.101 1 64.13985549352083 13.472235722126907 0 0 0 0 +6430 1 1.2493 1 108.91130863874879 32.027716841646395 0 0 0 0 +6543 1 1.238 1 75.47000291986802 39.57737135607455 0 0 0 0 +6574 1 1.2351 1 95.74906468193441 11.66727004602801 0 0 0 0 +2203 1 2.1351 1 74.02258635764919 61.949389239144004 0 0 0 0 +6657 1 1.2265 1 78.5936834022167 35.46324903298443 0 0 0 0 +6739 1 1.219 1 81.76653825741 42.94933383460811 0 0 0 0 +6745 1 1.2186 1 77.88284970571581 43.60119606677728 0 0 0 0 +1452 1 2.6196 1 66.63295945860476 10.693694878824918 0 0 0 0 +6782 1 1.2148 1 71.30022503421942 34.502287263620566 0 0 0 0 +6828 1 1.2099 1 83.97038387902967 16.730880397096854 0 0 0 0 +6842 1 1.2084 1 79.24667824995105 42.93877586164953 0 0 0 0 +6905 1 1.2016 1 73.09175449045253 48.223353690196724 0 0 0 0 +6930 1 1.1997 1 82.93650707069632 21.78163277724564 0 0 0 0 +6942 1 1.1988 1 113.0280501376328 34.01912930557023 0 0 0 0 +6943 1 1.1987 1 87.8955658178897 38.17339232333854 0 0 0 0 +6956 1 1.1978 1 73.04132504851091 32.89551788776826 0 0 0 0 +6959 1 1.1977 1 73.71180429465966 37.50646018743679 0 0 0 0 +6985 1 1.1956 1 94.81750296572311 29.971137070218994 0 0 0 0 +6989 1 1.1952 1 92.62471373231072 20.052916932551195 0 0 0 0 +6990 1 1.1951 1 115.25727991974196 45.96473502024542 0 0 0 0 +7015 1 1.1928 1 90.78139494265798 25.536744077345134 0 0 0 0 +1615 1 2.4831 1 76.16059983478877 61.29804810576355 0 0 0 0 +7022 1 1.1921 1 78.45648912311674 26.339099133291786 0 0 0 0 +7054 1 1.1894 1 93.86469712399561 22.298833394259887 0 0 0 0 +7141 1 1.1829 1 101.65404437192724 28.090826693313712 0 0 0 0 +7149 1 1.1825 1 100.69250537281572 39.48640804482684 0 0 0 0 +437 1 4.6914 1 101.297130132229 10.120124091863833 0 0 0 0 +7229 1 1.1757 1 106.63965501428181 34.14222106604434 0 0 0 0 +7230 1 1.1757 1 103.44146654946712 36.39640839760843 0 0 0 0 +7248 1 1.174 1 83.08669263825887 35.24992444523014 0 0 0 0 +7253 1 1.1738 1 90.74160402111472 22.78324135123449 0 0 0 0 +7308 1 1.1697 1 88.93033043098981 40.59049761159747 0 0 0 0 +7345 1 1.1663 1 92.63344162988152 62.57544138836595 0 0 0 0 +965 1 3.2239 1 79.56955631771073 56.434203820130676 0 0 0 0 +7385 1 1.1626 1 81.60481160835788 22.904185169221428 0 0 0 0 +7386 1 1.1626 1 105.36515280882233 31.09108146251188 0 0 0 0 +7417 1 1.1599 1 93.94643464183123 28.999854100200665 0 0 0 0 +7427 1 1.1591 1 84.80904338201746 32.023291602255654 0 0 0 0 +7441 1 1.1575 1 82.19268088577365 38.94141602981501 0 0 0 0 +7452 1 1.1567 1 98.74766573941908 23.050294327886988 0 0 0 0 +7467 1 1.1557 1 80.68853672674355 48.78080683882498 0 0 0 0 +7479 1 1.1543 1 79.20701755221458 40.78983969961611 0 0 0 0 +7520 1 1.151 1 111.9552350971852 30.550618426291567 0 0 0 0 +7546 1 1.1488 1 114.44037126094527 51.22148780653752 0 0 0 0 +9319 1 1.0352 1 70.61901830687462 51.968499374377636 0 0 0 0 +5242 1 1.3831 1 110.20079503938392 19.697710329845396 0 0 0 0 +682 1 3.822 1 68.49985587147701 58.12268387926009 0 0 0 0 +7609 1 1.1435 1 110.59664935787649 50.70189165666088 0 0 0 0 +1225 1 2.8811 1 105.916998687052 21.10918743292624 0 0 0 0 +7729 1 1.1345 1 78.94945146895029 44.03234007744948 0 0 0 0 +7731 1 1.1343 1 79.04100222815963 28.243009655741155 0 0 0 0 +7753 1 1.1319 1 87.98137774781198 44.79719035538909 0 0 0 0 +9016 1 1.0518 1 116.89231600080511 48.33810261707595 0 0 0 0 +7801 1 1.1286 1 96.1920080424498 12.716634602440037 0 0 0 0 +7807 1 1.1282 1 73.90949924200002 46.68736962509125 0 0 0 0 +7838 1 1.1266 1 97.31427833703333 28.930290931602773 0 0 0 0 +7863 1 1.1236 1 81.47551383543038 13.308545934606462 0 0 0 0 +7927 1 1.1194 1 86.03866030386263 48.16714940827681 0 0 0 0 +4107 1 1.565 1 73.41672610872183 59.65341941336462 0 0 0 0 +7949 1 1.1182 1 75.53620255999581 40.74186643120928 0 0 0 0 +7969 1 1.1165 1 83.99119734193408 21.365054776716622 0 0 0 0 +8067 1 1.11 1 111.1689962635708 34.82473925508279 0 0 0 0 +4100 1 1.5662 1 71.73639622529117 33.216486788104426 0 0 0 0 +8625 1 1.0732 1 65.6007719614165 14.043221271628248 0 0 0 0 +2851 1 1.8787 1 110.08844015428151 22.620183002348043 0 0 0 0 +8172 1 1.1028 1 78.2436971626801 27.46545136868653 0 0 0 0 +4587 1 1.4825 1 108.36850491232724 23.60895142384218 0 0 0 0 +4101 1 1.5661 1 109.47079590396952 25.771649195787177 0 0 0 0 +8246 1 1.098 1 102.2478921813371 23.659953327996785 0 0 0 0 +9123 1 1.046 1 116.29730068287051 49.14539085118336 0 0 0 0 +1801 1 2.3544 1 72.24193600696711 56.88382604267971 0 0 0 0 +8292 1 1.0955 1 80.11737013307052 34.002181728359226 0 0 0 0 +8293 1 1.0954 1 108.36700602358023 33.004271236768325 0 0 0 0 +8299 1 1.0947 1 92.50066966816374 24.297033256411062 0 0 0 0 +8288 1 1.0957 1 66.09971554846221 16.089580868157697 0 0 0 0 +6122 1 1.2812 1 111.82904207600309 20.73150692973876 0 0 0 0 +8390 1 1.0879 1 84.21748062084966 18.316982411547915 0 0 0 0 +8398 1 1.0877 1 110.23820867577591 57.45882252154751 0 0 0 0 +8415 1 1.0866 1 100.55377026242779 28.363190128490572 0 0 0 0 +8483 1 1.082 1 90.03877335933082 38.24254003832038 0 0 0 0 +8534 1 1.0789 1 102.66798812007072 42.56529752229991 0 0 0 0 +8561 1 1.0774 1 101.65519767667213 20.076096157457837 0 0 0 0 +8610 1 1.0745 1 109.1984426261433 39.07702045559517 0 0 0 0 +9678 1 1.0168 1 99.69756262006867 22.553983179706336 0 0 0 0 +8651 1 1.0722 1 88.02653521790661 37.05817339282775 0 0 0 0 +8671 1 1.0712 1 101.40940624646018 27.059987316702372 0 0 0 0 +6003 1 1.2942 1 72.47106294072339 12.27634760597043 0 0 1 0 +6124 1 1.2811 1 68.4835855559118 55.61644417238869 0 0 0 0 +379 1 5.074 1 116.77776137750259 53.235622861769734 0 0 0 0 +8893 1 1.0577 1 77.42166381956413 26.771002648887993 0 0 0 0 +777 1 3.6347 1 107.94510369483253 18.733329514487313 0 0 0 0 +8945 1 1.0554 1 95.05739144331444 63.12032078231281 0 0 0 0 +8967 1 1.0543 1 82.61629363005054 57.81967402003694 0 0 0 0 +8973 1 1.054 1 106.63099772342831 60.49682304540264 0 0 0 0 +8907 1 1.0571 1 69.79622366794511 10.590776492192184 0 0 1 0 +9035 1 1.0508 1 101.2136424007989 12.967358553189339 0 0 0 0 +7924 1 1.1194 1 77.01880661128425 59.7291797694673 0 0 0 0 +9072 1 1.0486 1 92.78605044081966 33.18698766061391 0 0 0 0 +9089 1 1.0475 1 93.22816635380303 39.08900117569847 0 0 0 0 +9096 1 1.0472 1 105.70820781414638 33.58502648832812 0 0 0 0 +1354 1 2.7332 1 71.68828833138517 10.486268450822411 0 0 1 0 +9191 1 1.0423 1 95.67558923239507 13.816168650631536 0 0 0 0 +9221 1 1.0409 1 75.01330639871216 34.671982981949576 0 0 0 0 +5940 1 1.3009 1 75.36200601243706 13.63986243633635 0 0 0 0 +9241 1 1.0399 1 82.87341724420561 42.88141102020556 0 0 0 0 +3893 1 1.6097 1 72.54281495610923 60.91639233874944 0 0 0 0 +9299 1 1.0366 1 114.42347969344021 48.6781661584943 0 0 0 0 +9306 1 1.0361 1 78.27050106456818 40.26843929176124 0 0 0 0 +9318 1 1.0352 1 110.94799343736771 54.62446834595302 0 0 0 0 +9333 1 1.0345 1 115.96310397656576 35.32726625489547 0 0 0 0 +7359 1 1.1649 1 64.78414041814584 10.7808387279623 0 0 0 0 +9356 1 1.0334 1 83.82013434331802 20.306354678415076 0 0 0 0 +4005 1 1.5826 1 110.59202055998203 30.434699066547626 0 0 0 0 +9392 1 1.0312 1 92.77524295707079 32.16103102207913 0 0 0 0 +6333 1 1.2585 1 73.998969550782 57.12028103233847 0 0 0 0 +9435 1 1.0291 1 107.74219083918959 53.30745793936624 0 0 0 0 +9461 1 1.0277 1 110.77912551175153 45.87807441035424 0 0 0 0 +6306 1 1.2606 1 101.9507800589407 26.116806515674956 0 0 0 0 +9520 1 1.0247 1 79.40817506863597 44.979937657363685 0 0 0 0 +9558 1 1.0225 1 88.79381838118182 33.52505584353444 0 0 0 0 +9565 1 1.0222 1 79.10073708084886 39.732813790365356 0 0 0 0 +4069 1 1.5714 1 70.42260502024092 56.268133396135426 0 0 0 0 +9582 1 1.0216 1 112.46109210712828 41.58767716998283 0 0 0 0 +9648 1 1.0179 1 110.19132370821066 53.09356873061335 0 0 0 0 +980 1 3.2089 1 76.17364404940676 32.93860204292869 0 0 0 0 +9660 1 1.0174 1 83.9828436791229 56.236718962281216 0 0 0 0 +4728 1 1.4595 1 65.16131094966784 16.934806345848596 0 0 0 0 +9681 1 1.0165 1 86.28204077188641 56.153048734105774 0 0 0 0 +9696 1 1.0156 1 91.90348595139999 20.8812090333707 0 0 0 0 +9699 1 1.0153 1 107.21366541582853 48.430540650528975 0 0 0 0 +9730 1 1.0137 1 89.20535887100574 26.937238093293505 0 0 0 0 +9741 1 1.0131 1 93.52537120377951 31.483328405818156 0 0 0 0 +9798 1 1.0099 1 111.71073788669634 50.9510640935805 0 0 0 0 +9802 1 1.0098 1 66.03213637647244 21.81630550811255 0 0 0 0 +9811 1 1.0095 1 106.48288115078827 35.187388236180254 0 0 0 0 +5046 1 1.4137 1 71.62460872580172 48.41558951082015 0 0 0 0 +9832 1 1.0086 1 107.42245680245676 33.42851828343053 0 0 0 0 +9907 1 1.0047 1 102.43335722751051 27.133399668740104 0 0 0 0 +9920 1 1.0043 1 109.97352853442331 39.76357782371815 0 0 0 0 +9057 1 1.0499 1 98.63322881018021 11.138630584610155 0 0 0 0 +7558 1 1.1474 1 102.72713628482555 20.632202211903376 0 0 0 0 +7749 1 1.1324 1 67.74484916613262 50.236328594248626 0 0 0 0 +5778 1 1.3163 1 77.34133552381805 47.82166710972603 0 0 0 0 +3534 1 1.6858 1 108.70021274251235 28.276610270209595 0 0 0 0 +186 1 7.0902 1 84.52142926778642 61.41733401304398 0 0 0 0 +8375 1 1.0888 1 65.38083626849237 18.177207445053558 0 0 0 0 +9598 1 1.0208 1 74.13014674117346 47.82774708898554 0 0 0 0 +85 1 10.0597 1 78.7164674002788 18.139799472679574 0 0 1 0 +6750 1 1.2183 1 79.19061856048359 12.633565916941597 0 0 0 0 +300 1 5.7387 1 105.24296384757172 25.285338941224776 0 0 0 0 +2752 1 1.911 1 80.33747230446166 54.03333680736955 0 0 0 0 +9042 1 1.0504 1 76.92014085333851 30.90342920734766 0 0 0 0 +2051 1 2.2085 1 70.40260417549368 32.01496465813297 0 0 0 0 +7679 1 1.1381 1 81.77826931106893 52.672267454147686 0 0 0 0 +5727 1 1.3232 1 82.83100543119478 56.31859610351817 0 0 0 0 +9496 1 1.0262 1 109.6756569810127 31.262439573194936 0 0 0 0 +7935 1 1.119 1 76.18057813059515 47.787802914332715 0 0 0 0 +3502 1 1.6933 1 107.38003792970073 16.167256731564944 0 0 0 0 +5467 1 1.3545 1 107.46837138306638 22.527578652301283 0 0 0 0 +2634 1 1.9556 1 80.4337069074475 52.1491600210596 0 0 0 0 +5846 1 1.3101 1 65.77061618154711 28.31137637645748 0 0 0 0 +1802 1 2.3534 1 70.0208352405285 53.5045163930122 0 0 0 0 +2181 1 2.1455 1 66.81074868315984 55.74505399446012 0 0 0 0 +2745 1 1.9127 1 64.83580646406261 15.311889772274286 0 0 0 0 +3497 1 1.6939 1 114.78072366708615 26.727586644380484 0 0 0 0 +6815 1 1.2107 1 71.25733576300547 55.15460405296956 0 0 0 0 +617 1 3.975 1 64.09386976959789 56.95756254151872 0 0 0 0 +6962 1 1.1975 1 69.61476737995257 55.19080984400257 0 0 0 0 +5206 1 1.3881 1 73.97973031396579 10.408240888952562 0 0 0 0 +1971 1 2.2576 1 69.56608768124853 60.91737169553582 0 0 0 0 +733 1 3.7131 1 79.39940097655149 59.825918114997336 0 0 0 0 +9238 1 1.0401 1 84.61343142076642 10.775692018036207 0 0 0 0 +3159 1 1.777 1 79.83341779769958 11.397752426867715 0 0 0 0 +7251 1 1.1739 1 115.90674686430386 27.568606708334425 0 0 0 0 +1434 1 2.6432 1 76.99001733636587 57.76684025223358 0 0 0 0 +3176 1 1.7715 1 74.51014869848792 58.48660770006923 0 0 0 0 +6813 1 1.2108 1 69.33679790324273 62.6351300428347 0 0 0 0 +1543 1 2.5358 1 116.7200666852605 25.952949609662475 0 0 0 0 +4490 1 1.4992 1 75.77968834843678 59.405327238795536 0 0 0 0 +1489 1 2.5899 1 71.44330606976085 59.167572499128084 0 0 0 0 +6834 1 1.2088 1 116.89481493790056 24.106903289501822 0 0 0 0 +6598 1 1.2316 1 64.02285813336046 24.090737466936375 0 0 0 0 +1141 1 2.9694 1 92.77659792544866 10.336960343994688 0 0 0 0 +5561 1 1.3433 1 93.77822813350453 63.089101800648265 0 0 0 0 +6664 1 1.2255 1 74.63391324345525 60.28683507371203 0 0 0 0 +5042 1 1.4146 1 116.91162102954019 39.29010726392791 0 0 0 0 +7247 1 1.174 1 71.3881236292827 62.10918209969268 0 0 0 0 +4556 1 1.4881 1 74.96004823650314 63.42924424484222 0 0 0 0 +1716 1 2.4134 1 116.92034765337762 46.65389266898753 0 0 0 0 +8278 1 1.0965 1 63.63634792175453 22.9692857743955 0 0 0 0 +6679 1 1.2241 1 104.21929618352033 110.11118605022904 0 0 0 0 +52 1 12.8778 1 74.18740539278623 107.1100856835942 0 0 0 0 +66 1 11.4285 1 80.9465916828015 93.28318506662161 0 0 0 0 +103 1 9.5411 1 87.69753959322323 102.29178132645256 0 0 0 0 +107 1 9.428 1 76.03051412757972 78.33946857750242 0 0 0 0 +9992 1 1.0003 1 67.2647391291913 79.65920114932875 0 0 0 0 +136 1 8.0108 1 71.52999093356347 66.66744956898006 0 0 0 0 +142 1 7.8328 1 90.16975348226521 112.45474340566899 0 0 0 0 +171 1 7.3254 1 83.57551956534041 68.4674770607651 0 0 0 0 +456 1 4.6343 1 100.48896420357163 66.67436514478368 0 0 0 0 +193 1 6.9441 1 92.6908972299144 87.62023117140265 0 0 0 0 +203 1 6.7893 1 94.58994929358268 75.8114784744524 0 0 0 0 +4440 1 1.5077 1 107.59154646499023 110.3849110743476 0 0 0 0 +212 1 6.6222 1 90.79948178943462 81.15966988305503 0 0 0 0 +8957 1 1.0549 1 104.14929246942857 97.64353811293181 0 0 0 0 +231 1 6.3221 1 98.93309627882458 89.48657875184793 0 0 0 0 +7659 1 1.1395 1 103.33249709539781 66.22125823828631 0 0 0 0 +5661 1 1.3314 1 106.32691490213844 111.05967998681663 0 0 0 0 +348 1 5.3539 1 83.86571037264406 81.85841520667971 0 0 0 0 +392 1 4.962 1 77.93469068711937 64.4950421038865 0 0 0 0 +396 1 4.946 1 74.91286856398662 86.51186066116854 0 0 0 0 +6605 1 1.2312 1 111.42838805516763 93.50505028013211 0 0 0 0 +7472 1 1.155 1 99.17625189384944 100.8751937346078 0 0 0 0 +502 1 4.3624 1 97.00661561174952 83.00988713858118 0 0 0 0 +533 1 4.2487 1 76.02757223011659 70.75894426911503 0 0 0 0 +554 1 4.192 1 84.28430476018795 112.96563755792745 0 0 0 0 +6560 1 1.2363 1 114.07849629121698 105.0580601678525 0 0 0 0 +573 1 4.1199 1 95.02757325825404 94.2245239665709 0 0 0 0 +591 1 4.0427 1 84.27766117482525 86.4497302467159 0 0 0 0 +592 1 4.0425 1 75.4159672185185 98.52064953286524 0 0 0 0 +8861 1 1.0593 1 97.79768297673183 65.53422630105764 0 0 0 0 +635 1 3.9235 1 73.4270003742744 94.26498217008739 0 0 0 0 +686 1 3.8151 1 94.23124605823641 101.32516301338875 0 0 0 0 +688 1 3.8127 1 91.64158842266605 71.48279314347059 0 0 0 0 +7367 1 1.1641 1 67.0407031501629 78.61244309185449 0 0 0 0 +785 1 3.617 1 98.74763685880407 78.8455264588966 0 0 0 0 +806 1 3.5762 1 100.96629429134545 82.51150326548253 0 0 0 0 +807 1 3.5733 1 87.73298420692764 90.21347480120598 0 0 0 0 +828 1 3.517 1 100.838177973184 76.05829202718574 0 0 0 0 +830 1 3.5096 1 104.00926481743431 92.29272062909295 0 0 0 0 +8109 1 1.1071 1 98.43202920025924 64.63548660035238 0 0 0 0 +864 1 3.4373 1 84.80470130638983 108.41074276651571 0 0 0 0 +894 1 3.3663 1 81.76644318834613 104.53910861152376 0 0 0 0 +7458 1 1.1563 1 97.69543707609886 67.31968700131738 0 0 0 0 +693 1 3.8004 1 95.9875034155752 98.03468045964628 0 0 0 0 +934 1 3.2875 1 82.26389808264378 77.93782857058613 0 0 0 0 +937 1 3.2796 1 80.70019265412571 84.66920619528169 0 0 0 0 +4064 1 1.5726 1 104.7481983248774 89.97607256342509 0 0 0 0 +991 1 3.191 1 71.77281913137406 90.60789100556006 0 0 0 0 +1022 1 3.1474 1 86.47994619939615 74.68312554676676 0 0 0 0 +1390 1 2.6918 1 69.36640061690156 87.09318237356851 0 0 0 0 +1071 1 3.0603 1 97.51736502108794 102.15124013315423 0 0 0 0 +335 1 5.4316 1 92.7787381084459 67.07779871491512 0 0 0 0 +1108 1 3.0054 1 91.34954602506791 92.3393142565055 0 0 0 0 +1136 1 2.9734 1 100.65418603866081 70.37233598431735 0 0 0 0 +1198 1 2.9051 1 79.5809306698978 114.47028758047233 0 0 0 0 +3627 1 1.6663 1 63.97160254672261 113.23183587033816 0 0 0 0 +5226 1 1.3858 1 69.55530747132593 84.3530168628871 0 0 0 0 +1320 1 2.7696 1 92.4831625296604 106.1275737973543 0 0 0 0 +1348 1 2.7383 1 77.79989748389575 84.08288856892031 0 0 0 0 +1381 1 2.7016 1 71.5409612279939 73.01210666289371 0 0 0 0 +1409 1 2.6702 1 71.48407011581854 99.99451180488163 0 0 0 0 +1410 1 2.6694 1 90.01652479175884 76.66944208734714 0 0 0 0 +9576 1 1.0217 1 102.63318989697763 64.93343595179974 0 0 0 0 +1447 1 2.6266 1 89.3363388249354 68.98445609602553 0 0 0 0 +1485 1 2.5922 1 99.54073821584109 85.18519022459179 0 0 0 0 +2831 1 1.8848 1 65.76535578506737 111.10873039659236 0 0 0 0 +3444 1 1.7052 1 101.71233381072913 95.84656685065886 0 0 0 0 +1504 1 2.5733 1 94.46616864112895 104.40389773586946 0 0 0 0 +4877 1 1.437 1 106.28994962810003 109.68981543995868 0 0 0 0 +1537 1 2.5411 1 105.03176871669285 80.79869594495268 0 0 0 0 +1588 1 2.5022 1 81.65441372895366 109.3245977736302 0 0 0 0 +4559 1 1.4879 1 94.62539523792076 64.24919722114409 0 0 0 0 +1599 1 2.4947 1 96.39541512240032 68.57104488147017 0 0 0 0 +8608 1 1.0746 1 65.23015998090197 109.2989165390674 0 0 0 0 +1635 1 2.4636 1 80.69382404718154 100.20269927675555 0 0 0 0 +1636 1 2.4627 1 74.75336615787302 90.2047942295325 0 0 0 0 +1664 1 2.4441 1 98.69743636639117 93.80656871879502 0 0 0 0 +1685 1 2.4309 1 92.37584746831877 96.00469770303744 0 0 0 0 +1714 1 2.4141 1 86.74530669463178 72.03718587182782 0 0 0 0 +1780 1 2.369 1 78.87827523073331 67.9534911410311 0 0 0 0 +912 1 3.333 1 65.15458893069196 69.21240623594812 0 0 0 0 +9860 1 1.0067 1 115.99464270908494 96.83970963958689 0 0 0 0 +1804 1 2.3532 1 78.38026479239107 72.98800363025384 0 0 0 0 +1805 1 2.3527 1 90.06197584481468 96.2614375276773 0 0 0 0 +1813 1 2.3486 1 82.16526071923838 75.0056691690254 0 0 0 0 +1827 1 2.3423 1 84.1990920609151 76.00610506197255 0 0 0 0 +4534 1 1.492 1 113.72591996985476 91.034314336153 0 0 0 0 +8881 1 1.0584 1 66.52435596290852 87.82376367400077 0 0 0 0 +1970 1 2.2583 1 67.74386322444086 110.91639475552005 0 0 0 0 +9533 1 1.0241 1 65.78591988770174 105.66339370383996 0 0 0 0 +2083 1 2.1913 1 88.53301195086736 92.96615046263514 0 0 0 0 +7173 1 1.1804 1 104.68803309797224 98.59889503175967 0 0 0 0 +2124 1 2.1675 1 95.9415932175431 70.82997313076693 0 0 0 0 +2125 1 2.1668 1 87.22009875345856 83.51135319566698 0 0 0 0 +6251 1 1.2651 1 110.54658400019058 94.65483688556105 0 0 0 0 +9876 1 1.006 1 112.62904714400126 106.55712423203843 0 0 0 0 +2723 1 1.9226 1 115.82081617937288 107.1344626711215 0 0 0 0 +2182 1 2.1454 1 87.66829099043277 66.13827604454741 0 0 0 0 +2183 1 2.145 1 87.87690044251026 96.49829523488994 0 0 0 0 +2187 1 2.1443 1 72.45135185855939 97.86335376987962 0 0 0 0 +1954 1 2.2684 1 64.82214492753914 71.95953035450896 0 0 0 0 +2213 1 2.1311 1 100.02754606585695 109.23384844370636 0 0 0 0 +2223 1 2.1256 1 67.9767587796506 103.12371522241537 0 0 0 0 +2230 1 2.1237 1 66.59905692490798 66.98658856304657 0 0 0 0 +7397 1 1.1617 1 107.15080221938385 89.4110288494537 0 0 0 0 +2343 1 2.0709 1 96.14386262503929 79.93584165768843 0 0 0 0 +2344 1 2.0708 1 66.79373452416024 107.17161128999288 0 0 0 0 +2366 1 2.0611 1 87.0796566589127 85.55121288846036 0 0 0 0 +2369 1 2.0592 1 101.40713119623409 79.77897116316862 0 0 0 0 +2388 1 2.0527 1 87.72800107504082 76.88342299802562 0 0 0 0 +2426 1 2.0379 1 81.45473414031619 111.84723908975702 0 0 0 0 +2580 1 1.9775 1 103.03596222982542 89.68375112961732 0 0 0 0 +9270 1 1.0382 1 105.1339075320407 97.29276178164996 0 0 0 0 +6315 1 1.2597 1 92.39194384301011 99.71610246449391 0 0 0 0 +2674 1 1.9408 1 82.40937062870137 72.90690582540365 0 0 0 0 +2718 1 1.9236 1 88.4165105656816 107.94185319563344 0 0 0 0 +2727 1 1.9211 1 88.987239097254 72.49010489405605 0 0 0 0 +9416 1 1.0298 1 99.40732515585529 64.16080342551363 0 0 0 0 +2759 1 1.9084 1 95.2257339158869 91.22009516814694 0 0 0 0 +2764 1 1.9069 1 82.08067810655407 101.82356585933378 0 0 0 0 +2175 1 2.1477 1 113.33858062364098 86.76452114163725 0 0 0 0 +2806 1 1.8915 1 87.05560385778047 87.48160481795848 0 0 0 0 +6043 1 1.29 1 67.77200078955309 80.67875109493777 0 0 0 0 +2864 1 1.8731 1 87.33270261411754 94.59307434384047 0 0 0 0 +2913 1 1.8598 1 102.67029173789167 74.2544140455655 0 0 0 0 +2946 1 1.8497 1 82.41861254643848 107.32280787338891 0 0 0 0 +2969 1 1.8426 1 96.77054313168443 86.06350178846188 0 0 0 0 +195 1 6.9306 1 112.82289909610725 115.27238615773548 0 0 0 0 +3042 1 1.814 1 81.88020273837537 114.68991367089558 0 0 0 0 +2418 1 2.0416 1 113.72192686301791 95.78831597775927 0 0 0 0 +3126 1 1.786 1 80.69242532067786 73.5668196976923 0 0 0 0 +3368 1 1.7239 1 114.66056299102365 89.78510235691338 0 0 0 0 +3179 1 1.771 1 93.26963766466035 98.51537988628185 0 0 0 0 +3245 1 1.7541 1 90.03455733190441 94.22822785649691 0 0 0 0 +3272 1 1.747 1 92.73851203090638 108.46108806275782 0 0 0 0 +3289 1 1.7435 1 79.2576548360792 101.88644783929905 0 0 0 0 +3300 1 1.7396 1 83.68680417199671 106.13734688886083 0 0 0 0 +3320 1 1.7351 1 88.87397609064458 85.6875639123626 0 0 0 0 +3334 1 1.7323 1 83.92791857690507 73.99626593805264 0 0 0 0 +3350 1 1.7282 1 72.88518650394157 114.28589680769058 0 0 0 0 +3382 1 1.7203 1 87.6372368935556 70.19905616630632 0 0 0 0 +3417 1 1.7115 1 91.1569592415636 107.87929081592783 0 0 0 0 +3466 1 1.7001 1 73.58051168204089 72.3616039786923 0 0 0 0 +6692 1 1.2232 1 92.89695448464815 103.43297191111195 0 0 0 0 +3523 1 1.6886 1 101.17494582228821 73.41768754952118 0 0 0 0 +3535 1 1.6856 1 77.92158995802595 87.52812250723576 0 0 0 0 +3562 1 1.6783 1 71.4176851140552 75.17901000804304 0 0 0 0 +3585 1 1.6742 1 98.41807118894201 72.53746240932725 0 0 0 0 +3608 1 1.6693 1 101.4868077844165 92.4946707535866 0 0 0 0 +3432 1 1.7088 1 65.08760274116364 114.50477957554347 0 0 0 0 +3706 1 1.6451 1 78.96924118271195 71.14855477684894 0 0 0 0 +3733 1 1.6425 1 98.3846448235646 68.92830007296807 0 0 0 0 +7522 1 1.1509 1 114.96196534238138 86.72294435887606 0 0 0 0 +3752 1 1.6393 1 93.57125333877657 91.78581055002276 0 0 0 0 +3789 1 1.6323 1 105.87878657114912 94.58773805268758 0 0 0 0 +6949 1 1.1983 1 100.28461155574996 95.68062756646309 0 0 0 0 +3817 1 1.6243 1 67.2059035285884 108.96533155095635 0 0 0 0 +5556 1 1.3437 1 64.33192827102945 76.64230901268998 0 0 0 0 +2661 1 1.9434 1 98.7483411863689 97.50349568533997 0 0 0 0 +3850 1 1.617 1 71.93147470955648 85.44846485653001 0 0 0 0 +3872 1 1.6129 1 103.04298404645957 79.00344747307143 0 0 0 0 +3876 1 1.6125 1 78.67034755822169 100.36201179952087 0 0 0 0 +5228 1 1.3857 1 97.70252570871271 104.34349692857631 0 0 0 0 +3102 1 1.7967 1 65.62586770105557 112.87590365326417 0 0 0 0 +9817 1 1.009 1 108.66825177258507 109.06075990136625 0 0 0 0 +4041 1 1.5759 1 74.06944769055679 83.4244746988906 0 0 0 0 +9078 1 1.0483 1 95.77605698997591 103.19108146831186 0 0 0 0 +1439 1 2.6358 1 96.64635832550528 64.04414006392145 0 0 0 0 +4088 1 1.5686 1 78.68943760134232 86.01097994442469 0 0 0 0 +2979 1 1.8391 1 113.64207609162756 93.87102188460933 0 0 0 0 +4181 1 1.5527 1 85.56149120606374 78.38725314256325 0 0 0 0 +4314 1 1.5302 1 66.29824560726897 103.65297987404281 0 0 0 0 +4361 1 1.521 1 81.6330073574922 86.87940947471091 0 0 0 0 +1164 1 2.9408 1 89.19432885384674 63.87488265466003 0 0 0 0 +4390 1 1.5166 1 99.95825715046136 72.43993549195176 0 0 0 0 +8962 1 1.0547 1 114.0600757325875 106.30695987310216 0 0 0 0 +5749 1 1.3206 1 116.52947192873842 113.7633662884688 0 0 0 0 +8454 1 1.0841 1 105.23471629473524 110.60524786618647 0 0 0 0 +4494 1 1.4983 1 103.30060433087117 76.31951015022628 0 0 0 0 +4501 1 1.497 1 101.11936232902121 86.36583051407155 0 0 0 0 +4529 1 1.4932 1 94.82698168661989 81.11781747915714 0 0 0 0 +4110 1 1.5645 1 92.02414846958497 63.75086521384252 0 0 0 0 +5947 1 1.3 1 115.01691393428625 91.48950761674563 0 0 0 0 +4604 1 1.4797 1 98.27687572886595 74.06995095571324 0 0 0 0 +4629 1 1.4772 1 80.52375991971557 81.36169837669136 0 0 0 0 +4641 1 1.4751 1 103.33705242301629 81.78906040643251 0 0 0 0 +4649 1 1.4736 1 76.13387582041541 67.07677828131592 0 0 0 0 +4682 1 1.4672 1 99.695465743895 73.8825894647009 0 0 0 0 +4684 1 1.467 1 80.334012831254 75.1165595823568 0 0 0 0 +4732 1 1.4591 1 88.65492216854636 74.09859745587032 0 0 0 0 +4737 1 1.4585 1 103.83756752611572 77.69001389561144 0 0 0 0 +4752 1 1.4561 1 70.45179147809448 85.37360412882184 0 0 0 0 +4758 1 1.4551 1 86.38374010538399 79.58488218738239 0 0 0 0 +4831 1 1.4447 1 80.62139136253643 102.51056828698927 0 0 0 0 +4855 1 1.4406 1 101.7322783553864 109.67559379518534 0 0 0 0 +4917 1 1.4299 1 85.04454886536784 72.89326861201872 0 0 0 0 +1723 1 2.41 1 108.2732102340123 96.51149635207798 0 0 0 0 +4996 1 1.4208 1 70.89675711642472 76.60736146757458 0 0 0 0 +5034 1 1.4156 1 80.97032410071586 63.68708710174741 0 0 0 0 +9945 1 1.0032 1 86.1833543005281 88.57882723860467 0 0 0 0 +6322 1 1.2591 1 66.00374287792432 79.14275815939727 0 0 0 0 +5074 1 1.4084 1 78.62093499028265 69.73698339614702 0 0 0 0 +5099 1 1.4045 1 83.10976452566729 99.31721665113155 0 0 0 0 +5136 1 1.3982 1 104.514675784324 78.92909326996376 0 0 0 0 +7296 1 1.1709 1 97.75015959441637 96.37634449972906 0 0 0 0 +5258 1 1.3809 1 78.74457716884234 112.5382853683187 0 0 0 0 +5268 1 1.3803 1 69.8265494955296 71.95577721087962 0 0 0 0 +5271 1 1.3795 1 80.07084882867397 72.14901984325454 0 0 0 0 +5288 1 1.3771 1 102.51709415376654 71.37113958007828 0 0 0 0 +5993 1 1.2954 1 107.32165751882211 111.86528138008974 0 0 0 0 +5352 1 1.3696 1 80.29970276002169 110.6626154066723 0 0 0 0 +5366 1 1.3682 1 77.04626865542882 100.60666454183284 0 0 0 0 +5371 1 1.3675 1 88.7807431148202 95.00724381862948 0 0 0 0 +5409 1 1.3621 1 88.58757616097463 87.91720912699869 0 0 0 0 +5420 1 1.3609 1 102.69066519444699 68.63883242070354 0 0 0 0 +5421 1 1.3609 1 91.7294442870501 98.67930104732213 0 0 0 0 +5448 1 1.3567 1 97.51349638353486 95.20445559303892 0 0 0 0 +683 1 3.8179 1 69.4998053743335 78.78710736853282 0 0 0 0 +5546 1 1.3447 1 94.29292816928802 82.81483914780162 0 0 0 0 +5571 1 1.3415 1 89.20773839066239 70.89652379124743 0 0 0 0 +642 1 3.9107 1 110.8185294478042 88.36357754995889 0 0 0 0 +3879 1 1.6119 1 94.3083436201785 71.67004361067518 0 0 0 0 +5739 1 1.3218 1 102.58379040155974 72.69635458434374 0 0 0 0 +5754 1 1.32 1 71.22742209372443 87.71738227343627 0 0 0 0 +5768 1 1.3174 1 80.31277413785197 86.87449586159795 0 0 0 0 +5771 1 1.3172 1 98.51856032625223 76.42556260467298 0 0 0 0 +9425 1 1.0294 1 108.82839965840442 110.09337151545334 0 0 0 0 +5780 1 1.3161 1 72.3652504241094 88.32345127039783 0 0 0 0 +5831 1 1.3113 1 86.94428636001413 80.78396784395493 0 0 0 0 +5839 1 1.3107 1 92.36190007149499 94.17645585952022 0 0 0 0 +5842 1 1.3103 1 73.38944974562905 100.12087831322707 0 0 0 0 +5855 1 1.3094 1 86.98339143826145 78.3663924431013 0 0 0 0 +5883 1 1.3064 1 99.03184375823646 81.17133327059878 0 0 0 0 +5929 1 1.302 1 90.73843950978971 97.86856856930747 0 0 0 0 +5933 1 1.3017 1 68.5822326529213 71.53617596805438 0 0 0 0 +1288 1 2.8034 1 106.65875379600108 98.45263539105706 0 0 0 0 +5957 1 1.2991 1 98.54482273283415 109.98051649401384 0 0 0 0 +5986 1 1.2963 1 72.30112988460546 71.21632840287351 0 0 0 0 +6039 1 1.2906 1 89.0299573165279 67.12161155592786 0 0 0 0 +6068 1 1.2867 1 90.0457572324806 90.70615598493706 0 0 0 0 +6081 1 1.2853 1 101.850326246624 78.20012403750235 0 0 0 0 +2238 1 2.1204 1 112.51406743073278 92.28815638830082 0 0 0 0 +6107 1 1.2828 1 96.38192852068599 104.4034629478567 0 0 0 0 +859 1 3.4419 1 116.13773820871937 94.64807762565465 0 0 0 0 +6182 1 1.274 1 85.82293210139117 97.27803567517509 0 0 0 0 +6200 1 1.2716 1 86.48600984304551 115.09687691917887 0 0 0 0 +6203 1 1.2714 1 74.73319627123341 92.04886570907547 0 0 0 0 +8383 1 1.0883 1 107.29732153763396 108.93424690709945 0 0 0 0 +6253 1 1.2647 1 94.48682433038987 79.80796368484093 0 0 0 0 +8327 1 1.0924 1 109.07240828716094 90.10700306699052 0 0 0 0 +7872 1 1.1231 1 111.70369677393897 109.13495780600842 0 0 0 0 +9712 1 1.0146 1 116.06065825372433 86.99104721655578 0 0 0 0 +6357 1 1.2563 1 79.18303365775243 82.6485077710486 0 0 0 0 +6364 1 1.2555 1 91.09571507136393 73.92703732598626 0 0 0 0 +6372 1 1.255 1 96.0898188769925 111.05385115764246 0 0 0 0 +6427 1 1.2496 1 79.17397965460589 99.19132066498729 0 0 0 0 +6445 1 1.2478 1 74.77872258991188 73.18300813334263 0 0 0 0 +8640 1 1.0727 1 96.43402716061011 100.4048802667395 0 0 0 0 +6547 1 1.2379 1 85.87385237185248 84.43663794566169 0 0 0 0 +6564 1 1.2361 1 97.43747698765759 70.0745536566217 0 0 0 0 +6568 1 1.2358 1 98.60986078218025 70.30169609967899 0 0 0 0 +6583 1 1.2336 1 88.52578188886947 75.43252825821409 0 0 0 0 +6593 1 1.2321 1 82.70148158050148 110.81414749906509 0 0 0 0 +6616 1 1.2306 1 89.92589245348348 73.680373985973 0 0 0 0 +6655 1 1.2266 1 77.95381409361474 99.14386496031804 0 0 0 0 +7122 1 1.184 1 65.21926190366892 75.68945937390404 0 0 0 0 +6688 1 1.2233 1 97.83586755513679 71.22260104805906 0 0 0 0 +6691 1 1.2233 1 71.22593026014796 80.5661222261229 0 0 0 0 +9913 1 1.0045 1 91.82562586398987 97.55920414389986 0 0 0 0 +6709 1 1.2213 1 87.09834097379662 108.78236157496784 0 0 0 0 +6714 1 1.221 1 106.0738672850544 89.81755678451266 0 0 0 0 +6719 1 1.2204 1 79.23052981149594 87.26199086393645 0 0 0 0 +6768 1 1.2162 1 73.32825724135944 89.10385165769942 0 0 0 0 +6774 1 1.2155 1 102.63807484711042 69.90424399619872 0 0 0 0 +6776 1 1.2154 1 97.22571206777695 92.8018319891748 0 0 0 0 +3512 1 1.6913 1 104.10989525060305 63.68652408493265 0 0 0 0 +6831 1 1.2093 1 70.85603844631699 71.19946114469764 0 0 0 0 +6838 1 1.2085 1 80.03108819151122 112.52711331704042 0 0 0 0 +6853 1 1.2071 1 69.26362137226492 102.07578994929125 0 0 0 0 +7103 1 1.1854 1 113.04067407029342 89.89897984428177 0 0 0 0 +6906 1 1.2016 1 86.5457202601059 109.85407433243708 0 0 0 0 +6938 1 1.1991 1 102.9896318026847 80.49021178729004 0 0 0 0 +763 1 3.6517 1 71.54035994890901 82.94397898116011 0 0 0 0 +263 1 6.108 1 65.91715085534786 84.43252609301686 0 0 0 0 +6963 1 1.1973 1 81.89465036530916 64.5813393146133 0 0 0 0 +6974 1 1.1963 1 80.89209982414428 65.19825714631372 0 0 0 0 +2360 1 2.0621 1 110.3791186902849 110.04976887627038 0 0 0 0 +7016 1 1.1926 1 89.7133924993936 74.8298905829683 0 0 0 0 +7080 1 1.1877 1 106.05620266464706 93.26686252184234 0 0 0 0 +1972 1 2.2575 1 112.40441680276268 104.98446409268998 0 0 0 0 +7108 1 1.1851 1 72.05255603740332 96.32842982488019 0 0 0 0 +7118 1 1.1842 1 85.95203023176335 110.8746796328849 0 0 0 0 +7163 1 1.1809 1 93.71840279434086 97.13162613468678 0 0 0 0 +7180 1 1.1797 1 80.89952464551136 76.24607153972711 0 0 0 0 +398 1 4.9385 1 75.90112386236379 115.66298282320057 0 0 0 0 +8977 1 1.0539 1 72.5084722756806 116.13108684831113 0 0 0 0 +7293 1 1.1715 1 103.05461874121471 109.93837499857109 0 0 0 0 +9936 1 1.0035 1 90.78717448602697 75.0075117666153 0 0 0 0 +8746 1 1.0671 1 115.01038209607381 96.59087234384947 0 0 0 0 +6275 1 1.2624 1 103.71619251982165 65.08797903507867 0 0 0 0 +2331 1 2.0762 1 96.43517265510718 66.33171052247187 0 0 0 0 +254 1 6.1669 1 69.00341179189314 114.89549926794835 0 0 0 0 +1800 1 2.3548 1 112.46992961876683 110.65191549989538 0 0 0 0 +7404 1 1.1611 1 86.22311778614889 65.16948660207052 0 0 0 0 +7425 1 1.1593 1 76.61832221650305 68.22737909502159 0 0 0 0 +7428 1 1.1591 1 71.10339522897608 86.48803533687695 0 0 0 0 +5643 1 1.3328 1 114.7592954531997 104.00583939616652 0 0 0 0 +7471 1 1.1552 1 94.8997622861538 69.56259382203835 0 0 0 0 +7516 1 1.1514 1 84.29383394721214 78.68622857585406 0 0 0 0 +7533 1 1.1502 1 79.42100421494476 74.29464240148184 0 0 0 0 +2270 1 2.107 1 67.76893163372134 70.0498383467725 0 0 0 0 +7602 1 1.1439 1 86.9322359195739 107.57673248845066 0 0 0 0 +7641 1 1.1409 1 77.66927442912517 113.19295236287404 0 0 0 0 +7643 1 1.1408 1 69.49580252219602 70.74659929266663 0 0 0 0 +7660 1 1.1392 1 77.96345805047348 101.38275317326575 0 0 0 0 +4213 1 1.5473 1 98.9254596976809 95.75902513303066 0 0 0 0 +6854 1 1.207 1 67.3652585486082 71.65424114170337 0 0 0 0 +5708 1 1.3248 1 110.21008153755264 93.3959791528456 0 0 0 0 +1195 1 2.9086 1 113.5114948867967 108.25206764467009 0 0 0 0 +7805 1 1.1285 1 88.18802554449307 78.36277985189466 0 0 0 0 +5276 1 1.379 1 115.2619761873729 97.76415575342962 0 0 0 0 +1507 1 2.5714 1 64.55752007674016 106.97265300723005 0 0 0 0 +7917 1 1.1197 1 90.614331402239 106.6577878077715 0 0 0 0 +3890 1 1.61 1 65.01742022041014 73.84794651043063 0 0 0 0 +4901 1 1.4321 1 67.6823408990353 88.06061309539098 0 0 0 0 +7946 1 1.1184 1 70.12078709593933 101.30008156743692 0 0 0 0 +8025 1 1.1131 1 99.31065130103542 107.81716574012304 0 0 0 0 +5931 1 1.3018 1 112.06900414431249 90.64455913332341 0 0 0 0 +8070 1 1.1099 1 93.62665964679587 83.7728367801467 0 0 0 0 +8086 1 1.1082 1 77.32003564932776 67.40816776096983 0 0 0 0 +8104 1 1.1072 1 66.56482406240258 104.93970648163416 0 0 0 0 +6143 1 1.2794 1 110.9607601540233 111.62370405496797 0 0 0 0 +8157 1 1.1042 1 97.0221404639472 72.01038529105769 0 0 0 0 +7332 1 1.1679 1 66.31854199334924 71.12161953266863 0 0 0 0 +8191 1 1.1019 1 81.13262036585847 106.65156289642925 0 0 0 0 +8265 1 1.097 1 65.8272717272439 108.40881374399528 0 0 0 0 +8359 1 1.09 1 82.46078053322884 100.37769640640775 0 0 0 0 +8360 1 1.09 1 70.74490467197525 88.76064080419424 0 0 0 0 +8400 1 1.0876 1 67.35305072366585 105.69757304981889 0 0 0 0 +8412 1 1.0868 1 89.83156030492943 107.43373965663314 0 0 0 0 +8424 1 1.0861 1 79.50087361421893 111.56670470125154 0 0 0 0 +8203 1 1.1013 1 114.07049675352233 97.32229491745505 0 0 0 0 +8458 1 1.084 1 83.76741138002428 110.3946848926828 0 0 0 0 +8525 1 1.0796 1 100.17934999964551 92.87857618301413 0 0 0 0 +8645 1 1.0724 1 108.06913603208514 108.18316640538256 0 0 0 0 +8535 1 1.0788 1 85.22043650857277 88.79519630527071 0 0 0 0 +8542 1 1.0786 1 73.30644836131731 73.76179085038325 0 0 0 0 +2010 1 2.2335 1 65.83804330244908 77.41731393504547 0 0 0 0 +8672 1 1.0712 1 73.38911526906993 70.80401290222525 0 0 0 0 +8719 1 1.0688 1 98.6951162120637 75.25811968609194 0 0 0 0 +3446 1 1.705 1 114.3271386867768 101.4564574406217 0 0 0 0 +2211 1 2.132 1 113.35608431670786 103.0530976843204 0 0 0 0 +8785 1 1.0641 1 81.08175871980173 80.11952646921279 0 0 0 0 +1556 1 2.5287 1 114.20932247954839 99.37370393597007 0 0 0 0 +8808 1 1.0628 1 89.89810578147697 84.8215732797277 0 0 0 0 +8834 1 1.0613 1 97.21679829731406 73.02574787691583 0 0 0 0 +8835 1 1.0612 1 87.05474064582354 81.93748003733806 0 0 0 0 +5463 1 1.3549 1 107.13889550346606 93.83622068210383 0 0 0 0 +8864 1 1.0592 1 73.59206301678422 96.7444680534275 0 0 0 0 +4714 1 1.462 1 115.24645748557971 105.59572685198142 0 0 0 0 +9964 1 1.0023 1 79.76167976671319 70.10075035840993 0 0 0 0 +6969 1 1.1967 1 67.29824763316756 68.4790506796064 0 0 0 0 +9002 1 1.0525 1 71.56888530704545 92.67538607503522 0 0 0 0 +6622 1 1.2302 1 109.52215698542632 103.20400593080149 0 0 0 0 +9064 1 1.049 1 84.52479122408772 77.63358797058518 0 0 0 0 +397 1 4.9406 1 68.15798675893186 74.62330552455207 0 0 0 0 +7713 1 1.1354 1 110.79039790989893 104.71921138011811 0 0 0 0 +9103 1 1.0469 1 91.31844155924531 94.66340837107748 0 0 0 0 +9116 1 1.0465 1 72.04140834548446 86.93970377164024 0 0 0 0 +4664 1 1.47 1 69.73030260041419 89.46584143507738 0 0 0 0 +9133 1 1.0455 1 73.61503915633423 91.74464565003291 0 0 0 0 +9194 1 1.0422 1 77.01990099757417 88.53503826761043 0 0 0 0 +9203 1 1.0417 1 68.66541839307396 88.81023815302693 0 0 0 0 +5734 1 1.3226 1 109.03041220198763 113.72299483789413 0 0 0 0 +669 1 3.8455 1 110.29169044788317 107.13973368706621 0 0 0 0 +3383 1 1.7202 1 66.27507674824038 80.57453539605797 0 0 0 0 +9399 1 1.0307 1 98.95276831988672 71.35210574198913 0 0 0 0 +9414 1 1.0298 1 96.38565677940561 92.08217287647192 0 0 0 0 +9423 1 1.0294 1 106.66016867244251 81.72225550618509 0 0 0 0 +6497 1 1.2434 1 99.98080241981643 100.00442448863473 0 0 0 0 +9450 1 1.0284 1 101.57054235218173 72.1293269644929 0 0 0 0 +9493 1 1.0262 1 86.32463231660574 77.40403046038307 0 0 0 0 +9519 1 1.0249 1 86.35511499851981 96.28120139454433 0 0 0 0 +9525 1 1.0246 1 83.85566047491106 72.62518756583452 0 0 0 0 +5841 1 1.3105 1 114.72779738393449 92.7463314794131 0 0 0 0 +9539 1 1.0238 1 80.2762311239315 70.9812610876747 0 0 0 0 +9541 1 1.0237 1 66.16301331965755 109.73416599189787 0 0 0 0 +3205 1 1.7653 1 115.12281205983378 88.1204592403153 0 0 0 0 +9613 1 1.0199 1 81.0672078756139 107.69689837134344 0 0 0 0 +9623 1 1.0196 1 67.59380156117415 104.66217514613965 0 0 0 0 +9642 1 1.0184 1 81.25704482960052 71.93735180480654 0 0 0 0 +9664 1 1.0173 1 102.65386428425464 77.39273302153396 0 0 0 0 +7106 1 1.1853 1 83.16890764008608 115.41147909414302 0 0 0 0 +9745 1 1.013 1 85.73901912245191 76.60696981158344 0 0 0 0 +9816 1 1.0093 1 72.56354063046363 74.50372988647314 0 0 0 0 +9833 1 1.0086 1 76.73306189784265 73.23031576399487 0 0 0 0 +9906 1 1.0047 1 80.30579335857693 82.57314719009504 0 0 0 0 +9911 1 1.0045 1 88.20917125233154 71.34677918171218 0 0 0 0 +6020 1 1.2926 1 103.39487166792918 98.51829111203159 0 0 0 0 +8347 1 1.0907 1 101.28886162606703 84.79203861257605 0 0 0 0 +9492 1 1.0263 1 97.39382045139634 100.13656627249311 0 0 0 0 +4904 1 1.432 1 102.51700515929724 94.16067903709977 0 0 0 0 +2295 1 2.0952 1 100.85266760920791 94.22239864644648 0 0 0 0 +2717 1 1.9242 1 98.58512278771087 99.37102454240711 0 0 0 0 +8499 1 1.081 1 98.22574607496321 105.43152125612667 0 0 0 0 +9562 1 1.0222 1 99.85031486071603 96.6137883703726 0 0 0 0 +5489 1 1.3521 1 93.89422933755066 70.26756946235778 0 0 0 0 +7694 1 1.1369 1 70.06924072663507 81.13294613367728 0 0 0 0 +352 1 5.327 1 96.15007495853115 107.82039437389327 0 0 0 0 +9216 1 1.041 1 69.22507497718038 83.13779046957951 0 0 0 0 +173 1 7.2878 1 105.3304722304376 85.67216850672513 0 0 0 0 +8888 1 1.0579 1 109.7344510187569 95.58652491954858 0 0 0 0 +986 1 3.2003 1 101.18173598203727 98.17174654110231 0 0 0 0 +7497 1 1.1525 1 107.71928001062288 100.0701362365255 0 0 0 0 +3326 1 1.7335 1 94.64639857796041 110.97658592441574 0 0 0 0 +2086 1 2.19 1 108.7785882718024 94.32510399934266 0 0 0 0 +9869 1 1.0063 1 107.57270973959236 82.40198987271975 0 0 0 0 +6272 1 1.2629 1 107.21159785336953 95.08774864584726 0 0 0 0 +1005 1 3.1726 1 109.60992310487532 101.01924849964819 0 0 0 0 +3010 1 1.8253 1 106.21896134092194 96.24360262895541 0 0 0 0 +9457 1 1.0279 1 103.11947654337733 97.42166920187287 0 0 0 0 +5087 1 1.4063 1 89.58656196347255 65.95131432330287 0 0 0 0 +904 1 3.3497 1 107.44745053095906 91.57072433193287 0 0 0 0 +9838 1 1.0083 1 110.70054761607862 84.99671901327861 0 0 0 0 +8426 1 1.0861 1 113.89117310949645 111.48703803637325 0 0 0 0 +4184 1 1.5521 1 109.54174418152883 84.55194696079437 0 0 0 0 +3154 1 1.7782 1 68.80907789798518 81.79623562579168 0 0 0 0 +6360 1 1.256 1 87.23521963692869 64.53148136436202 0 0 0 0 +4777 1 1.4518 1 108.26710893161098 88.8747398593095 0 0 0 0 +7589 1 1.145 1 109.61769289957915 85.93024826926963 0 0 0 0 +1169 1 2.9355 1 103.96909317251401 95.68845821747735 0 0 0 0 +1679 1 2.4404 1 109.1419687007489 111.87929068980263 0 0 0 0 +1525 1 2.5488 1 110.3599216319283 91.49524857890759 0 0 0 0 +1594 1 2.4992 1 64.51736263848201 104.44111999941505 0 0 0 0 +3640 1 1.6646 1 111.70777440001719 85.81480368284254 0 0 0 0 +9384 1 1.0316 1 109.20518907035428 92.81441431602906 0 0 0 0 +498 1 4.3761 1 111.29580754386086 97.75874134117336 0 0 0 0 +76 1 10.4171 1 103.82460433224792 104.31319156974051 0 0 0 0 +2062 1 2.2054 1 111.2206967862448 103.12100207622281 0 0 0 0 +1619 1 2.4801 1 112.34749352884351 101.00210462375225 0 0 0 0 +7449 1 1.1571 1 65.03754323876177 66.78863465435384 0 0 0 0 +6759 1 1.2174 1 67.45090818103972 77.53385948900166 0 0 0 0 +9077 1 1.0484 1 66.41948105639052 72.22154037958394 0 0 0 0 +5593 1 1.3381 1 109.64242641790129 104.46900824065277 0 0 0 0 +3796 1 1.6303 1 113.53036461016056 88.60396075134939 0 0 0 0 +3082 1 1.8054 1 112.09762108662422 94.81191322024819 0 0 0 0 +7336 1 1.1677 1 64.32094967716071 111.8484214341061 0 0 0 0 +7305 1 1.17 1 64.23974409670618 108.80571043696281 0 0 0 0 +3032 1 1.8171 1 64.20335504943222 110.29374903375394 0 0 0 0 +9960 1 1.0027 1 78.76661068180245 116.21634178668322 0 0 0 0 +5073 1 1.4087 1 90.08283383004178 117.03799437994577 0 0 0 0 +4479 1 1.5008 1 91.61640031976994 116.85387266758673 0 0 0 0 +1301 1 2.7927 1 84.9022794750007 116.3398422449824 0 0 0 0 +5033 1 1.4157 1 102.63004629713336 63.76058131226345 0 0 0 0 +2084 1 2.1912 1 117.13101583231952 117.05222256236574 0 0 0 0 +340 1 5.396 1 116.90446884904374 110.57423042604385 0 0 0 0 +42 1 15.4306 1 63.859353020193254 95.48411942545464 0 0 0 0 +3443 1 1.7052 1 63.67269167813263 66.74939734793536 0 0 0 0 +29 1 18.1105 1 101.08880678517185 119.25714446680372 0 0 0 0 +124 1 8.6862 1 75.30811487541729 122.32263128143624 0 0 0 0 +8155 1 1.1043 1 89.79728112245617 118.24831015310934 0 0 0 0 +178 1 7.2453 1 111.51343988953113 127.08112611444352 0 0 0 0 +6001 1 1.2943 1 64.4131312641201 125.59794808001317 0 0 0 0 +9529 1 1.0243 1 109.46478245793259 123.62689151133242 0 0 0 0 +9676 1 1.0169 1 72.02791790165173 118.80610312938808 0 0 0 0 +6903 1 1.2018 1 91.1571176094915 120.17344641306121 0 0 0 0 +3036 1 1.8157 1 117.08733689544987 127.86192257349826 0 0 0 0 +597 1 4.0309 1 97.76696160578047 129.58045377500113 0 0 0 0 +606 1 3.9993 1 89.70232357539368 128.27358569799196 0 0 0 0 +9061 1 1.0497 1 79.96832007815709 123.58208329682257 0 0 0 0 +640 1 3.9108 1 83.98213549794069 123.78529204088902 0 0 0 0 +649 1 3.8897 1 69.08763230111978 122.16460221689552 0 0 0 0 +691 1 3.8011 1 110.09974814875956 134.31424167817426 0 0 0 0 +941 1 3.262 1 66.47903160102666 124.5241192886457 0 0 0 0 +961 1 3.2283 1 84.89284832566847 127.20437316033478 0 0 0 0 +1024 1 3.1445 1 107.64424106210802 131.93122992648964 0 0 0 0 +1114 1 2.9972 1 94.36674983162857 129.96716860211345 0 0 0 0 +1182 1 2.9258 1 65.54813645581893 127.33649297967861 0 0 0 0 +9383 1 1.0317 1 116.35994490020867 135.02443995549575 0 0 0 0 +4558 1 1.4879 1 63.78537030037882 123.46266568931102 0 0 0 0 +1267 1 2.8303 1 91.33713036144344 123.00428726895728 0 0 0 0 +3803 1 1.6283 1 110.74746326564757 121.15584115664436 0 0 0 0 +1280 1 2.8108 1 113.51665551201692 131.6277236367616 0 0 0 0 +1419 1 2.6604 1 103.30953114469871 131.67038867441642 0 0 0 0 +8261 1 1.0972 1 63.67182189673741 124.70225594553426 0 0 0 0 +1552 1 2.5323 1 82.12772770769097 127.73910469733563 0 0 0 0 +7813 1 1.1279 1 89.15262070398472 119.15693748008157 0 0 0 0 +1602 1 2.4933 1 116.10130620698426 131.24177253300485 0 0 0 0 +1611 1 2.484 1 77.03124161577114 127.44102591878229 0 0 0 0 +7252 1 1.1738 1 117.16837110798093 132.7008233761974 0 0 0 0 +1810 1 2.3514 1 105.13482675551826 128.62395146237978 0 0 0 0 +1859 1 2.3254 1 100.88924871432957 131.75670040071347 0 0 0 0 +2079 1 2.1931 1 116.39787179255836 123.92015388616325 0 0 0 0 +375 1 5.0832 1 115.90755078067984 120.35996075050153 0 0 0 0 +5345 1 1.3704 1 114.97832311074315 139.59334825548495 0 0 0 0 +2117 1 2.1715 1 107.39347634923806 129.34309886416403 0 0 0 0 +2170 1 2.1488 1 112.70168891542855 137.69759920067492 0 0 0 0 +2304 1 2.0901 1 86.83445642259895 124.6347997939764 0 0 0 0 +2354 1 2.0666 1 69.08929472393815 127.27277353324936 0 0 0 0 +2355 1 2.0664 1 91.06148348446284 125.40772530807574 0 0 0 0 +2372 1 2.0586 1 94.6488754592566 127.52334848454177 0 0 0 0 +2451 1 2.0271 1 92.67285341733185 128.18987062152564 0 0 0 0 +5344 1 1.3705 1 84.6387756588939 119.46726276801168 0 0 0 0 +2678 1 1.9392 1 81.59477169019729 125.5006188671993 0 0 0 0 +2694 1 1.9318 1 102.03580251388289 129.78432761120737 0 0 0 0 +6992 1 1.1949 1 91.50534410827754 119.06341163640606 0 0 0 0 +2860 1 1.8762 1 107.61559299549016 135.44396029794936 0 0 0 0 +2869 1 1.8724 1 93.04856608805326 126.35841111376882 0 0 0 0 +2923 1 1.8564 1 111.9833169461921 122.34012344151249 0 0 0 0 +3031 1 1.8173 1 69.76676942794856 125.40059737290201 0 0 0 0 +9984 1 1.001 1 88.58948585757567 122.04681380584344 0 0 0 0 +3055 1 1.8112 1 78.86333381037446 126.38207507778361 0 0 0 0 +3203 1 1.7656 1 71.8838619844105 117.46980074191205 0 0 0 0 +3250 1 1.7528 1 88.73242142858756 124.5759262488858 0 0 0 0 +3251 1 1.7528 1 92.01783734258342 129.92488674921933 0 0 0 0 +3480 1 1.6974 1 115.54278065280431 128.94329215145757 0 0 0 0 +5104 1 1.4036 1 115.28586107041144 125.19398363411503 0 0 0 0 +3381 1 1.7203 1 92.81095865002925 124.65171859385451 0 0 0 0 +3848 1 1.6173 1 86.56517543997664 122.82352622833885 0 0 0 0 +3442 1 1.7053 1 106.10171988802352 133.70134297074063 0 0 0 0 +8428 1 1.0861 1 64.97811111709717 123.0249901410881 0 0 0 0 +303 1 5.7182 1 81.26654307092686 118.38030379421998 0 0 0 0 +3666 1 1.6568 1 83.65912501666229 121.07787561671655 0 0 0 0 +3694 1 1.6494 1 110.32955858290053 122.70718293944184 0 0 0 0 +3740 1 1.6412 1 99.00114972509377 132.0584805849242 0 0 0 0 +6021 1 1.2922 1 113.84491133528947 138.9427252983139 0 0 0 0 +3927 1 1.6023 1 72.29577506034155 126.46383071956029 0 0 0 0 +3986 1 1.5892 1 109.81624533449806 131.11162889694216 0 0 0 0 +4022 1 1.5794 1 104.99836103959706 130.5273531476343 0 0 0 0 +9142 1 1.045 1 106.25203980904271 130.42000363122492 0 0 0 0 +4147 1 1.5594 1 100.49082184661614 129.02226522675323 0 0 0 0 +4153 1 1.5579 1 70.54905734110069 118.4171011852639 0 0 0 0 +4294 1 1.5335 1 73.43726149943066 117.63694916396737 0 0 0 0 +858 1 3.4438 1 87.70953911394105 117.44014429408301 0 0 0 0 +4502 1 1.4969 1 89.21372142177057 123.09570110639085 0 0 0 0 +4516 1 1.4945 1 87.03925710901721 127.97759524053001 0 0 0 0 +1157 1 2.9472 1 116.41127651484041 137.06162891622938 0 0 0 0 +9267 1 1.0383 1 66.7078303943905 121.87358599488745 0 0 0 0 +4588 1 1.4824 1 80.20577998241055 128.0571808174775 0 0 0 0 +4718 1 1.4609 1 70.77862268015912 126.66018608507375 0 0 0 0 +9691 1 1.0159 1 79.27550804337582 125.05522563870151 0 0 0 0 +8680 1 1.0711 1 114.95763816606338 123.21357396780225 0 0 0 0 +4911 1 1.4306 1 103.10941619180251 133.65345221977253 0 0 0 0 +5028 1 1.4169 1 81.35094493669654 123.85029485249085 0 0 0 0 +2350 1 2.0681 1 111.15592409661292 119.40132330714687 0 0 0 0 +5114 1 1.4008 1 78.83079063928271 127.96686049829167 0 0 0 0 +6455 1 1.2471 1 77.82148375650648 118.05823856371757 0 0 0 0 +5311 1 1.3743 1 107.32323325639729 126.58174127525983 0 0 0 0 +5341 1 1.3708 1 71.33122152231755 125.35831903141224 0 0 0 0 +5417 1 1.3614 1 103.29176942593368 128.73520348224628 0 0 0 0 +5439 1 1.3581 1 85.06441371762078 120.76159462797355 0 0 0 0 +7884 1 1.1225 1 85.04597739652587 118.29043051711773 0 0 0 0 +2141 1 2.1593 1 80.71177294073283 122.2131593321312 0 0 0 0 +5563 1 1.3427 1 104.93364240577755 132.77890877884957 0 0 0 0 +5577 1 1.3406 1 69.90664285150666 119.70152193235096 0 0 0 0 +5594 1 1.3381 1 80.51255224130303 126.71532641866212 0 0 0 0 +5629 1 1.3339 1 69.13583659961392 118.63570768431498 0 0 0 0 +5639 1 1.3331 1 71.62043100182639 127.7461480521597 0 0 0 0 +5644 1 1.3327 1 109.87876167101183 136.80343128860338 0 0 0 0 +7989 1 1.1151 1 114.89948289764185 138.3818352572723 0 0 0 0 +5745 1 1.3208 1 67.52254074914445 126.70709822886847 0 0 0 0 +5767 1 1.3174 1 111.02803640633779 137.3971701605506 0 0 0 0 +5798 1 1.3149 1 70.6978549615387 124.17762034023303 0 0 0 0 +5807 1 1.3138 1 111.68351367174549 136.29969883888967 0 0 0 0 +5887 1 1.306 1 82.36009400398312 121.75026071516868 0 0 0 0 +5900 1 1.3047 1 88.38391899248451 126.00616338827682 0 0 0 0 +5973 1 1.2974 1 112.43932989346473 120.78838571645345 0 0 0 0 +6287 1 1.2618 1 90.93986020148856 118.02407909232579 0 0 0 0 +1058 1 3.0789 1 87.21048959101358 120.58837586892889 0 0 0 0 +631 1 3.9272 1 113.8647240840791 134.90973507212308 0 0 0 0 +9190 1 1.0424 1 65.93273246819334 122.51651835606602 0 0 0 0 +6059 1 1.2873 1 72.90569921101697 127.74890696759145 0 0 0 0 +6279 1 1.2622 1 101.86183908595189 133.22512931414911 0 0 0 0 +6292 1 1.2615 1 68.3297213714606 125.7481101466732 0 0 0 0 +6303 1 1.2608 1 80.2993304471549 124.6281244115461 0 0 0 0 +3238 1 1.7551 1 113.57841052500234 123.0993922598693 0 0 0 0 +6385 1 1.2528 1 114.669011016405 130.04200513734855 0 0 0 0 +6387 1 1.2526 1 110.88839136578399 131.99341361317315 0 0 0 0 +4146 1 1.5594 1 117.00954703365792 129.486283053798 0 0 0 0 +8183 1 1.1023 1 85.97189263408106 118.90530941748119 0 0 0 0 +6515 1 1.2417 1 74.13555426513715 127.79418000851086 0 0 0 0 +6553 1 1.2373 1 75.21389698365175 127.260755813753 0 0 0 0 +6577 1 1.2348 1 83.0056919507234 126.1185946219695 0 0 0 0 +6579 1 1.2347 1 89.68216641322523 121.84961613777445 0 0 0 0 +6624 1 1.2297 1 86.17705322062459 128.98512202916802 0 0 0 0 +6798 1 1.2127 1 106.31926001187826 127.34781349952213 0 0 0 0 +9490 1 1.0264 1 70.47470241214248 127.89463131121192 0 0 0 0 +7082 1 1.1876 1 106.17197614196525 135.09741662222353 0 0 0 0 +5061 1 1.4113 1 116.1188080075844 133.49815244201565 0 0 0 0 +7092 1 1.1867 1 112.16604693789813 133.0225231135727 0 0 0 0 +7125 1 1.1837 1 115.65107724482021 127.57348355241778 0 0 0 0 +9448 1 1.0285 1 113.24877128216879 121.75865590286213 0 0 0 0 +3734 1 1.6424 1 89.52108323920936 120.45756058862364 0 0 0 0 +7405 1 1.1608 1 67.91689203201527 119.76032882385242 0 0 0 0 +7437 1 1.1581 1 67.54360309079891 127.94114676434454 0 0 0 0 +7448 1 1.1572 1 94.40782942172784 126.00419041262934 0 0 0 0 +7514 1 1.1516 1 107.40507262882109 127.76815001867753 0 0 0 0 +6207 1 1.2708 1 90.32737851118166 119.2778286908722 0 0 0 0 +7683 1 1.1377 1 115.12123425583984 132.73862134989452 0 0 0 0 +7690 1 1.1371 1 87.33566307042352 129.22267422875024 0 0 0 0 +7761 1 1.1314 1 90.64932674706063 121.19188728074332 0 0 0 0 +7889 1 1.1221 1 87.92793290283704 122.8746450603924 0 0 0 0 +7916 1 1.1197 1 91.7140611183875 126.82779775418228 0 0 0 0 +7971 1 1.1164 1 85.58398102113634 121.87848674168991 0 0 0 0 +7978 1 1.1159 1 96.2229316643199 127.53741033245515 0 0 0 0 +3356 1 1.7258 1 116.24402218226498 126.32071673399547 0 0 0 0 +8014 1 1.1137 1 105.13055986400967 134.66318774233855 0 0 0 0 +8103 1 1.1073 1 87.6004547150605 126.86091791224783 0 0 0 0 +8189 1 1.102 1 111.65674267965147 131.19426794959313 0 0 0 0 +8911 1 1.057 1 104.16802621378869 134.23959902415092 0 0 0 0 +8255 1 1.0974 1 108.78527421886422 130.18701945926392 0 0 0 0 +8259 1 1.0972 1 86.77080093094158 126.19270334219267 0 0 0 0 +9033 1 1.0509 1 97.67107326986546 131.98264095003836 0 0 0 0 +8380 1 1.0884 1 105.54388931841409 131.73644847731322 0 0 0 0 +8416 1 1.0866 1 89.53617016278226 125.73878856989954 0 0 0 0 +9995 1 1.0002 1 80.05384029142175 125.68458337749409 0 0 0 0 +5461 1 1.355 1 112.8506040158985 119.40886735737013 0 0 0 0 +8484 1 1.0819 1 71.27287167871093 119.50101957731219 0 0 0 0 +8496 1 1.0811 1 107.62431265852206 134.0046165123801 0 0 0 0 +7302 1 1.1704 1 67.93659203647448 118.39445170360699 0 0 0 0 +8650 1 1.0723 1 95.89514877271736 131.29321156663332 0 0 0 0 +8660 1 1.0717 1 100.19456630273243 130.26269277104814 0 0 0 0 +8661 1 1.0717 1 70.83287852410858 120.45113515566595 0 0 0 0 +8838 1 1.061 1 91.72483361664277 121.12610000414416 0 0 0 0 +7074 1 1.188 1 114.52756573297624 124.19620537885832 0 0 0 0 +7121 1 1.1841 1 114.33529657120886 137.4028265355817 0 0 0 0 +951 1 3.245 1 117.21149040209261 139.9805927991413 0 0 0 0 +1 1 163.7888 1 72.34283229848131 210.26961308674618 0 0 0 0 +8969 1 1.0541 1 116.42324614770776 317.3828808854103 0 0 0 0 +40 1 15.577 1 86.02713740289363 321.6110661674173 0 0 0 0 +56 1 12.7808 1 100.37734428253678 311.27474486090335 0 0 0 0 +62 1 12.1799 1 106.0036884564009 323.50407576463 0 0 0 0 +9765 1 1.0118 1 77.25841058579739 324.88562751537637 0 0 0 0 +104 1 9.5194 1 89.42604144040853 294.9925512556539 0 0 0 0 +174 1 7.287 1 75.17080856599236 297.30238583446027 0 0 0 0 +2853 1 1.8785 1 91.1414806616854 330.4506626452798 0 0 -1 0 +218 1 6.5355 1 81.25695669300717 303.0787755062688 0 0 0 0 +2346 1 2.0701 1 106.7579634412647 330.6284507263913 0 0 -1 0 +252 1 6.1835 1 74.5928048873421 327.23171945012194 0 0 0 0 +260 1 6.1283 1 64.8913656290939 297.7151206123804 0 0 0 0 +266 1 6.0432 1 94.26835436701396 304.2128263135189 0 0 0 0 +297 1 5.7623 1 100.08932091236792 295.85462901926894 0 0 0 0 +329 1 5.4772 1 77.18351573702674 308.15213860877367 0 0 0 0 +383 1 5.043 1 68.75469731849907 324.87468445791336 0 0 0 0 +391 1 4.971 1 96.04640928955399 319.67580756022113 0 0 0 0 +448 1 4.6632 1 73.00349108042786 305.35600977937054 0 0 0 0 +459 1 4.6258 1 97.67322349476004 290.492603537901 0 0 0 0 +466 1 4.5838 1 113.72701193772944 306.20150156662476 0 0 0 0 +472 1 4.5379 1 82.97740095880073 309.71244963447793 0 0 0 0 +486 1 4.4589 1 68.73380914257332 306.7576100893191 0 0 0 0 +561 1 4.171 1 110.2727839564177 308.8741104291868 0 0 0 0 +564 1 4.1624 1 87.31550073836803 309.8076383385832 0 0 0 0 +570 1 4.1314 1 104.91715668984222 296.1660095772146 0 0 0 0 +571 1 4.1227 1 94.78491974817167 299.0638801388784 0 0 0 0 +585 1 4.0781 1 65.46312831915321 310.6191652058035 0 0 0 0 +601 1 4.0145 1 77.1432509387362 317.74536357738754 0 0 0 0 +4510 1 1.4953 1 114.66489407076001 315.2218565132728 0 0 0 0 +634 1 3.9261 1 71.52504813003425 301.4288864731118 0 0 0 0 +681 1 3.8224 1 100.47798413202418 303.11536473146083 0 0 0 0 +740 1 3.6963 1 71.56107449757303 315.1793583603185 0 0 0 0 +741 1 3.6963 1 70.59181885177131 318.63748300271953 0 0 0 0 +771 1 3.6441 1 83.36676587156472 297.2845626057293 0 0 0 0 +786 1 3.6147 1 98.48165044231126 300.1405000600014 0 0 0 0 +789 1 3.61 1 110.22261081528046 301.36006185437753 0 0 0 0 +1080 1 3.0424 1 64.70356659273365 322.6533990431132 0 0 -1 0 +800 1 3.5949 1 80.72166669468696 294.92539899783606 0 0 0 0 +802 1 3.5862 1 115.69986647625939 302.6286230988509 0 0 0 0 +9646 1 1.0182 1 69.67551336374368 310.3220692601905 0 0 0 0 +841 1 3.4818 1 90.92765469567249 308.8404979179129 0 0 0 0 +908 1 3.3408 1 112.94656616811626 316.82924916109806 0 0 0 0 +919 1 3.3139 1 73.50826260939914 320.52986809899244 0 0 0 0 +920 1 3.3137 1 103.6256768999531 287.67822609094753 0 0 0 0 +1000 1 3.1763 1 102.59021056415497 292.2184488812836 0 0 0 0 +1028 1 3.1323 1 93.80108201046664 326.73277813242237 0 0 0 0 +1044 1 3.0954 1 71.76536213425217 308.9526799493076 0 0 0 0 +1061 1 3.0683 1 110.60202740574846 313.0248409484508 0 0 0 0 +956 1 3.2395 1 86.33157449684644 331.26076867072754 0 0 -1 0 +1111 1 3.0023 1 110.04682256420446 305.3875881508594 0 0 0 0 +1128 1 2.9786 1 85.159259278816 312.54538196134587 0 0 0 0 +4036 1 1.5765 1 115.35016398305787 316.6919725048239 0 0 0 0 +823 1 3.5285 1 115.11520990165731 319.3713736242295 0 0 0 0 +1163 1 2.942 1 85.85583940899389 304.8677280378205 0 0 0 0 +2662 1 1.9433 1 117.17263878218105 324.48346046348155 0 0 0 0 +1208 1 2.8986 1 103.2922739169181 301.43118294607615 0 0 0 0 +1899 1 2.301 1 70.0900226789722 330.48032969939317 0 0 0 0 +1259 1 2.8428 1 72.45306375074182 323.3066247985075 0 0 0 0 +1260 1 2.8424 1 90.17630580447099 305.8882396416985 0 0 0 0 +9639 1 1.0185 1 107.23772309679858 310.89676785862184 0 0 0 0 +1273 1 2.819 1 105.3498203423409 299.4775402326147 0 0 0 0 +1284 1 2.8067 1 85.3999009724396 301.0565695238275 0 0 0 0 +1287 1 2.8037 1 78.97848420823235 312.33975818778305 0 0 0 0 +8683 1 1.0709 1 63.72847943578211 293.75414724769263 0 0 0 0 +9656 1 1.0177 1 75.9313112368849 330.51750093718033 0 0 -1 0 +1385 1 2.7004 1 67.78420090719246 303.382397526478 0 0 0 0 +1403 1 2.6797 1 78.08679707799489 293.29410048941946 0 0 0 0 +1408 1 2.6704 1 74.66345984257038 315.5690892188752 0 0 0 0 +1416 1 2.666 1 107.55772607519442 316.30557504633265 0 0 0 0 +1426 1 2.6548 1 107.14790588083913 286.8825371999407 0 0 0 0 +1468 1 2.6047 1 107.6585068825676 303.80692002094344 0 0 0 0 +1470 1 2.6043 1 98.53383753449344 326.4921473531312 0 0 0 0 +1480 1 2.5943 1 107.89164306658618 312.54760138440344 0 0 0 0 +1492 1 2.5851 1 65.667158577517 301.9304922406066 0 0 0 0 +1536 1 2.5426 1 91.33925853069597 300.61061304866666 0 0 0 0 +1539 1 2.5388 1 106.25071401709022 306.41174053310374 0 0 0 0 +1559 1 2.5262 1 90.51382015378312 313.82874619750186 0 0 0 0 +1566 1 2.5205 1 110.11532524382712 316.5985989592641 0 0 0 0 +1583 1 2.5056 1 107.20620547384532 301.3281894408429 0 0 0 0 +9497 1 1.0261 1 77.38715296131491 329.82380525319905 0 0 -1 0 +1667 1 2.4439 1 80.63105540218017 314.44395016086634 0 0 0 0 +1681 1 2.4359 1 70.47006903936148 298.5433558812838 0 0 0 0 +4168 1 1.5555 1 64.44543104209998 292.6709705346012 0 0 0 0 +9515 1 1.025 1 91.30836590571566 302.34697879981417 0 0 0 0 +9700 1 1.0152 1 72.74606651910247 311.14480910657113 0 0 0 0 +9887 1 1.0056 1 112.69502016983239 319.22889148713426 0 0 0 0 +1759 1 2.3806 1 101.22081289893028 289.9023239896648 0 0 0 0 +1786 1 2.3645 1 88.93100875866064 300.8622260003652 0 0 0 0 +1824 1 2.3434 1 96.56307822765768 323.2307039373033 0 0 0 0 +1849 1 2.331 1 113.15618676931199 301.2091508933905 0 0 0 0 +1873 1 2.3175 1 98.81053803410892 323.67292224974705 0 0 0 0 +1875 1 2.3164 1 108.48407940082363 284.8713252968031 0 0 0 0 +1918 1 2.2888 1 95.28008001279112 294.9484236368926 0 0 0 0 +1927 1 2.2846 1 90.21838674743631 311.50643641191465 0 0 0 0 +1969 1 2.2583 1 92.32566080137072 312.3026121300857 0 0 0 0 +1977 1 2.2552 1 69.33070199198724 296.538660266269 0 0 0 0 +2018 1 2.2281 1 107.65338835596101 297.6768412909993 0 0 0 0 +4037 1 1.5763 1 114.81160817010063 322.87550366686827 0 0 0 0 +5541 1 1.3455 1 65.65309262864365 324.54185213055626 0 0 -1 0 +2097 1 2.1852 1 74.89470516279628 322.89275596868515 0 0 0 0 +2120 1 2.1706 1 109.61140038359291 298.5653095255078 0 0 0 0 +2122 1 2.1701 1 93.24261901269658 290.5659923555258 0 0 0 0 +2241 1 2.1192 1 80.80498018560287 307.3012372768025 0 0 0 0 +2245 1 2.1187 1 106.67793757479497 290.95064772124744 0 0 0 0 +2262 1 2.1126 1 107.2030488066292 308.4663995681663 0 0 0 0 +2300 1 2.093 1 78.42196292075283 325.898956665302 0 0 0 0 +1538 1 2.5398 1 68.7439521758065 328.5822537500019 0 0 -1 0 +4723 1 1.46 1 92.69187503524891 330.0544552383187 0 0 -1 0 +2364 1 2.0613 1 82.17550716613063 312.86798379563663 0 0 0 0 +2373 1 2.0586 1 111.07192755736455 318.6353124740926 0 0 0 0 +4980 1 1.423 1 88.0310519052164 329.77088932475687 0 0 -1 0 +2415 1 2.0436 1 96.26913245421431 326.09993429952794 0 0 0 0 +2416 1 2.0433 1 77.2854348668573 320.738119100522 0 0 0 0 +6820 1 1.2105 1 73.67734405671429 293.3491866495985 0 0 0 0 +2466 1 2.0236 1 104.41368650982207 303.5651201813707 0 0 0 0 +7871 1 1.1232 1 116.23194707671236 304.8987895134068 0 0 0 0 +2533 1 1.9985 1 70.0436998418316 303.8929712793998 0 0 0 0 +2581 1 1.9772 1 104.6640244289948 290.02091508898144 0 0 0 0 +2584 1 1.9761 1 111.74943136054955 303.6266491879024 0 0 0 0 +8943 1 1.0555 1 112.5559892126107 322.8966924234954 0 0 0 0 +2607 1 1.9652 1 99.47330214280717 320.80196785485094 0 0 0 0 +2633 1 1.9566 1 87.50369495089943 312.9850563406196 0 0 0 0 +2700 1 1.9294 1 75.18728981018451 311.22295023417206 0 0 0 0 +2703 1 1.9283 1 93.87385129063122 314.63761536547867 0 0 0 0 +7953 1 1.1176 1 64.46887225524641 303.3292737252688 0 0 0 0 +2750 1 1.9116 1 68.32156200138117 309.8614752394837 0 0 0 0 +9787 1 1.0104 1 108.45369156744628 310.8585019355294 0 0 0 0 +2785 1 1.9003 1 93.5081437276632 308.95864759387314 0 0 0 0 +2802 1 1.893 1 68.24695766951245 299.8521479103302 0 0 0 0 +9809 1 1.0096 1 95.77973169393721 324.68967973170925 0 0 0 0 +2871 1 1.8707 1 83.41123691665706 294.569753595698 0 0 0 0 +2928 1 1.8553 1 69.08780595552368 313.15585112667753 0 0 0 0 +2951 1 1.8475 1 107.5112845401899 294.7830283247728 0 0 0 0 +2984 1 1.8372 1 67.12359722264029 313.1636615570009 0 0 0 0 +8156 1 1.1043 1 94.26714872871372 330.85055712509836 0 0 -1 0 +3018 1 1.8206 1 80.19022364557392 299.17772543862213 0 0 0 0 +3120 1 1.788 1 81.72893723895471 292.4822403379301 0 0 0 0 +3136 1 1.783 1 68.12189133036871 311.6690577174479 0 0 0 0 +3144 1 1.7798 1 70.79080980869865 312.59983198654743 0 0 0 0 +3158 1 1.7773 1 100.48885505501033 288.05918321093014 0 0 0 0 +3221 1 1.7598 1 75.05662735037549 292.89044954993244 0 0 0 0 +1861 1 2.3249 1 116.49097473496442 315.1424793203565 0 0 0 0 +3348 1 1.7284 1 107.15086878263989 293.0504286422501 0 0 0 0 +3358 1 1.7258 1 74.60435367844924 302.6700454559442 0 0 0 0 +3373 1 1.7231 1 68.92551095202617 314.88577305614155 0 0 0 0 +3422 1 1.7105 1 86.95228917150932 306.9049806809017 0 0 0 0 +3541 1 1.6849 1 72.33365664523532 292.92236664697435 0 0 0 0 +3554 1 1.6804 1 99.23281515500688 318.8437286923795 0 0 0 0 +3557 1 1.6797 1 104.44586236180511 305.36697812453485 0 0 0 0 +3570 1 1.6761 1 89.11917771513988 302.82251815136067 0 0 0 0 +3593 1 1.6724 1 73.70380920488702 310.2974713941126 0 0 0 0 +3598 1 1.6715 1 105.17674813673608 293.3365395370136 0 0 0 0 +3624 1 1.6669 1 104.8912567579794 291.7377594035525 0 0 0 0 +3639 1 1.6646 1 66.17707672487913 305.11019105003584 0 0 0 0 +3681 1 1.6529 1 106.81387718173944 314.3386051425098 0 0 0 0 +3705 1 1.6457 1 77.23214390170243 303.60224131096413 0 0 0 0 +3724 1 1.6434 1 76.53960878507394 301.50639722500705 0 0 0 0 +3727 1 1.6431 1 76.91948379348169 311.6345849330644 0 0 0 0 +3729 1 1.643 1 96.18054954954498 293.25217546293476 0 0 0 0 +3746 1 1.6404 1 83.98005886246837 306.06318137112925 0 0 0 0 +3792 1 1.6317 1 71.92632603386741 330.0160921213094 0 0 0 0 +3830 1 1.6207 1 93.23075232994888 310.6495307673729 0 0 0 0 +3849 1 1.6172 1 73.72735674468414 313.6700344827925 0 0 0 0 +3895 1 1.6091 1 94.13836199940599 316.37494053285076 0 0 0 0 +3910 1 1.606 1 84.21887663755234 293.08516887529817 0 0 0 0 +3945 1 1.5983 1 87.7388402533738 303.69127695924493 0 0 0 0 +9880 1 1.0058 1 93.86706114016596 328.7855343436192 0 0 0 0 +2546 1 1.9907 1 67.95713248513104 330.6882836294505 0 0 -1 0 +3958 1 1.5944 1 70.71989832231705 327.5374590577162 0 0 0 0 +3961 1 1.594 1 82.59546517203115 306.7994831706549 0 0 0 0 +8436 1 1.0856 1 102.93123816628591 329.64635390035863 0 0 -1 0 +3981 1 1.59 1 76.49654702426935 323.85960328408737 0 0 0 0 +4013 1 1.5808 1 88.05678728150889 305.3090108102883 0 0 0 0 +4015 1 1.5807 1 73.27852530718101 317.17193710785773 0 0 0 0 +4018 1 1.5798 1 106.21506664608201 289.2172705610764 0 0 0 0 +4077 1 1.5703 1 94.7690303335582 323.9270453056851 0 0 0 0 +4089 1 1.5685 1 79.6818764806179 297.2050803983955 0 0 0 0 +4104 1 1.5652 1 79.40191714383265 316.10472111455607 0 0 0 0 +4130 1 1.5621 1 112.26727518722963 314.5261511526801 0 0 0 0 +4179 1 1.5533 1 71.19163355510635 321.15673236629084 0 0 0 0 +4202 1 1.5494 1 80.0292444814255 292.5125688135489 0 0 0 0 +4219 1 1.5468 1 108.20156174539034 306.9742505685446 0 0 0 0 +9055 1 1.0499 1 113.51527253892777 314.76319179108293 0 0 0 0 +4239 1 1.5436 1 78.71288193819528 299.9154770791519 0 0 0 0 +2883 1 1.8671 1 89.61433512105627 329.5029195861196 0 0 -1 0 +1266 1 2.833 1 63.834547771160764 307.60415328964206 0 0 0 0 +4284 1 1.5355 1 78.69575246482393 314.463402607901 0 0 0 0 +4287 1 1.5352 1 92.52807458986801 328.6358876176932 0 0 0 0 +4297 1 1.5331 1 94.61649069820459 293.17085123806777 0 0 0 0 +4391 1 1.5165 1 88.51309331155909 307.2546124305033 0 0 0 0 +4410 1 1.5135 1 91.00770436392847 328.55423911051514 0 0 0 0 +4456 1 1.505 1 95.64985924704375 316.5398034258779 0 0 0 0 +4478 1 1.5008 1 76.62439972362338 322.33902430156854 0 0 0 0 +3302 1 1.7393 1 73.2997974266365 330.903698337298 0 0 -1 0 +4492 1 1.4989 1 115.98325217234891 280.34191899058226 0 0 0 0 +4498 1 1.4977 1 65.77344034208986 306.6558028633023 0 0 0 0 +4519 1 1.4943 1 73.49989794551503 312.1347027571676 0 0 0 0 +4551 1 1.4891 1 91.78647797582592 315.34614034629124 0 0 0 0 +4571 1 1.4859 1 94.48815070960158 322.46085833619827 0 0 0 0 +4584 1 1.4827 1 105.3144715764611 286.0033231488588 0 0 0 0 +4602 1 1.4799 1 83.615666841848 299.8757499390246 0 0 0 0 +4627 1 1.4773 1 104.76791319126879 316.8372239249217 0 0 0 0 +4646 1 1.4738 1 102.51198260797366 298.47087140349316 0 0 0 0 +6775 1 1.2155 1 117.05228777547484 320.60602034175713 0 0 0 0 +4697 1 1.4653 1 100.8820346272091 299.3683639694765 0 0 0 0 +4705 1 1.4643 1 68.5977738212036 298.2223822385274 0 0 0 0 +4707 1 1.4638 1 87.26121145931319 300.00988050749703 0 0 0 0 +4721 1 1.4604 1 64.71461430564784 305.6490341398974 0 0 0 0 +4738 1 1.4582 1 93.53908468680487 317.7253794594483 0 0 0 0 +4768 1 1.4532 1 78.34316422210851 327.62025701028404 0 0 0 0 +9815 1 1.0093 1 103.08894217614568 294.3694108129247 0 0 0 0 +9927 1 1.004 1 63.90493201352318 304.4693428699846 0 0 0 0 +4794 1 1.4499 1 98.2387081853794 321.94265365724766 0 0 0 0 +4804 1 1.4481 1 97.27866008747964 297.9832667454668 0 0 0 0 +4934 1 1.4278 1 97.54070130987068 302.4482194638719 0 0 0 0 +4969 1 1.4239 1 94.78875850389312 289.7322545155845 0 0 0 0 +4992 1 1.4211 1 100.5640257657524 319.54004007974 0 0 0 0 +5018 1 1.4179 1 74.62208238677373 318.56652503727986 0 0 0 0 +5025 1 1.4173 1 69.66612209121367 311.52558171865735 0 0 0 0 +5065 1 1.4105 1 97.96605337589659 303.7796476024153 0 0 0 0 +5116 1 1.4004 1 97.41919228940274 324.8611830184388 0 0 0 0 +5157 1 1.3947 1 92.69197414504468 316.4261036170991 0 0 0 0 +5163 1 1.3934 1 97.62049833807623 293.4190458214519 0 0 0 0 +5170 1 1.3924 1 75.73562897063776 304.0867606596323 0 0 0 0 +5189 1 1.39 1 80.9061881110211 311.7331562121575 0 0 0 0 +5191 1 1.3897 1 101.86660551667464 318.1701152754213 0 0 0 0 +5200 1 1.3884 1 86.52758858644047 302.8181070290624 0 0 0 0 +5202 1 1.3884 1 100.4351830241212 291.6013268172673 0 0 0 0 +5292 1 1.3768 1 109.4925760165487 314.8499845913407 0 0 0 0 +5297 1 1.3764 1 75.90094142312925 312.65618727419695 0 0 0 0 +5323 1 1.3728 1 76.61132016994671 315.15383778721485 0 0 0 0 +5349 1 1.3699 1 92.39539540187157 314.08015275469495 0 0 0 0 +5368 1 1.3677 1 113.34274983338169 303.25681997241463 0 0 0 0 +5407 1 1.3623 1 76.45952217134868 313.8508969253792 0 0 0 0 +1690 1 2.4289 1 112.8821014564962 321.215487009412 0 0 0 0 +5445 1 1.357 1 75.76044501311748 320.01911566387975 0 0 0 0 +5462 1 1.355 1 94.80622722551516 291.2400641360631 0 0 0 0 +5468 1 1.3538 1 96.34411648285452 301.25103640628686 0 0 0 0 +5490 1 1.3519 1 105.72989740613171 304.59960235269085 0 0 0 0 +5499 1 1.3505 1 79.92912591538776 310.24362130183226 0 0 0 0 +5529 1 1.3475 1 108.25959629374684 314.4522676092177 0 0 0 0 +5646 1 1.3326 1 109.89013906324817 283.72997819359665 0 0 0 0 +7562 1 1.147 1 88.48503363408209 330.91129916592547 0 0 -1 0 +5704 1 1.325 1 75.15035523365275 313.69895685878606 0 0 0 0 +9498 1 1.0261 1 77.57257683932835 302.3192637973915 0 0 0 0 +5781 1 1.316 1 77.91258680488987 301.06734289342216 0 0 0 0 +7465 1 1.156 1 108.03737804418226 329.76583799828217 0 0 0 0 +5794 1 1.315 1 87.7551603712508 302.2674974763826 0 0 0 0 +5797 1 1.3149 1 107.37871273834016 299.3982418301516 0 0 0 0 +5825 1 1.3119 1 108.36261094049074 296.0875271347006 0 0 0 0 +5899 1 1.3049 1 89.03360882387405 304.25261482320093 0 0 0 0 +5923 1 1.3022 1 77.74446085109102 323.1372447629966 0 0 0 0 +5097 1 1.4047 1 74.81596430782615 330.981794856448 0 0 -1 0 +2337 1 2.0738 1 67.09486622391736 321.76897120800805 0 0 -1 0 +5994 1 1.2953 1 75.6631561848198 321.33487960380205 0 0 0 0 +1796 1 2.3568 1 104.72477340379524 331.3403124289226 0 0 -1 0 +6040 1 1.2903 1 70.64167234956955 322.4116351123398 0 0 0 0 +6090 1 1.2841 1 64.75697705386428 313.09129836829726 0 0 0 0 +1868 1 2.3205 1 66.40485843230638 293.90242645280466 0 0 0 0 +6169 1 1.2755 1 105.34033299023508 301.4316469028849 0 0 0 0 +6227 1 1.2679 1 77.87527790268658 304.89430414512543 0 0 0 0 +6230 1 1.2675 1 65.99573090832385 308.0088969486543 0 0 0 0 +6234 1 1.2671 1 101.30893538649782 300.6700420044845 0 0 0 0 +6262 1 1.2637 1 70.97035633608829 328.93584142708164 0 0 0 0 +6300 1 1.2608 1 86.19403988493983 299.2486799493517 0 0 0 0 +6308 1 1.2604 1 76.0469288019851 302.82476473266144 0 0 0 0 +9930 1 1.004 1 108.78577730001497 317.623734662113 0 0 0 0 +6328 1 1.2587 1 107.95999236714444 305.65029237641943 0 0 0 0 +6343 1 1.2577 1 105.6801919887624 315.8391919758153 0 0 0 0 +6363 1 1.2557 1 92.87079860166348 307.54125036615176 0 0 0 0 +6423 1 1.2499 1 100.56202797800918 318.2453516043601 0 0 0 0 +6426 1 1.2497 1 107.8203002344495 309.96845326193943 0 0 0 0 +6453 1 1.2472 1 67.89473407082826 294.76490017311426 0 0 0 0 +6486 1 1.2448 1 67.48308753824239 301.2426654091666 0 0 0 0 +6504 1 1.2425 1 72.1390285540942 312.03232480897765 0 0 0 0 +6505 1 1.2425 1 84.54602980630449 307.3314067798622 0 0 0 0 +6561 1 1.2362 1 89.0231821811745 312.6987516192457 0 0 0 0 +6607 1 1.2311 1 116.11451379393074 323.3036135424967 0 0 0 0 +6635 1 1.2287 1 71.72926793335678 325.101153321097 0 0 0 0 +6690 1 1.2233 1 83.17466115795501 292.1270036692902 0 0 0 0 +2036 1 2.2197 1 113.29708753705478 324.32073908119673 0 0 0 0 +6737 1 1.2191 1 112.91970857789777 308.9355188371321 0 0 0 0 +6744 1 1.2187 1 103.03142476241088 289.96712616279683 0 0 0 0 +6766 1 1.2164 1 102.14680082821215 299.75039936075905 0 0 0 0 +6760 1 1.2174 1 72.20689170853224 294.30948222473125 0 0 0 0 +6797 1 1.2127 1 111.14039225526422 299.2265141082896 0 0 0 0 +6859 1 1.2068 1 82.36268438226767 299.43306784477636 0 0 0 0 +6896 1 1.2024 1 96.63453227646136 296.0060502270968 0 0 0 0 +163 1 7.4543 1 63.80789692668095 328.4607774178895 0 0 -1 0 +9867 1 1.0064 1 95.016558800037 315.4897548888647 0 0 0 0 +6970 1 1.1966 1 94.39371101792977 307.7596399207225 0 0 0 0 +6980 1 1.1959 1 74.05540329811663 301.3580338598208 0 0 0 0 +6986 1 1.1956 1 81.48495383816386 298.640729816275 0 0 0 0 +6993 1 1.1948 1 102.85197548195153 303.82438396812546 0 0 0 0 +7009 1 1.1933 1 64.97263063423289 304.36200408463895 0 0 0 0 +7010 1 1.1932 1 103.37131980578611 299.43971481702965 0 0 0 0 +7020 1 1.1921 1 78.13727249923959 324.2991224763768 0 0 0 0 +7037 1 1.1905 1 111.4372688152211 311.15974408280255 0 0 0 0 +484 1 4.4673 1 96.5520797880297 329.29902107729873 0 0 -1 0 +7134 1 1.1833 1 90.50330166940049 303.0465417218497 0 0 0 0 +7275 1 1.1729 1 79.11241629552948 298.3679122458565 0 0 0 0 +7280 1 1.1727 1 85.09339372517618 302.99210525252846 0 0 0 0 +7355 1 1.1652 1 70.6498909793928 310.73774692454947 0 0 0 0 +854 1 3.4527 1 69.94809839325745 293.7728592924413 0 0 0 0 +7459 1 1.1563 1 71.00556386946062 296.8878938511426 0 0 0 0 +8188 1 1.102 1 93.88228893942207 329.8245741840624 0 0 0 0 +7538 1 1.1496 1 85.40904272576218 298.412242124529 0 0 0 0 +7583 1 1.1453 1 105.57962185596834 302.5232055506479 0 0 0 0 +7594 1 1.1444 1 109.37737521211152 311.35493970376166 0 0 0 0 +7642 1 1.1408 1 93.88100507254065 292.0751278490396 0 0 0 0 +7672 1 1.1384 1 83.48927049681437 313.69623398479257 0 0 0 0 +9209 1 1.0413 1 69.05760691305962 331.70849558381025 0 0 0 0 +7723 1 1.1347 1 99.64716486106781 325.1202363858113 0 0 0 0 +7751 1 1.1321 1 93.0597056415842 300.935858295375 0 0 0 0 +7767 1 1.1311 1 76.71749584122547 304.8715069923372 0 0 0 0 +7777 1 1.1305 1 109.43800577726223 303.49468820982395 0 0 0 0 +7828 1 1.1271 1 91.7084616390185 290.30469913132976 0 0 0 0 +7832 1 1.1271 1 85.32620913756327 291.6646332295431 0 0 0 0 +7844 1 1.1262 1 65.92618150574003 303.74716305739486 0 0 0 0 +7869 1 1.1234 1 72.56608384958008 313.04764448379234 0 0 0 0 +9573 1 1.0219 1 103.74643935606186 298.4250571195614 0 0 0 0 +326 1 5.5001 1 114.63358071249269 311.7505882687467 0 0 0 0 +7906 1 1.1206 1 103.49823495071118 317.4133307004782 0 0 0 0 +2942 1 1.8502 1 115.27913452031913 324.5299613650519 0 0 0 0 +1638 1 2.4621 1 99.85030149324896 328.63245796682855 0 0 0 0 +7931 1 1.1191 1 91.84436761967835 327.54229537309305 0 0 0 0 +1132 1 2.976 1 117.08216105712518 308.40338730398776 0 0 0 0 +7980 1 1.1158 1 79.61767812354309 326.9547404951944 0 0 0 0 +7988 1 1.1152 1 100.32802215524814 326.9238272982438 0 0 0 0 +8018 1 1.1135 1 95.56091672582815 296.58523906677294 0 0 0 0 +9437 1 1.0289 1 68.58255223955487 319.8165887189436 0 0 0 0 +8099 1 1.1075 1 84.70242937107372 299.2426736352479 0 0 0 0 +8129 1 1.1056 1 71.71355446905989 311.00361956054496 0 0 0 0 +8142 1 1.1051 1 103.1373078587395 304.9202246323498 0 0 0 0 +3395 1 1.7167 1 101.81536966487492 328.89723972885054 0 0 -1 0 +9872 1 1.0062 1 75.78017207112262 305.2689887810424 0 0 0 0 +8225 1 1.1 1 112.05935186483745 299.9131917365378 0 0 0 0 +8231 1 1.0997 1 70.80772276599508 295.8338707199325 0 0 0 0 +8236 1 1.0991 1 107.41828587951434 288.7155093553948 0 0 0 0 +8260 1 1.0972 1 77.6409049410671 313.7177632953911 0 0 0 0 +8276 1 1.0965 1 103.92994001047958 293.80010171180214 0 0 0 0 +6689 1 1.2233 1 104.00406650712549 329.80782556767144 0 0 -1 0 +151 1 7.5959 1 65.09445595003386 317.4072755809926 0 0 0 0 +8304 1 1.0943 1 69.14061130867415 302.1160770313214 0 0 0 0 +8316 1 1.093 1 105.7384606813961 288.0295393463521 0 0 0 0 +8326 1 1.0925 1 99.62949553890269 292.51323704271493 0 0 0 0 +8333 1 1.0921 1 112.20938382852583 282.163697367569 0 0 0 0 +8346 1 1.0908 1 111.05128953389708 315.0550572970291 0 0 0 0 +8348 1 1.0907 1 69.06890508549748 301.0514473864837 0 0 0 0 +8349 1 1.0907 1 93.728443553598 324.6702410383177 0 0 0 0 +8431 1 1.086 1 74.59230374683551 317.3803134324732 0 0 0 0 +8433 1 1.0857 1 85.31800125306626 308.1580353993682 0 0 0 0 +8437 1 1.0855 1 73.91196013051538 308.02830507266765 0 0 0 0 +8446 1 1.0845 1 88.74741241725381 313.7906999913485 0 0 0 0 +8450 1 1.0844 1 106.04021451309849 292.34765397956386 0 0 0 0 +8500 1 1.081 1 84.25895654578582 291.7908044438523 0 0 0 0 +8503 1 1.0807 1 77.79958889037992 315.33363707680536 0 0 0 0 +1035 1 3.1144 1 79.54732049942628 329.4807808281326 0 0 -1 0 +8544 1 1.0785 1 81.60873436363174 328.699016889761 0 0 0 0 +8571 1 1.0768 1 108.37924244033151 299.97817189691284 0 0 0 0 +1826 1 2.3426 1 69.25024482009282 321.29387865088364 0 0 -1 0 +8594 1 1.0755 1 94.48970865404915 296.48317958510336 0 0 0 0 +8616 1 1.0739 1 76.39833038967365 292.571218122104 0 0 0 0 +8618 1 1.0737 1 74.67684364790297 312.61820121008935 0 0 0 0 +8639 1 1.0727 1 90.20045730669513 301.9883597436316 0 0 0 0 +8644 1 1.0725 1 111.63117258400385 320.0517674513554 0 0 0 0 +8460 1 1.0839 1 65.70779994294791 292.3944713932042 0 0 0 0 +8704 1 1.0697 1 99.14371988490859 288.149042750737 0 0 0 0 +2632 1 1.9567 1 84.13683024218865 330.0183526206633 0 0 -1 0 +6228 1 1.2679 1 112.29447171791179 325.6767049706127 0 0 0 0 +8754 1 1.0666 1 85.57629293953892 306.8437091147365 0 0 0 0 +8758 1 1.0662 1 74.06546020494108 309.0419993479253 0 0 0 0 +8771 1 1.0649 1 98.35759887832127 317.8259512656777 0 0 0 0 +8193 1 1.1019 1 82.69814975967299 329.35947368931454 0 0 -1 0 +8345 1 1.0908 1 64.72905075681092 294.1145160783634 0 0 0 0 +8906 1 1.0572 1 91.88225265558214 306.80758399501457 0 0 0 0 +5004 1 1.4199 1 115.78387884746631 321.74354071521515 0 0 0 0 +8922 1 1.0564 1 67.88372941648991 295.8573171806212 0 0 0 0 +8948 1 1.0553 1 75.20812345201948 301.44842357798507 0 0 0 0 +8952 1 1.0551 1 90.74276854781925 304.0810252971739 0 0 0 0 +8684 1 1.0708 1 66.97434095567598 292.4195652315814 0 0 0 0 +9004 1 1.0525 1 101.57233480304772 287.2657893820407 0 0 0 0 +9036 1 1.0508 1 80.35387633673746 308.8216632314618 0 0 0 0 +9044 1 1.0501 1 105.92687107114436 303.4777585595164 0 0 0 0 +9915 1 1.0045 1 113.56031497284546 322.75784017901805 0 0 0 0 +9069 1 1.0488 1 87.28323326561413 301.23218610546996 0 0 0 0 +9075 1 1.0485 1 72.95001883909671 318.4324837954876 0 0 0 0 +9120 1 1.0462 1 80.42154434864655 327.6637104460019 0 0 0 0 +9124 1 1.046 1 96.46301511748368 297.10295104103716 0 0 0 0 +8986 1 1.0534 1 114.56837780162607 321.58984845294185 0 0 0 0 +9147 1 1.0448 1 69.73308040257639 309.30681544176485 0 0 0 0 +9157 1 1.0442 1 69.47969169659657 316.4584624737073 0 0 0 0 +5675 1 1.3295 1 116.64239955370266 306.34109143885325 0 0 0 0 +9272 1 1.038 1 66.9331204370535 308.67306722066655 0 0 0 0 +8140 1 1.1052 1 68.02737468063005 292.59199040223467 0 0 0 0 +9360 1 1.0329 1 106.29214794711301 294.05186794245225 0 0 0 0 +9388 1 1.0313 1 71.62026188684176 295.22297500411304 0 0 0 0 +9393 1 1.0312 1 80.96704316581369 297.58340410696644 0 0 0 0 +9402 1 1.0305 1 95.43587108859376 292.1980432683749 0 0 0 0 +9424 1 1.0294 1 97.70536692397289 304.9444614060078 0 0 0 0 +4109 1 1.5649 1 79.41756583729392 331.72056202679823 0 0 -1 0 +698 1 3.7864 1 82.07360417937285 331.8034927074558 0 0 -1 0 +4694 1 1.4655 1 98.19326593252275 331.79454997719597 0 0 0 0 +1880 1 2.3128 1 166.36337045156196 48.64949276794099 0 0 0 0 +54 1 12.7924 1 123.33823890777775 36.28996129421559 0 0 0 0 +70 1 11.237 1 128.8735054842639 25.8796864553814 0 0 0 0 +73 1 10.8403 1 138.14981344703355 60.84172249842901 0 0 0 0 +89 1 9.8868 1 139.90608312225143 47.459781457212145 0 0 0 0 +232 1 6.3213 1 148.63699940480475 45.74347175262723 0 0 0 0 +267 1 6.0344 1 163.6108244958719 56.624893317740785 0 0 0 0 +274 1 5.9759 1 146.00661330418401 58.20817323758647 0 0 0 0 +275 1 5.966 1 139.316681382811 33.08797434914881 0 0 0 0 +278 1 5.934 1 126.60831698373964 17.819295389900493 0 0 0 0 +8550 1 1.078 1 121.8830508909585 46.253649890523945 0 0 0 0 +1228 1 2.8791 1 170.53559048837485 62.80135168634707 0 0 0 0 +381 1 5.0592 1 136.4794997115547 28.41903177092997 0 0 0 0 +5935 1 1.3014 1 121.65951912018495 47.389793488830634 0 0 0 0 +453 1 4.6432 1 137.33569650910803 11.707187909662796 0 0 0 0 +468 1 4.5736 1 119.75835842852736 24.24342943698034 0 0 0 0 +9781 1 1.011 1 132.2833239701118 61.894144425689 0 0 0 0 +509 1 4.3332 1 134.47889378308898 15.042128235145316 0 0 0 0 +515 1 4.3165 1 144.13192026955699 41.829814477403566 0 0 0 0 +523 1 4.2856 1 131.75056878477665 37.492680859416566 0 0 0 0 +538 1 4.2385 1 135.51495374180865 41.149380569991045 0 0 0 0 +670 1 3.8449 1 125.19675643216485 44.345918338913044 0 0 0 0 +711 1 3.7641 1 155.4004709459318 50.81577357466115 0 0 0 0 +3903 1 1.6066 1 118.01245422857548 45.02370233431568 0 0 0 0 +749 1 3.6903 1 127.66216848589086 47.09454999592388 0 0 0 0 +3185 1 1.7691 1 123.90917567710001 52.74039557280947 0 0 0 0 +793 1 3.6059 1 157.92346771411147 54.645698585765224 0 0 0 0 +814 1 3.5511 1 126.37671797445296 51.95861097939889 0 0 0 0 +827 1 3.5202 1 133.28728377100902 33.99719070052659 0 0 0 0 +832 1 3.5011 1 136.336702785158 37.41880333900818 0 0 0 0 +852 1 3.456 1 153.46154572537958 55.655526060803304 0 0 0 0 +922 1 3.3102 1 150.36112112110973 56.77762538824859 0 0 0 0 +928 1 3.2984 1 133.41820520881345 48.185753398595956 0 0 0 0 +1050 1 3.0905 1 146.7777353602769 52.72716698352584 0 0 0 0 +1056 1 3.0829 1 150.54655900154276 49.94492740186509 0 0 0 0 +1113 1 2.9985 1 131.69743138686732 17.18414650489698 0 0 0 0 +9893 1 1.0054 1 127.67934021728946 12.871282201769404 0 0 0 0 +1162 1 2.9425 1 135.33230189495868 23.135680904797855 0 0 0 0 +1187 1 2.9214 1 131.0352356851973 52.556295563184555 0 0 0 0 +1196 1 2.9083 1 133.6257107255633 51.277936747467756 0 0 0 0 +1212 1 2.8963 1 135.41114926143587 53.48557386476759 0 0 0 0 +3677 1 1.6538 1 166.27159584683966 50.573414756316254 0 0 0 0 +1248 1 2.8511 1 143.8578577199819 52.404309503122875 0 0 0 0 +1270 1 2.8242 1 149.30328566890148 60.997167554180855 0 0 0 0 +1291 1 2.8022 1 133.59592800165245 30.963923584639364 0 0 0 0 +1323 1 2.7642 1 153.93962673757332 59.592948469345956 0 0 0 0 +1365 1 2.7228 1 154.8103560892502 47.722099202481736 0 0 0 0 +1371 1 2.7123 1 158.41435947792155 57.6740802189494 0 0 0 0 +1374 1 2.7089 1 147.64799854235068 50.04607585648537 0 0 0 0 +1441 1 2.6332 1 123.67211387062146 20.85244083715733 0 0 0 0 +1494 1 2.5842 1 130.58031438523219 47.96368945540205 0 0 0 0 +1520 1 2.5573 1 141.48452638993462 53.603773434516505 0 0 0 0 +4670 1 1.4692 1 119.56105877861026 44.88708306482157 0 0 0 0 +1548 1 2.534 1 137.56782827035107 16.4597718384885 0 0 0 0 +1573 1 2.5139 1 133.48925317290156 55.5304764924233 0 0 0 0 +1628 1 2.4694 1 147.32647424440083 40.89897895395305 0 0 0 0 +1734 1 2.4029 1 150.91991308625578 52.60345039653683 0 0 0 0 +1762 1 2.3763 1 165.38905685289353 60.35321762198228 0 0 0 0 +1775 1 2.3711 1 136.8376658643436 21.03725569045768 0 0 0 0 +9977 1 1.0014 1 124.52626219790854 56.09577454442951 0 0 0 0 +9768 1 1.0115 1 157.38706129757597 52.397569092075884 0 0 0 0 +1850 1 2.3308 1 139.14300145034397 37.140157967576734 0 0 0 0 +1866 1 2.3206 1 131.679184280807 19.801625982847774 0 0 0 0 +1878 1 2.3144 1 139.73790529012447 39.29106937143449 0 0 0 0 +1963 1 2.2624 1 152.30249612932815 47.96402344307498 0 0 0 0 +1988 1 2.2488 1 156.11455871498225 58.44898940373316 0 0 0 0 +2011 1 2.2327 1 145.82952394597444 39.13920682063212 0 0 0 0 +2070 1 2.198 1 137.89342930251885 23.277788568480624 0 0 0 0 +2091 1 2.1878 1 129.2520866274837 42.82749241299703 0 0 0 0 +8031 1 1.1128 1 169.12281753492803 50.33239068530366 0 0 0 0 +1531 1 2.546 1 120.34054814368683 54.391086115060986 0 0 0 0 +2106 1 2.1801 1 143.8390087988331 38.34430658009872 0 0 0 0 +9690 1 1.0159 1 121.8170061030602 55.346941842575085 0 0 0 0 +2161 1 2.1513 1 167.39225310396253 58.1297023095501 0 0 0 0 +2207 1 2.1329 1 134.5329896053529 18.445724933041866 0 0 0 0 +2208 1 2.1328 1 131.4916826477564 50.079191083802336 0 0 0 0 +2475 1 2.0186 1 124.92468426246926 54.283616304407396 0 0 0 0 +2323 1 2.0787 1 129.42128339977006 44.885077239731196 0 0 0 0 +9791 1 1.0101 1 130.10014087605467 34.906052411062184 0 0 0 0 +2368 1 2.0598 1 130.81919498864005 11.850140165930918 0 0 0 0 +2433 1 2.0333 1 129.5364641925417 50.65527344144881 0 0 0 0 +2449 1 2.0275 1 130.65939134392667 33.477167010865834 0 0 0 0 +2467 1 2.0231 1 143.52209486999473 36.28962654491053 0 0 0 0 +2919 1 1.8577 1 126.28622038173516 12.691536309198236 0 0 1 0 +2485 1 2.0149 1 129.1306237154503 13.192768265970347 0 0 0 0 +2503 1 2.0091 1 153.55506695538875 52.98315062649043 0 0 0 0 +2514 1 2.0056 1 134.14227743906412 44.72621114252367 0 0 0 0 +5551 1 1.3442 1 118.707876281122 43.82674609673959 0 0 0 0 +2562 1 1.9844 1 145.22889762412703 62.450087856466986 0 0 0 0 +2636 1 1.9551 1 141.23328727726104 40.77294780892468 0 0 0 0 +2710 1 1.926 1 127.84663601497476 49.79631903803344 0 0 0 0 +2716 1 1.9244 1 157.69676388204846 59.76607483960172 0 0 0 0 +2721 1 1.9229 1 131.27153853965459 42.38490971240287 0 0 0 0 +2730 1 1.9185 1 145.42507057615103 50.63469728302633 0 0 0 0 +2733 1 1.9173 1 157.38831818519733 48.8149659793996 0 0 0 0 +2777 1 1.9027 1 130.80267321078355 40.35256387753901 0 0 0 0 +2800 1 1.8936 1 152.61576758030574 51.31155013206837 0 0 0 0 +2834 1 1.8844 1 132.57052003987496 40.671586008010586 0 0 0 0 +2837 1 1.8831 1 158.08440030231924 46.92403714373072 0 0 0 0 +2844 1 1.8811 1 155.31741639547985 53.794748439052924 0 0 0 0 +2273 1 2.1053 1 121.29941795153944 44.80946195844184 0 0 0 0 +6120 1 1.2813 1 119.22890165926152 30.599006888783745 0 0 0 0 +2904 1 1.8621 1 142.62413630082432 56.35106335077047 0 0 0 0 +2935 1 1.8515 1 162.38313785164516 60.378670806590264 0 0 0 0 +2998 1 1.8332 1 149.78498466795796 54.33614075268176 0 0 0 0 +3076 1 1.8062 1 138.78268752666585 25.926264821723787 0 0 0 0 +3079 1 1.8056 1 149.14613797869285 41.8714201784786 0 0 0 0 +3089 1 1.8023 1 121.34290889305139 26.98505671908366 0 0 0 0 +3115 1 1.7913 1 139.4537100986259 41.24726898122114 0 0 0 0 +3124 1 1.7862 1 149.0124493899211 51.772083051254675 0 0 0 0 +3129 1 1.7847 1 121.24118405064632 28.75126619609869 0 0 0 0 +3131 1 1.784 1 167.31353681754794 60.96580447371483 0 0 0 0 +3188 1 1.7688 1 130.58863128899648 54.80295994100493 0 0 0 0 +3236 1 1.7559 1 126.11205146427729 49.304497895161376 0 0 0 0 +3252 1 1.7526 1 133.44917266860753 11.439052443057157 0 0 0 0 +1590 1 2.502 1 128.67616204817193 53.90604588948998 0 0 0 0 +3310 1 1.7376 1 131.3117234997472 44.812880304961496 0 0 0 0 +3335 1 1.7322 1 121.5590824177042 20.502336841197494 0 0 0 0 +3366 1 1.7246 1 122.79227901954818 23.894532237746397 0 0 0 0 +3416 1 1.7116 1 117.63985799936825 27.835421256652662 0 0 0 0 +3462 1 1.7006 1 133.136165498326 53.48491055704632 0 0 0 0 +3463 1 1.7006 1 137.93143221690661 18.520712093272916 0 0 0 0 +8218 1 1.1004 1 122.55825566625562 48.14388980622562 0 0 0 0 +3869 1 1.6133 1 120.56629320611836 46.460856366206094 0 0 0 0 +2268 1 2.1075 1 131.47885645797163 56.49404860345344 0 0 0 0 +5414 1 1.3615 1 169.79089199612167 56.634441792009355 0 0 0 0 +3607 1 1.6694 1 144.8797906121117 44.66505581184506 0 0 0 0 +3609 1 1.669 1 128.40805902114315 56.380135324950096 0 0 0 0 +3665 1 1.6571 1 129.09191539444046 40.60403845250698 0 0 0 0 +3671 1 1.6555 1 167.27728101085577 62.63951844849738 0 0 0 0 +3690 1 1.6513 1 150.4896651662585 59.183240573707714 0 0 0 0 +3716 1 1.6444 1 144.07264586216527 54.935746381001465 0 0 0 0 +358 1 5.2866 1 160.1903852506524 50.99119897404061 0 0 0 0 +6681 1 1.2238 1 159.17423746131783 47.973981838531465 0 0 0 0 +3761 1 1.6377 1 131.98552374078642 13.440350600498938 0 0 0 0 +3793 1 1.6315 1 136.46055111830017 25.091414072097386 0 0 0 0 +3860 1 1.6157 1 148.40142380922262 55.34760416448672 0 0 0 0 +3863 1 1.6152 1 119.64113462735843 29.22780394826818 0 0 0 0 +3880 1 1.6117 1 159.91539286890634 56.217488787421644 0 0 0 0 +3886 1 1.6103 1 129.81642820661187 15.985464168898591 0 0 0 0 +3908 1 1.6062 1 140.9903338791699 37.755034893561856 0 0 0 0 +3983 1 1.5898 1 133.5695003097191 20.03220873595606 0 0 0 0 +3998 1 1.5854 1 135.09836986581402 20.20573383036385 0 0 0 0 +1838 1 2.3361 1 118.71609256477615 42.09794077794842 0 0 0 0 +2587 1 1.9756 1 132.0497969264021 58.991601429246764 0 0 0 0 +1149 1 2.9551 1 129.7430724266985 58.224611597460516 0 0 0 0 +4162 1 1.5565 1 132.97667227840887 57.49147616856429 0 0 0 0 +4170 1 1.5551 1 138.1301079052045 42.117364009467785 0 0 0 0 +4279 1 1.5361 1 138.3374489945729 14.606177209028846 0 0 0 0 +4298 1 1.5326 1 168.87987657171817 61.347162213713865 0 0 0 0 +4319 1 1.5293 1 135.71047831135618 33.74377779588572 0 0 0 0 +4344 1 1.5238 1 160.33324397661843 58.48201784006191 0 0 0 0 +4385 1 1.5171 1 156.57805625785448 46.15740352968111 0 0 0 0 +6693 1 1.223 1 168.11527621684365 48.3067553404906 0 0 0 0 +3542 1 1.6847 1 124.51477222298062 49.792533189166384 0 0 0 0 +4419 1 1.5118 1 160.47462496633813 54.53151635600733 0 0 0 0 +4427 1 1.5099 1 130.16536985384516 18.69299601892739 0 0 0 0 +4504 1 1.4965 1 122.94956149320073 46.9386173661287 0 0 0 0 +8059 1 1.1105 1 167.15793858090495 56.52515220441981 0 0 0 0 +4521 1 1.4942 1 137.26411429258863 52.43058639374403 0 0 0 0 +4543 1 1.4906 1 122.2858793055849 22.37644298548902 0 0 0 0 +4561 1 1.4873 1 130.20939801654976 14.546240960795364 0 0 0 0 +4850 1 1.4413 1 122.88551610232722 45.519679019288084 0 0 0 0 +4590 1 1.4821 1 131.6039605297005 14.950231124333419 0 0 0 0 +4606 1 1.4795 1 138.47075663560452 54.735619278595074 0 0 0 0 +4683 1 1.4672 1 143.7376863157636 63.19209572261414 0 0 0 0 +4689 1 1.466 1 136.24704612034907 19.224690196372475 0 0 0 0 +4703 1 1.4644 1 126.9054759271562 42.39552858111147 0 0 0 0 +4819 1 1.446 1 151.88414751571432 43.70136787518299 0 0 0 0 +4839 1 1.4432 1 131.85441988285203 46.40898304398307 0 0 0 0 +4859 1 1.4402 1 128.80330757184754 14.879075462080511 0 0 0 0 +4869 1 1.438 1 127.65245188834783 14.070860981837766 0 0 0 0 +4880 1 1.4368 1 134.2681095068317 36.20646194506502 0 0 0 0 +4881 1 1.4364 1 156.57467724509038 56.71864747200565 0 0 0 0 +4883 1 1.4361 1 131.7519335840182 32.02110700643217 0 0 0 0 +6783 1 1.2146 1 131.58595269395965 10.433679819371836 0 0 0 0 +7789 1 1.1295 1 133.76195585861623 10.06746317998546 0 0 0 0 +5019 1 1.4178 1 135.5881755812762 43.91341253792537 0 0 0 0 +5024 1 1.4174 1 141.24865824897682 55.55947731146114 0 0 0 0 +6756 1 1.2178 1 168.28562144983286 56.73592723565193 0 0 0 0 +5120 1 1.3999 1 146.1563888700172 48.67234405803232 0 0 0 0 +5138 1 1.3978 1 139.63926058476287 52.98190547599053 0 0 0 0 +5151 1 1.3959 1 139.4358106801853 27.36903509327617 0 0 0 0 +5156 1 1.3952 1 127.66895219629328 43.550306935120474 0 0 0 0 +5194 1 1.3895 1 128.00951551068397 41.587125532486326 0 0 0 0 +5208 1 1.3878 1 135.2287873670696 32.32996547926964 0 0 0 0 +5210 1 1.3875 1 134.28407920922993 38.65664452606587 0 0 0 0 +7794 1 1.1291 1 165.01652729000295 53.37288489822903 0 0 0 0 +5247 1 1.3826 1 133.5651385532223 43.16270623067217 0 0 0 0 +3077 1 1.8058 1 160.79877146773057 47.60106191532505 0 0 0 0 +5321 1 1.3732 1 123.56254464455772 29.220186622412022 0 0 0 0 +9774 1 1.0113 1 159.14748480876932 59.419783807644365 0 0 0 0 +9946 1 1.0031 1 132.29601275707162 12.162572996441156 0 0 0 0 +9374 1 1.0323 1 121.45923756100883 53.06890076085461 0 0 0 0 +2235 1 2.121 1 122.62590473286066 54.06026283053198 0 0 0 0 +5505 1 1.3501 1 129.8278841866439 56.098010112527916 0 0 0 0 +5507 1 1.35 1 135.32885022003398 55.54268011223247 0 0 0 0 +5520 1 1.3489 1 118.96716142821117 27.089310102581187 0 0 0 0 +5584 1 1.3391 1 154.2676653794266 44.95287277023632 0 0 0 0 +5615 1 1.3356 1 120.18812839647481 21.142428612409816 0 0 0 0 +5636 1 1.3333 1 151.91773234536922 59.46475473053625 0 0 0 0 +5681 1 1.3288 1 163.76863860553732 61.15681837103544 0 0 0 0 +5766 1 1.3179 1 141.90914185610487 36.466233074823755 0 0 0 0 +5777 1 1.3163 1 136.25387908802185 35.03629515374783 0 0 0 0 +3630 1 1.6658 1 167.79136378009048 49.96792350495312 0 0 0 0 +1415 1 2.6661 1 126.3435779351043 56.06546599230158 0 0 0 0 +5873 1 1.3082 1 165.9561175153647 62.05262256016473 0 0 0 0 +5938 1 1.3012 1 129.66245521992755 39.272094180602664 0 0 0 0 +5969 1 1.2977 1 152.28555059248882 60.69138583705262 0 0 0 0 +5971 1 1.2974 1 151.31682708254428 54.63871329054767 0 0 0 0 +5979 1 1.2967 1 135.1039210506787 25.56723734261987 0 0 0 0 +5996 1 1.2951 1 154.5486113530152 57.7003418969566 0 0 0 0 +6012 1 1.2934 1 132.29767039043023 43.62631601936278 0 0 0 0 +6048 1 1.289 1 155.25709579864113 45.77736709246897 0 0 0 0 +6982 1 1.1958 1 168.99237373250367 57.65379131447869 0 0 0 0 +9968 1 1.0022 1 140.51517428993378 42.07792670379287 0 0 0 0 +3942 1 1.5992 1 120.1102390731228 43.43520328827726 0 0 0 0 +6191 1 1.2726 1 125.2591645255949 47.36115111975971 0 0 0 0 +6245 1 1.2657 1 138.18413474626172 19.928722081081315 0 0 0 0 +6254 1 1.2646 1 130.55177171664738 46.07844544560568 0 0 0 0 +6266 1 1.2634 1 139.68931428263528 54.19669161904295 0 0 0 0 +6271 1 1.2629 1 120.03808595628782 27.82599246874894 0 0 0 0 +6361 1 1.256 1 132.00858574887948 54.39632246102731 0 0 0 0 +6369 1 1.2552 1 155.76587291121172 55.66018052756567 0 0 0 0 +6375 1 1.2547 1 142.17547223888397 38.50995857445253 0 0 0 0 +6440 1 1.2481 1 162.7529771770243 53.081339786170666 0 0 0 0 +6530 1 1.2395 1 146.00484266818555 54.67784865405535 0 0 0 0 +6531 1 1.2395 1 152.09438480783942 58.21422833543786 0 0 0 0 +6718 1 1.2206 1 168.9760342964287 49.22799806616994 0 0 0 0 +6582 1 1.2338 1 124.25047037825493 46.668814178512775 0 0 0 0 +6586 1 1.2335 1 133.1000918088491 45.94876656555241 0 0 0 0 +6596 1 1.232 1 160.38406480437814 60.21567252084658 0 0 0 0 +6642 1 1.2279 1 140.69554739685535 36.37531966502715 0 0 0 0 +6649 1 1.2268 1 153.5456616796243 49.170395223839975 0 0 0 0 +6659 1 1.2264 1 156.6879105415086 47.47320395436032 0 0 0 0 +6672 1 1.2248 1 130.2004154981105 31.94193051412303 0 0 0 0 +7068 1 1.1884 1 126.87508893953932 54.245331084453824 0 0 0 0 +6732 1 1.2194 1 134.51876478252993 46.253502099456945 0 0 0 0 +3199 1 1.7664 1 121.59497066637375 51.752459147432575 0 0 0 0 +6778 1 1.2154 1 122.67485089037451 26.303779463633557 0 0 0 0 +614 1 3.9792 1 170.77404818875536 59.46118436216947 0 0 0 0 +6825 1 1.21 1 134.9486467213439 49.79025402999843 0 0 0 0 +3597 1 1.6717 1 117.75985257908577 21.916961671780488 0 0 0 0 +6844 1 1.2083 1 155.84457784792863 60.109467312804725 0 0 0 0 +6857 1 1.2069 1 153.1821362957483 45.55233302836663 0 0 0 0 +6874 1 1.2045 1 123.1490498695565 18.904243788778086 0 0 0 0 +6908 1 1.2013 1 129.32853936280594 32.78192823350436 0 0 0 0 +6919 1 1.2004 1 153.1822904192691 44.34883456923029 0 0 0 0 +3287 1 1.7439 1 118.93830255640312 46.32021893465391 0 0 0 0 +6952 1 1.1981 1 152.21304773066493 44.9508627961151 0 0 0 0 +464 1 4.6071 1 128.0157307080906 10.109374075268041 0 0 1 0 +7006 1 1.1938 1 129.52309511742885 19.78880770309496 0 0 0 0 +7051 1 1.1895 1 139.32724489852896 29.559893596753096 0 0 0 0 +7062 1 1.189 1 135.78178902609693 17.407969560697897 0 0 0 0 +7097 1 1.1862 1 123.57099359874563 22.70964463977055 0 0 0 0 +7107 1 1.1852 1 132.79688754688175 42.16648427915568 0 0 0 0 +7183 1 1.1796 1 139.87810190133987 28.55455521951812 0 0 0 0 +7194 1 1.1785 1 138.3061956809488 40.291514009151626 0 0 0 0 +8829 1 1.0617 1 117.97506578701012 40.58996603647078 0 0 0 0 +7276 1 1.1728 1 142.65594995400113 34.3388434327933 0 0 0 0 +8506 1 1.0805 1 123.83968892340084 55.335228903034555 0 0 0 0 +7297 1 1.1709 1 125.3460448523341 14.673396520158361 0 0 0 0 +7309 1 1.1696 1 137.2018174360728 54.43081391377573 0 0 0 0 +7363 1 1.1644 1 161.29557431917138 59.377668771539426 0 0 0 0 +7365 1 1.1642 1 140.04723474728272 55.244704532627225 0 0 0 0 +7366 1 1.1642 1 146.52489269253346 61.651980768973985 0 0 0 0 +7409 1 1.1604 1 126.40183213374685 14.257168558324368 0 0 0 0 +7411 1 1.1603 1 137.9035497350009 53.57005053868515 0 0 0 0 +7461 1 1.1562 1 152.19319329110735 53.78205977804915 0 0 0 0 +7487 1 1.1537 1 145.06778620205222 53.97058557783567 0 0 0 0 +7535 1 1.1499 1 152.61966895878456 49.82492227266027 0 0 0 0 +7559 1 1.1472 1 122.98424983298763 43.20785521255693 0 0 0 0 +7607 1 1.1436 1 152.29002236461704 46.2737215982682 0 0 0 0 +7717 1 1.1353 1 137.08160987632482 14.549455741905206 0 0 0 0 +7760 1 1.1315 1 137.79071132431585 24.90585242496419 0 0 0 0 +7766 1 1.1311 1 128.66293319044144 31.934543557434427 0 0 0 0 +5355 1 1.369 1 169.49447918243672 48.135798308506466 0 0 0 0 +6927 1 1.1997 1 134.68463978411862 10.668336648947236 0 0 0 0 +7851 1 1.1249 1 129.1064370678928 49.01589312220491 0 0 0 0 +7905 1 1.1209 1 127.77066576685961 44.74779921574213 0 0 0 0 +7923 1 1.1194 1 138.38433659618164 21.729027561667063 0 0 0 0 +7958 1 1.1172 1 168.59875427691924 62.57027818239944 0 0 0 0 +9738 1 1.0132 1 130.58710779625014 43.6721579741376 0 0 0 0 +7991 1 1.115 1 136.6738678713924 18.0309259049407 0 0 0 0 +7995 1 1.1148 1 119.01419532969146 21.378217003014992 0 0 0 0 +7997 1 1.1147 1 137.57030643048546 39.382067694916 0 0 0 0 +8004 1 1.1142 1 136.22282867020107 51.653963073930285 0 0 0 0 +8007 1 1.1141 1 148.35528683002514 54.04771294922207 0 0 0 0 +8017 1 1.1136 1 131.16502707799467 34.91065865712845 0 0 0 0 +8026 1 1.1131 1 132.67360602301594 10.121674197623776 0 0 0 0 +8033 1 1.1127 1 148.95024559562452 53.1576403621458 0 0 0 0 +8034 1 1.1126 1 156.46744361039273 52.90294925588126 0 0 0 0 +4017 1 1.58 1 119.99282927088922 52.39391618147978 0 0 0 0 +8102 1 1.1074 1 130.65363399852043 13.382712645247926 0 0 0 0 +8111 1 1.1071 1 161.55533429228345 53.798176492253226 0 0 0 0 +8164 1 1.1035 1 122.63822726228844 28.400785895782313 0 0 0 0 +331 1 5.4684 1 168.28649396141176 53.45202792931705 0 0 0 0 +4 1 57.8938 1 167.67647693012017 18.659648451552865 0 0 0 0 +8297 1 1.0948 1 141.51074547246137 42.24609277570995 0 0 0 0 +8301 1 1.0946 1 135.5516571073791 50.784360066258465 0 0 0 0 +8309 1 1.094 1 151.21207957147806 61.118226849374416 0 0 0 0 +8310 1 1.0938 1 142.4048611895929 39.68457599853027 0 0 0 0 +8356 1 1.0904 1 134.5441781221754 12.336436194491311 0 0 0 0 +8389 1 1.088 1 132.8180018452121 21.140312476668267 0 0 0 0 +8575 1 1.0767 1 122.83390442230547 55.57900437210918 0 0 0 0 +8445 1 1.0847 1 145.3730990105393 47.73326813914326 0 0 0 0 +8448 1 1.0844 1 144.14822132867508 61.21749317486781 0 0 0 0 +8467 1 1.0833 1 132.98570806244078 18.75393353614453 0 0 0 0 +8470 1 1.0831 1 153.1808096581006 57.86577134557342 0 0 0 0 +1129 1 2.977 1 164.2224329438028 51.52064298304335 0 0 0 0 +8490 1 1.0816 1 136.43644357245282 55.17094164765256 0 0 0 0 +2846 1 1.8806 1 123.37311614454764 51.09427599728128 0 0 0 0 +8101 1 1.1074 1 122.758577417048 44.271570289876855 0 0 0 0 +8648 1 1.0723 1 140.40628426931832 29.760077887875305 0 0 0 0 +8657 1 1.0719 1 145.06878314443668 49.20666186027044 0 0 0 0 +8674 1 1.0712 1 142.72877079622353 54.90098469987262 0 0 0 0 +8681 1 1.0709 1 142.0624944896519 35.28607480503196 0 0 0 0 +8811 1 1.0627 1 133.44950741074635 39.523502135496386 0 0 0 0 +8812 1 1.0626 1 159.54112924398115 46.93940013685461 0 0 0 0 +8826 1 1.0617 1 138.4912873385454 52.69327983909232 0 0 0 0 +9993 1 1.0003 1 136.0495289516177 31.46255486420223 0 0 0 0 +9852 1 1.0074 1 163.74426673290228 60.05987550734776 0 0 0 0 +8886 1 1.058 1 130.0636569342887 41.53014850016247 0 0 0 0 +8901 1 1.0574 1 134.29278502317456 21.23787553063221 0 0 0 0 +8961 1 1.0548 1 121.15911768643225 21.820792325635765 0 0 0 0 +8707 1 1.0694 1 131.49291181318787 60.852945248339005 0 0 0 0 +8981 1 1.0536 1 145.200271881391 46.69196531708298 0 0 0 0 +8994 1 1.053 1 141.39549865972418 39.30747278493874 0 0 0 0 +9070 1 1.0487 1 122.3911901325827 25.215713944416606 0 0 0 0 +9100 1 1.047 1 133.11513926206283 12.76152147607857 0 0 0 0 +9143 1 1.0449 1 154.1325429436598 46.064327028256926 0 0 0 0 +9156 1 1.0442 1 153.28963133998244 46.659651230668935 0 0 0 0 +9162 1 1.044 1 147.1426556363003 54.781490124502575 0 0 0 0 +9178 1 1.043 1 132.66012318778678 44.77349841485555 0 0 0 0 +9258 1 1.0389 1 133.66128528371382 22.059279277645736 0 0 0 0 +9297 1 1.0367 1 155.35248917822483 56.8621422808495 0 0 0 0 +3193 1 1.7675 1 164.38189365564705 48.3030960039967 0 0 0 0 +9389 1 1.0313 1 122.41285764830528 29.46686711795835 0 0 0 0 +3106 1 1.796 1 124.0024866804654 48.15916317039362 0 0 0 0 +9422 1 1.0295 1 166.91749240348608 59.62841164860264 0 0 0 0 +4885 1 1.4354 1 121.57598469611638 43.11700059125807 0 0 0 0 +7289 1 1.1717 1 128.73997362295458 52.06240333828023 0 0 0 0 +9570 1 1.022 1 147.57423261590733 61.75420058187337 0 0 0 0 +9586 1 1.0215 1 142.53027620486486 37.439844758974324 0 0 0 0 +2605 1 1.9658 1 162.54544186152188 48.24772196018256 0 0 0 0 +9602 1 1.0205 1 138.25964535913147 38.56669568467462 0 0 0 0 +9636 1 1.0187 1 118.37806236122037 28.95900433462379 0 0 0 0 +454 1 4.6379 1 119.51052003595613 49.359313306417924 0 0 0 0 +9668 1 1.0171 1 125.47302563769702 13.701329918733254 0 0 0 0 +9673 1 1.0169 1 122.93664967988697 27.386514519279253 0 0 0 0 +8385 1 1.0882 1 122.08102396803059 50.47145602590108 0 0 0 0 +3756 1 1.6389 1 146.9654414304481 62.92509643596926 0 0 0 0 +9702 1 1.0151 1 139.54525075521434 9.963732940957883 0 0 0 0 +9718 1 1.0143 1 148.20573422220912 62.529285000346654 0 0 0 0 +5435 1 1.3585 1 168.14872295692894 59.681872397526426 0 0 0 0 +9242 1 1.0398 1 127.64631118239258 57.633968095841716 0 0 0 0 +3675 1 1.6543 1 122.89200693622834 49.429916647502935 0 0 0 0 +8788 1 1.0641 1 117.44944773968932 43.19609340636101 0 0 0 0 +9 1 36.512 1 157.36445067901158 78.85880289605412 0 0 0 0 +34 1 17.4454 1 123.80700467852353 101.67611394608247 0 0 0 0 +112 1 9.3152 1 142.51639439817714 106.02363031845178 0 0 0 0 +119 1 9.0933 1 153.3366537239324 112.46442295779381 0 0 0 0 +13 1 31.1484 1 118.72375939238759 71.07337945745604 0 0 0 0 +152 1 7.5919 1 135.63686941285198 91.97681985300733 0 0 0 0 +3829 1 1.6207 1 131.62403755656342 111.44704972111447 0 0 0 0 +6802 1 1.2125 1 141.61270773624258 68.52274766989842 0 0 0 0 +224 1 6.4204 1 136.95012344512241 85.15511162162494 0 0 0 0 +258 1 6.1555 1 170.28248589746977 112.48889593147882 0 0 0 0 +277 1 5.9483 1 136.38113995241437 76.19083800658636 0 0 0 0 +279 1 5.9326 1 138.31565218364176 69.82242419094958 0 0 0 0 +295 1 5.8053 1 151.42188866794646 105.45172591718674 0 0 0 0 +1501 1 2.5766 1 165.60547259503016 108.92851198268993 0 0 0 0 +317 1 5.5666 1 129.3425317362222 90.36240347067911 0 0 0 0 +390 1 4.9878 1 141.9882410568099 98.23541346699457 0 0 0 0 +428 1 4.7669 1 147.90776207372477 101.69359912323146 0 0 0 0 +435 1 4.7179 1 162.61313151688339 103.29976428420632 0 0 0 0 +471 1 4.5402 1 155.72803847199577 102.76028402656617 0 0 0 0 +4753 1 1.4559 1 127.65128018455351 110.2915729478471 0 0 0 0 +517 1 4.3124 1 134.535357659291 107.3633312691081 0 0 0 0 +537 1 4.2398 1 166.9730874278567 103.82451354681662 0 0 0 0 +551 1 4.196 1 152.5744849208852 98.50161760478939 0 0 0 0 +563 1 4.1677 1 143.6549113255289 113.02388068114352 0 0 0 0 +9531 1 1.0241 1 122.8610821355293 92.51246427232822 0 0 0 0 +628 1 3.9394 1 136.28363384647344 101.46329838948324 0 0 0 0 +3873 1 1.6128 1 136.64234104574274 114.52701149140482 0 0 0 0 +8733 1 1.068 1 134.4296709310123 87.87531679420442 0 0 0 0 +9463 1 1.0276 1 132.47467796120392 104.81401634965387 0 0 0 0 +5849 1 1.3101 1 162.54039885373214 110.8368928947219 0 0 0 0 +759 1 3.6578 1 124.72334817247099 91.12723063718893 0 0 0 0 +773 1 3.6412 1 156.45213100414972 98.81476636992129 0 0 0 0 +776 1 3.6351 1 161.54249755944986 99.32529688808981 0 0 0 0 +762 1 3.6529 1 122.29270441927002 112.11337478820957 0 0 0 0 +909 1 3.335 1 147.86254987495425 97.7475072179961 0 0 0 0 +921 1 3.3116 1 160.92629534784027 107.44509117723092 0 0 0 0 +950 1 3.245 1 130.32775963331133 83.60538560421219 0 0 0 0 +9338 1 1.0342 1 127.94376358993195 87.38903448581105 0 0 0 0 +1017 1 3.1516 1 135.5871866078729 97.25617418364337 0 0 0 0 +1027 1 3.1396 1 141.76806974987844 94.24494632368288 0 0 0 0 +9630 1 1.0191 1 166.46696640285532 101.35281896043345 0 0 0 0 +1052 1 3.0895 1 140.8488272921564 91.35623750921891 0 0 0 0 +607 1 3.9975 1 147.84823214380933 116.99013603985327 0 0 0 0 +1070 1 3.0615 1 140.18087007860427 111.67066488300328 0 0 0 0 +1095 1 3.0236 1 136.58760190677174 112.24269909506454 0 0 0 0 +1145 1 2.9663 1 131.74923416353616 95.45480627648662 0 0 0 0 +3642 1 1.664 1 130.17969449347288 114.22328687068136 0 0 0 0 +9289 1 1.0373 1 136.065190911118 110.32272491989423 0 0 0 0 +1334 1 2.755 1 147.6783645104312 110.83288606430844 0 0 0 0 +1356 1 2.7315 1 145.45614348344085 95.94296273090072 0 0 0 0 +1411 1 2.6689 1 138.24159896557353 98.19727393506554 0 0 0 0 +7954 1 1.1175 1 169.04947965467576 105.45908559417762 0 0 0 0 +1444 1 2.6288 1 129.41332320613338 86.3419658674523 0 0 0 0 +1493 1 2.5842 1 158.73936382493255 104.48991761303596 0 0 0 0 +1503 1 2.5733 1 123.84196215947547 88.16755229387084 0 0 0 0 +1519 1 2.5581 1 132.71223548140145 80.42707279761204 0 0 0 0 +7206 1 1.1777 1 132.22922309599315 105.87882615355578 0 0 0 0 +5788 1 1.3155 1 140.9990708723535 67.42971937535985 0 0 0 0 +8514 1 1.0801 1 124.56050440896034 112.72506423863368 0 0 0 0 +4833 1 1.4446 1 137.81322805994503 79.52249940229422 0 0 0 0 +6460 1 1.2468 1 167.10089202195218 110.08051048289342 0 0 0 0 +1641 1 2.458 1 133.1726820609474 98.54735916909789 0 0 0 0 +5676 1 1.3294 1 130.55935262162652 108.12082911614061 0 0 0 0 +1646 1 2.4555 1 133.36174441719177 114.2515012963882 0 0 0 0 +1698 1 2.4259 1 132.59854208537848 85.17446060459417 0 0 0 0 +6151 1 1.278 1 131.55390804739042 114.65132873897686 0 0 0 0 +5987 1 1.2961 1 163.21969834213263 96.81871998632892 0 0 0 0 +1724 1 2.4098 1 147.9366161529548 108.14288007891936 0 0 0 0 +8211 1 1.1007 1 133.12649288396514 112.49576833210303 0 0 0 0 +1794 1 2.3604 1 125.41030783036308 86.323315105584 0 0 0 0 +1798 1 2.356 1 151.38372802102973 101.44162150693762 0 0 0 0 +3352 1 1.7275 1 126.5063130595677 111.93986417128116 0 0 0 0 +6929 1 1.1997 1 128.7245855676913 109.52217819334031 0 0 0 0 +1338 1 2.7493 1 163.85019238161084 106.7375404659612 0 0 0 0 +9255 1 1.0391 1 132.39341775840683 89.05283158589738 0 0 0 0 +8931 1 1.056 1 139.31938958124837 89.68977295263066 0 0 0 0 +255 1 6.1632 1 166.76669737057983 97.8815299515108 0 0 0 0 +7241 1 1.1746 1 126.37929661814178 110.558287764137 0 0 0 0 +2448 1 2.0279 1 134.78497382491395 81.39022751313279 0 0 0 0 +2568 1 1.9833 1 137.26592505132288 104.15963517733844 0 0 0 0 +9711 1 1.0146 1 135.39701651542865 113.77736648259875 0 0 0 0 +2614 1 1.9619 1 134.6138167736958 110.45848032630008 0 0 0 0 +2615 1 1.9615 1 166.13780458366074 106.76237748744877 0 0 0 0 +2648 1 1.9487 1 157.20378911484127 106.10976605639968 0 0 0 0 +2681 1 1.9374 1 133.44023208526434 101.79764294948696 0 0 0 0 +1542 1 2.5362 1 167.00512185176274 116.9732190690894 0 0 0 0 +8274 1 1.0966 1 131.5630227046099 110.12302717271628 0 0 0 0 +3519 1 1.6897 1 128.56760102439802 113.86176068088206 0 0 0 0 +2729 1 1.9189 1 131.83162661166966 87.68270296187076 0 0 0 0 +2642 1 1.9521 1 124.88920062263384 111.247191799584 0 0 0 0 +2770 1 1.9061 1 143.24219778123668 91.77727625242271 0 0 0 0 +8726 1 1.0682 1 157.87340195197672 114.66977794633463 0 0 0 0 +2868 1 1.8726 1 127.99941007081173 84.66168109798328 0 0 0 0 +2856 1 1.8776 1 131.5690067330524 113.12780234096537 0 0 0 0 +4155 1 1.5572 1 119.06077544638735 115.82724394463213 0 0 0 0 +8877 1 1.0587 1 123.70736038254435 86.37034590356384 0 0 0 0 +2993 1 1.8353 1 145.45140275773883 110.69084318914386 0 0 0 0 +2995 1 1.8342 1 159.02055433639862 97.91537956043074 0 0 0 0 +3006 1 1.8272 1 157.91208471518138 107.83489449838738 0 0 0 0 +9292 1 1.0369 1 134.73094409192504 104.21747969965598 0 0 0 0 +3011 1 1.8248 1 126.6421875178037 87.91450256223408 0 0 0 0 +9040 1 1.0504 1 126.60840959900767 85.10979852088813 0 0 0 0 +3187 1 1.7689 1 131.92228798367526 108.77468826756049 0 0 0 0 +8786 1 1.0641 1 160.33788604876474 97.36248388888191 0 0 0 0 +2280 1 2.1032 1 168.11981055109598 106.7164732392975 0 0 0 0 +3234 1 1.7565 1 156.1255534830078 107.79475248562602 0 0 0 0 +3267 1 1.7481 1 137.40727451405292 110.04914395468894 0 0 0 0 +3314 1 1.7362 1 145.44433954261112 93.73270441609503 0 0 0 0 +1576 1 2.512 1 139.6060518846089 114.288998832995 0 0 0 0 +9518 1 1.0249 1 142.31624348686708 67.67774833032607 0 0 0 0 +3331 1 1.7327 1 126.78291795328619 92.7386108275689 0 0 0 0 +1999 1 2.2428 1 169.23171685570148 108.48137358273064 0 0 0 0 +9922 1 1.0042 1 138.6795611669311 78.73449309013088 0 0 0 0 +3425 1 1.7102 1 140.24928560829144 101.05636411144518 0 0 0 0 +8663 1 1.0716 1 129.62109889855424 108.85432795479494 0 0 0 0 +8874 1 1.0588 1 147.6742042598149 104.7106570209257 0 0 0 0 +4977 1 1.4232 1 168.6891476369522 63.7756766250718 0 0 0 0 +3574 1 1.675 1 133.41789174426845 87.01526028206243 0 0 0 0 +3628 1 1.6663 1 158.7644937623438 102.23717582487431 0 0 0 0 +3783 1 1.6332 1 163.88746023593163 100.43590159720706 0 0 0 0 +9540 1 1.0237 1 159.79254754427177 103.05555339758953 0 0 0 0 +3698 1 1.6474 1 165.16628990984984 101.44030818613804 0 0 0 0 +3711 1 1.6447 1 140.31669978971874 87.25484193961303 0 0 0 0 +3774 1 1.6347 1 158.95018371131468 99.60238270942493 0 0 0 0 +9081 1 1.0481 1 136.6197165721478 99.03979004816475 0 0 0 0 +3807 1 1.6278 1 143.91797353315928 100.79633034617596 0 0 0 0 +9324 1 1.0348 1 136.24698882664813 109.34181213787664 0 0 0 0 +7351 1 1.1657 1 120.06318037319755 111.24112277110859 0 0 0 0 +3296 1 1.7412 1 121.155318775957 114.50156260683872 0 0 0 0 +3940 1 1.6002 1 148.36672274169928 114.3116093956261 0 0 0 0 +3989 1 1.5889 1 131.2663324242465 93.29751625272102 0 0 0 0 +4046 1 1.5752 1 146.52265577950072 113.19853367370885 0 0 0 0 +9720 1 1.0142 1 169.87339343031834 100.62272775388232 0 0 0 0 +4091 1 1.5681 1 133.05917795746313 103.46582249254706 0 0 0 0 +4114 1 1.5638 1 127.34257551293643 86.2421366729464 0 0 0 0 +6070 1 1.2866 1 127.112489092229 114.14986930077404 0 0 0 0 +4158 1 1.5566 1 159.08928660145057 109.01683804736024 0 0 0 0 +2873 1 1.8699 1 144.78814822338157 64.4106621678246 0 0 0 0 +9468 1 1.0275 1 144.8598566261566 97.65381718104048 0 0 0 0 +4224 1 1.5463 1 147.91874065814068 95.34299817930457 0 0 0 0 +4250 1 1.5422 1 154.55808340716854 107.31793058779398 0 0 0 0 +4322 1 1.5286 1 158.01664659897665 100.84180298821538 0 0 0 0 +4333 1 1.5262 1 135.01068810595177 71.45269489101001 0 0 0 0 +4359 1 1.5216 1 135.0024999229017 79.65215364983828 0 0 0 0 +4389 1 1.5166 1 147.87225048839593 106.05779954004322 0 0 0 0 +8177 1 1.1027 1 154.55689269827297 100.2207823539527 0 0 0 0 +8602 1 1.0748 1 156.95192839548022 108.91077798964925 0 0 0 0 +9770 1 1.0115 1 133.54906085233077 83.78925108485399 0 0 0 0 +6193 1 1.2724 1 133.9146380877433 82.74794094279213 0 0 0 0 +9963 1 1.0023 1 158.33640845183228 112.55333877086693 0 0 0 0 +4597 1 1.4807 1 133.1037001631288 111.21196320416657 0 0 0 0 +4617 1 1.4787 1 139.47384857030443 94.38221870178887 0 0 0 0 +4625 1 1.4776 1 148.07272449459225 112.85610277415637 0 0 0 0 +4631 1 1.4767 1 149.77300102707403 108.61978757527321 0 0 0 0 +7316 1 1.1691 1 130.60202813548128 109.34483555157966 0 0 0 0 +4719 1 1.4608 1 144.0523795938113 94.40826901360545 0 0 0 0 +8035 1 1.1125 1 137.04568224921508 66.6310132296071 0 0 0 0 +9542 1 1.0237 1 137.37537109249263 105.61954087763304 0 0 0 0 +4540 1 1.491 1 170.19394634966784 92.76277529320058 0 0 0 0 +4875 1 1.4372 1 149.29806250848745 95.94507121354525 0 0 0 0 +9689 1 1.016 1 142.06671351153167 111.08468797831097 0 0 0 0 +4923 1 1.4292 1 160.4192856660556 114.84079991284469 0 0 0 0 +4933 1 1.4281 1 136.48214812208818 81.2878402858378 0 0 0 0 +4968 1 1.424 1 150.57026143879344 96.56056196652403 0 0 0 0 +8889 1 1.0579 1 167.09681149809393 107.89866042995176 0 0 0 0 +5035 1 1.4156 1 135.76033660638245 104.82084806343713 0 0 0 0 +5094 1 1.4049 1 138.7778832186902 102.27524278551647 0 0 0 0 +9743 1 1.013 1 157.31704283484908 115.5265254893302 0 0 0 0 +5199 1 1.3885 1 133.6609653400276 104.73371315855361 0 0 0 0 +8725 1 1.0683 1 139.8040510117009 93.15286641103037 0 0 0 0 +5251 1 1.3817 1 138.6041177241564 73.4060487221945 0 0 0 0 +4938 1 1.4274 1 128.02121023126443 111.67326001042329 0 0 0 0 +5302 1 1.3757 1 159.52146203659333 115.86186990401669 0 0 0 0 +5317 1 1.3736 1 137.25839584076525 106.77350742902664 0 0 0 0 +5356 1 1.369 1 133.09118942242026 109.80091528957011 0 0 0 0 +5402 1 1.3631 1 158.81516134937033 106.46017201913565 0 0 0 0 +5426 1 1.3595 1 155.60309908849953 106.34991264876231 0 0 0 0 +5440 1 1.3579 1 139.34780005037595 99.8456741481462 0 0 0 0 +5503 1 1.3503 1 158.52706460914396 113.70159268646029 0 0 0 0 +9109 1 1.0468 1 138.2490134605004 111.12393266882806 0 0 0 0 +5597 1 1.3377 1 157.78039467557932 109.75065860152993 0 0 0 0 +5622 1 1.3345 1 146.7828815180653 94.47827184198631 0 0 0 0 +5647 1 1.3326 1 139.07220993664168 96.4281825054052 0 0 0 0 +5658 1 1.3318 1 133.7954272241787 95.98707238195097 0 0 0 0 +5700 1 1.3258 1 160.43205130484102 105.27373367557001 0 0 0 0 +9332 1 1.0345 1 137.04018142910525 108.71606594765618 0 0 0 0 +9729 1 1.0138 1 139.64815171847604 72.96836427023877 0 0 0 0 +5572 1 1.3411 1 168.78771265020163 101.62754195371672 0 0 0 0 +5810 1 1.3136 1 132.54538202774052 83.27739330758037 0 0 0 0 +5816 1 1.3128 1 138.91107169498585 109.90463175799256 0 0 0 0 +9328 1 1.0346 1 132.92419877833373 82.18551139606461 0 0 0 0 +5826 1 1.3118 1 158.37735366763405 111.39928923951932 0 0 0 0 +8753 1 1.0666 1 149.12760442364882 109.66301991438063 0 0 0 0 +5851 1 1.31 1 140.1289183338692 95.69594583510121 0 0 0 0 +5881 1 1.307 1 139.67404787293898 88.5279949960524 0 0 0 0 +4725 1 1.4596 1 136.44001943595472 79.87730268172469 0 0 0 0 +3888 1 1.6102 1 131.60724461210788 107.11606930174955 0 0 0 0 +8522 1 1.0797 1 138.51609591278503 112.88300384361926 0 0 0 0 +1821 1 2.3444 1 163.1891000098967 109.12879323211912 0 0 0 0 +9886 1 1.0057 1 133.08372929251027 96.87205572156176 0 0 0 0 +1500 1 2.5783 1 164.4348642049858 111.19488640736223 0 0 0 0 +6079 1 1.2856 1 138.45453196632297 88.64284190553776 0 0 0 0 +6141 1 1.2796 1 133.30743823937775 78.02881460672704 0 0 0 0 +6144 1 1.2793 1 134.12954744143005 100.11009644675416 0 0 0 0 +6146 1 1.2792 1 143.50471660722462 95.58557291107844 0 0 0 0 +6305 1 1.2607 1 167.998664386643 94.41014325168045 0 0 0 0 +6172 1 1.275 1 134.20959183734905 111.99234172138198 0 0 0 0 +3138 1 1.7819 1 161.34691818148193 109.8717592212042 0 0 0 0 +6216 1 1.2698 1 150.32908791379734 99.97355341111553 0 0 0 0 +9460 1 1.0277 1 131.89941574915935 82.16490281441163 0 0 0 0 +9790 1 1.0101 1 146.0333978895273 111.99500022043661 0 0 0 0 +2132 1 2.1636 1 138.2488302888853 81.1784768528697 0 0 0 0 +6376 1 1.2545 1 152.92403310290206 102.28361195158863 0 0 0 0 +6394 1 1.2521 1 135.56136533240056 72.70597978309632 0 0 0 0 +6447 1 1.2478 1 141.74884347704722 89.41325728569775 0 0 0 0 +6451 1 1.2474 1 138.79517053776132 100.98272746135868 0 0 0 0 +9228 1 1.0406 1 170.34706264862 97.93297080040797 0 0 0 0 +6473 1 1.2457 1 169.05521000966374 95.01961415544697 0 0 0 0 +6483 1 1.245 1 134.38561812088008 103.15553455311776 0 0 0 0 +6501 1 1.2432 1 146.0143984870244 99.43112369261073 0 0 0 0 +765 1 3.651 1 160.61078533540262 112.38078837720913 0 0 0 0 +6569 1 1.2357 1 146.9873879842209 114.52509237085432 0 0 0 0 +7188 1 1.1793 1 159.92169760105128 110.08119881988117 0 0 0 0 +6611 1 1.2309 1 138.4960218479807 95.30859066899964 0 0 0 0 +6734 1 1.2193 1 145.69263038324186 98.30238608489914 0 0 0 0 +6764 1 1.2169 1 159.35686806117707 100.9362314697629 0 0 0 0 +6795 1 1.2128 1 122.20763758015912 86.93442141724223 0 0 0 0 +7686 1 1.1373 1 162.04504987082007 97.04423458151227 0 0 0 0 +6939 1 1.1991 1 145.24606088313232 100.35578367004017 0 0 0 0 +6961 1 1.1975 1 132.9657395013009 100.3357076322306 0 0 0 0 +7018 1 1.1923 1 137.63611128829186 96.30599590613596 0 0 0 0 +9879 1 1.006 1 141.54111050164934 115.05103223116352 0 0 0 0 +9210 1 1.0413 1 168.13487466294737 109.66235732282877 0 0 0 0 +5078 1 1.408 1 169.12629384336506 93.71294579886495 0 0 0 0 +7174 1 1.1803 1 141.14560322587872 88.36577369504217 0 0 0 0 +7196 1 1.1784 1 131.25615659263178 86.28482019515289 0 0 0 0 +7201 1 1.1779 1 140.54978153202345 89.32388704978314 0 0 0 0 +7219 1 1.1765 1 160.39674743036005 101.42819339085395 0 0 0 0 +6746 1 1.2185 1 169.72828463811322 106.3884182061252 0 0 0 0 +7266 1 1.1733 1 143.6255174507585 93.21640600086982 0 0 0 0 +1180 1 2.9277 1 135.08603737418196 66.84801988011964 0 0 0 0 +9672 1 1.017 1 159.1172487942799 114.73308034179556 0 0 0 0 +9431 1 1.0292 1 165.68097072647214 112.48184629042292 0 0 0 0 +5623 1 1.3344 1 170.22972565121535 99.09054682604157 0 0 0 0 +1490 1 2.5889 1 163.41865830733434 113.50974676267177 0 0 0 0 +7450 1 1.1567 1 138.1850015275672 108.88559929481603 0 0 0 0 +1987 1 2.2495 1 129.72038939220548 112.33253757654226 0 0 0 0 +7512 1 1.1517 1 146.5681524269185 109.27333130831255 0 0 0 0 +8865 1 1.0591 1 145.8780429863752 114.35201152149887 0 0 0 0 +7572 1 1.1462 1 131.13477131379403 81.39741489603453 0 0 0 0 +9301 1 1.0364 1 138.2153415340319 100.01041194106996 0 0 0 0 +4394 1 1.5158 1 134.80015604038175 68.9942828188071 0 0 0 0 +7613 1 1.1432 1 134.99383781347026 99.29158764860628 0 0 0 0 +5245 1 1.3828 1 128.99077645552003 110.71758779483808 0 0 0 0 +7689 1 1.1372 1 145.03886429001793 101.49601610773199 0 0 0 0 +7045 1 1.1897 1 120.69512192124178 110.34928731331183 0 0 0 0 +7712 1 1.1354 1 126.18681122963886 89.28296273554311 0 0 0 0 +7724 1 1.1347 1 149.88002381493743 98.85251599145268 0 0 0 0 +7784 1 1.1301 1 134.66363453947883 113.05439238225456 0 0 0 0 +7791 1 1.1293 1 154.85020586455448 105.41424236550473 0 0 0 0 +7826 1 1.1272 1 144.5651033847874 92.6105873903792 0 0 0 0 +7876 1 1.1231 1 133.88170021936187 79.03422692850064 0 0 0 0 +9243 1 1.0398 1 120.35152665195339 113.40805688979846 0 0 0 0 +7994 1 1.1149 1 158.83520353660873 110.31471242955757 0 0 0 0 +6638 1 1.2287 1 164.27117400471747 116.6952646245758 0 0 0 0 +8036 1 1.1125 1 144.85908762205173 99.24360216993924 0 0 0 0 +8153 1 1.1045 1 137.6827739038874 107.8965099274086 0 0 0 0 +8159 1 1.1039 1 153.3925763480848 101.04562808798046 0 0 0 0 +9589 1 1.0213 1 146.09274406918087 63.87984147405224 0 0 0 0 +5970 1 1.2976 1 125.66365353212382 113.11829958773585 0 0 0 0 +4532 1 1.4928 1 130.37395101195077 110.60736021240997 0 0 0 0 +5824 1 1.3119 1 127.53168044654817 112.92651993964755 0 0 0 0 +8120 1 1.1065 1 167.43096523376798 108.89830123303994 0 0 0 0 +3227 1 1.7586 1 134.75254064808286 116.41763081388974 0 0 0 0 +5718 1 1.3243 1 120.6950601264745 115.92886892742095 0 0 0 0 +9728 1 1.0138 1 139.50398130304183 66.5876785025698 0 0 0 0 +9355 1 1.0334 1 140.49070073968647 66.37149309616449 0 0 0 0 +298 1 5.7483 1 124.36066658652537 116.32535601314515 0 0 0 0 +153 1 7.5851 1 119.24243124417545 90.21757757327268 0 0 0 0 +4569 1 1.4861 1 135.15468154938432 114.91388641699707 0 0 0 0 +5880 1 1.307 1 119.83346538214266 112.38377279271559 0 0 0 0 +1034 1 3.1207 1 128.7567703992337 116.14049929804392 0 0 0 0 +3322 1 1.7349 1 166.53631215501812 111.43143980096117 0 0 0 0 +1841 1 2.3341 1 142.12729874809347 66.03700069459745 0 0 0 0 +2902 1 1.8628 1 163.16359851818476 115.63399907522225 0 0 0 0 +8374 1 1.0889 1 158.353858467689 115.5948107795514 0 0 0 0 +8630 1 1.073 1 119.83110964781008 114.81810062349378 0 0 0 0 +7329 1 1.1681 1 137.92647517295168 114.99394000305463 0 0 0 0 +2306 1 2.0883 1 145.15059585502556 115.73468674986967 0 0 0 0 +6466 1 1.2463 1 165.26478643194707 113.50731485303267 0 0 0 0 +5818 1 1.3126 1 143.8651206104222 65.66212795447163 0 0 0 0 +7258 1 1.1736 1 136.08218277901935 115.77785395310055 0 0 0 0 +2575 1 1.9798 1 118.88381878889696 113.65706210675886 0 0 0 0 +2725 1 1.9219 1 143.2095323994637 115.96353924946705 0 0 0 0 +8870 1 1.059 1 169.64215548293734 64.5881224898802 0 0 0 0 +1711 1 2.4157 1 161.27787875202057 116.51090347306292 0 0 0 0 +3327 1 1.7333 1 166.6490807856005 113.84157373647624 0 0 0 0 +2071 1 2.1974 1 165.10246082207252 115.2057431386305 0 0 0 0 +7274 1 1.1729 1 167.80317577645425 115.146509334344 0 0 0 0 +3823 1 1.6223 1 168.84928645941088 116.03609559785325 0 0 0 0 +5109 1 1.4026 1 143.09053021926138 64.45481222405805 0 0 0 0 +8122 1 1.1062 1 166.70768677683262 115.22141855489313 0 0 0 0 +7575 1 1.146 1 133.03256835822575 63.78579661810989 0 0 0 0 +7277 1 1.1727 1 150.32845484338816 116.57033957460814 0 0 0 0 +2253 1 2.1167 1 117.47199671674764 115.04139055211479 0 0 0 0 +7131 1 1.1835 1 151.30516231647414 117.13688408303767 0 0 0 0 +641 1 3.9108 1 132.07050354873098 117.12202222946755 0 0 0 0 +4715 1 1.4616 1 163.04802923041987 117.2273354301955 0 0 0 0 +371 1 5.1295 1 141.81563243980327 162.45770719602015 0 0 0 0 +31 1 17.8528 1 152.55790476878275 136.74982127245943 0 0 0 0 +71 1 11.1136 1 139.2055706658802 120.98165406111757 0 0 0 0 +3881 1 1.6117 1 128.23133374118692 119.50193817563552 0 0 0 0 +110 1 9.4067 1 124.8814043513391 123.85361177981343 0 0 0 0 +111 1 9.3517 1 136.7361925644664 147.54419929420217 0 0 0 0 +159 1 7.5044 1 138.68129745335196 133.38686545018248 0 0 0 0 +181 1 7.1776 1 168.76412469366326 121.44831242379908 0 0 0 0 +185 1 7.1152 1 131.66552529309436 128.69312135782485 0 0 0 0 +214 1 6.5923 1 121.91828319806483 139.07465672721827 0 0 0 0 +246 1 6.2598 1 128.13003634388298 146.34071715024123 0 0 0 0 +9187 1 1.0427 1 146.3992203752946 129.5893745164269 0 0 0 0 +310 1 5.65 1 120.15125857671393 131.06695496193777 0 0 0 0 +301 1 5.7371 1 168.849430690438 145.11050949429276 0 0 0 0 +373 1 5.0928 1 161.84737882024393 127.34974470576451 0 0 0 0 +420 1 4.8108 1 141.018588219119 141.6566873408948 0 0 0 0 +462 1 4.611 1 146.28599592199268 146.02267997222495 0 0 0 0 +519 1 4.3082 1 131.3969318929825 122.0268772246917 0 0 0 0 +547 1 4.2109 1 164.93711890863995 138.05445814781524 0 0 0 0 +565 1 4.1548 1 124.94440253281527 134.21763021154254 0 0 0 0 +648 1 3.8946 1 148.6479051283006 124.61115391472664 0 0 0 0 +7317 1 1.1688 1 132.38160753097105 119.54392887299205 0 0 0 0 +671 1 3.8395 1 119.84490184563191 118.33159859048466 0 0 0 0 +5891 1 1.3059 1 129.67398033477053 118.08872961295194 0 0 0 0 +696 1 3.7928 1 145.69215288421168 127.05974792246032 0 0 0 0 +700 1 3.7846 1 155.98223503548226 126.66705167328121 0 0 0 0 +717 1 3.7563 1 130.09531227689453 141.7456244037262 0 0 0 0 +728 1 3.7293 1 135.84947095858703 153.94180193263338 0 0 0 0 +1764 1 2.3752 1 150.51389976717323 118.68482951136924 0 0 0 0 +787 1 3.6125 1 126.72780625641747 140.29104329023804 0 0 0 0 +820 1 3.5429 1 151.72273394690396 149.14234860705116 0 0 0 0 +853 1 3.4558 1 137.71550302361038 128.07416877558163 0 0 0 0 +896 1 3.3624 1 142.9000212699559 148.59575409326 0 0 0 0 +925 1 3.3059 1 163.22920178064604 131.56999598040238 0 0 0 0 +7624 1 1.1427 1 152.1722074315653 119.21589458000996 0 0 0 0 +955 1 3.2398 1 162.60277873087583 123.3205365222999 0 0 0 0 +964 1 3.2275 1 133.0086710532497 136.0412298751385 0 0 0 0 +8923 1 1.0564 1 140.20550240375178 158.23345650923022 0 0 0 0 +995 1 3.1866 1 164.24746150457713 119.14295545511301 0 0 0 0 +998 1 3.1787 1 142.70560467231334 153.69817440088045 0 0 0 0 +9873 1 1.0062 1 145.07003798737176 122.47068942596341 0 0 0 0 +1021 1 3.1482 1 131.94323070786896 151.4652959142016 0 0 0 0 +1064 1 3.0655 1 166.8649738088793 141.11911643243747 0 0 0 0 +9683 1 1.0165 1 124.7867989589237 144.934795634629 0 0 0 0 +1085 1 3.0377 1 164.13773504274033 142.53275431749617 0 0 0 0 +1150 1 2.9538 1 124.270966557159 129.97068015388385 0 0 0 0 +4078 1 1.5703 1 144.14113965421015 167.02824201590508 0 0 0 0 +1158 1 2.9455 1 137.95594025689215 139.08339004753964 0 0 0 0 +9296 1 1.0367 1 124.89132789469713 136.75604622162518 0 0 0 0 +9447 1 1.0286 1 131.9914677201954 134.19196241023224 0 0 0 0 +1226 1 2.8805 1 157.97059273963433 145.44295797280196 0 0 0 0 +1250 1 2.8496 1 145.43989087601963 157.43695348656487 0 0 0 0 +1285 1 2.8052 1 140.8137083199198 127.72239591625576 0 0 0 0 +1277 1 2.8166 1 167.99585034537034 128.0733416377254 0 0 0 0 +1316 1 2.7728 1 139.8737019133654 156.36652389268974 0 0 0 0 +1339 1 2.7486 1 133.5677491082029 133.1829458777975 0 0 0 0 +1511 1 2.5643 1 135.29009407510136 139.59954770163446 0 0 0 0 +4573 1 1.4855 1 117.46080077807491 133.9714945804026 0 0 0 0 +1572 1 2.5145 1 154.02161229292327 146.7206537420857 0 0 0 0 +1604 1 2.4888 1 164.30249474920288 145.96965911451292 0 0 0 0 +1269 1 2.8295 1 118.43784467251957 126.04122268071994 0 0 0 0 +1672 1 2.4414 1 163.6830952091017 135.01286053573813 0 0 0 0 +766 1 3.6483 1 166.62435227756637 134.53894715996455 0 0 0 0 +1715 1 2.4141 1 139.02572667597732 153.963663592304 0 0 0 0 +1733 1 2.4047 1 144.72694361114623 129.97878695957655 0 0 0 0 +1747 1 2.3871 1 152.17298781443387 123.35331844355709 0 0 0 0 +1748 1 2.3865 1 160.5601472873673 130.7456440222981 0 0 0 0 +1757 1 2.3822 1 144.06485607264273 143.40410249364484 0 0 0 0 +1799 1 2.3551 1 151.2360113477811 126.32154434361006 0 0 0 0 +7960 1 1.1172 1 145.1572172024037 167.84659435070256 0 0 0 0 +1815 1 2.3463 1 165.53374010688398 127.41239649500439 0 0 0 0 +1820 1 2.3452 1 166.03655028600357 125.22289208610611 0 0 0 0 +1830 1 2.3416 1 134.06899959655084 141.70798184234997 0 0 0 0 +1871 1 2.3198 1 129.20500738107572 138.86628813934445 0 0 0 0 +1881 1 2.3127 1 161.83919489965677 144.56520850605145 0 0 0 0 +1915 1 2.2898 1 123.46121275337744 143.1848116721633 0 0 0 0 +1924 1 2.2862 1 148.62712911458254 127.59092668781588 0 0 0 0 +1930 1 2.2839 1 132.14924425031018 143.97398872708473 0 0 0 0 +1966 1 2.2608 1 162.16954558024722 139.72546967092296 0 0 0 0 +5456 1 1.3553 1 168.2326518497957 131.6229937316741 0 0 0 0 +1985 1 2.2498 1 130.28775303133494 136.0637814571767 0 0 0 0 +2037 1 2.2195 1 131.20347807135897 138.0367915606224 0 0 0 0 +2039 1 2.2188 1 133.21311646044705 138.68469494298725 0 0 0 0 +4116 1 1.5636 1 162.05362542678319 118.32517125612972 0 0 0 0 +9952 1 1.003 1 145.40578181254466 168.84451573428473 0 0 0 0 +2178 1 2.1457 1 149.58050566753047 146.172775610206 0 0 0 0 +2179 1 2.1457 1 149.11234894528573 150.09019681274515 0 0 0 0 +8537 1 1.0787 1 167.27987055799252 126.33185487505436 0 0 0 0 +2222 1 2.1257 1 140.61701040626997 137.68663061447802 0 0 0 0 +2227 1 2.125 1 149.3901908878987 152.0924999393432 0 0 0 0 +9456 1 1.0279 1 162.16074514141164 142.92956339342942 0 0 0 0 +2254 1 2.1163 1 142.67179315410604 137.42628171542685 0 0 0 0 +2260 1 2.1137 1 133.61516906319844 124.28290724374486 0 0 0 0 +2310 1 2.0844 1 141.7484269591506 144.9332101943592 0 0 0 0 +2316 1 2.0821 1 148.02888845718388 153.614816459094 0 0 0 0 +9655 1 1.0177 1 133.4387211422649 119.14554692741855 0 0 0 0 +9494 1 1.0262 1 147.67514455882545 149.5895139611696 0 0 0 0 +2538 1 1.997 1 153.79995466653898 124.79661314127686 0 0 0 0 +2557 1 1.987 1 145.67301940424065 151.5515141517731 0 0 0 0 +8659 1 1.0718 1 138.86182475474135 161.51122091799309 0 0 0 0 +2771 1 1.9054 1 136.29641691914932 157.80813965088873 0 0 0 0 +2618 1 1.9605 1 127.40088894713233 130.22405550473874 0 0 0 0 +2619 1 1.9604 1 130.531683465678 134.01610204903548 0 0 0 0 +8770 1 1.0651 1 126.39549229950273 143.11107460725924 0 0 0 0 +2652 1 1.9462 1 151.86026476076026 146.4919335840582 0 0 0 0 +2683 1 1.937 1 161.93524626807965 133.79391066609577 0 0 0 0 +2728 1 1.9191 1 162.32919776655143 136.5919620193232 0 0 0 0 +2744 1 1.9129 1 141.88897582848958 157.45267154552113 0 0 0 0 +2748 1 1.9117 1 143.3876282160085 156.31445351329123 0 0 0 0 +1083 1 3.0396 1 118.79383534864331 123.140720432765 0 0 0 0 +2894 1 1.8638 1 125.90004037848165 137.74112051206953 0 0 0 0 +2895 1 1.8637 1 147.55754631547745 151.47685644562986 0 0 0 0 +2905 1 1.8621 1 156.0074922347797 147.53145864793348 0 0 0 0 +2906 1 1.8619 1 143.3309569483119 125.81484905932805 0 0 0 0 +2962 1 1.8443 1 144.08341067216986 159.87547717954723 0 0 0 0 +2999 1 1.832 1 126.05080251155083 131.4915923456233 0 0 0 0 +3022 1 1.8198 1 128.47040616472998 131.74437005802383 0 0 0 0 +3050 1 1.8126 1 120.3178875650083 142.8846372134098 0 0 0 0 +3090 1 1.8023 1 128.75742521827735 133.48675313228856 0 0 0 0 +3108 1 1.795 1 143.19563891328565 146.08839687697667 0 0 0 0 +3146 1 1.7795 1 145.3596612943266 149.05792873515756 0 0 0 0 +3195 1 1.7672 1 123.42966767327417 145.1798834327172 0 0 0 0 +3196 1 1.767 1 134.84947322742275 125.68597862587583 0 0 0 0 +3214 1 1.7622 1 118.66648950136398 136.51710449797125 0 0 0 0 +5808 1 1.3137 1 144.9433472446871 118.59949522587974 0 0 0 0 +2937 1 1.8509 1 152.5925178490491 117.83394868649935 0 0 0 0 +3263 1 1.7493 1 127.67926719616766 137.5302603934914 0 0 0 0 +9205 1 1.0415 1 134.651314519927 134.71987368274353 0 0 0 0 +3307 1 1.7386 1 144.7412368646988 155.14064855739863 0 0 0 0 +3332 1 1.7326 1 143.23955794433363 132.86750303613888 0 0 0 0 +3347 1 1.7288 1 146.2065419678865 154.10226604129093 0 0 0 0 +3369 1 1.7236 1 158.4995076644824 127.7334270379256 0 0 0 0 +3387 1 1.7188 1 141.26161476360988 159.11223856956997 0 0 0 0 +3391 1 1.7176 1 146.2622734888888 123.27913594349846 0 0 0 0 +1373 1 2.7101 1 166.2266380982404 131.40979565573093 0 0 0 0 +3451 1 1.7039 1 140.57249426232062 152.61223484375057 0 0 0 0 +3476 1 1.6989 1 143.16819405364546 139.25998813245053 0 0 0 0 +3493 1 1.6944 1 164.96070191723263 123.5690425117768 0 0 0 0 +3527 1 1.6876 1 133.26005052813645 153.47399832311558 0 0 0 0 +3540 1 1.6849 1 129.86426451348746 119.50806502784062 0 0 0 0 +3635 1 1.6651 1 137.86390368521722 157.11856037600774 0 0 0 0 +3691 1 1.6506 1 143.41649175778352 158.2829670865238 0 0 0 0 +3696 1 1.6484 1 158.95677149066415 129.37258963281533 0 0 0 0 +8118 1 1.1065 1 162.60315280091461 146.51365505647644 0 0 0 0 +3816 1 1.6244 1 130.24382443212568 149.58504554797602 0 0 0 0 +9058 1 1.0498 1 164.26035987368442 133.4448728871787 0 0 0 0 +3833 1 1.6202 1 153.32782357735854 127.07525700884834 0 0 0 0 +5443 1 1.3572 1 143.27928094062364 168.131054663757 0 0 0 0 +3852 1 1.6168 1 127.60631386935374 142.5951647931643 0 0 0 0 +9181 1 1.0429 1 164.8346867936668 144.3801940643209 0 0 0 0 +3921 1 1.6031 1 136.58435346061967 141.09214064325155 0 0 0 0 +3148 1 1.779 1 145.5567665584827 170.19512746335275 0 0 0 0 +4059 1 1.573 1 125.25905672878805 143.7349982979964 0 0 0 0 +4063 1 1.5726 1 122.1678862990927 133.95946645606676 0 0 0 0 +4070 1 1.5714 1 137.89306559719225 155.54973404015976 0 0 0 0 +4115 1 1.5637 1 146.5725337314682 150.10718317698291 0 0 0 0 +9588 1 1.0214 1 160.41559195217027 124.60220342097297 0 0 0 0 +4518 1 1.4943 1 169.3402765038416 130.7806198758259 0 0 0 0 +4164 1 1.5558 1 154.19829329066687 148.64675664854565 0 0 0 0 +4214 1 1.5472 1 135.85310934629433 129.81918222713705 0 0 0 0 +4227 1 1.5462 1 164.17169271041013 125.06008673664994 0 0 0 0 +4231 1 1.5458 1 134.76368906858232 137.62206744338704 0 0 0 0 +4247 1 1.5424 1 161.2981368789573 146.3876902416358 0 0 0 0 +4313 1 1.5306 1 162.05696010364204 141.61364426370628 0 0 0 0 +4315 1 1.5299 1 143.39766268431825 128.54589765827737 0 0 0 0 +4399 1 1.5151 1 155.82704474620076 145.85638165065765 0 0 0 0 +9372 1 1.0323 1 152.82236044333345 125.88497577626265 0 0 0 0 +4484 1 1.5004 1 144.39640914692183 150.44388002532423 0 0 0 0 +4563 1 1.4871 1 137.73195730677475 158.64795882369094 0 0 0 0 +4608 1 1.4792 1 142.40510938810093 130.4363326008126 0 0 0 0 +4659 1 1.4715 1 135.15651893999814 156.52333226521594 0 0 0 0 +4662 1 1.4703 1 129.7414779440267 150.9654949568921 0 0 0 0 +4681 1 1.4673 1 122.26755090894783 119.1897673856089 0 0 0 0 +4704 1 1.4644 1 127.43410053939452 128.56777666247976 0 0 0 0 +10 1 35.1961 1 163.00869948742746 164.65409148450055 0 0 0 0 +4747 1 1.4571 1 134.7456086352958 131.50568399966744 0 0 0 0 +4378 1 1.5187 1 144.7874583182193 165.71357566475191 0 0 0 0 +4756 1 1.4555 1 120.85682920717873 127.58297694025818 0 0 0 0 +7541 1 1.1491 1 168.88129954423377 117.3540168907887 0 0 0 0 +4789 1 1.4506 1 141.83862000919953 155.78603839065235 0 0 0 0 +4867 1 1.4381 1 131.67170069367938 149.22146549180965 0 0 0 0 +7072 1 1.1881 1 118.21036991815754 138.01245497953178 0 0 0 0 +4922 1 1.4293 1 159.83919856414315 146.48883838789504 0 0 0 0 +5001 1 1.4202 1 126.86245409398546 118.87216345838641 0 0 0 0 +5020 1 1.4178 1 121.46548435346746 135.1936776563219 0 0 0 0 +5052 1 1.4132 1 131.82217652749816 139.83621823556635 0 0 0 0 +8882 1 1.0583 1 167.70176386609492 125.38611521218925 0 0 0 0 +120 1 9.0861 1 157.2674710756407 120.54046221035105 0 0 0 0 +5126 1 1.3988 1 135.7767430800978 142.30764458629807 0 0 0 0 +5166 1 1.3929 1 144.33271598920345 131.80087062393375 0 0 0 0 +5177 1 1.3916 1 159.12445818027197 143.72927517106905 0 0 0 0 +5230 1 1.3851 1 138.0115649548536 141.21233113539498 0 0 0 0 +5243 1 1.3829 1 144.8069801910056 123.6195009992457 0 0 0 0 +5249 1 1.382 1 122.58040630858306 128.63979852637073 0 0 0 0 +7657 1 1.1396 1 168.21365799228897 132.81925380309409 0 0 0 0 +5328 1 1.3721 1 147.34614098562173 128.84912559190738 0 0 0 0 +5332 1 1.3717 1 147.35660131139954 155.15562125681262 0 0 0 0 +9262 1 1.0388 1 123.35769992869757 132.07218152961443 0 0 0 0 +5383 1 1.3664 1 141.74249184257835 151.61842143488798 0 0 0 0 +5393 1 1.3645 1 169.02650172247485 140.7682353949755 0 0 0 0 +5422 1 1.3607 1 126.65780411794331 136.36090507728363 0 0 0 0 +8257 1 1.0974 1 170.4550172800423 139.06169605089215 0 0 0 0 +5486 1 1.3523 1 141.31124992708067 150.31934836363027 0 0 0 0 +5502 1 1.3503 1 163.45417702442595 121.22903507199075 0 0 0 0 +5517 1 1.349 1 136.64367882259333 156.27952645048387 0 0 0 0 +5583 1 1.3393 1 147.9002237873999 148.47752280993848 0 0 0 0 +9627 1 1.0194 1 165.71221465912987 143.9540987802452 0 0 0 0 +9047 1 1.0501 1 139.89650956726183 139.01699069689673 0 0 0 0 +5656 1 1.3319 1 169.49322931377765 139.61288302882193 0 0 0 0 +5657 1 1.3318 1 118.78084401101664 141.794789258741 0 0 0 0 +9451 1 1.0283 1 152.35146367158816 121.68498452315966 0 0 0 0 +6964 1 1.1972 1 142.6478869479696 159.43749591499866 0 0 0 0 +5693 1 1.3266 1 129.9457720653059 132.50575000658714 0 0 0 0 +9719 1 1.0142 1 150.66102082719468 151.17126616811677 0 0 0 0 +5730 1 1.3229 1 168.8220834305238 125.69530846858635 0 0 0 0 +9158 1 1.0441 1 162.21646178017184 119.61511390435417 0 0 0 0 +5761 1 1.3191 1 145.55703809779004 159.49147869469962 0 0 0 0 +5770 1 1.3174 1 160.6678934430262 141.88353665396977 0 0 0 0 +5795 1 1.3149 1 136.15426773023052 126.36507042822053 0 0 0 0 +5819 1 1.3126 1 131.79434557984447 145.68321398410345 0 0 0 0 +5875 1 1.3081 1 121.87200967210585 144.19790312437365 0 0 0 0 +9260 1 1.0388 1 150.25032484681287 127.64044939300415 0 0 0 0 +5893 1 1.3056 1 145.01223617700526 161.51206747113358 0 0 0 0 +5917 1 1.3032 1 139.17138375953525 152.18335414747395 0 0 0 0 +5975 1 1.2969 1 128.91860494594235 134.99215307021393 0 0 0 0 +952 1 3.2432 1 149.96068629415086 121.39195829773827 0 0 0 0 +6027 1 1.2919 1 138.17986787101648 142.50571831927408 0 0 0 0 +6066 1 1.2867 1 142.8017696181598 127.28368497332659 0 0 0 0 +6105 1 1.283 1 141.1329383644035 129.7411856001343 0 0 0 0 +6130 1 1.2805 1 126.1693063879063 129.0644549645852 0 0 0 0 +6132 1 1.2804 1 144.55271590361838 152.60304798270528 0 0 0 0 +2468 1 2.0221 1 119.02302064883658 134.69596942996108 0 0 0 0 +6209 1 1.2707 1 143.83180459262124 140.5843765679976 0 0 0 0 +6220 1 1.2685 1 127.1649003371063 132.5199554459231 0 0 0 0 +6258 1 1.2642 1 144.52366906415318 124.8593257355431 0 0 0 0 +6294 1 1.2612 1 163.71101739370368 140.4680982407667 0 0 0 0 +6332 1 1.2585 1 144.93374291283445 162.802157184534 0 0 0 0 +6413 1 1.2505 1 161.08693489710822 132.46675947574437 0 0 0 0 +6420 1 1.25 1 142.85996467892886 150.93654805340083 0 0 0 0 +6441 1 1.248 1 136.10481374493577 137.9331059630781 0 0 0 0 +6476 1 1.2457 1 131.60873341064604 132.8556784333462 0 0 0 0 +9928 1 1.004 1 131.19232367924883 119.39579784428346 0 0 0 0 +6499 1 1.2433 1 129.96262217954614 124.939139969412 0 0 0 0 +6519 1 1.2414 1 131.48772859700222 147.91947581266604 0 0 0 0 +6987 1 1.1954 1 137.59578711400565 159.94479181351767 0 0 0 0 +2943 1 1.85 1 142.5587790198236 166.46885439591497 0 0 0 0 +6590 1 1.2327 1 134.04573037961637 152.10508151359682 0 0 0 0 +6592 1 1.2324 1 141.8055720908887 138.8088745492113 0 0 0 0 +3851 1 1.617 1 119.20047629597498 120.91444715334657 0 0 0 0 +6634 1 1.2288 1 132.10391107769937 124.63917568438633 0 0 0 0 +3864 1 1.6152 1 144.1659100660191 169.2841116761564 0 0 0 0 +6643 1 1.2278 1 168.2568028758952 139.52723917160952 0 0 0 0 +5069 1 1.4095 1 169.1549483765272 138.33247718049876 0 0 0 0 +6702 1 1.2222 1 140.7190201514297 154.57956906764537 0 0 0 0 +6830 1 1.2093 1 124.40881239122125 146.2880363415023 0 0 0 0 +6878 1 1.2042 1 146.68325727614865 152.73247458927634 0 0 0 0 +6882 1 1.2039 1 161.97310359206355 138.0597284354424 0 0 0 0 +6893 1 1.2028 1 146.13008424848525 155.5428458217791 0 0 0 0 +6912 1 1.2011 1 148.71231776185817 147.5419213014028 0 0 0 0 +6920 1 1.2003 1 139.69173528950867 129.25779760640512 0 0 0 0 +1687 1 2.4301 1 139.3251218805949 159.72641112935756 0 0 0 0 +9784 1 1.0108 1 127.39839359757924 133.59819828317922 0 0 0 0 +6978 1 1.196 1 157.5026053199915 147.36810426171212 0 0 0 0 +6999 1 1.1943 1 128.7602266367345 150.0232566949321 0 0 0 0 +7003 1 1.1939 1 135.9095836652004 136.7338210955007 0 0 0 0 +9620 1 1.0197 1 168.75421331793459 141.83362497730843 0 0 0 0 +7052 1 1.1895 1 145.71542416626139 124.59496034274099 0 0 0 0 +9517 1 1.0249 1 134.16759946094842 155.76131606803256 0 0 0 0 +7101 1 1.1856 1 144.40852774749476 141.6614819285686 0 0 0 0 +4979 1 1.423 1 143.49361984174297 165.18023637080265 0 0 0 0 +7137 1 1.1831 1 128.57874277132981 136.16800187893512 0 0 0 0 +9861 1 1.0067 1 131.66996078166207 146.81884814362223 0 0 0 0 +7181 1 1.1797 1 125.55207463481847 142.378063366598 0 0 0 0 +7187 1 1.1793 1 133.47739911471248 154.89519315612245 0 0 0 0 +8939 1 1.0557 1 135.5409172638383 127.38451204471858 0 0 0 0 +2121 1 2.1702 1 167.9187602294497 137.09693508659825 0 0 0 0 +7212 1 1.1772 1 132.46011411598022 142.32407617896777 0 0 0 0 +8735 1 1.0679 1 120.57381342063897 120.86781246315319 0 0 0 0 +9163 1 1.0439 1 133.68323903886312 143.3470548580465 0 0 0 0 +9850 1 1.0076 1 161.02945071971558 140.82532375391608 0 0 0 0 +9071 1 1.0486 1 131.95889475751025 153.49679765214862 0 0 0 0 +7319 1 1.1687 1 133.05025143799372 140.30863760801827 0 0 0 0 +4435 1 1.5084 1 152.05208789461207 120.48193266217208 0 0 0 0 +7352 1 1.1656 1 129.04786733277774 120.64507959208812 0 0 0 0 +7387 1 1.1624 1 121.77815674664791 142.9456801177305 0 0 0 0 +7434 1 1.1583 1 142.1942656237612 129.13863318555622 0 0 0 0 +7442 1 1.1575 1 127.4733747725835 117.79094346529027 0 0 0 0 +7476 1 1.1547 1 137.0240036902937 142.34216021399808 0 0 0 0 +8883 1 1.0583 1 128.5002656009981 118.20469573521233 0 0 0 0 +7505 1 1.152 1 127.78075475510235 134.57827434560943 0 0 0 0 +6342 1 1.2577 1 117.53301507651734 135.3231029010374 0 0 0 0 +6438 1 1.2483 1 118.59449614842222 128.03716684020176 0 0 0 0 +7701 1 1.1362 1 140.46528785368355 151.21406036759385 0 0 0 0 +7702 1 1.1362 1 138.8939304925277 158.03292287616014 0 0 0 0 +3931 1 1.6017 1 167.94396413405929 130.20191441616362 0 0 0 0 +7721 1 1.1348 1 137.04842106196764 137.30197639114672 0 0 0 0 +7750 1 1.1324 1 161.09939122475228 143.0123767071605 0 0 0 0 +7755 1 1.1318 1 142.07034553658076 135.96228556315384 0 0 0 0 +7785 1 1.1298 1 143.16234978114466 135.89665853606292 0 0 0 0 +7798 1 1.129 1 159.88645055572027 142.7738857264983 0 0 0 0 +7806 1 1.1284 1 164.86658727565938 140.65631108978315 0 0 0 0 +6521 1 1.2409 1 166.5286632224784 129.4631393282002 0 0 0 0 +7825 1 1.1272 1 157.4295500732884 128.63742168001602 0 0 0 0 +7827 1 1.1271 1 144.84609796667587 153.73846879255078 0 0 0 0 +7830 1 1.1271 1 131.01146641426428 124.6595633700804 0 0 0 0 +7845 1 1.126 1 141.84758851094173 146.5584784450022 0 0 0 0 +7846 1 1.1257 1 120.53683110287514 134.39376683542932 0 0 0 0 +7340 1 1.1672 1 170.45292743805695 130.1407221830827 0 0 0 0 +7901 1 1.1214 1 129.0598971928731 137.18578449788794 0 0 0 0 +7983 1 1.1155 1 167.50507231527183 138.66708572846332 0 0 0 0 +7990 1 1.115 1 160.3355781366477 143.8125393887266 0 0 0 0 +7996 1 1.1147 1 137.88207355119124 152.63678231627614 0 0 0 0 +8022 1 1.1133 1 146.97394754193044 156.29008814116065 0 0 0 0 +8028 1 1.1128 1 132.43164671669078 141.2110540454496 0 0 0 0 +8066 1 1.11 1 135.1629106830869 135.86209023114043 0 0 0 0 +8068 1 1.11 1 162.35909345027656 120.68064948264787 0 0 0 0 +8075 1 1.1089 1 120.27720890078398 135.60649355908575 0 0 0 0 +666 1 3.8513 1 146.58079321817254 120.59073244800217 0 0 0 0 +9091 1 1.0475 1 149.06594751465502 148.5640429701354 0 0 0 0 +8163 1 1.1036 1 119.85133349828055 124.85485212807322 0 0 0 0 +8185 1 1.1022 1 149.80918652719922 147.84802938732014 0 0 0 0 +8242 1 1.0986 1 166.1448022215367 143.02986589132124 0 0 0 0 +8247 1 1.0979 1 143.44701823847478 134.24449339833524 0 0 0 0 +8321 1 1.0926 1 142.64353346104463 134.95106601866388 0 0 0 0 +8328 1 1.0924 1 124.53606993726324 141.88070248890574 0 0 0 0 +9155 1 1.0445 1 120.33933080869333 126.4385330533089 0 0 0 0 +9311 1 1.0356 1 151.09472644413316 124.65134590797196 0 0 0 0 +8434 1 1.0857 1 143.81051096955656 151.6445484089675 0 0 0 0 +3979 1 1.5902 1 144.6501440410076 164.19191872244352 0 0 0 0 +8461 1 1.0838 1 133.25444868581727 120.16592126741833 0 0 0 0 +8465 1 1.0834 1 158.7747520440481 147.13187580553048 0 0 0 0 +8492 1 1.0813 1 165.88552599450742 146.76040556356745 0 0 0 0 +2749 1 1.9117 1 158.69951101774907 125.84202114691242 0 0 0 0 +8521 1 1.0797 1 127.60012095903788 135.6453936169685 0 0 0 0 +8856 1 1.0597 1 150.63399113440354 147.2246830540809 0 0 0 0 +8570 1 1.0768 1 165.0361057454117 132.8063237231807 0 0 0 0 +8590 1 1.0758 1 146.75707641285612 148.8148492873172 0 0 0 0 +8599 1 1.0751 1 142.04809877394922 126.33653574395979 0 0 0 0 +2139 1 2.1601 1 164.83301390313284 129.45428253683212 0 0 0 0 +8643 1 1.0725 1 164.48776773137104 122.17278049284292 0 0 0 0 +9695 1 1.0157 1 142.57760818552177 131.66772335455371 0 0 0 0 +8646 1 1.0724 1 163.49069058052206 144.43490018514748 0 0 0 0 +8732 1 1.068 1 145.74813197320682 143.25929889868036 0 0 0 0 +4467 1 1.5027 1 144.342946989995 117.33035213426604 0 0 0 0 +9418 1 1.0296 1 144.51738770212455 170.85889827027063 0 0 0 0 +8560 1 1.0774 1 165.24633067894143 117.27633685813423 0 0 0 0 +4186 1 1.5517 1 161.97423554943344 212.24797615141924 0 0 0 0 +77 1 10.3137 1 157.09203074035128 191.1727248308527 0 0 0 0 +403 1 4.9267 1 167.7389808839609 199.8090078072292 0 0 0 0 +130 1 8.3824 1 167.52751066329375 192.9049910782196 0 0 0 0 +6293 1 1.2614 1 164.75080591548263 214.5115768640297 0 0 0 0 +172 1 7.3253 1 161.96239059051217 198.4232134142663 0 0 0 0 +272 1 5.9827 1 162.0400401915698 208.52527591918707 0 0 0 0 +4997 1 1.4207 1 153.78448144013655 223.62771975147385 0 0 0 0 +6114 1 1.2823 1 165.37684254037512 182.71924140862382 0 0 0 0 +9694 1 1.0159 1 163.59506813083337 203.95238684625696 0 0 0 0 +8552 1 1.0778 1 158.19793073012872 196.73070654587053 0 0 0 0 +873 1 3.4178 1 158.32781875637878 220.98712201239172 0 0 0 0 +6291 1 1.2616 1 170.42846381088748 221.15905617343512 0 0 0 0 +911 1 3.333 1 156.87676257629803 203.04101083853334 0 0 0 0 +985 1 3.2035 1 152.9938563217514 184.74662913307495 0 0 0 0 +9439 1 1.0288 1 167.85071860689774 216.66741203369781 0 0 0 0 +3471 1 1.6994 1 163.93740509203084 183.05638772249327 0 0 0 0 +1101 1 3.0162 1 158.8405111998646 205.4361054265752 0 0 0 0 +1165 1 2.9403 1 165.96914308478569 186.23141786498658 0 0 0 0 +1171 1 2.9319 1 153.81829799746072 181.8800008224416 0 0 0 0 +9595 1 1.0211 1 161.77655941076037 194.27642232307994 0 0 0 0 +1179 1 2.9286 1 151.14910178711767 180.31749576238363 0 0 0 0 +1231 1 2.8756 1 157.02265987560983 198.85182936730286 0 0 0 0 +1252 1 2.8476 1 155.55568993154176 207.67843288530716 0 0 0 0 +2934 1 1.8518 1 169.18911473181555 219.14244692554067 0 0 0 0 +9883 1 1.0057 1 156.5712146775286 212.3828764913612 0 0 0 0 +1669 1 2.4431 1 157.62155983604129 213.68601878947845 0 0 0 0 +9706 1 1.0149 1 163.75210735894262 219.37890554552027 0 0 0 0 +1693 1 2.4287 1 149.11431030196653 178.54944730865228 0 0 0 0 +1751 1 2.3839 1 152.12008759076355 187.30627906477665 0 0 0 0 +8628 1 1.0731 1 164.79580516331544 206.32444825711025 0 0 0 0 +8600 1 1.075 1 154.24918553247497 219.54087074444504 0 0 0 0 +1863 1 2.3232 1 156.46240197999694 184.93874351681373 0 0 0 0 +1945 1 2.2712 1 157.60290562513055 209.11521271802417 0 0 0 0 +1973 1 2.2573 1 154.19478364746269 196.73488447638155 0 0 0 0 +1990 1 2.2482 1 156.22807602955757 182.7225214891803 0 0 0 0 +2014 1 2.2306 1 168.09707873123713 187.66550373135007 0 0 0 0 +8134 1 1.1054 1 165.41692757133305 213.6234568384585 0 0 0 0 +9426 1 1.0294 1 160.10114690475015 222.16187424038137 0 0 0 0 +2193 1 2.1419 1 163.85040459756516 184.94831438364034 0 0 0 0 +2255 1 2.1159 1 164.95655378095125 204.7389838501454 0 0 0 0 +2291 1 2.098 1 155.10490169503518 205.280855927418 0 0 0 0 +2303 1 2.0907 1 164.91313581645358 188.44685545055998 0 0 0 0 +8641 1 1.0727 1 159.4573594137807 217.81040677877928 0 0 0 0 +2353 1 2.0672 1 160.1347654213733 183.99948353373264 0 0 0 0 +2371 1 2.059 1 158.16266431766758 183.66844642426764 0 0 0 0 +2473 1 2.0194 1 155.13659010625796 212.60732338567064 0 0 0 0 +2518 1 2.0046 1 150.75791358093932 183.65401520184997 0 0 0 0 +2625 1 1.9576 1 155.64849945672646 200.7367024334455 0 0 0 0 +8695 1 1.0702 1 158.9236943407829 210.04312437360238 0 0 0 0 +8724 1 1.0684 1 145.685559466086 172.68204311885813 0 0 0 0 +2715 1 1.925 1 162.2635497914373 187.9688361926902 0 0 0 0 +2865 1 1.8731 1 161.76010346241026 204.61633721685186 0 0 0 0 +2888 1 1.8657 1 161.96781626329698 184.45718319776697 0 0 0 0 +9160 1 1.0441 1 163.65669346623193 214.18665889083377 0 0 0 0 +3007 1 1.8269 1 160.27476710354918 203.5765321880447 0 0 0 0 +3084 1 1.803 1 159.8693829628745 185.8455656263267 0 0 0 0 +4470 1 1.5024 1 164.98061886582192 217.91202997060026 0 0 0 0 +761 1 3.6539 1 167.71204516357213 183.46748274417612 0 0 0 0 +3273 1 1.7468 1 162.39409093323806 186.1705397650291 0 0 0 0 +8998 1 1.0527 1 170.2517412159655 220.07146327235338 0 0 0 0 +3487 1 1.6961 1 156.00802900599265 210.1638230089573 0 0 0 0 +3667 1 1.6567 1 154.60038031683675 202.15193885962492 0 0 0 0 +3684 1 1.6523 1 162.95652371688124 202.7909013999981 0 0 0 0 +9585 1 1.0215 1 154.64597273062554 214.70776408222602 0 0 0 0 +2192 1 2.143 1 162.26248795038106 219.80942289529378 0 0 0 0 +3924 1 1.6029 1 163.83597613612218 186.96956136985992 0 0 0 0 +4196 1 1.55 1 161.05129847120827 218.4247144795004 0 0 0 0 +9957 1 1.0029 1 165.39158071060317 201.58882280968047 0 0 0 0 +4010 1 1.5813 1 157.75275326426242 223.38143988380173 0 0 0 0 +4027 1 1.5784 1 158.52479397344996 201.23416229186302 0 0 0 0 +9305 1 1.0361 1 159.00946926701303 182.32411490280674 0 0 0 0 +8044 1 1.1116 1 160.59670027933967 221.20655404298546 0 0 0 0 +4238 1 1.5437 1 166.75356519060122 218.1318231658697 0 0 0 0 +4135 1 1.5608 1 162.65601456253424 192.8811885865849 0 0 0 0 +4151 1 1.558 1 159.26639810174922 211.2685220256842 0 0 0 0 +1823 1 2.3436 1 169.44980895407065 185.8606875848734 0 0 0 0 +5289 1 1.3771 1 169.20899979068335 220.68865940700408 0 0 0 0 +4414 1 1.5128 1 154.10188650431814 198.61368039363686 0 0 0 0 +4425 1 1.5102 1 158.2984089692758 185.41626434154438 0 0 0 0 +4432 1 1.5087 1 160.49808990556002 212.08175406515429 0 0 0 0 +4598 1 1.4806 1 156.00385642903436 196.94495690651144 0 0 0 0 +4677 1 1.468 1 164.44873135014777 203.06455126171008 0 0 0 0 +4716 1 1.4616 1 158.5144245055101 207.5860547220163 0 0 0 0 +1192 1 2.9157 1 167.53298845936806 221.96906632349214 0 0 0 0 +9484 1 1.0267 1 166.90069479216177 223.7896052945175 0 0 0 0 +2196 1 2.1399 1 155.48429552486408 223.5922298734037 0 0 0 0 +4972 1 1.4236 1 154.9100700990786 185.83019536998458 0 0 0 0 +4978 1 1.4231 1 161.03599393742826 186.8841355539694 0 0 0 0 +9065 1 1.049 1 153.84731986582364 222.4224991180645 0 0 0 0 +8743 1 1.0674 1 148.91886668761506 175.827713777818 0 0 0 0 +4993 1 1.4211 1 157.01861912999095 211.31545200358633 0 0 0 0 +5006 1 1.4198 1 162.89830022345885 191.4368480313669 0 0 0 0 +4003 1 1.583 1 160.47463092212914 219.86479620114883 0 0 0 0 +5016 1 1.4183 1 162.39484496839162 182.91214141155874 0 0 0 0 +5032 1 1.4157 1 154.6243411568755 203.64482612157917 0 0 0 0 +5054 1 1.4125 1 153.1524448729094 179.9085796382013 0 0 0 0 +5098 1 1.4047 1 163.4802604947459 190.1990336882035 0 0 0 0 +8898 1 1.0574 1 154.18343316921684 200.89213258032296 0 0 0 0 +8686 1 1.0707 1 155.66406176407077 181.19017353092758 0 0 0 0 +5140 1 1.3978 1 156.70493660957106 205.8768849902573 0 0 0 0 +5213 1 1.3873 1 163.28455261026923 205.0979282430877 0 0 0 0 +5280 1 1.3783 1 150.91455209941293 178.2329415317011 0 0 0 0 +367 1 5.1721 1 156.39219145167127 217.27200705563175 0 0 0 0 +5361 1 1.3684 1 155.7820733496631 214.11444943053823 0 0 0 0 +5387 1 1.3656 1 165.29905517093988 184.0292281984532 0 0 0 0 +9709 1 1.0147 1 155.8716792873833 221.6881331081722 0 0 0 0 +1394 1 2.6881 1 164.02888719009636 212.366770963147 0 0 0 0 +5441 1 1.3579 1 159.70911168489607 202.09594900332368 0 0 0 0 +6902 1 1.2019 1 169.25856275321956 181.67722658266632 0 0 0 0 +5454 1 1.3555 1 161.50146584877493 202.68401962029165 0 0 0 0 +5504 1 1.3502 1 157.8506508958527 182.0731469740369 0 0 0 0 +9537 1 1.0238 1 151.90771248676523 188.96895634945838 0 0 0 0 +5558 1 1.3436 1 162.91911098106684 194.26187122469958 0 0 0 0 +5207 1 1.3881 1 156.0324797263435 220.49866078623978 0 0 0 0 +4327 1 1.5274 1 163.99015674221954 215.59602217669286 0 0 0 0 +5755 1 1.3199 1 154.8322175668106 210.9974571773026 0 0 0 0 +410 1 4.8896 1 160.89275923521606 215.22856577609497 0 0 0 0 +5913 1 1.3035 1 159.17923405008855 212.67191190203295 0 0 0 0 +6449 1 1.2476 1 159.4101344584491 218.94449199606666 0 0 0 0 +6522 1 1.2409 1 150.31370484086338 182.17865319344128 0 0 0 0 +9273 1 1.038 1 166.54941214626047 188.29413017614408 0 0 0 0 +6771 1 1.2158 1 155.25468814308817 198.02261706426196 0 0 0 0 +5014 1 1.4185 1 169.55181516075334 197.29451071268178 0 0 0 0 +6855 1 1.207 1 163.3976097827027 188.94960963018818 0 0 0 0 +6860 1 1.2068 1 151.7456136662397 182.3768590288764 0 0 0 0 +6866 1 1.2052 1 156.64602060600754 222.47889926180633 0 0 0 0 +6873 1 1.2045 1 166.02144310398 197.36912236938286 0 0 0 0 +9455 1 1.0279 1 159.0040559437866 203.02241327410727 0 0 0 0 +9637 1 1.0187 1 167.8334552449458 185.78516493808283 0 0 0 0 +2481 1 2.0168 1 154.49294520056938 221.06515910536058 0 0 0 0 +7025 1 1.1919 1 157.3985034353477 206.94068052743216 0 0 0 0 +8761 1 1.0659 1 150.99696017693972 185.50175440344094 0 0 0 0 +7104 1 1.1854 1 155.02514917258227 183.9378851042818 0 0 0 0 +7114 1 1.1845 1 149.48327068974652 181.36835108190306 0 0 0 0 +4392 1 1.5164 1 167.5868420404318 219.40441443855124 0 0 0 0 +7284 1 1.1725 1 149.12727825990376 180.2885618121996 0 0 0 0 +7418 1 1.1599 1 157.2175888266359 200.83976364573667 0 0 0 0 +7422 1 1.1594 1 149.4964965808935 176.80172834360835 0 0 0 0 +1278 1 2.8152 1 166.06002684388338 216.07724837614572 0 0 0 0 +7564 1 1.1467 1 153.33857332425623 195.35474618587313 0 0 0 0 +7614 1 1.1432 1 154.77861110123246 209.50240584946022 0 0 0 0 +7764 1 1.1313 1 158.0826004526258 210.71055061638094 0 0 0 0 +7811 1 1.128 1 158.11714298007678 211.96457875212843 0 0 0 0 +7951 1 1.1177 1 154.40445367294348 199.85657337787845 0 0 0 0 +2341 1 2.0718 1 166.17068822183745 202.90673228370724 0 0 0 0 +7966 1 1.1167 1 160.06549258443536 182.4897277546676 0 0 0 0 +7972 1 1.1164 1 164.2974858526446 216.82828230076316 0 0 0 0 +2075 1 2.1965 1 163.13971416506988 217.91008243037558 0 0 0 0 +8160 1 1.1038 1 161.1402855164999 182.77341662626824 0 0 0 0 +8239 1 1.0989 1 164.3865714347983 201.82043288712651 0 0 0 0 +9093 1 1.0474 1 157.20239122989972 196.84278922844533 0 0 0 0 +3174 1 1.7725 1 146.66824475927118 173.88533201013522 0 0 0 0 +2697 1 1.9307 1 147.9567116720926 176.77775796133272 0 0 0 0 +1279 1 2.8145 1 165.5473838919517 219.94139777773 0 0 0 0 +9373 1 1.0323 1 170.2753540313755 198.26843530830217 0 0 0 0 +4336 1 1.5255 1 159.38295402491156 223.20222564241814 0 0 0 0 +4398 1 1.5151 1 168.68723533010393 217.5770233852662 0 0 0 0 +3941 1 1.5996 1 147.8482220697936 175.04460277215998 0 0 0 0 +6640 1 1.228 1 169.9215112435374 187.71415758723268 0 0 0 0 +9119 1 1.0463 1 146.7130183604223 172.5113350736911 0 0 0 0 +8667 1 1.0714 1 169.51543350279152 221.82687613426586 0 0 0 0 +7557 1 1.1474 1 145.15749495335425 171.7111739804277 0 0 0 0 +6378 1 1.2541 1 169.47129988418743 222.92224382547377 0 0 0 0 +9264 1 1.0386 1 170.71652284250604 197.26496443560808 0 0 0 0 +6808 1 1.2117 1 146.23651904503464 171.51617633115964 0 0 0 0 +7908 1 1.1204 1 169.9458256919014 217.951980189934 0 0 0 0 +225 1 6.4105 1 163.2858916977167 223.88655245158841 0 0 0 0 +3030 1 1.8182 1 168.55462619018274 258.02499884499696 0 0 0 0 +57 1 12.5828 1 156.0987423430789 274.3241288573606 0 0 0 0 +64 1 11.5229 1 160.80938344349497 256.3871319510297 0 0 0 0 +65 1 11.4479 1 156.33573393840794 233.90659607709054 0 0 0 0 +74 1 10.7114 1 162.76259865962712 242.80614530646264 0 0 0 0 +79 1 10.2797 1 144.77600169529003 263.84256769939066 0 0 0 0 +162 1 7.4747 1 170.4935569338733 247.33754810673244 0 0 0 0 +1081 1 3.0415 1 170.65800493120267 270.57149126636716 0 0 0 0 +235 1 6.3107 1 145.4919070286927 273.74198216422195 0 0 0 0 +2540 1 1.9931 1 161.73927788644593 267.78003270929787 0 0 0 0 +253 1 6.1766 1 152.10457251763307 256.0859997443837 0 0 0 0 +302 1 5.7323 1 151.96667315708837 244.8980385814781 0 0 0 0 +311 1 5.6454 1 152.45246247561795 261.9029999337361 0 0 0 0 +359 1 5.2778 1 149.3730009586862 251.20786337727407 0 0 0 0 +3577 1 1.675 1 166.50373194634287 267.98559033866644 0 0 0 0 +4466 1 1.5029 1 170.7866394941757 257.847596150526 0 0 0 0 +2842 1 1.8822 1 160.76048068492656 263.04165350060356 0 0 0 0 +451 1 4.647 1 149.0061468404607 269.73209031539443 0 0 0 0 +460 1 4.6245 1 130.06580193657643 273.54733555856427 0 0 0 0 +474 1 4.5363 1 143.59123206769496 256.6798481575602 0 0 0 0 +479 1 4.5096 1 155.3311066275154 250.76505687858358 0 0 0 0 +3070 1 1.8073 1 163.8967734739916 272.36460054381575 0 0 0 0 +8565 1 1.0771 1 122.69505892474993 275.4456623085426 0 0 0 0 +719 1 3.7519 1 136.028726560163 271.7124865626245 0 0 0 0 +730 1 3.7259 1 165.3874435787085 230.71402384139196 0 0 0 0 +752 1 3.681 1 126.13262954994273 274.39291516506023 0 0 0 0 +755 1 3.676 1 136.88776779853816 263.4694253886223 0 0 0 0 +758 1 3.6645 1 150.57796600933443 240.09451790519864 0 0 0 0 +850 1 3.4593 1 132.7239845797349 269.99708802417797 0 0 0 0 +870 1 3.4248 1 160.42900905266103 227.79628808708586 0 0 0 0 +903 1 3.3523 1 135.91646743506038 266.73173353937636 0 0 0 0 +5627 1 1.334 1 164.04431841683456 275.68427208225546 0 0 0 0 +993 1 3.1874 1 145.9833242163944 253.7248656617238 0 0 0 0 +1001 1 3.1759 1 139.69414854984942 268.1519564758645 0 0 0 0 +1010 1 3.1607 1 166.07095101214966 251.34728358063032 0 0 0 0 +9499 1 1.026 1 168.70397198389887 270.6719532919132 0 0 0 0 +1065 1 3.0645 1 154.897930673166 241.98711498962385 0 0 0 0 +5904 1 1.3046 1 166.61820510309948 225.7531579749304 0 0 0 0 +1092 1 3.0288 1 138.74232184312288 260.70602332427876 0 0 0 0 +1181 1 2.9269 1 139.2376360462244 271.13798778164926 0 0 0 0 +3134 1 1.7832 1 170.2595501160922 227.1546206570564 0 0 0 0 +1214 1 2.8941 1 147.90669722260554 244.89413993233885 0 0 0 0 +2398 1 2.0491 1 164.63224141247613 274.1113704755936 0 0 0 0 +1763 1 2.3754 1 162.68392347180256 269.7087443362547 0 0 0 0 +1392 1 2.6902 1 152.47736274847782 248.9247247975046 0 0 0 0 +9980 1 1.0012 1 148.22907671651004 246.79444189482862 0 0 0 0 +1453 1 2.6195 1 141.2443428806543 272.87274592439024 0 0 0 0 +7699 1 1.1365 1 160.98554250980348 269.56854389855243 0 0 0 0 +9532 1 1.0241 1 162.9277314492339 236.9720419799104 0 0 0 0 +1483 1 2.5929 1 163.18120139351043 232.85049435195134 0 0 0 0 +2407 1 2.0449 1 162.70071091020733 262.8518268478854 0 0 0 0 +2437 1 2.032 1 167.89753808742913 271.9027583694369 0 0 0 0 +1684 1 2.4324 1 127.38350720564165 277.8446938334514 0 0 0 0 +1699 1 2.4254 1 163.5009424225906 228.29068257136316 0 0 0 0 +1783 1 2.3663 1 165.6118209858929 236.7944680894286 0 0 0 0 +7326 1 1.1684 1 165.7635504580746 262.7993704829973 0 0 0 0 +1921 1 2.2881 1 133.1292423733729 266.7839391629192 0 0 0 0 +1960 1 2.2643 1 167.31948429904702 263.4362066252156 0 0 0 0 +1951 1 2.2693 1 135.2825119298407 274.72455755945697 0 0 0 0 +1997 1 2.2433 1 165.265758324128 248.76862564905645 0 0 0 0 +661 1 3.8606 1 167.1777182593714 260.4665526622546 0 0 0 0 +2180 1 2.1456 1 147.97313053226173 255.63335992185438 0 0 0 0 +8161 1 1.1038 1 166.63666999728358 271.03539530641575 0 0 0 0 +2278 1 2.1036 1 155.86554389299468 244.7735178881807 0 0 0 0 +2287 1 2.1 1 158.78973529334652 224.8867663684507 0 0 0 0 +2289 1 2.0982 1 162.838513997289 249.11032357838573 0 0 0 0 +2305 1 2.0885 1 143.75792165061438 252.32743798463824 0 0 0 0 +7625 1 1.1427 1 166.39012190256 264.84761313678035 0 0 0 0 +2401 1 2.0473 1 156.8827729294118 240.53105314729498 0 0 0 0 +7999 1 1.1144 1 167.50599186669905 226.52549780393548 0 0 0 0 +2412 1 2.0442 1 147.49569746379748 248.16730098521012 0 0 0 0 +2453 1 2.0268 1 133.1382490969077 274.81910802101254 0 0 0 0 +4491 1 1.499 1 162.50826462100835 271.58049042082473 0 0 0 0 +3349 1 1.7282 1 170.4880077292348 275.0624771030951 0 0 0 0 +2544 1 1.9909 1 150.39564575156965 266.75730358921027 0 0 0 0 +542 1 4.2335 1 159.43007853156843 265.7366975429177 0 0 0 0 +2586 1 1.976 1 152.47803956160703 266.6638396214928 0 0 0 0 +2617 1 1.9613 1 148.37908097578793 257.6385937792974 0 0 0 0 +2702 1 1.9289 1 129.4203703755975 277.15045562084174 0 0 0 0 +2737 1 1.9152 1 129.24254750304078 270.42210206707426 0 0 0 0 +9982 1 1.0011 1 163.40587951675369 234.6141901989821 0 0 0 0 +2786 1 1.9 1 140.51172736923328 257.5650324952199 0 0 0 0 +2796 1 1.8943 1 155.96849834513816 263.1489395892396 0 0 0 0 +2795 1 1.8945 1 164.63486602995252 261.8346027421243 0 0 0 0 +2848 1 1.8801 1 149.35426768644976 247.64221932860454 0 0 0 0 +2893 1 1.864 1 151.9393135679955 268.455864690153 0 0 0 0 +2910 1 1.861 1 156.73735336309048 227.27516453197853 0 0 0 0 +5130 1 1.3986 1 167.6967083756453 229.93112169992375 0 0 0 0 +1460 1 2.6088 1 164.4168917241656 267.976705726987 0 0 0 0 +2976 1 1.8403 1 156.42283961973587 266.6227404825853 0 0 0 0 +2994 1 1.8351 1 161.03238236693434 249.7750113552847 0 0 0 0 +3043 1 1.8139 1 140.74028862767983 259.3757048121078 0 0 0 0 +3797 1 1.63 1 167.55130397724164 270.11997437829257 0 0 0 0 +9433 1 1.0291 1 166.775943175768 249.38223610259794 0 0 0 0 +1922 1 2.2877 1 167.26223175685064 273.9372201231534 0 0 0 0 +3132 1 1.7837 1 154.37827976043707 247.7707653305924 0 0 0 0 +3576 1 1.675 1 166.0051863454952 269.5751681231224 0 0 0 0 +3139 1 1.7816 1 154.7411037884877 259.02511084183647 0 0 0 0 +3216 1 1.761 1 156.9268928488313 248.09897669232564 0 0 0 0 +3242 1 1.7546 1 142.00944150665353 269.1477551941695 0 0 0 0 +7873 1 1.1231 1 167.27850159507344 256.5130055096547 0 0 0 0 +3290 1 1.743 1 146.00496687078845 250.2880574550516 0 0 0 0 +3311 1 1.7375 1 145.69959921893874 248.52147929771132 0 0 0 0 +6263 1 1.2636 1 165.77919976705135 272.98015007099855 0 0 0 0 +9227 1 1.0407 1 166.43597001432005 272.08692595492346 0 0 0 0 +3449 1 1.7045 1 162.6096806746086 235.67008806748686 0 0 0 0 +9312 1 1.0356 1 143.39269479698524 269.32792743836904 0 0 0 0 +9842 1 1.0082 1 139.12898675990354 264.690060499356 0 0 0 0 +3967 1 1.5931 1 166.6900331671318 253.64965996055813 0 0 0 0 +3615 1 1.6685 1 168.77664669215906 241.45934803865265 0 0 0 0 +3636 1 1.665 1 122.78149848840572 276.7356321979958 0 0 0 0 +1982 1 2.2523 1 162.9244043517428 264.94693302402305 0 0 0 0 +3676 1 1.6543 1 162.82804608806336 230.34147949794658 0 0 0 0 +3707 1 1.645 1 168.88785909454677 243.1089786112322 0 0 0 0 +3770 1 1.6358 1 144.71788695981223 269.78365296076305 0 0 0 0 +3799 1 1.6293 1 127.84941428423451 271.4716186953178 0 0 0 0 +3842 1 1.6189 1 137.66950878889475 269.5980963980257 0 0 0 0 +3844 1 1.6187 1 154.9316794545755 265.8182334935231 0 0 0 0 +3901 1 1.6071 1 149.25528827520068 272.8133940765475 0 0 0 0 +3906 1 1.6063 1 137.0975724856665 274.1480394714212 0 0 0 0 +7817 1 1.1278 1 168.92442377149567 263.75295018124706 0 0 0 0 +5543 1 1.3452 1 162.97447054404327 266.71658119781694 0 0 0 0 +3992 1 1.5883 1 149.83370166130362 259.17606624338885 0 0 0 0 +847 1 3.4624 1 169.10624247991288 231.76225657493998 0 0 0 0 +4009 1 1.5814 1 151.37082336303834 265.30359970025523 0 0 0 0 +2828 1 1.8855 1 165.671287281796 266.1667259232718 0 0 0 0 +4080 1 1.5698 1 136.19572806932933 269.111285051835 0 0 0 0 +4092 1 1.5681 1 157.97989999408836 249.3841905702829 0 0 0 0 +4163 1 1.5559 1 134.11440976093203 265.13918835395697 0 0 0 0 +4692 1 1.4658 1 163.04764863946113 274.7668196628184 0 0 0 0 +4229 1 1.546 1 124.2394582468347 276.12133938309915 0 0 0 0 +4253 1 1.542 1 159.37665586512563 250.02425512144183 0 0 0 0 +4255 1 1.5417 1 128.14623608522393 276.0122055331364 0 0 0 0 +4301 1 1.5324 1 134.0671972110928 273.34062502027393 0 0 0 0 +8934 1 1.0559 1 155.70704077134477 261.2811535125389 0 0 0 0 +4396 1 1.5155 1 160.2780554922402 248.34453448230653 0 0 0 0 +4311 1 1.5309 1 167.92128419699264 268.6633109675531 0 0 0 0 +4507 1 1.4958 1 139.8145266717678 274.28142638349425 0 0 0 0 +4552 1 1.4889 1 164.15873875988177 235.60229931038663 0 0 0 0 +9846 1 1.0078 1 145.73594442341494 258.3218411537166 0 0 0 0 +9752 1 1.0128 1 161.95111618244928 266.2291923215276 0 0 0 0 +4853 1 1.4409 1 144.31590315923097 250.68592751615788 0 0 0 0 +2872 1 1.8702 1 165.26417172804042 271.30576979034777 0 0 0 0 +6454 1 1.2472 1 162.73308160392557 276.04573890166046 0 0 0 0 +8716 1 1.069 1 165.76600369986892 263.89776553830336 0 0 0 0 +5005 1 1.4199 1 154.97453821438896 253.66788884708674 0 0 0 0 +5017 1 1.418 1 156.56078275191237 246.54415324745747 0 0 0 0 +6205 1 1.2712 1 167.02165459770524 255.03437726720512 0 0 0 0 +5051 1 1.4132 1 123.71214627685873 274.81778099797776 0 0 0 0 +5057 1 1.4121 1 158.1931176473406 226.53055513238098 0 0 0 0 +5079 1 1.4078 1 164.17673746837883 250.1850104000077 0 0 0 0 +5105 1 1.4036 1 146.2260696540503 277.4861557803957 0 0 0 0 +5215 1 1.3872 1 139.2815506542009 258.6037176087906 0 0 0 0 +5232 1 1.3847 1 146.87219050181005 258.29218019095356 0 0 0 0 +5241 1 1.3831 1 154.9177756434448 264.3628464181816 0 0 0 0 +5263 1 1.3806 1 155.1830763170448 246.37024290764424 0 0 0 0 +1523 1 2.5514 1 158.096192270059 262.7530582126904 0 0 0 0 +9087 1 1.0477 1 164.03217285506955 266.2029179199081 0 0 0 0 +5304 1 1.3748 1 164.5150344392587 234.2463203963554 0 0 0 0 +5309 1 1.3746 1 130.88366463147952 276.42696481079037 0 0 0 0 +8989 1 1.0532 1 142.02947626560487 274.9110278418668 0 0 0 0 +5377 1 1.3669 1 155.19216900687556 227.6510261664071 0 0 0 0 +5391 1 1.3646 1 157.93093254215634 246.4000941664785 0 0 0 0 +5394 1 1.3644 1 165.0805851433962 227.27078181449951 0 0 0 0 +5255 1 1.3814 1 169.01488143688204 251.43451616836978 0 0 0 0 +5429 1 1.359 1 130.23306709506173 269.1451705736255 0 0 0 0 +5436 1 1.3584 1 153.03408339041982 239.5556251807705 0 0 0 0 +5459 1 1.3551 1 143.44100214570756 270.5217588035753 0 0 0 0 +5050 1 1.4135 1 164.51727698056763 269.9273941219909 0 0 0 0 +5534 1 1.3466 1 145.24256921518509 251.62419924507796 0 0 0 0 +5595 1 1.338 1 166.41553748749985 227.08289572981315 0 0 0 0 +9049 1 1.05 1 152.5660737093648 228.97050692563835 0 0 0 0 +8916 1 1.0569 1 168.03600613322504 250.76515601801736 0 0 0 0 +8876 1 1.0587 1 149.49120993251117 242.26506688452614 0 0 0 0 +1082 1 3.0413 1 168.55497159283414 224.78949733178692 0 0 0 0 +3294 1 1.7417 1 164.4094471457657 263.6294396961058 0 0 0 0 +9649 1 1.0179 1 164.50022574223075 265.3134197231762 0 0 0 0 +5914 1 1.3034 1 139.18226238487242 262.7791197868318 0 0 0 0 +5915 1 1.3033 1 130.8845516710958 277.7488961336996 0 0 0 0 +5949 1 1.2999 1 167.59720646098828 227.6644570004354 0 0 0 0 +9005 1 1.0525 1 126.73622102187485 272.14987655664765 0 0 0 0 +6014 1 1.2928 1 153.4206718415848 267.9711228281948 0 0 0 0 +6047 1 1.2891 1 161.834656181835 236.92943714351907 0 0 0 0 +6201 1 1.2715 1 156.8032444897418 243.38371985054906 0 0 0 0 +6202 1 1.2714 1 138.47513208324875 274.38601249992485 0 0 0 0 +6214 1 1.27 1 156.83024144604 261.3673809080015 0 0 0 0 +9853 1 1.0072 1 165.32105318117468 264.78421337078703 0 0 0 0 +6274 1 1.2627 1 134.174745407141 268.18734521268925 0 0 0 0 +7050 1 1.1896 1 165.052601462336 233.11907166085885 0 0 0 0 +6345 1 1.2575 1 141.95112643791737 254.42078342617188 0 0 0 0 +3111 1 1.7942 1 168.04401753976495 276.4734481840851 0 0 0 0 +6404 1 1.2512 1 165.81051990743777 228.28853621216606 0 0 0 0 +6421 1 1.25 1 154.06281996938483 266.9134068868147 0 0 0 0 +9608 1 1.0203 1 146.4398110619522 246.12372282851342 0 0 0 0 +6443 1 1.2479 1 152.70918689429428 241.376808371549 0 0 0 0 +6167 1 1.2756 1 162.9193506228865 273.45406101325557 0 0 0 0 +6481 1 1.2451 1 158.13876774281115 227.85154583886688 0 0 0 0 +6584 1 1.2336 1 140.8525008818873 256.08727804544526 0 0 0 0 +6599 1 1.2316 1 137.54521665251008 268.2304857693369 0 0 0 0 +6609 1 1.231 1 155.1577941099474 267.4858290469782 0 0 0 0 +6669 1 1.225 1 156.93540922011522 242.15147856487476 0 0 0 0 +6684 1 1.2238 1 146.4421917103864 257.0707068701067 0 0 0 0 +6727 1 1.2197 1 146.10619378120774 270.03497707750597 0 0 0 0 +6777 1 1.2154 1 149.39051795465116 260.4802521343621 0 0 0 0 +3536 1 1.6855 1 167.63341560354007 239.03305999464038 0 0 0 0 +6792 1 1.2132 1 142.62358850358052 253.44946719888247 0 0 0 0 +6806 1 1.2117 1 155.69415872568487 260.1634243149424 0 0 0 0 +6817 1 1.2105 1 155.2944945673406 240.01845716233728 0 0 0 0 +8935 1 1.0559 1 146.34229219358622 251.64358807499949 0 0 0 0 +8951 1 1.0551 1 130.64951108931788 270.7858189188873 0 0 0 0 +7042 1 1.1901 1 146.3316658153784 255.87722418853397 0 0 0 0 +3499 1 1.6936 1 121.20344137959428 276.92092643319694 0 0 0 0 +7065 1 1.1887 1 150.7593223754856 248.1318472506616 0 0 0 0 +7164 1 1.1808 1 141.26784652650994 270.9972720546576 0 0 0 0 +7175 1 1.1802 1 138.91803568750908 265.7831447840273 0 0 0 0 +7227 1 1.1759 1 149.24814954675406 274.9461125478121 0 0 0 0 +9364 1 1.0328 1 160.0771804730076 225.6602155808666 0 0 0 0 +7265 1 1.1733 1 153.44795693269123 228.33929594893837 0 0 0 0 +7269 1 1.1731 1 166.51129048275698 238.24442823655937 0 0 0 0 +7322 1 1.1686 1 146.1143012501545 247.1488251671662 0 0 0 0 +5179 1 1.3913 1 167.02725621494858 257.85151511720346 0 0 0 0 +7431 1 1.1589 1 162.03136757731426 231.4011759327807 0 0 0 0 +7446 1 1.1572 1 134.8585846127574 269.17273154768014 0 0 0 0 +7468 1 1.1555 1 125.97459828378976 276.76478391015786 0 0 0 0 +7581 1 1.1454 1 143.8380693442461 253.89668618659283 0 0 0 0 +7662 1 1.1392 1 157.3904864412211 245.28155615334884 0 0 0 0 +7670 1 1.1387 1 162.04610161233347 229.28522484796235 0 0 0 0 +7704 1 1.136 1 153.83345204048823 264.9960183947421 0 0 0 0 +7732 1 1.1341 1 163.94104127958806 237.00589319812912 0 0 0 0 +7759 1 1.1315 1 133.6404676212916 272.0913789159032 0 0 0 0 +7804 1 1.1285 1 131.83851611967896 275.6617509011619 0 0 0 0 +7815 1 1.1279 1 159.0003076149582 248.56965688920448 0 0 0 0 +7855 1 1.1247 1 144.79568771555768 249.5564297501819 0 0 0 0 +7887 1 1.1222 1 132.83461898969676 273.28963819004963 0 0 0 0 +7937 1 1.1188 1 168.05992928546306 240.32512792160253 0 0 0 0 +8999 1 1.0526 1 166.2666475802333 247.49973287775953 0 0 0 0 +7977 1 1.1161 1 152.5954973790996 252.43878506676134 0 0 0 0 +5889 1 1.306 1 157.56404375121159 267.6448050607058 0 0 0 0 +8016 1 1.1136 1 140.8446111645621 269.9451665611215 0 0 0 0 +8855 1 1.0598 1 147.7951453458884 259.0258370553555 0 0 0 0 +8084 1 1.1084 1 158.227787760782 247.58270217725692 0 0 0 0 +9661 1 1.0174 1 150.37188869598967 264.4927352948034 0 0 0 0 +8150 1 1.1047 1 148.6104762745269 259.6677277013124 0 0 0 0 +3712 1 1.6447 1 160.1154634524179 268.5278968021922 0 0 0 0 +8298 1 1.0948 1 159.2922942493982 247.52486410012438 0 0 0 0 +8343 1 1.091 1 148.97562403440483 254.36542395760253 0 0 0 0 +8401 1 1.0876 1 156.2400677396297 225.92391444140958 0 0 0 0 +9488 1 1.0265 1 155.72597271929942 247.43074847695323 0 0 0 0 +8407 1 1.0872 1 132.56363292194447 272.236244618293 0 0 0 0 +8469 1 1.0831 1 152.54222134306193 250.95395322045147 0 0 0 0 +8481 1 1.0822 1 131.15071333172816 268.372198659116 0 0 0 0 +8493 1 1.0813 1 134.16549210737458 275.96643755669925 0 0 0 0 +8505 1 1.0807 1 161.31682621343202 230.11549981173155 0 0 0 0 +5630 1 1.3336 1 165.59384212741486 234.96518890750625 0 0 0 0 +8549 1 1.0781 1 152.7541413869684 265.20793244646774 0 0 0 0 +8585 1 1.0762 1 142.5266505281136 271.5471480208159 0 0 0 0 +9555 1 1.0229 1 131.64528802606202 267.46814117437793 0 0 0 0 +8617 1 1.0738 1 148.86591478044275 276.32807170252715 0 0 0 0 +8647 1 1.0724 1 147.217125980304 246.71442620295437 0 0 0 0 +8662 1 1.0717 1 138.34645582927564 272.977443794793 0 0 0 0 +4235 1 1.5443 1 170.13638343077324 242.1903911065246 0 0 0 0 +6010 1 1.2934 1 169.1290224107455 234.56120013986808 0 0 0 0 +8710 1 1.0694 1 154.1529515151213 240.040671976377 0 0 0 0 +8781 1 1.0644 1 142.25535593289214 270.51735692607673 0 0 0 0 +3313 1 1.7366 1 156.58272212087493 264.84872508600085 0 0 0 0 +8807 1 1.0629 1 163.06440391425468 250.6071874954581 0 0 0 0 +8846 1 1.0605 1 141.0220007799307 274.66446460371066 0 0 0 0 +8849 1 1.0603 1 148.01582648771054 254.03928792577594 0 0 0 0 +4986 1 1.422 1 167.0040614977493 228.78317420527475 0 0 0 0 +2041 1 2.2179 1 167.28955632821493 235.2831444858081 0 0 0 0 +7707 1 1.1358 1 168.82728644807983 269.6112009151836 0 0 0 0 +3686 1 1.6522 1 147.65355137098692 277.0099388657996 0 0 0 0 +4044 1 1.5752 1 168.83596718364467 275.02493641723146 0 0 0 0 +1900 1 2.3007 1 169.71762874724246 262.1083795096526 0 0 0 0 +1458 1 2.6106 1 170.72855682254243 240.24100056111 0 0 0 0 +2409 1 2.0448 1 166.64799451200895 233.27081230825843 0 0 0 0 +706 1 3.7739 1 168.47150828178488 266.15467393108514 0 0 0 0 +5045 1 1.4139 1 169.84702893013997 258.8751286448506 0 0 0 0 +2706 1 1.9271 1 168.13135072498238 252.7752310985086 0 0 0 0 +6429 1 1.2493 1 168.9513927529838 239.63435242849272 0 0 0 0 +8106 1 1.1072 1 167.20446976205446 237.3610559195515 0 0 0 0 +5837 1 1.3108 1 153.56329158407894 224.93040989098003 0 0 0 0 +1440 1 2.6337 1 165.9591245514094 275.99137264418425 0 0 0 0 +1785 1 2.3651 1 169.04192658000136 228.77533486136866 0 0 0 0 +5237 1 1.3838 1 169.59085293281422 276.27407308657155 0 0 0 0 +9265 1 1.0386 1 170.50268680601457 251.57659995986475 0 0 0 0 +9647 1 1.0181 1 163.561278008989 276.711907789334 0 0 0 0 +4981 1 1.4227 1 168.70171339962158 226.95147212195192 0 0 0 0 +7081 1 1.1877 1 162.60344632379378 277.2497108894228 0 0 0 0 +4429 1 1.5094 1 169.8201538524352 260.26626857738216 0 0 0 0 +1709 1 2.416 1 169.5827830445495 273.2194096817496 0 0 0 0 +1920 1 2.2882 1 153.6832627301876 226.67958622449993 0 0 0 0 +6790 1 1.2135 1 168.1415769613114 233.8412070185709 0 0 0 0 +2878 1 1.8684 1 132.74549671048936 276.7097737913625 0 0 0 0 +2191 1 2.1432 1 170.46093298765774 264.0983015902085 0 0 0 0 +8062 1 1.1101 1 155.3272885675477 226.44513312503406 0 0 0 0 +590 1 4.0484 1 169.71846764088866 237.14377394255726 0 0 0 0 +8295 1 1.095 1 132.0138672691751 277.9675030804237 0 0 0 0 +4020 1 1.5795 1 169.63124758275683 268.53075383946583 0 0 0 0 +576 1 4.1084 1 169.65388742165283 255.33922036945495 0 0 0 0 +8691 1 1.0703 1 166.69588930130666 277.69451343298897 0 0 0 0 +4908 1 1.4311 1 154.88747988069852 225.26452363769243 0 0 0 0 +4626 1 1.4774 1 169.77317956480326 252.5765743214995 0 0 0 0 +3400 1 1.715 1 156.93851666266866 224.78092311268574 0 0 0 0 +51 1 12.9437 1 165.8849249911097 305.3905481520102 0 0 0 0 +59 1 12.4444 1 123.41448146035336 312.8656719167065 0 0 0 0 +97 1 9.6308 1 149.11601496699373 305.53244199402667 0 0 0 0 +101 1 9.5763 1 133.46548675130973 316.88761499673507 0 0 0 0 +3573 1 1.6752 1 149.9395754123768 284.77999027213616 0 0 0 0 +125 1 8.6209 1 155.41543495624705 287.6483000481368 0 0 0 0 +134 1 8.1639 1 129.16016574910796 324.4670360260374 0 0 0 0 +281 1 5.9042 1 167.63114109879336 291.87819832141025 0 0 0 0 +287 1 5.8529 1 141.1775127580591 312.5558589075399 0 0 0 0 +292 1 5.8145 1 142.75818098547387 319.3197830750492 0 0 0 0 +293 1 5.8106 1 131.37460526753756 301.8360816666201 0 0 0 0 +304 1 5.7099 1 156.6957590910526 305.6171927241587 0 0 0 0 +8742 1 1.0674 1 122.64759921238881 280.243074914773 0 0 0 0 +351 1 5.3297 1 162.4852278918853 295.5230818176945 0 0 0 0 +446 1 4.6634 1 161.9345203714364 287.05469350109206 0 0 0 0 +6226 1 1.268 1 148.36474134526748 285.5894918935471 0 0 0 0 +488 1 4.4502 1 133.06216034793104 296.9897351021732 0 0 0 0 +531 1 4.2597 1 146.86095045778688 315.42618610198207 0 0 0 0 +8687 1 1.0706 1 132.76640761884164 305.778925344136 0 0 0 0 +710 1 3.7648 1 159.2814476487336 292.39721924879836 0 0 0 0 +713 1 3.7604 1 129.1432173028016 294.5759144446556 0 0 0 0 +736 1 3.7072 1 153.37918321610317 297.8946737421053 0 0 0 0 +748 1 3.6912 1 124.75280624247195 320.73227454821676 0 0 0 0 +7222 1 1.1764 1 170.51220765623086 300.14681930058106 0 0 0 0 +764 1 3.6516 1 119.96231349308461 324.34289636888093 0 0 0 0 +769 1 3.6463 1 125.14169137240928 328.6100471684134 0 0 0 0 +2049 1 2.2114 1 126.28541311310785 304.70165816182583 0 0 0 0 +783 1 3.6196 1 165.9825794175085 286.8491551679596 0 0 0 0 +803 1 3.5823 1 138.09712056706664 309.1748814517303 0 0 0 0 +815 1 3.5499 1 158.3824572925315 299.08410622510854 0 0 0 0 +819 1 3.5434 1 152.64698166996192 294.4388527294686 0 0 0 0 +2867 1 1.8729 1 118.71116921465894 280.0484868089377 0 0 0 0 +835 1 3.4964 1 161.18993232192278 282.8708738614248 0 0 0 0 +857 1 3.4464 1 143.79674545944536 297.45658485542685 0 0 0 0 +8880 1 1.0584 1 150.42407470086707 293.9295868022489 0 0 0 0 +927 1 3.2989 1 156.43726277192303 296.29789869942306 0 0 0 0 +944 1 3.257 1 155.84850338373187 312.4731788768011 0 0 0 0 +1011 1 3.1586 1 139.48503428839953 303.35847018338563 0 0 0 0 +9828 1 1.0087 1 123.0257036561654 327.73012188663756 0 0 0 0 +1078 1 3.0443 1 138.51789101806386 320.51902545553656 0 0 0 0 +1122 1 2.986 1 123.74600488218945 325.6649257592738 0 0 0 0 +1160 1 2.9444 1 131.5065597608966 291.5845138664933 0 0 0 0 +1161 1 2.9432 1 164.33842570338928 282.82854784711213 0 0 0 0 +1168 1 2.9362 1 136.17075534034896 293.2463669041783 0 0 0 0 +1204 1 2.9015 1 140.45980583009688 323.3852516028246 0 0 0 0 +187 1 7.0567 1 121.89173347544245 303.5833871331683 0 0 0 0 +9759 1 1.0124 1 130.26571406979454 311.47452647309046 0 0 0 0 +9746 1 1.013 1 142.8937685297219 306.82178074298633 0 0 0 0 +1308 1 2.783 1 136.4051572675059 306.60032447247227 0 0 0 0 +1337 1 2.75 1 150.26416135284336 282.6102230932203 0 0 0 0 +1366 1 2.7215 1 129.11801561751628 308.00433543217855 0 0 0 0 +1380 1 2.7021 1 122.75270800911292 323.0740160428193 0 0 0 0 +1397 1 2.6833 1 163.57217163988847 290.66499014000857 0 0 0 0 +1448 1 2.6234 1 136.70382344115077 302.87970864587743 0 0 0 0 +1473 1 2.6016 1 117.68511506619942 322.33428555515195 0 0 0 0 +1546 1 2.5345 1 142.04798959605122 302.2184234414205 0 0 0 0 +1558 1 2.5266 1 148.9456210853189 311.52157094148686 0 0 0 0 +1582 1 2.5066 1 140.15538819648714 300.64405957425606 0 0 0 0 +1653 1 2.4518 1 136.3244835988391 295.9327534945313 0 0 0 0 +6728 1 1.2197 1 118.98157872806311 307.6896844068483 0 0 0 0 +1812 1 2.3493 1 141.26798094379197 306.89682247796253 0 0 0 0 +1816 1 2.3462 1 142.38639058755035 299.8631059609578 0 0 0 0 +1817 1 2.3461 1 158.3075832642926 283.0872397076912 0 0 0 0 +1832 1 2.3394 1 145.5700544693549 310.30989832410677 0 0 0 0 +1833 1 2.3389 1 129.1367888531541 298.53359719508603 0 0 0 0 +8873 1 1.0589 1 125.02399942105006 301.0815462785466 0 0 0 0 +6113 1 1.2824 1 137.28612860919782 329.4060402251663 0 0 -1 0 +1862 1 2.3237 1 139.26158261051404 297.43164870478125 0 0 0 0 +1883 1 2.3117 1 143.4349267368048 304.12917750576014 0 0 0 0 +1895 1 2.3028 1 135.25724685772082 308.82344072132554 0 0 0 0 +1905 1 2.2967 1 134.28723850722736 324.8765769376196 0 0 0 0 +4236 1 1.544 1 128.95782136364824 329.1742596341469 0 0 0 0 +1938 1 2.2778 1 137.39044998966307 298.7253854974653 0 0 0 0 +1941 1 2.2763 1 152.7419919174235 283.01158888590504 0 0 0 0 +1965 1 2.2617 1 128.87947950638164 289.47278356726525 0 0 0 0 +1974 1 2.257 1 149.60370176332071 313.7453426063304 0 0 0 0 +1984 1 2.2505 1 146.7354671336918 312.22100725606794 0 0 0 0 +1991 1 2.2466 1 152.41122424956964 300.66869025373035 0 0 0 0 +2013 1 2.2308 1 146.98131572307622 318.6446254400383 0 0 0 0 +2032 1 2.2204 1 139.1147010251137 317.9788840851248 0 0 0 0 +5772 1 1.317 1 125.7956590510358 300.2032603293991 0 0 0 0 +2140 1 2.16 1 137.88971750715 300.86039693995605 0 0 0 0 +2147 1 2.1577 1 133.9568905435128 322.6896455458934 0 0 0 0 +2153 1 2.1556 1 148.352676598277 297.9043888651313 0 0 0 0 +2154 1 2.1554 1 133.0369402538998 311.15458834358145 0 0 0 0 +2176 1 2.1476 1 142.3189561928706 308.8228540368851 0 0 0 0 +2206 1 2.1342 1 161.26500609035728 290.3209046588113 0 0 0 0 +2247 1 2.1183 1 138.93319222952476 325.25459831908285 0 0 0 0 +2256 1 2.1151 1 119.93083763840005 321.52491100402204 0 0 0 0 +2275 1 2.1052 1 145.41277057917898 300.8527924208147 0 0 0 0 +6323 1 1.259 1 134.51260841600742 307.2375106789698 0 0 0 0 +2309 1 2.0852 1 166.10651076743684 295.8900524955717 0 0 0 0 +2349 1 2.0688 1 158.83548796602904 295.219016816146 0 0 0 0 +2367 1 2.0601 1 139.12387902169792 315.85911652279503 0 0 0 0 +2380 1 2.0554 1 131.91693241310202 293.9943508470489 0 0 0 0 +2391 1 2.0507 1 130.0173265564021 286.6845495355531 0 0 0 0 +1479 1 2.595 1 149.8208777110385 286.87853121776135 0 0 0 0 +2399 1 2.0483 1 127.66159885199713 318.72972596253175 0 0 0 0 +2411 1 2.0445 1 134.2631691441037 305.646745474247 0 0 0 0 +2414 1 2.0441 1 153.82177436383324 314.05011656163236 0 0 0 0 +3646 1 1.6631 1 160.55510153367484 279.8521500566987 0 0 0 0 +2462 1 2.0242 1 158.39697513130383 312.0771358702279 0 0 0 0 +2480 1 2.0171 1 135.96152071259343 311.71143871265497 0 0 0 0 +2558 1 1.9859 1 135.2033472417447 301.19657994526597 0 0 0 0 +2623 1 1.9589 1 151.60303076821563 313.2434283323769 0 0 0 0 +2658 1 1.9441 1 152.27940465374104 291.8315891492251 0 0 0 0 +8768 1 1.0652 1 133.91697081828076 328.9935638833088 0 0 0 0 +2668 1 1.9419 1 156.45278771152852 293.58665981919194 0 0 0 0 +2731 1 1.9176 1 169.09817938030696 287.35108918069443 0 0 0 0 +2734 1 1.9168 1 158.5993618923765 281.04545721341697 0 0 0 0 +2736 1 1.9153 1 149.4572716640311 316.9173062341199 0 0 0 0 +2742 1 1.9138 1 138.6693034299824 306.13710634665455 0 0 0 0 +2743 1 1.9137 1 162.35049159101183 280.47227770256757 0 0 0 0 +2758 1 1.9086 1 149.06459323472814 299.7833874225372 0 0 0 0 +2792 1 1.8954 1 143.5262409544789 315.60237537340925 0 0 0 0 +2798 1 1.8938 1 122.00326090769346 320.9344588350537 0 0 0 0 +2833 1 1.8845 1 155.00458293567922 302.20418350125306 0 0 0 0 +430 1 4.7556 1 141.08765904070847 294.47900094237934 0 0 0 0 +8143 1 1.1051 1 125.19111709690964 298.6072788647403 0 0 0 0 +26 1 20.2111 1 117.79665484958598 290.95767001659806 0 0 0 0 +2918 1 1.8578 1 152.21925388067862 315.01861795526594 0 0 0 0 +4407 1 1.5138 1 127.55441036812493 329.00323985223207 0 0 -1 0 +2094 1 2.1859 1 135.24316677790745 330.9450389845829 0 0 -1 0 +6571 1 1.2354 1 169.40241062264383 288.8387859876534 0 0 0 0 +2986 1 1.8365 1 150.37461642379714 295.7907809019069 0 0 0 0 +9841 1 1.0082 1 141.15527591338952 305.27152854275596 0 0 0 0 +3035 1 1.8163 1 133.36257203600624 308.2062110751933 0 0 0 0 +3044 1 1.8138 1 154.6610440849206 300.2290762471165 0 0 0 0 +3065 1 1.8085 1 160.9828675132677 298.6583408993993 0 0 0 0 +3086 1 1.8029 1 126.30876567385627 297.7257979676732 0 0 0 0 +3235 1 1.7559 1 146.2553563106967 299.13228433383836 0 0 0 0 +3279 1 1.7451 1 137.93871603116878 294.6903335700183 0 0 0 0 +3337 1 1.7316 1 130.82416723086175 289.3461267962865 0 0 0 0 +9724 1 1.0141 1 151.8202076789649 311.78007432895095 0 0 0 0 +3371 1 1.7232 1 154.53504734796843 309.2455558367874 0 0 0 0 +3403 1 1.7143 1 144.90067013960606 312.7185718015095 0 0 0 0 +3411 1 1.7122 1 159.79874601577208 309.36200864680495 0 0 0 0 +3456 1 1.702 1 128.3938915740471 287.59576344889 0 0 0 0 +3508 1 1.6924 1 159.66906405303027 284.8736301715967 0 0 0 0 +3632 1 1.6653 1 117.60470192727591 316.7371051355687 0 0 0 0 +3634 1 1.6652 1 137.14169837706982 325.26861707125624 0 0 0 0 +7014 1 1.1928 1 168.5625196732402 298.9561099483705 0 0 0 0 +3653 1 1.6615 1 137.60559434878462 304.77364692529136 0 0 0 0 +3655 1 1.661 1 140.80211105974777 298.665710733722 0 0 0 0 +3673 1 1.6544 1 127.58843226148254 286.1686751209786 0 0 0 0 +4687 1 1.4662 1 135.10833461886378 304.1335252628286 0 0 0 0 +3687 1 1.6518 1 159.0996902803267 302.8546495874464 0 0 0 0 +3709 1 1.6448 1 155.8143324818365 298.95129884256227 0 0 0 0 +3732 1 1.6425 1 166.48244643154132 298.16711835181474 0 0 0 0 +3759 1 1.6379 1 134.32498869244577 299.6771255916962 0 0 0 0 +3765 1 1.6371 1 133.7021697049333 293.9576747417092 0 0 0 0 +3813 1 1.6257 1 118.42846322601301 320.4556018940597 0 0 0 0 +3857 1 1.6164 1 153.14563952260607 312.43280484417 0 0 0 0 +3871 1 1.6132 1 136.4641637560867 321.53998953890476 0 0 0 0 +3883 1 1.6109 1 155.20335082828242 282.56277820719447 0 0 0 0 +3915 1 1.6044 1 159.83876752327012 301.4274723819034 0 0 0 0 +3978 1 1.5903 1 130.9168357678521 309.13812167644465 0 0 0 0 +4011 1 1.5813 1 157.2148823182884 309.45438511229816 0 0 0 0 +5451 1 1.3557 1 136.93904020933243 330.64978953014736 0 0 -1 0 +5848 1 1.3101 1 168.10012729717334 296.29236007654015 0 0 0 0 +4042 1 1.5755 1 150.88760229373324 316.02638564821785 0 0 0 0 +3465 1 1.7002 1 144.43036455762825 291.6044311286392 0 0 0 0 +2599 1 1.9679 1 117.72441137584764 305.16458893954774 0 0 0 0 +4122 1 1.5632 1 129.86150329618974 310.2609717616184 0 0 0 0 +4149 1 1.5585 1 160.82653865282848 300.2608351175058 0 0 0 0 +4166 1 1.5557 1 137.54308300345417 313.1484703668789 0 0 0 0 +1088 1 3.033 1 126.69559123640167 302.1409487901576 0 0 0 0 +7415 1 1.1601 1 128.92571655773696 278.7071300136949 0 0 0 0 +4257 1 1.5411 1 159.40628725665272 296.8633795013987 0 0 0 0 +4275 1 1.5373 1 141.54741211216924 326.4728028535596 0 0 0 0 +4283 1 1.536 1 157.20015600153295 301.2037513816495 0 0 0 0 +4360 1 1.5212 1 141.60544446836832 304.16139619199737 0 0 0 0 +9870 1 1.0063 1 144.97720138075007 302.2936064214645 0 0 0 0 +4366 1 1.5203 1 132.38262149038027 309.54206773494434 0 0 0 0 +4803 1 1.4483 1 143.0329736642663 292.1758565146455 0 0 0 0 +4420 1 1.5114 1 137.66664730463825 311.6410065159076 0 0 0 0 +4465 1 1.5031 1 147.13805963260353 300.4335727808701 0 0 0 0 +4468 1 1.5027 1 131.57764234205314 305.4398203191317 0 0 0 0 +4493 1 1.4986 1 159.6211540642388 310.9072254929557 0 0 0 0 +4496 1 1.498 1 155.9492472247239 310.20288075322503 0 0 0 0 +9557 1 1.0227 1 160.0116242538817 281.0167143859113 0 0 0 0 +4533 1 1.4927 1 131.32560249196973 310.6071584484573 0 0 0 0 +4549 1 1.4895 1 144.37089850923613 314.1874548359157 0 0 0 0 +4550 1 1.4892 1 148.7348910287677 295.80868638666254 0 0 0 0 +4615 1 1.4789 1 138.34966566726655 293.0252727369993 0 0 0 0 +239 1 6.2884 1 148.2921001748188 290.9553766772737 0 0 0 0 +4648 1 1.4736 1 130.49731917885669 306.385168892842 0 0 0 0 +794 1 3.6025 1 124.50134974975389 278.5892414196324 0 0 0 0 +4769 1 1.4531 1 164.40380829519128 288.80581624289334 0 0 0 0 +115 1 9.1551 1 170.1525262413811 281.46211715221204 0 0 0 0 +4895 1 1.4334 1 134.70433490733316 310.55992023788224 0 0 0 0 +4902 1 1.4321 1 136.5845818573831 323.89386853258014 0 0 0 0 +4951 1 1.4257 1 138.43815268716713 322.739687449885 0 0 0 0 +4956 1 1.4251 1 132.42744876418206 306.9296248796907 0 0 0 0 +4971 1 1.4236 1 152.4651563923688 309.8364480420084 0 0 0 0 +4975 1 1.4235 1 135.85523092626428 297.7662715125645 0 0 0 0 +4999 1 1.4203 1 141.3558613703773 316.08358929224863 0 0 0 0 +8541 1 1.0786 1 168.60243590648497 295.22003408960813 0 0 0 0 +9748 1 1.0129 1 164.89701081073318 298.4860361210307 0 0 0 0 +5066 1 1.4103 1 165.79352552427693 284.391238842834 0 0 0 0 +5070 1 1.4092 1 140.56630379601106 308.9788156449451 0 0 0 0 +5090 1 1.4052 1 143.69801863834022 301.16243786560307 0 0 0 0 +5102 1 1.4039 1 133.67265068627063 291.2212212151123 0 0 0 0 +5115 1 1.4004 1 154.88755911689134 293.0552905353842 0 0 0 0 +5124 1 1.3991 1 150.38696924995685 297.4008249759287 0 0 0 0 +3029 1 1.8183 1 126.78566100654902 306.6303696228584 0 0 0 0 +5158 1 1.3942 1 164.08473015367804 292.61118107766754 0 0 0 0 +5161 1 1.3936 1 155.06464831215453 294.43305324963126 0 0 0 0 +5936 1 1.3014 1 121.75182380871844 281.000718583366 0 0 0 0 +5185 1 1.3908 1 134.7590896501124 302.7929001527324 0 0 0 0 +5217 1 1.3871 1 150.62606276211412 300.2688623587101 0 0 0 0 +5220 1 1.3866 1 128.90571265487117 319.7943739919761 0 0 0 0 +4226 1 1.5463 1 131.15908520116363 307.62595819204125 0 0 0 0 +5315 1 1.3737 1 154.02749495292144 307.8596311482094 0 0 0 0 +5354 1 1.369 1 160.9600976963986 310.5111910321123 0 0 0 0 +9403 1 1.0303 1 130.7799018149254 331.5571397921298 0 0 -1 0 +5392 1 1.3646 1 133.43242266194883 326.48971618104804 0 0 0 0 +5478 1 1.3532 1 134.84798973028964 294.81622680994127 0 0 0 0 +5484 1 1.3525 1 135.6463445554312 299.10206728469353 0 0 0 0 +5535 1 1.3465 1 162.49219450731886 299.10457288040175 0 0 0 0 +5592 1 1.3383 1 165.2434613368901 297.36667525320985 0 0 0 0 +5626 1 1.3342 1 163.7303446130368 298.5987016087994 0 0 0 0 +5674 1 1.3295 1 159.29303535783026 307.9316593762292 0 0 0 0 +2971 1 1.8412 1 146.41706281080997 297.4074550287458 0 0 0 0 +5750 1 1.3204 1 121.65160422889396 326.1048504011395 0 0 0 0 +229 1 6.3363 1 127.66450687963325 282.22095186536853 0 0 0 0 +5862 1 1.3091 1 133.8816682005461 292.535708045372 0 0 0 0 +5894 1 1.3052 1 158.42715096089995 308.8441810329285 0 0 0 0 +5909 1 1.3043 1 140.6070708004402 325.45905517228294 0 0 0 0 +5927 1 1.302 1 167.8890039679574 288.3426664444229 0 0 0 0 +5981 1 1.2966 1 119.58643360326082 319.7061945166062 0 0 0 0 +3254 1 1.7522 1 144.11580525578123 293.29339298367853 0 0 0 0 +4362 1 1.521 1 170.47239680762283 310.9583464180486 0 0 0 0 +6026 1 1.292 1 118.51088211387047 319.0367535921125 0 0 0 0 +6058 1 1.2878 1 139.6003970992536 307.3619790234657 0 0 0 0 +6099 1 1.2831 1 139.0622274552557 299.1801108198178 0 0 0 0 +6115 1 1.2822 1 153.79467965027578 292.3177984730027 0 0 0 0 +6118 1 1.2817 1 143.9057987431385 302.4506422535826 0 0 0 0 +6123 1 1.2811 1 143.26556823638342 323.9261224658175 0 0 0 0 +6129 1 1.2806 1 143.78100707792922 310.15217245546063 0 0 0 0 +5149 1 1.3965 1 149.3931990743713 294.5670182197653 0 0 0 0 +6219 1 1.2685 1 155.92021440464652 300.94994744905546 0 0 0 0 +6224 1 1.2683 1 120.53872898423126 318.9655503763535 0 0 0 0 +1234 1 2.8731 1 170.37302423888164 298.16343241333215 0 0 0 0 +5408 1 1.3622 1 118.795159632556 306.4256850596296 0 0 0 0 +6250 1 1.2651 1 154.06515759672448 303.4141377708282 0 0 0 0 +6255 1 1.2645 1 152.72947058000292 311.1213050654585 0 0 0 0 +1218 1 2.891 1 130.991729501895 329.6299568773602 0 0 0 0 +6267 1 1.2633 1 127.45099283094123 298.55519219664075 0 0 0 0 +6282 1 1.262 1 147.56463220294162 296.42404917981787 0 0 0 0 +6290 1 1.2616 1 157.7726630973914 302.3935304180039 0 0 0 0 +6317 1 1.2594 1 163.00139464305832 284.36632070746805 0 0 0 0 +6344 1 1.2576 1 155.93124716419018 308.9051989707994 0 0 0 0 +6390 1 1.2524 1 140.09089984715726 305.5262087601985 0 0 0 0 +6444 1 1.2479 1 143.3959099527558 305.8469230226554 0 0 0 0 +6446 1 1.2478 1 148.08569503996958 294.6632788167083 0 0 0 0 +6491 1 1.2442 1 137.1436491140318 322.7360226300024 0 0 0 0 +6496 1 1.2434 1 136.38040128305795 300.14205681452245 0 0 0 0 +6511 1 1.242 1 153.4592561445116 302.34441126522836 0 0 0 0 +6527 1 1.2402 1 131.2794067896677 311.9573078622802 0 0 0 0 +6540 1 1.2383 1 138.21200461911076 314.4050601860403 0 0 0 0 +3757 1 1.6381 1 138.37957733556476 330.636363331709 0 0 -1 0 +2569 1 1.9825 1 161.829383656194 278.6212847557542 0 0 0 0 +6623 1 1.23 1 128.40945084526095 292.2484453827595 0 0 0 0 +6710 1 1.2213 1 130.22762745622947 312.5840129330945 0 0 0 0 +3230 1 1.7573 1 123.1759284711816 281.5004190468675 0 0 0 0 +6738 1 1.2191 1 154.71980220320688 310.6335494188636 0 0 0 0 +6753 1 1.2179 1 145.67446974865646 321.0029365492305 0 0 0 0 +6763 1 1.217 1 168.2143544434062 286.1601304656871 0 0 0 0 +6780 1 1.2152 1 147.31397721023282 310.616370825823 0 0 0 0 +6809 1 1.2117 1 133.73933575138474 309.65727736950765 0 0 0 0 +6814 1 1.2108 1 142.2483588864855 305.41876195242804 0 0 0 0 +6821 1 1.2103 1 120.7339281854651 320.13378944419185 0 0 0 0 +6867 1 1.2052 1 150.58548332938295 310.72588976531875 0 0 0 0 +6877 1 1.2042 1 157.3641118812579 310.8377767991256 0 0 0 0 +6892 1 1.2028 1 160.96491399648153 311.77096923296233 0 0 0 0 +6900 1 1.202 1 158.50061114195222 301.43983977140516 0 0 0 0 +957 1 3.239 1 145.90653816847706 294.9605487197385 0 0 0 0 +7012 1 1.193 1 142.33355158878615 325.3904799246969 0 0 0 0 +2506 1 2.0087 1 124.26540685342637 299.8164734827925 0 0 0 0 +7017 1 1.1923 1 150.7406877064547 311.93444831434255 0 0 0 0 +7026 1 1.1918 1 129.7220045875564 296.89048163525666 0 0 0 0 +7027 1 1.1917 1 135.36568245997546 323.53665080674386 0 0 0 0 +7030 1 1.1913 1 159.68623439472964 289.9658842229531 0 0 0 0 +7904 1 1.1209 1 127.59064283059107 297.09474483902875 0 0 0 0 +9666 1 1.0173 1 136.22458930067657 329.7441139046232 0 0 -1 0 +7075 1 1.188 1 164.28781791909964 284.92552782066167 0 0 0 0 +7079 1 1.1877 1 153.61695752771982 310.3379573075438 0 0 0 0 +9983 1 1.0011 1 130.83909294881366 298.53058299888056 0 0 0 0 +7129 1 1.1835 1 143.2470891740195 322.7201314785268 0 0 0 0 +7146 1 1.1826 1 128.17327096302344 300.6775311360803 0 0 0 0 +7161 1 1.1809 1 143.9584024578552 306.87977140442075 0 0 0 0 +7193 1 1.1786 1 128.44648989032024 291.09210368450607 0 0 0 0 +7214 1 1.1771 1 140.34607325907393 316.8486897427944 0 0 0 0 +3957 1 1.5944 1 127.13945532516338 299.87875720190937 0 0 0 0 +7226 1 1.176 1 136.23367072874316 304.6868392144522 0 0 0 0 +7249 1 1.174 1 162.1425941782133 311.3757579522185 0 0 0 0 +7304 1 1.1701 1 138.13021154057964 296.11605118267505 0 0 0 0 +7318 1 1.1687 1 151.42997415615602 299.32204258647914 0 0 0 0 +7324 1 1.1685 1 128.29643452389558 303.3354822057101 0 0 0 0 +7342 1 1.1668 1 132.8359201144181 328.8059289572602 0 0 0 0 +7349 1 1.166 1 131.02684440016364 287.9246712174799 0 0 0 0 +7395 1 1.1618 1 129.57986828015385 291.01418476959134 0 0 0 0 +7413 1 1.1601 1 148.52958887059748 318.0850278713561 0 0 0 0 +7433 1 1.1584 1 127.1808254003747 296.04332244028495 0 0 0 0 +9989 1 1.0006 1 126.1134725460627 299.1003303177364 0 0 0 0 +7447 1 1.1572 1 119.49492375627598 318.3789664198039 0 0 0 0 +9733 1 1.0136 1 133.0053408451334 304.79607232606475 0 0 0 0 +7567 1 1.1466 1 141.50019254478292 297.4091546211527 0 0 0 0 +7573 1 1.1462 1 134.80786904934524 291.76119078373443 0 0 0 0 +7635 1 1.1418 1 133.85624345496683 304.15782071301743 0 0 0 0 +7649 1 1.1404 1 151.06301580854316 285.5753623565856 0 0 0 0 +7654 1 1.1399 1 149.56437421258528 315.41842402833913 0 0 0 0 +7708 1 1.1357 1 156.47069793715636 302.2501244004386 0 0 0 0 +7787 1 1.1297 1 137.92207972519554 323.9348268561239 0 0 0 0 +7856 1 1.1247 1 165.4290818320555 294.4756764849163 0 0 0 0 +7870 1 1.1232 1 122.68357086497474 319.58906025717584 0 0 0 0 +7890 1 1.1221 1 129.57391747809464 292.1778483334397 0 0 0 0 +7933 1 1.119 1 121.61826114739877 319.40387215587884 0 0 0 0 +7936 1 1.1189 1 146.3776424834376 320.1392990080352 0 0 0 0 +7943 1 1.1185 1 143.91282028183872 308.97584848484513 0 0 0 0 +8032 1 1.1127 1 144.33123873999065 307.94245408995977 0 0 0 0 +8100 1 1.1074 1 167.14827632793566 297.0123523384392 0 0 0 0 +8131 1 1.1055 1 132.17307500730502 289.58623577418433 0 0 0 0 +7039 1 1.1904 1 130.07212007661244 285.08412267656195 0 0 0 0 +5469 1 1.3538 1 147.87956890750775 287.1638093145617 0 0 0 0 +8376 1 1.0888 1 144.9521710481478 321.86523688873194 0 0 0 0 +8394 1 1.0878 1 144.8934691104473 299.37924691475456 0 0 0 0 +8405 1 1.0874 1 118.63281043110746 317.65219397380645 0 0 0 0 +2461 1 2.0247 1 156.71941086738892 281.59276644222683 0 0 0 0 +8427 1 1.0861 1 129.9615312122184 288.2337568189231 0 0 0 0 +8429 1 1.0861 1 147.6540616721637 299.3047737447888 0 0 0 0 +4192 1 1.5506 1 151.47675264831352 284.35794324813816 0 0 0 0 +8516 1 1.08 1 148.10635207458574 313.09719054822824 0 0 0 0 +8540 1 1.0787 1 126.19614436153354 318.95099321865996 0 0 0 0 +9970 1 1.0021 1 143.32711847713966 307.70919653007905 0 0 0 0 +8586 1 1.0761 1 142.178625172841 324.30437153674825 0 0 0 0 +8589 1 1.0758 1 117.4495252331548 319.56013189943684 0 0 0 0 +8636 1 1.0728 1 130.47879106787187 297.61025240178486 0 0 0 0 +9999 1 1 1 136.08239914443027 310.2321433148891 0 0 0 0 +8718 1 1.0688 1 165.08589926002955 281.01515237460364 0 0 0 0 +8766 1 1.0654 1 140.21055941545427 321.5155910060927 0 0 0 0 +7110 1 1.1849 1 125.33008428081645 306.18702398435465 0 0 0 0 +8792 1 1.0638 1 153.9606929331296 311.42562966883844 0 0 0 0 +8794 1 1.0637 1 151.74503392710437 290.50651670670965 0 0 0 0 +8800 1 1.0634 1 137.61511007774303 297.0929546187466 0 0 0 0 +1147 1 2.9602 1 128.7115306141562 305.26620836501024 0 0 0 0 +9727 1 1.014 1 149.40560452442432 296.7940207862646 0 0 0 0 +9966 1 1.0022 1 134.4770181965449 311.731870805958 0 0 0 0 +8928 1 1.0562 1 158.46811025678073 310.1162676563385 0 0 0 0 +8275 1 1.0966 1 167.53326866102864 295.30370553630394 0 0 0 0 +8963 1 1.0546 1 142.34866161764742 323.2628671824654 0 0 0 0 +3127 1 1.7854 1 152.00430349937997 281.2110666380405 0 0 0 0 +9009 1 1.0523 1 144.29740375798477 322.6623666733043 0 0 0 0 +9014 1 1.052 1 128.6296981405703 296.91952637964386 0 0 0 0 +9017 1 1.0518 1 132.09543814805642 327.9995392952984 0 0 0 0 +9019 1 1.0518 1 144.94587150618761 308.79032474535774 0 0 0 0 +9024 1 1.0514 1 144.0654788024273 300.01247088012866 0 0 0 0 +9053 1 1.05 1 132.9385059552863 290.2875619581216 0 0 0 0 +9079 1 1.0483 1 122.30224629876362 327.04736842388735 0 0 0 0 +9085 1 1.048 1 150.83518626818883 314.7507606717623 0 0 0 0 +9088 1 1.0476 1 165.5863682800231 289.1199203103337 0 0 0 0 +9106 1 1.0469 1 135.52404009745612 322.444929360893 0 0 0 0 +9135 1 1.0453 1 151.66843218117185 310.7601829623711 0 0 0 0 +9693 1 1.0159 1 163.7295496666418 280.9535889496208 0 0 0 0 +9170 1 1.0434 1 135.8639572564325 325.13627056335315 0 0 0 0 +9175 1 1.0431 1 143.83379210808627 295.2375920990788 0 0 0 0 +739 1 3.7041 1 135.71874699498036 327.49279451695 0 0 -1 0 +9230 1 1.0405 1 149.9650870372039 298.5455192551334 0 0 0 0 +9236 1 1.0401 1 156.91337991949322 292.2042594945115 0 0 0 0 +9249 1 1.0394 1 153.8633040528574 301.3339623112353 0 0 0 0 +9275 1 1.038 1 128.84393063300962 285.7021730554273 0 0 0 0 +9990 1 1.0006 1 157.74579137925087 294.19491751754265 0 0 0 0 +9904 1 1.0049 1 132.03187520242065 308.4077996825949 0 0 0 0 +9390 1 1.0313 1 151.06824820152843 298.3380998643687 0 0 0 0 +9396 1 1.0309 1 162.0797032841269 292.0245096844835 0 0 0 0 +9411 1 1.0301 1 153.23032979133836 308.8870312471259 0 0 0 0 +9434 1 1.0291 1 144.40000721270385 311.4608728157541 0 0 0 0 +9523 1 1.0246 1 151.38156745029448 296.7326912690892 0 0 0 0 +9556 1 1.0229 1 145.69009244730486 317.71460511499293 0 0 0 0 +6246 1 1.2657 1 130.10690159659947 278.7304894192188 0 0 0 0 +9563 1 1.0222 1 159.9148896227588 312.12018598976675 0 0 0 0 +9583 1 1.0215 1 124.60238774141936 323.3076715730421 0 0 0 0 +9594 1 1.0211 1 128.28066234045193 317.39314001881485 0 0 0 0 +8244 1 1.0984 1 148.35670743703983 282.45016816412016 0 0 0 0 +7682 1 1.1377 1 119.92598532216343 307.09239542113 0 0 0 0 +2322 1 2.0793 1 153.93244861480005 281.2573654050513 0 0 0 0 +9697 1 1.0156 1 169.1656661144711 296.67344364594584 0 0 0 0 +35 1 17.3577 1 139.21919499608785 283.6595679609764 0 0 0 0 +2092 1 2.1873 1 133.23577863356408 330.4340357917791 0 0 -1 0 +8910 1 1.057 1 152.3349687344703 279.91609417809366 0 0 0 0 +4052 1 1.5742 1 148.6091895169922 283.9410124223099 0 0 0 0 +7899 1 1.1215 1 120.10583452733844 280.5633971293571 0 0 0 0 +5365 1 1.3683 1 130.69132574129247 279.87889496687274 0 0 0 0 +1947 1 2.2706 1 148.5683637908351 280.7830121641271 0 0 0 0 +8748 1 1.0671 1 124.31939334563636 280.8475815209164 0 0 0 0 +6720 1 1.2204 1 117.81981387290307 303.5990692982362 0 0 0 0 +654 1 3.8779 1 139.46841175273116 328.14178257695403 0 0 0 0 +9363 1 1.0328 1 137.799945863707 326.39991141415464 0 0 0 0 +5680 1 1.3289 1 139.8078659525048 330.69673790733424 0 0 0 0 +8904 1 1.0573 1 133.32186839796225 327.698617541342 0 0 0 0 +3670 1 1.6556 1 150.49723082904845 280.44828879598793 0 0 0 0 +8850 1 1.0602 1 131.36144791167544 278.83038988201116 0 0 0 0 +6946 1 1.1984 1 151.39642396407888 279.34771627745016 0 0 0 0 +6140 1 1.2796 1 125.23363670253516 331.0611803209229 0 0 0 0 +4076 1 1.5705 1 168.24910311100712 297.6764627562475 0 0 0 0 +8783 1 1.0642 1 122.34557902068376 279.2769359791758 0 0 0 0 +4001 1 1.5834 1 121.15078829314272 279.73734348242664 0 0 0 0 +1258 1 2.8442 1 170.53738893421402 295.34634382354403 0 0 0 0 +6024 1 1.2921 1 170.45776860644187 286.5718807092528 0 0 0 0 +9168 1 1.0436 1 170.50852081615733 287.6572664923533 0 0 0 0 +3087 1 1.8028 1 147.2563449145051 278.6790910030509 0 0 0 0 +754 1 3.6793 1 164.5280755463771 278.7536672855788 0 0 0 0 +6362 1 1.2557 1 170.79488143997227 293.36921187579003 0 0 0 0 +6935 1 1.1994 1 117.46458303862826 279.2428672081076 0 0 0 0 +1048 1 3.0915 1 149.54888733753634 278.3213642029231 0 0 0 0 +5270 1 1.3796 1 121.67380977143819 278.33220508029746 0 0 0 0 +1756 1 2.3824 1 119.82184623139077 278.3419429547504 0 0 0 0 +8042 1 1.1118 1 117.26592184535805 280.34623880667874 0 0 0 0 +3953 1 1.5956 1 117.36091062188781 318.27010445143816 0 0 0 0 +4679 1 1.4677 1 218.70016706298168 49.02766499046681 0 0 0 0 +28 1 18.2798 1 207.61988244866268 38.48252105141589 0 0 0 0 +3206 1 1.765 1 221.97727191876285 59.77231684414928 0 0 0 0 +91 1 9.7917 1 200.698745623329 25.322287810086475 0 0 0 0 +99 1 9.6121 1 176.57765672658923 56.13268817380558 0 0 0 0 +155 1 7.5388 1 186.03256416811087 48.82246522248466 0 0 0 0 +175 1 7.2823 1 221.20156420084675 21.909391487548294 0 0 0 0 +191 1 6.9532 1 208.3183803413785 17.2133160793835 0 0 0 0 +6349 1 1.2571 1 217.80482157332503 62.589396028251464 0 0 0 0 +211 1 6.6259 1 188.36782021312615 57.31079958509568 0 0 0 0 +282 1 5.891 1 179.6070759889226 47.96513363117886 0 0 0 0 +9485 1 1.0266 1 199.89052463749138 12.348318664303322 0 0 1 0 +324 1 5.5046 1 172.37855473665238 49.92497978757061 0 0 0 0 +5687 1 1.3277 1 210.896579457652 58.56567604295485 0 0 0 0 +9788 1 1.0104 1 196.7899604881245 21.81089251863354 0 0 0 0 +395 1 4.9575 1 212.40547518298635 24.164655844490973 0 0 0 0 +457 1 4.6328 1 194.36432378733275 34.725003199369034 0 0 0 0 +3104 1 1.7963 1 216.64082817871235 14.281816206881745 0 0 1 0 +568 1 4.1356 1 195.31392935629654 38.87464925208884 0 0 0 0 +583 1 4.081 1 214.10252481164324 15.74331769797977 0 0 0 0 +586 1 4.0717 1 195.85072505103352 42.924658736314285 0 0 0 0 +610 1 3.9881 1 203.29454272906918 15.174412433208618 0 0 0 0 +5942 1 1.3005 1 218.92662235936086 63.19285109036841 0 0 0 0 +616 1 3.9773 1 198.58913796537752 18.788281753495127 0 0 0 0 +626 1 3.9408 1 206.30777192635645 49.35686106320091 0 0 0 0 +639 1 3.913 1 183.25673863598107 56.27533417794124 0 0 0 0 +3112 1 1.7942 1 220.25896528092554 48.69276831585339 0 0 0 0 +662 1 3.8583 1 206.75017749727212 22.297801696090666 0 0 0 0 +705 1 3.7756 1 217.49712326609645 33.25758526028224 0 0 0 0 +782 1 3.6199 1 213.01476324969704 28.61917328951244 0 0 0 0 +2886 1 1.866 1 223.23374127992238 10.517227283247703 0 0 1 0 +914 1 3.3299 1 196.50912804436862 47.98386240657916 0 0 0 0 +966 1 3.223 1 217.16274066355896 25.19634585832399 0 0 0 0 +987 1 3.1999 1 192.6160176950659 52.835567241220005 0 0 0 0 +4826 1 1.4452 1 223.41282732203265 18.170707634593956 0 0 0 0 +1004 1 3.1748 1 197.00252708723337 32.02074556548928 0 0 0 0 +6331 1 1.2586 1 220.43300942259094 35.246057713096015 0 0 0 0 +9692 1 1.0159 1 207.9429807104663 52.40981292307315 0 0 0 0 +8083 1 1.1085 1 220.40436140615296 41.54058119660679 0 0 0 0 +1265 1 2.8347 1 199.66662660814765 46.75056268974613 0 0 0 0 +1331 1 2.7556 1 192.61390037890723 49.90971842846073 0 0 0 0 +1359 1 2.7307 1 216.65025377827925 28.67810397768501 0 0 0 0 +7429 1 1.159 1 207.0894413753458 51.759116595431195 0 0 0 0 +1437 1 2.637 1 221.272024796167 50.571791248130914 0 0 0 0 +1438 1 2.6364 1 212.75516810430025 18.756549274759763 0 0 0 0 +1451 1 2.6201 1 193.0027893619391 41.284798881095725 0 0 0 0 +1455 1 2.6149 1 190.31569416021432 51.28505448000392 0 0 0 0 +1502 1 2.5756 1 208.06826750683635 28.165059853524564 0 0 0 0 +5452 1 1.3556 1 213.25916907884277 59.610543368139844 0 0 0 0 +1553 1 2.5315 1 210.36276200888773 27.20687609078855 0 0 0 0 +1682 1 2.4333 1 186.71841286955316 61.47058677022761 0 0 0 0 +1697 1 2.4271 1 202.7495593740853 47.602155377167215 0 0 0 0 +1708 1 2.4165 1 216.50289431211192 18.429281494282126 0 0 0 0 +1743 1 2.3881 1 192.7600719705101 43.75082022593835 0 0 0 0 +1773 1 2.3714 1 190.4625093340613 44.22047603731888 0 0 0 0 +9291 1 1.0372 1 199.12495969162697 50.957044003247326 0 0 0 0 +1814 1 2.3476 1 206.07949662395407 13.269525175331838 0 0 0 0 +192 1 6.9495 1 218.2604384978051 44.90467887794739 0 0 0 0 +1852 1 2.3298 1 203.8780382564637 18.243644293390602 0 0 0 0 +309 1 5.6606 1 221.39000326691837 13.715412583219754 0 0 1 0 +1923 1 2.2875 1 186.51526978347422 42.06813409272294 0 0 0 0 +1992 1 2.2465 1 184.66921613316262 43.355341881681625 0 0 0 0 +1996 1 2.2439 1 205.22601345929704 11.186785295813108 0 0 0 0 +1998 1 2.243 1 192.47547997582163 37.55354830265281 0 0 0 0 +4409 1 1.5135 1 211.87908876798204 57.55750079586156 0 0 0 0 +2046 1 2.2141 1 197.54228798603796 45.475044308669474 0 0 0 0 +2119 1 2.1709 1 199.49911648560237 32.54288918192154 0 0 0 0 +2172 1 2.1481 1 200.74083697416464 48.89521918244512 0 0 0 0 +1325 1 2.7618 1 217.90759647146996 40.107721648360545 0 0 0 0 +2200 1 2.1373 1 195.3064018079107 30.13989496394494 0 0 0 0 +2210 1 2.1325 1 213.52173052321882 50.88144460880875 0 0 0 0 +2231 1 2.1234 1 211.5392821666397 14.082692596869405 0 0 0 0 +2319 1 2.0804 1 184.64352158721428 62.197235961400885 0 0 0 0 +2333 1 2.0752 1 188.27671912729565 43.35773021472905 0 0 0 0 +2955 1 1.8459 1 202.23921927412138 10.327609243313105 0 0 0 0 +2413 1 2.0441 1 198.54691662768178 13.024100140128946 0 0 0 0 +2428 1 2.0366 1 215.17372249502338 26.881113409749087 0 0 0 0 +2493 1 2.0132 1 193.87756132350296 47.94388359832323 0 0 0 0 +2505 1 2.0087 1 191.95347855438112 45.77935884120117 0 0 0 0 +2512 1 2.0065 1 182.62115374810077 62.166494339594884 0 0 0 0 +2525 1 2.002 1 198.65343026292916 15.883288410899892 0 0 0 0 +2541 1 1.9923 1 202.46904938895486 19.76826674095495 0 0 0 0 +2552 1 1.989 1 194.68972312358662 51.366008084090176 0 0 0 0 +9113 1 1.0467 1 221.54191267401671 47.2165936604161 0 0 0 0 +2624 1 1.9583 1 211.37722270478397 52.33029473052778 0 0 0 0 +2691 1 1.9334 1 207.5648430655738 26.041337897375374 0 0 0 0 +2709 1 1.9266 1 190.07472820732286 46.33057896393863 0 0 0 0 +7640 1 1.141 1 221.30828926615166 36.042439817464384 0 0 0 0 +2739 1 1.9144 1 180.82311495358798 52.15357522488738 0 0 0 0 +2747 1 1.9119 1 197.42697128721883 36.28798882483354 0 0 0 0 +2763 1 1.9076 1 183.81087191788555 59.63672847103676 0 0 0 0 +2808 1 1.8911 1 187.3442216843581 53.25402895006283 0 0 0 0 +2820 1 1.8889 1 181.80059135563266 53.7710607968778 0 0 0 0 +2822 1 1.8881 1 220.90547732358255 17.38656332203911 0 0 0 0 +9777 1 1.0112 1 191.3393415084967 61.76943621863382 0 0 0 0 +2832 1 1.8848 1 188.46772649323105 41.435785830842526 0 0 0 0 +9674 1 1.0169 1 212.8843678758167 52.32019219402132 0 0 0 0 +1843 1 2.3328 1 223.55121204596207 49.81290301842642 0 0 0 0 +2884 1 1.867 1 181.9929050171819 60.363745921499586 0 0 0 0 +2890 1 1.8645 1 198.10228562816073 34.429527691915105 0 0 0 0 +2899 1 1.8633 1 204.96257300216888 20.035531638258774 0 0 0 0 +2339 1 2.0725 1 222.5858547484851 45.60576943287392 0 0 0 0 +2966 1 1.8433 1 216.9371441557074 20.4613517610441 0 0 0 0 +4161 1 1.5565 1 219.2416793193169 10.863595759809318 0 0 1 0 +2992 1 1.8355 1 190.11208247246418 61.08331031777977 0 0 0 0 +2162 1 2.1509 1 211.48544383054053 50.34727923589964 0 0 0 0 +3021 1 1.8198 1 189.66579113747082 40.06745346775281 0 0 0 0 +3051 1 1.8121 1 213.13791850730496 20.898015454071825 0 0 0 0 +3052 1 1.8119 1 172.6990273355125 61.57642966093408 0 0 0 0 +4442 1 1.5073 1 221.08996999083274 37.341476962016365 0 0 0 0 +5763 1 1.3187 1 208.15680618184336 51.13614973892624 0 0 0 0 +9756 1 1.0126 1 184.7407357730807 60.70680906164385 0 0 0 0 +3099 1 1.7973 1 200.83907370158505 31.097084428723615 0 0 0 0 +5832 1 1.3113 1 222.14414481668362 52.282427315434774 0 0 0 0 +5877 1 1.3077 1 218.09130125231073 14.760030090335606 0 0 1 0 +3198 1 1.7665 1 210.25728366500567 48.89084672493435 0 0 0 0 +3078 1 1.8057 1 204.57579855722534 52.39898055185244 0 0 0 0 +660 1 3.8658 1 218.50348139017393 36.886236984353886 0 0 0 0 +3319 1 1.7355 1 221.9749184363578 48.54616279971737 0 0 0 0 +3333 1 1.7324 1 200.4859375890076 15.69313925863943 0 0 0 0 +3374 1 1.7231 1 199.0080971424723 30.724792354005544 0 0 0 0 +3375 1 1.7228 1 214.57042383389043 19.909697144789842 0 0 0 0 +3388 1 1.7181 1 182.7724078372516 52.251757883736104 0 0 0 0 +3389 1 1.7178 1 182.37298286208468 45.3781067461768 0 0 0 0 +3401 1 1.7149 1 188.7113333753214 45.14870323337516 0 0 0 0 +3468 1 1.6998 1 190.1225729550516 53.398407638206116 0 0 0 0 +3473 1 1.6992 1 175.92992617545508 49.420697146711106 0 0 0 0 +3478 1 1.6983 1 198.84458723238797 48.81548683216953 0 0 0 0 +3494 1 1.6944 1 199.07572504271673 43.627418097371546 0 0 0 0 +3498 1 1.6939 1 177.07034144231523 50.62353517681715 0 0 0 0 +98 1 9.6304 1 223.71606246041398 30.942557881259724 0 0 0 0 +3423 1 1.7105 1 216.7781849382477 61.55579296040161 0 0 0 0 +3516 1 1.691 1 205.07228881247232 28.92062130381972 0 0 0 0 +3533 1 1.6858 1 210.46980156201718 21.521234130445833 0 0 0 0 +3568 1 1.6767 1 190.56543054728644 49.189864136263786 0 0 0 0 +3572 1 1.6758 1 171.01137362106212 55.61126291959294 0 0 0 0 +4328 1 1.5273 1 190.47554521753938 62.66939057862578 0 0 0 0 +1754 1 2.3837 1 222.89064858070805 36.786935586476105 0 0 0 0 +1401 1 2.6811 1 218.48281189375086 16.63337720142942 0 0 1 0 +947 1 3.2524 1 216.59700369356494 11.781184711546802 0 0 1 0 +3741 1 1.6409 1 194.14382956800597 45.19051189750172 0 0 0 0 +7339 1 1.1676 1 212.90028447196522 47.018996445418765 0 0 0 0 +3771 1 1.6357 1 191.59545677812167 47.94636918216181 0 0 0 0 +3805 1 1.628 1 196.96779195007167 50.35933526779425 0 0 0 0 +9997 1 1.0001 1 203.47994508965135 11.018293562765784 0 0 0 0 +3868 1 1.6134 1 195.67249298194554 45.70337879488485 0 0 0 0 +3909 1 1.6062 1 209.43070869968736 22.777301691266693 0 0 0 0 +3955 1 1.5947 1 218.73751972195515 28.47450021006557 0 0 0 0 +3968 1 1.593 1 209.17043619325375 24.342954114222415 0 0 0 0 +1388 1 2.6975 1 219.61705572856465 26.56003986044073 0 0 0 0 +4002 1 1.5833 1 206.0821331639268 27.701395666586922 0 0 0 0 +4026 1 1.5784 1 208.9838763827567 49.95270301820281 0 0 0 0 +4028 1 1.5783 1 191.26837009844303 42.44879761354024 0 0 0 0 +4047 1 1.5748 1 212.03523586312633 48.615733922918146 0 0 0 0 +4051 1 1.5742 1 181.95957447511756 50.83857676201127 0 0 0 0 +878 1 3.4002 1 202.9079303381486 50.48909228206047 0 0 0 0 +4118 1 1.5635 1 214.7128922549826 31.592602787579242 0 0 0 0 +4125 1 1.5627 1 206.30673178053502 24.917776736016318 0 0 0 0 +9503 1 1.0258 1 212.43984186369255 53.23851299934398 0 0 0 0 +4211 1 1.5477 1 203.5305669681419 12.27979285735785 0 0 0 0 +4254 1 1.5419 1 211.27464671893108 20.15957299321348 0 0 0 0 +4312 1 1.5307 1 191.21042963967 39.477571750883385 0 0 0 0 +4316 1 1.5297 1 218.39104078510465 18.659939212643227 0 0 0 0 +4324 1 1.528 1 200.83697207828672 17.22314808267249 0 0 0 0 +4368 1 1.5202 1 201.5493904448043 13.073024128408072 0 0 0 0 +4415 1 1.5128 1 208.77611123458757 48.27807550722956 0 0 0 0 +4433 1 1.5086 1 191.03510126493967 40.94640807641205 0 0 0 0 +4444 1 1.5071 1 214.59633068333213 21.60117371188688 0 0 0 0 +4457 1 1.5047 1 185.31622800514845 53.20377280487371 0 0 0 0 +9804 1 1.0097 1 181.11266540031903 44.863723791154705 0 0 0 0 +4727 1 1.4595 1 199.50737465213047 14.443880042627086 0 0 0 0 +4730 1 1.4594 1 217.2551735086854 30.65893523638617 0 0 0 0 +9789 1 1.0103 1 204.46751659986452 47.66285440977617 0 0 0 0 +8476 1 1.0825 1 219.47750575990284 41.09149747105691 0 0 0 0 +4786 1 1.4508 1 201.27667624126272 18.592846299691065 0 0 0 0 +4801 1 1.4487 1 174.73402103839746 47.42617876245512 0 0 0 0 +9056 1 1.0499 1 212.62600740613922 58.585729604971235 0 0 0 0 +1855 1 2.3292 1 211.36153449586828 54.47369476031411 0 0 0 0 +4886 1 1.435 1 182.4286492515879 58.79616080052736 0 0 0 0 +4910 1 1.4307 1 210.5691756792516 29.13381581679261 0 0 0 0 +5038 1 1.4154 1 214.67352779228216 18.37728011884947 0 0 0 0 +5129 1 1.3987 1 183.86216524940272 44.9618235105372 0 0 0 0 +5172 1 1.3921 1 207.79557112554124 12.62595717159916 0 0 0 0 +5192 1 1.3896 1 188.0780389585038 62.73197588344295 0 0 0 0 +5211 1 1.3874 1 197.52804949503437 11.716937998100573 0 0 0 0 +5214 1 1.3873 1 192.62460706342787 39.33987564791215 0 0 0 0 +9825 1 1.0088 1 222.23753738475105 17.90016742392123 0 0 0 0 +5287 1 1.3772 1 175.99232292380665 47.97720987529842 0 0 0 0 +5306 1 1.3747 1 215.2757277105446 22.837379821894057 0 0 0 0 +5347 1 1.3702 1 196.90420408579357 13.940383371533583 0 0 0 0 +7962 1 1.117 1 207.0931373674449 62.302013722178735 0 0 0 0 +5370 1 1.3676 1 202.211075992193 11.854813888425909 0 0 0 0 +8207 1 1.1011 1 216.68286117975728 62.931957236710105 0 0 0 0 +5423 1 1.3607 1 174.13167881016142 60.99102650729085 0 0 0 0 +5480 1 1.3527 1 191.12782351252773 54.4877526348322 0 0 0 0 +5493 1 1.3517 1 209.9480667782001 13.494203563796138 0 0 0 0 +5514 1 1.3495 1 190.67003070698476 38.19058041959045 0 0 0 0 +5523 1 1.3484 1 197.1701085940965 16.58697504929432 0 0 0 0 +6395 1 1.252 1 211.79529015205563 56.187270454170296 0 0 0 0 +5528 1 1.348 1 200.89573477313542 11.809064462649042 0 0 0 0 +5547 1 1.3444 1 200.19640549040656 44.78381247881117 0 0 0 0 +5575 1 1.341 1 190.8804733852684 36.91289946240521 0 0 0 0 +5599 1 1.3374 1 213.05337093413215 13.325048976239104 0 0 0 0 +5609 1 1.3358 1 200.8499026498768 14.25601154629416 0 0 0 0 +8480 1 1.0822 1 209.929873412372 52.22012500143773 0 0 0 0 +5651 1 1.3322 1 175.60225078970765 50.8373078670515 0 0 0 0 +5717 1 1.3243 1 215.15005610846544 50.34756362500391 0 0 0 0 +5729 1 1.323 1 209.05357086778292 21.244606969862453 0 0 0 0 +5738 1 1.3219 1 197.0709224870767 15.273800711789468 0 0 0 0 +5811 1 1.3134 1 182.95106625422977 43.986939235112914 0 0 0 0 +3721 1 1.6439 1 223.05668163050376 47.333873642553414 0 0 0 0 +3991 1 1.5885 1 215.10804169448323 30.117632524189 0 0 0 0 +5835 1 1.3111 1 202.19955860626143 17.57717097161711 0 0 0 0 +5885 1 1.3061 1 219.5328286604317 60.94893090291252 0 0 0 0 +5999 1 1.2948 1 197.12423253584092 40.68609675144218 0 0 0 0 +6060 1 1.2873 1 196.626848965888 12.665638832293428 0 0 0 0 +6075 1 1.2859 1 180.3192692738409 60.08555622484986 0 0 0 0 +6127 1 1.2807 1 206.06185894235847 26.314906012741453 0 0 0 0 +6147 1 1.2788 1 223.13768297715274 55.44481708250323 0 0 0 0 +6210 1 1.2706 1 185.87179619957632 44.52401049601429 0 0 0 0 +6211 1 1.2704 1 188.68470303554818 52.33392580204986 0 0 0 0 +6212 1 1.2703 1 201.60853592071325 46.16165842208359 0 0 0 0 +6050 1 1.2888 1 220.35180854966768 40.299336345288104 0 0 0 0 +6235 1 1.2668 1 198.63927767258593 42.26524568920453 0 0 0 0 +6236 1 1.2667 1 216.5556307126621 16.643830689739293 0 0 0 0 +6241 1 1.2662 1 219.3719869919501 50.21136343289587 0 0 0 0 +6302 1 1.2608 1 188.15255341520938 39.93414374756017 0 0 0 0 +6336 1 1.2583 1 195.58954577477687 50.05721915213995 0 0 0 0 +6365 1 1.2555 1 194.5410108091758 49.41690592897935 0 0 0 0 +6392 1 1.2522 1 206.87605458692718 11.687293965805324 0 0 0 0 +8730 1 1.0681 1 215.4568777057658 13.591093932884194 0 0 1 0 +6450 1 1.2476 1 211.7532859215562 47.27691637785416 0 0 0 0 +6472 1 1.2458 1 191.68625180540573 35.91267530010813 0 0 0 0 +6475 1 1.2457 1 218.82443724134566 61.94207967975575 0 0 0 0 +6478 1 1.2455 1 189.46003287832895 38.590569606426925 0 0 0 0 +6488 1 1.2446 1 200.9013354736121 19.864295010461106 0 0 0 0 +6518 1 1.2416 1 181.10793999760898 59.102237919428745 0 0 0 0 +6525 1 1.2406 1 216.04399411358656 31.213342634206995 0 0 0 0 +3200 1 1.7663 1 207.90830902341304 58.2337166693327 0 0 0 0 +6555 1 1.237 1 171.25873505135357 56.977951894458435 0 0 0 0 +6677 1 1.2243 1 185.5930701962759 60.03748461293168 0 0 0 0 +4754 1 1.4558 1 220.97882628974617 38.78400891392532 0 0 0 0 +516 1 4.3149 1 209.3075418054953 60.8754263137082 0 0 0 0 +6708 1 1.2214 1 216.97698488105618 21.969055562446307 0 0 0 0 +7853 1 1.1248 1 221.65030075473652 10.344244537606475 0 0 1 0 +6741 1 1.2188 1 207.81928566098975 24.54217703962806 0 0 0 0 +6762 1 1.217 1 191.80789978421788 55.51694633117292 0 0 0 0 +8930 1 1.056 1 219.55000571906965 34.51283731186852 0 0 0 0 +6870 1 1.2048 1 198.20269408437755 40.39096539208952 0 0 0 0 +6883 1 1.2038 1 194.60104968911986 46.547251004875136 0 0 0 0 +1008 1 3.1637 1 209.72757303888133 56.665929641453886 0 0 0 0 +6907 1 1.2014 1 193.42843043568234 46.38762398638239 0 0 0 0 +6917 1 1.2005 1 218.36643467876192 29.91848665891769 0 0 0 0 +6937 1 1.1992 1 197.3706224057325 20.970303152493024 0 0 0 0 +1298 1 2.7944 1 206.47549555469217 53.61943506940004 0 0 0 0 +6979 1 1.196 1 178.45153757995283 51.19055238190914 0 0 0 0 +7002 1 1.1941 1 184.64911999502348 58.378750743736 0 0 0 0 +7094 1 1.1866 1 176.3046230039104 46.8164625431487 0 0 0 0 +7115 1 1.1844 1 189.71136471655637 42.631434759624035 0 0 0 0 +7136 1 1.1832 1 222.54852886796667 25.787954126062232 0 0 0 0 +7138 1 1.1831 1 198.01566048352652 14.488946270989002 0 0 0 0 +7154 1 1.1818 1 184.3274614923455 54.02162681011489 0 0 0 0 +7992 1 1.115 1 196.29472053494527 11.521103250826945 0 0 1 0 +7170 1 1.1805 1 186.74377122103792 43.74954624897874 0 0 0 0 +7192 1 1.1787 1 197.93623741843624 38.99640837293284 0 0 0 0 +7688 1 1.1373 1 219.5963043351396 18.09425470446656 0 0 1 0 +7238 1 1.175 1 203.85268267535287 29.65200098741596 0 0 0 0 +3275 1 1.7461 1 199.13471959011702 11.244874842776595 0 0 1 0 +7306 1 1.1699 1 186.14418612435932 54.177614765873926 0 0 0 0 +78 1 10.2827 1 217.4471308562453 55.65229160460229 0 0 0 0 +9751 1 1.0129 1 197.91583235208498 41.45600801200355 0 0 0 0 +5665 1 1.3307 1 219.68600868341633 39.1784812869866 0 0 0 0 +7482 1 1.1542 1 215.39615830366685 24.045808245152774 0 0 0 0 +7548 1 1.1484 1 213.61227047398256 30.87566510190096 0 0 0 0 +7554 1 1.148 1 183.28526245008223 53.572794662419106 0 0 0 0 +7612 1 1.1433 1 196.22526558555262 51.49203067742367 0 0 0 0 +7634 1 1.1418 1 171.50348117150156 54.266250463337286 0 0 0 0 +7692 1 1.137 1 203.64408877924953 20.72719018871456 0 0 0 0 +1251 1 2.8491 1 214.22331113586714 48.49819240075899 0 0 0 0 +7746 1 1.1331 1 190.23467754691882 47.834255757802566 0 0 0 0 +39 1 15.7171 1 199.30068744634082 59.31000093344872 0 0 0 0 +7803 1 1.1286 1 195.7780546065028 27.567397426979138 0 0 0 0 +7833 1 1.127 1 198.0724909357261 51.05579186855292 0 0 0 0 +7861 1 1.1238 1 221.44859092654823 26.08746485625417 0 0 0 0 +7877 1 1.1231 1 215.0840236894086 25.36665478347539 0 0 0 0 +7888 1 1.1221 1 187.36846188860844 44.70803595797317 0 0 0 0 +7952 1 1.1176 1 214.30541563033006 45.47268279113033 0 0 0 0 +7919 1 1.1196 1 204.4732891924998 21.428879144139476 0 0 0 0 +8012 1 1.1138 1 222.70848550306886 16.91198026504197 0 0 0 0 +7720 1 1.1348 1 214.57771716229814 46.55350244708334 0 0 0 0 +4536 1 1.4914 1 207.43995602108376 56.68591449914073 0 0 0 0 +8145 1 1.1049 1 208.91108719254487 52.00013451712798 0 0 0 0 +8158 1 1.104 1 200.11390783724585 13.336765039354212 0 0 0 0 +8194 1 1.1019 1 189.92614672356763 41.53976274860613 0 0 0 0 +8208 1 1.1011 1 222.40221422095243 58.42940583274701 0 0 0 0 +1413 1 2.6674 1 209.0765847666102 53.847451104868405 0 0 0 0 +6951 1 1.1981 1 224.20770509145098 46.53291456629027 0 0 0 0 +3831 1 1.6206 1 214.41648090323505 12.840046912178149 0 0 1 0 +8367 1 1.0893 1 217.1921467782995 23.073409514057627 0 0 0 0 +8379 1 1.0886 1 195.43172505685934 28.57723316649013 0 0 0 0 +8421 1 1.0863 1 215.87004951676093 21.792708525474197 0 0 0 0 +8459 1 1.084 1 206.7596918694085 55.520837915582064 0 0 0 0 +8463 1 1.0836 1 171.76240815810854 53.17078785382312 0 0 0 0 +8533 1 1.0789 1 208.97663135570326 26.146462377550897 0 0 0 0 +8603 1 1.0748 1 192.61287196001328 47.1339035281989 0 0 0 0 +8621 1 1.0737 1 181.50878599892496 58.025779834785084 0 0 0 0 +8654 1 1.0722 1 188.77321790343194 53.496512673409434 0 0 0 0 +8692 1 1.0703 1 199.0382245596127 44.95279032178334 0 0 0 0 +8708 1 1.0694 1 185.3426268295127 54.939675559502795 0 0 0 0 +8777 1 1.0647 1 211.79616468270848 21.28274544367789 0 0 0 0 +8809 1 1.0628 1 198.5407988314286 50.10937562728665 0 0 0 0 +8858 1 1.0595 1 215.57243457532672 20.795236602692725 0 0 0 0 +3587 1 1.6739 1 200.42243419657453 50.73294523550888 0 0 0 0 +8950 1 1.0551 1 209.77510986242822 25.515341550547227 0 0 0 0 +8980 1 1.0537 1 179.5386863717559 51.433843072460355 0 0 0 0 +9023 1 1.0515 1 218.23006385303736 50.122821723366556 0 0 0 0 +9034 1 1.0509 1 184.07822404339552 52.800539972185966 0 0 0 0 +9062 1 1.0495 1 202.14377988714463 30.533830819968635 0 0 0 0 +9204 1 1.0416 1 216.96604103136494 15.607137176799537 0 0 0 0 +7169 1 1.1806 1 189.20916280177525 62.225445288909405 0 0 0 0 +9240 1 1.04 1 191.0152708212739 60.022611575139734 0 0 0 0 +5967 1 1.298 1 207.91267462119873 55.39946120133869 0 0 0 0 +9295 1 1.0368 1 218.41385317431374 31.04460462995788 0 0 0 0 +9331 1 1.0345 1 208.80100302825755 13.259926313543938 0 0 0 0 +9398 1 1.0308 1 180.7855618830723 61.13800962259903 0 0 0 0 +5283 1 1.3779 1 217.9759280296304 13.48748352045574 0 0 1 0 +9480 1 1.027 1 213.4935803566352 46.12994200121676 0 0 0 0 +9481 1 1.0269 1 215.25822383207364 32.69553743463499 0 0 0 0 +9543 1 1.0237 1 223.60753284052473 25.624116549321293 0 0 0 0 +9550 1 1.0233 1 204.49749580245512 13.005435511265647 0 0 0 0 +9580 1 1.0217 1 210.68432587838737 47.601398017564485 0 0 0 0 +9609 1 1.0199 1 172.42145961341834 62.92342970737078 0 0 0 0 +9614 1 1.0199 1 183.61896212999346 61.058596527635665 0 0 0 0 +5830 1 1.3115 1 209.91239190590565 51.04032590575375 0 0 0 0 +7362 1 1.1645 1 205.87738116329322 51.791984582199355 0 0 0 0 +4320 1 1.5288 1 211.86718985302542 59.59892918906785 0 0 0 0 +384 1 5.0358 1 213.65223980483455 62.7436153552695 0 0 0 0 +1643 1 2.4568 1 216.71531912401076 49.32007202589685 0 0 0 0 +3510 1 1.6921 1 222.9796353740684 53.46733016159266 0 0 0 0 +9032 1 1.0511 1 199.70232885306453 9.990242167000215 0 0 1 0 +6153 1 1.2779 1 210.5920433582685 63.30120968845646 0 0 0 0 +2012 1 2.2311 1 223.42544131599877 57.14589518833682 0 0 0 0 +6215 1 1.27 1 220.6487469886589 60.365142513542054 0 0 0 0 +7796 1 1.1291 1 191.74433879574852 62.99301984653188 0 0 0 0 +9749 1 1.0129 1 224.03650920127615 45.48385865123481 0 0 0 0 +954 1 3.2429 1 221.07645871655927 62.50789486535585 0 0 0 0 +5821 1 1.3122 1 200.70570789548623 10.526705953127841 0 0 0 0 +4031 1 1.5773 1 189.2435754180282 63.58573566301287 0 0 0 0 +20 1 21.6436 1 191.41406085201479 90.84674786407189 0 0 0 0 +1640 1 2.4594 1 177.13719912018712 104.95264839343156 0 0 0 0 +3257 1 1.7511 1 175.68365848441863 73.67098927788118 0 0 0 0 +96 1 9.6591 1 205.2491352971864 97.63329252851204 0 0 0 0 +105 1 9.501 1 202.99773342423177 78.1486114511443 0 0 0 0 +123 1 8.8346 1 200.19557927390872 108.99153195375115 0 0 0 0 +164 1 7.4478 1 178.6113924197582 84.02091661295997 0 0 0 0 +188 1 7.0441 1 209.58626859907775 89.15107678821664 0 0 0 0 +248 1 6.2265 1 207.86389190758408 104.9441221653911 0 0 0 0 +5984 1 1.2964 1 178.0810459640424 103.38231063895104 0 0 0 0 +6544 1 1.238 1 177.13473713178283 72.54557150525454 0 0 0 0 +9663 1 1.0173 1 206.1640152238371 66.75508207988007 0 0 0 0 +294 1 5.8086 1 213.6893024474002 77.21595035886784 0 0 0 0 +312 1 5.6376 1 209.4695632486887 66.51588037503585 0 0 0 0 +356 1 5.3024 1 188.99375689521742 66.97669556778386 0 0 0 0 +365 1 5.1878 1 217.06610524733077 66.94421952665512 0 0 0 0 +8363 1 1.0896 1 171.68312067965948 64.33564447665762 0 0 0 0 +426 1 4.7732 1 197.87022792171453 73.41850635161805 0 0 0 0 +442 1 4.6735 1 208.73094035085947 83.40566277358137 0 0 0 0 +455 1 4.6375 1 192.43214721079082 71.93534546134141 0 0 0 0 +467 1 4.5825 1 187.96905639420766 75.33468166003446 0 0 0 0 +483 1 4.4778 1 193.8251126485219 67.6698018281516 0 0 0 0 +2957 1 1.8454 1 212.85710359526945 109.38880303576833 0 0 0 0 +559 1 4.1755 1 175.07909733893186 89.77381694958909 0 0 0 0 +572 1 4.1201 1 211.28684241419845 70.87606391589836 0 0 0 0 +8040 1 1.1122 1 183.78561135233485 70.62996794343888 0 0 0 0 +612 1 3.9842 1 204.5999906516763 71.49061208709865 0 0 0 0 +7696 1 1.1368 1 171.2778251852863 98.49547198584287 0 0 0 0 +770 1 3.6458 1 201.43003797654438 102.97342829289752 0 0 0 0 +866 1 3.4332 1 188.0232378774769 102.88874898267562 0 0 0 0 +9271 1 1.0381 1 186.87092456468122 69.22916637430373 0 0 0 0 +915 1 3.3286 1 196.44070699771146 102.21551429115691 0 0 0 0 +938 1 3.2773 1 209.68902828606429 75.23663383403489 0 0 0 0 +7457 1 1.1564 1 175.9905914823837 72.30956771039985 0 0 0 0 +9128 1 1.0458 1 211.10476621798207 109.24664550207122 0 0 0 0 +1025 1 3.1432 1 194.44050016661353 75.11452360454876 0 0 0 0 +1042 1 3.1059 1 210.9353839472531 100.1156001586602 0 0 0 0 +1043 1 3.0979 1 194.0701393721792 78.78289726000764 0 0 0 0 +1093 1 3.0275 1 183.67352038957458 100.35032352846493 0 0 0 0 +7195 1 1.1784 1 175.4184211840361 104.60649615270404 0 0 0 0 +1177 1 2.9293 1 196.99701743317843 78.84624879591979 0 0 0 0 +1237 1 2.8655 1 213.93959544432167 72.97003700237855 0 0 0 0 +1240 1 2.8611 1 211.940302255201 81.33603374566246 0 0 0 0 +1262 1 2.8399 1 186.35780001671733 72.05092249627059 0 0 0 0 +1263 1 2.839 1 188.74883273042633 78.93116610256496 0 0 0 0 +1289 1 2.8029 1 211.03979319621916 95.61391359769087 0 0 0 0 +7237 1 1.1751 1 176.46312468161392 77.02817709805176 0 0 0 0 +6953 1 1.1981 1 180.48121001631608 73.90466843841995 0 0 0 0 +1407 1 2.6733 1 217.44337456794645 73.01153415544182 0 0 0 0 +6656 1 1.2266 1 180.04418631844015 101.07946214911749 0 0 0 0 +1429 1 2.6497 1 194.1293667176738 104.0410834200773 0 0 0 0 +3107 1 1.7957 1 177.540906601451 95.33497069674388 0 0 0 0 +1540 1 2.5364 1 200.79008275802974 71.30463820987335 0 0 0 0 +1555 1 2.5308 1 205.15351244060594 83.69565485052811 0 0 0 0 +1571 1 2.5163 1 188.97742150531187 71.9956798400983 0 0 0 0 +1587 1 2.5042 1 192.37235464292593 106.9771364714706 0 0 0 0 +1597 1 2.4979 1 182.22497689843786 78.35123276581444 0 0 0 0 +1598 1 2.4953 1 198.93467647986333 68.36735359919237 0 0 0 0 +1647 1 2.4548 1 203.8974217166333 67.42667399212971 0 0 0 0 +4134 1 1.561 1 175.26510308814045 99.31355567061257 0 0 0 0 +1691 1 2.4289 1 191.69401806454493 104.64546365373133 0 0 0 0 +1710 1 2.4158 1 180.09438022708773 79.38308575963441 0 0 0 0 +5610 1 1.3357 1 179.46429189227192 72.29326267862234 0 0 0 0 +526 1 4.277 1 179.05207725558165 76.2164903569683 0 0 0 0 +8365 1 1.0895 1 176.35100369736995 74.91568133167709 0 0 0 0 +1874 1 2.3168 1 202.26203637239067 69.4554289212418 0 0 0 0 +1885 1 2.3107 1 186.31714099776423 78.29297328394361 0 0 0 0 +1913 1 2.2907 1 179.55679852100155 89.58613268005594 0 0 0 0 +1955 1 2.2683 1 182.08580609825617 98.27920208969103 0 0 0 0 +1962 1 2.2633 1 201.89258281764032 85.24751828862236 0 0 0 0 +6133 1 1.2804 1 174.3986125597975 98.0041219785786 0 0 0 0 +2038 1 2.2195 1 203.66991759596766 87.81906323282603 0 0 0 0 +2095 1 2.1856 1 204.0010215769092 85.69091753827027 0 0 0 0 +2099 1 2.1845 1 177.2655653728053 101.89723964765557 0 0 0 0 +2108 1 2.1783 1 209.57895376087566 93.67406846329536 0 0 0 0 +5951 1 1.2996 1 172.08331062739526 92.07080590701172 0 0 0 0 +2118 1 2.1709 1 210.29497615622594 79.20801742500498 0 0 0 0 +2156 1 2.1546 1 192.48121038162418 76.69932897841618 0 0 0 0 +3583 1 1.6744 1 203.5597125210831 115.04519576625592 0 0 0 0 +2165 1 2.15 1 181.9997056315958 80.63484930063241 0 0 0 0 +2177 1 2.1458 1 212.01914554941553 83.8154604850333 0 0 0 0 +2197 1 2.1396 1 207.50370736954457 70.60880054806904 0 0 0 0 +3427 1 1.71 1 213.38901283790432 111.05939731947885 0 0 0 0 +2252 1 2.1172 1 205.11564067558382 90.03780422774207 0 0 0 0 +4585 1 1.4827 1 200.07271336074038 114.14311678522061 0 0 0 0 +2293 1 2.0974 1 207.23001437108294 74.25415497127983 0 0 0 0 +2307 1 2.0869 1 179.71471686269317 91.76362364700996 0 0 0 0 +2326 1 2.0771 1 183.40693755372453 76.43332614751185 0 0 0 0 +2332 1 2.0762 1 205.6041731732249 87.04550487049116 0 0 0 0 +2334 1 2.0748 1 190.51526307375505 77.2711615433911 0 0 0 0 +7551 1 1.1481 1 176.16798381833541 100.64381886324493 0 0 0 0 +2432 1 2.0342 1 221.92173002673727 66.83419417913136 0 0 0 0 +2486 1 2.0147 1 190.34903555668004 107.95878912786489 0 0 0 0 +3063 1 1.8088 1 185.2415252349051 102.09130793040471 0 0 0 0 +2508 1 2.0071 1 211.93883423520626 105.5136809498041 0 0 0 0 +3899 1 1.6084 1 180.85163239014716 106.4524831369117 0 0 0 0 +2573 1 1.98 1 205.36142850410275 109.8793480441173 0 0 0 0 +2577 1 1.9794 1 203.15744872348932 90.45298715940073 0 0 0 0 +7060 1 1.1892 1 172.78977329664568 91.10539990240598 0 0 0 0 +2641 1 1.9525 1 174.88192326190506 86.73813387592514 0 0 0 0 +2693 1 1.9324 1 192.2558609183148 64.4216138609097 0 0 0 0 +2768 1 1.9062 1 206.10201830674242 68.2035257902756 0 0 0 0 +2814 1 1.8906 1 204.16660269584318 103.30054643870217 0 0 0 0 +2818 1 1.8897 1 181.2611300676004 100.14719622309876 0 0 0 0 +2876 1 1.8685 1 203.04049203522405 92.3520780579759 0 0 0 0 +2889 1 1.8647 1 199.30726384955645 101.2509114589321 0 0 0 0 +2901 1 1.8628 1 210.06044363034846 108.28743142508127 0 0 0 0 +2914 1 1.8596 1 197.79903057031933 104.31126205082093 0 0 0 0 +2925 1 1.8561 1 200.2358750116946 83.10577907192051 0 0 0 0 +5521 1 1.3487 1 179.02562334311773 95.70767209992401 0 0 0 0 +2964 1 1.8439 1 181.8445382618187 101.87136055745837 0 0 0 0 +3072 1 1.8068 1 184.3103060160505 78.07711137237123 0 0 0 0 +3000 1 1.8299 1 187.79259814164504 70.26523118479253 0 0 0 0 +3092 1 1.8011 1 191.67079889853585 102.54988524113085 0 0 0 0 +3853 1 1.6168 1 183.89787285149552 65.69495614012357 0 0 0 0 +3160 1 1.7769 1 210.90193921071406 102.52031496612504 0 0 0 0 +3167 1 1.7749 1 196.92659269031788 67.68486268810696 0 0 0 0 +3719 1 1.6441 1 177.28632162161261 73.94512256636347 0 0 0 0 +3274 1 1.7464 1 205.80206658916774 108.20742656801458 0 0 0 0 +3357 1 1.7258 1 197.11549054846944 69.38848264315064 0 0 0 0 +3397 1 1.7153 1 213.65492878856128 82.87663152756602 0 0 0 0 +3408 1 1.7126 1 201.84831596592613 67.56559577577843 0 0 0 0 +5527 1 1.3482 1 178.34039072050817 72.93967721116478 0 0 0 0 +3492 1 1.6945 1 195.69718438610016 77.05661706059396 0 0 0 0 +3518 1 1.6902 1 198.91651458403808 81.94075061606955 0 0 0 0 +9722 1 1.0142 1 207.6370012431468 75.74579298208016 0 0 0 0 +3618 1 1.6681 1 177.37829908356332 79.6874946786156 0 0 0 0 +3731 1 1.6429 1 194.2522331860241 106.15037525770808 0 0 0 0 +2107 1 2.1788 1 175.15653948788977 106.22644869417111 0 0 0 0 +3811 1 1.6258 1 213.01189316126258 67.28461543695288 0 0 0 0 +8154 1 1.1044 1 178.82967497205036 105.40402952152358 0 0 0 0 +650 1 3.8877 1 184.66037041318742 68.29330838412871 0 0 0 0 +4123 1 1.5629 1 176.3101568095133 78.36541609069141 0 0 0 0 +3845 1 1.6186 1 195.28973868885566 107.36783820447059 0 0 0 0 +3891 1 1.6099 1 208.46494329280978 78.81334436342972 0 0 0 0 +251 1 6.1948 1 207.08301645205265 113.37956002617541 0 0 0 0 +3959 1 1.5944 1 197.58100934097354 81.01256111473155 0 0 0 0 +4004 1 1.5828 1 207.18595497205035 72.42933023807682 0 0 0 0 +4016 1 1.5805 1 198.47245555604272 70.32632862807672 0 0 0 0 +3271 1 1.7471 1 210.7973666319441 114.59014069350485 0 0 0 0 +4039 1 1.5761 1 178.4996845373271 93.10031584536877 0 0 0 0 +4061 1 1.5729 1 180.2089961272385 94.89873390373711 0 0 0 0 +4084 1 1.5689 1 210.91963232828869 97.7873732431103 0 0 0 0 +4773 1 1.452 1 182.6580211209718 70.0256191869519 0 0 0 0 +4136 1 1.5608 1 214.46092119832994 68.97160832707968 0 0 0 0 +4142 1 1.5599 1 217.69737293952366 70.76009198721376 0 0 0 0 +4176 1 1.5534 1 185.2437301735165 76.70681142462784 0 0 0 0 +4185 1 1.5519 1 205.18552392049077 65.94831261203079 0 0 0 0 +4200 1 1.5497 1 208.83215681595348 80.31053763107462 0 0 0 0 +7918 1 1.1196 1 179.39819967742358 73.54162394543756 0 0 0 0 +4215 1 1.5472 1 206.91304646945486 85.85184886775254 0 0 0 0 +4278 1 1.5366 1 196.33394212382 70.76208008182266 0 0 0 0 +4304 1 1.5321 1 184.58706211398348 80.63851682743154 0 0 0 0 +4305 1 1.5318 1 191.92152145169777 74.96258889423184 0 0 0 0 +4318 1 1.5296 1 213.90863920307257 65.99899686203824 0 0 0 0 +5525 1 1.3483 1 186.68047685362635 107.47242173394189 0 0 0 0 +8887 1 1.058 1 177.8861044503565 106.50151163703573 0 0 0 0 +9938 1 1.0034 1 211.49144306035595 93.76035006512612 0 0 0 0 +4352 1 1.5226 1 211.93499421824703 103.77274686407388 0 0 0 0 +4380 1 1.5184 1 173.60188455296912 92.17542980269535 0 0 0 0 +4397 1 1.5152 1 208.55671890676334 73.08624426312794 0 0 0 0 +4403 1 1.5147 1 191.8531046665751 78.328063113206 0 0 0 0 +4408 1 1.5136 1 211.73641643513852 108.18617968538854 0 0 0 0 +7576 1 1.1459 1 182.20970802470313 106.55292227839693 0 0 0 0 +4417 1 1.5123 1 202.19027788899106 72.73121735873069 0 0 0 0 +8174 1 1.1027 1 178.7880082144483 104.33663442970216 0 0 0 0 +5264 1 1.3805 1 209.33909333989592 109.72566913999773 0 0 0 0 +4567 1 1.4862 1 190.80987718427016 79.34231582943512 0 0 0 0 +7004 1 1.1939 1 175.97714345041874 75.96979356723409 0 0 0 0 +4614 1 1.4789 1 197.90254731686196 100.38479407011246 0 0 0 0 +4650 1 1.4735 1 188.7775991595164 108.69558853626272 0 0 0 0 +4665 1 1.47 1 203.58854181664506 104.9562048571435 0 0 0 0 +4674 1 1.4684 1 190.57556492821877 106.23883348683238 0 0 0 0 +4696 1 1.4653 1 218.9123842803472 71.62190378181876 0 0 0 0 +1564 1 2.523 1 198.154967108858 114.24411376717627 0 0 0 0 +4740 1 1.4577 1 216.33013291302814 70.16302004794873 0 0 0 0 +4774 1 1.4519 1 205.1435644921956 92.15343157852361 0 0 0 0 +4788 1 1.4508 1 180.17298823004737 93.42947351138278 0 0 0 0 +4822 1 1.4458 1 201.83360025605955 83.44554303068482 0 0 0 0 +4860 1 1.44 1 176.02447156012795 94.80838417035352 0 0 0 0 +4898 1 1.4328 1 211.05697744327279 106.95425197862345 0 0 0 0 +4925 1 1.4291 1 209.1748182828676 77.52071875658041 0 0 0 0 +4949 1 1.4257 1 199.86470681260533 98.65264120835506 0 0 0 0 +4952 1 1.4256 1 189.8008017201934 104.48270107162806 0 0 0 0 +7658 1 1.1395 1 187.3358280193398 106.4479186075123 0 0 0 0 +4965 1 1.4241 1 203.18518317020246 83.93157259095211 0 0 0 0 +4974 1 1.4235 1 203.3718848993687 113.52236876907737 0 0 0 0 +3317 1 1.7358 1 174.74146475827067 100.85188329267514 0 0 0 0 +5049 1 1.4135 1 186.42246518288587 101.12979886402677 0 0 0 0 +5076 1 1.4082 1 197.64923273351698 76.77227579907178 0 0 0 0 +2823 1 1.8873 1 185.67966555784216 65.60819080401565 0 0 0 0 +5118 1 1.4003 1 206.93104785713672 92.40044767146364 0 0 0 0 +8588 1 1.0761 1 221.36923247750525 68.27777603891354 0 0 0 0 +5246 1 1.3827 1 211.06366512522288 85.24781067325917 0 0 0 0 +6840 1 1.2084 1 186.2954690250433 70.13583223588583 0 0 0 0 +5295 1 1.3766 1 184.2290871923217 81.93649810251041 0 0 0 0 +5308 1 1.3747 1 183.68058356003183 79.55417995849965 0 0 0 0 +5326 1 1.3723 1 216.8254374733171 75.5316005337477 0 0 0 0 +9207 1 1.0414 1 178.1132051041477 107.4964169025444 0 0 0 0 +5446 1 1.3569 1 187.1179955614749 80.20670457060773 0 0 0 0 +3183 1 1.7698 1 181.99741982586548 103.6051828482334 0 0 0 0 +5485 1 1.3523 1 193.18544418609662 102.2918397662333 0 0 0 0 +5498 1 1.351 1 177.23308439314968 88.13499913071499 0 0 0 0 +5284 1 1.3778 1 183.33667908181206 73.5205407489944 0 0 0 0 +5568 1 1.3418 1 220.57746427857603 69.17876453967777 0 0 0 0 +595 1 4.037 1 213.6022399951208 115.0475507916045 0 0 0 0 +5659 1 1.3317 1 187.7455512131027 105.24122225110898 0 0 0 0 +3828 1 1.6208 1 219.66653337824232 70.32509870562075 0 0 0 0 +5722 1 1.324 1 214.33107480455837 81.56331136673208 0 0 0 0 +5759 1 1.3192 1 200.87791232397518 73.20476057097396 0 0 0 0 +3298 1 1.7403 1 176.12375528743073 96.34508059849435 0 0 0 0 +5806 1 1.3139 1 198.72741594233963 102.74890633406169 0 0 0 0 +3173 1 1.7728 1 184.094437491964 72.03286813119709 0 0 0 0 +5868 1 1.3086 1 177.7859868969843 89.31609221936274 0 0 0 0 +2190 1 2.1438 1 177.8831023524621 91.00992182230114 0 0 0 0 +5908 1 1.3043 1 181.759897134513 76.565402842311 0 0 0 0 +3812 1 1.6258 1 220.3012651086099 66.05524665974642 0 0 0 0 +429 1 4.7621 1 178.35142614272922 98.65292368616771 0 0 0 0 +9767 1 1.0116 1 210.3250144530191 77.27299222773019 0 0 0 0 +5966 1 1.298 1 204.82144068107803 107.06884181980965 0 0 0 0 +8254 1 1.0975 1 184.48191447174656 73.63181891461079 0 0 0 0 +6890 1 1.2032 1 208.57830245610185 108.65988624070698 0 0 0 0 +9628 1 1.0194 1 195.13455781376513 71.1208377675167 0 0 0 0 +6082 1 1.2853 1 212.90190664149233 86.6860989638494 0 0 0 0 +9522 1 1.0246 1 210.4928846740175 110.03962222759031 0 0 0 0 +6174 1 1.2749 1 195.5914546926964 105.56484819834763 0 0 0 0 +6196 1 1.2718 1 177.03648829461943 93.9108690892562 0 0 0 0 +6229 1 1.2678 1 190.69268237105797 74.3076371100039 0 0 0 0 +6233 1 1.2671 1 185.56301316911006 73.81987731911588 0 0 0 0 +6256 1 1.2645 1 198.882369674047 99.50208805095988 0 0 0 0 +5869 1 1.3085 1 217.47723323465087 63.7854018585946 0 0 0 0 +6307 1 1.2605 1 190.21485591655187 102.17936779683232 0 0 0 0 +6325 1 1.259 1 184.97413665444228 79.38467856940238 0 0 0 0 +6329 1 1.2587 1 206.14633688596305 91.34752832215588 0 0 0 0 +443 1 4.6714 1 184.75468621268814 105.18202111643639 0 0 0 0 +6386 1 1.2527 1 213.82748375434875 70.1691005002031 0 0 0 0 +6416 1 1.2502 1 176.7777781488529 106.73497780164762 0 0 0 0 +6398 1 1.2519 1 178.82008293207411 94.4504143248531 0 0 0 0 +6434 1 1.2487 1 208.75636358929427 71.73205605324765 0 0 0 0 +6526 1 1.2402 1 213.54102311093817 84.33741412524489 0 0 0 0 +6559 1 1.2364 1 189.50996427205533 70.20140519425625 0 0 0 0 +1003 1 3.1751 1 181.6631203792617 72.08963445976882 0 0 0 0 +6597 1 1.2317 1 208.112282113997 76.76778646173192 0 0 0 0 +6618 1 1.2306 1 207.57658828637022 80.76998019280259 0 0 0 0 +6707 1 1.2214 1 209.87069021482782 73.05052993182449 0 0 0 0 +6731 1 1.2195 1 183.33177361069377 82.74307362182377 0 0 0 0 +1787 1 2.3642 1 182.00951161128717 74.7823102361906 0 0 0 0 +6770 1 1.2158 1 192.11796421790763 79.56161223550137 0 0 0 0 +6772 1 1.2157 1 202.17334064346514 86.96512628487694 0 0 0 0 +6138 1 1.2799 1 208.02455561969987 109.76994499482238 0 0 0 0 +6822 1 1.2103 1 190.42276825919072 103.36292317523592 0 0 0 0 +3431 1 1.7089 1 175.92031242833355 103.28659568671841 0 0 0 0 +6888 1 1.2032 1 202.60122297060698 89.02660824705859 0 0 0 0 +6891 1 1.2029 1 213.09968518304171 85.46547596981421 0 0 0 0 +6934 1 1.1994 1 199.29001285096604 104.06563826134831 0 0 0 0 +6940 1 1.199 1 180.12677244537147 96.27478705470017 0 0 0 0 +6995 1 1.1947 1 205.64782783399116 85.44064943317437 0 0 0 0 +2845 1 1.8808 1 184.75698474673388 75.0867335921335 0 0 0 0 +7011 1 1.1932 1 216.00044903399754 74.61325915259077 0 0 0 0 +7059 1 1.1892 1 190.62178954669855 69.72250505540717 0 0 0 0 +9610 1 1.0199 1 175.03893266579198 97.09783101881804 0 0 0 0 +7179 1 1.1798 1 177.19897729105364 92.71779547944277 0 0 0 0 +9753 1 1.0127 1 212.9399330458788 107.96828821764436 0 0 0 0 +9896 1 1.0052 1 194.9822838989894 73.13633874972172 0 0 0 0 +7218 1 1.1765 1 211.75789658512537 92.70078474134354 0 0 0 0 +9731 1 1.0137 1 176.07434057832825 79.62037312135608 0 0 0 0 +7398 1 1.1616 1 178.46230495331866 88.29320532015878 0 0 0 0 +9895 1 1.0053 1 203.87204275265552 69.13123426120835 0 0 0 0 +7430 1 1.1589 1 212.4001506968312 107.02695036341228 0 0 0 0 +7456 1 1.1564 1 208.0525344035913 93.00909734171324 0 0 0 0 +7484 1 1.1541 1 210.03873761537255 80.83273812510593 0 0 0 0 +7521 1 1.151 1 172.464768378187 90.01612937477452 0 0 0 0 +7527 1 1.1507 1 181.18337863853736 95.80774018899307 0 0 0 0 +7536 1 1.1497 1 210.96417493623392 73.46938899094143 0 0 0 0 +7552 1 1.1481 1 175.6235827301881 101.92835764972335 0 0 0 0 +7560 1 1.1471 1 214.5097390367338 71.10060391588576 0 0 0 0 +7570 1 1.1463 1 200.80533914372828 100.68231267878028 0 0 0 0 +7603 1 1.1438 1 191.86582681613675 65.79632070239481 0 0 0 0 +7622 1 1.1428 1 211.70680509141883 74.38442230112511 0 0 0 0 +7644 1 1.1407 1 180.842337815736 97.1616942193274 0 0 0 0 +7656 1 1.1398 1 175.54947152550716 98.01491702538632 0 0 0 0 +3259 1 1.7506 1 179.24353981957577 106.71795128235573 0 0 0 0 +7718 1 1.135 1 212.67999153011246 65.64694616804984 0 0 0 0 +7772 1 1.1307 1 182.74148269188126 83.65933621379813 0 0 0 0 +7774 1 1.1306 1 199.98872401427943 99.9175389526253 0 0 0 0 +9967 1 1.0022 1 206.2687421524899 69.64318993340893 0 0 0 0 +9908 1 1.0047 1 218.5214760213185 64.24259272786148 0 0 0 0 +8342 1 1.091 1 213.5905739333633 112.45500101200437 0 0 0 0 +7799 1 1.129 1 178.47458327995565 78.85596122036245 0 0 0 0 +7843 1 1.1263 1 208.90373270568236 69.82508109382572 0 0 0 0 +7907 1 1.1205 1 194.29191620547138 101.8310442021766 0 0 0 0 +7915 1 1.1197 1 185.84125247474978 80.97358294226649 0 0 0 0 +7504 1 1.152 1 173.49451867842777 108.3956452130504 0 0 0 0 +6285 1 1.2619 1 209.84455293147974 110.93693121002708 0 0 0 0 +7998 1 1.1146 1 215.72575595459745 73.54946521777813 0 0 0 0 +8039 1 1.1122 1 195.26813574497444 72.14029717653747 0 0 0 0 +8078 1 1.1087 1 189.48374619254713 105.64707124260349 0 0 0 0 +8187 1 1.1021 1 213.2215747514198 68.62295302702516 0 0 0 0 +6801 1 1.2126 1 174.88125204526528 71.97729488336357 0 0 0 0 +8233 1 1.0993 1 213.73172474568707 80.59494110900303 0 0 0 0 +8235 1 1.0993 1 212.17638655487616 68.44819771486786 0 0 0 0 +8277 1 1.0965 1 215.06516629941405 70.14112632258727 0 0 0 0 +8306 1 1.0942 1 188.45597649697817 107.48734974849651 0 0 0 0 +8312 1 1.0938 1 196.28883473100976 80.65428861541866 0 0 0 0 +8329 1 1.0924 1 212.04973479607693 85.91955105563468 0 0 0 0 +8368 1 1.0891 1 219.33199729721534 69.06075348364678 0 0 0 0 +8371 1 1.089 1 205.78464505061976 73.68109756574205 0 0 0 0 +8393 1 1.0879 1 177.55116893568677 78.35444598095587 0 0 0 0 +8420 1 1.0864 1 218.47799321162202 69.7189202671208 0 0 0 0 +8442 1 1.0849 1 206.186409181068 82.25993972805861 0 0 0 0 +8453 1 1.0841 1 212.04465018115516 73.34854305648952 0 0 0 0 +1478 1 2.5969 1 179.9417941029489 102.94233035378653 0 0 0 0 +8482 1 1.0822 1 200.63895860636407 68.91041814905716 0 0 0 0 +8498 1 1.0811 1 195.6053103591076 69.73778591291031 0 0 0 0 +8513 1 1.0801 1 219.92248469690583 68.18686000151396 0 0 0 0 +8527 1 1.0794 1 194.0043843607963 107.62779056231878 0 0 0 0 +8720 1 1.0686 1 215.7542292526039 72.20653087557639 0 0 0 0 +8723 1 1.0685 1 185.9706343027659 79.92103011064859 0 0 0 0 +8728 1 1.0682 1 206.86043568817647 109.78028158765076 0 0 0 0 +4204 1 1.5489 1 189.89679556714788 109.67320783915235 0 0 0 0 +8802 1 1.0631 1 212.03613420733896 101.82843946830138 0 0 0 0 +8803 1 1.0631 1 215.57600514964892 71.15573056380602 0 0 0 0 +3870 1 1.6132 1 180.1184481883867 105.0264637328611 0 0 0 0 +8848 1 1.0604 1 204.36265174337453 105.96434720233405 0 0 0 0 +8087 1 1.1082 1 177.12584816403566 107.84414093401398 0 0 0 0 +8921 1 1.0564 1 173.78028710253088 87.67125455236175 0 0 0 0 +8982 1 1.0535 1 216.57597893891463 71.3921432698501 0 0 0 0 +8992 1 1.053 1 206.35421722170153 65.3958249741174 0 0 0 0 +9051 1 1.05 1 200.4948334777874 67.5914146427126 0 0 0 0 +5511 1 1.3497 1 188.52852432673475 106.30973881323784 0 0 0 0 +9073 1 1.0486 1 196.80419136399547 112.55344767765254 0 0 0 0 +9102 1 1.047 1 182.40082302846145 82.15570917834388 0 0 0 0 +9121 1 1.0461 1 196.11813344845748 104.43229904068043 0 0 0 0 +9132 1 1.0455 1 176.0521336407923 80.64365678467982 0 0 0 0 +9223 1 1.0408 1 220.50202892693918 67.34810102617635 0 0 0 0 +9226 1 1.0407 1 204.8762075541361 68.99835459135437 0 0 0 0 +9723 1 1.0141 1 205.5727940063545 64.7647052919661 0 0 0 0 +9233 1 1.0404 1 214.79704961393563 80.47480162070764 0 0 0 0 +9949 1 1.0031 1 191.42500983755352 68.9830277770815 0 0 0 0 +9309 1 1.0357 1 207.30281012543904 69.04296879541411 0 0 0 0 +9323 1 1.0349 1 194.68177413199055 70.24275576384899 0 0 0 0 +9354 1 1.0335 1 176.59754901148284 91.82927384269833 0 0 0 0 +9394 1 1.0311 1 199.97920102320603 69.74994490118999 0 0 0 0 +9413 1 1.0299 1 204.17610258630296 91.48110627017192 0 0 0 0 +9486 1 1.0266 1 209.61814232512714 101.71485512154236 0 0 0 0 +9500 1 1.0259 1 205.60485538685532 88.57099906605319 0 0 0 0 +7894 1 1.1218 1 174.97316665773405 107.85445073604873 0 0 0 0 +9514 1 1.025 1 196.77521619878712 105.39205830882916 0 0 0 0 +9560 1 1.0224 1 181.7677422400877 96.69217154549382 0 0 0 0 +5301 1 1.3757 1 207.29298653801732 108.66914825309222 0 0 0 0 +9581 1 1.0216 1 180.14463846007993 87.99984666381724 0 0 0 0 +4208 1 1.5483 1 181.67860309398245 105.17932826493605 0 0 0 0 +5254 1 1.3814 1 220.9965605889208 64.77657159026874 0 0 0 0 +1106 1 3.0109 1 223.15652837328958 64.68056632730685 0 0 0 0 +9082 1 1.0481 1 176.3407492402753 108.53461909795087 0 0 0 0 +6341 1 1.2578 1 211.60698830681892 110.23667005527007 0 0 0 0 +7788 1 1.1296 1 202.19406430658114 113.49269261421317 0 0 0 0 +9302 1 1.0362 1 187.64746881785015 108.15565966075002 0 0 0 0 +1645 1 2.4557 1 175.40749335406397 93.0183570444425 0 0 0 0 +8842 1 1.0607 1 201.22779349328724 113.80793883865394 0 0 0 0 +1086 1 3.0375 1 211.4724529712464 112.32004605745902 0 0 0 0 +291 1 5.8215 1 193.30429721668597 110.9862841419726 0 0 0 0 +5044 1 1.4141 1 219.61510654880763 64.70906640822406 0 0 0 0 +7963 1 1.1168 1 172.69197999321167 109.86288914484432 0 0 0 0 +68 1 11.2975 1 177.48310130194437 66.32174941956484 0 0 0 0 +9839 1 1.0083 1 202.33018955022385 114.53239419806208 0 0 0 0 +8397 1 1.0877 1 175.37673839616178 108.85148672338242 0 0 0 0 +8529 1 1.079 1 176.01725899978643 107.57408016499718 0 0 0 0 +2450 1 2.0272 1 202.01480994442923 116.00015455894916 0 0 0 0 +2507 1 2.0075 1 195.98317852222607 113.81431365153347 0 0 0 0 +2926 1 1.8561 1 211.0046583037928 116.34261086158287 0 0 0 0 +9561 1 1.0223 1 201.1059104477124 114.81740562550385 0 0 0 0 +6284 1 1.2619 1 198.9943321004096 117.09538323354545 0 0 0 0 +2882 1 1.8677 1 187.11888240789838 63.984796598715654 0 0 0 0 +6041 1 1.2903 1 194.4763765460312 114.33161347317711 0 0 0 0 +1860 1 2.325 1 197.22212754269194 116.98917694119248 0 0 0 0 +2532 1 1.9987 1 200.0374016125464 115.86875512148589 0 0 0 0 +8903 1 1.0573 1 198.53979167981532 115.97406283943351 0 0 0 0 +6368 1 1.2552 1 196.65810813691255 115.2930249699205 0 0 0 0 +2410 1 2.0447 1 174.1984897661265 109.79331419626362 0 0 0 0 +1957 1 2.2664 1 192.87197202405525 114.96420062331461 0 0 0 0 +5168 1 1.3925 1 172.27456981060064 108.74750165063486 0 0 0 0 +7667 1 1.1387 1 173.98647984497478 107.37125889124329 0 0 0 0 +4220 1 1.5466 1 195.554606155983 116.05081065139102 0 0 0 0 +1264 1 2.839 1 173.01666857759758 99.41400921399809 0 0 0 0 +4710 1 1.4631 1 190.64967670571838 64.09480202328022 0 0 0 0 +333 1 5.4673 1 172.33403934510093 95.39580041824156 0 0 0 0 +8364 1 1.0895 1 173.64265705473386 111.23172638383546 0 0 0 0 +9166 1 1.0436 1 194.41672592882333 115.48943303596113 0 0 0 0 +1069 1 3.062 1 170.99728361196236 116.95457766781996 0 0 0 0 +2110 1 2.1773 1 206.85308149733686 63.85965007926201 0 0 0 0 +7779 1 1.1304 1 212.26469336447187 117.14222461078333 0 0 0 0 +3584 1 1.6743 1 172.62127773494348 107.32068876219077 0 0 0 0 +27 1 19.5342 1 182.2340587493248 116.88217528106746 0 0 0 0 +269 1 6.0214 1 172.0356157887539 103.61039595466048 0 0 0 0 +3631 1 1.6656 1 185.4228989307201 63.868318512990626 0 0 0 0 +2358 1 2.0624 1 183.61792953184374 63.92019886219912 0 0 0 0 +3839 1 1.6193 1 207.27715533764552 117.23837871496883 0 0 0 0 +2393 1 2.0504 1 209.1219913250072 116.8067479334991 0 0 0 0 +5449 1 1.3566 1 170.9524621625648 108.85595261615445 0 0 0 0 +4962 1 1.4247 1 171.0312101068552 100.10923063711844 0 0 0 0 +3253 1 1.7523 1 171.02085128922425 65.53861007990123 0 0 0 0 +3025 1 1.8194 1 170.89247616122734 107.32054932388395 0 0 0 0 +8795 1 1.0637 1 170.9741021596659 91.76808658416279 0 0 0 0 +23 1 20.9769 1 184.87225535572745 146.15598950355164 0 0 0 0 +25 1 20.6737 1 204.28415071783135 130.10180874541948 0 0 0 0 +49 1 13.3405 1 216.20504416453701 150.86408936820558 0 0 0 0 +109 1 9.4084 1 173.11501766576518 134.67812102799294 0 0 0 0 +207 1 6.6742 1 214.8086369761529 141.1098079816499 0 0 0 0 +8323 1 1.0926 1 199.89940017597345 150.2845816805735 0 0 0 0 +226 1 6.3752 1 191.65736404006526 125.53417091458313 0 0 0 0 +5726 1 1.3233 1 191.45579043239735 121.70450624264326 0 0 0 0 +2386 1 2.0539 1 224.36284352694992 154.98564775385267 0 0 0 0 +7210 1 1.1774 1 173.4090893306054 123.5538184254846 0 0 0 0 +276 1 5.9573 1 214.46333666038754 119.90775066267989 0 0 0 0 +9281 1 1.0377 1 218.78241700200508 165.10083968622249 0 0 0 0 +343 1 5.3725 1 217.567250681463 159.98968951793776 0 0 0 0 +369 1 5.1589 1 196.8731102209199 150.99338361244 0 0 0 0 +377 1 5.0809 1 184.0980958728006 128.92049517871746 0 0 0 0 +401 1 4.9353 1 199.39890795020193 145.01245372141287 0 0 0 0 +8197 1 1.1018 1 195.14013840902075 124.28745715389299 0 0 0 0 +413 1 4.8629 1 186.8487526229996 132.89524265323783 0 0 0 0 +417 1 4.8236 1 206.2639433979847 142.608769717015 0 0 0 0 +6168 1 1.2756 1 217.233713929238 137.38845188158442 0 0 0 0 +8130 1 1.1056 1 221.14737307909468 128.41594781380655 0 0 0 0 +432 1 4.7465 1 201.32517536771203 152.80266671698365 0 0 0 0 +8223 1 1.1002 1 194.03139355656546 152.26743482873923 0 0 0 0 +503 1 4.3596 1 196.57096971699346 140.0389711047562 0 0 0 0 +6154 1 1.2777 1 181.21445789872854 164.4946824792336 0 0 0 0 +406 1 4.9037 1 221.5232282838139 141.4965025318042 0 0 0 0 +596 1 4.0355 1 204.96283480998906 150.57356301177182 0 0 0 0 +619 1 3.9677 1 203.24979486180106 147.0893335329886 0 0 0 0 +690 1 3.8067 1 217.05452109405044 129.23068900762698 0 0 0 0 +722 1 3.7443 1 206.39490049486838 154.06478660947542 0 0 0 0 +6520 1 1.2411 1 223.44371312216288 151.02553606844566 0 0 0 0 +811 1 3.5623 1 193.6982216083439 117.7128834208727 0 0 0 0 +7578 1 1.1457 1 178.65224841133315 127.64595610203365 0 0 0 0 +910 1 3.3347 1 189.59833526318798 129.8944407427018 0 0 0 0 +577 1 4.1071 1 204.4777405082312 117.77162507195803 0 0 0 0 +1047 1 3.0941 1 196.46757462192355 121.17187264584079 0 0 0 0 +863 1 3.4373 1 223.44222008827768 162.76521901944406 0 0 0 0 +1166 1 2.9367 1 216.7364057047478 132.5253075159046 0 0 0 0 +8985 1 1.0534 1 197.8478064446035 147.54820529554314 0 0 0 0 +1203 1 2.9017 1 179.53746120297538 131.79525519165796 0 0 0 0 +5197 1 1.3887 1 223.2236996132048 129.26663981888797 0 0 0 0 +1217 1 2.8912 1 221.59668269936262 157.3252602967155 0 0 0 0 +1235 1 2.8722 1 193.47673047529614 121.21807841488739 0 0 0 0 +1243 1 2.8586 1 181.74208419598455 133.51120626131976 0 0 0 0 +1255 1 2.8456 1 208.22378051075782 151.42519918218645 0 0 0 0 +1256 1 2.8451 1 191.1705289379239 134.5384766906334 0 0 0 0 +8734 1 1.068 1 202.02763762288032 143.65577959556126 0 0 0 0 +8828 1 1.0617 1 196.88466215118456 147.90745336072416 0 0 0 0 +4892 1 1.4338 1 172.59981628611445 145.26642000830398 0 0 0 0 +1456 1 2.6126 1 199.87660794999712 140.82615605002067 0 0 0 0 +1469 1 2.6045 1 220.94900225933554 164.24998590988523 0 0 0 0 +1979 1 2.2546 1 181.6077837307039 162.81336313964638 0 0 0 0 +1482 1 2.594 1 215.07110175028632 124.14161768847079 0 0 0 0 +6805 1 1.212 1 206.51839595135826 119.44329513697454 0 0 0 0 +7818 1 1.1277 1 192.83896334301707 155.97963620664638 0 0 0 0 +249 1 6.2144 1 172.31840229075934 127.02105673124566 0 0 0 0 +9611 1 1.0199 1 184.3896994137278 158.78870027016833 0 0 0 0 +3056 1 1.8106 1 222.46619442334188 130.60751142425966 0 0 0 0 +1689 1 2.429 1 211.87727690338895 157.1997758946125 0 0 0 0 +1701 1 2.4231 1 214.563411028467 135.33780581965777 0 0 0 0 +1788 1 2.3638 1 183.37416862863526 160.09821616550408 0 0 0 0 +7475 1 1.1547 1 200.1525809883078 117.43565360231752 0 0 0 0 +1898 1 2.302 1 189.0756757422488 157.22325939644685 0 0 0 0 +1925 1 2.2861 1 206.55814713288976 147.94786645768687 0 0 0 0 +1928 1 2.2844 1 191.9109123579117 136.9800844625721 0 0 0 0 +2395 1 2.0499 1 172.29193475123344 146.92117330456776 0 0 0 0 +7593 1 1.1445 1 209.62876649732658 145.39312218739477 0 0 0 0 +2026 1 2.224 1 179.29505592455652 134.33900270731556 0 0 0 0 +2053 1 2.208 1 211.00225190060547 144.17725576370492 0 0 0 0 +5956 1 1.2992 1 209.48989672798933 118.35843000646352 0 0 0 0 +2061 1 2.2061 1 180.998278157573 159.65484315202895 0 0 0 0 +2066 1 2.199 1 221.08809474197096 161.28787253974608 0 0 0 0 +8782 1 1.0643 1 216.84788431463045 135.87498409833552 0 0 0 0 +2114 1 2.1744 1 207.24198376966453 145.88784245461332 0 0 0 0 +9954 1 1.003 1 194.0862952149817 134.23116609531348 0 0 0 0 +7202 1 1.1778 1 199.37448406505797 120.34742870288227 0 0 0 0 +2166 1 2.1498 1 203.09500188743604 141.3617752703694 0 0 0 0 +3914 1 1.6048 1 210.71395254271334 119.04209302431424 0 0 0 0 +4757 1 1.4553 1 178.12615004668697 126.47943326250764 0 0 0 0 +2228 1 2.1246 1 210.53967749877447 140.61946546711332 0 0 0 0 +9358 1 1.0331 1 185.38108442056497 161.1450521793098 0 0 0 0 +2257 1 2.1148 1 210.62856623097392 120.8140306592017 0 0 0 0 +2263 1 2.1123 1 194.10667931810875 155.00339240932507 0 0 0 0 +2365 1 2.0612 1 219.850064981971 166.20992944435676 0 0 0 0 +2381 1 2.0553 1 219.87238177029397 144.33613075349666 0 0 0 0 +8045 1 1.1116 1 209.82291109950202 154.1058300779617 0 0 0 0 +8878 1 1.0587 1 219.10349618051384 128.02188196903904 0 0 0 0 +9283 1 1.0376 1 198.48304258518868 120.94786479000629 0 0 0 0 +2526 1 2.0009 1 219.91376155849244 129.30278208027153 0 0 0 0 +2465 1 2.0238 1 182.43460618535642 158.1424208154617 0 0 0 0 +6539 1 1.2385 1 178.39509353643538 129.16126586887395 0 0 0 0 +2501 1 2.0097 1 198.1169466923335 119.23896048776616 0 0 0 0 +2502 1 2.0097 1 196.31234471468417 146.50395211066976 0 0 0 0 +2534 1 1.9978 1 188.95713504890892 135.47365129245983 0 0 0 0 +2556 1 1.9874 1 191.9103392119016 132.0451487201634 0 0 0 0 +8689 1 1.0706 1 201.68229481811056 140.64392309926504 0 0 0 0 +9127 1 1.0459 1 218.5345922219703 131.7076992568087 0 0 0 0 +2593 1 1.9709 1 174.0675698647758 149.80229189651774 0 0 0 0 +499 1 4.3651 1 218.29182129757268 125.46041683803521 0 0 0 0 +2720 1 1.923 1 203.36418855231892 144.21656410905493 0 0 0 0 +2722 1 1.9228 1 195.0851959630601 136.50729765067666 0 0 0 0 +2726 1 1.9215 1 214.39537191039724 158.19660205613204 0 0 0 0 +2732 1 1.9174 1 190.1026539021857 132.44528519964746 0 0 0 0 +8063 1 1.11 1 173.69109509339933 139.89668086664886 0 0 0 0 +2879 1 1.8681 1 196.10814749962077 144.57859939984496 0 0 0 0 +2881 1 1.8678 1 201.41844686936693 142.35158162005843 0 0 0 0 +2885 1 1.8661 1 218.86386880250282 163.66294851401946 0 0 0 0 +2933 1 1.8519 1 216.9953335708059 122.74573036264658 0 0 0 0 +2944 1 1.85 1 196.1705731748756 118.75358240473767 0 0 0 0 +7809 1 1.1281 1 192.8622717145819 133.23513301425123 0 0 0 0 +7711 1 1.1354 1 210.12856709680267 147.01904801636147 0 0 0 0 +3008 1 1.8257 1 222.31270273735382 168.32648038927024 0 0 0 0 +9060 1 1.0497 1 199.2328669554255 118.20869133975583 0 0 0 0 +7675 1 1.1383 1 187.02742237102018 129.9321007569591 0 0 0 0 +3026 1 1.8192 1 185.4223680412991 159.74560962806225 0 0 0 0 +3046 1 1.813 1 186.63084956581721 126.59804003898009 0 0 0 0 +9234 1 1.0404 1 214.84168143523627 132.26312777698402 0 0 0 0 +3069 1 1.8073 1 193.39344775790283 135.68026117572708 0 0 0 0 +3071 1 1.8069 1 208.86696594262864 149.23953602514692 0 0 0 0 +3081 1 1.8055 1 221.70471749871666 166.64460330736912 0 0 0 0 +3085 1 1.803 1 222.86913437216322 165.30364186311007 0 0 0 0 +3088 1 1.8023 1 183.5906485968628 134.85265666896754 0 0 0 0 +7848 1 1.1256 1 193.87145647704762 139.83635096481976 0 0 0 0 +7810 1 1.1281 1 179.37299363446667 129.8027353555123 0 0 0 0 +8869 1 1.059 1 212.9688893432611 158.53860976623247 0 0 0 0 +3168 1 1.7746 1 180.81349666843425 129.86184070744483 0 0 0 0 +3180 1 1.7707 1 187.04422468116474 157.2341641453448 0 0 0 0 +8350 1 1.0906 1 191.75787369213108 130.49303142832565 0 0 0 0 +3186 1 1.769 1 199.01377994304633 148.30472413628513 0 0 0 0 +3414 1 1.7117 1 224.15712892102968 130.48790971154048 0 0 0 0 +8438 1 1.0854 1 186.86443917017044 159.64471452218157 0 0 0 0 +3268 1 1.7479 1 184.15136536208993 157.45140264085137 0 0 0 0 +7970 1 1.1165 1 196.01151754921293 123.16164566089377 0 0 0 0 +3280 1 1.7451 1 215.58412357061945 126.87511776892111 0 0 0 0 +3292 1 1.742 1 184.26289204192543 161.93544764879147 0 0 0 0 +9476 1 1.027 1 211.7041054346716 122.11071192970914 0 0 0 0 +8396 1 1.0877 1 176.56598873591483 153.0043884300431 0 0 0 0 +3321 1 1.735 1 218.5599775576416 142.98299433822223 0 0 0 0 +3386 1 1.7188 1 193.14757239754317 130.75654032032384 0 0 0 0 +9705 1 1.0149 1 177.67096389858554 132.23346842589063 0 0 0 0 +3428 1 1.7095 1 192.2292383747164 154.73479651360276 0 0 0 0 +7540 1 1.1492 1 173.859221992398 146.79262317824688 0 0 0 0 +3617 1 1.6685 1 223.4931301612902 152.45844040016215 0 0 0 0 +5692 1 1.3267 1 222.69011091913413 144.29925336755898 0 0 0 0 +3511 1 1.6917 1 181.7523598095511 131.29105573026686 0 0 0 0 +3531 1 1.6863 1 209.07151884658313 144.15012611860942 0 0 0 0 +3550 1 1.682 1 215.90945386030302 136.85414979066266 0 0 0 0 +9551 1 1.0232 1 221.1290004875318 145.63024815810007 0 0 0 0 +137 1 7.9982 1 221.3212648630877 135.25628854098488 0 0 0 0 +8021 1 1.1133 1 197.28280072732127 142.83944490130926 0 0 0 0 +3626 1 1.6665 1 180.82057422197803 135.54070732523718 0 0 0 0 +3633 1 1.6653 1 187.42405219782611 128.6198973988346 0 0 0 0 +3648 1 1.6628 1 194.71715160522166 123.01070469008509 0 0 0 0 +3658 1 1.6607 1 195.69122210002203 142.88759959567588 0 0 0 0 +8767 1 1.0653 1 209.44530758438398 139.5732958722962 0 0 0 0 +3779 1 1.6339 1 193.20908742053962 129.145464168872 0 0 0 0 +9138 1 1.0452 1 180.79971445085178 161.34869535022924 0 0 0 0 +3875 1 1.6127 1 211.57630585054403 138.5358637551987 0 0 0 0 +7287 1 1.1721 1 180.41293480323094 127.06320585734541 0 0 0 0 +3911 1 1.6059 1 196.22768663882528 154.58925384189723 0 0 0 0 +3916 1 1.6041 1 187.7815787628026 158.66918503854643 0 0 0 0 +9375 1 1.0322 1 196.2558042402677 137.3818556889599 0 0 0 0 +3971 1 1.5916 1 220.86494232999226 159.4160130611249 0 0 0 0 +7545 1 1.1488 1 182.87964503555003 161.75524593706152 0 0 0 0 +3434 1 1.7085 1 217.99587797261174 138.62080912566552 0 0 0 0 +4049 1 1.5745 1 213.15814651207367 136.7103694588588 0 0 0 0 +4055 1 1.5737 1 190.47787065141486 155.9107237403585 0 0 0 0 +4097 1 1.567 1 209.22209629555405 156.1567341787484 0 0 0 0 +7361 1 1.1645 1 210.4223745154196 117.6779306939083 0 0 0 0 +4189 1 1.5513 1 210.92326709821506 142.35680454961644 0 0 0 0 +4201 1 1.5496 1 193.02247327798418 138.4995362562164 0 0 0 0 +7725 1 1.1347 1 218.3221653023585 122.10916228181317 0 0 0 0 +4212 1 1.5475 1 208.46909161023677 140.3758132583546 0 0 0 0 +673 1 3.8377 1 171.59023785738432 141.17634645087875 0 0 0 0 +4228 1 1.5461 1 210.62489356352992 155.6799818013442 0 0 0 0 +4259 1 1.5405 1 208.94438376308517 146.5053323430688 0 0 0 0 +2214 1 2.1308 1 208.6430114568453 119.71549458654306 0 0 0 0 +8609 1 1.0746 1 193.08070153220575 134.29140284211638 0 0 0 0 +5290 1 1.377 1 219.24910302918644 139.4222115751906 0 0 0 0 +4423 1 1.5107 1 222.1873236926612 155.24566948374135 0 0 0 0 +4463 1 1.5036 1 173.87034600454987 148.08871538510292 0 0 0 0 +1634 1 2.4637 1 177.23543869558262 130.56202383108877 0 0 0 0 +4565 1 1.4869 1 216.40027644630845 134.69470774537027 0 0 0 0 +4575 1 1.485 1 201.62434679114642 149.23962884447045 0 0 0 0 +4589 1 1.4821 1 180.91776085848284 128.27162854476666 0 0 0 0 +4733 1 1.4588 1 214.79593218426092 133.47515219614147 0 0 0 0 +4742 1 1.4575 1 177.2229156922805 138.08831597358306 0 0 0 0 +9165 1 1.0436 1 214.99566604812904 130.18321701669856 0 0 0 0 +4765 1 1.4541 1 210.76563511987993 145.93782367687527 0 0 0 0 +4795 1 1.4499 1 208.81067520042524 154.77736859028593 0 0 0 0 +1654 1 2.4513 1 200.69168237980895 119.1496817140795 0 0 0 0 +4825 1 1.4453 1 194.63233832299397 153.36225525428742 0 0 0 0 +8941 1 1.0556 1 204.60483316024573 145.0069386931768 0 0 0 0 +4890 1 1.4344 1 209.18558635327716 141.67384221155953 0 0 0 0 +4924 1 1.4291 1 179.53759495128443 128.54330017835517 0 0 0 0 +5002 1 1.42 1 174.69720645591534 141.5079850792043 0 0 0 0 +8706 1 1.0696 1 202.75949456987985 142.8950893932242 0 0 0 0 +5146 1 1.3971 1 222.2374646824701 159.36634520940757 0 0 0 0 +4317 1 1.5297 1 182.6071098288212 164.40638060303635 0 0 0 0 +7655 1 1.1399 1 188.09142964126562 126.7048302229918 0 0 0 0 +8384 1 1.0882 1 200.87139286576533 148.03542449770646 0 0 0 0 +5279 1 1.3784 1 193.68506430460945 137.24419224672613 0 0 0 0 +9284 1 1.0374 1 182.9452978319419 131.95389234290522 0 0 0 0 +5428 1 1.3594 1 190.25850706395497 136.4144305948935 0 0 0 0 +5432 1 1.3586 1 208.3345437269616 147.7818180485731 0 0 0 0 +3430 1 1.709 1 223.9667816923922 139.30252880779693 0 0 0 0 +3415 1 1.7117 1 172.2964182593056 143.79333127606853 0 0 0 0 +5488 1 1.3522 1 183.8023288304201 133.29441523790263 0 0 0 0 +5477 1 1.3532 1 175.1612502835921 129.6950321271495 0 0 0 0 +9401 1 1.0305 1 172.33722648260294 123.41158099313868 0 0 0 0 +5567 1 1.3421 1 192.22813557409648 119.61775004932936 0 0 0 0 +5638 1 1.3332 1 179.6086189174346 157.03604811783575 0 0 0 0 +5648 1 1.3325 1 200.25833883163284 149.15419742931763 0 0 0 0 +5682 1 1.3286 1 188.61103241071612 127.80131735472322 0 0 0 0 +8563 1 1.0772 1 202.4729286067303 150.15271800353324 0 0 0 0 +5697 1 1.3263 1 214.48169673812106 137.17933728658565 0 0 0 0 +5752 1 1.3202 1 219.53715201289722 157.3423632141378 0 0 0 0 +5756 1 1.3197 1 208.8377235936783 153.4018806702389 0 0 0 0 +5827 1 1.3118 1 212.7062292807315 144.46759713152076 0 0 0 0 +7500 1 1.1524 1 207.27562464416314 118.59720131535217 0 0 0 0 +5867 1 1.3086 1 207.3796168759557 149.5276047435631 0 0 0 0 +5910 1 1.304 1 179.09359738604547 155.71273001311945 0 0 0 0 +5941 1 1.3008 1 193.51857610788437 132.19726424288646 0 0 0 0 +3116 1 1.791 1 181.63342524107657 165.9273315084746 0 0 0 0 +9149 1 1.0447 1 193.92814520191504 133.26265014393087 0 0 0 0 +6051 1 1.2887 1 178.49039232887603 135.89318948948312 0 0 0 0 +7879 1 1.1229 1 220.89005634848013 168.57959907528155 0 0 0 0 +8250 1 1.0978 1 210.37425464688857 139.06274424391657 0 0 0 0 +6170 1 1.2754 1 213.20028068062922 123.59744744551799 0 0 0 0 +6204 1 1.2713 1 219.08968119291146 130.7112713747942 0 0 0 0 +8264 1 1.097 1 180.6022462987038 156.33476809847076 0 0 0 0 +6261 1 1.2638 1 198.43839771953137 142.10155494610137 0 0 0 0 +2608 1 1.9643 1 173.88063891125822 142.93894228874024 0 0 0 0 +8352 1 1.0905 1 179.3433748192946 126.77404936873697 0 0 0 0 +6327 1 1.2587 1 203.86922162974366 154.45764332644475 0 0 0 0 +8180 1 1.1024 1 224.06171139676306 131.79242001048254 0 0 0 0 +7950 1 1.1177 1 176.42792421980772 139.05141446938416 0 0 0 0 +6347 1 1.2574 1 186.38386570693515 158.5756234763299 0 0 0 0 +6356 1 1.2563 1 211.51873709272422 117.94668940174579 0 0 0 0 +6339 1 1.2581 1 181.89865190175695 161.10116676782596 0 0 0 0 +8622 1 1.0736 1 185.28031481377116 158.28052203024515 0 0 0 0 +6439 1 1.2482 1 194.8906225268826 119.74735221341184 0 0 0 0 +9600 1 1.0206 1 205.67773063751002 146.59256244667282 0 0 0 0 +8751 1 1.067 1 183.9962380395554 132.06677063411493 0 0 0 0 +6851 1 1.2073 1 222.46272564034848 128.24945093818977 0 0 0 0 +9827 1 1.0087 1 178.89557339551473 136.96788607991556 0 0 0 0 +3091 1 1.8021 1 181.07124888011631 167.6032682348922 0 0 0 0 +6661 1 1.226 1 185.00658947278546 135.16260713979068 0 0 0 0 +2594 1 1.9703 1 175.21727525874044 139.94237946004236 0 0 0 0 +6711 1 1.2213 1 191.7992667918464 129.3297650527292 0 0 0 0 +6715 1 1.2208 1 182.233595381356 135.43782417409668 0 0 0 0 +6721 1 1.2204 1 222.64909913415804 160.59216734324707 0 0 0 0 +6724 1 1.2203 1 214.4216406796716 125.9519762690553 0 0 0 0 +6735 1 1.2193 1 181.6962404819591 156.72816667516034 0 0 0 0 +6754 1 1.2178 1 219.81708935942672 162.43644429282222 0 0 0 0 +8912 1 1.057 1 212.70455507730742 137.89622202346084 0 0 0 0 +6799 1 1.2126 1 187.8724824632412 125.56583057441685 0 0 0 0 +6832 1 1.2089 1 221.46282732820748 144.54401962965525 0 0 0 0 +6835 1 1.2087 1 180.92169494684248 157.60525713654755 0 0 0 0 +6845 1 1.2082 1 191.76047533887845 156.38177254745224 0 0 0 0 +6864 1 1.2057 1 205.5952878556705 145.5175286224256 0 0 0 0 +6876 1 1.2043 1 177.84990468530088 136.95543461465797 0 0 0 0 +6881 1 1.2041 1 195.7786996144451 148.01702480002578 0 0 0 0 +6884 1 1.2036 1 217.7551719007255 121.14884453353349 0 0 0 0 +9726 1 1.014 1 218.92060777816698 122.93320382775151 0 0 0 0 +6924 1 1.1998 1 209.67264394587372 142.87223700229393 0 0 0 0 +6926 1 1.1997 1 215.15480194406516 131.2339300142792 0 0 0 0 +7046 1 1.1897 1 180.00187534938942 158.296809417078 0 0 0 0 +7049 1 1.1896 1 173.91993498686983 144.4939412831583 0 0 0 0 +7067 1 1.1885 1 185.58372420002425 157.20290104305852 0 0 0 0 +7078 1 1.1878 1 220.10863657720026 167.77904361433568 0 0 0 0 +4021 1 1.5795 1 222.94456998241154 153.94138597749085 0 0 0 0 +7127 1 1.1837 1 173.82162069905337 145.6560898774362 0 0 0 0 +6604 1 1.2312 1 221.8490526921613 129.28336901449026 0 0 0 0 +7204 1 1.1777 1 218.6617225558201 140.53738277183075 0 0 0 0 +8790 1 1.064 1 204.1446364554062 153.32994525789746 0 0 0 0 +7334 1 1.1678 1 194.7876766778329 137.95888987066454 0 0 0 0 +7335 1 1.1678 1 214.36856479966266 159.6725766335188 0 0 0 0 +7709 1 1.1356 1 217.5233334514028 163.16903956356694 0 0 0 0 +3485 1 1.6963 1 180.37591985678137 170.0874757697348 0 0 0 0 +7370 1 1.1638 1 181.56189325364423 127.15921901164295 0 0 0 0 +7391 1 1.162 1 194.67212648837562 135.07541101162735 0 0 0 0 +7392 1 1.1619 1 179.73196550700635 136.35943551070068 0 0 0 0 +9988 1 1.0007 1 178.12328290287027 133.2282266017259 0 0 0 0 +7464 1 1.156 1 220.27333166640105 130.83011038208002 0 0 0 0 +8737 1 1.0677 1 221.136841379142 130.1748052121111 0 0 0 0 +7491 1 1.153 1 183.30210923972516 163.19127220086048 0 0 0 0 +7494 1 1.1528 1 208.30186813224154 118.14125376312636 0 0 0 0 +7498 1 1.1525 1 209.56586153208028 147.9728408801629 0 0 0 0 +9176 1 1.043 1 194.20844317584542 138.83879946814739 0 0 0 0 +5316 1 1.3736 1 174.56634427689696 123.94065268468474 0 0 0 0 +4815 1 1.4465 1 220.22353653214708 127.57911898101138 0 0 0 0 +4139 1 1.5605 1 175.54456754081812 124.97339564522437 0 0 0 0 +4023 1 1.579 1 176.76943312113875 125.85921205676641 0 0 0 0 +7819 1 1.1276 1 172.77792370485182 120.81230921669636 0 0 0 0 +2008 1 2.2351 1 224.050215755691 167.31404389856266 0 0 0 0 +7095 1 1.1865 1 221.88041939939555 146.51486656421895 0 0 0 0 +1199 1 2.9039 1 176.67953968714505 128.04171119712623 0 0 0 0 +4421 1 1.5113 1 220.94818562915924 169.86516323435455 0 0 0 0 +7492 1 1.1529 1 220.92514495819682 126.16572697334696 0 0 0 0 +2982 1 1.8381 1 172.45976018012558 148.82698731821512 0 0 0 0 +3239 1 1.755 1 173.09561563469728 122.19415006137076 0 0 0 0 +5962 1 1.2986 1 222.3016796365459 145.45247160204767 0 0 0 0 +4603 1 1.4798 1 221.60180186627522 127.26143829793217 0 0 0 0 +4871 1 1.4379 1 223.9789164140882 144.12160050510846 0 0 0 0 +3660 1 1.6596 1 170.91968532393904 148.09457327174763 0 0 0 0 +5378 1 1.3666 1 201.76355051891943 117.63289117589898 0 0 0 0 +4400 1 1.515 1 224.48638879284346 165.5203200577934 0 0 0 0 +6 1 40.6337 1 200.62937790527238 175.31105533894495 0 0 0 0 +30 1 18.0424 1 173.8764790608081 209.30316925294156 0 0 0 0 +6755 1 1.2178 1 180.38260770921377 220.94848291765928 0 0 0 0 +176 1 7.2667 1 185.98130569892706 200.11797041180122 0 0 0 0 +354 1 5.3204 1 172.3396014371643 182.5217820029764 0 0 0 0 +399 1 4.9357 1 221.3842920012077 188.51789364337282 0 0 0 0 +7862 1 1.1236 1 178.38298718502634 222.4726811812328 0 0 0 0 +445 1 4.664 1 185.331060867571 209.62081050874522 0 0 0 0 +541 1 4.2359 1 183.17434432707867 216.76174470327473 0 0 0 0 +548 1 4.2077 1 196.40378016617694 201.2137223439762 0 0 0 0 +3827 1 1.6215 1 172.02090585612046 190.7317860104335 0 0 0 0 +578 1 4.1058 1 178.8437290780451 179.61543002221836 0 0 0 0 +643 1 3.9101 1 197.15395153902648 197.25252575242308 0 0 0 0 +701 1 3.7809 1 221.2360018607051 183.58974428839483 0 0 0 0 +4905 1 1.4318 1 172.66947663629475 219.63278166049386 0 0 0 0 +855 1 3.4496 1 175.2308133210861 179.35112925125392 0 0 0 0 +881 1 3.3885 1 180.9222787515575 201.40725932497753 0 0 0 0 +902 1 3.3531 1 188.76728171022918 207.66372092635388 0 0 0 0 +970 1 3.2193 1 184.3271589460449 192.99037929859554 0 0 0 0 +1026 1 3.143 1 189.17319392558005 196.09220431954577 0 0 0 0 +1153 1 2.951 1 193.999258553139 196.00462600546854 0 0 0 0 +1174 1 2.931 1 180.24364711734987 198.39276815462196 0 0 0 0 +1307 1 2.7855 1 218.58999166928487 191.05505728262764 0 0 0 0 +1314 1 2.7755 1 186.98485951681644 194.23343963921806 0 0 0 0 +5631 1 1.3336 1 177.07480301662386 183.1753792884937 0 0 0 0 +1351 1 2.7351 1 188.74717897343825 204.67001494352797 0 0 0 0 +4477 1 1.5014 1 175.70406409346265 218.83342565332453 0 0 0 0 +1420 1 2.6601 1 187.98726934308038 211.99098046341322 0 0 0 0 +1424 1 2.657 1 191.54043470517126 197.61066032146516 0 0 0 0 +1521 1 2.5558 1 183.20311269926304 187.90714078538105 0 0 0 0 +1544 1 2.5356 1 199.39650812365008 199.82812518027876 0 0 0 0 +1547 1 2.5343 1 182.64669009243207 203.6965616004475 0 0 0 0 +1601 1 2.4933 1 183.5471190078765 212.64029928309222 0 0 0 0 +1609 1 2.485 1 222.71638137763503 180.87830149752716 0 0 0 0 +1719 1 2.4113 1 183.77852699367168 195.84381110768933 0 0 0 0 +1836 1 2.3371 1 184.84299605065712 204.694858908776 0 0 0 0 +1856 1 2.3291 1 179.324457161935 173.70833434924555 0 0 0 0 +1944 1 2.2726 1 215.333510918641 190.90408486368656 0 0 0 0 +1322 1 2.7647 1 178.3646168030494 188.9237163859109 0 0 0 0 +2044 1 2.2157 1 194.56143196143742 198.67639389461715 0 0 0 0 +2158 1 2.1537 1 171.5820138897499 186.05623495299844 0 0 0 0 +4167 1 1.5556 1 224.47539118342294 179.90775358151663 0 0 0 0 +2076 1 2.1961 1 186.45560186322427 206.25873242285383 0 0 0 0 +6023 1 1.2922 1 174.5667325145689 219.6032623570141 0 0 0 0 +2417 1 2.0427 1 192.43863575492253 203.8095583515215 0 0 0 0 +2421 1 2.04 1 202.5914601418651 197.8502351875886 0 0 0 0 +2431 1 2.0343 1 182.41403304858872 190.0181782967057 0 0 0 0 +2440 1 2.0306 1 192.90098147506578 201.81956206070964 0 0 0 0 +2530 1 1.9992 1 183.12773145971573 205.82628696930104 0 0 0 0 +2548 1 1.9898 1 181.5575477705184 184.74265455515294 0 0 0 0 +2582 1 1.9771 1 180.6814693608337 191.38089114186198 0 0 0 0 +2655 1 1.945 1 205.2096367868205 196.05852816607202 0 0 0 0 +2657 1 1.9447 1 191.25499788855265 208.13134811844066 0 0 0 0 +2688 1 1.9347 1 207.83830599957173 195.1537243604289 0 0 0 0 +2699 1 1.9297 1 180.5637944656147 189.47380977257572 0 0 0 0 +2704 1 1.928 1 181.40297407897364 186.64624198706443 0 0 0 0 +2751 1 1.9113 1 189.73704364141489 202.64083753185253 0 0 0 0 +2754 1 1.91 1 218.74259788037347 186.40965037116206 0 0 0 0 +2776 1 1.9038 1 222.11214347819364 177.90926946873304 0 0 0 0 +2830 1 1.8849 1 217.1963649602517 189.2816862322019 0 0 0 0 +2909 1 1.8612 1 184.93812690427106 214.29128734652113 0 0 0 0 +2940 1 1.8504 1 178.60715181005037 182.9172263506314 0 0 0 0 +2963 1 1.844 1 186.69051597157437 214.82866899351384 0 0 0 0 +2985 1 1.837 1 188.3844891969947 192.5320635486036 0 0 0 0 +3019 1 1.82 1 178.62932938591308 184.7154303527292 0 0 0 0 +3591 1 1.6735 1 223.22097016502522 185.41750152668033 0 0 0 0 +8739 1 1.0675 1 174.00731814614343 187.01158669584953 0 0 0 0 +3145 1 1.7797 1 182.32457843638835 194.36344892804928 0 0 0 0 +3147 1 1.7791 1 179.22649379189235 186.3810607618658 0 0 0 0 +3224 1 1.759 1 178.44749104080591 176.757021247682 0 0 0 0 +3264 1 1.7492 1 194.16505988133198 203.11209204059853 0 0 0 0 +3340 1 1.7313 1 193.01014052407442 205.94437081311412 0 0 0 0 +3469 1 1.6996 1 194.25945149209394 204.8035757502698 0 0 0 0 +9823 1 1.0088 1 223.54672288962377 184.1389886485393 0 0 0 0 +8543 1 1.0785 1 171.32074307675379 220.41423611429786 0 0 0 0 +6005 1 1.294 1 224.45063280268715 189.78353931344964 0 0 0 0 +3560 1 1.6789 1 172.53730941153069 199.5612019225368 0 0 0 0 +3935 1 1.6012 1 178.0621543153322 175.1696274271077 0 0 0 0 +8361 1 1.0898 1 178.20282853616004 223.52240804393753 0 0 0 0 +4035 1 1.5769 1 184.6556257096483 206.6250548382452 0 0 0 0 +4053 1 1.5741 1 175.07883671902616 199.47309116717415 0 0 0 0 +4127 1 1.5626 1 182.36306435129686 191.75426937448333 0 0 0 0 +4156 1 1.5567 1 180.11375383665742 187.7595700210377 0 0 0 0 +9917 1 1.0044 1 181.00665678167033 194.092342793881 0 0 0 0 +4673 1 1.4685 1 224.00407186852206 186.72860365547254 0 0 0 0 +4195 1 1.5502 1 186.69613615632989 204.42551816275514 0 0 0 0 +5184 1 1.3908 1 181.1171218433482 222.56962058094098 0 0 0 0 +4203 1 1.5489 1 193.74557075811921 200.3107438438374 0 0 0 0 +4221 1 1.5465 1 217.64472690551898 187.67566309015967 0 0 0 0 +4225 1 1.5463 1 185.54174513343264 212.69950341620853 0 0 0 0 +7032 1 1.1912 1 172.7302557352067 198.17775834310368 0 0 0 0 +4260 1 1.5401 1 191.41975218797828 206.4289475317569 0 0 0 0 +633 1 3.9266 1 175.8732591842172 185.39503118288812 0 0 0 0 +4346 1 1.5235 1 178.17935709321355 199.06789082938687 0 0 0 0 +4354 1 1.5225 1 216.74113924192685 192.08016017450095 0 0 0 0 +4356 1 1.5221 1 190.23911003815354 201.0041190478394 0 0 0 0 +4358 1 1.522 1 181.44322491807793 192.9485358163195 0 0 0 0 +7511 1 1.1518 1 173.6510221346567 218.84878405781782 0 0 0 0 +4443 1 1.5071 1 200.8907263798346 197.6822229053437 0 0 0 0 +4459 1 1.5041 1 186.35241304533682 190.75386744200995 0 0 0 0 +9863 1 1.0066 1 180.37481623709388 185.63858622725186 0 0 0 0 +4524 1 1.4939 1 201.25194199788626 199.086778979375 0 0 0 0 +4547 1 1.4902 1 188.6650789333144 210.05513389789942 0 0 0 0 +4599 1 1.4805 1 177.3550560004805 200.24873549679285 0 0 0 0 +4613 1 1.479 1 180.13861261767582 183.45063506204494 0 0 0 0 +4652 1 1.473 1 179.5703920413434 175.59481711434177 0 0 0 0 +4686 1 1.4663 1 191.25111574578125 202.08759464579344 0 0 0 0 +4766 1 1.4536 1 203.52825175881725 196.10122624995074 0 0 0 0 +4778 1 1.4517 1 178.64204215811935 200.81106348218253 0 0 0 0 +4791 1 1.4505 1 177.3713210205973 181.90086993182265 0 0 0 0 +4807 1 1.4475 1 182.32866358891158 214.09785217062145 0 0 0 0 +4842 1 1.4428 1 190.8146294816619 204.48583735534353 0 0 0 0 +4907 1 1.4311 1 182.46169840459626 197.20338714194028 0 0 0 0 +4943 1 1.427 1 191.15007876345683 195.0114487271301 0 0 0 0 +4954 1 1.4254 1 183.35965289837873 207.4389650978289 0 0 0 0 +4960 1 1.4248 1 213.4173589392545 193.08380695748892 0 0 0 0 +4985 1 1.4223 1 214.75334675360494 192.63119394808683 0 0 0 0 +5008 1 1.4195 1 223.3078192316692 179.02454125994993 0 0 0 0 +5031 1 1.4158 1 195.49008176481442 203.85521432994761 0 0 0 0 +5055 1 1.4123 1 212.0032783316095 192.98623164882756 0 0 0 0 +5084 1 1.4071 1 181.22920622231317 196.52834486751325 0 0 0 0 +5085 1 1.4067 1 204.1745312415218 197.31076609433163 0 0 0 0 +5182 1 1.3909 1 190.2109946809966 199.42603606350391 0 0 0 0 +5186 1 1.3902 1 175.7842045808516 182.74294699437985 0 0 0 0 +9923 1 1.0041 1 212.77110854803684 192.1241252629282 0 0 0 0 +5248 1 1.3821 1 200.86335306221866 196.26825307763198 0 0 0 0 +5252 1 1.3817 1 173.2813107317042 185.72540556542359 0 0 0 0 +5253 1 1.3815 1 184.047280638801 189.67071325533144 0 0 0 0 +5399 1 1.3635 1 176.88611377863575 176.67598675967062 0 0 0 0 +5418 1 1.3611 1 185.39126591900308 189.73859706939902 0 0 0 0 +5491 1 1.3519 1 191.61586106726602 200.75251941191945 0 0 0 0 +5669 1 1.3299 1 210.19690051283106 194.29842396279344 0 0 0 0 +5725 1 1.3234 1 202.18029337900867 196.22512659036403 0 0 0 0 +5748 1 1.3206 1 190.23778131247064 209.59875113862952 0 0 0 0 +5789 1 1.3154 1 213.77651433397565 191.67290537287306 0 0 0 0 +5907 1 1.3044 1 181.08081031189946 195.22073498013273 0 0 0 0 +5964 1 1.2985 1 192.42899513234553 194.59073396969194 0 0 0 0 +5992 1 1.2954 1 179.89203106562258 182.08742672516013 0 0 0 0 +6031 1 1.2916 1 185.90172173563337 195.90086426605345 0 0 0 0 +8673 1 1.0712 1 180.61384027932138 216.07632859126767 0 0 0 0 +6131 1 1.2805 1 199.57189856453297 198.02357984470365 0 0 0 0 +2531 1 1.9991 1 171.15989347788866 218.89849059697985 0 0 0 0 +6183 1 1.2739 1 220.74141738528309 181.14392965308713 0 0 0 0 +9092 1 1.0474 1 175.6286358758854 220.06449200650317 0 0 0 0 +6354 1 1.2564 1 189.72956093572094 198.2028609137863 0 0 0 0 +6508 1 1.2422 1 219.18107142508882 184.94138232844665 0 0 0 0 +6683 1 1.2238 1 181.3984475210581 188.1988660611239 0 0 0 0 +9797 1 1.0099 1 176.908659617149 177.86564533875432 0 0 0 0 +6829 1 1.2094 1 189.74412545827232 193.1306816123224 0 0 0 0 +6901 1 1.202 1 186.00108551052347 216.6881618458962 0 0 0 0 +5430 1 1.359 1 171.85744170556868 197.2952226185807 0 0 0 0 +6994 1 1.1948 1 191.45520436011563 199.50498709121382 0 0 0 0 +7076 1 1.1879 1 199.33472241393102 196.0719249178851 0 0 0 0 +7077 1 1.1879 1 183.75127483976453 190.89533050393723 0 0 0 0 +7090 1 1.1869 1 190.14192265041635 194.20808086411319 0 0 0 0 +7126 1 1.1837 1 177.06850764972995 187.543124396986 0 0 0 0 +7301 1 1.1705 1 186.6909836843392 213.35916805482725 0 0 0 0 +7344 1 1.1663 1 192.51108514612437 199.92240315999936 0 0 0 0 +7377 1 1.1635 1 192.92406278555154 198.86678362969116 0 0 0 0 +7455 1 1.1565 1 220.11352948995176 185.76328363759683 0 0 0 0 +7508 1 1.1518 1 221.37880325939688 176.63657388452683 0 0 0 0 +7591 1 1.1447 1 181.91064428481297 199.43418178821915 0 0 0 0 +7595 1 1.1443 1 220.96468172461053 179.98488876855492 0 0 0 0 +7739 1 1.1333 1 185.22301728783066 194.93112663422554 0 0 0 0 +7778 1 1.1305 1 221.8567805779183 179.33977337457424 0 0 0 0 +7780 1 1.1304 1 181.41666660107325 214.95221721962963 0 0 0 0 +7881 1 1.1228 1 190.35760144497766 205.6781333785688 0 0 0 0 +7886 1 1.1222 1 181.37577623902888 183.2394856109882 0 0 0 0 +689 1 3.8112 1 182.88371280873747 220.71196907770857 0 0 0 0 +8113 1 1.1068 1 206.67774568411758 196.05096194780518 0 0 0 0 +1176 1 2.9298 1 173.41129018230487 188.93097901431207 0 0 0 0 +8173 1 1.1028 1 192.45107334124833 207.22098359606883 0 0 0 0 +8210 1 1.1008 1 188.93619159131535 193.97065813673137 0 0 0 0 +8238 1 1.0989 1 184.91603181146237 190.87498626337546 0 0 0 0 +8332 1 1.0922 1 173.8450335055049 199.7898207359173 0 0 0 0 +8373 1 1.0889 1 199.8847651181185 196.9570916873622 0 0 0 0 +8440 1 1.0851 1 187.4352897496681 191.4357530054143 0 0 0 0 +8518 1 1.0799 1 185.5376329587921 215.65000100247795 0 0 0 0 +8577 1 1.0765 1 211.45428504561173 194.0524178001188 0 0 0 0 +8598 1 1.0752 1 173.68933417319872 198.75085609313768 0 0 0 0 +8604 1 1.0747 1 191.82450341671537 205.21372339918915 0 0 0 0 +2047 1 2.2135 1 180.70924441487008 218.79210030374693 0 0 0 0 +8697 1 1.07 1 185.59428160540156 217.7462685115835 0 0 0 0 +8717 1 1.0689 1 192.02876454194205 195.84296582268664 0 0 0 0 +8817 1 1.0624 1 182.21670495446995 198.39607243261156 0 0 0 0 +8822 1 1.0618 1 187.08012482444502 196.1269008471925 0 0 0 0 +8909 1 1.057 1 180.0451906961792 184.6886409054464 0 0 0 0 +8956 1 1.0549 1 210.8330612292146 193.33367166067106 0 0 0 0 +9083 1 1.048 1 182.65286081276855 185.84689457985124 0 0 0 0 +9111 1 1.0468 1 187.69625096754194 213.80854827023137 0 0 0 0 +9122 1 1.0461 1 189.53261096929577 210.96972729650506 0 0 0 0 +9145 1 1.0449 1 215.83865600432804 189.40731609525835 0 0 0 0 +9153 1 1.0446 1 218.4595705132591 188.64143581355916 0 0 0 0 +8997 1 1.0527 1 174.8410316199065 187.60857280852662 0 0 0 0 +9192 1 1.0423 1 176.66557185007755 180.97235928527314 0 0 0 0 +9206 1 1.0414 1 179.78858868735873 177.179488587058 0 0 0 0 +9252 1 1.0393 1 180.72434503935045 181.30751993742027 0 0 0 0 +9304 1 1.0361 1 193.29064684907885 197.81170124490563 0 0 0 0 +4474 1 1.5021 1 223.5741466003367 190.8603353351274 0 0 0 0 +9387 1 1.0314 1 184.76154334268819 188.73967729749828 0 0 0 0 +9404 1 1.0303 1 178.0337527468302 187.06260327628587 0 0 0 0 +9430 1 1.0293 1 209.04914938369035 194.3492927810277 0 0 0 0 +9436 1 1.0289 1 176.16258888603735 200.08524701852394 0 0 0 0 +9444 1 1.0287 1 175.63959128941713 181.54738733044132 0 0 0 0 +9534 1 1.0241 1 191.1531872014491 193.81440035314625 0 0 0 0 +9590 1 1.0213 1 186.10673052311566 191.9449776182253 0 0 0 0 +9605 1 1.0204 1 182.103744597804 195.7309958589877 0 0 0 0 +2938 1 1.8507 1 179.22298334337071 217.54627989925956 0 0 0 0 +9621 1 1.0197 1 186.99340754550033 192.3675158890753 0 0 0 0 +9631 1 1.0189 1 181.01582908468336 182.26736982722932 0 0 0 0 +2159 1 2.1526 1 175.9360803073373 188.70383457492758 0 0 0 0 +9732 1 1.0137 1 176.68470060241904 199.23142467965724 0 0 0 0 +9763 1 1.0118 1 179.83258436263878 171.95841251512397 0 0 0 0 +9771 1 1.0115 1 191.02452147861018 203.29102457110787 0 0 0 0 +6804 1 1.2122 1 172.91665739577803 186.96378003334578 0 0 0 0 +4079 1 1.57 1 184.8645851795653 218.96239406814308 0 0 0 0 +9293 1 1.0369 1 180.58378225730166 217.12875772903368 0 0 0 0 +144 1 7.8203 1 173.84199929231303 224.0666224687101 0 0 0 0 +4779 1 1.4516 1 171.58963136400706 187.7572844426672 0 0 0 0 +118 1 9.0986 1 176.01985744106398 194.26078201607342 0 0 0 0 +3932 1 1.6014 1 179.6978478666237 222.1797898393717 0 0 0 0 +684 1 3.8163 1 178.02740060698005 220.06587503647546 0 0 0 0 +5330 1 1.372 1 171.43022810107215 198.53602997220597 0 0 0 0 +3495 1 1.6942 1 170.95421604047294 199.94544054005715 0 0 0 0 +1808 1 2.3521 1 182.6009999109625 223.68207551188132 0 0 0 0 +2639 1 1.9537 1 171.0379241424675 189.26833574293548 0 0 0 0 +5132 1 1.3984 1 171.14588993777255 196.13936339823388 0 0 0 0 +7233 1 1.1756 1 177.82835747434936 235.30397503790567 0 0 0 0 +95 1 9.6939 1 176.2462607390695 263.92928850040596 0 0 0 0 +237 1 6.3017 1 188.8939214590379 270.7542821962671 0 0 0 0 +507 1 4.337 1 185.26516655462947 265.58967643401235 0 0 0 0 +1639 1 2.4596 1 178.07331248073385 245.2694391406006 0 0 0 0 +3923 1 1.6029 1 176.6748580320794 227.81210970932383 0 0 0 0 +6319 1 1.2594 1 179.96750119917579 272.06404333018014 0 0 0 0 +4175 1 1.5535 1 175.37084503300963 275.46923545157483 0 0 0 0 +7358 1 1.1649 1 175.73240708223457 241.70044813070362 0 0 0 0 +2804 1 1.8922 1 172.5707163413861 237.3220501453934 0 0 0 0 +9931 1 1.0039 1 176.3458611551508 233.56097568966928 0 0 0 0 +5684 1 1.3282 1 177.263054575992 234.2237823495263 0 0 0 0 +831 1 3.5026 1 173.18360851503198 254.0321671333438 0 0 0 0 +930 1 3.2949 1 181.25293689158008 255.6966606063172 0 0 0 0 +5015 1 1.4184 1 188.0191897083908 277.0858009547355 0 0 0 0 +972 1 3.2151 1 178.8100435681265 230.94464273481262 0 0 0 0 +994 1 3.1874 1 188.92150221142543 266.1198197086553 0 0 0 0 +1023 1 3.1453 1 180.82452728162048 252.58594698919254 0 0 0 0 +1041 1 3.1076 1 180.67072979760735 245.86545807232866 0 0 0 0 +1074 1 3.0587 1 186.17344744443025 275.8227487900716 0 0 0 0 +1033 1 3.1218 1 171.70091165417708 229.11685636178942 0 0 0 0 +1140 1 2.9701 1 181.43297991700038 249.64243404832695 0 0 0 0 +330 1 5.4686 1 181.090039412105 275.65158448218557 0 0 0 0 +1326 1 2.7615 1 179.58298118904378 243.16320417922503 0 0 0 0 +3919 1 1.6032 1 178.14786287047926 273.76828687285246 0 0 0 0 +9569 1 1.0221 1 191.29459609842087 267.8150147597533 0 0 0 0 +1516 1 2.5602 1 172.57511264837237 256.9995836377641 0 0 0 0 +778 1 3.6309 1 176.4618278053399 250.8131116188819 0 0 0 0 +1578 1 2.5104 1 183.53149558886454 261.2012295594445 0 0 0 0 +1580 1 2.5075 1 187.1425576824013 262.8119571080384 0 0 0 0 +1738 1 2.3972 1 176.69228129424926 255.88466940680334 0 0 0 0 +4731 1 1.4593 1 181.25731527335344 272.2332293935346 0 0 0 0 +906 1 3.349 1 173.51003104573795 232.18528567107077 0 0 0 0 +1819 1 2.3459 1 183.90653448892874 256.0313504669592 0 0 0 0 +1882 1 2.3118 1 178.13747478558284 226.52313693528964 0 0 0 0 +4290 1 1.5347 1 180.0622333594539 268.00373652462383 0 0 0 0 +1906 1 2.2963 1 171.50746916169507 268.08359331617044 0 0 0 0 +1948 1 2.2704 1 174.95242217941583 257.4083971996729 0 0 0 0 +7547 1 1.1486 1 179.2283522000813 272.96734070179605 0 0 0 0 +8447 1 1.0845 1 174.76264577717942 271.5968375426541 0 0 0 0 +5902 1 1.3046 1 175.06654818957935 240.6780416074891 0 0 0 0 +2146 1 2.1577 1 179.42788462898778 248.11888182907362 0 0 0 0 +2168 1 2.1495 1 181.34114105035272 261.1065024169894 0 0 0 0 +9657 1 1.0177 1 182.29162260221764 227.3398965440938 0 0 0 0 +2204 1 2.135 1 175.17375734861787 248.27408759295128 0 0 0 0 +2236 1 2.1206 1 182.31574345546275 259.23996385322107 0 0 0 0 +2251 1 2.1173 1 178.71295391731476 254.96590549155508 0 0 0 0 +2375 1 2.0574 1 180.53505395089985 228.75682412688212 0 0 0 0 +1909 1 2.2942 1 180.72787846939218 270.4787426189492 0 0 0 0 +2425 1 2.0385 1 178.282678326848 252.9544251802222 0 0 0 0 +2436 1 2.0324 1 180.60052774414618 235.3475563823531 0 0 0 0 +8411 1 1.0871 1 171.83888561214235 274.73590257830585 0 0 0 0 +2537 1 1.997 1 183.15443269330834 253.886928856771 0 0 0 0 +4117 1 1.5636 1 173.9459204969276 228.67119468895152 0 0 0 0 +1039 1 3.1097 1 175.783817065424 229.98327174998605 0 0 0 0 +3937 1 1.6009 1 180.73247070188614 238.09952820890234 0 0 0 0 +2435 1 2.0327 1 174.50969976399898 269.449713550546 0 0 0 0 +2755 1 1.9095 1 171.96124681786037 251.6995319449741 0 0 0 0 +2781 1 1.9012 1 180.65107955478732 258.17639616643413 0 0 0 0 +8806 1 1.0629 1 185.73996151813517 272.5008949778844 0 0 0 0 +2735 1 1.9167 1 184.40579645255244 274.08926851564485 0 0 0 0 +4263 1 1.5393 1 172.7763839439826 269.782889852328 0 0 0 0 +2897 1 1.8636 1 181.0159908760968 226.87851401231487 0 0 0 0 +2927 1 1.8558 1 181.90762583802237 262.98562429969854 0 0 0 0 +4946 1 1.426 1 171.35201072800487 272.63233966079946 0 0 0 0 +2948 1 1.8492 1 178.661558160382 228.47732707416728 0 0 0 0 +3001 1 1.8295 1 192.6612791408894 269.67734783621086 0 0 0 0 +1029 1 3.1314 1 173.21350222956337 276.260090618644 0 0 0 0 +3130 1 1.7845 1 189.81859998864886 274.67148909770964 0 0 0 0 +9151 1 1.0446 1 171.724355414296 238.70975839905336 0 0 0 0 +3192 1 1.7675 1 182.27889157968804 225.66032992289485 0 0 0 0 +1625 1 2.4717 1 173.19518724847475 240.54289970170726 0 0 0 0 +545 1 4.2222 1 175.31497131217074 236.14477806677183 0 0 0 0 +3306 1 1.7387 1 177.07745736407503 248.2491077818829 0 0 0 0 +4748 1 1.457 1 174.47557610211143 241.96405003356787 0 0 0 0 +3435 1 1.7084 1 185.23274308433415 258.5721961389877 0 0 0 0 +3447 1 1.7047 1 177.7772940807195 258.4751113078247 0 0 0 0 +5337 1 1.3715 1 177.57240564931382 243.45758885559397 0 0 0 0 +7986 1 1.1153 1 172.79828106598075 238.80191710676294 0 0 0 0 +3652 1 1.6619 1 179.2505360966429 259.20001031011924 0 0 0 0 +7001 1 1.1941 1 171.06602639201193 276.3858465969535 0 0 0 0 +3772 1 1.635 1 186.46519791361044 260.88667573547656 0 0 0 0 +3777 1 1.6344 1 183.58515797619773 263.216697866314 0 0 0 0 +3782 1 1.6334 1 183.6709241319299 257.9704749930586 0 0 0 0 +415 1 4.8561 1 177.99413095435074 239.73938759874198 0 0 0 0 +3884 1 1.6109 1 181.7364817700039 265.86851961666207 0 0 0 0 +5416 1 1.3615 1 176.70629626990325 242.46164890669968 0 0 0 0 +5635 1 1.3333 1 173.16523846348971 234.47821361486075 0 0 0 0 +3996 1 1.5871 1 178.28264744887008 256.91978696040076 0 0 0 0 +4012 1 1.5812 1 175.68585531553495 254.23243167921893 0 0 0 0 +4921 1 1.4296 1 178.08152877912266 236.618855431687 0 0 0 0 +4071 1 1.571 1 185.33343114715566 262.0129430400236 0 0 0 0 +958 1 3.2378 1 180.02433140451845 224.57600915041166 0 0 0 0 +9782 1 1.0108 1 186.35491322492373 268.0752241937799 0 0 0 0 +4264 1 1.5391 1 193.5530416942376 271.0518670340155 0 0 0 0 +5294 1 1.3767 1 173.78640968978476 270.92040658401174 0 0 0 0 +4357 1 1.522 1 173.51750937240763 251.0498797899892 0 0 0 0 +4367 1 1.5203 1 193.2832922556618 272.55102539310934 0 0 0 0 +5395 1 1.3643 1 175.85908076340178 232.32513094780222 0 0 0 0 +9667 1 1.0172 1 171.04659290920495 260.42721863829564 0 0 0 0 +7695 1 1.1369 1 187.20872697748848 274.0343898280992 0 0 0 0 +2779 1 1.9017 1 174.75560284826088 239.1163227070794 0 0 0 0 +4495 1 1.4981 1 189.14223877580275 276.1611687747308 0 0 0 0 +4535 1 1.4918 1 184.530114968047 272.42165007946363 0 0 0 0 +4542 1 1.4908 1 181.42261688877267 230.22442541224294 0 0 0 0 +4553 1 1.4888 1 180.98703742569182 233.65355396788541 0 0 0 0 +4612 1 1.479 1 185.122846501438 260.1584916819836 0 0 0 0 +8403 1 1.0875 1 171.86409580828968 241.64304667721882 0 0 0 0 +9261 1 1.0388 1 173.68299338201695 238.19199701555112 0 0 0 0 +4702 1 1.4646 1 178.7016075534718 249.71476910121407 0 0 0 0 +4739 1 1.4581 1 174.19612317689777 249.75541801870997 0 0 0 0 +6947 1 1.1983 1 172.46967163406174 235.7403213855636 0 0 0 0 +4912 1 1.4305 1 172.9498604414506 259.4858128157748 0 0 0 0 +9584 1 1.0215 1 178.91773071467307 268.5337802799899 0 0 0 0 +4976 1 1.4233 1 181.23490312294192 231.6257521230107 0 0 0 0 +7142 1 1.1829 1 173.6503880480885 229.97158412851846 0 0 0 0 +4379 1 1.5186 1 173.73883224162878 272.3441197166551 0 0 0 0 +702 1 3.7804 1 175.20014472618888 244.43460747861968 0 0 0 0 +2282 1 2.1022 1 184.31669608790173 277.5525767204485 0 0 0 0 +7041 1 1.1903 1 176.60160126883451 246.75052484817522 0 0 0 0 +5278 1 1.3786 1 178.04182219751735 247.1091322104144 0 0 0 0 +5305 1 1.3747 1 171.0486422342422 253.02032885252135 0 0 0 0 +9837 1 1.0083 1 177.40139165088317 228.882882861311 0 0 0 0 +5464 1 1.3549 1 182.76586382074623 266.90604759029566 0 0 0 0 +5476 1 1.3533 1 180.88989817860457 240.75828941090234 0 0 0 0 +5508 1 1.3499 1 179.60198311048268 250.74378761321745 0 0 0 0 +4931 1 1.4285 1 186.00474624460307 273.64560636295687 0 0 0 0 +9796 1 1.0099 1 176.8631519763094 257.52215233021457 0 0 0 0 +5671 1 1.3297 1 171.8154114393819 258.7756597818012 0 0 0 0 +7700 1 1.1363 1 172.47352620043284 272.15788317150424 0 0 0 0 +5928 1 1.302 1 183.99531128108583 259.3798408023118 0 0 0 0 +5976 1 1.2969 1 176.30202758874717 258.49350932637844 0 0 0 0 +6011 1 1.2934 1 173.21795172090143 268.4611887270751 0 0 0 0 +1221 1 2.888 1 171.14207728347702 234.08813732599074 0 0 0 0 +6053 1 1.2886 1 182.99404625805633 252.25830453512478 0 0 0 0 +6109 1 1.2827 1 171.37243357440727 261.49863943877483 0 0 0 0 +6128 1 1.2807 1 175.25730715332384 252.90249918689355 0 0 0 0 +1665 1 2.4441 1 179.05317403736962 233.75906198012697 0 0 0 0 +8954 1 1.055 1 179.6662704526797 269.22156479503144 0 0 0 0 +6221 1 1.2685 1 175.00357617252746 255.46514068337774 0 0 0 0 +6222 1 1.2684 1 188.3239992799364 274.43525874815975 0 0 0 0 +6238 1 1.2664 1 181.7183160902748 267.67640693584684 0 0 0 0 +6265 1 1.2635 1 179.64088672131527 227.3652778868117 0 0 0 0 +6415 1 1.2503 1 176.59753272335374 253.19121839784918 0 0 0 0 +6431 1 1.2491 1 174.12693924301058 258.91372917026206 0 0 0 0 +6546 1 1.2379 1 177.25145888224742 254.19904170110294 0 0 0 0 +6554 1 1.2372 1 181.1593984795051 268.7866635150817 0 0 0 0 +4074 1 1.5706 1 177.34235774031112 232.80265189220128 0 0 0 0 +6632 1 1.2289 1 181.6749764552007 264.47999535239245 0 0 0 0 +6663 1 1.2256 1 180.32834115493324 232.51058895671105 0 0 0 0 +6696 1 1.2225 1 180.9475450291777 239.47922115128614 0 0 0 0 +9208 1 1.0414 1 184.24361092693962 275.54195135348226 0 0 0 0 +3405 1 1.7139 1 171.4918725405305 242.92178241362268 0 0 0 0 +6955 1 1.1981 1 191.13502993288037 273.7648461444294 0 0 0 0 +7021 1 1.1921 1 180.7990670613674 266.880812646605 0 0 0 0 +3965 1 1.5931 1 172.53954307931886 273.5323669568352 0 0 0 0 +7157 1 1.1815 1 181.85089412402488 247.63075160737796 0 0 0 0 +3657 1 1.6609 1 177.5903034620142 275.275796381276 0 0 0 0 +7243 1 1.1743 1 174.40335741576433 252.04233756196717 0 0 0 0 +7268 1 1.1732 1 179.60396672262652 257.0560818795119 0 0 0 0 +8489 1 1.0816 1 174.7183356278271 246.7738108255227 0 0 0 0 +9757 1 1.0125 1 185.01171173350056 257.2576017649972 0 0 0 0 +6922 1 1.2002 1 175.30130225048117 233.47537435384427 0 0 0 0 +7553 1 1.148 1 172.11001242229503 260.44808784951897 0 0 0 0 +7617 1 1.1431 1 194.75761913994577 271.5057496195723 0 0 0 0 +2444 1 2.0289 1 174.2620264164992 273.9825989062163 0 0 0 0 +7445 1 1.1572 1 171.21922292061984 273.85916105676085 0 0 0 0 +9526 1 1.0245 1 171.1524177239442 265.47809951962773 0 0 0 0 +7740 1 1.1333 1 181.07915513141327 241.96816778739648 0 0 0 0 +6500 1 1.2433 1 175.18599172346757 272.6530311059111 0 0 0 0 +525 1 4.2833 1 183.7849260246549 269.5140693715739 0 0 0 0 +7945 1 1.1185 1 172.79236137933427 242.29319328384514 0 0 0 0 +7883 1 1.1226 1 195.6597246746158 272.4524803048135 0 0 0 0 +2096 1 2.1853 1 176.30476245211256 273.9223623180461 0 0 0 0 +7912 1 1.12 1 180.10777437129104 260.1791650191619 0 0 0 0 +7981 1 1.1157 1 188.12767112273553 275.54714549963705 0 0 0 0 +8090 1 1.1081 1 172.61465787039083 271.0824201925927 0 0 0 0 +8195 1 1.1018 1 194.56598643315385 272.5398413292202 0 0 0 0 +8266 1 1.097 1 192.4120662719488 271.64832142306966 0 0 0 0 +8269 1 1.0968 1 187.24274289691346 267.44787945046164 0 0 0 0 +8281 1 1.0962 1 201.60986719338334 277.2084511945257 0 0 0 0 +475 1 4.5238 1 177.40699233526718 270.8326278863872 0 0 0 0 +2555 1 1.988 1 182.89015142174367 272.4681201502405 0 0 0 0 +8727 1 1.0682 1 174.06552469881265 256.0714775781601 0 0 0 0 +8749 1 1.0671 1 186.1625837442895 259.57648107768216 0 0 0 0 +8820 1 1.0619 1 179.0354807254031 257.9463380204714 0 0 0 0 +8843 1 1.0606 1 181.31655988254155 243.9013653119411 0 0 0 0 +9018 1 1.0518 1 185.38297427001285 271.5485877760241 0 0 0 0 +4876 1 1.4371 1 172.8324387792176 243.5713500835311 0 0 0 0 +9067 1 1.0489 1 187.69371860712556 264.45287832882485 0 0 0 0 +3359 1 1.7257 1 179.62521623425823 236.9308462244834 0 0 0 0 +9098 1 1.0471 1 181.99415100365746 228.31267084724433 0 0 0 0 +9217 1 1.041 1 178.68858711364263 251.48581729193063 0 0 0 0 +5555 1 1.3438 1 178.98567186271103 235.60295013654303 0 0 0 0 +9891 1 1.0054 1 176.84384636038035 231.67790555720762 0 0 0 0 +9303 1 1.0361 1 182.8383812085594 264.42884862221086 0 0 0 0 +5912 1 1.3037 1 171.40346479519266 231.28856599823155 0 0 0 0 +9760 1 1.0121 1 170.88651984786677 259.44977360272054 0 0 0 0 +7038 1 1.1905 1 170.89577803581432 266.50651425641354 0 0 0 0 +7 1 38.9695 1 200.63535098556065 305.408661460011 0 0 0 0 +80 1 10.2525 1 211.18005613245487 329.7879398511204 0 0 0 0 +228 1 6.3393 1 178.39710245550577 302.62362151857997 0 0 0 0 +242 1 6.2708 1 182.53133928290134 283.9236919007749 0 0 0 0 +268 1 6.0229 1 216.52810010962273 286.3914239053515 0 0 0 0 +8473 1 1.0828 1 171.3040284044869 309.86205435929014 0 0 0 0 +5613 1 1.3356 1 223.86738718946566 322.30475526970713 0 0 0 0 +4066 1 1.5718 1 223.30608094995986 285.43211476205136 0 0 0 0 +378 1 5.0749 1 187.31876042357686 286.73408498725183 0 0 0 0 +405 1 4.9123 1 175.98520032967335 309.3201637399008 0 0 0 0 +422 1 4.8009 1 179.98137191148993 311.8709666867185 0 0 0 0 +427 1 4.7727 1 173.7096938738542 293.0803971638837 0 0 0 0 +327 1 5.4976 1 176.71663062608792 278.680028453555 0 0 0 0 +3093 1 1.7998 1 224.20907295280608 288.39965431465225 0 0 0 0 +5455 1 1.3553 1 219.61263747567952 299.0609827837869 0 0 0 0 +594 1 4.0385 1 209.71434856689834 282.9912294018857 0 0 0 0 +7524 1 1.1509 1 216.43960343817474 322.49661013169316 0 0 0 0 +692 1 3.801 1 177.15881759637855 286.1804938825096 0 0 0 0 +707 1 3.7702 1 220.19114324740247 330.2512879351564 0 0 0 0 +8966 1 1.0543 1 219.0369509369838 328.1908316564907 0 0 0 0 +822 1 3.5377 1 181.88175137944657 295.59177791317705 0 0 0 0 +2516 1 2.0054 1 220.97092492270392 299.7742403543139 0 0 0 0 +837 1 3.495 1 211.95350653484246 323.125060505767 0 0 0 0 +862 1 3.4402 1 205.19131572911482 283.4025024197453 0 0 0 0 +901 1 3.3554 1 173.50810649262846 298.9404106120126 0 0 0 0 +7040 1 1.1904 1 171.77100115165922 311.29593032882667 0 0 0 0 +834 1 3.4982 1 221.10520645525736 292.12143263385735 0 0 0 0 +971 1 3.2165 1 187.6397443578604 281.601081109834 0 0 0 0 +5169 1 1.3925 1 172.57109443830515 295.8258888330626 0 0 0 0 +5799 1 1.3149 1 213.31033636086283 321.10954682036277 0 0 0 0 +1091 1 3.0306 1 201.49735051274973 284.3655296841926 0 0 0 0 +5037 1 1.4154 1 173.35121807603295 305.63321953497865 0 0 0 0 +1120 1 2.9881 1 179.50823822400653 290.8176959528043 0 0 0 0 +1224 1 2.8815 1 182.04989656736464 292.22744837137 0 0 0 0 +1229 1 2.8784 1 183.19983304109425 289.5900004888303 0 0 0 0 +1293 1 2.7982 1 218.51657107014924 290.2710473580748 0 0 0 0 +1357 1 2.7314 1 177.30633840769966 292.4973440074345 0 0 0 0 +1358 1 2.7308 1 192.35735561808588 286.311196395746 0 0 0 0 +1378 1 2.7057 1 220.90575612922757 289.083617235388 0 0 0 0 +7364 1 1.1644 1 219.53317115588337 284.58449988589473 0 0 0 0 +1428 1 2.6531 1 215.2930096217852 321.01922346416416 0 0 0 0 +1457 1 2.6122 1 204.62634090555818 325.7084375231331 0 0 0 0 +1472 1 2.6031 1 184.0646713108118 279.86010306356593 0 0 0 0 +1474 1 2.6009 1 179.70303479318065 293.5626588816852 0 0 0 0 +1495 1 2.5815 1 175.32867269655995 305.7193599194277 0 0 0 0 +1633 1 2.4639 1 175.53115569974304 283.5704965845535 0 0 0 0 +1642 1 2.457 1 210.3816377943634 287.2653323430205 0 0 0 0 +9104 1 1.0469 1 193.81359233380917 327.0255748780227 0 0 0 0 +1744 1 2.3879 1 214.28485304981857 289.9441176011597 0 0 0 0 +674 1 3.8371 1 218.21136955387553 317.4929331347762 0 0 0 0 +1864 1 2.3229 1 196.48830236270126 325.6004491936376 0 0 0 0 +1887 1 2.3095 1 205.18037973450652 328.0480057067691 0 0 0 0 +1891 1 2.3053 1 203.35737306205866 329.4279933402613 0 0 0 0 +1488 1 2.5907 1 205.30136233027974 280.42287621737023 0 0 0 0 +2065 1 2.2005 1 179.56081646898005 281.08599065468877 0 0 0 0 +2073 1 2.197 1 175.91448895286442 297.63075859693566 0 0 0 0 +2074 1 2.1967 1 212.5808486072059 287.1007664764906 0 0 0 0 +1888 1 2.3071 1 221.07654822176156 303.7524228787496 0 0 0 0 +2100 1 2.1838 1 175.45544662371532 288.5750691647642 0 0 0 0 +9965 1 1.0023 1 176.0761982509592 296.08338510389984 0 0 0 0 +2297 1 2.0945 1 190.67658408191525 284.6591741576861 0 0 0 0 +2376 1 2.0567 1 216.30361165482267 325.62105300608647 0 0 0 0 +2389 1 2.0526 1 174.36938106654182 286.7627281239949 0 0 0 0 +4854 1 1.4407 1 172.12602260854132 297.0592891392608 0 0 0 0 +9701 1 1.0152 1 178.70819066931833 287.956476313726 0 0 0 0 +4656 1 1.4722 1 221.50084649225113 319.19623961658914 0 0 0 0 +2447 1 2.0283 1 180.37048207684677 308.4797118417567 0 0 0 0 +2456 1 2.0259 1 207.47937120525802 284.862212911728 0 0 0 0 +9721 1 1.0142 1 220.4092643203581 311.6583235005075 0 0 0 0 +2474 1 2.0188 1 194.61551695735884 286.0384524834087 0 0 0 0 +2566 1 1.9837 1 183.87636599458193 293.74744571469586 0 0 0 0 +2591 1 1.9714 1 176.5960492309553 294.71546200850025 0 0 0 0 +8698 1 1.0698 1 223.44704246016735 327.522950866492 0 0 0 0 +2782 1 1.9009 1 177.11691267682448 290.2025197030952 0 0 0 0 +3385 1 1.7188 1 212.87395237708262 285.2039147194169 0 0 0 0 +9174 1 1.0431 1 219.34772211011762 321.76441408449915 0 0 0 0 +2967 1 1.8431 1 186.11516523452104 291.13376100018706 0 0 0 0 +2987 1 1.8364 1 217.42658200056877 330.2591586742346 0 0 0 0 +2996 1 1.8339 1 208.57350634390463 324.1872988257851 0 0 0 0 +3048 1 1.8129 1 202.24328338186902 327.78922467416237 0 0 0 0 +6784 1 1.2145 1 201.9144620060181 278.2980725267532 0 0 0 0 +3073 1 1.8065 1 192.19702162575956 323.81858356942126 0 0 0 0 +4668 1 1.4694 1 212.35500881855424 283.74921468681015 0 0 0 0 +8592 1 1.0757 1 176.4767795511774 281.9503415767044 0 0 0 0 +3121 1 1.7879 1 198.27559847308567 326.5100512924121 0 0 0 0 +447 1 4.6632 1 197.1694132912718 330.6417885517205 0 0 0 0 +3265 1 1.7491 1 178.8515786639553 295.57456940805463 0 0 0 0 +5612 1 1.3357 1 197.3264212554835 285.5677766933053 0 0 0 0 +3291 1 1.7425 1 216.60854609499847 291.42919484620506 0 0 0 0 +3297 1 1.7411 1 185.45822969849294 289.5225557250515 0 0 0 0 +3308 1 1.7382 1 203.56493236654936 285.34202603857995 0 0 0 0 +3324 1 1.7339 1 196.88985070704288 327.5332960632532 0 0 0 0 +9237 1 1.0401 1 214.80273034537197 325.5511720900202 0 0 0 0 +3393 1 1.7171 1 178.8931784372852 298.6396949929929 0 0 0 0 +3507 1 1.6927 1 182.26393338423478 314.32140143692567 0 0 0 0 +3548 1 1.6826 1 181.01741653784688 289.0834996206146 0 0 0 0 +3551 1 1.6815 1 178.69543101531815 282.9328222740793 0 0 0 0 +3596 1 1.672 1 200.36748936506544 325.71908713345044 0 0 0 0 +3612 1 1.6687 1 209.32328578214572 285.61240572787557 0 0 0 0 +3649 1 1.6623 1 175.90892575890135 299.53972773901006 0 0 0 0 +7381 1 1.1629 1 220.59772754930214 307.3286190544991 0 0 0 0 +3662 1 1.6579 1 174.81261251207565 301.01672552849095 0 0 0 0 +3751 1 1.6394 1 174.25501355821578 289.9773502794232 0 0 0 0 +8258 1 1.0973 1 220.44898914702486 318.4786571885578 0 0 0 0 +3778 1 1.6344 1 179.94053344603725 297.22231309561266 0 0 0 0 +716 1 3.7568 1 219.58119724985661 295.3477989638346 0 0 0 0 +3801 1 1.6286 1 208.40573850996512 286.8032656864445 0 0 0 0 +3826 1 1.6216 1 187.42744353880383 290.0390977703753 0 0 0 0 +6652 1 1.2266 1 222.84595105274195 319.2434578430052 0 0 0 0 +3862 1 1.6153 1 177.68309888269027 306.5344606092303 0 0 0 0 +3885 1 1.6104 1 185.0735978975088 292.46049468677734 0 0 0 0 +3905 1 1.6065 1 207.29086175190304 325.29739743907913 0 0 0 0 +9578 1 1.0217 1 220.38434452337447 298.2243001671421 0 0 0 0 +9981 1 1.0011 1 199.408907460554 328.98283789362364 0 0 -1 0 +3943 1 1.5987 1 177.3164094438089 296.3075623184763 0 0 0 0 +3956 1 1.5945 1 173.7891665701777 307.0587776762704 0 0 0 0 +5188 1 1.3901 1 203.15218112670857 282.14724814257914 0 0 0 0 +4045 1 1.5752 1 194.850147742858 324.7534367938634 0 0 0 0 +3688 1 1.6515 1 222.7075832625121 328.6807617575917 0 0 0 0 +4113 1 1.564 1 180.22492517163855 279.0574712116849 0 0 0 0 +4141 1 1.56 1 212.40164572565803 288.9549609186932 0 0 0 0 +4148 1 1.5585 1 181.1049671959697 287.51442564115064 0 0 0 0 +8336 1 1.0917 1 223.11944041279722 326.2934845302346 0 0 0 0 +4187 1 1.5517 1 178.7694053977754 307.68532329688236 0 0 0 0 +4233 1 1.5451 1 217.92064780964444 292.2871760049683 0 0 0 0 +2975 1 1.8403 1 219.39667232150072 314.24545580657434 0 0 0 0 +4248 1 1.5424 1 216.49460641693344 327.3420036774647 0 0 0 0 +5822 1 1.3121 1 222.85472439680777 289.04412037547104 0 0 0 0 +8176 1 1.1027 1 221.71110242518293 307.19777286541705 0 0 0 0 +860 1 3.4418 1 173.6692637983156 303.26969238601976 0 0 0 0 +4334 1 1.5259 1 206.39155467124021 326.55277783424026 0 0 0 0 +1300 1 2.7928 1 214.95430957895695 323.6937144821407 0 0 0 0 +4500 1 1.4971 1 179.5379427083591 306.37124482409246 0 0 0 0 +4531 1 1.4928 1 207.14794868604665 281.96946968398294 0 0 0 0 +9231 1 1.0404 1 205.80246605735888 331.5095440726572 0 0 -1 0 +4579 1 1.4844 1 216.88916181133706 328.7643048555684 0 0 0 0 +4661 1 1.4705 1 198.68260744768858 328.0221892195979 0 0 0 0 +4672 1 1.4687 1 182.08501912238836 279.4618413146521 0 0 0 0 +3262 1 1.7493 1 221.04462087859628 312.856085597071 0 0 0 0 +4744 1 1.4573 1 217.89001999760058 327.7756518655822 0 0 0 0 +5379 1 1.3666 1 173.73052289573747 311.51156792897035 0 0 0 0 +4245 1 1.5428 1 218.04985959310935 331.7875286808801 0 0 0 0 +4906 1 1.4312 1 178.26609564014882 289.0455795199248 0 0 0 0 +9897 1 1.0051 1 214.97158575592576 319.27097084500247 0 0 0 0 +4987 1 1.4219 1 178.49227035820428 297.1413341964667 0 0 0 0 +4990 1 1.4218 1 216.148244949951 290.00723574896205 0 0 0 0 +5060 1 1.4115 1 194.58782320896893 326.14219535978367 0 0 0 0 +9397 1 1.0309 1 190.1814339234792 287.7148497632768 0 0 0 0 +5229 1 1.3853 1 215.86303700030322 318.5246975268201 0 0 0 0 +5239 1 1.3834 1 188.50644556043386 279.52961361742763 0 0 0 0 +3413 1 1.7119 1 224.22192730524134 329.3740450111568 0 0 0 0 +2302 1 2.0917 1 171.9868925170316 301.143638484166 0 0 0 0 +5331 1 1.372 1 175.57785030379395 290.67012356763024 0 0 0 0 +5389 1 1.3654 1 194.5015911840075 327.9800162949585 0 0 0 0 +5516 1 1.3491 1 193.5943816946733 324.2676542889453 0 0 0 0 +5542 1 1.3453 1 181.2276948820653 300.0943448861435 0 0 0 0 +5562 1 1.3432 1 184.00838902577556 291.49907170410495 0 0 0 0 +5585 1 1.339 1 179.70080225810807 287.39321587084 0 0 0 0 +3135 1 1.783 1 201.58206128197068 282.0503152867874 0 0 0 0 +5653 1 1.3321 1 183.7600042641584 287.5087498634198 0 0 0 0 +5655 1 1.332 1 199.65306966423344 285.3770829222548 0 0 0 0 +5686 1 1.3278 1 179.59032607238422 288.6929295851284 0 0 0 0 +5689 1 1.3275 1 207.02685236893984 286.3971798739064 0 0 0 0 +4426 1 1.51 1 222.7662504386032 330.21363395804343 0 0 0 0 +8932 1 1.056 1 221.49533051470894 328.0408974261724 0 0 0 0 +9836 1 1.0084 1 213.90761468778297 322.1260989309201 0 0 0 0 +6136 1 1.2799 1 222.7409698939056 322.9689995373284 0 0 0 0 +5828 1 1.3116 1 199.68636409111033 327.00562244999765 0 0 0 0 +9472 1 1.0272 1 212.17955981575292 282.5598098588847 0 0 0 0 +5968 1 1.2979 1 188.23898529251855 283.7390937256774 0 0 0 0 +5983 1 1.2964 1 180.2896353886809 299.17898369910125 0 0 0 0 +6086 1 1.2846 1 195.4777872789257 327.0901042333204 0 0 0 0 +6087 1 1.2846 1 173.7632118714643 288.29200462691546 0 0 0 0 +6106 1 1.2829 1 206.04863642254168 285.5871231936806 0 0 0 0 +9773 1 1.0113 1 173.5075237223483 301.085246429313 0 0 0 0 +6289 1 1.2617 1 190.4243612586965 286.5008045055131 0 0 0 0 +6296 1 1.261 1 182.48506861887665 287.67062135407537 0 0 0 0 +8204 1 1.1012 1 199.46371253123803 284.23347196273124 0 0 0 0 +6313 1 1.26 1 219.99341134246734 287.37992463902145 0 0 0 0 +6161 1 1.2761 1 208.06448700675605 280.9852911509768 0 0 0 0 +61 1 12.294 1 195.22988782322727 279.1327951411164 0 0 0 0 +6463 1 1.2465 1 178.8392352771365 284.36450347165174 0 0 0 0 +6467 1 1.2462 1 179.61057816913245 286.1534152267937 0 0 0 0 +6471 1 1.2458 1 215.14635384805462 291.5269396057821 0 0 0 0 +7921 1 1.1195 1 224.17498319435327 313.3516449315211 0 0 0 0 +9225 1 1.0407 1 219.82674546375 310.8622567259077 0 0 0 0 +6512 1 1.242 1 216.88719392750104 293.2499127889831 0 0 0 0 +6534 1 1.2391 1 181.004984622807 280.2185002031686 0 0 0 0 +6615 1 1.2306 1 202.79726351205693 325.3365664842784 0 0 0 0 +6699 1 1.2223 1 202.9418532810644 326.5148950343112 0 0 0 0 +6765 1 1.2165 1 177.55402187679422 298.0171243923346 0 0 0 0 +6580 1 1.2346 1 222.54367100170077 310.56361375933176 0 0 0 0 +6812 1 1.2108 1 204.89609629692401 285.8106408309623 0 0 0 0 +8892 1 1.0578 1 200.93664742497432 328.2409328182165 0 0 -1 0 +6824 1 1.2102 1 217.3266952757687 294.38808631676426 0 0 0 0 +6897 1 1.2023 1 200.91010284853638 327.1188166512325 0 0 0 0 +9150 1 1.0446 1 172.65717419635797 306.6015984683472 0 0 0 0 +7057 1 1.1893 1 177.350514380755 283.7273745012442 0 0 0 0 +7070 1 1.1883 1 216.61200201869156 331.47105455152166 0 0 0 0 +5989 1 1.2959 1 175.33169075092863 281.7351884552302 0 0 0 0 +7171 1 1.1805 1 178.01524672581206 281.7073383429958 0 0 0 0 +7182 1 1.1796 1 176.04224821902227 312.27929230153563 0 0 0 0 +7290 1 1.1716 1 177.13632104014005 312.5766137950271 0 0 0 0 +7315 1 1.1691 1 178.05023287339574 294.3258123108345 0 0 0 0 +7338 1 1.1676 1 180.93920304523348 298.135942896512 0 0 0 0 +2563 1 1.9844 1 203.92387193421177 331.4666380262219 0 0 -1 0 +3820 1 1.6227 1 224.4287218886633 326.61780931027255 0 0 0 0 +7506 1 1.1519 1 184.69087175189222 288.3041325739139 0 0 0 0 +7525 1 1.1508 1 196.15514715429276 285.8625030382045 0 0 0 0 +8682 1 1.0709 1 199.9260387650516 328.1288419836559 0 0 0 0 +7568 1 1.1466 1 219.00916805186563 292.9944319250839 0 0 0 0 +7620 1 1.1429 1 182.05714447405452 297.9037243423669 0 0 0 0 +7645 1 1.1407 1 213.59271987630348 288.37380310410816 0 0 0 0 +7650 1 1.1403 1 181.67690933781563 298.97014436198276 0 0 0 0 +9308 1 1.0357 1 189.17965107526976 284.3996717664175 0 0 0 0 +9405 1 1.0303 1 186.12924690913528 283.9569369117324 0 0 0 0 +6984 1 1.1957 1 216.9414089854889 323.55514426019374 0 0 0 0 +7745 1 1.1332 1 177.0847276543007 288.63312769691265 0 0 0 0 +7748 1 1.1326 1 218.02783303952182 293.5385407411808 0 0 0 0 +7823 1 1.1273 1 177.3344159410383 282.60375285911823 0 0 0 0 +7824 1 1.1272 1 201.6716778507125 325.38190424385914 0 0 0 0 +7831 1 1.1271 1 189.69441773110825 288.6633795368349 0 0 0 0 +4481 1 1.5008 1 224.00027811272483 330.93155104713304 0 0 0 0 +7922 1 1.1195 1 177.2182931389634 299.10874558294034 0 0 0 0 +7947 1 1.1183 1 185.48028249918661 281.71015896899985 0 0 0 0 +4276 1 1.5372 1 221.74532563860922 287.2001646408242 0 0 0 0 +8002 1 1.1143 1 185.73203475422142 280.62622248020125 0 0 0 0 +3928 1 1.6023 1 219.49264054775134 312.56466695045606 0 0 0 0 +8115 1 1.1067 1 180.60081507590783 305.6222968631084 0 0 0 0 +8149 1 1.1048 1 193.35383496898305 326.0302840098799 0 0 0 0 +2442 1 2.0295 1 174.1593999072128 296.4134790767119 0 0 0 0 +8214 1 1.1005 1 191.13579544981212 322.8840071055952 0 0 0 0 +8268 1 1.0968 1 198.49102713781858 285.47768187236153 0 0 0 0 +8282 1 1.0962 1 215.93693900820952 292.5955856762815 0 0 0 0 +8325 1 1.0925 1 195.67597009151257 328.2333475241592 0 0 0 0 +5650 1 1.3324 1 222.07632205833116 300.86776828022766 0 0 0 0 +8501 1 1.0808 1 199.0780185348041 325.349014148676 0 0 0 0 +8511 1 1.0801 1 181.44149057838615 290.37500483983956 0 0 0 0 +8583 1 1.0763 1 211.6153864121406 285.79658201299986 0 0 0 0 +8591 1 1.0757 1 201.80315125005694 326.44029916276077 0 0 0 0 +9491 1 1.0263 1 198.06263761705145 325.172543297987 0 0 0 0 +8626 1 1.0732 1 187.09421713597453 283.6607327720724 0 0 0 0 +8635 1 1.0728 1 191.2012559759498 287.7804706941384 0 0 0 0 +8658 1 1.0718 1 175.30888645577377 295.45880998129087 0 0 0 0 +8665 1 1.0715 1 210.00287513355522 324.26874897932487 0 0 0 0 +1949 1 2.27 1 222.89588071328728 312.27952002837117 0 0 0 0 +774 1 3.6405 1 171.69376804786572 289.56468849582956 0 0 0 0 +8729 1 1.0681 1 210.6569415929708 285.3528180986959 0 0 0 0 +1695 1 2.4278 1 219.83486129279555 320.10449619389766 0 0 0 0 +8738 1 1.0677 1 206.12645354671236 324.65303340468455 0 0 0 0 +8747 1 1.0671 1 209.68046024838466 323.2563811790261 0 0 0 0 +8760 1 1.0659 1 188.63496724572857 289.4511309198431 0 0 0 0 +9713 1 1.0145 1 203.66215648786365 327.37114788869343 0 0 0 0 +8776 1 1.0647 1 218.13528720199466 329.0018675944714 0 0 0 0 +8769 1 1.0651 1 171.4958965053054 299.70636251606044 0 0 0 0 +8918 1 1.0565 1 192.78240805426606 325.12363419085057 0 0 0 0 +8938 1 1.0558 1 186.02166410535858 282.93402844601667 0 0 0 0 +350 1 5.3344 1 222.47014251556928 316.0157866155371 0 0 0 0 +9028 1 1.0513 1 211.56864703255656 284.73400986194315 0 0 0 0 +2892 1 1.8643 1 172.65891985279103 308.33798787315584 0 0 0 0 +7669 1 1.1387 1 221.4427339005313 311.4783231414219 0 0 0 0 +3223 1 1.7592 1 189.56680023967874 283.1065352078343 0 0 0 0 +4945 1 1.426 1 216.6751746883814 319.59281875830465 0 0 0 0 +2379 1 2.0555 1 217.85063414829196 321.8940971300482 0 0 0 0 +1232 1 2.8746 1 224.16570832325607 324.3785387047198 0 0 0 0 +4539 1 1.4911 1 217.93885695913193 320.1637077159255 0 0 0 0 +6494 1 1.2438 1 220.45142852540306 308.52051355547786 0 0 0 0 +2954 1 1.8467 1 172.73651994387558 310.1686965377916 0 0 0 0 +6836 1 1.2085 1 224.19685236902157 296.34542292909117 0 0 0 0 +4402 1 1.5148 1 174.14620118917583 284.99592293608214 0 0 0 0 +3815 1 1.6249 1 213.96572523886888 283.5384961496177 0 0 0 0 +313 1 5.629 1 220.01379532062012 325.0321961334917 0 0 0 0 +7023 1 1.192 1 222.3848035239995 327.35190865049975 0 0 0 0 +2666 1 1.9424 1 223.80090205942065 292.0225756938836 0 0 0 0 +4638 1 1.4756 1 219.26114900621607 297.79017815662604 0 0 0 0 +7584 1 1.1452 1 218.1812590717723 315.0393645403645 0 0 0 0 +1116 1 2.9962 1 186.55625769918018 278.7351408389067 0 0 0 0 +8694 1 1.0703 1 207.08137517801052 280.4219057795002 0 0 0 0 +1837 1 2.3366 1 172.24291916144867 286.7144060069066 0 0 0 0 +9805 1 1.0097 1 194.80912736370198 329.1102479324736 0 0 0 0 +6514 1 1.2417 1 220.44485875520212 321.73877396506407 0 0 0 0 +6606 1 1.2311 1 204.18725114106326 278.90333862384267 0 0 0 0 +4676 1 1.4681 1 220.44721836691286 301.42492485714496 0 0 0 0 +2724 1 1.9219 1 205.24524882916268 330.1311167242974 0 0 -1 0 +1100 1 3.0202 1 200.91078325453805 330.2429560585793 0 0 -1 0 +5591 1 1.3384 1 221.67396671160103 302.0861918574171 0 0 0 0 +4332 1 1.5263 1 221.7929999122819 308.481414020989 0 0 0 0 +2673 1 1.9412 1 221.07225904988823 305.85035519647 0 0 0 0 +1305 1 2.788 1 202.66279956865037 280.1287162025875 0 0 0 0 +2574 1 1.9798 1 221.03556524813095 310.01067847024353 0 0 0 0 +7812 1 1.128 1 224.3888425388658 327.98492742374845 0 0 0 0 +7693 1 1.137 1 222.49985981411163 299.69025614065544 0 0 0 0 +1345 1 2.7429 1 222.22872452389376 321.1031093906751 0 0 0 0 +949 1 3.2507 1 222.3169929307274 297.5254716050751 0 0 0 0 +2472 1 2.0207 1 222.28292804557015 294.5700782924251 0 0 0 0 +2067 1 2.1989 1 220.58729045923053 285.7985230747951 0 0 0 0 +9909 1 1.0046 1 222.2767038930905 331.3542176397205 0 0 0 0 +8780 1 1.0645 1 223.29267299925874 295.6826803739616 0 0 0 0 +7469 1 1.1555 1 222.03528603395648 285.05220335542793 0 0 0 0 +4537 1 1.4913 1 222.84415291042427 290.4268658020087 0 0 0 0 +3939 1 1.6002 1 223.24149242676222 287.0099505786988 0 0 0 0 +9735 1 1.0133 1 223.79845967407357 289.7002392551318 0 0 0 0 +6493 1 1.2438 1 182.89475523331234 278.40399633615 0 0 0 0 +7454 1 1.1566 1 188.56903093623993 278.24862137463305 0 0 0 0 +7205 1 1.1777 1 203.09600441742194 278.2304205230116 0 0 0 0 +87 1 10.0111 1 255.98096799738244 38.37456416775272 0 0 0 0 +7323 1 1.1686 1 272.1945538584477 33.379939072779834 0 0 0 0 +129 1 8.4725 1 247.4862051531067 19.307813285933154 0 0 0 0 +154 1 7.5546 1 238.4382687683972 30.566057859848012 0 0 0 0 +979 1 3.2094 1 227.19914078940226 13.22696746333504 0 0 1 0 +5668 1 1.3305 1 274.17266855984406 43.55932737269145 0 0 0 0 +221 1 6.4716 1 231.58552858999465 29.80101263015625 0 0 0 0 +7419 1 1.1596 1 265.4737070837911 39.553420800336816 0 0 0 0 +259 1 6.1367 1 226.65503236412744 54.58306868252863 0 0 0 0 +265 1 6.06 1 251.7371444222799 25.121800818184465 0 0 0 0 +6374 1 1.2548 1 274.8699946871666 44.573658098427096 0 0 0 0 +305 1 5.7095 1 245.37825577202608 12.661619522850632 0 0 0 0 +314 1 5.6024 1 231.02672273287806 50.72837958416494 0 0 0 0 +316 1 5.5712 1 242.04060839461957 39.952889742273264 0 0 0 0 +318 1 5.5547 1 241.12435526286345 16.19275384406553 0 0 0 0 +328 1 5.4818 1 230.72548718735985 39.12710379838743 0 0 0 0 +315 1 5.5997 1 225.56791347111204 60.29922439939812 0 0 0 0 +504 1 4.3574 1 248.83631912975792 32.06656633031713 0 0 0 0 +518 1 4.3107 1 262.5289717394728 32.892055370304824 0 0 0 0 +539 1 4.2371 1 266.19220402724244 36.911444529603486 0 0 0 0 +556 1 4.1867 1 247.86908093656885 38.77533946886895 0 0 0 0 +581 1 4.0916 1 250.07976219171766 48.17385274586338 0 0 0 0 +582 1 4.0846 1 237.16394010002242 18.790929977328613 0 0 0 0 +598 1 4.0263 1 259.8943290966466 25.069458644566364 0 0 0 0 +599 1 4.0233 1 229.33967303867365 34.607957712587854 0 0 0 0 +613 1 3.9811 1 238.05406181549355 37.58471543427247 0 0 0 0 +2077 1 2.1953 1 233.02182437560285 10.930006539821397 0 0 1 0 +672 1 3.8381 1 237.56551361396836 41.308058436096076 0 0 0 0 +680 1 3.8253 1 245.09885161474736 34.122626463008885 0 0 0 0 +738 1 3.7055 1 260.98033476013916 42.967080867657074 0 0 0 0 +746 1 3.6921 1 235.04068851064784 48.53491079464467 0 0 0 0 +760 1 3.6552 1 251.1103316615015 44.568994013459815 0 0 0 0 +796 1 3.5979 1 237.3621787950453 13.756281003060975 0 0 0 0 +808 1 3.5731 1 257.914745823781 30.411368227164907 0 0 0 0 +843 1 3.4713 1 234.82044402551878 53.014405761532764 0 0 0 0 +882 1 3.3846 1 239.7938888370619 51.9186717999494 0 0 0 0 +897 1 3.3588 1 258.3279535173036 45.258900224430384 0 0 0 0 +907 1 3.347 1 246.46780105056374 29.150112366395987 0 0 0 0 +931 1 3.2941 1 243.75729964999505 30.924104099742912 0 0 0 0 +933 1 3.2892 1 257.0182715611387 27.106924616491835 0 0 0 0 +943 1 3.2572 1 236.00346173860814 25.832591913370887 0 0 0 0 +962 1 3.228 1 255.07900194156514 44.88452108997786 0 0 0 0 +963 1 3.2277 1 265.64283157033225 30.844724977173893 0 0 0 0 +1094 1 3.0239 1 235.5181269211893 35.33542271991256 0 0 0 0 +1109 1 3.0046 1 255.164577081717 32.091484104816224 0 0 0 0 +1124 1 2.9853 1 242.35664024526682 47.7608369906922 0 0 0 0 +1154 1 2.9494 1 262.35058073278486 27.565206646547878 0 0 0 0 +1175 1 2.9306 1 246.1328476674337 25.09931150852103 0 0 0 0 +1207 1 2.8995 1 246.61358970426315 48.32855123461322 0 0 0 0 +1210 1 2.8978 1 266.3886254880053 26.40943099722103 0 0 0 0 +1211 1 2.8964 1 242.20476584393873 35.763365965535904 0 0 0 0 +3744 1 1.6406 1 227.5290335583379 20.38459922428065 0 0 0 0 +1283 1 2.8067 1 233.79863105032254 18.437172387785786 0 0 0 0 +1299 1 2.7943 1 234.76131065985038 38.124205555749725 0 0 0 0 +1302 1 2.7923 1 255.17828449032245 47.85152451046991 0 0 0 0 +9336 1 1.0343 1 269.0221493434218 48.578235765315135 0 0 0 0 +1330 1 2.7557 1 253.50611581976597 21.196312705810627 0 0 0 0 +1344 1 2.7437 1 262.2328890831957 37.64523182356168 0 0 0 0 +1363 1 2.7258 1 235.45006472983076 45.47276679216324 0 0 0 0 +1386 1 2.6997 1 248.46665730574495 43.02373238542211 0 0 0 0 +1406 1 2.6738 1 237.47784058861166 22.09902050814556 0 0 0 0 +1463 1 2.6072 1 233.2881384510637 33.83839972707182 0 0 0 0 +1497 1 2.58 1 254.41734033137433 28.358149730932084 0 0 0 0 +1508 1 2.57 1 242.7335375697183 22.046693512758203 0 0 0 0 +1517 1 2.5599 1 230.98909255207792 43.08833947844909 0 0 0 0 +1526 1 2.5485 1 263.8992699199447 42.030841107208495 0 0 0 0 +4188 1 1.5516 1 226.0143807552709 19.955833150833993 0 0 0 0 +1791 1 2.3617 1 224.84846268688185 11.882620937996466 0 0 1 0 +1626 1 2.4708 1 245.32650914504595 45.13514542796888 0 0 0 0 +1629 1 2.468 1 265.7952607452229 33.642769954777044 0 0 0 0 +1782 1 2.3664 1 269.82499287945217 43.20547237785335 0 0 0 0 +1721 1 2.4102 1 240.32705810777057 21.745253685047878 0 0 0 0 +1854 1 2.3293 1 271.6575510489464 44.5845577961136 0 0 0 0 +1781 1 2.3669 1 243.50025261244116 43.61128051609312 0 0 0 0 +1790 1 2.3618 1 243.2250527316905 24.42457069850972 0 0 0 0 +1851 1 2.3299 1 251.30023921921787 34.41396656713471 0 0 0 0 +1884 1 2.3108 1 234.78399996711426 22.226083266490402 0 0 0 0 +3563 1 1.6776 1 232.6326682764952 12.78086907724235 0 0 1 0 +1917 1 2.2888 1 249.1082754919629 28.334407404654723 0 0 0 0 +1937 1 2.2787 1 240.1227854083143 46.38341972026429 0 0 0 0 +2005 1 2.2362 1 242.18110298869925 50.33153276117451 0 0 0 0 +2035 1 2.2197 1 242.18621024286466 19.82223613274927 0 0 0 0 +2111 1 2.1764 1 263.5391160484565 44.32335103829986 0 0 0 0 +2112 1 2.1759 1 231.84804936006475 55.27061187744019 0 0 0 0 +2123 1 2.1682 1 255.43742529938123 23.382188306275367 0 0 0 0 +2129 1 2.1649 1 241.99472283650508 45.24041281784349 0 0 0 0 +2186 1 2.1445 1 237.14728194300173 51.239505460573234 0 0 0 0 +2194 1 2.1407 1 264.46479867664686 24.906523995754814 0 0 0 0 +2215 1 2.1294 1 263.9175987053493 46.40535825501355 0 0 0 0 +2224 1 2.1253 1 274.18305043104317 22.994464031313576 0 0 0 0 +2225 1 2.1252 1 245.68816516854613 40.99274884573687 0 0 0 0 +2269 1 2.1074 1 276.12295028602296 23.6188470271995 0 0 0 0 +2277 1 2.1042 1 233.10999710937074 46.47713274503556 0 0 0 0 +8978 1 1.0538 1 276.8693298151459 45.987570221275234 0 0 0 0 +2362 1 2.0615 1 243.65857068867885 27.60701405142096 0 0 0 0 +2390 1 2.0523 1 268.16380862558583 24.786923600142433 0 0 0 0 +2404 1 2.0463 1 240.21634217496006 44.24051047388959 0 0 0 0 +2430 1 2.0352 1 261.67026480340434 29.898528821854118 0 0 0 0 +2434 1 2.0331 1 258.934073127851 47.879732365198834 0 0 0 0 +7585 1 1.1451 1 264.65575542859716 40.3663680650277 0 0 0 0 +2521 1 2.0042 1 228.64129260158882 44.063063277931604 0 0 0 0 +2542 1 1.9916 1 257.5035641279462 23.261615608862577 0 0 0 0 +2554 1 1.988 1 237.84149454118304 48.27613678180316 0 0 0 0 +160 1 7.4952 1 271.7084426481273 38.68733896131594 0 0 0 0 +2585 1 1.976 1 269.1464758959828 33.62370498644678 0 0 0 0 +2643 1 1.9514 1 264.9297200386041 48.12142877001011 0 0 0 0 +2645 1 1.9509 1 253.01809556221394 33.24986257701318 0 0 0 0 +2663 1 1.9431 1 230.27407960955009 45.14017426124653 0 0 0 0 +8318 1 1.0927 1 231.28368516216344 57.38175860271397 0 0 0 0 +2791 1 1.8967 1 264.05188904150134 39.00571495896868 0 0 0 0 +2793 1 1.895 1 230.1815570366436 56.421257982248534 0 0 0 0 +7808 1 1.1282 1 277.80540530044146 34.75537831562526 0 0 0 0 +2924 1 1.8564 1 263.3943230429296 35.777016128850974 0 0 0 0 +2953 1 1.8471 1 244.64395583095688 47.1503291807384 0 0 0 0 +2981 1 1.8388 1 251.8063689265551 30.43267820266769 0 0 0 0 +3028 1 1.8185 1 247.45818165407366 45.00551093452738 0 0 0 0 +624 1 3.9419 1 269.42507609119474 27.856078618025666 0 0 0 0 +3061 1 1.8095 1 239.97280432853555 19.67563414682514 0 0 0 0 +6899 1 1.2021 1 231.16160610243182 13.859110729979081 0 0 1 0 +3125 1 1.7861 1 244.27805945495464 50.765901762571644 0 0 0 0 +3137 1 1.7829 1 258.4730403213667 33.030303322215104 0 0 0 0 +4111 1 1.5643 1 274.0512108739281 34.85082134120243 0 0 0 0 +3190 1 1.7686 1 262.02543983889166 46.3991161096143 0 0 0 0 +3208 1 1.7646 1 249.24814530075275 36.24751606909756 0 0 0 0 +3231 1 1.7573 1 231.26243248139346 47.037749890580976 0 0 0 0 +3244 1 1.7542 1 244.25406968718778 36.74483081436641 0 0 0 0 +3249 1 1.753 1 239.68153758958712 24.92834488170315 0 0 0 0 +3260 1 1.7495 1 228.21291059416438 27.457871050722755 0 0 0 0 +3277 1 1.7458 1 229.0734458753982 42.28429120522066 0 0 0 0 +3342 1 1.7304 1 236.9472072412549 54.313102247674045 0 0 0 0 +3345 1 1.7301 1 225.96977428081559 36.06114672310369 0 0 0 0 +3346 1 1.7295 1 247.06202018391724 35.99894514786263 0 0 0 0 +3380 1 1.7204 1 238.13800572758686 45.854967083166436 0 0 0 0 +4098 1 1.5666 1 241.75340119379564 12.601954147562331 0 0 1 0 +3467 1 1.6999 1 265.81877561928826 41.144225404548294 0 0 0 0 +3483 1 1.6973 1 259.88798790424073 34.15343404603558 0 0 0 0 +3513 1 1.691 1 277.0226388105856 21.055997686436665 0 0 0 0 +3524 1 1.6885 1 241.3640384682201 25.19808314869194 0 0 0 0 +7314 1 1.1692 1 226.66182264951328 24.76070561484471 0 0 0 0 +3546 1 1.6832 1 227.20615259177976 46.60748888919477 0 0 0 0 +3559 1 1.6791 1 233.60108450273114 26.280954022434397 0 0 0 0 +200 1 6.8647 1 230.42270468532254 23.451206487298684 0 0 0 0 +900 1 3.3582 1 224.94092733726148 16.357561174079898 0 0 0 0 +3702 1 1.646 1 251.467420453231 42.00231807184752 0 0 0 0 +3708 1 1.6449 1 238.46044859587408 49.90808616001004 0 0 0 0 +3718 1 1.6443 1 261.2080493933537 35.61791315248067 0 0 0 0 +6895 1 1.2028 1 226.5735328421073 21.380447831332255 0 0 0 0 +3726 1 1.6431 1 266.6260576875189 28.631164185576967 0 0 0 0 +3762 1 1.6376 1 249.54974591422229 41.150106866019 0 0 0 0 +3767 1 1.637 1 264.6039922959465 27.72095067633794 0 0 0 0 +3794 1 1.6312 1 234.17037998468206 43.82460007731304 0 0 0 0 +3835 1 1.6198 1 233.66485191963474 55.19287971388631 0 0 0 0 +3840 1 1.6191 1 263.9459261801011 29.164519529264123 0 0 0 0 +3859 1 1.6162 1 268.208204511901 32.14280923061395 0 0 0 0 +3865 1 1.614 1 234.85073053401874 20.32940196176834 0 0 0 0 +3926 1 1.6024 1 262.0034301006868 48.07495788783917 0 0 0 0 +3944 1 1.5986 1 270.75445400886866 23.98892559226195 0 0 0 0 +3951 1 1.5962 1 234.04842693625832 40.14322253384881 0 0 0 0 +3952 1 1.5957 1 245.0999023477153 38.112292190814344 0 0 0 0 +3974 1 1.5911 1 232.5637109506288 44.39102293335312 0 0 0 0 +3975 1 1.591 1 237.73092295400926 34.945198985800246 0 0 0 0 +3977 1 1.5906 1 241.44833300704008 23.603054149688777 0 0 0 0 +3994 1 1.5874 1 239.29280323572965 35.11833597872734 0 0 0 0 +4019 1 1.5798 1 242.18809988209634 26.57443259711976 0 0 0 0 +4054 1 1.5739 1 232.99723161876963 42.88082591854659 0 0 0 0 +4060 1 1.573 1 247.90963260289016 46.541950953247735 0 0 0 0 +4065 1 1.5725 1 252.98673095645074 31.55456616328474 0 0 0 0 +4082 1 1.5694 1 269.87530296140636 25.226586490799793 0 0 0 0 +4099 1 1.5665 1 262.67390730166665 24.49833837599846 0 0 0 0 +4132 1 1.561 1 253.83551588209343 30.28651105156841 0 0 0 0 +4140 1 1.5603 1 235.31573497396417 42.76620690545529 0 0 0 0 +4191 1 1.5507 1 250.35838111554474 37.36303457000483 0 0 0 0 +4198 1 1.5498 1 275.65940682678263 21.903517457921 0 0 0 0 +4209 1 1.5483 1 248.11077821383867 24.194849459755737 0 0 0 0 +1414 1 2.6672 1 266.27100894741784 46.3327754185222 0 0 0 0 +4280 1 1.5361 1 257.21938922634365 48.31765518389084 0 0 0 0 +4302 1 1.5324 1 250.39021517520965 29.668451947967732 0 0 0 0 +4343 1 1.524 1 234.92802661042467 41.32896308052652 0 0 0 0 +1935 1 2.2797 1 277.8763238147 47.341179147111056 0 0 0 0 +4446 1 1.5068 1 245.35226111675897 43.203026226440244 0 0 0 0 +4448 1 1.5066 1 236.4660057152639 43.6940583629795 0 0 0 0 +4460 1 1.5038 1 247.95584545080933 49.93925339962894 0 0 0 0 +4619 1 1.4785 1 233.37552747743993 20.555441463939264 0 0 0 0 +4632 1 1.4766 1 236.95404874042688 46.854553108266835 0 0 0 0 +784 1 3.6172 1 276.99110852938975 37.00184283030299 0 0 0 0 +1704 1 2.4209 1 226.7536542694436 10.497293297095862 0 0 1 0 +5988 1 1.2961 1 275.66223868778144 35.014251630347744 0 0 0 0 +4802 1 1.4484 1 238.1110593690125 24.833170286833855 0 0 0 0 +4829 1 1.4449 1 249.5352858777549 34.77338778636617 0 0 0 0 +4836 1 1.4438 1 227.73097475245493 49.54772886481813 0 0 0 0 +4857 1 1.4403 1 228.0734565939369 37.00278076287021 0 0 0 0 +8205 1 1.1012 1 268.15024700673246 42.94795508209713 0 0 0 0 +4870 1 1.438 1 226.72597564315598 37.39911665840256 0 0 0 0 +4873 1 1.4375 1 252.37825991196883 46.73355479610473 0 0 0 0 +4903 1 1.432 1 243.58918138685058 45.94671107398358 0 0 0 0 +4909 1 1.4309 1 228.69390871154016 48.24850280245821 0 0 0 0 +4915 1 1.4302 1 236.0192652182263 23.535099207880695 0 0 0 0 +4918 1 1.4299 1 255.46484063046503 30.001213105397706 0 0 0 0 +4928 1 1.4287 1 241.6594682839668 43.39019753054117 0 0 0 0 +4939 1 1.4272 1 226.4548798277789 45.31488471246127 0 0 0 0 +4947 1 1.4259 1 269.83008623973063 30.48759550984873 0 0 0 0 +4984 1 1.4224 1 260.701671547793 45.5147262919148 0 0 0 0 +5022 1 1.4174 1 240.590419688411 34.434072915174944 0 0 0 0 +5027 1 1.417 1 232.20298605841157 19.764198081025135 0 0 0 0 +5056 1 1.4122 1 238.77606923649736 23.61847088756371 0 0 0 0 +5117 1 1.4004 1 247.35774128691597 41.41298467604516 0 0 0 0 +5137 1 1.398 1 238.2967969124555 26.166805939364195 0 0 0 0 +5143 1 1.3976 1 225.1578899995718 45.682010269640834 0 0 0 0 +5145 1 1.3972 1 251.68814215047672 32.252974257308026 0 0 0 0 +5236 1 1.384 1 237.6897049210528 16.166250468251945 0 0 0 0 +5324 1 1.3726 1 246.53516545120385 42.464275559610144 0 0 0 0 +5335 1 1.3716 1 260.3336280445979 30.92197994258128 0 0 0 0 +5342 1 1.3708 1 228.79017933390708 45.73419081974678 0 0 0 0 +4623 1 1.4779 1 235.14312249846557 14.846072154682217 0 0 0 0 +6422 1 1.25 1 233.8765529014928 15.138884051673765 0 0 0 0 +5444 1 1.3571 1 227.3885700494706 48.074565469878245 0 0 0 0 +5474 1 1.3534 1 242.04818028749958 28.028024092450753 0 0 0 0 +5495 1 1.3516 1 231.9119400378253 35.063362194452615 0 0 0 0 +5496 1 1.3515 1 235.69434298500718 55.19004740907873 0 0 0 0 +5501 1 1.3504 1 262.56136318711486 39.62732855171392 0 0 0 0 +5512 1 1.3496 1 245.99467879276173 31.681995271613587 0 0 0 0 +5540 1 1.3457 1 248.1897146208213 26.831639854154552 0 0 0 0 +6678 1 1.2241 1 272.7196826676303 34.44954900530763 0 0 0 0 +5685 1 1.3282 1 246.61184204546453 43.76132263323105 0 0 0 0 +5711 1 1.3248 1 232.48472046413403 36.23053774245887 0 0 0 0 +5716 1 1.3244 1 238.33121047674967 53.72027522195892 0 0 0 0 +5741 1 1.3215 1 226.4836495069122 49.0019810840101 0 0 0 0 +5743 1 1.3215 1 225.28321204817715 49.4571556177665 0 0 0 0 +9353 1 1.0335 1 277.0986901555525 24.713929840048284 0 0 0 0 +5834 1 1.3112 1 237.35264365382588 52.89110568573453 0 0 0 0 +5850 1 1.3101 1 239.8689894248454 42.60228384975488 0 0 0 0 +5954 1 1.2993 1 267.22278684347026 41.59070418400562 0 0 0 0 +5980 1 1.2966 1 248.26112931133275 35.14076439573757 0 0 0 0 +5995 1 1.2952 1 240.31285641258424 48.244520091960396 0 0 0 0 +6034 1 1.2912 1 231.7599792664904 45.56505415001337 0 0 0 0 +9708 1 1.0148 1 230.74215912503547 11.826389117675989 0 0 1 0 +6061 1 1.2872 1 267.57949781761175 29.703112985796114 0 0 0 0 +6067 1 1.2867 1 262.3725540374031 40.91178456947094 0 0 0 0 +6092 1 1.284 1 253.67440366155367 46.606607052368204 0 0 0 0 +6097 1 1.2833 1 248.13834880644555 25.57135294141763 0 0 0 0 +6110 1 1.2827 1 255.37277843711328 25.533447584515542 0 0 0 0 +6111 1 1.2826 1 238.66398006585342 44.539173993316474 0 0 0 0 +6112 1 1.2826 1 225.75565282750503 46.80069408072234 0 0 0 0 +6126 1 1.2809 1 230.25486629446684 54.8418016240231 0 0 0 0 +6184 1 1.2739 1 240.06960563897778 23.515070864282443 0 0 0 0 +6186 1 1.2736 1 242.06485477524248 52.033819013043875 0 0 0 0 +6213 1 1.2701 1 233.3542863636745 41.43780939897237 0 0 0 0 +9458 1 1.0279 1 269.9079398584267 34.87027565536822 0 0 0 0 +6249 1 1.2653 1 261.1799163562644 40.50760526285572 0 0 0 0 +6270 1 1.2631 1 229.75869847065883 46.608756628065834 0 0 0 0 +6298 1 1.2608 1 244.5840706687844 48.69705134282854 0 0 0 0 +8466 1 1.0834 1 234.63546008202545 10.945974948108631 0 0 1 0 +6367 1 1.2552 1 235.55580550999682 50.85812879058016 0 0 0 0 +6377 1 1.2541 1 240.71198799779012 11.456311826925582 0 0 0 0 +6388 1 1.2526 1 238.880948188236 20.741765253206097 0 0 0 0 +6405 1 1.2511 1 242.62976632661815 33.76726274795242 0 0 0 0 +6411 1 1.2506 1 253.10705495976802 47.849249279730266 0 0 0 0 +7256 1 1.1737 1 235.58609577620635 12.227314350837673 0 0 0 0 +6437 1 1.2484 1 240.53639505386423 36.91592600944211 0 0 0 0 +6469 1 1.2461 1 244.54350839238822 42.16908718044164 0 0 0 0 +6513 1 1.2418 1 228.58006999498846 46.97936156087941 0 0 0 0 +6613 1 1.2307 1 234.67791888792914 16.623013782148618 0 0 0 0 +6617 1 1.2306 1 239.5778187432238 26.372772710253127 0 0 0 0 +6620 1 1.2302 1 245.0265740674641 23.454909695897687 0 0 0 0 +6648 1 1.2271 1 242.2914479899476 32.611902853448264 0 0 0 0 +6668 1 1.2252 1 235.06617477357457 33.28319176902721 0 0 0 0 +7835 1 1.1269 1 271.0571065946776 25.82086634168114 0 0 0 0 +6701 1 1.2223 1 237.79113649355813 43.7497684777876 0 0 0 0 +6705 1 1.2217 1 263.3752033483327 48.29280532779732 0 0 0 0 +6722 1 1.2203 1 252.64386836397244 42.786639850310124 0 0 0 0 +6726 1 1.2198 1 245.76284362899776 36.69681618820374 0 0 0 0 +9840 1 1.0082 1 242.25831506375235 11.418336397651032 0 0 1 0 +6915 1 1.2007 1 267.59176404831095 33.40015228003806 0 0 0 0 +6931 1 1.1997 1 250.90720734597687 40.75375150599709 0 0 0 0 +6933 1 1.1996 1 243.6187117796058 49.427192485120806 0 0 0 0 +198 1 6.9069 1 277.98022110719 42.10547660656213 0 0 0 0 +6981 1 1.1959 1 246.95300040204526 26.96216131117174 0 0 0 0 +6996 1 1.1947 1 260.47399456039057 48.30011819844911 0 0 0 0 +5736 1 1.3221 1 228.3818078980404 11.333169427294976 0 0 1 0 +7044 1 1.1899 1 255.40885026668266 21.707716701091424 0 0 0 0 +7053 1 1.1894 1 259.1927508649317 27.56139870041823 0 0 0 0 +7066 1 1.1886 1 259.5011488971424 28.685099398883214 0 0 0 0 +7133 1 1.1834 1 237.23589375312508 44.771961146203296 0 0 0 0 +7143 1 1.1828 1 260.65378828470375 28.66717497015823 0 0 0 0 +7198 1 1.1781 1 252.85218874888355 29.358268716929828 0 0 0 0 +7199 1 1.1781 1 237.20264394626903 23.96940873785229 0 0 0 0 +3304 1 1.7393 1 232.59070124829893 56.99674959529519 0 0 0 0 +7232 1 1.1756 1 264.0788089715958 26.47035904205389 0 0 0 0 +7235 1 1.1754 1 260.9170904370391 47.262103953643155 0 0 0 0 +7261 1 1.1734 1 246.59893936773088 46.33649467709085 0 0 0 0 +7281 1 1.1726 1 245.78281401056574 27.068206598961158 0 0 0 0 +7294 1 1.1712 1 250.3207181732125 39.78560755307762 0 0 0 0 +7346 1 1.1663 1 234.36038233827415 50.803029934043195 0 0 0 0 +7347 1 1.1662 1 251.78676534611287 28.934358347899572 0 0 0 0 +7350 1 1.1658 1 245.32027946091375 39.43444608266154 0 0 0 0 +7390 1 1.162 1 238.91215893594318 43.36356040674937 0 0 0 0 +5413 1 1.3617 1 240.32286739789836 12.845473780757443 0 0 0 0 +6414 1 1.2504 1 225.3807618078893 21.191701521367058 0 0 0 0 +7443 1 1.1574 1 227.67350866984074 45.27183735429146 0 0 0 0 +7451 1 1.1567 1 260.1193242257153 29.681179530337843 0 0 0 0 +7462 1 1.1562 1 250.47416575667583 38.672233867288156 0 0 0 0 +7485 1 1.1538 1 264.49621892110935 34.82872150373543 0 0 0 0 +7493 1 1.1529 1 259.97790810974726 46.696791903409604 0 0 0 0 +7561 1 1.147 1 263.2002660533774 30.283501502949793 0 0 0 0 +8844 1 1.0606 1 269.8419910964525 49.17388772126709 0 0 0 0 +7598 1 1.1441 1 237.13073479811644 49.63874561429661 0 0 0 0 +307 1 5.6898 1 273.9307862650277 47.77973980773327 0 0 0 0 +3420 1 1.7113 1 239.16710790120834 11.86773494059394 0 0 1 0 +7681 1 1.1377 1 246.70655865031557 50.36289734943437 0 0 0 0 +7790 1 1.1295 1 251.65390675469916 21.57032622817615 0 0 0 0 +7816 1 1.1278 1 240.94792267921878 49.24046973399216 0 0 0 0 +7822 1 1.1274 1 234.41781112256038 23.89894351494671 0 0 0 0 +7834 1 1.1269 1 268.6315827303807 30.231636206388103 0 0 0 0 +106 1 9.4974 1 276.04707899734893 29.731551399779207 0 0 0 0 +7858 1 1.1241 1 226.20640994069902 47.85543287207478 0 0 0 0 +7930 1 1.1192 1 267.7735584327921 30.884454811997887 0 0 0 0 +7938 1 1.1187 1 252.52348432798306 49.01569830677992 0 0 0 0 +1818 1 2.3461 1 230.0532117499669 58.52466603024206 0 0 0 0 +3054 1 1.8113 1 229.8083351341968 13.151731895611185 0 0 0 0 +779 1 3.6254 1 269.34042507341775 46.29985298346219 0 0 0 0 +8008 1 1.1141 1 239.28520814170088 48.849070036266724 0 0 0 0 +8038 1 1.1123 1 244.79218647097025 26.572132140190764 0 0 0 0 +3325 1 1.7338 1 272.81295108883 43.05724002987488 0 0 0 0 +8085 1 1.1083 1 227.76923187285632 51.16614240160245 0 0 0 0 +8096 1 1.1075 1 234.06224108609823 24.951323409857686 0 0 0 0 +8114 1 1.1067 1 243.167199892617 51.648485779580916 0 0 0 0 +8148 1 1.1048 1 239.9556622537483 49.70596719811997 0 0 0 0 +8179 1 1.1025 1 261.4044010938459 39.36272466780544 0 0 0 0 +8184 1 1.1023 1 260.3316358830589 27.584032706122112 0 0 0 0 +8186 1 1.1021 1 250.7741890904906 28.48619550629127 0 0 0 0 +8284 1 1.0961 1 241.49878116027475 33.58964664331294 0 0 0 0 +8307 1 1.0941 1 256.27706168544216 24.773712805707312 0 0 0 0 +627 1 3.9397 1 236.9629853202683 10.110412625132238 0 0 1 0 +8362 1 1.0897 1 257.3599185424018 24.79513643354044 0 0 0 0 +8366 1 1.0894 1 263.49581946403197 40.33603383041298 0 0 0 0 +8388 1 1.088 1 245.27874038641946 49.77167885354577 0 0 0 0 +1038 1 3.1104 1 266.1845848611611 43.515732045441744 0 0 0 0 +8474 1 1.0828 1 244.34107810273912 15.81962104000464 0 0 0 0 +1515 1 2.5616 1 225.85101747662068 23.08106765917622 0 0 0 0 +8502 1 1.0808 1 258.6489857427077 43.143962887792874 0 0 0 0 +8546 1 1.0784 1 269.37912496481135 31.60225038293508 0 0 0 0 +8562 1 1.0772 1 267.4055236972637 34.52673055883704 0 0 0 0 +8596 1 1.0754 1 262.09846583386104 45.02864154500115 0 0 0 0 +8623 1 1.0735 1 256.09829958785986 29.000968889404596 0 0 0 0 +8637 1 1.0727 1 233.8616709840376 56.48366081766691 0 0 0 0 +8676 1 1.0712 1 248.5673050692209 14.590489819097346 0 0 0 0 +8678 1 1.0711 1 247.46587596953844 34.349310687141895 0 0 0 0 +8705 1 1.0696 1 264.8910107790468 45.137327627969775 0 0 0 0 +8731 1 1.0681 1 240.7030119023921 26.37767109132625 0 0 0 0 +8797 1 1.0635 1 239.274589663484 47.799388335618275 0 0 0 0 +8805 1 1.0629 1 254.93108219763604 26.62052895839857 0 0 0 0 +8847 1 1.0605 1 235.96224185563702 21.045707437438228 0 0 0 0 +8926 1 1.0563 1 231.3436583426606 36.031773507644004 0 0 0 0 +2609 1 1.9632 1 231.0518136413485 10.424206041889331 0 0 1 0 +8946 1 1.0554 1 225.1352271639096 37.12077566490524 0 0 0 0 +8968 1 1.0542 1 253.60289849592087 43.361635509130714 0 0 0 0 +8974 1 1.054 1 227.30742177307994 36.06598696069979 0 0 0 0 +8993 1 1.053 1 250.83301905585145 36.11037590192838 0 0 0 0 +9003 1 1.0525 1 253.5838089727458 48.88492501373656 0 0 0 0 +4846 1 1.4423 1 226.04855585718312 18.468749698083805 0 0 0 0 +9097 1 1.0472 1 230.985787167572 53.978999549932595 0 0 0 0 +4218 1 1.5469 1 239.6678270609743 10.364617275291044 0 0 0 0 +9117 1 1.0464 1 235.37850432641918 39.957881393781065 0 0 0 0 +6396 1 1.252 1 270.55990876469554 48.32879281699646 0 0 0 0 +9224 1 1.0407 1 245.6898629892291 50.749202159808355 0 0 0 0 +9235 1 1.0404 1 233.60120529761303 35.927768571847636 0 0 0 0 +9276 1 1.0379 1 259.8684414434889 32.82589555334654 0 0 0 0 +9286 1 1.0374 1 238.6299552293096 47.04901956199904 0 0 0 0 +9287 1 1.0374 1 227.60767098137757 38.24399646637469 0 0 0 0 +5787 1 1.3156 1 229.6335945906463 11.608788734330387 0 0 1 0 +9321 1 1.035 1 243.38312795159567 26.100034357941443 0 0 0 0 +9335 1 1.0344 1 257.13533919380586 32.58468360299459 0 0 0 0 +9365 1 1.0327 1 234.12519310877903 42.2935195889519 0 0 0 0 +9379 1 1.032 1 263.21872805560145 25.80421295621088 0 0 0 0 +9417 1 1.0297 1 232.28815392448257 41.885459206247916 0 0 0 0 +9429 1 1.0293 1 265.31461242490434 28.788611955447116 0 0 0 0 +9473 1 1.0271 1 242.71887473667044 29.0282431751503 0 0 0 0 +9475 1 1.0271 1 233.66183194763468 45.03566812078269 0 0 0 0 +3520 1 1.6896 1 229.27378653136165 10.154504142506577 0 0 1 0 +9597 1 1.0209 1 229.7828474783455 47.70564191702729 0 0 0 0 +9599 1 1.0207 1 253.12235292541413 45.64593458364228 0 0 0 0 +9604 1 1.0205 1 228.42934569404304 58.71878555661093 0 0 0 0 +9612 1 1.0199 1 233.2294520756104 37.07409157482059 0 0 0 0 +9641 1 1.0184 1 266.9902659153958 32.452002688373085 0 0 0 0 +9659 1 1.0176 1 270.9623831583299 30.81238920154063 0 0 0 0 +9688 1 1.0162 1 259.64254415525244 31.867767881982374 0 0 0 0 +8387 1 1.0881 1 270.97482751557374 49.37858073439475 0 0 0 0 +9772 1 1.0114 1 241.14143584699445 27.290855055209462 0 0 0 0 +9779 1 1.0111 1 250.2090224834862 42.4063392576334 0 0 0 0 +9806 1 1.0096 1 256.83202772152947 43.75259041038974 0 0 0 0 +9856 1 1.007 1 228.81483192096348 32.21502809897006 0 0 0 0 +9919 1 1.0043 1 269.47369356186897 24.04210973675305 0 0 0 0 +9932 1 1.0039 1 244.2878042213534 25.677962166600054 0 0 0 0 +9935 1 1.0035 1 262.2583272311515 25.656160030135318 0 0 0 0 +9950 1 1.003 1 244.27261262355023 22.75290602524791 0 0 0 0 +9956 1 1.0029 1 256.46151431520815 22.190909601487608 0 0 0 0 +9971 1 1.0021 1 244.34541069133385 28.908768486487066 0 0 0 0 +9975 1 1.0018 1 227.84091169109777 57.92313230845364 0 0 0 0 +9996 1 1.0002 1 257.5911444979435 47.205485025953685 0 0 0 0 +2454 1 2.0261 1 226.36557136800218 50.61527019047045 0 0 0 0 +6588 1 1.2334 1 228.97446909251164 59.9995475984067 0 0 0 0 +8624 1 1.0734 1 234.7510919549968 55.90711370363437 0 0 0 0 +1379 1 2.7048 1 272.6536434669632 24.779317119690226 0 0 0 0 +3080 1 1.8056 1 236.10205201472155 16.114825880437476 0 0 0 0 +3571 1 1.6761 1 271.0904280860477 34.235705539038236 0 0 0 0 +923 1 3.3087 1 277.6161142128778 50.16497264641385 0 0 0 0 +8060 1 1.1105 1 228.7762177904301 57.45084035017961 0 0 0 0 +4057 1 1.5736 1 233.30599213015736 16.355301852992135 0 0 0 0 +1976 1 2.2555 1 270.8198705452766 32.37035217661805 0 0 0 0 +8079 1 1.1086 1 266.46010174102577 48.58057094537633 0 0 0 0 +3053 1 1.8117 1 226.93841521022696 26.219500783513737 0 0 0 0 +8791 1 1.0639 1 270.8381588292586 29.82529048074289 0 0 0 0 +5796 1 1.3149 1 268.26672326579154 44.130039220195755 0 0 0 0 +6045 1 1.2898 1 267.4532430486979 47.848782882887356 0 0 0 0 +3178 1 1.7714 1 234.08267159991215 13.673164914696326 0 0 1 0 +2173 1 2.148 1 225.11843440354318 25.26934800663786 0 0 0 0 +3255 1 1.752 1 266.9027343846639 39.806766210736406 0 0 0 0 +7979 1 1.1159 1 268.0142729351232 48.84908026788574 0 0 0 0 +4755 1 1.4557 1 234.32038886975906 12.14138576743553 0 0 0 0 +7272 1 1.1731 1 231.2374886135171 12.731049477449714 0 0 1 0 +7477 1 1.1545 1 274.00631702596826 42.31704852450602 0 0 0 0 +9974 1 1.0018 1 271.46832754538104 42.924428112239326 0 0 0 0 +256 1 6.1627 1 229.56071655846122 17.119910631463288 0 0 0 0 +7714 1 1.1354 1 271.69133918581593 26.729385483574433 0 0 0 0 +9000 1 1.0526 1 267.9633296926792 40.699870854249156 0 0 0 0 +2980 1 1.839 1 232.51169736760357 14.50347400273911 0 0 0 0 +9865 1 1.0066 1 273.3331994256482 44.43352584677973 0 0 0 0 +4782 1 1.4512 1 268.56004809606225 41.78989996682178 0 0 0 0 +3775 1 1.6346 1 268.6410570330385 35.33176767210721 0 0 0 0 +7747 1 1.1331 1 274.9068863100388 35.88778262385987 0 0 0 0 +4331 1 1.5263 1 224.7366301342088 51.2978951499554 0 0 0 0 +9409 1 1.0302 1 225.00762642910118 13.83483843333275 0 0 0 0 +2559 1 1.9855 1 224.68200254072596 48.002187345128846 0 0 0 0 +7120 1 1.1841 1 224.69199679924384 10.183271179666388 0 0 1 0 +3500 1 1.6936 1 224.6534625944378 19.101580676853484 0 0 0 0 +157 1 7.5236 1 224.63199584557069 41.31160218047907 0 0 0 0 +7406 1 1.1608 1 224.5462266664208 36.231412791653035 0 0 0 0 +2 1 97.3444 1 260.95012069199845 97.51022023673987 0 0 0 0 +5154 1 1.3954 1 225.05229551168452 63.690872810290614 0 0 0 0 +38 1 15.9602 1 235.50180635493686 163.67305336896712 0 0 0 0 +88 1 9.9469 1 239.4834976189395 148.17679426181067 0 0 0 0 +978 1 3.2099 1 228.86231050082546 144.22782132259957 0 0 0 0 +8047 1 1.1115 1 225.26538698008642 133.11314576193624 0 0 0 0 +150 1 7.6773 1 256.5998928052185 155.3943284060725 0 0 0 0 +177 1 7.2501 1 259.0641994017373 167.43706168383895 0 0 0 0 +189 1 7.0187 1 263.5859095918876 157.39393555825148 0 0 0 0 +197 1 6.9082 1 274.71215681177165 164.96917401976356 0 0 0 0 +233 1 6.3161 1 253.70097748947964 163.4976548462314 0 0 0 0 +271 1 6.001 1 271.9501677439449 152.92586840082365 0 0 0 0 +357 1 5.2951 1 271.163615118384 160.09427861115427 0 0 0 0 +385 1 5.0333 1 246.885399210093 149.0368670860408 0 0 0 0 +5714 1 1.3246 1 275.4053928345051 151.75344078056483 0 0 0 0 +2495 1 2.0122 1 268.9014252645706 169.49231239954233 0 0 0 0 +508 1 4.3343 1 258.86833732997593 149.92026181674993 0 0 0 0 +575 1 4.1107 1 236.51839624854784 141.84190363097 0 0 0 0 +647 1 3.8965 1 267.18126535294283 151.8104409269253 0 0 0 0 +655 1 3.8774 1 246.8852479921782 157.20645329531095 0 0 0 0 +658 1 3.8674 1 242.4641956960256 154.3333982110426 0 0 0 0 +663 1 3.8569 1 267.23845564995656 165.98466509932356 0 0 0 0 +685 1 3.8162 1 263.5069983521294 150.71180539794534 0 0 0 0 +695 1 3.7961 1 253.81512307849192 150.45897828227285 0 0 0 0 +5221 1 1.3866 1 227.6400444903261 136.0876723093617 0 0 0 0 +7215 1 1.177 1 277.75160522825246 159.5871936983786 0 0 0 0 +768 1 3.647 1 233.38643117943184 153.45250562005273 0 0 0 0 +797 1 3.5966 1 243.46703453132855 158.37068030090168 0 0 0 0 +6468 1 1.2461 1 227.9394916718687 167.7474982843888 0 0 0 0 +871 1 3.4229 1 270.46710160904985 146.86597163199704 0 0 0 0 +899 1 3.3585 1 231.38961424397027 142.2476516871992 0 0 0 0 +7368 1 1.164 1 230.1340127019944 170.24277147818415 0 0 0 0 +2598 1 1.9693 1 271.1413814736467 167.48029906626832 0 0 0 0 +1063 1 3.0662 1 232.23362633303526 138.50899512301356 0 0 0 0 +1077 1 3.0449 1 267.1240907347711 160.87627035297214 0 0 0 0 +2378 1 2.0559 1 245.78886475702345 169.84589379265228 0 0 0 0 +1096 1 3.0232 1 268.0301146616898 155.10980503791103 0 0 0 0 +1117 1 2.9955 1 251.33421891070293 155.20008666155235 0 0 0 0 +2446 1 2.0286 1 230.48028754350824 146.21750070892546 0 0 0 0 +1241 1 2.8607 1 246.86221712819057 153.93391575276812 0 0 0 0 +1245 1 2.8581 1 274.4627078959773 146.62367568155176 0 0 0 0 +7259 1 1.1735 1 227.98892184410417 154.4321509101754 0 0 0 0 +1346 1 2.7417 1 250.25685374198 147.26159081434602 0 0 0 0 +5565 1 1.3424 1 249.6617961214527 169.29891754340716 0 0 0 0 +1393 1 2.6884 1 256.8565702094991 147.1964559466166 0 0 0 0 +1399 1 2.6825 1 233.3125813639595 148.62867615571108 0 0 0 0 +2487 1 2.0146 1 225.1648369029696 153.13948632480188 0 0 0 0 +8996 1 1.053 1 229.29054837945117 157.77668254818042 0 0 0 0 +1476 1 2.5973 1 254.425633347142 168.90270834327129 0 0 0 0 +1486 1 2.5915 1 264.7341260928832 164.16710339323438 0 0 0 0 +1505 1 2.5732 1 273.6188903775543 149.1159688620904 0 0 0 0 +1506 1 2.5731 1 251.85291335472192 159.5659292126772 0 0 0 0 +1510 1 2.5658 1 268.1934587833899 148.77593730460654 0 0 0 0 +7797 1 1.129 1 230.76727371144128 147.7640908175307 0 0 0 0 +9315 1 1.0354 1 229.01119724589856 146.3236666907482 0 0 0 0 +1702 1 2.4222 1 248.2486010048567 145.65724837009316 0 0 0 0 +1771 1 2.372 1 276.8983070379196 145.8358251200927 0 0 0 0 +1778 1 2.3691 1 229.507579840524 136.05603621738845 0 0 0 0 +1857 1 2.3282 1 238.32323081258045 154.17829830929512 0 0 0 0 +1953 1 2.2687 1 264.67978011240064 161.80997919591928 0 0 0 0 +9607 1 1.0203 1 275.30675970571315 149.70333714505935 0 0 0 0 +1994 1 2.2451 1 243.88925691629532 144.1710316866491 0 0 0 0 +9554 1 1.0231 1 274.4419077041337 169.67599452929642 0 0 0 0 +9818 1 1.0089 1 265.12540072775937 149.0300499118108 0 0 0 0 +2188 1 2.1441 1 257.83813557726387 162.93890420429418 0 0 0 0 +2189 1 2.144 1 249.81023516575175 151.7139122664635 0 0 0 0 +2198 1 2.1393 1 250.36442958251166 149.6747930981317 0 0 0 0 +2212 1 2.1319 1 233.63444741216452 140.68446729436502 0 0 0 0 +2274 1 2.1053 1 236.2347462763383 154.74327906444475 0 0 0 0 +9894 1 1.0053 1 225.44228049481953 166.3579661551264 0 0 0 0 +2438 1 2.0319 1 266.11705005844635 147.9953340424167 0 0 0 0 +2470 1 2.0217 1 261.6724424637005 148.56634757560013 0 0 0 0 +2239 1 2.1201 1 226.23781668507874 134.32785607398134 0 0 0 0 +6217 1 1.2691 1 225.73637122070434 151.64421329020587 0 0 0 0 +9925 1 1.0041 1 225.61022908013118 162.29185618513995 0 0 0 0 +2622 1 1.9597 1 256.98693427867397 161.08364451528075 0 0 0 0 +2640 1 1.953 1 249.6361777114451 156.81174114003207 0 0 0 0 +2647 1 1.9493 1 240.47314522964604 156.35608459397093 0 0 0 0 +1216 1 2.8927 1 226.8012927824147 142.10109943601196 0 0 0 0 +2653 1 1.9453 1 272.1265292602114 156.75068041352554 0 0 0 0 +2667 1 1.9419 1 251.22698555952985 169.05051129790408 0 0 0 0 +2675 1 1.9405 1 264.785683502824 167.44000378666126 0 0 0 0 +2677 1 1.9393 1 254.67505967481026 146.64760286118047 0 0 0 0 +2687 1 1.9348 1 259.4988464637131 159.10955547933406 0 0 0 0 +2696 1 1.9308 1 260.33858902886925 147.15632531869957 0 0 0 0 +2741 1 1.9141 1 252.67767400791197 170.24690618318783 0 0 0 0 +2772 1 1.9054 1 234.23309225201848 145.4692033969577 0 0 0 0 +2620 1 1.96 1 277.42498730570344 153.57786360256182 0 0 0 0 +1186 1 2.9215 1 226.1870748218209 164.1628832415017 0 0 0 0 +2854 1 1.8779 1 249.92283718994867 158.64377140623853 0 0 0 0 +6767 1 1.2163 1 225.673093913155 143.82913271214986 0 0 0 0 +213 1 6.6182 1 225.52027933409283 147.73743019144717 0 0 0 0 +9622 1 1.0196 1 276.83338302191555 169.81425510941503 0 0 0 0 +2947 1 1.8496 1 228.1126302525649 134.567104595519 0 0 0 0 +2959 1 1.8452 1 264.0823570773481 169.82340417905857 0 0 0 0 +2968 1 1.8426 1 244.3918939196011 151.28877676828063 0 0 0 0 +2308 1 2.0866 1 277.46824326603695 168.44143491394078 0 0 0 0 +2216 1 2.1286 1 226.41796823820223 154.73751172678737 0 0 0 0 +3045 1 1.8132 1 253.27819239408524 147.78411268050087 0 0 0 0 +7440 1 1.1575 1 227.0047441414296 162.2455125094685 0 0 0 0 +3074 1 1.8065 1 255.81941174359747 170.5572451450721 0 0 0 0 +3098 1 1.7976 1 259.72005121552104 160.87081633328808 0 0 0 0 +1054 1 3.0849 1 266.4378708443733 169.228417756654 0 0 0 0 +3169 1 1.7744 1 275.6871769430512 169.08398375449954 0 0 0 0 +3189 1 1.7686 1 267.26350560133204 163.2515286023829 0 0 0 0 +9686 1 1.0163 1 274.1221268831376 161.11644864653493 0 0 0 0 +3362 1 1.7252 1 267.9714065931847 158.66763155309664 0 0 0 0 +3016 1 1.822 1 224.782135950146 140.92421395882886 0 0 0 0 +3454 1 1.7033 1 225.38882830824244 131.79590916645145 0 0 0 0 +3457 1 1.7012 1 261.8975044883509 162.44214858136985 0 0 0 0 +3556 1 1.6799 1 263.76468293774366 166.04240209241038 0 0 0 0 +3582 1 1.6746 1 248.41922271934854 159.41409521685395 0 0 0 0 +3602 1 1.6705 1 234.692743986066 151.28432584399434 0 0 0 0 +3629 1 1.6662 1 244.8325720381626 152.93917445250673 0 0 0 0 +3659 1 1.6602 1 231.9605295183794 147.13758754040148 0 0 0 0 +3693 1 1.6498 1 260.5014063405605 152.9835858484154 0 0 0 0 +9764 1 1.0118 1 263.228920045893 162.48661870914918 0 0 0 0 +3745 1 1.6404 1 248.8794529509448 155.050574513789 0 0 0 0 +3753 1 1.6392 1 234.4161655798528 143.70917435677723 0 0 0 0 +5062 1 1.4112 1 227.04913759115317 153.12068934569606 0 0 0 0 +3766 1 1.6371 1 268.7392856423038 162.51091152574242 0 0 0 0 +3810 1 1.6259 1 241.70667984747251 142.96741944453956 0 0 0 0 +4776 1 1.4518 1 276.6646198875797 160.28241500868592 0 0 0 0 +3836 1 1.6196 1 264.2264398848722 148.13573089643378 0 0 0 0 +3878 1 1.6123 1 262.0586898675873 146.87446645522752 0 0 0 0 +3925 1 1.6025 1 263.32453451112434 168.33444607271608 0 0 0 0 +3950 1 1.5963 1 251.86661198212585 148.65080030588405 0 0 0 0 +4006 1 1.5821 1 263.0240307048054 153.2640812982327 0 0 0 0 +4032 1 1.5772 1 269.08981305549116 157.38111700283105 0 0 0 0 +5261 1 1.3807 1 249.99048306279423 166.75670766390093 0 0 0 0 +4096 1 1.5677 1 248.91331662567947 153.3321344538738 0 0 0 0 +4105 1 1.5651 1 262.8135982049085 163.67377183730116 0 0 0 0 +4178 1 1.5534 1 269.390958188624 150.32671314757977 0 0 0 0 +4210 1 1.5477 1 248.03074004118253 152.08450120878834 0 0 0 0 +4288 1 1.535 1 244.41843511615312 156.10709404959715 0 0 0 0 +4292 1 1.5344 1 270.58974163827213 164.3664863932036 0 0 0 0 +4299 1 1.5325 1 253.89627588028492 159.6218038647729 0 0 0 0 +3874 1 1.6128 1 277.19947716654826 150.37189285461054 0 0 0 0 +4303 1 1.5322 1 232.22971015798626 145.6648191667756 0 0 0 0 +520 1 4.2998 1 228.6179387748667 139.13102845025367 0 0 0 0 +8709 1 1.0694 1 273.9644166411767 168.80266316355278 0 0 0 0 +2590 1 1.9732 1 225.6584940779247 137.65272243024006 0 0 0 0 +4025 1 1.5785 1 228.94216174377698 153.5100092618339 0 0 0 0 +9914 1 1.0045 1 228.10377617206342 152.56618234866923 0 0 0 0 +4441 1 1.5075 1 255.1239586547476 148.259020619238 0 0 0 0 +4449 1 1.5066 1 269.0113659222057 164.04102321905643 0 0 0 0 +4487 1 1.5001 1 276.3503743173301 147.63448725355522 0 0 0 0 +3109 1 1.7949 1 232.8787525795984 144.23303783127744 0 0 0 0 +4548 1 1.4896 1 244.87189491946975 146.55465373646877 0 0 0 0 +4554 1 1.4883 1 249.9725846272496 160.3220634658319 0 0 0 0 +4601 1 1.4802 1 260.4118537214948 162.24560376762005 0 0 0 0 +496 1 4.3893 1 271.9035289049609 170.51182046707967 0 0 0 0 +2849 1 1.8797 1 224.60842142770392 142.71774365314081 0 0 0 0 +4688 1 1.466 1 245.5134229006083 145.32587534230112 0 0 0 0 +4772 1 1.4523 1 271.3986915933221 149.29735762465762 0 0 0 0 +6346 1 1.2574 1 230.98844264113464 153.58540347631813 0 0 0 0 +4784 1 1.4511 1 252.24715183044438 153.27264337287144 0 0 0 0 +5212 1 1.3874 1 230.0449030627487 154.42157269517188 0 0 0 0 +4884 1 1.4356 1 270.4889508999439 156.88129060313162 0 0 0 0 +4940 1 1.4271 1 264.5506549809544 146.71125326526277 0 0 0 0 +4961 1 1.4248 1 251.12600061882745 157.53198508144797 0 0 0 0 +5043 1 1.4141 1 262.6358809863005 165.08957917401926 0 0 0 0 +5083 1 1.4071 1 269.7746775845377 166.57372870143362 0 0 0 0 +5089 1 1.4054 1 261.094575447899 151.5943894906713 0 0 0 0 +2560 1 1.9852 1 226.98189139125466 166.44931997332975 0 0 0 0 +5178 1 1.3914 1 253.09771039140227 146.2215041695032 0 0 0 0 +1637 1 2.4623 1 228.96485716763482 155.93838573735636 0 0 0 0 +5235 1 1.3842 1 233.34809221205876 150.6511105610974 0 0 0 0 +7639 1 1.1412 1 250.9452960965774 167.57663475284272 0 0 0 0 +5357 1 1.3688 1 258.78801247271167 146.78686557826833 0 0 0 0 +5380 1 1.3665 1 260.8453777216156 163.54986560731297 0 0 0 0 +5500 1 1.3504 1 255.24105483499767 160.02795686379454 0 0 0 0 +5580 1 1.3402 1 251.81559950225227 151.97844988931297 0 0 0 0 +5624 1 1.3343 1 262.5003181899042 170.06125590717957 0 0 0 0 +5724 1 1.3237 1 275.36422387641244 160.91252053923108 0 0 0 0 +5946 1 1.3 1 258.37193363292005 160.26362538596211 0 0 0 0 +5948 1 1.2999 1 253.34294017568973 158.38552752202904 0 0 0 0 +5950 1 1.2997 1 267.6957606490824 157.20662135357404 0 0 0 0 +5955 1 1.2993 1 270.0709624200178 149.13851949302313 0 0 0 0 +5965 1 1.2984 1 259.5168946512878 163.2503423361081 0 0 0 0 +5972 1 1.2974 1 256.2879302132836 150.98452763819316 0 0 0 0 +6015 1 1.2927 1 272.58902981729506 145.5438824316694 0 0 0 0 +6019 1 1.2926 1 269.64603778987527 165.28714868879305 0 0 0 0 +6032 1 1.2914 1 270.01621937047867 163.12566737351983 0 0 0 0 +6088 1 1.2846 1 239.95254829507286 154.8972521788727 0 0 0 0 +6134 1 1.2803 1 265.41291271516417 153.6586869366005 0 0 0 0 +6152 1 1.2779 1 261.85240589432965 152.6257137010376 0 0 0 0 +4458 1 1.5041 1 269.09558935706946 167.81032526768223 0 0 0 0 +6259 1 1.264 1 245.36218454120913 155.2194656120356 0 0 0 0 +6310 1 1.2603 1 265.8401411979429 146.47053371426023 0 0 0 0 +6312 1 1.2601 1 250.9819881782619 152.91386710991358 0 0 0 0 +9819 1 1.0088 1 256.3456225178371 148.91184906009846 0 0 0 0 +8107 1 1.1072 1 233.19329169575158 146.54688692093234 0 0 0 0 +6425 1 1.2497 1 274.40807141590153 160.0770714297599 0 0 0 0 +6452 1 1.2473 1 246.69969935278516 144.69025587281936 0 0 0 0 +6480 1 1.2453 1 240.0161127335601 153.6850460590094 0 0 0 0 +6565 1 1.2361 1 235.14944773230778 139.53019585704251 0 0 0 0 +339 1 5.3997 1 275.6848609118212 157.08641469451155 0 0 0 0 +6549 1 1.2378 1 225.7612364760622 167.57735124819823 0 0 0 0 +6625 1 1.2297 1 275.84928480952675 144.43906711803513 0 0 0 0 +6700 1 1.2223 1 231.08779971490722 140.14378439787293 0 0 0 0 +6769 1 1.2161 1 246.6741690097783 152.03117644366327 0 0 0 0 +3149 1 1.7788 1 227.18890282207613 151.5543149013127 0 0 0 0 +6911 1 1.2012 1 274.7130324453046 150.64052286976826 0 0 0 0 +6958 1 1.1977 1 275.3067446945689 148.43140769138154 0 0 0 0 +169 1 7.3639 1 246.9949522406091 163.58857163876436 0 0 0 0 +7034 1 1.1909 1 231.13883844153696 136.71268186254312 0 0 0 0 +8756 1 1.0666 1 276.92297281449856 144.04778497779293 0 0 0 0 +7099 1 1.1858 1 251.8843113046923 145.9115187643093 0 0 0 0 +7153 1 1.1819 1 226.4988453447004 132.70935763314708 0 0 0 0 +7155 1 1.1815 1 267.03035115239555 146.36209905272798 0 0 0 0 +7159 1 1.1813 1 251.19292481589738 170.60410176410934 0 0 0 0 +7209 1 1.1775 1 235.7093144907668 152.2043053257344 0 0 0 0 +7213 1 1.1771 1 269.9218917224288 155.8114968508989 0 0 0 0 +9644 1 1.0182 1 226.83307197292552 167.9115155218147 0 0 0 0 +7231 1 1.1756 1 272.6708116177836 147.43548620406042 0 0 0 0 +6334 1 1.2585 1 278.1313393350745 154.9647649807519 0 0 0 0 +5346 1 1.3703 1 251.29759537236427 166.42854241880244 0 0 0 0 +7373 1 1.1638 1 270.76928868526744 165.77446848149793 0 0 0 0 +7407 1 1.1606 1 263.03643473238253 161.43136576317676 0 0 0 0 +7481 1 1.1543 1 246.00416115567054 159.49690453025116 0 0 0 0 +7486 1 1.1538 1 261.96462746131607 161.08500588886605 0 0 0 0 +8688 1 1.0706 1 228.6295958032003 168.67050756535247 0 0 0 0 +7680 1 1.1378 1 275.8664472620031 150.6177499361774 0 0 0 0 +7743 1 1.1332 1 246.54690794868014 146.01919234262135 0 0 0 0 +7783 1 1.1302 1 235.6246144872117 144.28023332731914 0 0 0 0 +9820 1 1.0088 1 245.6279891748976 151.89765679936053 0 0 0 0 +7820 1 1.1274 1 271.1808912281427 163.2299080685521 0 0 0 0 +7860 1 1.1239 1 252.32472435702294 157.8234864746392 0 0 0 0 +7874 1 1.1231 1 245.52224697190675 144.1408700781564 0 0 0 0 +7898 1 1.1216 1 268.3403641030475 146.1385510974207 0 0 0 0 +8006 1 1.1142 1 235.7513749747438 153.28040858978798 0 0 0 0 +8024 1 1.1132 1 256.3759189983738 159.7232350159664 0 0 0 0 +5176 1 1.3918 1 277.5843336644196 148.28961481274757 0 0 0 0 +8054 1 1.1112 1 253.9612567775967 167.15784900245382 0 0 0 0 +8082 1 1.1086 1 264.28929521185546 153.44877368101788 0 0 0 0 +8117 1 1.1066 1 265.78667950748945 149.79288089122645 0 0 0 0 +8121 1 1.1063 1 250.12425568826995 153.62747453413135 0 0 0 0 +8126 1 1.1059 1 261.05119111482213 160.5060010668343 0 0 0 0 +7665 1 1.139 1 277.9916643794644 169.9197475166256 0 0 0 0 +2283 1 2.1016 1 244.08018166906442 168.7167024235433 0 0 0 0 +8221 1 1.1002 1 276.4329881882269 161.4553801175411 0 0 0 0 +8230 1 1.0997 1 238.84821296403007 155.8171379703342 0 0 0 0 +9459 1 1.0278 1 226.75165540904925 144.11875185166363 0 0 0 0 +9844 1 1.008 1 250.88853920032668 145.57039155002988 0 0 0 0 +8330 1 1.0923 1 250.62995421359759 161.43014894107475 0 0 0 0 +8472 1 1.083 1 257.4360855241217 159.63915172202394 0 0 0 0 +8555 1 1.0777 1 258.42224979455034 161.44576626813637 0 0 0 0 +8607 1 1.0746 1 252.49994314623862 156.8018341229173 0 0 0 0 +8615 1 1.0739 1 232.93044403997843 155.66445849302917 0 0 0 0 +8629 1 1.0731 1 252.11846654578264 146.9891525550859 0 0 0 0 +8633 1 1.0728 1 274.74678513987897 144.71238800057128 0 0 0 0 +418 1 4.8232 1 230.29507999261446 150.66528413691486 0 0 0 0 +8799 1 1.0635 1 267.8464657759817 147.0663122183317 0 0 0 0 +8801 1 1.0632 1 273.7018830796222 144.92783525470432 0 0 0 0 +8813 1 1.0625 1 243.11018712089603 167.44952488668912 0 0 0 0 +8819 1 1.062 1 236.81440981680893 153.03075081426275 0 0 0 0 +9347 1 1.0338 1 229.39409068082148 169.44117916952004 0 0 0 0 +8836 1 1.0611 1 234.7722178286109 155.26688485961665 0 0 0 0 +1840 1 2.3346 1 247.94618880743784 169.86486948370248 0 0 0 0 +8867 1 1.059 1 254.98562665273423 166.93044907303604 0 0 0 0 +8875 1 1.0587 1 251.22793112762753 150.9758308187826 0 0 0 0 +8879 1 1.0587 1 256.14540198829263 149.86607679222652 0 0 0 0 +9812 1 1.0095 1 252.6570563596565 168.8315192480648 0 0 0 0 +8944 1 1.0554 1 259.1820875631784 162.15125569516775 0 0 0 0 +9750 1 1.0129 1 266.20961476086893 154.39967914591037 0 0 0 0 +9942 1 1.0032 1 243.27609701348158 152.0931833518295 0 0 0 0 +9020 1 1.0517 1 243.62800155429085 166.0607979812628 0 0 0 0 +9528 1 1.0244 1 241.3352615682293 157.5411051972941 0 0 0 0 +9063 1 1.0494 1 241.909779506193 156.69596383751653 0 0 0 0 +9101 1 1.047 1 261.6947110823357 153.81090993750797 0 0 0 0 +9134 1 1.0453 1 266.06422661479996 162.62167177662127 0 0 0 0 +9137 1 1.0453 1 243.63076079241864 160.8063566100247 0 0 0 0 +9154 1 1.0445 1 245.03800296681212 159.95791208507455 0 0 0 0 +9198 1 1.0419 1 264.9067567567718 152.6347400626806 0 0 0 0 +9220 1 1.0409 1 262.9778651209236 147.78944726065373 0 0 0 0 +9248 1 1.0395 1 244.89522399066124 154.23498233025742 0 0 0 0 +9253 1 1.0393 1 234.37957515278478 150.04512636600222 0 0 0 0 +9327 1 1.0348 1 272.0705059969884 148.31753900407844 0 0 0 0 +6464 1 1.2464 1 244.16243582894285 167.04641854036308 0 0 0 0 +9362 1 1.0328 1 253.25464289874765 152.71829190880686 0 0 0 0 +9367 1 1.0326 1 263.34113251125984 146.6335520352335 0 0 0 0 +9378 1 1.0321 1 249.91674218597925 145.41810110041914 0 0 0 0 +9427 1 1.0293 1 250.65760051182517 165.4862978370334 0 0 0 0 +9441 1 1.0287 1 234.14912798210858 146.97711613239878 0 0 0 0 +2054 1 2.208 1 231.32598391163214 155.62184674141957 0 0 0 0 +2761 1 1.9078 1 252.51865793304898 167.42979442051723 0 0 0 0 +9512 1 1.0253 1 261.72507678544014 164.3110246549909 0 0 0 0 +4422 1 1.511 1 231.17097228570339 144.6229623211329 0 0 0 0 +3212 1 1.7627 1 225.66980806179834 139.4632522174753 0 0 0 0 +4805 1 1.4481 1 226.22808137255177 136.07758340750334 0 0 0 0 +262 1 6.1158 1 225.8221925972168 158.74311759365736 0 0 0 0 +8515 1 1.0801 1 242.5655557606003 168.34604823869606 0 0 0 0 +4743 1 1.4574 1 229.51041294860013 147.6363920826953 0 0 0 0 +5386 1 1.3657 1 245.3206775137015 167.55984233294276 0 0 0 0 +3737 1 1.6417 1 275.6583713729566 153.60868818853976 0 0 0 0 +4431 1 1.5093 1 276.4165329322684 149.10958881393395 0 0 0 0 +9508 1 1.0255 1 248.93065244695708 167.27315901882184 0 0 0 0 +7705 1 1.1359 1 246.20635123790856 168.36534600300715 0 0 0 0 +3603 1 1.6704 1 247.49512817106503 167.98277148819176 0 0 0 0 +8137 1 1.1053 1 276.37836275491765 152.4793158484312 0 0 0 0 +9467 1 1.0275 1 276.53518383703044 151.4639379300273 0 0 0 0 +7849 1 1.1254 1 249.98095606578795 168.11666975285124 0 0 0 0 +9976 1 1.0015 1 226.99362504584096 137.0579364090312 0 0 0 0 +8557 1 1.0776 1 270.0918807476666 168.53954828693733 0 0 0 0 +3123 1 1.7864 1 275.28720335094914 170.7276511942446 0 0 0 0 +6585 1 1.2336 1 248.84997942408583 168.3584007339866 0 0 0 0 +8885 1 1.0581 1 230.37513583978884 156.92959818663417 0 0 0 0 +2151 1 2.1561 1 242.34507911891114 169.90489216824344 0 0 0 0 +2988 1 1.8362 1 249.72868638353305 170.84585147860292 0 0 0 0 +6665 1 1.2254 1 224.5446220989575 151.5197340972069 0 0 0 0 +11 1 34.1458 1 272.1372633190027 189.63747609346635 0 0 0 0 +44 1 14.7464 1 235.33551830119615 183.13913568988178 0 0 0 0 +9010 1 1.0522 1 274.0553628329889 172.1529645345317 0 0 0 0 +280 1 5.9044 1 271.6583312023331 211.7598736068751 0 0 0 0 +360 1 5.2593 1 244.55094475964268 177.60039782179342 0 0 0 0 +416 1 4.8521 1 239.90602249716093 174.49984004293577 0 0 0 0 +425 1 4.7819 1 246.18257874528555 186.39165553306646 0 0 0 0 +449 1 4.6587 1 244.216192525014 172.72422804299978 0 0 0 0 +481 1 4.5088 1 275.53878876572406 208.52954468013547 0 0 0 0 +490 1 4.426 1 273.56758606702425 219.78701241835356 0 0 0 0 +9635 1 1.0188 1 257.8313262686624 171.34087715283616 0 0 0 0 +530 1 4.2684 1 252.7385966284997 187.98985321729256 0 0 0 0 +704 1 3.7759 1 246.66693005953442 191.40261912310046 0 0 0 0 +737 1 3.7057 1 226.93917419681506 189.609706114155 0 0 0 0 +842 1 3.473 1 239.50974557471554 191.06634036105248 0 0 0 0 +926 1 3.3 1 247.4098333113499 182.60556351296574 0 0 0 0 +946 1 3.2532 1 233.08496967106097 172.75930382132154 0 0 0 0 +983 1 3.2064 1 244.2349080632158 182.965408682462 0 0 0 0 +1032 1 3.1223 1 248.15451200390208 179.53374774734195 0 0 0 0 +9361 1 1.0328 1 272.8526685874556 214.94065981208297 0 0 0 0 +2930 1 1.8545 1 259.10416489147224 171.93754760036109 0 0 0 0 +1123 1 2.9858 1 255.0638112368752 182.58877089750413 0 0 0 0 +9474 1 1.0271 1 263.70012954886755 174.26243058069446 0 0 0 0 +1170 1 2.9326 1 250.65654518264472 192.34417827803898 0 0 0 0 +1247 1 2.8535 1 273.9725346390166 223.36746395984812 0 0 0 0 +1303 1 2.7917 1 254.2870516286023 197.72365027195443 0 0 0 0 +1313 1 2.7762 1 267.41652117961627 171.89296788986726 0 0 0 0 +1353 1 2.7347 1 250.3302902603302 195.3687817872649 0 0 0 0 +1377 1 2.7075 1 244.03770427665117 189.3356218881817 0 0 0 0 +1574 1 2.5132 1 254.18239557018669 193.615891888381 0 0 0 0 +4406 1 1.514 1 255.82628583948033 177.4874712331612 0 0 0 0 +1707 1 2.4166 1 265.43612551286793 208.06285391814748 0 0 0 0 +1722 1 2.4101 1 247.71972357094427 173.3464138593672 0 0 0 0 +8081 1 1.1086 1 255.1520229688119 180.6004719811293 0 0 0 0 +1806 1 2.3525 1 262.33032054281387 204.75860916064534 0 0 0 0 +1807 1 2.3521 1 249.53512821171324 187.3431197452796 0 0 0 0 +1825 1 2.3428 1 243.7197734752133 191.80041444201754 0 0 0 0 +913 1 3.332 1 254.04314336803452 172.38823507145779 0 0 0 0 +1876 1 2.3163 1 232.31503621222632 175.32803368880604 0 0 0 0 +2003 1 2.2396 1 264.8143954554906 173.08772416017644 0 0 0 0 +2022 1 2.2249 1 277.4530168188837 223.6054699189262 0 0 0 0 +2031 1 2.2217 1 248.5306219876577 193.68935776133173 0 0 0 0 +2056 1 2.2076 1 248.74844226360938 189.38409980090182 0 0 0 0 +9940 1 1.0033 1 232.11873106017953 190.31166865079612 0 0 0 0 +1201 1 2.9038 1 256.7317746706834 179.4549895825135 0 0 0 0 +2847 1 1.8801 1 252.2330241267413 174.27032385121245 0 0 0 0 +2240 1 2.1198 1 268.8439985617397 207.45304233278978 0 0 0 0 +8859 1 1.0595 1 250.8810954782768 171.67912500858293 0 0 0 0 +4388 1 1.5167 1 231.08917926396654 173.91906175320406 0 0 0 0 +1703 1 2.4209 1 274.4775458141945 215.28849880037296 0 0 0 0 +4685 1 1.4667 1 275.30111755223976 172.2304908227224 0 0 0 0 +2427 1 2.0373 1 259.7951382021213 202.55533922945884 0 0 0 0 +2464 1 2.024 1 237.24114504048305 172.3861476829646 0 0 0 0 +2469 1 2.0219 1 248.71805495647305 176.5876781409095 0 0 0 0 +1435 1 2.6407 1 261.32163670044037 171.6654995656524 0 0 0 0 +2550 1 1.9893 1 234.38580942397044 174.93334380303685 0 0 0 0 +2553 1 1.9883 1 267.4132967670999 208.91721596244855 0 0 0 0 +2565 1 1.9838 1 242.07004514322438 190.47313197573195 0 0 0 0 +9169 1 1.0435 1 276.45353588174646 172.6626262889785 0 0 0 0 +2638 1 1.9545 1 271.60887823462116 217.2345168215264 0 0 0 0 +5805 1 1.314 1 230.61233994262813 175.22961240529565 0 0 0 0 +2915 1 1.859 1 263.52152771041006 171.53004927344787 0 0 0 0 +6524 1 1.2407 1 259.8988905976048 176.9733637070605 0 0 0 0 +2958 1 1.8453 1 272.56086302552967 207.58007258540167 0 0 0 0 +2977 1 1.8401 1 235.79437736783726 191.23254033012026 0 0 0 0 +712 1 3.7607 1 260.0134821446033 174.52206041114158 0 0 0 0 +3015 1 1.8223 1 256.55382078328796 198.60631811726046 0 0 0 0 +3024 1 1.8195 1 241.2239219990694 171.48377532821294 0 0 0 0 +3066 1 1.8084 1 258.52388114536865 177.97395412281577 0 0 0 0 +9021 1 1.0517 1 253.55465608693495 181.29955795811145 0 0 0 0 +3170 1 1.7741 1 252.52619373400182 194.95411755115447 0 0 0 0 +3276 1 1.7458 1 236.70552526589915 174.0946148237288 0 0 0 0 +549 1 4.2039 1 225.5776911549315 182.55002016323954 0 0 0 0 +3288 1 1.7437 1 267.91892476621393 211.96842370936727 0 0 0 0 +3301 1 1.7394 1 228.118469909189 178.30209137657727 0 0 0 0 +1725 1 2.4094 1 226.34842429779277 179.33830066606475 0 0 0 0 +7914 1 1.1198 1 275.81261044272253 211.3596275011928 0 0 0 0 +8606 1 1.0747 1 274.56499900204204 213.56641804846186 0 0 0 0 +1981 1 2.2541 1 253.78421870277597 179.70949053972058 0 0 0 0 +3736 1 1.6417 1 275.8332893895092 222.30123846154515 0 0 0 0 +3748 1 1.6403 1 241.14838248285918 177.40932345762894 0 0 0 0 +3749 1 1.6397 1 230.41244163929164 176.6305870104713 0 0 0 0 +3750 1 1.6395 1 254.34392389228398 190.34979433275618 0 0 0 0 +3785 1 1.6331 1 241.57197738029112 192.46587286552864 0 0 0 0 +3933 1 1.6014 1 271.0066023076386 215.41611617567963 0 0 0 0 +8049 1 1.1113 1 250.86377059046927 173.72892217930132 0 0 0 0 +4058 1 1.5734 1 264.083381298518 205.56125093796615 0 0 0 0 +9961 1 1.0025 1 237.3495054483022 190.6561994333024 0 0 0 0 +4159 1 1.5565 1 246.4740108277075 174.8359616278251 0 0 0 0 +3281 1 1.7451 1 265.26447798399244 171.22874055472886 0 0 0 0 +4232 1 1.5455 1 268.2284240614874 210.4131068186717 0 0 0 0 +4277 1 1.5368 1 240.9693157393295 189.03004954492604 0 0 0 0 +4307 1 1.5313 1 256.70636912850296 200.20361045390524 0 0 0 0 +4340 1 1.5241 1 266.295436633537 206.39005506864297 0 0 0 0 +4374 1 1.5191 1 273.26962696107097 216.83380761321837 0 0 0 0 +4447 1 1.5067 1 254.01965152275534 195.6074491848557 0 0 0 0 +8271 1 1.0968 1 247.9595856401145 175.06795604107086 0 0 0 0 +4476 1 1.5019 1 262.54590478462114 174.75547361960096 0 0 0 0 +4572 1 1.4856 1 228.91227329119013 188.01147989220624 0 0 0 0 +4605 1 1.4797 1 235.28553742914573 173.5133095023828 0 0 0 0 +3964 1 1.5934 1 275.8153649236674 213.81994996659174 0 0 0 0 +727 1 3.7315 1 256.36563850197484 174.97294659632647 0 0 0 0 +4699 1 1.4651 1 251.7449602705805 196.8976794423912 0 0 0 0 +3713 1 1.6447 1 227.03608337444157 186.6955971264018 0 0 0 0 +2855 1 1.8777 1 253.19277787895558 177.7601012205366 0 0 0 0 +4865 1 1.4389 1 245.9662158223592 194.08540417782282 0 0 0 0 +1644 1 2.4563 1 254.42074817645593 185.1632632469242 0 0 0 0 +5298 1 1.3762 1 230.69159938479157 189.6026246652777 0 0 0 0 +3834 1 1.6201 1 245.54626315020894 180.91756728012962 0 0 0 0 +5385 1 1.3662 1 252.76615098728985 192.33176095067094 0 0 0 0 +4073 1 1.5707 1 227.35084927398717 184.7969658960339 0 0 0 0 +5400 1 1.3634 1 269.53745647250423 172.1453662566918 0 0 0 0 +5433 1 1.3586 1 244.89268116668862 193.22493499439994 0 0 0 0 +5559 1 1.3435 1 274.6315381343295 217.14128178394668 0 0 0 0 +1151 1 2.9533 1 278.06092744401417 211.1365271491781 0 0 0 0 +5578 1 1.3405 1 270.1652666560157 208.50441601601673 0 0 0 0 +5606 1 1.3363 1 234.21794707041246 191.0886937179973 0 0 0 0 +5642 1 1.3328 1 254.54942596744408 191.77906413070312 0 0 0 0 +5652 1 1.3321 1 270.6426652759826 207.2829626816364 0 0 0 0 +5707 1 1.3249 1 239.6930191005764 171.22172143194175 0 0 0 0 +5712 1 1.3246 1 256.1748985222187 197.15185322291558 0 0 0 0 +5757 1 1.3193 1 251.21659551532915 190.31142619179838 0 0 0 0 +6595 1 1.232 1 251.12349015092119 175.31168615233398 0 0 0 0 +5844 1 1.3102 1 243.31412105909632 187.46024359555355 0 0 0 0 +6687 1 1.2233 1 277.47051598268746 206.47156902060766 0 0 0 0 +5895 1 1.3052 1 229.46578922573826 177.70283563628607 0 0 0 0 +5937 1 1.3013 1 231.1105785832696 190.83961894054482 0 0 0 0 +5945 1 1.3001 1 269.2258708388614 214.35938250965694 0 0 0 0 +9453 1 1.028 1 271.1924729170266 218.59370108101567 0 0 0 0 +6038 1 1.2908 1 255.29877671638056 195.0883048765925 0 0 0 0 +6116 1 1.282 1 227.67699996394103 180.87171479765948 0 0 0 0 +6192 1 1.2725 1 247.15133375523146 194.69940464618642 0 0 0 0 +6983 1 1.1958 1 254.94642473718292 178.48749526104666 0 0 0 0 +6252 1 1.2648 1 237.25333216945248 191.69992109516613 0 0 0 0 +7891 1 1.122 1 271.3284534848752 208.29200045543632 0 0 0 0 +6410 1 1.2507 1 258.0082117809332 200.1057812986524 0 0 0 0 +6458 1 1.2469 1 228.12771229417524 179.7393941615186 0 0 0 0 +440 1 4.6811 1 251.35081780631015 183.07366957283213 0 0 0 0 +6485 1 1.2448 1 249.4048337435804 185.51725482252246 0 0 0 0 +6490 1 1.2443 1 243.13207560041732 184.9142620834413 0 0 0 0 +3153 1 1.7782 1 231.0558608218403 171.34615392003596 0 0 0 0 +6558 1 1.2367 1 248.68333050162042 184.50438212015519 0 0 0 0 +8947 1 1.0554 1 254.58872779712217 177.44468525816978 0 0 0 0 +6589 1 1.2332 1 252.41309008299643 190.71499675232414 0 0 0 0 +6629 1 1.2291 1 272.3185603459577 215.86720293162765 0 0 0 0 +7278 1 1.1727 1 248.4757699473318 171.6823756778418 0 0 0 0 +6674 1 1.2247 1 225.87202185603516 187.39989504223973 0 0 0 0 +6858 1 1.2068 1 266.85978965722717 210.63876112135299 0 0 0 0 +6871 1 1.2046 1 261.127164730943 203.46217187329609 0 0 0 0 +6887 1 1.2033 1 244.08573096323983 180.78066080302867 0 0 0 0 +6889 1 1.2032 1 252.3296941774159 193.51588068267182 0 0 0 0 +6941 1 1.1989 1 235.9075054315823 175.25055396327426 0 0 0 0 +6960 1 1.1977 1 232.96024422897216 191.00713752171757 0 0 0 0 +7061 1 1.1891 1 269.1698378695046 170.99632991985854 0 0 0 0 +7064 1 1.1887 1 241.8988422765455 187.72068759890922 0 0 0 0 +7088 1 1.1872 1 247.2699041476477 175.94254533088008 0 0 0 0 +3948 1 1.597 1 247.04520489101054 171.51992615238916 0 0 0 0 +7144 1 1.1828 1 252.90880688058817 196.3435691076181 0 0 0 0 +7246 1 1.174 1 258.87991228211257 201.26273163906842 0 0 0 0 +7260 1 1.1735 1 266.0921565691742 209.72867794093344 0 0 0 0 +7270 1 1.1731 1 237.07667765623387 175.44271382185522 0 0 0 0 +2142 1 2.1585 1 277.15008395908484 171.30744246448378 0 0 0 0 +7310 1 1.1696 1 242.7314710160681 193.14675619173093 0 0 0 0 +7414 1 1.1601 1 250.41825285928178 189.37210779451493 0 0 0 0 +7453 1 1.1567 1 248.4015673827982 195.337787969389 0 0 0 0 +7463 1 1.1561 1 268.51864455232334 213.30389995464589 0 0 0 0 +7544 1 1.1488 1 242.6697434104383 180.15209936716076 0 0 0 0 +7577 1 1.1458 1 250.0037511532995 190.4438749181065 0 0 0 0 +1016 1 3.1536 1 251.18881724803654 179.19661142891496 0 0 0 0 +4525 1 1.4939 1 250.74767478135672 185.98303192526808 0 0 0 0 +7664 1 1.139 1 253.41525759889495 191.3187629496107 0 0 0 0 +7781 1 1.1303 1 275.2229051825431 212.54722302917688 0 0 0 0 +7756 1 1.1318 1 257.760348659142 201.21732978343599 0 0 0 0 +6351 1 1.257 1 235.26345937584045 172.2102342169997 0 0 0 0 +5071 1 1.409 1 269.04738819954446 209.21438587832824 0 0 0 0 +8051 1 1.1113 1 249.14870686701968 181.3184117382277 0 0 0 0 +8057 1 1.1108 1 241.67852540687616 178.62216275800594 0 0 0 0 +8072 1 1.1095 1 243.0162067251861 181.20783776072645 0 0 0 0 +9629 1 1.0193 1 275.86605379317604 223.59312550638748 0 0 0 0 +8119 1 1.1065 1 267.0521693063746 207.45964744580098 0 0 0 0 +9466 1 1.0275 1 257.86188273799127 176.7386752159446 0 0 0 0 +8168 1 1.1031 1 270.28753383932644 216.52022322598353 0 0 0 0 +8217 1 1.1004 1 258.8487034977139 176.58981591811195 0 0 0 0 +8228 1 1.0998 1 249.0827929587936 191.08443183965719 0 0 0 0 +8243 1 1.0985 1 228.36957240047323 186.8722794225159 0 0 0 0 +5222 1 1.3864 1 276.9542088878293 212.93887087349324 0 0 0 0 +8313 1 1.0936 1 229.5785176074591 189.09189138813215 0 0 0 0 +8479 1 1.0823 1 238.57201749747676 171.61675622846082 0 0 0 0 +9524 1 1.0246 1 228.01457493695852 185.88495068998935 0 0 0 0 +4680 1 1.4676 1 277.24815327729186 221.8643455872693 0 0 0 0 +8601 1 1.0748 1 263.9190608175347 207.04859338503022 0 0 0 0 +8611 1 1.0745 1 267.5578381398283 206.56421585992797 0 0 0 0 +8696 1 1.0701 1 242.40339030733045 186.69210322416745 0 0 0 0 +8741 1 1.0674 1 243.26810732483688 186.06375243988458 0 0 0 0 +9074 1 1.0485 1 256.6338988891996 181.38937819349397 0 0 0 0 +9086 1 1.0479 1 255.78239646484423 196.09192398705943 0 0 0 0 +9126 1 1.0459 1 265.0292756507371 206.41127812864684 0 0 0 0 +9130 1 1.0457 1 269.7015787464512 215.42031153645183 0 0 0 0 +9136 1 1.0453 1 242.24139459782393 188.79171438170607 0 0 0 0 +7307 1 1.1699 1 257.1317418114861 177.49335599819838 0 0 0 0 +9298 1 1.0367 1 247.63983075387736 177.57433604452268 0 0 0 0 +9330 1 1.0346 1 243.75500010162 193.4849349515099 0 0 0 0 +8267 1 1.0969 1 249.50411851208193 177.91966994857447 0 0 0 0 +2813 1 1.8908 1 250.63656826416403 176.76958119104614 0 0 0 0 +2936 1 1.8512 1 229.48763702742352 190.54739459834857 0 0 0 0 +3040 1 1.8144 1 252.36137082629574 176.1344058882179 0 0 0 0 +4434 1 1.5085 1 253.79945014665057 174.75660598162798 0 0 0 0 +3763 1 1.6374 1 254.04926507072338 176.2587306261385 0 0 0 0 +2163 1 2.1503 1 225.4522703928939 185.69292549128718 0 0 0 0 +2651 1 1.947 1 249.77667189016458 172.680310777677 0 0 0 0 +2027 1 2.2237 1 249.55710406609262 174.7086567043185 0 0 0 0 +5858 1 1.3092 1 276.1318506618029 220.93652368502276 0 0 0 0 +90 1 9.8742 1 225.5396451389833 173.16334731082534 0 0 0 0 +2991 1 1.8357 1 262.8179686518742 173.1920325413463 0 0 0 0 +8827 1 1.0617 1 251.90103391855385 171.46486217582105 0 0 0 0 +2601 1 1.967 1 256.66861077927865 172.19923615814986 0 0 0 0 +8270 1 1.0968 1 258.0358149028097 172.96748434541456 0 0 0 0 +4300 1 1.5325 1 251.64905271290928 172.70037811170414 0 0 0 0 +2866 1 1.8729 1 224.64356044791845 188.21926089283016 0 0 0 0 +9889 1 1.0056 1 224.55367308202912 178.6209412234612 0 0 0 0 +3 1 93.5499 1 228.23840853237093 238.13996686330492 0 0 0 0 +8229 1 1.0998 1 274.75175341528774 227.41212994714633 0 0 0 0 +4364 1 1.5207 1 273.89999304043926 250.79738752357784 0 0 0 0 +409 1 4.8983 1 266.76398864708335 268.6338039666806 0 0 0 0 +290 1 5.8218 1 271.65731497338334 262.0433970152879 0 0 0 0 +602 1 4.0103 1 262.0514778487293 274.4652265353937 0 0 0 0 +6029 1 1.2918 1 277.1718889954511 277.5892416095643 0 0 0 0 +677 1 3.8287 1 274.1014022404184 254.21840376182578 0 0 0 0 +2952 1 1.8473 1 273.2113466125558 265.53252083662477 0 0 0 0 +838 1 3.4858 1 267.0311973465609 276.13995057974466 0 0 0 0 +851 1 3.4562 1 271.4114633647399 275.7676744033959 0 0 0 0 +1060 1 3.0759 1 268.9832993173477 265.4159361081234 0 0 0 0 +4424 1 1.5106 1 276.7115824350925 244.25802713451176 0 0 0 0 +1423 1 2.6579 1 269.9035852373065 270.5918192052435 0 0 0 0 +8581 1 1.0763 1 274.6141097084528 265.17842138636576 0 0 0 0 +1858 1 2.3276 1 268.7793186309874 273.86680426084723 0 0 0 0 +1869 1 2.3203 1 275.8832556680869 232.8777806060335 0 0 0 0 +1890 1 2.3056 1 266.5283649427247 273.35744289851027 0 0 0 0 +9640 1 1.0184 1 270.70310717453293 258.8033459199837 0 0 0 0 +2057 1 2.207 1 264.2809382679566 276.5452928530316 0 0 0 0 +2299 1 2.0932 1 271.53756618010584 272.2329341993186 0 0 0 0 +2452 1 2.027 1 275.1233382384479 229.81392403971142 0 0 0 0 +2496 1 2.0117 1 264.4791777717501 272.86984328363184 0 0 0 0 +2769 1 1.9062 1 264.15577639482274 270.74767894230837 0 0 0 0 +2835 1 1.8836 1 259.1304644274516 274.4454758687744 0 0 0 0 +2857 1 1.8771 1 258.362191291268 276.4853926660462 0 0 0 0 +3194 1 1.7673 1 276.32666839226164 260.6747908137784 0 0 0 0 +1261 1 2.842 1 275.5442005302879 276.38776658722844 0 0 0 0 +3329 1 1.733 1 275.6734331253788 234.8813274940468 0 0 0 0 +9739 1 1.0131 1 275.49903675692815 238.84529287928282 0 0 0 0 +3404 1 1.7139 1 275.3513869790706 245.09700905345835 0 0 0 0 +3460 1 1.7008 1 274.2871194621137 256.8990951176851 0 0 0 0 +3482 1 1.6974 1 272.26087068670597 267.00547552497034 0 0 0 0 +3338 1 1.7315 1 275.34600435878684 258.1128380452513 0 0 0 0 +7035 1 1.1906 1 272.67224100292947 277.6914090146758 0 0 0 0 +6102 1 1.2831 1 271.7697675763002 258.50384463633645 0 0 0 0 +3837 1 1.6196 1 271.49588472802026 269.2452055024541 0 0 0 0 +6630 1 1.2289 1 273.7956308929841 225.37614245328868 0 0 0 0 +3960 1 1.5941 1 275.96768895935986 237.67092823361986 0 0 0 0 +3984 1 1.5895 1 265.6596068024504 271.6163595376829 0 0 0 0 +4068 1 1.5716 1 275.4865050585829 243.3788567410701 0 0 0 0 +4093 1 1.568 1 276.5448384547812 239.7851070464768 0 0 0 0 +4416 1 1.5126 1 263.0052888342199 271.926027986913 0 0 0 0 +813 1 3.5563 1 277.73168792618077 241.97808558414997 0 0 0 0 +4430 1 1.5094 1 271.7809348150886 257.1290659621387 0 0 0 0 +9780 1 1.0111 1 275.3687098480252 239.81410135283332 0 0 0 0 +4486 1 1.5002 1 272.5942106723977 273.63541181145996 0 0 0 0 +6461 1 1.2467 1 274.9884096907887 261.1658576232949 0 0 0 0 +81 1 10.2427 1 277.28208594386916 270.15747033275045 0 0 0 0 +9059 1 1.0498 1 275.7760817974478 227.60558925513132 0 0 0 0 +7288 1 1.172 1 278.09517328649235 233.92337592664202 0 0 0 0 +4847 1 1.4422 1 276.80425605668455 235.94396159219863 0 0 0 0 +4948 1 1.4258 1 270.77538423577977 266.6921371000107 0 0 0 0 +5100 1 1.4043 1 259.8257570479026 275.88975909445276 0 0 0 0 +1062 1 3.0665 1 275.8571459485915 225.59721123650766 0 0 0 0 +5362 1 1.3684 1 266.853104999299 265.55714932063677 0 0 0 0 +5424 1 1.3605 1 270.7206213544725 268.0443984123225 0 0 0 0 +5466 1 1.3549 1 277.9189737547091 235.14740496806078 0 0 0 0 +7627 1 1.1426 1 275.90057386703114 259.36773661552394 0 0 0 0 +5590 1 1.3384 1 261.6151846907151 271.82725783472847 0 0 0 0 +5719 1 1.3243 1 270.550091718749 273.5812921434113 0 0 0 0 +5793 1 1.3151 1 276.9781926646325 234.25486354142132 0 0 0 0 +668 1 3.8472 1 277.8659752069528 230.4736519931502 0 0 0 0 +5952 1 1.2995 1 273.5698835850036 276.89581348543174 0 0 0 0 +5977 1 1.2967 1 267.06580295431 271.68403391476915 0 0 0 0 +659 1 3.8669 1 276.2603595314593 263.3565124581081 0 0 0 0 +5348 1 1.3701 1 277.63021007622444 276.0103994827318 0 0 0 0 +9766 1 1.0117 1 259.8936573081921 273.22698796594403 0 0 0 0 +6273 1 1.2627 1 275.5557092775841 236.34712872942137 0 0 0 0 +6316 1 1.2595 1 269.58288376315744 267.4740919993674 0 0 0 0 +6477 1 1.2456 1 273.59846261829773 274.5364454137744 0 0 0 0 +9899 1 1.0051 1 276.83736546339685 253.09084006738382 0 0 0 0 +5666 1 1.3306 1 275.9738650323214 252.3539104123052 0 0 0 0 +6733 1 1.2194 1 275.63128124496296 240.8678792087959 0 0 0 0 +6761 1 1.217 1 272.1535200951581 255.80061425170732 0 0 0 0 +4205 1 1.5487 1 278.0281340522001 226.06195915045456 0 0 0 0 +7028 1 1.1915 1 257.77199862844975 275.1163599656106 0 0 0 0 +7117 1 1.1843 1 275.4009607958978 242.02448626337076 0 0 0 0 +3057 1 1.8104 1 274.5324741270511 259.6628322672628 0 0 0 0 +9948 1 1.0031 1 267.8920024375315 272.46291153177197 0 0 0 0 +7396 1 1.1618 1 269.9535585561453 272.50603033077147 0 0 0 0 +7466 1 1.1559 1 271.1507697442466 265.4765293080345 0 0 0 0 +7483 1 1.1541 1 273.69664758321227 275.6991039284247 0 0 0 0 +7495 1 1.1528 1 268.17655312475284 271.28660358090076 0 0 0 0 +337 1 5.4167 1 276.7124985935262 249.0733880451806 0 0 0 0 +8854 1 1.0599 1 269.73747457392795 268.74289184802234 0 0 0 0 +3725 1 1.6434 1 277.125891404945 254.34426548221708 0 0 0 0 +7605 1 1.1438 1 272.9634311512632 256.59523934224444 0 0 0 0 +7703 1 1.1362 1 263.8439735183917 269.28635415438083 0 0 0 0 +6240 1 1.2663 1 276.1323930270875 228.644166211561 0 0 0 0 +7735 1 1.1337 1 268.8872817851903 272.1600550212557 0 0 0 0 +6044 1 1.2899 1 274.8158489183069 251.80592227934306 0 0 0 0 +7757 1 1.1317 1 256.87156697128756 275.82882634351233 0 0 0 0 +7775 1 1.1306 1 274.83559648149856 246.41148827559573 0 0 0 0 +4654 1 1.4725 1 276.2182156889385 255.59530702514562 0 0 0 0 +2500 1 2.0104 1 277.30498433436907 227.62480892588536 0 0 0 0 +9268 1 1.0383 1 274.5091189853865 228.43140100123887 0 0 0 0 +7005 1 1.1939 1 277.5144970238761 252.24959034174702 0 0 0 0 +8279 1 1.0964 1 273.4469860510726 251.9384961621719 0 0 0 0 +8289 1 1.0956 1 275.6740615107083 256.7471153772446 0 0 0 0 +8495 1 1.0811 1 268.2921515471356 263.3601932800016 0 0 0 0 +8699 1 1.0698 1 262.6420939609825 270.6447963891841 0 0 0 0 +6811 1 1.2111 1 275.0989644481133 231.37139290208086 0 0 0 0 +7091 1 1.1868 1 274.0581633625284 226.55061068776618 0 0 0 0 +9214 1 1.0412 1 253.47102220957697 278.08592059340725 0 0 0 0 +9254 1 1.0392 1 271.7081061796872 270.6805365968777 0 0 0 0 +2898 1 1.8634 1 273.2954342047952 258.34480974415686 0 0 0 0 +4171 1 1.5551 1 277.1975462859264 245.6593608271963 0 0 0 0 +9366 1 1.0326 1 260.64267993059184 272.4718537643278 0 0 0 0 +8 1 37.6745 1 265.5669653206814 327.00989127301665 0 0 0 0 +15 1 28.8055 1 236.47078891126978 304.94081870233754 0 0 0 0 +3225 1 1.7587 1 254.23647681205986 280.6650786928768 0 0 0 0 +146 1 7.7435 1 267.2552027198138 299.2330960731372 0 0 0 0 +216 1 6.5709 1 260.4178684395275 301.0597611957422 0 0 0 0 +236 1 6.3097 1 228.04936973853083 328.24479256606423 0 0 0 0 +245 1 6.2611 1 262.3166130523337 285.6864432161416 0 0 0 0 +247 1 6.2474 1 242.05866532947388 321.32939487084366 0 0 0 0 +270 1 6.0055 1 252.60779288907435 284.1342161209125 0 0 0 0 +288 1 5.831 1 255.7323182323699 306.2289957218324 0 0 0 0 +9843 1 1.0081 1 276.994218082067 298.72427622170073 0 0 0 0 +5155 1 1.3953 1 257.55948726946804 281.0660340319252 0 0 0 0 +363 1 5.2443 1 267.52724580468566 283.26075702781947 0 0 0 0 +433 1 4.7274 1 269.26414260317915 287.87292218828924 0 0 0 0 +469 1 4.5672 1 232.69169493608786 288.84225805503047 0 0 0 0 +477 1 4.5184 1 245.697285838069 287.02509350499975 0 0 0 0 +478 1 4.5142 1 259.64915753492056 290.2354425074244 0 0 0 0 +506 1 4.3387 1 228.4560496886803 323.01190148995187 0 0 0 0 +521 1 4.2957 1 225.47877433690766 320.0053734144998 0 0 0 0 +557 1 4.1826 1 251.12388712011088 297.51596293091825 0 0 0 0 +620 1 3.954 1 247.8557750592167 282.74432551069225 0 0 0 0 +644 1 3.9085 1 253.25615143263744 288.9251993789315 0 0 0 0 +6819 1 1.2105 1 226.48474653599038 292.3344475132897 0 0 0 0 +5667 1 1.3306 1 276.0073027782894 301.2676970771072 0 0 0 0 +775 1 3.6388 1 232.59164125158898 329.970541889358 0 0 0 0 +795 1 3.6 1 247.66115340922184 293.297131767755 0 0 0 0 +810 1 3.5646 1 233.72490410480316 322.6518066752319 0 0 0 0 +3041 1 1.8141 1 258.47495597353753 297.37319431915114 0 0 0 0 +865 1 3.4353 1 235.59238704076608 328.21924335373546 0 0 0 0 +888 1 3.3781 1 246.62260334679638 317.2489273778589 0 0 0 0 +892 1 3.3733 1 237.84348235799976 288.5446442455326 0 0 0 0 +4610 1 1.4791 1 274.1648846022883 280.8665008554076 0 0 0 0 +2209 1 2.1327 1 275.3421184360491 290.1098200798615 0 0 0 0 +1144 1 2.9669 1 268.1748185411823 291.5603800476409 0 0 0 0 +1167 1 2.9366 1 238.0726313343382 323.37691455722563 0 0 0 0 +1200 1 2.9038 1 228.49389459865284 291.3313229250156 0 0 0 0 +1792 1 2.3607 1 273.9006388442406 278.9648766382816 0 0 0 0 +1281 1 2.8095 1 243.57982442762838 290.9160107275712 0 0 0 0 +1286 1 2.8048 1 253.94965871821577 292.1363195405446 0 0 0 0 +6694 1 1.2226 1 238.19987516532623 325.4014450157679 0 0 -1 0 +1318 1 2.7713 1 252.1973824636071 294.26263693552505 0 0 0 0 +1336 1 2.7531 1 252.03345169366753 302.63941013748797 0 0 0 0 +1340 1 2.7451 1 251.4282386972292 312.7868029380866 0 0 0 0 +1659 1 2.4477 1 277.29712033110434 291.15569028729766 0 0 0 0 +1360 1 2.7284 1 254.51080593190656 297.4134139884815 0 0 0 0 +1369 1 2.7168 1 258.0988994734662 287.03626488754605 0 0 0 0 +8936 1 1.0559 1 259.61965219034397 307.0263645642917 0 0 0 0 +1382 1 2.7014 1 256.09552557561443 290.456658738476 0 0 0 0 +1421 1 2.6597 1 239.8180883730821 285.02143708024295 0 0 0 0 +6680 1 1.2241 1 257.24430513826564 296.5248499146588 0 0 0 0 +1427 1 2.6532 1 248.46697086184165 289.215700748433 0 0 0 0 +1449 1 2.6209 1 265.3319005836276 291.96230056360616 0 0 0 0 +1487 1 2.5913 1 255.47030120124842 294.9800664995154 0 0 0 0 +1514 1 2.5619 1 264.45369455977766 289.5457118249221 0 0 0 0 +1563 1 2.5231 1 235.79141108939154 320.4994706124576 0 0 0 0 +1614 1 2.4831 1 254.13371942243364 301.1255301777184 0 0 0 0 +1627 1 2.47 1 236.38341238740813 325.44330918342837 0 0 0 0 +1652 1 2.4528 1 231.61045985557465 320.62441845331506 0 0 0 0 +1655 1 2.4509 1 262.8780389896086 291.4245871978942 0 0 0 0 +1658 1 2.4483 1 240.68489834964566 287.36992519233695 0 0 0 0 +3819 1 1.623 1 272.9695030282612 307.253862130678 0 0 0 0 +1673 1 2.4414 1 242.45501447924931 285.7848506919619 0 0 0 0 +1213 1 2.8949 1 261.3862357135605 306.18579634624837 0 0 0 0 +1705 1 2.4183 1 258.8518527296968 283.2346057967605 0 0 0 0 +7964 1 1.1167 1 239.93909743045575 327.94203283813556 0 0 0 0 +1797 1 2.3565 1 251.82959583344046 307.08476076214436 0 0 0 0 +7320 1 1.1687 1 275.2854176609306 280.01933357372104 0 0 0 0 +1907 1 2.2954 1 245.91304950752314 319.88470102486735 0 0 0 0 +1936 1 2.2794 1 249.04208231022238 315.8338150749728 0 0 0 0 +8798 1 1.0635 1 276.0753515581369 309.37295674130297 0 0 0 0 +2063 1 2.2035 1 272.52126728509967 288.69833413336215 0 0 0 0 +2069 1 2.198 1 236.8551109663449 285.153541366139 0 0 0 0 +8050 1 1.1113 1 239.23222820616456 330.95274612725467 0 0 0 0 +2184 1 2.1447 1 254.18482188521983 310.7410484454277 0 0 0 0 +2195 1 2.14 1 228.65492613465995 319.8477072717686 0 0 0 0 +2217 1 2.1285 1 255.8179670765821 286.48398138371124 0 0 0 0 +2294 1 2.096 1 264.3559990828758 294.07919677034124 0 0 0 0 +2335 1 2.0746 1 241.94404161766735 289.2070539853177 0 0 0 0 +2352 1 2.0675 1 231.42314769859988 324.10611784834776 0 0 0 0 +940 1 3.264 1 225.51485687483233 286.31900186719946 0 0 0 0 +2402 1 2.0472 1 240.00889718893245 324.8797463671785 0 0 0 0 +2840 1 1.8829 1 276.459011181535 293.06731303501164 0 0 0 0 +2539 1 1.996 1 272.41160097467616 284.3087571739465 0 0 0 0 +2551 1 1.9892 1 227.86330367722152 317.98980458065887 0 0 0 0 +3929 1 1.6022 1 276.3513760717585 279.13729588920086 0 0 0 0 +2589 1 1.9744 1 249.93119750704352 294.7496304549031 0 0 0 0 +2592 1 1.971 1 271.3829090989153 290.3782296828462 0 0 0 0 +2595 1 1.9703 1 233.7644684109621 285.80440972792996 0 0 0 0 +9734 1 1.0134 1 263.57912291137336 282.3115759898738 0 0 0 0 +2635 1 1.9552 1 251.83646068739287 304.9600880417921 0 0 0 0 +2646 1 1.9503 1 252.1415675053178 300.3378532760864 0 0 0 0 +2649 1 1.9479 1 237.95149976627425 326.93933327803524 0 0 0 0 +2669 1 1.9417 1 250.7744136253327 291.3851446266419 0 0 0 0 +9317 1 1.0352 1 246.75247723747685 331.4727432630865 0 0 -1 0 +2712 1 1.9259 1 244.0420327259701 284.3732372140583 0 0 0 0 +3402 1 1.7145 1 246.0429244095388 324.77992932711726 0 0 -1 0 +7638 1 1.1413 1 258.81065649744346 304.58389330262605 0 0 0 0 +2932 1 1.8521 1 256.24818581869823 300.90915257607753 0 0 0 0 +2939 1 1.8507 1 249.4340930700023 286.40655212939157 0 0 0 0 +1940 1 2.2765 1 273.8746686019712 308.9283953714297 0 0 0 0 +3611 1 1.6688 1 244.57208784664593 327.4300198235252 0 0 -1 0 +3034 1 1.8168 1 256.617665758618 302.6288916783234 0 0 0 0 +3047 1 1.8129 1 230.06681844891753 287.2282817106937 0 0 0 0 +3062 1 1.8088 1 233.480044981305 326.6938007743506 0 0 0 0 +3141 1 1.781 1 256.01304058502063 292.926239148688 0 0 0 0 +3184 1 1.7694 1 252.74791406265481 309.4423442703007 0 0 0 0 +6794 1 1.2129 1 231.28439899675013 286.3625503228086 0 0 0 0 +3256 1 1.7519 1 255.32490813903513 299.41940987411556 0 0 0 0 +3261 1 1.7494 1 250.85271284108964 287.5096805676081 0 0 0 0 +6740 1 1.219 1 272.9243193773427 305.8305234200491 0 0 0 0 +932 1 3.2899 1 271.61080242836107 293.7415295484769 0 0 0 0 +7579 1 1.1455 1 259.9437270882853 304.8204299184655 0 0 0 0 +3488 1 1.6961 1 251.14287358072374 308.9134278014568 0 0 0 0 +9568 1 1.0221 1 251.48338240741296 279.30532120601237 0 0 0 0 +9244 1 1.0397 1 264.0447930717681 302.2671715846235 0 0 0 0 +3565 1 1.6775 1 234.3727450801915 325.18110491402336 0 0 0 0 +824 1 3.5279 1 269.4318753737279 278.5693182415822 0 0 0 0 +3917 1 1.604 1 266.0861787364133 278.4670542483009 0 0 0 0 +2637 1 1.9546 1 263.46473775329036 307.36773888837655 0 0 0 0 +3715 1 1.6445 1 231.94413380175087 327.46133598366396 0 0 0 0 +3739 1 1.6415 1 231.4557088311755 325.9440427119861 0 0 0 0 +8324 1 1.0926 1 276.12674389459505 299.2726188241776 0 0 0 0 +3846 1 1.6181 1 255.94042701283547 288.32395219026216 0 0 0 0 +470 1 4.5587 1 270.06408932896306 306.49976937332866 0 0 0 0 +4376 1 1.5189 1 257.346366461352 292.070167524763 0 0 0 0 +3970 1 1.5918 1 238.196771895179 320.0325397826961 0 0 0 0 +3988 1 1.5891 1 240.19233669253637 289.24036697315154 0 0 0 0 +3995 1 1.5874 1 266.40635295499817 290.19688272737875 0 0 0 0 +6474 1 1.2457 1 267.1843353641912 306.5273016974157 0 0 0 0 +9671 1 1.017 1 267.78648840527137 304.75246384284407 0 0 0 0 +4183 1 1.5525 1 244.50705788069627 282.77198323296 0 0 0 0 +4199 1 1.5497 1 249.11179033495188 291.1907800754408 0 0 0 0 +4234 1 1.5447 1 225.60930590996276 317.1661263762383 0 0 0 0 +4244 1 1.5429 1 228.503279366782 289.20800778573846 0 0 0 0 +4273 1 1.5374 1 270.3727294896681 291.7759620033637 0 0 0 0 +4128 1 1.5626 1 264.6693966314004 281.4594165721534 0 0 0 0 +4348 1 1.5234 1 226.93259977511593 316.5970432465262 0 0 0 0 +4349 1 1.5233 1 257.6510047855744 309.22503741426834 0 0 0 0 +4363 1 1.5209 1 232.81591975390776 325.1820345566796 0 0 0 0 +4370 1 1.5198 1 233.82608369780223 320.1231203492532 0 0 0 0 +4384 1 1.5172 1 253.4731121510755 299.24645617484225 0 0 0 0 +4386 1 1.5169 1 274.28547224259324 288.67820302485626 0 0 0 0 +4813 1 1.4467 1 227.6926568241793 285.59315770010016 0 0 0 0 +4469 1 1.5025 1 225.80726725654628 315.64144724808875 0 0 0 0 +4471 1 1.5023 1 248.1365480559233 285.4040967665422 0 0 0 0 +721 1 3.7475 1 271.61797867884303 281.4678151895848 0 0 0 0 +4512 1 1.495 1 225.42539079983968 330.9911706463892 0 0 0 0 +9246 1 1.0396 1 267.4034962050569 303.5751625047397 0 0 0 0 +4541 1 1.4909 1 229.52611504855122 318.32422357314505 0 0 0 0 +4560 1 1.4876 1 242.78938118638558 287.68666874681276 0 0 0 0 +4607 1 1.4794 1 236.35068769277473 286.8322745040525 0 0 0 0 +5133 1 1.3984 1 260.64735673877396 308.15036188389695 0 0 0 0 +4653 1 1.4728 1 244.17630275555345 318.0495443346124 0 0 0 0 +3240 1 1.755 1 265.2713124182291 279.9239046092558 0 0 0 0 +4671 1 1.4688 1 235.95630068093828 323.5758184484835 0 0 0 0 +9813 1 1.0094 1 271.3009816227797 297.5813203245083 0 0 0 0 +4717 1 1.461 1 256.5439336701996 297.71108558491625 0 0 0 0 +4729 1 1.4594 1 230.64346054936917 291.0238693482506 0 0 0 0 +4751 1 1.4562 1 245.4475062448891 289.9393537634677 0 0 0 0 +4761 1 1.4544 1 271.35697786036604 285.63963242855476 0 0 0 0 +4798 1 1.4494 1 246.55123518293723 290.8718968603102 0 0 0 0 +4811 1 1.447 1 274.1849496440515 291.4141104420563 0 0 0 0 +8642 1 1.0726 1 265.8587726863667 293.7135709440786 0 0 0 0 +4814 1 1.4467 1 242.05599838427702 283.93077466281767 0 0 0 0 +4845 1 1.4423 1 252.46880229314087 311.01567174038126 0 0 0 0 +4851 1 1.4413 1 230.81197226849855 318.9225219986821 0 0 0 0 +4927 1 1.4288 1 259.27795603127976 305.85991929019343 0 0 0 0 +4929 1 1.4286 1 239.27423365834056 290.2890710439697 0 0 0 0 +4944 1 1.4262 1 246.86409266974465 321.4942350104149 0 0 0 0 +5817 1 1.3127 1 244.76162780553045 325.5247645764907 0 0 -1 0 +4958 1 1.425 1 226.2543875426019 324.82804384634795 0 0 0 0 +4995 1 1.4209 1 266.33161885885727 288.7457849173364 0 0 0 0 +5041 1 1.4147 1 249.4874445917697 312.4194924608929 0 0 0 0 +5059 1 1.4117 1 270.77104597843135 283.9221690245384 0 0 0 0 +1889 1 2.306 1 241.40414410374922 326.4807583574212 0 0 -1 0 +5088 1 1.4059 1 250.16976183255974 311.21551640082134 0 0 0 0 +5127 1 1.3987 1 273.3601112926579 287.15668684952783 0 0 0 0 +3581 1 1.6748 1 252.40329186578072 280.34485089156556 0 0 0 0 +5164 1 1.3932 1 262.49334871423923 289.5046039843641 0 0 0 0 +5269 1 1.3797 1 262.3784341643425 304.3950567051851 0 0 0 0 +5291 1 1.3769 1 272.72742416655683 285.9481721375205 0 0 0 0 +5338 1 1.371 1 255.0523170865672 302.74828332704027 0 0 0 0 +5359 1 1.3686 1 230.20174203282303 325.1912440612129 0 0 0 0 +5373 1 1.3675 1 250.78185149272173 289.7697196568254 0 0 0 0 +5431 1 1.3587 1 250.47483599238416 314.73231136704675 0 0 0 0 +9587 1 1.0214 1 246.32052232805435 328.99308143522234 0 0 -1 0 +5506 1 1.35 1 245.6258208846474 284.10845537611755 0 0 0 0 +5532 1 1.3472 1 243.11556458490668 283.10778605062313 0 0 0 0 +5539 1 1.3457 1 266.1495639187387 294.85321893559063 0 0 0 0 +1422 1 2.6588 1 250.30722763895494 280.6655984294845 0 0 0 0 +1471 1 2.6035 1 275.70562693093837 297.4840511921738 0 0 0 0 +5649 1 1.3324 1 247.7897830600294 319.1753784268492 0 0 0 0 +3096 1 1.7985 1 277.07239251740714 302.3670689964784 0 0 0 0 +5664 1 1.3309 1 231.22241198317948 322.44550388126675 0 0 0 0 +9847 1 1.0077 1 239.07303006080343 326.0315185530364 0 0 0 0 +5698 1 1.3259 1 272.93302449042216 290.8648325977552 0 0 0 0 +4637 1 1.4757 1 246.36464743179218 330.3007761744593 0 0 -1 0 +5800 1 1.3147 1 256.2218790009548 284.65186148822715 0 0 0 0 +5804 1 1.3142 1 262.1122723633614 297.5659975517704 0 0 0 0 +5812 1 1.3133 1 258.4630589506018 292.8582511352346 0 0 0 0 +5829 1 1.3116 1 253.6439942774869 295.6371600221227 0 0 0 0 +5871 1 1.3085 1 265.2994643144417 287.8873501036863 0 0 0 0 +5953 1 1.2993 1 235.14045499061183 284.98832262116116 0 0 0 0 +3692 1 1.6501 1 271.9434185650085 278.84748318443013 0 0 0 0 +6125 1 1.281 1 266.8498585080553 293.15782016579465 0 0 0 0 +8508 1 1.0804 1 262.09117363268 307.99469491679383 0 0 0 0 +6139 1 1.2797 1 243.55774036261369 288.9043944608459 0 0 0 0 +6145 1 1.2792 1 256.82225978729946 299.4955056798512 0 0 0 0 +6165 1 1.2759 1 235.1927192184585 287.4593216153949 0 0 0 0 +2081 1 2.1925 1 257.8398173723407 294.94316193338636 0 0 0 0 +6264 1 1.2636 1 229.78419101256375 288.68516148990915 0 0 0 0 +6330 1 1.2586 1 229.9631247838857 289.88827580609416 0 0 0 0 +6433 1 1.2489 1 248.7503586881813 313.46964652861124 0 0 0 0 +6435 1 1.2486 1 237.27492741488834 321.5159121370698 0 0 0 0 +6442 1 1.248 1 266.4157947499344 287.44742181722387 0 0 0 0 +6456 1 1.2471 1 235.24806680974558 286.20479391156323 0 0 0 0 +3215 1 1.7613 1 267.6126403446501 294.4387782600547 0 0 0 0 +2707 1 1.927 1 270.90922282406876 296.1767414161262 0 0 0 0 +6538 1 1.2385 1 241.59320946595565 290.8235233779469 0 0 0 0 +6545 1 1.2379 1 258.5843233216741 285.05368685020966 0 0 0 0 +6550 1 1.2378 1 257.53916624568336 298.5190271566591 0 0 0 0 +6576 1 1.2351 1 227.42899167544405 293.032065394601 0 0 0 0 +8019 1 1.1135 1 257.4726513979341 284.3295277721804 0 0 0 0 +3033 1 1.8171 1 267.0918690102599 279.80157909136915 0 0 0 0 +6603 1 1.2312 1 251.9833449080393 292.317713358064 0 0 0 0 +222 1 6.4668 1 261.182297987147 279.5259058321759 0 0 0 0 +6703 1 1.2221 1 273.70778678403275 289.9001227549179 0 0 0 0 +9410 1 1.0301 1 231.30661368399834 285.2810202051983 0 0 0 0 +6791 1 1.2132 1 266.81128402332126 286.317395686099 0 0 0 0 +6826 1 1.2099 1 232.34913281709623 285.30155369552494 0 0 0 0 +5640 1 1.3331 1 234.3710836510908 331.6522310381219 0 0 0 0 +6846 1 1.2081 1 247.45878096596127 320.3478076356421 0 0 0 0 +9987 1 1.0007 1 254.0260955541482 293.9987942880844 0 0 0 0 +6852 1 1.2071 1 250.62741063329622 300.1378498355854 0 0 0 0 +6894 1 1.2028 1 247.80904005877377 290.96305100099613 0 0 0 0 +3768 1 1.6364 1 230.08674895528964 285.6099240335881 0 0 0 0 +7124 1 1.1838 1 225.30999880168056 292.3977373766507 0 0 0 0 +2665 1 1.9424 1 245.7923073419427 323.0066944426076 0 0 -1 0 +7100 1 1.1856 1 253.21897774017532 312.06443703800954 0 0 0 0 +7857 1 1.1243 1 245.3475878471247 328.5402313785671 0 0 -1 0 +7207 1 1.1776 1 270.1755169135715 285.0685250336763 0 0 0 0 +7223 1 1.1763 1 269.33845768321544 293.2802072511728 0 0 0 0 +7255 1 1.1737 1 257.3711380157946 293.38519207129474 0 0 0 0 +1610 1 2.4848 1 260.80347795392885 295.4133227514267 0 0 0 0 +3521 1 1.6892 1 276.59381647453966 310.65544068257003 0 0 0 0 +7357 1 1.165 1 238.04527172877366 286.29681081207434 0 0 0 0 +5538 1 1.3459 1 275.19657208679166 310.11428210157544 0 0 0 0 +7439 1 1.1576 1 248.12165931424116 314.4085044967659 0 0 0 0 +3529 1 1.6874 1 263.021352932607 295.3914927674825 0 0 0 0 +7530 1 1.1505 1 247.3552465684853 315.18033094992074 0 0 0 0 +7566 1 1.1466 1 248.7419753243543 296.3730778356136 0 0 0 0 +345 1 5.3624 1 242.31487847957536 330.0966691848978 0 0 -1 0 +7628 1 1.1426 1 251.49942466488537 310.257559334054 0 0 0 0 +9901 1 1.005 1 245.41961104011713 293.10775587610095 0 0 0 0 +7666 1 1.1389 1 245.65645791738802 292.108216320227 0 0 0 0 +1896 1 2.3024 1 275.95172545692895 295.0926567862338 0 0 0 0 +5702 1 1.3253 1 278.019316253528 293.26982538638396 0 0 0 0 +7782 1 1.1303 1 257.1850939218989 288.8811633173231 0 0 0 0 +9998 1 1 1 277.28620811461906 294.1662529271483 0 0 0 0 +7842 1 1.1264 1 249.8976312622239 292.6244999674096 0 0 0 0 +7850 1 1.1254 1 238.41251352534732 321.3652924756105 0 0 0 0 +7875 1 1.1231 1 272.1044634749506 287.0333790293241 0 0 0 0 +7910 1 1.1202 1 264.2496193350793 296.0091551732767 0 0 0 0 +4812 1 1.4469 1 277.81319927646194 278.7581426223923 0 0 0 0 +3406 1 1.7136 1 259.5072258247952 293.85496420306305 0 0 0 0 +8048 1 1.1114 1 273.30334321802366 283.0959317945683 0 0 0 0 +8055 1 1.1111 1 249.81431098326993 313.7603750851842 0 0 0 0 +8061 1 1.1103 1 240.48780576925594 290.5458303884361 0 0 0 0 +8105 1 1.1072 1 252.25875193666738 291.1940939373653 0 0 0 0 +8124 1 1.106 1 255.7077445364648 310.34771551856335 0 0 0 0 +2055 1 2.2077 1 274.7987543947556 306.9528886096924 0 0 0 0 +8178 1 1.1026 1 253.8879828433254 303.16781333648714 0 0 0 0 +8196 1 1.1018 1 245.66130355917147 321.53201064766483 0 0 0 0 +8226 1 1.0998 1 257.1673415697966 285.3863111647886 0 0 0 0 +8249 1 1.0978 1 236.1929073804352 290.0113783222206 0 0 0 0 +5552 1 1.344 1 272.8619023552468 295.61209954833794 0 0 0 0 +8272 1 1.0967 1 239.06964742353267 286.71147277804516 0 0 0 0 +8290 1 1.0956 1 256.43865553675533 309.5932204205679 0 0 0 0 +8296 1 1.0948 1 261.3714389722235 292.34287110070574 0 0 0 0 +6383 1 1.253 1 260.92441952728205 297.2283895081446 0 0 0 0 +8408 1 1.0871 1 272.068384809132 291.6702702006731 0 0 0 0 +8456 1 1.0841 1 246.66645304555632 289.63122112647125 0 0 0 0 +8457 1 1.084 1 250.4465527014337 310.060401605696 0 0 0 0 +7678 1 1.1382 1 243.8531888980928 326.2781186727525 0 0 -1 0 +8509 1 1.0803 1 264.47203093921297 282.7528660139637 0 0 0 0 +8523 1 1.0797 1 250.22355934531143 288.72501355607545 0 0 0 0 +8538 1 1.0787 1 225.44583418004038 325.76001689713013 0 0 0 0 +3165 1 1.776 1 242.9606915135809 325.18635457483964 0 0 -1 0 +8675 1 1.0712 1 265.7633265566658 286.5677870172262 0 0 0 0 +8190 1 1.1019 1 275.52571785093534 291.71892791496583 0 0 0 0 +8773 1 1.0648 1 232.80149546698908 319.3780926245853 0 0 0 0 +3101 1 1.7967 1 277.9558838841399 311.7163361672441 0 0 0 0 +8796 1 1.0637 1 225.08917943697656 322.6472139536702 0 0 0 0 +8804 1 1.0631 1 229.90965590699753 320.77418063711764 0 0 0 0 +8917 1 1.0567 1 265.1256240543031 295.41580702978735 0 0 0 0 +7208 1 1.1776 1 239.7280992620324 326.8528113925902 0 0 -1 0 +4808 1 1.4472 1 228.60600131316403 287.7937069575404 0 0 0 0 +9013 1 1.0521 1 241.56295811150486 324.8770414353721 0 0 0 0 +9026 1 1.0514 1 230.4780372750022 330.94262230003477 0 0 0 0 +9076 1 1.0484 1 244.64460131872775 292.47847742429843 0 0 0 0 +9094 1 1.0472 1 269.9182269655812 290.6227791772135 0 0 0 0 +9095 1 1.0472 1 250.94146615929316 292.8571422047218 0 0 0 0 +9099 1 1.0471 1 254.10778006767868 309.1938677436495 0 0 0 0 +9141 1 1.045 1 226.6147381893923 293.76665882324403 0 0 0 0 +4858 1 1.4402 1 244.58931339317627 324.1853539162907 0 0 -1 0 +9183 1 1.0429 1 236.39858305564098 322.26032718138123 0 0 0 0 +1376 1 2.7076 1 238.479016706995 329.13208111857506 0 0 0 0 +9251 1 1.0394 1 260.46600119840883 292.8853214127456 0 0 0 0 +9440 1 1.0287 1 248.05262857569852 295.5565232026193 0 0 0 0 +9501 1 1.0259 1 225.82156600201574 323.3855626411626 0 0 0 0 +9516 1 1.025 1 240.91343965263442 283.62506130612286 0 0 0 0 +9536 1 1.0239 1 249.20634650903244 284.8182553543357 0 0 0 0 +9626 1 1.0195 1 228.850327193364 285.3390453998101 0 0 0 0 +9652 1 1.0178 1 245.40748592627656 291.1287633290871 0 0 0 0 +1049 1 3.0912 1 225.68437169565044 290.3778167056445 0 0 0 0 +1671 1 2.4415 1 277.60150161696333 300.3198953863424 0 0 0 0 +7556 1 1.1478 1 275.5179808004561 300.17815958267204 0 0 0 0 +7985 1 1.1154 1 243.02048162026188 326.97189571947536 0 0 -1 0 +9744 1 1.013 1 235.15985115705595 290.0977114230697 0 0 0 0 +9747 1 1.0129 1 249.54013569620878 287.79631629157615 0 0 0 0 +9835 1 1.0084 1 238.1737712429337 284.31760146193807 0 0 0 0 +1993 1 2.2456 1 262.2835399738563 293.6419922714532 0 0 0 0 +9962 1 1.0024 1 256.15999048611434 296.5849262754542 0 0 0 0 +9862 1 1.0066 1 245.52721143987662 282.09514246592255 0 0 0 0 +9881 1 1.0058 1 253.06607333482847 304.161322230258 0 0 0 0 +2829 1 1.885 1 259.0474360619349 308.3431348814341 0 0 0 0 +5732 1 1.3227 1 228.76988776273654 286.44321779737635 0 0 0 0 +4329 1 1.5272 1 263.3256828259392 296.92799917997104 0 0 0 0 +6578 1 1.2348 1 259.09749969567565 296.0233119393464 0 0 0 0 +6299 1 1.2608 1 227.62458646712236 286.926635920151 0 0 0 0 +1612 1 2.4839 1 256.5558153870079 282.7859602684835 0 0 0 0 +7727 1 1.1346 1 255.19415420013053 281.67718617997286 0 0 0 0 +522 1 4.2945 1 265.09792006482144 304.76968476630435 0 0 0 0 +2810 1 1.891 1 227.05216168016582 288.3567519720499 0 0 0 0 +9300 1 1.0366 1 225.60798697424678 288.3918111725344 0 0 0 0 +7007 1 1.1935 1 245.38352213708632 331.12326771252157 0 0 -1 0 +8237 1 1.099 1 259.828298346076 296.90855736255645 0 0 0 0 +8220 1 1.1003 1 271.0255798457441 303.9069109589071 0 0 0 0 +8852 1 1.0601 1 263.0052507497539 298.28810527327505 0 0 0 0 +9173 1 1.0432 1 262.17936390723617 296.4260104555846 0 0 0 0 +3525 1 1.6885 1 245.9161655037075 326.4579333055737 0 0 -1 0 +3058 1 1.8101 1 268.76152555615056 303.7037465822739 0 0 0 0 +6800 1 1.2126 1 267.45552111825367 307.69518398597916 0 0 0 0 +5293 1 1.3767 1 265.4948603012965 307.53068728744574 0 0 0 0 +3764 1 1.6373 1 270.1982122621682 302.8384679496883 0 0 0 0 +7571 1 1.1462 1 246.19780632322676 327.8294437762186 0 0 -1 0 +6232 1 1.2672 1 234.93525593686192 330.4489862867669 0 0 -1 0 +9012 1 1.0521 1 245.42243208895215 329.5731170703324 0 0 -1 0 +8573 1 1.0767 1 269.3482179521454 280.7860763017206 0 0 0 0 +514 1 4.3171 1 274.17665579660826 303.36197274926525 0 0 0 0 +7590 1 1.1448 1 252.38550127216882 278.7807840114497 0 0 0 0 +7312 1 1.1696 1 273.0848211674038 292.0900786779455 0 0 0 0 +1600 1 2.4937 1 274.38044436513604 293.3404167663846 0 0 0 0 +2579 1 1.9785 1 269.3650750602899 294.93205329326116 0 0 0 0 +587 1 4.0709 1 273.0774783038813 299.3810573802111 0 0 0 0 +5735 1 1.3223 1 272.37168207649887 296.8201676522696 0 0 0 0 +7517 1 1.1513 1 271.54739786501887 302.97141437540154 0 0 0 0 +4639 1 1.4753 1 253.49212239030487 279.3055716627443 0 0 0 0 +7736 1 1.1336 1 256.19110634800336 281.00921792392563 0 0 0 0 +3938 1 1.6007 1 273.81955240754974 296.66926095314165 0 0 0 0 +5487 1 1.3522 1 274.14269084074164 295.23667551241016 0 0 0 0 +8175 1 1.1027 1 275.5388769215366 305.5660896497141 0 0 0 0 +3339 1 1.7313 1 271.31185919136516 301.60294710194717 0 0 0 0 +7836 1 1.1266 1 275.50678358710195 308.450161916632 0 0 0 0 +552 1 4.1937 1 256.0551028181131 278.3455362769592 0 0 0 0 +1107 1 3.0061 1 224.7148588818399 294.3124372934977 0 0 0 0 +9348 1 1.0337 1 275.4151417967743 278.2758712339639 0 0 0 0 +6785 1 1.2143 1 264.7440522783798 278.17099039892656 0 0 0 0 +45 1 14.7349 1 294.93835727198234 49.26294682978875 0 0 0 0 +8430 1 1.086 1 283.1362496373914 18.456127339742313 0 0 0 0 +6843 1 1.2083 1 323.48260589025784 12.888445972423835 0 0 0 0 +7036 1 1.1905 1 291.15724351052455 13.942824838222215 0 0 0 0 +127 1 8.5152 1 315.69576157623845 60.349117538918755 0 0 0 0 +131 1 8.339 1 327.7872440981058 56.06937406390774 0 0 0 0 +6523 1 1.2408 1 292.21598665929656 14.329564295116205 0 0 1 0 +165 1 7.443 1 324.8704374207568 48.89744385850285 0 0 0 0 +180 1 7.185 1 312.98546314752 27.33654756298735 0 0 0 0 +190 1 6.9901 1 282.6960558715811 50.241140300406 0 0 0 0 +9066 1 1.049 1 289.3391901656138 41.95809090194277 0 0 0 0 +199 1 6.8708 1 293.30664954199005 34.40056366164536 0 0 0 0 +201 1 6.845 1 310.78808138743267 51.36146319528924 0 0 0 0 +202 1 6.8323 1 318.5836328461701 53.34575221714293 0 0 0 0 +206 1 6.7083 1 286.8450611906517 36.112365937453575 0 0 0 0 +323 1 5.5334 1 304.62335768385947 35.38052435729246 0 0 0 0 +344 1 5.3631 1 327.67548233375675 43.2138512840862 0 0 0 0 +438 1 4.6906 1 286.5626032693985 24.41367735930461 0 0 0 0 +441 1 4.676 1 306.05549848892866 56.35354701650104 0 0 0 0 +473 1 4.5374 1 302.3742192952969 41.254969644758745 0 0 0 0 +6662 1 1.2259 1 321.524570061483 10.846639331158018 0 0 1 0 +493 1 4.4156 1 301.6707975917384 57.202060670345894 0 0 0 0 +500 1 4.3646 1 302.96570891423914 30.821092622143183 0 0 0 0 +512 1 4.3188 1 310.4518016509263 56.818142713044374 0 0 0 0 +6428 1 1.2493 1 330.8582200396839 44.02241499032716 0 -1 0 0 +604 1 4.0042 1 285.3509796460306 43.68008916421497 0 0 0 0 +8355 1 1.0904 1 283.39959674047736 15.565427504104637 0 0 0 0 +625 1 3.9418 1 287.55615017825926 54.69995108331448 0 0 0 0 +676 1 3.8336 1 285.25574290287267 17.179382205504634 0 0 0 0 +703 1 3.7783 1 318.3091476523454 21.4515114055612 0 0 0 0 +708 1 3.7653 1 321.36479099063223 14.183878677872283 0 0 0 0 +714 1 3.7603 1 284.29047602561803 27.948177724066618 0 0 0 0 +4926 1 1.4289 1 327.89876427993227 34.32908404101239 0 0 0 0 +742 1 3.6947 1 294.95116518639634 39.239332198126604 0 0 0 0 +750 1 3.6902 1 286.2438966889341 31.05671019568325 0 0 0 0 +751 1 3.6867 1 319.5946736761639 47.43015688473501 0 0 0 0 +4190 1 1.5509 1 324.8092009880423 41.49041455693102 0 -1 0 0 +6448 1 1.2476 1 327.91315870794904 17.359420530643078 0 0 1 0 +780 1 3.6222 1 290.6793086619925 24.423572408026523 0 0 0 0 +5922 1 1.3022 1 322.65266854470354 10.329873771280132 0 0 0 0 +790 1 3.6088 1 298.2401287259046 35.969461159784665 0 0 0 0 +792 1 3.6069 1 303.56681262284394 46.667758615596405 0 0 0 0 +825 1 3.5267 1 298.8108288993491 39.52094735060152 0 0 0 0 +884 1 3.3819 1 315.3781961442686 19.601227525302836 0 0 0 0 +890 1 3.3754 1 307.1962886770579 38.84684217972532 0 0 0 0 +9139 1 1.0451 1 314.3091389651271 55.79259206680895 0 0 0 0 +953 1 3.2432 1 304.893140507444 50.20479455458847 0 0 0 0 +9368 1 1.0325 1 297.92138324598943 28.241495268649327 0 0 0 0 +1007 1 3.1662 1 288.49064617611646 20.328773311816928 0 0 0 0 +5075 1 1.4082 1 283.37250898972127 25.191304982541123 0 0 0 0 +9687 1 1.0163 1 314.60111993133745 13.728984879772817 0 0 1 0 +2250 1 2.1177 1 324.2299515879972 14.343851864931962 0 0 1 0 +1036 1 3.1138 1 325.29983883725004 20.484467638021332 0 0 0 0 +7968 1 1.1166 1 287.07007508804605 18.78536673851765 0 0 0 0 +1040 1 3.1081 1 292.66464936093564 58.765396395417355 0 0 0 0 +1046 1 3.0941 1 306.55405057377845 31.580000404582247 0 0 0 0 +1053 1 3.0876 1 314.56727643553074 48.29011996375174 0 0 0 0 +1057 1 3.0801 1 296.2505019700416 29.350787614781822 0 0 0 0 +1115 1 2.9963 1 282.9905863514214 31.079306282466124 0 0 0 0 +1134 1 2.9747 1 297.30845404577485 59.01335418002705 0 0 0 0 +1152 1 2.9528 1 308.47570899030546 33.85378234045344 0 0 0 0 +1188 1 2.919 1 284.18144512768504 21.51857202553562 0 0 0 0 +1249 1 2.8497 1 317.7571448157279 24.585882844120093 0 0 0 0 +1272 1 2.8197 1 307.08752339522346 43.469014241267104 0 0 0 0 +1317 1 2.772 1 322.3820630132397 56.014206954934686 0 0 0 0 +1329 1 2.7568 1 303.00711758268966 52.47180477614491 0 0 0 0 +1349 1 2.7371 1 299.5444685371653 31.52218979927661 0 0 0 0 +1350 1 2.7359 1 307.5405174091006 28.892640946238355 0 0 0 0 +1372 1 2.7109 1 321.69489987498787 19.5089629249027 0 0 0 0 +37 1 16.0333 1 316.8278782914111 38.10336624840242 0 -1 0 0 +1389 1 2.692 1 321.19151788516706 58.397315719213886 0 0 0 0 +9172 1 1.0432 1 307.2155979890323 45.38778008654137 0 0 0 0 +1418 1 2.6643 1 280.1172108040191 36.85842252483373 0 0 0 0 +1425 1 2.6565 1 323.90299602443474 16.612610102769025 0 0 0 0 +1442 1 2.6318 1 290.62210450753753 18.27525334753535 0 0 0 0 +1499 1 2.5786 1 285.31954769675025 40.42747831738608 0 0 0 0 +1509 1 2.5695 1 327.49286293571777 32.40505810620035 0 0 0 0 +1579 1 2.5081 1 281.3771824051325 27.05771285717292 0 0 0 0 +9482 1 1.0269 1 288.431873479418 44.92336463303509 0 0 0 0 +1596 1 2.4985 1 291.12786986651696 27.422743855823295 0 0 0 0 +1606 1 2.4865 1 293.4757731431153 28.18080346478173 0 0 0 0 +1621 1 2.4754 1 290.1391544711724 29.67742586329961 0 0 0 0 +1624 1 2.4719 1 290.82982914706105 38.325097850440415 0 0 0 0 +1649 1 2.4535 1 309.7825240407715 44.05559461097611 0 0 0 0 +1656 1 2.4504 1 308.865571245082 59.79236429253744 0 0 0 0 +1657 1 2.4495 1 282.3247785243955 35.65341984438018 0 0 0 0 +1694 1 2.4279 1 291.1592215373959 20.716849234847896 0 0 0 0 +9288 1 1.0373 1 314.63433684455254 46.28481518271681 0 0 0 0 +1731 1 2.4054 1 317.11709697979865 49.08865406854025 0 0 0 0 +1767 1 2.3739 1 284.46026836814156 14.234876899329675 0 0 0 0 +9793 1 1.0101 1 315.79172749480426 24.28197302353362 0 0 0 0 +5637 1 1.3332 1 327.58959760924785 39.9126820812191 0 0 0 0 +1831 1 2.3397 1 318.27375703132753 28.094517906051486 0 0 0 0 +1842 1 2.3332 1 295.1061391029659 57.72160342201991 0 0 0 0 +1847 1 2.3314 1 289.1047950803841 31.841950396038314 0 0 0 0 +1853 1 2.3293 1 297.6510014059744 33.09704548230539 0 0 0 0 +3806 1 1.628 1 324.21242131116185 42.94004567147514 0 -1 0 0 +1902 1 2.2999 1 288.4657486941666 43.34080693570558 0 0 0 0 +1911 1 2.2931 1 279.8430131929346 46.18931912979765 0 0 0 0 +4591 1 1.482 1 319.29419357392607 12.601674644329036 0 0 1 0 +1939 1 2.2766 1 319.8804346095705 29.614798649055288 0 0 0 0 +1952 1 2.269 1 288.2680095313945 17.64110690708262 0 0 0 0 +1961 1 2.2642 1 280.9932863540064 32.73097134873042 0 0 0 0 +848 1 3.4621 1 326.29217211036445 36.14887746305584 0 -1 0 0 +2017 1 2.2296 1 316.8218532538309 15.908745576107895 0 0 0 0 +9031 1 1.0511 1 326.72774219229 33.987579825399585 0 0 0 0 +273 1 5.9825 1 280.12174424980367 23.172325659517817 0 0 0 0 +2088 1 2.1888 1 329.80094650670475 32.32374829132458 0 0 0 0 +4735 1 1.4587 1 324.6234200901843 32.37133586360811 0 -1 0 0 +2103 1 2.1834 1 306.3790388518183 46.7540660239167 0 0 0 0 +2113 1 2.1756 1 293.8856022824294 25.966899390905503 0 0 0 0 +2145 1 2.1579 1 307.15054908159374 48.757513429274155 0 0 0 0 +2150 1 2.1569 1 301.0210383912791 36.28236189690787 0 0 0 0 +2264 1 2.1117 1 287.30076021142213 45.914256082965665 0 0 0 0 +2288 1 2.0986 1 305.60114126475014 41.52388018020607 0 0 0 0 +2312 1 2.0838 1 282.93260316311563 45.461301193044584 0 0 0 0 +2356 1 2.0656 1 287.3968761281249 41.50033966594257 0 0 0 0 +2387 1 2.0536 1 323.3646274339953 59.28148116430204 0 0 0 0 +7421 1 1.1595 1 330.7718427742662 38.30258878295254 0 -1 0 0 +9043 1 1.0501 1 326.80629192277394 21.882184193507584 0 0 1 0 +2499 1 2.0105 1 306.77706504715314 60.22944053830524 0 0 0 0 +687 1 3.8145 1 285.28254028836307 11.254292192914816 0 0 1 0 +2564 1 1.9839 1 289.053438481437 26.608247589806673 0 0 0 0 +9454 1 1.028 1 303.702384454062 54.83404239918031 0 0 0 0 +2578 1 1.9786 1 283.5913032032532 38.89897404769749 0 0 0 0 +2604 1 1.966 1 314.6896928031462 23.138141473862305 0 0 0 0 +2612 1 1.9624 1 326.91522851528157 61.04176735246015 0 0 0 0 +2679 1 1.939 1 281.6675179890962 29.151085197271115 0 0 0 0 +1623 1 2.4741 1 314.5113774447771 15.755365844719346 0 0 1 0 +2698 1 1.93 1 308.9253305575936 42.11116263515788 0 0 0 0 +2708 1 1.9266 1 328.91196400479026 46.58760263595075 0 0 0 0 +9903 1 1.0049 1 282.374756537414 20.553786361549513 0 0 0 0 +1865 1 2.3223 1 325.7957731919444 39.88144508427134 0 -1 0 0 +2783 1 1.9007 1 319.68077549338983 17.960171964746962 0 0 0 0 +2811 1 1.891 1 281.6685688801702 39.64697416268105 0 0 0 0 +1595 1 2.499 1 291.06645887912026 15.775318963374051 0 0 1 0 +2877 1 1.8685 1 280.4428446707381 34.667010521971505 0 0 0 0 +2916 1 1.8579 1 317.49774601321633 18.141065941224255 0 0 0 0 +2960 1 1.8445 1 301.4936689534585 54.15140323874762 0 0 0 0 +2965 1 1.8438 1 305.6920081717479 53.067351304725435 0 0 0 0 +3009 1 1.8255 1 304.79474969856847 43.30574270191402 0 0 0 0 +3014 1 1.8225 1 308.25840806210476 46.53837939327088 0 0 0 0 +3017 1 1.8217 1 300.25283370693893 29.40264544934323 0 0 0 0 +3143 1 1.7807 1 328.84200231967856 51.151641612411545 0 0 0 0 +1607 1 2.4862 1 326.1149704606332 17.846440308511266 0 0 1 0 +3157 1 1.7774 1 286.92352375868785 50.799456081794766 0 0 0 0 +3172 1 1.773 1 286.8548853186925 47.739311827147894 0 0 0 0 +3181 1 1.7703 1 301.7805623237188 44.68378490453635 0 0 0 0 +24 1 20.9287 1 302.4587254947801 18.293300273894495 0 0 1 0 +3204 1 1.7653 1 322.2546889025441 21.635797829562893 0 0 0 0 +3213 1 1.7623 1 323.1919472441496 53.63454994123248 0 0 0 0 +3232 1 1.7571 1 318.78758482815294 15.069768872802445 0 0 0 0 +3247 1 1.7538 1 305.5400176845928 45.00212251024664 0 0 0 0 +6348 1 1.2572 1 284.28644168713174 19.45481536335828 0 0 0 0 +3269 1 1.7477 1 298.6937876191572 56.56979272185065 0 0 0 0 +7499 1 1.1524 1 329.2881150805034 28.794182719986853 0 -1 1 0 +3354 1 1.7269 1 299.55894466459085 59.33575771398301 0 0 0 0 +3363 1 1.725 1 331.0010396717145 47.036806391352286 0 0 0 0 +3377 1 1.7219 1 282.14963820125655 41.4781717251001 0 0 0 0 +3378 1 1.7214 1 321.90328567157275 60.40764224918147 0 0 0 0 +5621 1 1.3345 1 329.1898438784461 33.89175294080176 0 -1 1 0 +3426 1 1.7102 1 309.78306436512935 47.28043882395721 0 0 0 0 +3445 1 1.7051 1 326.59783243260847 15.857983569798101 0 0 0 0 +3464 1 1.7006 1 296.0911650287704 60.903453638202286 0 0 0 0 +3501 1 1.6935 1 318.4961878259536 16.727736970360557 0 0 0 0 +3537 1 1.6855 1 320.6764900323958 22.768066416783228 0 0 0 0 +6137 1 1.2799 1 283.357688169045 12.873396761592865 0 0 0 0 +3623 1 1.667 1 322.6005513574561 11.787581728761666 0 0 0 0 +3625 1 1.6667 1 299.5358761467929 33.689136063279676 0 0 0 0 +3645 1 1.6632 1 307.3912856807015 41.29838182709007 0 0 0 0 +9944 1 1.0032 1 281.2860452953089 38.24616712479552 0 0 0 0 +3738 1 1.6416 1 299.5809300891758 42.52773690552266 0 0 0 0 +6529 1 1.2399 1 291.917852557126 22.346928759184962 0 0 1 0 +3060 1 1.8099 1 322.364420378061 45.05270753319946 0 -1 0 0 +3798 1 1.6293 1 313.3273451206382 46.306980102150675 0 0 0 0 +3800 1 1.6293 1 309.6069591668881 30.12005275609638 0 0 0 0 +3808 1 1.6267 1 313.3598454219933 20.973986809186734 0 0 0 0 +3843 1 1.6188 1 317.1852672736972 26.607374460246696 0 0 0 0 +3858 1 1.6162 1 290.4804798765623 41.30171180398251 0 0 0 0 +3913 1 1.605 1 311.4261652692248 47.230510456397454 0 0 0 0 +3987 1 1.5892 1 284.3424984225455 32.86770580650952 0 0 0 0 +4007 1 1.5819 1 305.28448449251454 59.30378620749222 0 0 0 0 +4030 1 1.5777 1 306.6714366921507 51.700595024606855 0 0 0 0 +4081 1 1.5694 1 310.80018521848825 59.66903756780496 0 0 0 0 +4087 1 1.5687 1 303.33208616506084 44.122900731825254 0 0 0 0 +4102 1 1.5658 1 330.4719940996225 51.22110124682782 0 0 0 0 +4103 1 1.5652 1 287.92424420460424 29.07693443381904 0 0 0 0 +7286 1 1.1721 1 330.2170918916209 37.28592659095733 0 -1 0 0 +4120 1 1.5633 1 292.1300705125658 29.59266405361517 0 0 0 0 +4129 1 1.5623 1 292.4124221368766 39.51815301144888 0 0 0 0 +8216 1 1.1004 1 323.5460364454038 19.466552129808722 0 0 0 0 +4160 1 1.5565 1 289.08429364386524 15.95750432564201 0 0 0 0 +9504 1 1.0257 1 314.54828073725434 21.643247982081355 0 0 0 0 +4216 1 1.5471 1 295.07077813550114 59.650196722023445 0 0 0 0 +4223 1 1.5464 1 314.5723447526426 54.54503872346069 0 0 0 0 +1383 1 2.7011 1 330.90920848092355 49.20788979434437 0 -1 0 0 +4291 1 1.5346 1 310.60811746996563 45.93108839948924 0 0 0 0 +4330 1 1.5263 1 288.18549812418075 14.743470987189784 0 0 0 0 +4338 1 1.5249 1 288.9733701213999 22.56207379764964 0 0 0 0 +9477 1 1.027 1 319.6413800262778 49.67164010516882 0 0 0 0 +4393 1 1.5158 1 308.8475660486995 31.70647445806552 0 0 0 0 +8069 1 1.11 1 310.1461003554427 10.398458612624355 0 0 1 0 +4462 1 1.5036 1 304.41527547998135 38.98713241479595 0 0 0 0 +4582 1 1.4836 1 283.6987944840001 41.55568993879439 0 0 0 0 +4593 1 1.4816 1 293.141893642397 24.375354302605906 0 0 0 0 +7291 1 1.1716 1 323.204233598389 43.86174795017567 0 -1 0 0 +4655 1 1.4723 1 283.3997423437418 34.05478913763549 0 0 0 0 +4663 1 1.4703 1 322.5166516157669 31.46841786631683 0 0 0 0 +4712 1 1.4626 1 289.0058299824919 40.80631869955183 0 0 0 0 +4763 1 1.4543 1 324.3723681503522 44.47287215418119 0 0 0 0 +4775 1 1.4519 1 319.5431519050597 57.28886744455203 0 0 0 0 +113 1 9.2643 1 324.6061904991655 26.53597971502788 0 0 1 0 +4827 1 1.4452 1 290.22277900851407 42.778202712667984 0 0 0 0 +4889 1 1.4346 1 284.3923094187362 46.40358313840709 0 0 0 0 +4891 1 1.4343 1 310.2669483099868 31.489054628059442 0 0 0 0 +4899 1 1.4326 1 301.09307174495626 38.559977363655975 0 0 0 0 +4919 1 1.4298 1 315.704794022593 17.277475978338863 0 0 0 0 +9285 1 1.0374 1 325.7719637628853 32.663725309405145 0 -1 0 0 +4937 1 1.4275 1 286.32813726475786 21.169940357655367 0 0 0 0 +4941 1 1.4271 1 313.1878158786032 22.439765725745254 0 0 0 0 +8443 1 1.0848 1 329.8130023614449 47.72359717991525 0 -1 0 0 +4994 1 1.421 1 296.10927401564464 41.41335529988059 0 0 0 0 +5012 1 1.4186 1 286.7656206102804 49.2684997921391 0 0 0 0 +9027 1 1.0513 1 314.1553986796123 53.36215165671472 0 0 0 0 +5077 1 1.4081 1 300.63903880598696 43.611691882405324 0 0 0 0 +8338 1 1.0912 1 325.7244161921122 14.818598706306169 0 0 1 0 +5096 1 1.4048 1 316.33205529547666 23.085339811996242 0 0 0 0 +5112 1 1.4017 1 316.7272750725513 29.394857099428126 0 0 0 0 +9112 1 1.0468 1 329.64627910995983 60.54886889315483 0 0 0 0 +5152 1 1.3959 1 327.8940808650956 22.38251417905346 0 0 0 0 +5167 1 1.3926 1 321.33237612012016 30.692423837024236 0 0 0 0 +5173 1 1.392 1 297.46190861721794 31.23821848829387 0 0 0 0 +5183 1 1.3908 1 303.0796387782561 38.428858775959 0 0 0 0 +5216 1 1.3872 1 283.70572203312116 23.617489016073606 0 0 0 0 +5225 1 1.386 1 313.12294840827116 54.74222007936087 0 0 0 0 +5233 1 1.3847 1 311.48007319766873 44.85054132175361 0 0 0 0 +5274 1 1.3793 1 325.54883766423995 33.82166246361374 0 0 0 0 +8895 1 1.0575 1 328.96696253604716 15.284532981002116 0 -1 0 0 +1391 1 2.6917 1 328.53882462096044 38.20275627812623 0 -1 0 0 +5313 1 1.3739 1 302.946839339998 49.0489486006132 0 0 0 0 +8315 1 1.0931 1 328.99996164979774 23.42508549620919 0 -1 1 0 +5398 1 1.3639 1 313.1739349272456 56.11050382996724 0 0 0 0 +5404 1 1.363 1 297.20278058231884 56.91664309113302 0 0 0 0 +5415 1 1.3615 1 317.47679343016245 14.278513656422618 0 0 0 0 +5465 1 1.3549 1 304.3901732046002 53.902215430909415 0 0 0 0 +9715 1 1.0144 1 301.53244021100306 34.34856824427076 0 0 0 0 +6647 1 1.2271 1 313.6297703895122 14.176333062581994 0 0 1 0 +9144 1 1.0449 1 327.5545702054945 30.680741864060728 0 0 0 0 +5531 1 1.3473 1 298.3646726569751 29.89713531775219 0 0 0 0 +5554 1 1.3439 1 315.73784249157706 21.88621813796685 0 0 0 0 +5625 1 1.3343 1 319.85289615683973 16.186686796450015 0 0 0 0 +9933 1 1.0038 1 292.75697832001964 38.29088163411841 0 0 0 0 +5663 1 1.3309 1 287.4831841682234 52.156877096363665 0 0 0 0 +5318 1 1.3735 1 330.1257656053148 39.350400865424945 0 -1 0 0 +5691 1 1.3269 1 320.79587793341057 21.278853958072972 0 0 0 0 +5696 1 1.3263 1 305.49104926321854 29.496292345376133 0 0 0 0 +9799 1 1.0099 1 323.7438413325824 31.542506237085323 0 0 0 0 +4267 1 1.5382 1 293.22201612894423 10.370905368752904 0 0 1 0 +5803 1 1.3144 1 307.7350358989602 53.96873660359952 0 0 0 0 +5809 1 1.3137 1 289.57675527804105 14.620463112448704 0 0 0 0 +5853 1 1.3095 1 283.05974966064986 37.35650632631809 0 0 0 0 +5861 1 1.3092 1 292.32560230228387 40.9354471816676 0 0 0 0 +5863 1 1.3091 1 328.49352308789895 60.794284238862076 0 0 0 0 +5879 1 1.3073 1 284.6616472686618 54.11712565508364 0 0 0 0 +5882 1 1.3065 1 290.6016345992482 57.93092264321471 0 0 0 0 +5906 1 1.3044 1 311.5729164554197 31.2780550645972 0 0 0 0 +1777 1 2.3706 1 290.35011625217805 11.706430632075758 0 0 1 0 +5925 1 1.3021 1 287.57007487953183 16.013107292553002 0 0 0 0 +5939 1 1.301 1 308.7961048348267 27.366465712636042 0 0 0 0 +5958 1 1.2991 1 319.44716139606 25.67891540278918 0 0 0 0 +1617 1 2.4827 1 281.3357774293992 19.156197604276137 0 0 0 0 +6004 1 1.2941 1 280.3193258008257 38.80068512422087 0 0 0 0 +6028 1 1.2918 1 316.5527638028992 47.39623009101396 0 0 0 0 +4285 1 1.5354 1 294.01069132958247 60.759447896839035 0 0 0 0 +6049 1 1.289 1 278.9798138484218 34.19184995512061 0 0 0 0 +6057 1 1.288 1 315.19951983096104 51.2190029149934 0 0 0 0 +7394 1 1.1618 1 291.99808553659796 10.919155300451553 0 0 1 0 +6065 1 1.287 1 319.7675194561234 19.484233793262 0 0 0 0 +3595 1 1.6722 1 286.63904025832016 14.86952964247841 0 0 0 0 +6156 1 1.2775 1 313.43491122840595 17.201607153489363 0 0 0 0 +6176 1 1.2748 1 281.6122312171605 44.04717588009332 0 0 0 0 +6178 1 1.2746 1 293.5280891901717 41.38524388649592 0 0 0 0 +6179 1 1.2746 1 314.6868386192271 52.361488730096774 0 0 0 0 +6194 1 1.2723 1 313.474602936234 18.43640749593417 0 0 0 0 +6247 1 1.2655 1 303.95221078531847 58.858347594634324 0 0 0 0 +6269 1 1.2632 1 283.0789790405887 40.36730326594916 0 0 0 0 +6278 1 1.2623 1 281.55579718862714 46.30891854887211 0 0 0 0 +6283 1 1.262 1 320.71135616390603 49.9496165548731 0 0 0 0 +6314 1 1.2598 1 282.974082012858 42.68976808155172 0 0 0 0 +6321 1 1.2591 1 302.0525578441754 37.621015863794995 0 0 0 0 +3012 1 1.8247 1 330.37840472685434 45.444223420848026 0 -1 0 0 +9677 1 1.0168 1 290.69578739124046 31.473513619945084 0 0 0 0 +6380 1 1.2537 1 297.0088460595401 37.989987978391866 0 0 0 0 +6552 1 1.2374 1 321.1650116828467 17.664618766932765 0 0 1 0 +6393 1 1.2521 1 285.69804582024705 46.24106659498058 0 0 0 0 +3343 1 1.7303 1 320.0752701672806 11.233757954891672 0 0 1 0 +7685 1 1.1374 1 331.34155585267115 37.34032719801759 0 -1 0 0 +6424 1 1.2498 1 308.61802660762606 40.59191903151041 0 0 0 0 +6436 1 1.2484 1 320.49827035638293 60.215770491200246 0 0 0 0 +6541 1 1.2382 1 291.56234703306 30.808021962077813 0 0 0 0 +9442 1 1.0287 1 286.55872367835957 27.24968480046141 0 0 0 0 +9256 1 1.0391 1 312.9239262915312 15.04119936666476 0 0 1 0 +2738 1 1.9152 1 288.64534401496377 13.111205558431898 0 0 0 0 +6600 1 1.2315 1 323.3288195656994 32.53516163473472 0 0 0 0 +5497 1 1.3512 1 283.1027170760045 19.677243282121577 0 0 0 0 +6861 1 1.2066 1 322.34218120327074 17.677578408982903 0 0 1 0 +1811 1 2.3494 1 296.6901475296312 62.808958427917034 0 0 0 0 +6676 1 1.2244 1 300.49422370745765 34.71459110976757 0 0 0 0 +6841 1 1.2084 1 296.1560165280916 27.282997031144117 0 0 1 0 +6685 1 1.2237 1 300.03449110234016 37.56894069900993 0 0 0 0 +6686 1 1.2236 1 298.90118291200747 28.756868423698766 0 0 0 0 +6743 1 1.2188 1 291.68545374357376 42.00732583840276 0 0 0 0 +6749 1 1.2184 1 291.21485497813194 40.12365407981791 0 0 0 0 +6752 1 1.2179 1 290.0355195263388 39.98273729594433 0 0 0 0 +6827 1 1.2099 1 294.9997383404574 27.20631315821312 0 0 0 0 +6837 1 1.2085 1 323.28510801303156 18.394693453490298 0 0 0 0 +9892 1 1.0054 1 292.2833929376684 26.098021895787525 0 0 0 0 +6856 1 1.207 1 288.2660165543414 39.75843952024087 0 0 0 0 +6868 1 1.2049 1 311.98883520656284 45.983266963465006 0 0 0 0 +6875 1 1.2044 1 307.9649448100636 35.871628845906535 0 0 0 0 +6880 1 1.2041 1 305.4614028125697 48.11438499743893 0 0 0 0 +5388 1 1.3654 1 286.37874544364666 19.769954433903326 0 0 0 0 +6921 1 1.2003 1 315.70664297393694 46.55538583421942 0 0 0 0 +6925 1 1.1998 1 294.67978142689344 30.702043893277757 0 0 0 0 +6928 1 1.1997 1 329.11323722878586 48.58791552893687 0 0 0 0 +6932 1 1.1996 1 308.2814416086795 45.056236412345946 0 0 0 0 +8551 1 1.078 1 312.5378686303891 14.059001988529179 0 0 1 0 +6465 1 1.2464 1 286.0906377023146 13.581043683111805 0 0 1 0 +2570 1 1.982 1 318.3868172131959 10.175003487588917 0 0 0 0 +7083 1 1.1874 1 312.2555885406253 23.282279158191294 0 0 0 0 +7116 1 1.1843 1 287.1150522021107 39.97410651849864 0 0 0 0 +7145 1 1.1828 1 282.6094292455005 33.08996188051117 0 0 0 0 +7167 1 1.1806 1 323.3383960918637 57.70325460130927 0 0 0 0 +7168 1 1.1806 1 308.6671185955212 54.76086578471766 0 0 0 0 +7185 1 1.1794 1 297.39515324498535 41.51617165835921 0 0 0 0 +9188 1 1.0426 1 280.51577829914635 17.40606845591688 0 0 0 0 +7299 1 1.1709 1 326.64916230503286 38.40574269844052 0 -1 0 0 +9007 1 1.0524 1 308.3381586589632 36.94279529255482 0 0 0 0 +8763 1 1.0655 1 285.2708055443382 19.910686249715347 0 0 0 0 +7382 1 1.1628 1 300.7849245330503 33.02605578836739 0 0 0 0 +6384 1 1.2529 1 328.9842143498288 62.971163087696105 0 0 0 0 +7416 1 1.1599 1 293.2184143349947 30.395537273013318 0 0 0 0 +6570 1 1.2355 1 328.87264574363036 40.138837493076885 0 -1 0 0 +7424 1 1.1594 1 315.6628191867232 50.1004882762418 0 0 0 0 +7435 1 1.1583 1 302.7485202662188 50.5423592906661 0 0 0 0 +7436 1 1.1582 1 319.46450465764445 26.883369090601622 0 0 0 0 +4137 1 1.5607 1 331.0510632982506 26.94235108768935 0 -1 0 0 +8138 1 1.1053 1 325.3867576169579 38.23058204963342 0 -1 1 0 +7478 1 1.1545 1 288.47952648025523 30.266043247136764 0 0 0 0 +7313 1 1.1692 1 297.6545452159951 61.105470604093064 0 0 0 0 +6757 1 1.2177 1 279.8190688438685 18.24690448315641 0 0 0 0 +7543 1 1.1489 1 318.54904770646993 13.655275640667574 0 0 0 0 +7563 1 1.1468 1 324.8327418870587 59.74554466838254 0 0 0 0 +9916 1 1.0045 1 325.7223212558474 60.25283605173629 0 0 0 0 +7586 1 1.145 1 324.44449910496985 18.539322699865895 0 0 0 0 +7600 1 1.1439 1 282.72158912673757 14.527181262266023 0 0 0 0 +7611 1 1.1433 1 286.595945480791 28.71114124492937 0 0 0 0 +7615 1 1.1432 1 279.5264147149903 47.76142979272206 0 0 0 0 +7621 1 1.1428 1 282.794677364902 43.86546394670291 0 0 0 0 +7629 1 1.1426 1 325.83235623786845 31.58310493126872 0 0 0 0 +7632 1 1.1422 1 327.9020849049978 15.389023467153832 0 0 0 0 +7636 1 1.1415 1 321.010317231791 16.552227496764413 0 0 0 0 +8263 1 1.097 1 324.09895494867646 33.546410485864314 0 0 0 0 +7663 1 1.1391 1 291.1872813496937 56.45052855766062 0 0 0 0 +7673 1 1.1384 1 301.8900337347046 33.34324557617291 0 0 0 0 +7677 1 1.1383 1 289.25176904758234 39.15790462187896 0 0 0 0 +7687 1 1.1373 1 285.48193508180475 47.365767299852756 0 0 0 0 +9559 1 1.0225 1 288.3689099601944 27.900969353782177 0 0 0 0 +1846 1 2.3319 1 292.4296469500412 12.584865348600283 0 0 1 0 +9294 1 1.0369 1 287.3378255166014 12.488888479159458 0 0 1 0 +7765 1 1.1312 1 307.14674560085405 52.93779028957942 0 0 0 0 +7795 1 1.1291 1 319.9848224903616 24.14246916003001 0 0 0 0 +3475 1 1.6991 1 330.1890516811341 40.81783244418308 0 -1 0 0 +7821 1 1.1274 1 293.58506618132714 56.96875239350104 0 0 0 0 +9202 1 1.0418 1 296.8739978381766 40.55111785113739 0 0 0 0 +7839 1 1.1265 1 324.6154167500914 34.600858596615524 0 0 0 0 +7864 1 1.1236 1 323.2273567049026 20.608085398705914 0 0 0 0 +7878 1 1.123 1 318.65379823265556 19.048411327595907 0 0 0 0 +7534 1 1.1499 1 287.2464348577064 13.607494223494994 0 0 0 0 +7926 1 1.1194 1 298.6732968064215 60.44730578644922 0 0 0 0 +2941 1 1.8502 1 315.8961300619976 14.156036173595613 0 0 1 0 +7944 1 1.1185 1 315.3535694436496 55.588487414024 0 0 0 0 +3064 1 1.8085 1 289.4446016573338 56.87294276492587 0 0 0 0 +9866 1 1.0065 1 294.6571141320657 41.484342394639405 0 0 0 0 +1554 1 2.531 1 329.2222932129626 35.75396801116696 0 -1 0 0 +8030 1 1.1128 1 329.0774846827146 49.734200745497475 0 0 0 0 +9882 1 1.0058 1 321.26474683001004 11.869466861691835 0 0 1 0 +8073 1 1.1094 1 290.18346830103394 22.1367212005117 0 0 0 0 +9068 1 1.0488 1 320.9583462533181 45.506390102354196 0 0 0 0 +8080 1 1.1086 1 310.15825337528776 32.740199243591235 0 0 0 0 +8092 1 1.1079 1 330.7129749107124 52.457921018040345 0 0 0 0 +8097 1 1.1075 1 278.9559372518558 38.275352805026635 0 0 0 0 +8146 1 1.1048 1 317.39068332121116 46.603350282226174 0 0 0 0 +8152 1 1.1046 1 281.8599394584039 42.8986999084846 0 0 0 0 +8840 1 1.0608 1 279.03350296073626 48.63756795451074 0 0 0 0 +8213 1 1.1005 1 299.02958113086424 57.948972375601315 0 0 0 0 +8136 1 1.1053 1 294.47787731667694 10.7225414812192 0 0 1 0 +9826 1 1.0087 1 322.0771011862337 16.60333314488329 0 0 1 0 +8222 1 1.1002 1 317.92233887535406 29.692021150554993 0 0 0 0 +9507 1 1.0255 1 302.744056196574 54.729623050911044 0 0 0 0 +8291 1 1.0956 1 292.65883249942124 23.209216507543545 0 0 0 0 +8311 1 1.0938 1 308.34950658478425 30.559887770920867 0 0 0 0 +8340 1 1.0911 1 296.18008333469646 37.15711137697902 0 0 0 0 +8357 1 1.0904 1 289.40030807661987 28.0838249425414 0 0 0 0 +8199 1 1.1016 1 293.77190817676393 11.551850600319918 0 0 1 0 +8414 1 1.0867 1 308.572589531421 47.97876096594247 0 0 0 0 +8444 1 1.0848 1 321.6227492377364 46.262486028905926 0 0 0 0 +8471 1 1.083 1 287.3286167880718 27.93609365430701 0 0 0 0 +8576 1 1.0767 1 308.1780762124616 58.21966307368639 0 0 0 0 +8579 1 1.0765 1 305.25001999703244 39.97267147869259 0 0 0 0 +8677 1 1.0712 1 314.5565970500847 50.31023159139021 0 0 0 0 +8690 1 1.0705 1 314.51240340464784 17.57417059354959 0 0 0 0 +8703 1 1.0697 1 318.49371796024684 26.387694446543357 0 0 0 0 +8750 1 1.067 1 312.57429864718216 47.845529437528434 0 0 0 0 +6119 1 1.2814 1 290.11604670793184 13.468522787597752 0 0 1 0 +8764 1 1.0654 1 298.3106717692889 42.12708210092591 0 0 0 0 +8772 1 1.0648 1 296.429138210402 31.953921139013605 0 0 0 0 +9855 1 1.007 1 287.649897020788 27.0010417096217 0 0 0 0 +8818 1 1.0622 1 289.53944518042886 33.41162028300485 0 0 0 0 +8821 1 1.0619 1 294.1296970737959 29.77374517985183 0 0 0 0 +8098 1 1.1075 1 328.4957858821146 16.337744758374512 0 0 1 0 +1581 1 2.5068 1 282.1337802623856 16.799581757384022 0 0 0 0 +8897 1 1.0575 1 295.6500168238732 31.268747488667653 0 0 0 0 +8900 1 1.0574 1 282.27326999548586 38.21036320552385 0 0 0 0 +8913 1 1.0569 1 289.9568904049777 55.44623195608798 0 0 0 0 +8959 1 1.0549 1 309.373852921584 45.723159240722765 0 0 0 0 +9179 1 1.043 1 280.8307915955412 44.87262494540029 0 0 0 0 +372 1 5.0959 1 313.17429300505165 11.07437513532213 0 0 1 0 +1148 1 2.959 1 317.1243960013924 12.188656912946456 0 0 1 0 +2234 1 2.1216 1 329.99162139134165 25.13375088945864 0 0 1 0 +3643 1 1.6639 1 328.7048977867808 30.082629711170053 0 -1 0 0 +2423 1 2.0395 1 310.4071275571293 61.36356115635692 0 0 0 0 +2105 1 2.1813 1 288.22358877037664 11.146743565519724 0 0 1 0 +7408 1 1.1605 1 329.75956088878206 26.745285185419952 0 0 0 0 +5801 1 1.3145 1 329.3155002178251 61.73563287491464 0 0 0 0 +877 1 3.4008 1 328.3521596881288 19.692218039778936 0 -1 1 0 +5524 1 1.3484 1 328.0858654619776 62.11663851568218 0 0 0 0 +7480 1 1.1543 1 308.45684674159185 61.55627375671796 0 0 0 0 +5285 1 1.3776 1 295.0180617322777 61.89690638083731 0 0 0 0 +4635 1 1.4764 1 320.9497880168417 63.217092489854544 0 0 0 0 +3399 1 1.7152 1 320.78385657295246 61.65464806866241 0 0 0 0 +9553 1 1.0231 1 319.8615745188195 62.620148050678964 0 0 0 0 +2900 1 1.8632 1 279.02873592030664 19.514403886146226 0 0 0 0 +9754 1 1.0127 1 329.57244377682986 16.114938014551466 0 -1 0 0 +3788 1 1.6324 1 329.34955145574213 17.402489135277467 0 0 0 0 +9679 1 1.0166 1 307.5020335809339 62.12394529859957 0 0 0 0 +3700 1 1.6461 1 329.3193897356715 22.011883775019044 0 0 1 0 +5339 1 1.371 1 330.1368615229891 15.078505767791443 0 0 0 0 +5522 1 1.3485 1 311.38368129843565 62.67605003226627 0 0 0 0 +480 1 4.5092 1 324.0983772453819 62.469661292524606 0 0 0 0 +5165 1 1.3931 1 331.4165317410314 39.74841733194414 0 -1 0 0 +6556 1 1.237 1 326.9266350943568 62.59207403435408 0 0 0 0 +6403 1 1.2515 1 278.81354146224686 35.42151458302361 0 0 0 0 +100 1 9.5786 1 328.0510221190286 10.048763075967209 0 0 1 0 +9344 1 1.0338 1 330.2774411666204 28.004781444964387 0 0 1 0 +3866 1 1.6136 1 331.22846732212327 35.99827359990992 0 0 1 0 +977 1 3.2106 1 331.05806045161796 30.051765427227345 0 0 0 0 +2644 1 1.951 1 330.81740016457854 34.18603888483595 0 0 1 0 +8056 1 1.1111 1 331.7651123940106 45.705185343374396 0 0 0 0 +6671 1 1.2249 1 331.809091240778 52.592495531652496 0 0 0 0 +48 1 13.4603 1 314.53715423820415 74.77580798392266 0 0 0 0 +82 1 10.1256 1 322.422544260024 84.89618606864063 0 0 0 0 +135 1 8.1095 1 330.00555825198984 94.11264710042512 0 0 0 0 +2602 1 1.9663 1 326.4256882997923 97.84174392585244 0 0 0 0 +2774 1 1.9048 1 327.654842892424 66.47413029508861 0 0 0 0 +9864 1 1.0066 1 319.29011882811443 97.99474251173565 0 0 0 0 +349 1 5.3534 1 313.3819610264607 97.10858444179385 0 0 0 0 +388 1 5.007 1 312.3514662589936 83.72008846934608 0 0 0 0 +7311 1 1.1696 1 319.6844376526384 104.88603767367077 0 -1 0 0 +404 1 4.9239 1 324.95176712638386 73.52576619762453 0 0 0 0 +408 1 4.903 1 322.0618845823813 98.74026989532615 0 0 0 0 +421 1 4.8073 1 322.8048548532377 92.22585369614042 0 0 0 0 +461 1 4.622 1 308.3421204809534 115.8806699788747 0 0 0 0 +524 1 4.285 1 316.6996956962116 92.36810942533873 0 0 0 0 +532 1 4.2494 1 317.6586164461903 99.97930715887242 0 0 0 0 +558 1 4.1793 1 311.44230382687414 102.44993887560861 0 0 0 0 +603 1 4.0078 1 317.9090701906187 66.81217529053741 0 0 0 0 +609 1 3.9921 1 326.88605446234635 69.54984638879903 0 0 0 0 +611 1 3.9852 1 317.29012227610895 104.0482230890612 0 0 0 0 +7716 1 1.1353 1 309.00369539799186 66.3176584045867 0 0 0 0 +2098 1 2.1849 1 319.3679946269682 64.11360308907275 0 0 0 0 +8925 1 1.0563 1 325.9660747863733 99.27998968524689 0 0 0 0 +9048 1 1.0501 1 322.88371379464644 75.64916179701505 0 0 0 0 +893 1 3.3679 1 330.16673276195104 86.44753372426024 0 0 0 0 +959 1 3.2367 1 327.925744548274 79.3395341960552 0 0 0 0 +8003 1 1.1143 1 322.5852106832404 105.12113295834072 0 -1 0 0 +9577 1 1.0217 1 310.36611286964165 98.10605791617293 0 0 0 0 +990 1 3.1931 1 303.20855316713494 70.43656585991369 0 0 0 0 +996 1 3.1804 1 310.63702547217633 109.71841218302885 0 0 0 0 +9617 1 1.0198 1 324.25094988285446 105.90175265594148 0 -1 0 0 +1015 1 3.155 1 318.1317103054332 96.36134137787369 0 0 0 0 +1135 1 2.9744 1 316.36432207144014 82.74901113861222 0 0 0 0 +1155 1 2.9488 1 311.8336896101603 88.01718747098629 0 0 0 0 +1172 1 2.9315 1 331.34511437432553 83.53615972643117 0 0 0 0 +4193 1 1.5504 1 305.93087121733953 69.47128125428303 0 0 0 0 +1239 1 2.8622 1 311.8454023057485 105.89730988826922 0 0 0 0 +6064 1 1.2871 1 303.964327561465 73.57519324735104 0 0 0 0 +1321 1 2.7659 1 322.14511904046566 77.44008560993414 0 0 0 0 +1367 1 2.7187 1 314.59209877311827 88.17694323760242 0 0 0 0 +1446 1 2.6269 1 313.41324105844365 109.24889494379248 0 0 0 0 +1450 1 2.6203 1 322.0092505340934 71.1775270035512 0 0 0 0 +1464 1 2.6072 1 319.6714701677682 94.02628576926654 0 0 0 0 +1477 1 2.5971 1 325.0860875474127 79.19623525129282 0 0 0 0 +1522 1 2.5527 1 314.07667964723834 104.41143565619791 0 0 0 0 +1524 1 2.5509 1 323.95711650998743 95.61938282401577 0 0 0 0 +8593 1 1.0756 1 326.3600237279164 67.12770118948752 0 0 0 0 +1603 1 2.4931 1 310.75380792850683 112.49433678976385 0 0 0 0 +6150 1 1.2782 1 325.2461570376814 105.25347574084196 0 -1 0 0 +8685 1 1.0707 1 329.47277836958443 81.8985367155533 0 0 0 0 +6614 1 1.2307 1 331.1902708201506 101.18156490344349 0 -1 0 0 +1772 1 2.3718 1 327.84000777864935 82.02371834002497 0 0 0 0 +1844 1 2.332 1 327.2682843858603 76.27281437131869 0 0 0 0 +1897 1 2.3023 1 309.721909500564 107.25393396382516 0 0 0 0 +9381 1 1.0319 1 307.8262743016457 82.6328683790397 0 0 0 0 +1978 1 2.2549 1 309.4948790904062 87.04688120378705 0 0 0 0 +2030 1 2.2225 1 317.0021328529904 87.85605715811558 0 0 0 0 +2043 1 2.2164 1 308.7808779870455 83.93465287267406 0 0 0 0 +579 1 4.1033 1 306.2291342114692 72.27943065647756 0 0 0 0 +2130 1 2.1644 1 308.67963443500014 111.49324978981956 0 0 0 0 +2144 1 2.158 1 307.2702099688968 79.92035722345754 0 0 0 0 +1019 1 3.1496 1 324.2903728113445 67.10435042266535 0 0 0 0 +94 1 9.6944 1 302.5279903577882 64.14176656361815 0 0 0 0 +2201 1 2.1368 1 327.7963508761868 87.80060082724597 0 0 0 0 +7909 1 1.1203 1 305.18146811404205 75.90255653815086 0 0 0 0 +2261 1 2.1135 1 314.0195179793126 106.77501238558003 0 0 0 0 +2281 1 2.1029 1 321.98728505003817 68.34194814455235 0 0 0 0 +2285 1 2.1012 1 307.12387670821795 76.9600628804852 0 0 0 0 +2315 1 2.0832 1 330.07457129064153 89.0914752283167 0 0 0 0 +2394 1 2.0502 1 319.59630479832623 91.3806412304057 0 0 0 0 +2477 1 2.018 1 325.1901525925991 76.90947946243999 0 0 0 0 +2478 1 2.0175 1 311.16490621206674 92.95849687772551 0 0 0 0 +9351 1 1.0335 1 315.0535091674045 102.92185360862308 0 0 0 0 +2498 1 2.0107 1 328.2567849863664 73.23800840454997 0 0 0 0 +4157 1 1.5566 1 324.3106776277411 70.45365762587883 0 0 0 0 +2627 1 1.9574 1 330.71563421402243 81.22008304057691 0 0 0 0 +2670 1 1.9414 1 322.6982665376701 102.04584815714354 0 0 0 0 +2821 1 1.8887 1 310.2521749550175 81.06855460012288 0 0 0 0 +3059 1 1.8101 1 324.3870715647001 101.33362346163425 0 0 0 0 +9854 1 1.0071 1 309.9257706328776 93.7235777680023 0 0 0 0 +8597 1 1.0753 1 310.8867152167179 86.28511074961422 0 0 0 0 +8547 1 1.0783 1 324.40606690212775 69.17170769496144 0 0 0 0 +9717 1 1.0143 1 328.43609585330785 67.64280953825647 0 0 0 0 +3243 1 1.7546 1 314.67128308273163 86.03414532107047 0 0 0 0 +6567 1 1.2359 1 326.1497396121583 66.02652091162412 0 0 0 0 +3323 1 1.7341 1 314.2571891108436 101.79990469823376 0 0 0 0 +9675 1 1.0169 1 301.3258515245917 69.3825856555525 0 0 0 0 +3429 1 1.709 1 312.8117247601667 112.7669818294301 0 0 0 0 +3477 1 1.6984 1 314.63687252839657 90.31725585741849 0 0 0 0 +3545 1 1.6833 1 326.7813623410067 90.1221100882631 0 0 0 0 +8942 1 1.0555 1 309.0120503177951 79.47554668876798 0 0 0 0 +3586 1 1.6739 1 316.1479086109388 95.16820484163131 0 0 0 0 +3600 1 1.6711 1 309.7518985509768 105.34076337672157 0 0 0 0 +3703 1 1.6458 1 309.6937990225428 88.97562665215754 0 0 0 0 +3714 1 1.6446 1 319.88101064521965 103.14553937500534 0 0 0 0 +3717 1 1.6443 1 312.444879341195 111.16748093357205 0 0 0 0 +6610 1 1.231 1 316.30994591234077 106.38322254395679 0 -1 0 0 +3182 1 1.7702 1 331.3633103604593 99.7252460686482 0 -1 0 0 +3902 1 1.6068 1 328.31414173592634 89.57905367010103 0 0 0 0 +3930 1 1.6018 1 314.79330172516313 100.24832785352012 0 0 0 0 +3969 1 1.592 1 321.9096263091318 74.1744806464006 0 0 0 0 +4124 1 1.5628 1 328.1442318497353 85.22210964170424 0 0 0 0 +7186 1 1.1794 1 328.7653397804803 64.13576855248913 0 0 0 0 +4145 1 1.5594 1 328.9554268160226 77.18256356730305 0 0 0 0 +4169 1 1.5554 1 329.28494781061795 84.21716543777228 0 0 0 0 +555 1 4.1894 1 328.47058158307635 100.0512922856969 0 -1 0 0 +4293 1 1.5341 1 313.1839364696771 89.75560674608553 0 0 0 0 +4325 1 1.5276 1 311.2146765167826 99.66436224630193 0 0 0 0 +4347 1 1.5234 1 312.38335425444035 91.73993869995275 0 0 0 0 +4405 1 1.5143 1 304.7924051375298 74.67609685621026 0 0 0 0 +6786 1 1.2142 1 325.1467021454795 106.48542450628611 0 -1 0 0 +6913 1 1.201 1 323.3423512700068 65.1810416585006 0 0 0 0 +4517 1 1.4944 1 325.79550189731674 96.28035101126163 0 0 0 0 +4520 1 1.4943 1 314.4237572355048 115.20294145392555 0 0 0 0 +4546 1 1.4902 1 323.19815320624053 69.53548583957172 0 0 0 0 +4562 1 1.4871 1 330.2076584491563 79.61841378129422 0 0 0 0 +4611 1 1.479 1 325.0860764245119 90.03252569607824 0 0 0 0 +9164 1 1.0439 1 306.3774042517722 78.52087278574488 0 0 0 0 +9395 1 1.031 1 322.25274604634365 95.09095738954409 0 0 0 0 +7742 1 1.1333 1 314.707131260053 65.05531725208161 0 0 0 0 +9615 1 1.0198 1 311.9493617657225 108.03908500546602 0 0 0 0 +6281 1 1.262 1 327.1432365768789 102.37833497333916 0 -1 0 0 +4824 1 1.4457 1 325.78540320260936 91.29808202574462 0 0 0 0 +4862 1 1.4396 1 325.25721564678395 94.1283433823963 0 0 0 0 +4930 1 1.4286 1 318.43125982153475 88.92435152599414 0 0 0 0 +4935 1 1.4278 1 317.31704084865635 89.64896946697709 0 0 0 0 +4963 1 1.4246 1 316.6935748761449 84.93643595685069 0 0 0 0 +4966 1 1.4241 1 319.28528608236326 69.12726928700795 0 0 0 0 +4455 1 1.5052 1 321.8657858193916 64.35450711952628 0 0 0 0 +8559 1 1.0775 1 321.5451285900659 72.92681947047232 0 0 0 0 +5053 1 1.4126 1 313.7880289163166 91.5456646642697 0 0 0 0 +5159 1 1.3939 1 320.5133912299991 67.45055741277443 0 0 0 0 +5160 1 1.3937 1 307.78755865679534 112.98175575753632 0 0 0 0 +5174 1 1.3919 1 324.8497091187347 97.35278110503874 0 0 0 0 +5181 1 1.3912 1 322.12474970463666 66.67961850098706 0 0 0 0 +5187 1 1.3902 1 311.014766894151 91.27506639902873 0 0 0 0 +5256 1 1.3813 1 309.78204055689105 90.69208943176983 0 0 0 0 +5265 1 1.3805 1 315.36069043591857 84.65452575343718 0 0 0 0 +5299 1 1.3759 1 315.9740678250788 89.63929180684154 0 0 0 0 +5367 1 1.3678 1 310.85789770797817 89.90709519351705 0 0 0 0 +5410 1 1.362 1 310.8180469270229 114.35647148297849 0 0 0 0 +5632 1 1.3336 1 331.59822679620345 112.45002011926428 0 -1 0 0 +5442 1 1.3574 1 315.73260066939235 101.94847527594023 0 0 0 0 +5447 1 1.3568 1 310.26996109758505 95.8860784757563 0 0 0 0 +5473 1 1.3535 1 320.3686024335222 96.11383594419135 0 0 0 0 +6666 1 1.2253 1 315.41568525979886 67.53284136429087 0 0 0 0 +5482 1 1.3526 1 321.2705582847343 102.72284641778937 0 0 0 0 +2087 1 2.1889 1 312.1139231840369 64.22768896520898 0 0 0 0 +5596 1 1.3377 1 329.8339796054404 78.27123626716472 0 0 0 0 +5598 1 1.3376 1 319.471416140916 89.76050747175701 0 0 0 0 +5603 1 1.3365 1 313.3540312906123 93.79783895814776 0 0 0 0 +5616 1 1.3354 1 320.02485255386836 79.71208733056554 0 0 0 0 +9794 1 1.0101 1 304.74382350022586 69.0071941031304 0 0 0 0 +5633 1 1.3335 1 327.9741791824005 83.80865019417337 0 0 0 0 +5678 1 1.3292 1 308.7762071496777 80.63756465817121 0 0 0 0 +5765 1 1.318 1 311.1528039524309 94.64980136616497 0 0 0 0 +5784 1 1.3157 1 320.7741618777449 101.52435953526992 0 0 0 0 +1013 1 3.1579 1 308.279098264859 69.39410361507046 0 0 0 0 +1557 1 2.5282 1 326.9772360201465 64.40524421573319 0 0 0 0 +5901 1 1.3046 1 325.6897084767032 92.63874445015102 0 0 0 0 +5911 1 1.3039 1 321.59743270385167 79.33357000996237 0 0 0 0 +9108 1 1.0468 1 312.39602757059396 100.08563878377899 0 0 0 0 +6052 1 1.2886 1 329.0062247930928 75.7914091204035 0 0 0 0 +8485 1 1.0818 1 322.51595415734846 103.5348621611621 0 0 0 0 +6162 1 1.2761 1 313.41569759899306 100.57256305350033 0 0 0 0 +6199 1 1.2717 1 311.2225560410312 115.96582470143538 0 0 0 0 +53 1 12.7957 1 320.63600489647894 111.77456599614234 0 -1 0 0 +6397 1 1.252 1 328.35527227669235 71.65667253954285 0 0 0 0 +6419 1 1.25 1 315.3200641701153 105.75844493415946 0 0 0 0 +6489 1 1.2444 1 312.014774301767 90.43168849023535 0 0 0 0 +6542 1 1.2382 1 321.7863167625518 75.53249628581717 0 0 0 0 +5786 1 1.3157 1 315.9233941823378 65.15616006587683 0 0 0 0 +9345 1 1.0338 1 314.64359937923814 81.92410651729963 0 0 0 0 +6645 1 1.2276 1 309.7195009033543 85.35041784946573 0 0 0 0 +6660 1 1.2263 1 314.0349905906841 92.79634275058012 0 0 0 0 +6673 1 1.2248 1 307.5212599656988 81.55345108823809 0 0 0 0 +6717 1 1.2207 1 309.58935967594016 82.4529105133223 0 0 0 0 +6730 1 1.2196 1 313.7157211566153 111.65663694752861 0 0 0 0 +6787 1 1.2142 1 326.42560910822897 77.81562589059713 0 0 0 0 +6966 1 1.197 1 309.9043468891328 91.97146860607505 0 0 0 0 +7013 1 1.1928 1 314.57746962771114 94.07393935176266 0 0 0 0 +7043 1 1.1901 1 308.6220051461907 81.86442952568704 0 0 0 0 +7393 1 1.1618 1 328.5743891615667 65.27840339955677 0 0 0 0 +7111 1 1.1849 1 323.74323052603825 76.31665804491747 0 0 0 0 +9544 1 1.0236 1 309.58364717097265 104.09069434688215 0 0 0 0 +7303 1 1.1702 1 313.94253497944874 113.62563050489325 0 0 0 0 +4645 1 1.4739 1 315.1728997044738 66.2472064512267 0 0 0 0 +1676 1 2.4408 1 312.59118225425414 114.77686446559997 0 -1 0 0 +7348 1 1.1662 1 319.5961863605797 101.80462178991839 0 0 0 0 +7353 1 1.1654 1 326.2412102637851 80.74654935818347 0 0 0 0 +7738 1 1.1335 1 315.27256666019343 116.12617023712694 0 0 0 0 +7389 1 1.1623 1 310.052588506932 100.21336281085384 0 0 0 0 +3695 1 1.6491 1 308.1404602237585 78.44789345018377 0 0 0 0 +9316 1 1.0353 1 317.9733389516235 81.246466827991 0 0 0 0 +7426 1 1.1593 1 320.43830329962 68.69382865726817 0 0 0 0 +7489 1 1.1531 1 321.1690084818126 95.15401088173846 0 0 0 0 +7503 1 1.1521 1 313.3475214143449 86.63412528747239 0 0 0 0 +7509 1 1.1518 1 312.2094561345908 94.10342184273105 0 0 0 0 +7646 1 1.1405 1 305.59251956522775 76.92355491649988 0 0 0 0 +3202 1 1.766 1 313.95544129089575 67.22794159442279 0 0 0 0 +8810 1 1.0627 1 310.0198134829604 94.73237415442486 0 0 0 0 +7737 1 1.1336 1 309.0455824474504 113.09597595663519 0 0 0 0 +724 1 3.7442 1 309.18166616051246 63.92242377637153 0 0 0 0 +3156 1 1.7777 1 306.9357002029111 75.0800414078643 0 0 0 0 +7867 1 1.1234 1 326.4894329601407 88.76281353436059 0 0 0 0 +7868 1 1.1234 1 308.5439333530073 109.88041875836828 0 0 0 0 +86 1 10.0392 1 330.6901587854345 106.7602580385475 0 -1 0 0 +8219 1 1.1003 1 313.66724804776 64.70488611446324 0 0 0 0 +7925 1 1.1194 1 317.03417657058566 86.21606313022552 0 0 0 0 +7939 1 1.1187 1 320.6472971731528 78.65992849282415 0 0 0 0 +8010 1 1.1141 1 315.50218953400326 107.17760054574389 0 0 0 0 +8023 1 1.1132 1 308.82712627631304 108.68419720273101 0 0 0 0 +8052 1 1.1112 1 320.29838128424393 70.35703849632243 0 0 0 0 +8064 1 1.11 1 320.6457221137975 90.21293137845036 0 0 0 0 +8088 1 1.1082 1 314.8274162649113 108.08834909347335 0 0 0 0 +8132 1 1.1055 1 310.16029832047303 97.08851013946601 0 0 0 0 +8198 1 1.1017 1 323.9653266733818 77.80664920996743 0 0 0 0 +8201 1 1.1014 1 324.92971483497297 99.57061197554762 0 0 0 0 +8209 1 1.1009 1 328.84644428633277 74.6406229180622 0 0 0 0 +8232 1 1.0996 1 316.02082132140924 85.98762236031017 0 0 0 0 +9530 1 1.0242 1 325.09969621348444 98.52840227574244 0 0 0 0 +8353 1 1.0904 1 303.36868047171833 72.55973364695843 0 0 0 0 +8370 1 1.089 1 329.3076740781283 82.93150947216704 0 0 0 0 +3474 1 1.6992 1 327.7390209644041 111.65727795925214 0 0 0 0 +8409 1 1.0871 1 310.0915647613784 99.09505947588202 0 0 0 0 +8422 1 1.0862 1 321.0670274308275 69.60753704437077 0 0 0 0 +9912 1 1.0045 1 327.7369172164369 74.65785682575049 0 0 0 0 +3470 1 1.6995 1 326.0974194245921 116.51938225055841 0 0 0 0 +757 1 3.6663 1 311.30721944121444 66.93687815001208 0 0 0 0 +7652 1 1.1401 1 306.3579248026212 68.02564314527734 0 0 0 0 +2296 1 2.0947 1 321.20797874138236 104.40107792995859 0 -1 0 0 +4834 1 1.4446 1 325.7464560564264 100.52343560328839 0 -1 0 0 +380 1 5.0732 1 329.0551035059343 114.61315743434481 0 -1 0 0 +9382 1 1.0317 1 323.607594675907 105.16719219560116 0 -1 0 0 +7285 1 1.1722 1 309.03187481637707 67.44743024846245 0 0 0 0 +9513 1 1.0252 1 322.31051018016433 65.51574968124608 0 0 0 0 +1454 1 2.6162 1 324.3506612920331 103.54250142609777 0 -1 0 0 +8399 1 1.0876 1 330.61387100258804 98.58892523802277 0 -1 0 0 +5589 1 1.3387 1 326.24858911961866 103.26078830024211 0 -1 0 0 +2078 1 2.1951 1 320.7241645888194 65.70979762476799 0 0 0 0 +7420 1 1.1596 1 313.453786225696 65.81798364187563 0 0 0 0 +2429 1 2.0361 1 307.5699058820734 66.93758513459741 0 0 0 0 +5101 1 1.4042 1 325.8766188209691 101.94131923385001 0 -1 0 0 +36 1 16.1974 1 294.0839192283463 157.22956143648742 0 0 0 0 +1055 1 3.0848 1 306.2388125640424 170.60112890988262 0 0 0 0 +92 1 9.7457 1 308.6581682194573 159.02698931888136 0 0 0 0 +2494 1 2.0127 1 315.31245227111447 117.61501253251562 0 -1 0 0 +117 1 9.1039 1 303.2534398779366 134.38080304926166 0 0 0 0 +132 1 8.3304 1 318.6741261705904 140.7009413966693 0 0 0 0 +140 1 7.8936 1 285.3584389408001 147.21138627034625 0 0 0 0 +145 1 7.8085 1 282.5452422432193 154.4471203182467 0 0 0 0 +2164 1 2.1503 1 300.664974559493 129.48312761850167 0 0 0 0 +182 1 7.1712 1 316.2413883632398 149.38286788203996 0 0 0 0 +217 1 6.5363 1 320.05684756856954 133.4858698272428 0 0 0 0 +243 1 6.2684 1 322.47283828083124 151.64061319535762 0 0 0 0 +283 1 5.8721 1 290.1153523414067 140.61550469795145 0 0 0 0 +285 1 5.8646 1 321.97231777632834 162.10702932176298 0 0 0 0 +289 1 5.8251 1 310.16780917081513 131.71312428673366 0 0 0 0 +320 1 5.5347 1 296.3630315136306 169.53668372568137 0 0 0 0 +8833 1 1.0613 1 302.8110729474035 123.34482956424603 0 0 0 0 +370 1 5.1401 1 301.6650567043995 146.10623408994357 0 0 0 0 +1577 1 2.5111 1 280.30703612742343 159.12124716148503 0 0 0 0 +5427 1 1.3595 1 313.1411940002233 124.43488051881508 0 0 0 0 +424 1 4.7977 1 294.28030980395573 137.3994521698671 0 0 0 0 +431 1 4.7556 1 304.90827514753346 149.70473713150662 0 0 0 0 +436 1 4.6998 1 309.0625329749258 138.03296769177845 0 0 0 0 +450 1 4.653 1 301.380039155012 169.8889442844284 0 0 0 0 +458 1 4.63 1 323.1400549005019 157.01641556931594 0 0 0 0 +463 1 4.6085 1 316.9508087067935 161.73208887860227 0 0 0 0 +465 1 4.5941 1 319.67468018102653 167.65989724749363 0 0 0 0 +8423 1 1.0862 1 313.470068561629 132.54693592792037 0 0 0 0 +482 1 4.5035 1 310.27538872024684 146.07891957486248 0 0 0 0 +497 1 4.377 1 325.12919597257513 128.39929460016435 0 0 0 0 +510 1 4.3236 1 296.7477153158156 141.06107039024226 0 0 0 0 +3795 1 1.6308 1 317.37511512376597 130.56393463347405 0 0 0 0 +593 1 4.0396 1 312.6596508755466 140.21445247801645 0 0 0 0 +615 1 3.9789 1 304.39548647483423 141.99058791905884 0 0 0 0 +743 1 3.6943 1 315.0452626951925 157.2112511117692 0 0 0 0 +7325 1 1.1684 1 318.01040175305207 129.32939179070354 0 0 0 0 +805 1 3.5783 1 311.0061443722092 149.97432999459895 0 0 0 0 +147 1 7.7409 1 281.81706467176036 166.34623932250122 0 0 0 0 +872 1 3.418 1 301.456747195971 163.52161661815168 0 0 0 0 +916 1 3.3273 1 313.3031280232917 164.57816374358512 0 0 0 0 +929 1 3.2964 1 329.9407829017453 131.55396109470405 0 0 0 0 +974 1 3.2142 1 326.2938564765446 162.12316523824435 0 0 0 0 +9591 1 1.0213 1 319.6016544400943 170.60632808759127 0 0 0 0 +1068 1 3.0621 1 321.8983605539927 145.28370574246173 0 0 0 0 +1075 1 3.0534 1 278.9711401903136 144.2072829867268 0 0 0 0 +1079 1 3.0432 1 284.19754219926654 141.88839285602907 0 0 0 0 +1097 1 3.0228 1 305.9334872824869 153.37909015439166 0 0 0 0 +2626 1 1.9574 1 322.4621621804332 169.0939421357104 0 0 0 0 +1126 1 2.9821 1 306.70167517352513 164.98914612058155 0 0 0 0 +1133 1 2.9757 1 290.7799762378969 168.0399892313336 0 0 0 0 +1173 1 2.9314 1 319.0235470754085 154.92096582433464 0 0 0 0 +1178 1 2.9289 1 313.3544517216317 136.86494718941 0 0 0 0 +4678 1 1.4678 1 280.90055326524333 145.92672102290987 0 0 0 0 +1193 1 2.9147 1 290.70564082949574 147.2304682227481 0 0 0 0 +1215 1 2.8938 1 309.2573536920367 166.24565914942184 0 0 0 0 +1244 1 2.8584 1 316.83229470745783 165.38150351911972 0 0 0 0 +1324 1 2.7634 1 300.37633652408675 166.3585386376169 0 0 0 0 +1361 1 2.7278 1 294.90124616382116 143.9963440641001 0 0 0 0 +1370 1 2.7124 1 286.95668065566275 166.57622507082937 0 0 0 0 +1384 1 2.7007 1 320.6086862302887 127.05097862916764 0 0 0 0 +1402 1 2.6809 1 308.5313231802655 141.65077914224398 0 0 0 0 +1433 1 2.6446 1 297.66158733484826 135.99108833091293 0 0 0 0 +1491 1 2.5859 1 302.7471065743714 153.7713002626155 0 0 0 0 +1512 1 2.5629 1 291.4002277442055 144.59280314453287 0 0 0 0 +1535 1 2.5426 1 304.60514114668376 168.4186546114618 0 0 0 0 +6096 1 1.2835 1 327.41420745712406 126.76423027690193 0 -1 0 0 +1569 1 2.5189 1 327.23120071604194 132.44859596027635 0 0 0 0 +1650 1 2.4531 1 315.985909568513 154.31837418475777 0 0 0 0 +1675 1 2.4413 1 327.04196167211273 134.80847925743944 0 0 0 0 +8825 1 1.0617 1 319.5722250620208 123.30407496817345 0 0 0 0 +3220 1 1.7598 1 315.26544695516316 131.74844056963775 0 0 0 0 +1779 1 2.3691 1 303.365702424738 156.12020111834485 0 0 0 0 +1793 1 2.3606 1 293.1166370989381 148.10939977701537 0 0 0 0 +1870 1 2.3199 1 310.74882301564645 152.88719647279456 0 0 0 0 +1908 1 2.2951 1 298.98243960231366 138.0407413306983 0 0 0 0 +3110 1 1.7942 1 318.6635185403319 128.04782119258354 0 0 0 0 +2009 1 2.2343 1 298.5680947622841 148.64918510755547 0 0 0 0 +2058 1 2.2069 1 286.60032305901353 162.60135994031845 0 0 0 0 +2072 1 2.1973 1 324.2760250296984 132.80615762217664 0 0 0 0 +2080 1 2.1929 1 278.37985296558185 151.7892652860679 0 0 0 0 +2101 1 2.1835 1 313.56670113001655 145.58113861210063 0 0 0 0 +2115 1 2.1728 1 301.53925038891896 149.65887323945122 0 0 0 0 +2128 1 2.1659 1 318.46595142700835 126.08713016481566 0 0 0 0 +2138 1 2.1603 1 298.14855504626354 145.368456936941 0 0 0 0 +2152 1 2.1561 1 323.7725318620132 140.9247006047609 0 0 0 0 +2219 1 2.128 1 288.34152293133565 168.46491165449245 0 0 0 0 +2242 1 2.1191 1 295.2774236943327 148.18194554471282 0 0 0 0 +2272 1 2.1054 1 310.71594575169416 142.54760629875304 0 0 0 0 +2276 1 2.1045 1 295.8461263881361 146.19176141399004 0 0 0 0 +2318 1 2.0805 1 325.47959849751584 137.61234241094044 0 0 0 0 +2320 1 2.0801 1 303.4737124539693 161.72070961139957 0 0 0 0 +2345 1 2.0701 1 315.71492770986004 144.90387011310014 0 0 0 0 +2383 1 2.0547 1 302.3588590675546 139.81161812601638 0 0 0 0 +1692 1 2.4289 1 300.9042930884426 127.30058093255684 0 0 0 0 +2397 1 2.0491 1 323.3231709956954 165.80143689176276 0 0 0 0 +2400 1 2.0481 1 294.53697800337073 166.26662285834269 0 0 0 0 +2476 1 2.0181 1 321.6454023369511 147.69533030345195 0 0 0 0 +2483 1 2.0162 1 320.10217895700106 129.2786212988049 0 0 0 0 +2488 1 2.0143 1 304.2364432455853 164.9320774492936 0 0 0 0 +2510 1 2.0067 1 328.7241490491108 127.6953104057858 0 0 0 0 +2511 1 2.0067 1 280.99132399488906 142.80924007377197 0 0 0 0 +2621 1 1.9597 1 320.7767086931494 122.40384720928253 0 -1 0 0 +2523 1 2.0031 1 291.0159278648708 136.88434128511773 0 0 0 0 +2567 1 1.9836 1 299.8447894333777 141.39286945397401 0 0 0 0 +2588 1 1.9756 1 304.9384947776446 144.8693764175957 0 0 0 0 +2616 1 1.9614 1 314.61231804687594 133.46511662867437 0 0 0 0 +8775 1 1.0647 1 324.0186397044419 117.78521940211131 0 0 0 0 +9868 1 1.0063 1 286.94942335959024 169.4845119145176 0 0 0 0 +3822 1 1.6225 1 304.264581199515 127.52435688375779 0 0 0 0 +2664 1 1.9429 1 317.92792678786765 157.3602522102031 0 0 0 0 +2692 1 1.9332 1 294.4548092437045 134.0851116584937 0 0 0 0 +2714 1 1.9253 1 284.85665114548965 161.5079191275418 0 0 0 0 +4131 1 1.562 1 302.8332019831924 126.94260934613973 0 0 0 0 +2756 1 1.9091 1 318.98996490680275 164.50254728674219 0 0 0 0 +2789 1 1.8984 1 299.6922244791369 150.26522663453483 0 0 0 0 +2805 1 1.8918 1 314.0688092890731 160.67894173132441 0 0 0 0 +2812 1 1.8909 1 292.0927682397776 166.00344101053406 0 0 0 0 +2815 1 1.8904 1 323.3863200983 135.95150257515138 0 0 0 0 +1545 1 2.5354 1 313.1144277270019 120.38812511034403 0 0 0 0 +2896 1 1.8636 1 306.56187113119745 143.87099052179744 0 0 0 0 +2920 1 1.8574 1 289.2029263416541 166.20998905246876 0 0 0 0 +967 1 3.2215 1 312.74610875548444 117.55692867656361 0 0 0 0 +2929 1 1.8552 1 297.2944166674433 165.61746046345377 0 0 0 0 +2973 1 1.8406 1 304.64436093195184 129.15323722314048 0 0 0 0 +9115 1 1.0465 1 327.756731955951 158.92993826973563 0 0 0 0 +5588 1 1.3388 1 305.69554131817074 127.21518514366755 0 0 0 0 +2974 1 1.8404 1 293.1181208320873 167.51454256467014 0 0 0 0 +3004 1 1.8288 1 315.430508879527 167.18942137692991 0 0 0 0 +3023 1 1.8198 1 312.15309992556257 134.89063389761262 0 0 0 0 +3049 1 1.8129 1 282.52886613837353 161.7231063443022 0 0 0 0 +3075 1 1.8063 1 283.49392709204216 160.29753969954973 0 0 0 0 +3100 1 1.7968 1 302.57747697633926 165.79757824053814 0 0 0 0 +3118 1 1.7906 1 327.61117356140727 130.38679773090126 0 0 0 0 +3209 1 1.7638 1 314.5290182846239 143.49104435117167 0 0 0 0 +3222 1 1.7597 1 292.77370081680294 169.2136387248478 0 0 0 0 +3278 1 1.7457 1 315.65787726384525 136.75535885899637 0 0 0 0 +3316 1 1.7361 1 293.63515377551386 142.15728799571392 0 0 0 0 +3341 1 1.7309 1 314.9862263142985 135.21288158000024 0 0 0 0 +3344 1 1.7303 1 305.26114975956483 139.3574994261874 0 0 0 0 +3364 1 1.7248 1 328.8496975468648 133.7836157506423 0 0 0 0 +9821 1 1.0088 1 289.31094246997384 149.1878500190117 0 0 0 0 +3398 1 1.7152 1 323.2301103532206 138.78036990728765 0 0 0 0 +3438 1 1.7072 1 292.7491500421408 146.20203873855198 0 0 0 0 +3458 1 1.701 1 308.5390790377466 150.66678706364428 0 0 0 0 +5847 1 1.3101 1 330.7186635328017 129.3926520695697 0 -1 0 0 +9898 1 1.0051 1 282.1787251465718 141.84083253286764 0 0 0 0 +1741 1 2.3907 1 309.7274898803146 126.60006235200825 0 0 0 0 +3515 1 1.691 1 285.89882307767556 140.28111497578954 0 0 0 0 +3528 1 1.6875 1 324.73365579723855 139.29907683017987 0 0 0 0 +3539 1 1.6852 1 285.65670368278114 168.98666144587054 0 0 0 0 +3592 1 1.6729 1 313.711066866136 167.02866273440776 0 0 0 0 +3601 1 1.6706 1 308.5371132194836 134.9888791522826 0 0 0 0 +3641 1 1.664 1 319.94985742956385 146.9848878188218 0 0 0 0 +3654 1 1.6615 1 291.39666767655467 170.2026847770631 0 0 0 0 +3656 1 1.661 1 284.2154310003805 158.787270136839 0 0 0 0 +3672 1 1.6552 1 327.08303128719774 136.74429609116766 0 0 0 0 +3678 1 1.6538 1 324.4506232093673 147.47103034479636 0 0 0 0 +2490 1 2.0135 1 317.1404588009651 124.5484402143197 0 0 0 0 +3683 1 1.6526 1 300.6569618301 139.04219203862198 0 0 0 0 +3689 1 1.6514 1 306.53025055894824 145.60976363266496 0 0 0 0 +3704 1 1.6457 1 299.0166387274168 164.6439201142718 0 0 0 0 +3728 1 1.6431 1 312.6272690073051 154.32081094715863 0 0 0 0 +3743 1 1.6406 1 282.33919889934026 159.09407051385844 0 0 0 0 +3754 1 1.6392 1 326.7797901698848 159.79978943582185 0 0 0 0 +3776 1 1.6346 1 308.1720091339851 148.24425257196597 0 0 0 0 +3781 1 1.6336 1 302.76349366103267 159.05939672329384 0 0 0 0 +3825 1 1.6216 1 327.0458424276729 150.34676201147778 0 0 0 0 +3832 1 1.6205 1 286.95420669405945 164.4649048726832 0 0 0 0 +9110 1 1.0468 1 331.54438276321116 130.15361034724646 0 -1 0 0 +3892 1 1.6098 1 300.3431805728686 143.06794369957575 0 0 0 0 +3122 1 1.7876 1 330.2323539538788 124.97445551952497 0 -1 0 0 +3936 1 1.601 1 301.6017472796507 141.4106991669176 0 0 0 0 +3946 1 1.5983 1 279.090618209782 157.5105427804454 0 0 0 0 +3963 1 1.5935 1 314.2793114911558 153.28589691633147 0 0 0 0 +4062 1 1.5728 1 307.3237012853983 151.63647364256497 0 0 0 0 +9910 1 1.0046 1 280.9540500948173 147.15985913338363 0 0 0 0 +4152 1 1.558 1 325.5261301541932 158.9159656911514 0 0 0 0 +4177 1 1.5534 1 305.0525106943575 166.46742015112906 0 0 0 0 +4182 1 1.5526 1 301.8679702666027 142.87820417423413 0 0 0 0 +4194 1 1.5503 1 319.3602503901995 158.34881264419818 0 0 0 0 +2970 1 1.8422 1 328.9906505429731 135.52649787981582 0 0 0 0 +7882 1 1.1228 1 301.27132730787963 125.6178544152054 0 0 0 0 +2050 1 2.2107 1 298.5789425790305 129.9115914969323 0 0 0 0 +4306 1 1.5315 1 282.17820113958857 143.95710982053512 0 0 0 0 +4365 1 1.5203 1 314.1020088943212 154.80470551034327 0 0 0 0 +4375 1 1.519 1 300.9416159054472 151.34086031467947 0 0 0 0 +8815 1 1.0624 1 311.05769234098665 128.43433889162736 0 0 0 0 +4413 1 1.5129 1 287.51713736009 143.10734977266546 0 0 0 0 +1119 1 2.9885 1 331.10754733824103 134.42431837106506 0 0 0 0 +1290 1 2.8027 1 306.9010134514592 128.84280793686887 0 0 0 0 +4438 1 1.5081 1 286.3174738136199 151.75455647245346 0 0 0 0 +4454 1 1.506 1 310.5683163079745 135.34356618021573 0 0 0 0 +4489 1 1.4996 1 318.8400926305094 152.77171343348184 0 0 0 0 +4528 1 1.4937 1 322.6966522650283 167.417832731026 0 0 0 0 +4530 1 1.4931 1 301.90460033699645 161.12175530096695 0 0 0 0 +4544 1 1.4905 1 324.96001775526986 165.29027845795795 0 0 0 0 +4545 1 1.4903 1 319.2488078199642 145.57525844449313 0 0 0 0 +4555 1 1.4883 1 325.35315169897854 148.7404014440729 0 0 0 0 +4764 1 1.4542 1 318.85620875309877 124.3268393980524 0 0 0 0 +4600 1 1.4802 1 308.44291481028984 152.60285516120058 0 0 0 0 +4616 1 1.4787 1 287.687943142958 151.21796783933982 0 0 0 0 +9831 1 1.0086 1 311.33863359873607 154.41074874608387 0 0 0 0 +4636 1 1.4758 1 297.96175613732777 143.63809593321216 0 0 0 0 +4642 1 1.4749 1 289.12581361825335 164.48947411080553 0 0 0 0 +4643 1 1.4742 1 308.1743850126073 143.6637201822685 0 0 0 0 +4675 1 1.4683 1 316.5424808041322 135.41531936042108 0 0 0 0 +4355 1 1.5222 1 281.08730889386163 160.9610548209854 0 0 0 0 +4693 1 1.4656 1 328.94418842182677 129.47674270444304 0 0 0 0 +4709 1 1.4631 1 306.7066215625395 139.994001945306 0 0 0 0 +4770 1 1.453 1 320.5440150379333 124.06837769146588 0 0 0 0 +4797 1 1.4496 1 317.14049507416297 155.86534139611334 0 0 0 0 +4818 1 1.4461 1 286.2066587574717 142.64675520793136 0 0 0 0 +4830 1 1.4448 1 325.1097569074411 134.7996979783522 0 0 0 0 +4837 1 1.4437 1 308.07603340443745 168.00212640854645 0 0 0 0 +4841 1 1.4429 1 328.2715137672844 160.03010268960415 0 0 0 0 +4866 1 1.4388 1 316.980803143442 158.7578084001 0 0 0 0 +4878 1 1.437 1 297.20416167211084 138.24733370177978 0 0 0 0 +4879 1 1.4369 1 299.33416506814524 139.8190741189345 0 0 0 0 +4882 1 1.4364 1 293.83058115195075 140.58088634477016 0 0 0 0 +4894 1 1.4334 1 317.7944718346236 145.43866873684811 0 0 0 0 +4942 1 1.427 1 298.39109750935995 166.77261103880045 0 0 0 0 +9479 1 1.027 1 299.4057181025864 128.42267019972692 0 0 0 0 +5010 1 1.4195 1 288.7853442126142 150.2737104138121 0 0 0 0 +5023 1 1.4174 1 296.83142545424533 148.92416020411284 0 0 0 0 +5036 1 1.4154 1 295.99743217695885 134.84695610800264 0 0 0 0 +5095 1 1.4049 1 323.9960797816692 146.0166749546927 0 0 0 0 +5111 1 1.4019 1 289.4643171329354 144.50115934221492 0 0 0 0 +1910 1 2.2934 1 307.33285496485905 126.33980944899406 0 0 0 0 +5180 1 1.3913 1 317.5820001878914 153.38447867827472 0 0 0 0 +5231 1 1.385 1 322.55730674730626 127.29795861515872 0 0 0 0 +9902 1 1.0049 1 282.45864101017645 142.7833184278219 0 0 0 0 +5296 1 1.3765 1 311.0824879192513 165.23328227977385 0 0 0 0 +5307 1 1.3747 1 288.0817918328482 163.56499668332188 0 0 0 0 +5312 1 1.3741 1 316.1788734187912 132.97235247122632 0 0 0 0 +5327 1 1.3722 1 323.7162355871237 142.666667837674 0 0 0 0 +9918 1 1.0044 1 321.638992709018 123.51881391803624 0 0 0 0 +5397 1 1.3642 1 314.0353430054194 162.31762927513375 0 0 0 0 +5411 1 1.3619 1 311.1459116495915 163.90043896109037 0 0 0 0 +5425 1 1.3598 1 323.6867665739793 144.02905531585117 0 0 0 0 +5453 1 1.3555 1 313.0486073378296 155.72988732937696 0 0 0 0 +5471 1 1.3535 1 303.80137206417777 163.36667217777438 0 0 0 0 +5494 1 1.3516 1 319.2362204790665 159.8265373597322 0 0 0 0 +5509 1 1.3499 1 307.1949226185141 167.02757110652814 0 0 0 0 +5519 1 1.3489 1 304.8599425804464 146.61273366694485 0 0 0 0 +9807 1 1.0096 1 292.3777179985462 143.10481767195887 0 0 0 0 +5530 1 1.3473 1 306.571151568679 168.4181413331713 0 0 0 0 +5550 1 1.3442 1 306.14531546386957 146.98009010349108 0 0 0 0 +5557 1 1.3437 1 290.4485440921255 149.30417472702533 0 0 0 0 +5560 1 1.3435 1 320.73380813199606 158.7640295548552 0 0 0 0 +2340 1 2.0722 1 321.16155085223744 120.49678477532368 0 -1 0 0 +5641 1 1.333 1 322.8131479134441 137.40587232909525 0 0 0 0 +5654 1 1.3321 1 316.8768155867487 168.5488947329212 0 0 0 0 +4651 1 1.4733 1 329.0949378786467 126.06846575761625 0 -1 0 0 +7706 1 1.1359 1 314.79262940513246 122.94713623590269 0 0 0 0 +9803 1 1.0098 1 322.70381182027654 125.25612945641276 0 0 0 0 +5715 1 1.3246 1 290.3371360302093 165.07095269424883 0 0 0 0 +5721 1 1.3241 1 311.92803896822835 143.79646267748066 0 0 0 0 +5737 1 1.322 1 298.61284889520755 146.96701671284052 0 0 0 0 +5813 1 1.3132 1 325.0161857994569 163.94153343668367 0 0 0 0 +5814 1 1.3128 1 298.96919373307213 142.75361563906938 0 0 0 0 +5859 1 1.3092 1 322.80933328441404 130.19186967932416 0 0 0 0 +5866 1 1.3088 1 321.64481225098865 136.9757239491824 0 0 0 0 +5886 1 1.3061 1 320.26065521534133 156.54626172743355 0 0 0 0 +5982 1 1.2966 1 284.84116300455116 163.05254404161164 0 0 0 0 +6030 1 1.2917 1 309.9322954597824 164.3377882068503 0 0 0 0 +6037 1 1.2909 1 324.715616802064 131.15926562189978 0 0 0 0 +6055 1 1.2883 1 285.62941295018436 164.02969267738422 0 0 0 0 +6091 1 1.2841 1 311.31730848704984 166.52452676147806 0 0 0 0 +9871 1 1.0063 1 309.8722604871598 128.3083775760267 0 0 0 0 +6189 1 1.2731 1 307.4684344417163 146.71853947345056 0 0 0 0 +6242 1 1.266 1 325.7448316047226 133.5791418233365 0 0 0 0 +6260 1 1.2638 1 305.36308930772265 163.43346346340397 0 0 0 0 +6277 1 1.2623 1 301.3887480883276 152.55068401134264 0 0 0 0 +5619 1 1.3348 1 314.4230912156859 119.00702934361496 0 0 0 0 +3496 1 1.6941 1 285.73474044138334 170.61855605512983 0 0 0 0 +3360 1 1.7257 1 308.7278316699152 124.92016356662631 0 0 0 0 +6340 1 1.258 1 312.4983527731241 152.91770596061153 0 0 0 0 +9979 1 1.0013 1 299.032366274487 131.4512380004007 0 0 0 0 +6382 1 1.2532 1 318.2161882106631 159.0914147878256 0 0 0 0 +6399 1 1.2519 1 321.920096159548 124.54047060875969 0 0 0 0 +241 1 6.2782 1 314.67712507301695 127.82906045442661 0 0 0 0 +6407 1 1.251 1 323.81782932316696 134.45481329925138 0 0 0 0 +6408 1 1.251 1 297.1112480530367 134.14347066417804 0 0 0 0 +1002 1 3.1757 1 305.52277297062125 120.53980702722149 0 0 0 0 +6459 1 1.2468 1 307.7146226694766 144.89334363327768 0 0 0 0 +6487 1 1.2446 1 321.7134437511577 165.62581040233547 0 0 0 0 +6492 1 1.2441 1 303.72264356205864 166.74698389316254 0 0 0 0 +6495 1 1.2435 1 323.3183331447515 131.3624172584955 0 0 0 0 +6503 1 1.2428 1 321.7171889097393 128.71994514929136 0 0 0 0 +6532 1 1.2393 1 297.36469614317537 146.84958901013832 0 0 0 0 +6563 1 1.2362 1 321.0370414279782 155.06653233628498 0 0 0 0 +6587 1 1.2334 1 306.8397245038912 130.78033075594251 0 0 0 0 +6602 1 1.2313 1 281.0262941260456 144.6227673576912 0 0 0 0 +6619 1 1.2305 1 327.783895806463 128.9365581703397 0 0 0 0 +6641 1 1.2279 1 325.26700991173243 160.25193073829743 0 0 0 0 +6651 1 1.2267 1 313.1504903455179 143.95176102982552 0 0 0 0 +6695 1 1.2226 1 326.077316250288 151.2634626322992 0 0 0 0 +6697 1 1.2224 1 322.6310652616087 143.3046494329441 0 0 0 0 +6725 1 1.2201 1 313.62986776140593 134.70409284855126 0 0 0 0 +6818 1 1.2105 1 298.1897256780784 133.57845380636238 0 0 0 0 +6833 1 1.2088 1 293.23090171542634 144.90562400250747 0 0 0 0 +9462 1 1.0277 1 299.81089509099456 130.80210797674692 0 0 0 0 +6869 1 1.2048 1 281.78241759948327 150.01574439897647 0 0 0 0 +6879 1 1.2041 1 314.7581467647879 168.45008130872264 0 0 0 0 +6918 1 1.2005 1 323.1044153195609 147.03190911328792 0 0 0 0 +6954 1 1.1981 1 324.8655120972721 136.09394253769545 0 0 0 0 +7024 1 1.1919 1 296.64399125506293 144.78022296561653 0 0 0 0 +9408 1 1.0302 1 310.66723499173173 117.41040215617231 0 0 0 0 +7058 1 1.1892 1 286.2829716171028 160.97440112455396 0 0 0 0 +4695 1 1.4654 1 311.44803851733593 125.8526740674651 0 0 0 0 +7086 1 1.1873 1 309.4466463820362 151.75736552468916 0 0 0 0 +7132 1 1.1835 1 285.58557825029703 158.80684527532162 0 0 0 0 +7147 1 1.1825 1 324.3527529480707 159.57804242180475 0 0 0 0 +7172 1 1.1805 1 303.46356623663803 157.87542805610587 0 0 0 0 +7236 1 1.1752 1 304.06268511246157 152.4994469302628 0 0 0 0 +7240 1 1.1746 1 304.14372820590097 170.7003603911954 0 0 0 0 +7263 1 1.1734 1 286.90842843191655 139.30475673724766 0 0 0 0 +7273 1 1.173 1 309.2099597274054 153.63833704119088 0 0 0 0 +7383 1 1.1628 1 286.7046825350207 141.44984237390238 0 0 0 0 +7384 1 1.1627 1 313.36178885336795 142.6990131618504 0 0 0 0 +7400 1 1.1614 1 312.5372797636983 151.72532981304798 0 0 0 0 +7488 1 1.1533 1 285.9219328029769 159.8985774256016 0 0 0 0 +9994 1 1.0002 1 296.7456908457408 147.7380992196724 0 0 0 0 +7528 1 1.1506 1 309.4040451911379 143.40717606037325 0 0 0 0 +5878 1 1.3076 1 326.1692379426896 130.95021371006763 0 0 0 0 +7539 1 1.1495 1 284.8642290590306 159.9995758995624 0 0 0 0 +7623 1 1.1427 1 280.6494898963119 148.18535695970516 0 0 0 0 +7626 1 1.1427 1 302.12035431586884 167.13818313001778 0 0 0 0 +7647 1 1.1404 1 293.0761432962187 134.75090745037966 0 0 0 0 +7668 1 1.1387 1 312.27068166657483 142.70012452137883 0 0 0 0 +7744 1 1.1332 1 320.23946565192296 148.3528410739994 0 0 0 0 +7752 1 1.132 1 324.57365445115266 154.58801349850611 0 0 0 0 +7802 1 1.1286 1 316.8653189706935 167.34653030663605 0 0 0 0 +7829 1 1.1271 1 315.3972150941146 164.0751498070314 0 0 0 0 +7837 1 1.1266 1 302.3794758883974 151.87657629559084 0 0 0 0 +7847 1 1.1256 1 306.03772329033745 167.31933804877886 0 0 0 0 +7893 1 1.1218 1 320.9928527748408 125.23274630714506 0 0 0 0 +7911 1 1.1201 1 294.34278049439877 146.8569113500401 0 0 0 0 +798 1 3.5963 1 278.7257108877286 161.70185022233392 0 0 0 0 +7987 1 1.1152 1 325.74895340959944 149.96602981051294 0 0 0 0 +8011 1 1.1139 1 322.18001866634455 126.11771226774225 0 0 0 0 +6018 1 1.2926 1 302.21828147554004 124.42875222642914 0 0 0 0 +8094 1 1.1076 1 307.7910341780917 149.52649721430907 0 0 0 0 +6551 1 1.2375 1 302.37460888910425 125.66300513757842 0 0 0 0 +8133 1 1.1055 1 295.23487033891604 132.8019373333613 0 0 0 0 +6548 1 1.2378 1 313.6820727136905 131.42770220691008 0 0 0 0 +8139 1 1.1052 1 299.26688859726625 167.93770067116753 0 0 0 0 +8151 1 1.1047 1 306.26456882278114 138.4400387463554 0 0 0 0 +8171 1 1.1028 1 313.02271296685336 133.694016589018 0 0 0 0 +8215 1 1.1004 1 299.2136136345903 144.10420789411506 0 0 0 0 +8256 1 1.0974 1 280.9241456486191 149.26289474957142 0 0 0 0 +8283 1 1.0962 1 316.3054229233426 134.1781662005854 0 0 0 0 +8322 1 1.0926 1 293.0486551280211 143.8127445283735 0 0 0 0 +8351 1 1.0905 1 279.8450957308318 151.07662520810612 0 0 0 0 +8406 1 1.0872 1 312.8288171898387 162.44321395138667 0 0 0 0 +8612 1 1.0744 1 297.20480304225464 130.7189788479697 0 0 0 0 +7055 1 1.1894 1 321.58564088909725 129.93601837750452 0 0 0 0 +8556 1 1.0777 1 288.5894954912231 143.7184059165454 0 0 0 0 +2148 1 2.1575 1 302.6905158116976 128.7843971920357 0 0 0 0 +8605 1 1.0747 1 286.6675244842669 152.9471643591016 0 0 0 0 +8614 1 1.0744 1 294.0658424324106 145.7363322271371 0 0 0 0 +8620 1 1.0737 1 288.0975975534894 165.13503618267896 0 0 0 0 +9786 1 1.0107 1 306.99189508264413 147.7462239214283 0 0 0 0 +9986 1 1.0008 1 325.570768146641 131.9127690407984 0 0 0 0 +8824 1 1.0618 1 292.11875516218095 135.5078853433898 0 0 0 0 +308 1 5.6892 1 317.37849817952434 120.76878274529803 0 0 0 0 +8830 1 1.0616 1 303.4081762207151 160.19159322163563 0 0 0 0 +7423 1 1.1594 1 313.01739118673976 122.19248166430687 0 0 0 0 +8841 1 1.0607 1 307.5630180021916 169.08342051376079 0 0 0 0 +8872 1 1.0589 1 315.08318707265283 159.59669492601026 0 0 0 0 +8896 1 1.0575 1 304.31023596328356 154.520578599662 0 0 0 0 +8908 1 1.057 1 290.64895271496664 166.1219923859557 0 0 0 0 +8924 1 1.0564 1 289.536781801841 145.68214631520217 0 0 0 0 +8937 1 1.0558 1 313.43556076046707 152.31763520020846 0 0 0 0 +8960 1 1.0548 1 325.9337259652605 136.12054685990182 0 0 0 0 +8965 1 1.0543 1 303.876889764525 139.4864614841226 0 0 0 0 +8970 1 1.0541 1 323.9781294397161 137.28395963918402 0 0 0 0 +8975 1 1.0539 1 285.49356391206857 157.71297194135687 0 0 0 0 +8983 1 1.0535 1 314.548537339164 138.45859861710497 0 0 0 0 +8991 1 1.0531 1 316.6746533360237 131.76471873619414 0 0 0 0 +8995 1 1.053 1 317.46111904993097 136.21610049017488 0 0 0 0 +9030 1 1.0511 1 310.1714208208162 140.75030822428573 0 0 0 0 +9052 1 1.05 1 300.8974252021374 140.32806708907106 0 0 0 0 +9939 1 1.0033 1 308.82679301922445 149.35830585862402 0 0 0 0 +9171 1 1.0434 1 304.678702495967 162.59343901127068 0 0 0 0 +9257 1 1.0391 1 296.7360550910966 143.70337986068316 0 0 0 0 +4511 1 1.4952 1 307.268190465664 124.44421106341083 0 0 0 0 +9341 1 1.0341 1 306.75369328943555 141.22283761926835 0 0 0 0 +9369 1 1.0325 1 314.98756975548235 165.87197342639166 0 0 0 0 +9371 1 1.0323 1 303.0475272095578 167.62526221318993 0 0 0 0 +9445 1 1.0286 1 306.8600995380694 142.45521672571374 0 0 0 0 +4874 1 1.4374 1 323.41390242362945 126.17647446682228 0 -1 0 0 +9478 1 1.027 1 318.786893618629 129.99849820133684 0 0 0 0 +9511 1 1.0253 1 304.84255660290034 155.3317504121512 0 0 0 0 +9527 1 1.0244 1 286.8131740235615 168.40302409384105 0 0 0 0 +9546 1 1.0235 1 323.9390015659335 167.20895241972454 0 0 0 0 +9567 1 1.0221 1 320.40660053977786 157.6575424691093 0 0 0 0 +9574 1 1.0219 1 302.5432709748379 157.5566726169147 0 0 0 0 +679 1 3.827 1 304.70404368835824 124.87237101057605 0 0 0 0 +6085 1 1.2846 1 331.2487679782574 121.52047248850765 0 -1 0 0 +9616 1 1.0198 1 296.04795317223216 166.28424583422046 0 0 0 0 +9624 1 1.0196 1 307.91457051739957 153.71581625512678 0 0 0 0 +9633 1 1.0189 1 312.45606872133374 166.5744452347787 0 0 0 0 +9634 1 1.0189 1 295.84944182081216 133.66062883867914 0 0 0 0 +9653 1 1.0178 1 328.1080907736162 161.18211995215594 0 0 0 0 +9682 1 1.0165 1 314.2649256186622 142.1388536973594 0 0 0 0 +9684 1 1.0163 1 325.8308788808189 157.7188636653338 0 0 0 0 +9776 1 1.0112 1 282.1377873445793 160.37317131495283 0 0 0 0 +9778 1 1.0111 1 314.0030042884589 159.27114972136476 0 0 0 0 +1750 1 2.3849 1 296.9020117697488 132.35828374893745 0 0 0 0 +4483 1 1.5006 1 308.34265059167615 123.40059644267859 0 0 0 0 +1459 1 2.6095 1 279.093836669408 149.52992289387095 0 0 0 0 +9022 1 1.0516 1 308.8360941834968 122.23281634824386 0 0 0 0 +138 1 7.9495 1 329.0284260565835 154.66701116513917 0 -1 0 0 +9339 1 1.0342 1 298.60533381571605 132.37340107948756 0 0 0 0 +8512 1 1.0801 1 329.8417963400492 128.66805205420616 0 0 0 0 +9810 1 1.0095 1 315.90899049477747 123.71546409678723 0 0 0 0 +9029 1 1.0512 1 308.80456595413597 128.62225985435728 0 0 0 0 +7715 1 1.1353 1 314.2048499510718 123.87642065636248 0 0 0 0 +7069 1 1.1884 1 278.5183547620984 158.7414243781393 0 0 0 0 +4982 1 1.4226 1 322.859220060902 118.42438547923193 0 0 0 0 +7295 1 1.1712 1 308.4017345566538 127.6473258022185 0 0 0 0 +485 1 4.4667 1 331.55977296939824 118.59388114186451 0 -1 0 0 +6071 1 1.2864 1 307.9178239492071 121.56702467649627 0 0 0 0 +8391 1 1.0879 1 313.32520212665173 123.23991013878603 0 0 0 0 +9857 1 1.0069 1 315.14483018070246 124.27738738051615 0 0 0 0 +9342 1 1.0341 1 311.1224677638404 127.4345817205969 0 -1 0 0 +6318 1 1.2594 1 314.15881741939086 121.9506511124029 0 0 0 0 +126 1 8.5499 1 326.16294467370915 122.05078815162726 0 -1 0 0 +2838 1 1.8831 1 315.71173293220767 169.59986940682143 0 0 0 0 +2922 1 1.8566 1 317.5369936197358 169.98809549016144 0 0 0 0 +2248 1 2.1182 1 306.7333444145953 122.76360152011468 0 0 0 0 +5336 1 1.3715 1 329.36233318074824 159.24317469790287 0 0 0 0 +715 1 3.7568 1 310.91804924672806 123.36884075515097 0 0 0 0 +7321 1 1.1687 1 319.8543248618358 125.17846748528282 0 -1 0 0 +4596 1 1.4808 1 321.2451964357899 118.7901583119365 0 -1 0 0 +3164 1 1.7761 1 303.80872515039295 122.28272156731667 0 0 0 0 +4126 1 1.5627 1 321.1678687153923 170.36071571983894 0 0 0 0 +9185 1 1.0429 1 307.3322055384595 119.52803827229201 0 0 0 0 +1347 1 2.7389 1 279.1337596263981 146.98229037128914 0 0 0 0 +9432 1 1.0292 1 307.61830245538385 120.48721394541941 0 0 0 0 +4508 1 1.4956 1 328.7149524080833 117.81032678700305 0 -1 0 0 +638 1 3.9176 1 309.98400889553466 119.76735506086841 0 0 0 0 +9443 1 1.0287 1 322.2407295898415 119.43967947361014 0 -1 0 0 +6335 1 1.2584 1 284.51201916643663 169.88390439469632 0 0 0 0 +886 1 3.38 1 331.3828030571045 127.14641981082688 0 -1 0 0 +7900 1 1.1214 1 307.83217074201383 118.63301918163707 0 0 0 0 +4207 1 1.5486 1 306.58885927975314 118.39952905531646 0 0 0 0 +9890 1 1.0055 1 316.8035882215731 117.48824212791486 0 0 0 0 +7343 1 1.1667 1 319.9759919438795 118.65888941713968 0 0 0 0 +9054 1 1.05 1 305.3604462752321 118.48652265829739 0 0 0 0 +3894 1 1.6091 1 292.8648699757512 170.81576277520563 0 0 0 0 +5783 1 1.3157 1 327.37294536619646 117.29847836209998 0 -1 0 0 +3161 1 1.7766 1 283.37277676811345 170.82556026672685 0 0 0 0 +179 1 7.2295 1 311.32496062717155 170.76176669050827 0 0 0 0 +9380 1 1.032 1 324.99413275756814 117.36964066730334 0 0 0 0 +9758 1 1.0124 1 305.9355943383158 117.32234809309193 0 0 0 0 +43 1 15.1326 1 295.5570708265529 221.29905808987294 0 0 0 0 +46 1 13.6753 1 289.49448121359956 207.86713810334686 0 0 0 0 +114 1 9.201 1 279.8487847343086 217.34661734320056 0 0 0 0 +139 1 7.9219 1 311.9460560159606 181.56870817644787 0 0 0 0 +184 1 7.1175 1 304.2803825300567 210.96417370305156 0 0 0 0 +220 1 6.4978 1 298.43490152852814 193.65952337969648 0 0 0 0 +261 1 6.126 1 300.89383623239615 187.26092772080005 0 0 0 0 +6295 1 1.261 1 289.52600280440726 181.2004839699986 0 0 0 0 +321 1 5.5344 1 292.6024390251102 189.191111982969 0 0 0 0 +8587 1 1.0761 1 305.11939249852645 192.14913260980435 0 0 0 0 +8890 1 1.0579 1 307.2189303139828 213.71127150254767 0 0 0 0 +368 1 5.1625 1 308.2175817617801 191.96226436661567 0 0 0 0 +389 1 5.0003 1 293.47521912156634 196.43930911831333 0 0 0 0 +393 1 4.9614 1 305.71927829298875 182.01768840551802 0 0 0 0 +402 1 4.9292 1 301.992182793747 178.96419829814 0 0 0 0 +444 1 4.6675 1 308.9819177240216 197.74608207631874 0 0 0 0 +6863 1 1.2064 1 287.43944417247343 180.91131841731948 0 0 0 0 +536 1 4.2432 1 310.8483011968871 219.69848375564814 0 0 0 0 +423 1 4.7986 1 288.6574184091425 171.83213504730222 0 0 0 0 +584 1 4.0796 1 312.0684984917151 189.5750558322398 0 0 0 0 +588 1 4.0645 1 307.61422697250174 202.31595351837277 0 0 0 0 +5260 1 1.3807 1 307.38032741474615 172.43986734397095 0 0 0 0 +678 1 3.8278 1 304.40192521236804 218.28972847798056 0 0 0 0 +697 1 3.7924 1 307.1139011912172 220.7952459088876 0 0 0 0 +756 1 3.672 1 305.3996790933125 188.73315905470662 0 0 0 0 +809 1 3.5695 1 310.76064501362185 209.28286420662297 0 0 0 0 +840 1 3.4825 1 299.3705856573824 198.49024484165267 0 0 0 0 +3013 1 1.8233 1 278.60685771973095 208.82800136248244 0 0 0 0 +2519 1 2.0045 1 289.66325947543976 185.5991433167613 0 0 0 0 +868 1 3.4296 1 295.8438500539364 202.20907574595554 0 0 0 0 +879 1 3.3985 1 300.2309201092877 201.76972037135653 0 0 0 0 +889 1 3.3773 1 282.4793907631515 174.09764717018268 0 0 0 0 +942 1 3.2583 1 311.16131214484255 202.46115775002326 0 0 0 0 +948 1 3.2519 1 287.05743258612887 217.42130450874205 0 0 0 0 +981 1 3.2079 1 306.492731241333 215.62281051113777 0 0 0 0 +989 1 3.1957 1 303.1296461714908 203.16899249314682 0 0 0 0 +8568 1 1.0769 1 296.4379315874059 196.85869442571504 0 0 0 0 +1084 1 3.0385 1 307.3722237805157 176.28735675179965 0 0 0 0 +1127 1 2.9799 1 306.744028868542 206.37036282245592 0 0 0 0 +1156 1 2.9487 1 304.7029758793779 200.6245220550425 0 0 0 0 +1159 1 2.9447 1 296.2960697161951 199.06646400565296 0 0 0 0 +1197 1 2.9068 1 305.4199383966975 196.61384797252782 0 0 0 0 +1219 1 2.8909 1 284.6074734361092 222.65674619642738 0 0 0 0 +9969 1 1.0022 1 294.47570111846125 186.24757386809432 0 0 0 0 +1268 1 2.8297 1 303.35764473232047 191.37782376383203 0 0 0 0 +1271 1 2.8239 1 287.28089262272175 200.0409385299407 0 0 0 0 +1319 1 2.7698 1 297.45177896208656 212.63265473543206 0 0 0 0 +1332 1 2.7554 1 282.7053510503342 212.24862013511654 0 0 0 0 +1735 1 2.4028 1 289.5692212679076 179.39725642510743 0 0 0 0 +1432 1 2.6447 1 281.9711917638182 205.0253557457485 0 0 0 0 +1436 1 2.6396 1 299.2844768706731 204.54508255727325 0 0 0 0 +1443 1 2.6302 1 300.90777357873617 214.3489867191566 0 0 0 0 +1461 1 2.6081 1 302.71408070769564 205.9892912346003 0 0 0 0 +9376 1 1.0321 1 306.1955772907682 199.3363918393381 0 0 0 0 +1532 1 2.5452 1 300.3581942837751 182.47366211483026 0 0 0 0 +1541 1 2.5363 1 285.02610270544966 219.7808660498259 0 0 0 0 +1568 1 2.5199 1 297.3083471587492 206.04858569055432 0 0 0 0 +1651 1 2.4528 1 298.7107462713441 210.4115806025956 0 0 0 0 +1678 1 2.4405 1 287.0900580443034 223.44323383467318 0 0 0 0 +8933 1 1.056 1 278.53128380350495 222.31304026670702 0 0 0 0 +1696 1 2.4273 1 313.02762106113784 192.65359869650678 0 0 0 0 +1700 1 2.4251 1 289.4776553451862 198.71249619313008 0 0 0 0 +1713 1 2.4142 1 307.85219799366814 187.01527962212046 0 0 0 0 +1740 1 2.3915 1 297.1590858832271 185.45193299641164 0 0 0 0 +2908 1 1.8615 1 320.3756495955615 171.88076100778775 0 0 0 0 +387 1 5.0123 1 292.58195589899805 183.9120682064243 0 0 0 0 +8702 1 1.0697 1 314.49269457044846 189.83146690306404 0 0 0 0 +1903 1 2.2997 1 308.8512873643884 211.363099665998 0 0 0 0 +3191 1 1.7682 1 278.2965661642874 172.86209303833758 0 0 0 0 +1946 1 2.271 1 309.7041258915813 175.16306254569662 0 0 0 0 +1562 1 2.5238 1 299.03827961499553 172.49639781774584 0 0 0 0 +1975 1 2.2556 1 302.4850112522012 183.47505038234175 0 0 0 0 +9510 1 1.0254 1 297.3260535299832 204.27600255329895 0 0 0 0 +1986 1 2.2495 1 296.3957117881452 189.83744022255885 0 0 0 0 +2004 1 2.2383 1 290.9558600390572 193.97160297229934 0 0 0 0 +5677 1 1.3293 1 292.6406590354253 172.22532945970212 0 0 0 0 +8884 1 1.0582 1 299.6170260877786 211.81450693099745 0 0 0 0 +6166 1 1.2758 1 314.70566939767076 173.3144277417946 0 0 0 0 +2093 1 2.1862 1 312.166288290051 198.6612924987006 0 0 0 0 +2133 1 2.1632 1 305.11801859372673 177.35901589170598 0 0 0 0 +2134 1 2.1624 1 301.97870494553337 197.49692683174885 0 0 0 0 +2137 1 2.1612 1 312.38385128203544 196.52313481995228 0 0 0 0 +9991 1 1.0004 1 305.1045034434826 202.52012261512192 0 0 0 0 +9943 1 1.0032 1 306.3059243687027 198.33195128603455 0 0 0 0 +9196 1 1.0422 1 314.0201171154597 191.2316177258949 0 0 0 0 +2249 1 2.118 1 310.1188230563017 213.65110411870552 0 0 0 0 +2284 1 2.1015 1 287.21614675165085 219.9767144001568 0 0 0 0 +9785 1 1.0108 1 297.857198437923 203.40743333430427 0 0 0 0 +2317 1 2.0811 1 296.93690083869143 187.65029483546573 0 0 0 0 +2327 1 2.0766 1 284.4545768338921 213.87937860588508 0 0 0 0 +566 1 4.1442 1 304.02422820298403 173.3479898348188 0 0 0 0 +2382 1 2.0551 1 279.9120360496289 207.47670030443572 0 0 0 0 +2441 1 2.0306 1 310.4082771332346 205.17927860028135 0 0 0 0 +540 1 4.236 1 313.71051620451755 175.85450064896517 0 0 0 0 +2543 1 1.9911 1 311.2829063624509 224.0792550278829 0 0 0 0 +2547 1 1.9905 1 294.125847376422 200.1197232436356 0 0 0 0 +2571 1 1.9818 1 315.3119321586493 185.12428300820605 0 0 0 0 +2576 1 1.9796 1 308.00686695780627 173.925283842258 0 0 0 0 +2603 1 1.9662 1 304.18437100200055 194.22673906571384 0 0 0 0 +2611 1 1.9625 1 299.62420716083886 206.81252824998313 0 0 0 0 +8123 1 1.1061 1 286.1780260848767 173.3653909060647 0 0 0 0 +2672 1 1.9413 1 304.745098674805 205.07192921767557 0 0 0 0 +2676 1 1.9399 1 304.0403133835095 222.292236329979 0 0 0 0 +2686 1 1.935 1 289.2224004248841 195.0355247114281 0 0 0 0 +6381 1 1.2535 1 283.50390688264025 176.12360898832495 0 0 0 0 +9105 1 1.0469 1 280.54017131224487 206.11221617688224 0 0 0 0 +2701 1 1.9291 1 312.27355026927484 186.59349817905428 0 0 0 0 +8837 1 1.0611 1 295.5445965075151 185.97904975423117 0 0 0 0 +6418 1 1.25 1 291.60556509018664 171.60297575016116 0 0 0 0 +2780 1 1.9014 1 281.85556077535426 209.19947970268214 0 0 0 0 +2784 1 1.9006 1 298.22293079010234 181.9727840274896 0 0 0 0 +8744 1 1.0673 1 282.6571774547445 210.3940726974449 0 0 0 0 +2809 1 1.891 1 303.6966348044373 198.4068351954779 0 0 0 0 +8831 1 1.0615 1 299.6271123693998 174.18409611659354 0 0 0 0 +8093 1 1.1077 1 287.9367301334256 174.62251199891338 0 0 0 0 +2874 1 1.8699 1 306.9331020054395 185.13715835776438 0 0 0 0 +2880 1 1.868 1 297.9415474478789 200.70791870292985 0 0 0 0 +476 1 4.5234 1 317.95541546328053 175.01081666682524 0 0 0 0 +2912 1 1.8602 1 316.7234492023171 181.3063581635552 0 0 0 0 +2956 1 1.8457 1 308.52108801220925 207.8553533449818 0 0 0 0 +2983 1 1.8372 1 304.67550609814583 186.1442822824531 0 0 0 0 +3002 1 1.8295 1 311.55031487019704 206.71623603320813 0 0 0 0 +6400 1 1.2518 1 283.56622431151635 220.93013405623722 0 0 0 0 +9736 1 1.0133 1 279.8122720646828 205.4224790928987 0 0 0 0 +3027 1 1.8191 1 284.9517971360245 176.4906020664666 0 0 0 0 +3067 1 1.8081 1 303.2698584848859 195.86502978609857 0 0 0 0 +4634 1 1.4766 1 280.00323433466417 173.640222081459 0 0 0 0 +3113 1 1.7928 1 309.3357659712246 185.60995929266178 0 0 0 0 +3682 1 1.6527 1 318.6006784238147 171.56365149848241 0 0 0 0 +1089 1 3.0326 1 287.5007095973638 176.57466953453837 0 0 0 0 +3142 1 1.781 1 300.7462741198251 208.29184867397228 0 0 0 0 +3150 1 1.7787 1 296.68564388061134 210.46319964099592 0 0 0 0 +3166 1 1.7754 1 301.72110071496076 199.42572782552867 0 0 0 0 +4387 1 1.5169 1 289.5376895457304 177.47020127487434 0 0 0 0 +3241 1 1.7549 1 303.66827883264506 176.17313983633113 0 0 0 0 +3248 1 1.7532 1 305.9942157317458 194.47453626110791 0 0 0 0 +3299 1 1.7401 1 280.376513417345 210.98590072550488 0 0 0 0 +3312 1 1.7374 1 310.5451797424192 216.02500786724056 0 0 0 0 +3361 1 1.7252 1 288.73533519656513 196.78291304052985 0 0 0 0 +3367 1 1.7246 1 308.39150316860156 178.37253341837763 0 0 0 0 +3376 1 1.7223 1 288.1190761053474 215.29645621246956 0 0 0 0 +5579 1 1.3405 1 293.8736387473392 171.78578591152822 0 0 0 0 +3419 1 1.7113 1 311.8350428603194 194.3135090617744 0 0 0 0 +3459 1 1.7008 1 311.6387429486011 214.75886330166333 0 0 0 0 +3461 1 1.7007 1 313.90412924311164 187.37158002977694 0 0 0 0 +3506 1 1.6928 1 298.85166292237176 183.9469817046127 0 0 0 0 +3517 1 1.6909 1 302.4109924125881 194.37107220741723 0 0 0 0 +3589 1 1.6735 1 295.25310143138813 212.91987805599447 0 0 0 0 +3644 1 1.6638 1 289.74801761997026 192.54687893153067 0 0 0 0 +3651 1 1.662 1 311.57685528807326 211.74546806242265 0 0 0 0 +3663 1 1.6572 1 305.67636998175004 223.02773216713726 0 0 0 0 +3720 1 1.644 1 308.3620887192599 213.1895433328933 0 0 0 0 +3722 1 1.6439 1 309.88669268632384 206.88360224851596 0 0 0 0 +3742 1 1.6408 1 308.26644981068716 209.50927114479506 0 0 0 0 +3769 1 1.6362 1 292.41445815351375 192.7583998453258 0 0 0 0 +3784 1 1.6332 1 309.68454991669296 223.3884230128851 0 0 0 0 +3791 1 1.6318 1 306.60543129966464 178.74611379914663 0 0 0 0 +3821 1 1.6225 1 296.9853265088542 208.05632567382784 0 0 0 0 +3856 1 1.6164 1 290.979053586616 200.16802602997615 0 0 0 0 +3877 1 1.6124 1 302.5041576203005 200.88276197522273 0 0 0 0 +3900 1 1.6076 1 304.14982392128064 215.27873025731594 0 0 0 0 +3922 1 1.6029 1 295.1235157152197 191.54965180853884 0 0 0 0 +5142 1 1.3976 1 290.3134795061357 174.37967737958581 0 0 0 0 +3972 1 1.5912 1 311.840740263701 216.99157400768362 0 0 0 0 +3982 1 1.5898 1 292.4568520723216 199.54514813893007 0 0 0 0 +4095 1 1.5677 1 310.9795963349677 200.08028479211896 0 0 0 0 +4106 1 1.565 1 312.3920446315824 222.13798917908278 0 0 0 0 +4154 1 1.5578 1 304.62266753758655 224.12811223541073 0 0 0 0 +6173 1 1.275 1 286.815717892531 174.34941333356042 0 0 0 0 +4241 1 1.5431 1 299.340602368942 180.7242816748863 0 0 0 0 +8144 1 1.1049 1 282.80156709114146 221.80236899246285 0 0 0 0 +8713 1 1.0692 1 298.0857394890205 202.3928546752224 0 0 0 0 +4310 1 1.5309 1 292.6695508144386 201.03767714397227 0 0 0 0 +2931 1 1.8541 1 289.3620559871488 182.72289206861964 0 0 0 0 +4341 1 1.5241 1 301.2923930433125 190.97656384809747 0 0 0 0 +4404 1 1.5145 1 304.57803929691676 206.73604314774755 0 0 0 0 +4436 1 1.5081 1 316.06730165786746 177.3269233012811 0 0 0 0 +4526 1 1.4938 1 286.0318148539436 214.73718301313122 0 0 0 0 +4566 1 1.4864 1 309.75462740001046 194.84377082855832 0 0 0 0 +4620 1 1.4781 1 313.7818446425145 185.8393526269615 0 0 0 0 +4621 1 1.4781 1 313.16314697392517 194.89977933437967 0 0 0 0 +4640 1 1.4753 1 308.2133366491918 223.1180435930632 0 0 0 0 +9290 1 1.0372 1 295.68215307879825 188.39240495588248 0 0 0 0 +5003 1 1.42 1 289.09703533280754 175.0328069352275 0 0 0 0 +4745 1 1.4573 1 301.70567997082935 195.765023747107 0 0 0 0 +4780 1 1.4514 1 303.2987841760944 223.787314213739 0 0 0 0 +4781 1 1.4513 1 307.69653262846316 217.6100344109581 0 0 0 0 +9334 1 1.0344 1 301.5440834672933 172.69226059795832 0 0 0 0 +4817 1 1.4463 1 293.87692692959416 192.3914907207044 0 0 0 0 +4823 1 1.4458 1 286.1686854997744 221.33081919658403 0 0 0 0 +4844 1 1.4423 1 315.53992172919277 178.64145243799334 0 0 0 0 +4863 1 1.4393 1 301.2960285771281 204.492773409651 0 0 0 0 +4916 1 1.4301 1 295.30880865166944 187.13293438718316 0 0 0 0 +5021 1 1.4174 1 316.33635647407334 182.92847799441031 0 0 0 0 +5030 1 1.4164 1 289.7803946592028 191.05674261822548 0 0 0 0 +5058 1 1.4118 1 287.7579229846562 197.99668564288174 0 0 0 0 +9239 1 1.0401 1 288.5061269990484 180.71660697650273 0 0 0 0 +5092 1 1.405 1 301.55596986401747 174.67574470635242 0 0 0 0 +5119 1 1.4002 1 305.2375616722954 198.6507947161523 0 0 0 0 +5122 1 1.3993 1 307.42064387769784 195.145298728233 0 0 0 0 +3379 1 1.7207 1 297.2361273513356 183.45563606368776 0 0 0 0 +5198 1 1.3886 1 291.2994562086243 198.7003129354237 0 0 0 0 +9406 1 1.0302 1 300.27561157236516 211.02521651567028 0 0 0 0 +8449 1 1.0844 1 311.30080103844347 174.89012351657684 0 0 0 0 +9213 1 1.0412 1 289.4848415390551 187.0306683328626 0 0 0 0 +5310 1 1.3746 1 290.37473756708147 197.08060389633363 0 0 0 0 +6117 1 1.2818 1 281.18704170195514 172.23560334557956 0 0 0 0 +5329 1 1.3721 1 298.16856464767625 189.76684194775035 0 0 0 0 +2719 1 1.9232 1 309.7712704561851 177.20572136450232 0 0 0 0 +5360 1 1.3686 1 287.4366502936034 221.6476516145148 0 0 0 0 +5375 1 1.3672 1 311.74571951422325 213.2371856442647 0 0 0 0 +9579 1 1.0217 1 290.4259872161197 181.86634272037247 0 0 0 0 +5382 1 1.3664 1 310.69111118406227 187.26635804343528 0 0 0 0 +5438 1 1.3582 1 299.25337851593605 208.58839167961173 0 0 0 0 +5483 1 1.3526 1 285.0222251689189 216.45591402494256 0 0 0 0 +5518 1 1.349 1 288.9482094690868 184.1705575911043 0 0 0 0 +4691 1 1.4658 1 300.6987071140519 173.56528679210746 0 0 0 0 +5537 1 1.346 1 309.69385526410605 200.66152306040019 0 0 0 0 +9900 1 1.005 1 290.4624966288241 186.80685341325912 0 0 0 0 +5620 1 1.3346 1 310.9663071385657 195.53017353729945 0 0 0 0 +5660 1 1.3315 1 300.809813025275 205.75049797649922 0 0 0 0 +5672 1 1.3296 1 305.33321957122337 203.6284305234404 0 0 0 0 +5683 1 1.3286 1 300.29608426829327 175.1926609116685 0 0 0 0 +2226 1 2.1251 1 285.1584212709963 174.5843372747216 0 0 0 0 +5723 1 1.3238 1 294.57565166096026 193.52675613498832 0 0 0 0 +4206 1 1.5486 1 290.9564906130208 180.7793472741564 0 0 0 0 +1189 1 2.9188 1 316.20132734915836 171.88500149070256 0 0 0 0 +5769 1 1.3174 1 305.0957263682137 179.02310896755225 0 0 0 0 +9412 1 1.03 1 308.54923711386544 215.78004613265114 0 0 0 0 +5815 1 1.3128 1 308.8232725976954 205.9481148094465 0 0 0 0 +5838 1 1.3107 1 296.185621750162 204.52854140135204 0 0 0 0 +5852 1 1.3099 1 308.339488033489 184.4278660378054 0 0 0 0 +5860 1 1.3092 1 284.45859235302794 202.35092952530846 0 0 0 0 +5872 1 1.3083 1 314.58131864626523 188.6660480880727 0 0 0 0 +9263 1 1.0387 1 284.56161217582206 215.39254381884703 0 0 0 0 +5920 1 1.3028 1 312.7745165558355 223.50352897984058 0 0 0 0 +5944 1 1.3004 1 310.8056833925451 185.98412441920598 0 0 0 0 +5959 1 1.2989 1 309.3346446532333 221.99372425737542 0 0 0 0 +6016 1 1.2927 1 311.9106152788648 204.584147630842 0 0 0 0 +6046 1 1.2894 1 304.63026381301194 220.8180173721135 0 0 0 0 +6054 1 1.2885 1 295.4863687268356 184.86422062512483 0 0 0 0 +6074 1 1.286 1 299.0165336001136 213.91421209682557 0 0 0 0 +6076 1 1.2859 1 298.318793885002 207.63978702299934 0 0 0 0 +6084 1 1.2847 1 318.39028381147455 177.85602211414485 0 0 0 0 +6093 1 1.284 1 289.06000055906384 216.39051304063742 0 0 0 0 +6101 1 1.2831 1 307.75593029939387 179.69958074244582 0 0 0 0 +4265 1 1.5389 1 295.56243190620967 182.64251241003439 0 0 0 0 +6149 1 1.2784 1 282.1134686413691 206.94341889381434 0 0 0 0 +6157 1 1.2772 1 308.2180348297432 204.8585688551276 0 0 0 0 +6164 1 1.2759 1 312.3172595792343 200.3852640471482 0 0 0 0 +93 1 9.7268 1 295.1017614680941 177.06854217275088 0 0 0 0 +6223 1 1.2683 1 300.45771770155636 212.51427599858343 0 0 0 0 +9167 1 1.0436 1 282.5436714952461 171.93325126307025 0 0 0 0 +6286 1 1.2619 1 309.4181694781236 215.12509032574246 0 0 0 0 +8953 1 1.055 1 300.65944545319206 196.6531171076022 0 0 0 0 +6391 1 1.2523 1 288.0597475127781 181.93891516744893 0 0 0 0 +6479 1 1.2455 1 289.5988998651153 188.0927931468448 0 0 0 0 +6535 1 1.2389 1 320.3681520591274 173.43143627067354 0 0 0 0 +6601 1 1.2314 1 290.5035362207487 195.80888918540055 0 0 0 0 +6631 1 1.2289 1 300.34999473837723 209.7114360879285 0 0 0 0 +6636 1 1.2287 1 298.0300353880964 208.83225170498545 0 0 0 0 +6682 1 1.2238 1 305.3331013648856 175.68337400842879 0 0 0 0 +7501 1 1.1523 1 317.2451324682522 177.7498913385355 0 0 0 0 +6723 1 1.2203 1 306.1498317274442 186.43311234165657 0 0 0 0 +9114 1 1.0466 1 303.4338961409889 184.79350541451416 0 0 0 0 +6810 1 1.2113 1 317.6430107243197 178.8417673716853 0 0 0 0 +6914 1 1.2008 1 317.48935454571415 180.01063402851744 0 0 0 0 +9197 1 1.0421 1 293.66517034365336 201.82108125732123 0 0 0 0 +6967 1 1.1968 1 307.7850100099208 188.83013552820933 0 0 0 0 +6972 1 1.1963 1 289.25218204875597 200.47203996067915 0 0 0 0 +6973 1 1.1963 1 310.6047980756571 193.85792684814038 0 0 0 0 +6988 1 1.1954 1 302.3519720556055 216.90739258290984 0 0 0 0 +7063 1 1.1887 1 309.55290103692045 189.1375867593184 0 0 0 0 +7085 1 1.1874 1 302.82228840589426 214.8455317073469 0 0 0 0 +7109 1 1.1851 1 302.18978039278267 192.9698500613537 0 0 0 0 +7119 1 1.1841 1 289.8752282036421 215.41864917638105 0 0 0 0 +7123 1 1.1838 1 311.247961166232 192.86143907713418 0 0 0 0 +7135 1 1.1833 1 302.1016286572521 215.77865954905167 0 0 0 0 +7140 1 1.183 1 280.3631630344863 208.9964424828792 0 0 0 0 +7158 1 1.1814 1 279.71334040893396 212.24114476159158 0 0 0 0 +7165 1 1.1808 1 301.48793386667035 175.95925139229408 0 0 0 0 +1688 1 2.4295 1 284.75420626221853 172.37024881049706 0 0 0 0 +7217 1 1.1766 1 304.49352024505674 184.72768384743551 0 0 0 0 +7267 1 1.1732 1 284.9565645926566 217.94750940767173 0 0 0 0 +5526 1 1.3483 1 316.2446765300515 179.80412994375934 0 0 0 0 +7341 1 1.167 1 308.3714801295867 214.5677098516584 0 0 0 0 +7374 1 1.1637 1 305.33179327585646 193.20801615019565 0 0 0 0 +9186 1 1.0428 1 295.93356260976026 183.83814422426417 0 0 0 0 +7378 1 1.1634 1 295.82256760385224 211.63089427095716 0 0 0 0 +7412 1 1.1602 1 297.402300977177 197.34052890583231 0 0 0 0 +7515 1 1.1514 1 309.8200611116346 217.22405184347113 0 0 0 0 +4251 1 1.5421 1 278.77987053187326 206.15187624175894 0 0 0 0 +8721 1 1.0686 1 281.67528045262276 210.65617280183645 0 0 0 0 +7569 1 1.1464 1 315.16384439864487 186.70310330755296 0 0 0 0 +7596 1 1.1442 1 305.2563875870264 191.07686886908255 0 0 0 0 +7084 1 1.1874 1 291.45515773460164 172.90453049697166 0 0 0 0 +7674 1 1.1384 1 308.3436693790918 218.72461880161472 0 0 0 0 +7691 1 1.137 1 279.6159067507342 209.8353712551766 0 0 0 0 +1274 1 2.8185 1 279.57966548162153 171.04591783924118 0 0 0 0 +7733 1 1.134 1 303.17736219144183 216.15521217277384 0 0 0 0 +7776 1 1.1306 1 280.8255887485591 212.31509004773991 0 0 0 0 +7800 1 1.1288 1 302.708414260885 181.8503480673532 0 0 0 0 +8670 1 1.0712 1 306.50753065531416 174.26685461384656 0 0 0 0 +7048 1 1.1896 1 289.7358848264749 176.1468533257589 0 0 0 0 +9564 1 1.0222 1 306.9837972947158 223.165207668753 0 0 0 0 +7942 1 1.1186 1 310.31102720765904 212.08949586254533 0 0 0 0 +9219 1 1.041 1 303.02965267981745 199.6795065061408 0 0 0 0 +7974 1 1.1162 1 296.7673005872483 182.16671553449123 0 0 0 0 +8001 1 1.1143 1 308.77504668190477 216.79608439182277 0 0 0 0 +8015 1 1.1137 1 301.1347872814075 206.91692789444363 0 0 0 0 +8110 1 1.1071 1 311.08212721053667 222.45396327458477 0 0 0 0 +8147 1 1.1048 1 309.56354785567964 203.92629407956596 0 0 0 0 +8200 1 1.1015 1 299.3460376046197 212.81892490133146 0 0 0 0 +8262 1 1.0972 1 311.0845537221737 176.4249988387205 0 0 0 0 +8300 1 1.0946 1 281.39260592539557 207.82757382532864 0 0 0 0 +8314 1 1.0932 1 307.0745341762874 199.84595144534438 0 0 0 0 +8320 1 1.0927 1 301.9661332130996 207.62468737998486 0 0 0 0 +9470 1 1.0273 1 303.5520200895011 220.55226815886178 0 0 0 0 +8477 1 1.0825 1 308.9398403437179 217.85210307906326 0 0 0 0 +8519 1 1.0799 1 309.7761012106764 188.03191554080843 0 0 0 0 +8526 1 1.0795 1 308.7910858023288 188.40602328723537 0 0 0 0 +1919 1 2.2884 1 287.27924258369484 179.21539172827255 0 0 0 0 +8532 1 1.0789 1 300.45199607423416 176.38888592663352 0 0 0 0 +3197 1 1.7666 1 285.70202627070785 178.04044844138966 0 0 0 0 +8548 1 1.0781 1 302.4881178282399 175.45060168535582 0 0 0 0 +4094 1 1.5679 1 281.73277157222213 170.94700848819542 0 0 0 0 +14 1 29.6841 1 295.16911703256244 247.6837177579452 0 0 0 0 +22 1 21.3501 1 321.49808214742 276.1677888485722 0 0 0 0 +55 1 12.7841 1 298.32445215644987 268.47538986025285 0 0 0 0 +2524 1 2.0021 1 312.2807568599477 239.92320723791752 0 0 0 0 +3005 1 1.8288 1 306.76285503538713 229.90603308659152 0 0 0 0 +5384 1 1.3664 1 282.30153012684445 231.92649555715764 0 0 0 0 +3103 1 1.7963 1 312.69378563787916 235.73667310804174 0 0 0 0 +156 1 7.5293 1 279.9111931125729 257.9468012015425 0 0 0 0 +161 1 7.4871 1 326.88029767501 262.96904352260185 0 0 0 0 +215 1 6.5762 1 315.60587166785353 242.54112592378448 0 0 0 0 +227 1 6.3748 1 285.421139667603 273.20501898679555 0 0 0 0 +230 1 6.3247 1 288.9312236349003 267.9751833075673 0 0 0 0 +240 1 6.2782 1 314.2838638352934 257.5007633792264 0 0 0 0 +5605 1 1.3364 1 286.8064834999164 233.2699127840259 0 0 0 0 +319 1 5.5431 1 320.51233007931893 262.91122598985385 0 0 0 0 +9603 1 1.0205 1 312.20678620713244 229.42726175572352 0 0 0 0 +366 1 5.1829 1 312.4589941035953 247.30801261827943 0 0 0 0 +9951 1 1.003 1 317.85981308183534 257.89181597647945 0 0 0 0 +9885 1 1.0057 1 286.79329233692675 232.12344739277864 0 0 0 0 +492 1 4.4198 1 310.0221961760373 269.0486906480726 0 0 0 0 +2052 1 2.208 1 278.8837019107389 277.3133676531155 0 0 0 0 +5381 1 1.3664 1 309.83059734210974 231.4089880409528 0 0 0 0 +618 1 3.9701 1 321.12760723434207 258.3170893382066 0 0 0 0 +623 1 3.9446 1 315.6197888667954 252.6152874855218 0 0 0 0 +9654 1 1.0177 1 315.49608722298007 234.4152963622698 0 0 0 0 +8545 1 1.0784 1 311.5386366092293 231.28582264313806 0 0 0 0 +694 1 3.7963 1 310.7220477248601 263.6237169416477 0 0 0 0 +3668 1 1.6562 1 285.101787539861 225.74700940619317 0 0 0 0 +2127 1 2.166 1 283.29108455422113 228.03277094696122 0 0 0 0 +849 1 3.4617 1 284.5875363658444 232.53779083828064 0 0 0 0 +905 1 3.3492 1 313.6578488633033 266.7044847658305 0 0 0 0 +8619 1 1.0737 1 306.108401684074 232.78757218682046 0 0 0 0 +4172 1 1.5549 1 314.7755428252162 235.4043887905087 0 0 0 0 +1009 1 3.1617 1 287.96608219223634 262.40953363481594 0 0 0 0 +1072 1 3.0597 1 322.4232978602704 255.0707204703404 0 0 0 0 +1105 1 3.0129 1 307.1854410694671 258.72947093085213 0 0 0 0 +1138 1 2.9722 1 325.0213979485189 256.71397922681723 0 0 0 0 +4713 1 1.4623 1 280.37278352909436 229.7096395427154 0 0 0 0 +1220 1 2.8898 1 315.4229005823651 264.19542905859214 0 0 0 0 +5533 1 1.3467 1 304.5805556183134 228.45262620719598 0 0 0 0 +1254 1 2.8461 1 283.84548802937826 265.96519100686714 0 0 0 0 +1257 1 2.8442 1 291.05868286028306 263.83241138854225 0 0 0 0 +5918 1 1.3031 1 309.6894476785028 228.47146308651412 0 0 0 0 +1236 1 2.8713 1 307.8477810379902 231.93851220838064 0 0 0 0 +1333 1 2.7551 1 292.61944600407526 273.71860141235703 0 0 0 0 +1368 1 2.7177 1 284.67609505976156 259.9633692307968 0 0 0 0 +1839 1 2.3346 1 312.69698971101855 225.65743734090526 0 0 0 0 +1431 1 2.6461 1 318.13200478815986 259.6559956605757 0 0 0 0 +1462 1 2.6076 1 319.3531291814774 252.33790035729575 0 0 0 0 +1481 1 2.5942 1 279.20344009390124 246.06376363660908 0 0 0 0 +1498 1 2.5799 1 304.6522567704339 272.709328860201 0 0 0 0 +1528 1 2.5472 1 319.67759752675255 248.97758393262134 0 0 0 0 +1533 1 2.5448 1 286.1582091213343 264.5871986448349 0 0 0 0 +1549 1 2.5336 1 309.7894080115039 274.8462949799069 0 0 0 0 +9985 1 1.0008 1 301.30737450996196 233.64315347032772 0 0 0 0 +1567 1 2.5203 1 304.935244020897 264.2041705163183 0 0 0 0 +1608 1 2.4858 1 303.07226700907796 262.6208972879042 0 0 0 0 +2171 1 2.1484 1 279.291935626861 227.87151688643192 0 0 0 0 +1631 1 2.466 1 310.73273046204406 251.4879858297082 0 0 0 0 +1662 1 2.446 1 282.53600447595403 236.3305874584361 0 0 0 0 +1663 1 2.4454 1 289.8413055623934 276.31718692535577 0 0 0 0 +1670 1 2.4419 1 307.44622187087475 274.350167542159 0 0 0 0 +2803 1 1.8923 1 303.2696301863128 227.58503747612178 0 0 0 0 +5742 1 1.3215 1 289.7635777197355 231.78736878751815 0 0 0 0 +1736 1 2.3997 1 331.43776203475744 269.7244318299787 0 0 0 0 +1742 1 2.3899 1 309.9943006908594 257.0412497156474 0 0 0 0 +1745 1 2.3876 1 285.1638969730728 262.3942911016242 0 0 0 0 +2695 1 1.9316 1 311.7785965344378 227.5479075998691 0 0 0 0 +1770 1 2.3726 1 291.4987855420803 271.45608067872803 0 0 0 0 +1784 1 2.3661 1 293.8186097831985 275.943032840524 0 0 0 0 +9884 1 1.0057 1 308.6961566892843 271.34798656289803 0 0 0 0 +1809 1 2.3518 1 280.98754826403257 233.22123617523533 0 0 0 0 +1834 1 2.3384 1 309.93240513515264 253.6592250980601 0 0 0 0 +1950 1 2.2695 1 312.7558792614742 261.4547986789208 0 0 0 0 +1956 1 2.2667 1 305.553861784237 270.49791300395316 0 0 0 0 +1995 1 2.245 1 321.71667954067505 252.55480731776302 0 0 0 0 +2001 1 2.2424 1 318.9369400344597 254.78110107990716 0 0 0 0 +2023 1 2.2246 1 308.05328195115396 266.41188779917866 0 0 0 0 +2024 1 2.2241 1 329.9376515314526 268.0263151647909 0 0 0 0 +2040 1 2.2182 1 289.44233274438096 272.1485273944061 0 0 0 0 +2059 1 2.2067 1 281.3707141124916 265.53614830108063 0 0 0 0 +7283 1 1.1725 1 313.48987884230417 227.18456524440342 0 0 0 0 +2131 1 2.1643 1 305.9658813468722 260.9616065638219 0 0 0 0 +2157 1 2.1542 1 278.80786744900456 253.27291486265116 0 0 0 0 +2160 1 2.1513 1 279.7098215236327 251.34834470628317 0 0 0 0 +2169 1 2.1494 1 282.66618910846705 263.84416661264225 0 0 0 0 +2155 1 2.1546 1 313.69667939604267 229.90464070523257 0 0 0 0 +2220 1 2.128 1 306.9023590516086 268.2821488431545 0 0 0 0 +2221 1 2.1271 1 315.9793726168362 248.0136651876308 0 0 0 0 +2660 1 1.944 1 297.0098680849802 231.98495264407882 0 0 0 0 +2314 1 2.0833 1 283.3913168032803 269.5297208825737 0 0 0 0 +9307 1 1.0358 1 300.255875934668 227.8613904264612 0 0 0 0 +2420 1 2.0411 1 312.93254122626774 251.46965370269365 0 0 0 0 +7601 1 1.1439 1 293.058980133257 277.84660913232943 0 0 0 0 +2457 1 2.0254 1 310.5575980848369 272.1821874420381 0 0 0 0 +1076 1 3.0513 1 291.9354234343465 231.69858257467433 0 0 0 0 +5139 1 1.3978 1 311.5906737659323 238.38120425081956 0 0 0 0 +4799 1 1.449 1 298.55545941678554 232.50545187868514 0 0 0 0 +7928 1 1.1193 1 301.5622431960723 232.498292493134 0 0 0 0 +1398 1 2.6831 1 314.328494102404 237.3969080007228 0 0 0 0 +2757 1 1.9088 1 297.51636385992674 275.728306137227 0 0 0 0 +2778 1 1.9025 1 291.8912369070358 276.9287288430415 0 0 0 0 +2787 1 1.8998 1 307.86542036687047 261.4503339961825 0 0 0 0 +2788 1 1.8984 1 282.18586762974445 261.9868303369768 0 0 0 0 +5227 1 1.3857 1 301.78044193001733 228.13161844477207 0 0 0 0 +9506 1 1.0255 1 302.1656561459128 229.23461662499946 0 0 0 0 +5706 1 1.3249 1 304.40723229839654 235.26378668417442 0 0 0 0 +4437 1 1.5081 1 280.95975568274986 235.20731641461006 0 0 0 0 +2911 1 1.8604 1 288.32752516671593 233.5528161374924 0 0 0 0 +2950 1 1.8482 1 311.77351460835035 254.4393153357734 0 0 0 0 +9937 1 1.0034 1 283.8405670341061 225.97361792750286 0 0 0 0 +5760 1 1.3192 1 311.3013335148313 234.36444894079295 0 0 0 0 +7565 1 1.1467 1 312.23325898956335 230.49726882568086 0 0 0 0 +2859 1 1.8765 1 307.9546597322965 234.48115233793237 0 0 0 0 +2689 1 1.9341 1 308.62246418840954 229.68496156477602 0 0 0 0 +3210 1 1.7635 1 314.2700379086578 250.1681641842638 0 0 0 0 +3355 1 1.726 1 316.9932378329098 262.5903150358794 0 0 0 0 +3437 1 1.7077 1 308.02913610678496 256.60778142421856 0 0 0 0 +3514 1 1.691 1 317.8240202220317 247.92032655937854 0 0 0 0 +3530 1 1.6869 1 279.0010862584333 232.92224944982766 0 0 0 0 +8655 1 1.0721 1 309.42361924282983 241.95369141698973 0 0 0 0 +3567 1 1.677 1 307.3825772494006 271.1229583060137 0 0 0 0 +3580 1 1.6748 1 324.6381919919429 258.9982015578225 0 0 0 0 +3606 1 1.6696 1 308.19506689553964 272.5280041989973 0 0 0 0 +4724 1 1.4597 1 290.1236579860533 230.5098110769218 0 0 0 0 +3650 1 1.6621 1 282.4051949338932 238.78229812008993 0 0 0 0 +3786 1 1.6329 1 316.3691060249742 260.8589304895228 0 0 0 0 +3867 1 1.6135 1 315.88156894884503 249.85296317669733 0 0 0 0 +3898 1 1.6087 1 308.83190917853256 255.23134976640804 0 0 0 0 +3920 1 1.6032 1 311.83310073683384 244.0018144919813 0 0 0 0 +4029 1 1.5779 1 320.21712706451564 247.00767971988222 0 0 0 0 +7597 1 1.1442 1 284.35285960331413 226.86276703157043 0 0 0 0 +4240 1 1.5431 1 322.1154813096177 250.71778686315344 0 0 0 0 +4353 1 1.5226 1 306.4349326086104 262.74625199454755 0 0 0 0 +856 1 3.4469 1 309.6286250010541 239.7531545451617 0 0 0 0 +4373 1 1.5194 1 301.2202306683643 261.99308019188527 0 0 0 0 +9858 1 1.0068 1 283.6113870566038 261.7315812302339 0 0 0 0 +4453 1 1.5061 1 309.7104377252969 258.93575018867216 0 0 0 0 +4499 1 1.4972 1 305.00250001690904 266.1619445771307 0 0 0 0 +4503 1 1.4966 1 313.2520491705879 264.33839198557536 0 0 0 0 +4513 1 1.4949 1 319.06690138288405 244.57516578455815 0 0 0 0 +4523 1 1.494 1 290.3674234624517 274.4253444298406 0 0 0 0 +4564 1 1.487 1 308.3222568421707 276.1055567855557 0 0 0 0 +4568 1 1.4862 1 314.5843449018382 261.28411377615475 0 0 0 0 +4577 1 1.485 1 315.99100164855366 266.247472694899 0 0 0 0 +4595 1 1.481 1 278.6551740630294 244.20071471479727 0 0 0 0 +1983 1 2.2509 1 310.68377996620535 229.87428046790794 0 0 0 0 +4630 1 1.4771 1 279.027109579344 263.59372074959373 0 0 0 0 +4633 1 1.4766 1 324.56595442764916 254.59137337171512 0 0 0 0 +4647 1 1.4736 1 308.8591270570514 260.127272757339 0 0 0 0 +4667 1 1.4697 1 320.61660093593343 250.74615372225935 0 0 0 0 +4690 1 1.4659 1 295.9791705778985 276.277737800009 0 0 0 0 +645 1 3.9056 1 281.88228214965284 276.8354038239772 0 0 0 0 +4767 1 1.4533 1 284.93823532896346 234.9150711453103 0 0 0 0 +4771 1 1.4529 1 285.3106538462137 269.326014490355 0 0 0 0 +4790 1 1.4506 1 304.2474845377142 261.1539557146506 0 0 0 0 +4793 1 1.45 1 320.53238424684656 253.94310865413723 0 0 0 0 +4852 1 1.4409 1 317.1868160534437 265.43099911373776 0 0 0 0 +4861 1 1.4396 1 286.58990539333934 260.62911898482685 0 0 0 0 +4887 1 1.4349 1 306.30027556665107 266.66789920627457 0 0 0 0 +7608 1 1.1436 1 290.1680822181972 227.3657643951244 0 0 0 0 +9391 1 1.0313 1 284.6985034055959 276.818363938029 0 0 0 0 +4955 1 1.4254 1 313.18705786329235 253.67455000514178 0 0 0 0 +4967 1 1.424 1 318.7781524664772 257.17216175238195 0 0 0 0 +4973 1 1.4235 1 280.57915703000805 263.9122836219643 0 0 0 0 +4983 1 1.4226 1 311.5320090142845 260.1299196259743 0 0 0 0 +4991 1 1.4212 1 328.3837775081622 267.12610078358193 0 0 0 0 +5072 1 1.4088 1 312.8488057027449 268.88824986481114 0 0 0 0 +5080 1 1.4078 1 309.4905421971454 261.3912163247681 0 0 0 0 +5103 1 1.4036 1 283.51853760340913 234.699577384969 0 0 0 0 +338 1 5.4102 1 307.1620740911992 226.34128989709873 0 0 0 0 +5134 1 1.3984 1 312.0201280371194 252.8862159833291 0 0 0 0 +1529 1 2.5467 1 291.18843195625385 228.89557868387485 0 0 0 0 +1328 1 2.759 1 294.76669217069656 231.50273839126598 0 0 0 0 +5195 1 1.3895 1 280.055171951595 244.2766509968981 0 0 0 0 +5205 1 1.3881 1 310.39055676726866 244.82494043221038 0 0 0 0 +5238 1 1.3837 1 318.5316863671896 250.53906187047815 0 0 0 0 +5240 1 1.3833 1 281.55751148677473 240.2501950543983 0 0 0 0 +5257 1 1.3812 1 306.50661654718516 265.31178158163306 0 0 0 0 +5272 1 1.3795 1 317.1717387224301 250.51249568718706 0 0 0 0 +5281 1 1.3782 1 321.5381163598691 249.40769575816876 0 0 0 0 +5340 1 1.371 1 310.40417898568063 266.18453220669113 0 0 0 0 +376 1 5.082 1 279.2533880047183 238.01987688910128 0 0 0 0 +846 1 3.4629 1 310.1512345102469 236.39323057665456 0 0 0 0 +5458 1 1.3551 1 280.67788609319626 262.538472688075 0 0 0 0 +1914 1 2.29 1 296.6798615613793 229.9146925644255 0 0 0 0 +5564 1 1.3425 1 295.58778438080293 274.9610073933335 0 0 0 0 +5569 1 1.3418 1 296.97921774325755 277.27412318748685 0 0 0 0 +5570 1 1.3415 1 310.2166093731652 260.25221598647414 0 0 0 0 +5573 1 1.341 1 317.8117683814207 249.38463863599927 0 0 0 0 +5586 1 1.339 1 282.15534306655064 267.11598928094713 0 0 0 0 +5607 1 1.336 1 315.6077974318299 262.126180094211 0 0 0 0 +5611 1 1.3357 1 329.70712056873396 266.303847349616 0 0 0 0 +2357 1 2.0635 1 293.36057095815113 229.58557103366482 0 0 0 0 +5670 1 1.3299 1 314.130402152043 262.58187037824365 0 0 0 0 +9972 1 1.002 1 292.219693929063 275.53255394382063 0 0 0 0 +5703 1 1.3251 1 279.60035466531787 264.86781645191616 0 0 0 0 +5751 1 1.3203 1 285.1742409705601 267.5263888506892 0 0 0 0 +5764 1 1.3183 1 326.75754116192746 257.78692539305473 0 0 0 0 +5773 1 1.317 1 305.30882962231044 268.7617492607874 0 0 0 0 +3119 1 1.7885 1 300.8981624323031 231.20960518524907 0 0 0 0 +5845 1 1.3102 1 310.44222312462324 249.70923410609046 0 0 0 0 +7375 1 1.1636 1 313.7836590602504 228.28189573787392 0 0 0 0 +5991 1 1.2954 1 304.9377589725304 262.3252993720238 0 0 0 0 +5998 1 1.2948 1 327.4985976140947 258.7479547346558 0 0 0 0 +5322 1 1.373 1 288.4718813675955 232.00218108529438 0 0 0 0 +6072 1 1.2862 1 316.42748838759053 246.37956439995466 0 0 0 0 +6077 1 1.2859 1 282.18250442390024 234.55407557629383 0 0 0 0 +6103 1 1.283 1 287.0976871234118 234.51031429191386 0 0 0 0 +6159 1 1.2769 1 317.6551963843835 246.4762975158106 0 0 0 0 +4258 1 1.5408 1 286.52304655122856 225.27618753452208 0 0 0 0 +8787 1 1.0641 1 298.03984801110624 228.99614957931047 0 0 0 0 +2711 1 1.926 1 288.1880903615476 225.2840137553436 0 0 0 0 +6248 1 1.2653 1 284.3546192019196 264.0002604913068 0 0 0 0 +6276 1 1.2624 1 307.8972702800816 263.6994791093511 0 0 0 0 +6288 1 1.2617 1 305.209992108352 259.4359376328321 0 0 0 0 +6507 1 1.2424 1 279.9035597704066 231.85779058821237 0 0 0 0 +2328 1 2.0765 1 282.4339559577745 229.92608598853573 0 0 0 0 +9385 1 1.0316 1 309.7272471336505 242.9137130125998 0 0 0 0 +6371 1 1.255 1 284.00507527702854 230.2888994454411 0 0 0 0 +6373 1 1.255 1 279.41468984588977 262.2981308339703 0 0 0 0 +6379 1 1.254 1 289.08745672738036 264.24468958228664 0 0 0 0 +6401 1 1.2518 1 279.76268396892607 247.87811869538686 0 0 0 0 +8736 1 1.0678 1 315.8949905258942 236.202156535703 0 0 0 0 +6457 1 1.2469 1 305.26240602595976 267.4976336886715 0 0 0 0 +9725 1 1.0141 1 306.55489722299575 234.53778431145932 0 0 0 0 +5218 1 1.3868 1 303.8149374338329 234.0823935095213 0 0 0 0 +6573 1 1.2352 1 289.17085283243006 273.8104742089623 0 0 0 0 +6594 1 1.2321 1 309.2839565068498 277.0555029467989 0 0 0 0 +6639 1 1.2286 1 294.49856268042726 274.3084182965201 0 0 0 0 +6654 1 1.2266 1 291.9141916253054 265.67094779121953 0 0 0 0 +7728 1 1.1346 1 306.7870500131407 233.5733431022235 0 0 0 0 +6716 1 1.2207 1 288.09758304465294 275.85503873249735 0 0 0 0 +6748 1 1.2184 1 306.7260474640995 272.6508556757256 0 0 0 0 +5802 1 1.3144 1 299.1423533371934 228.65277118074354 0 0 0 0 +2290 1 2.0981 1 300.6251509030801 229.36871640860267 0 0 0 0 +6847 1 1.2078 1 280.6702940251167 242.3757944907385 0 0 0 0 +6904 1 1.2018 1 310.54046648649546 243.58899016054417 0 0 0 0 +6948 1 1.1983 1 293.95874702325864 263.0564638999474 0 0 0 0 +6997 1 1.1945 1 317.4273702847932 255.5054526201157 0 0 0 0 +6779 1 1.2153 1 310.2641065082425 227.37423657470433 0 0 0 0 +7955 1 1.1174 1 301.07707049161087 227.17569248180567 0 0 0 0 +7160 1 1.1813 1 290.76399092453863 273.1636818009747 0 0 0 0 +7176 1 1.1802 1 279.9097834267473 249.70084377248648 0 0 0 0 +8779 1 1.0647 1 312.77314020154375 228.60464488051548 0 0 0 0 +7254 1 1.1738 1 292.80703299054016 262.90897083637736 0 0 0 0 +7262 1 1.1734 1 306.7590067549328 264.06852152667005 0 0 0 0 +6304 1 1.2607 1 301.95319989782405 226.409951651609 0 0 0 0 +494 1 4.4155 1 303.9552078965959 231.22360565270685 0 0 0 0 +7331 1 1.168 1 319.76953488511475 245.70155684538392 0 0 0 0 +7337 1 1.1677 1 288.76673479019036 274.8999464954394 0 0 0 0 +7354 1 1.1653 1 295.06161004240556 277.12581462558023 0 0 0 0 +2861 1 1.8743 1 310.6908514618587 225.90014862430664 0 0 0 0 +7410 1 1.1604 1 283.56064189961404 267.91682456182303 0 0 0 0 +7529 1 1.1505 1 323.4420543373734 252.61763581115508 0 0 0 0 +7549 1 1.1484 1 331.0531136803272 266.79712919003344 0 0 0 0 +7588 1 1.145 1 286.15065462615814 235.226986256684 0 0 0 0 +9851 1 1.0075 1 315.4184469048137 238.80458693326358 0 0 0 0 +7610 1 1.1434 1 284.1439110510987 237.00981061953556 0 0 0 0 +589 1 4.0512 1 313.49284156576266 232.9401242430191 0 0 0 0 +5350 1 1.3696 1 312.35989408704097 237.27023386594152 0 0 0 0 +7630 1 1.1425 1 330.766687465426 265.7098938705575 0 0 0 0 +2021 1 2.2252 1 309.7252505674944 233.621222311614 0 0 0 0 +7671 1 1.1385 1 318.81092050355085 246.26759092299451 0 0 0 0 +9703 1 1.015 1 309.9115017127748 224.6879628711442 0 0 0 0 +7734 1 1.1338 1 283.38703442927897 237.84196342798424 0 0 0 0 +7793 1 1.1292 1 284.0993233396604 258.2233704810658 0 0 0 0 +7892 1 1.122 1 320.4223991389029 255.5333483470666 0 0 0 0 +7903 1 1.121 1 280.8144214416042 253.43198823275665 0 0 0 0 +7957 1 1.1172 1 311.4722805804081 266.7628254272141 0 0 0 0 +8065 1 1.11 1 319.6331492363726 256.28233347298396 0 0 0 0 +2060 1 2.2066 1 298.90263048409304 230.6591199396462 0 0 0 0 +8112 1 1.1068 1 284.2298382872205 235.9183036500129 0 0 0 0 +8128 1 1.1056 1 311.1036719894296 255.72387711968173 0 0 0 0 +9947 1 1.0031 1 315.33137952802053 246.29770484649814 0 0 0 0 +8166 1 1.1033 1 279.76693853369795 243.07971924775813 0 0 0 0 +2033 1 2.2202 1 303.450174298417 225.57845172712433 0 0 0 0 +8212 1 1.1006 1 318.1153680378293 245.41153127742552 0 0 0 0 +8245 1 1.0981 1 303.03420625671527 260.8602929025404 0 0 0 0 +8280 1 1.0964 1 307.6083267425016 264.82002619982194 0 0 0 0 +8305 1 1.0942 1 283.06003223356595 260.8448575294592 0 0 0 0 +8331 1 1.0922 1 281.78890993492064 273.37071356148306 0 0 0 0 +8341 1 1.0911 1 293.0139764876446 264.01919942545476 0 0 0 0 +8378 1 1.0886 1 317.93518736229504 253.49299632261616 0 0 0 0 +8395 1 1.0877 1 317.7908935456364 256.5226723083231 0 0 0 0 +6244 1 1.2658 1 307.8465087238446 236.00005975976788 0 0 0 0 +8419 1 1.0864 1 309.3832905282359 273.1307066867911 0 0 0 0 +8520 1 1.0797 1 323.12592392907493 256.95710679837595 0 0 0 0 +8554 1 1.0777 1 307.3872115186175 269.7786555093624 0 0 0 0 +8567 1 1.077 1 308.5004771178975 262.7423955457807 0 0 0 0 +4888 1 1.4348 1 289.897657117669 233.10356939558864 0 0 0 0 +8652 1 1.0722 1 318.9956265453769 247.32574957261417 0 0 0 0 +8700 1 1.0698 1 313.0690131679211 263.0845481854112 0 0 0 0 +8711 1 1.0693 1 310.1343829195887 255.3269810556792 0 0 0 0 +8752 1 1.0669 1 285.70523604137696 266.3086070270596 0 0 0 0 +8899 1 1.0574 1 308.6590499348394 264.87310283528785 0 0 0 0 +8905 1 1.0572 1 282.6216915111657 233.51097750691525 0 0 0 0 +8914 1 1.0569 1 294.0891480989932 277.60612246751145 0 0 0 0 +9958 1 1.0029 1 311.97885125354725 250.32185791705567 0 0 0 0 +7532 1 1.1503 1 316.26434092771433 237.33825522819586 0 0 0 0 +8964 1 1.0545 1 291.2494030294403 275.3147981710035 0 0 0 0 +8979 1 1.0537 1 323.60974362103184 258.1252869341131 0 0 0 0 +8987 1 1.0533 1 318.41098913799846 265.4196247456114 0 0 0 0 +2392 1 2.0505 1 281.2776087035064 228.24745530287262 0 0 0 0 +9006 1 1.0524 1 279.96753456741953 241.42888277888463 0 0 0 0 +9015 1 1.0518 1 310.3084390003789 276.5605737969837 0 0 0 0 +9025 1 1.0514 1 326.04009290798615 258.7414359232984 0 0 0 0 +9090 1 1.0475 1 282.54339678633704 268.2321580313987 0 0 0 0 +9131 1 1.0457 1 323.0003916894979 251.63079244247703 0 0 0 0 +9201 1 1.0418 1 310.97106610041504 259.03751664047184 0 0 0 0 +9211 1 1.0413 1 311.7268821470932 265.7546956550648 0 0 0 0 +9229 1 1.0405 1 317.80210450089925 251.49625173567932 0 0 0 0 +9250 1 1.0394 1 317.48846894034824 264.22480761673467 0 0 0 0 +9314 1 1.0355 1 284.48455060031483 268.4448794738488 0 0 0 0 +9326 1 1.0348 1 281.0027092161832 241.3137225934205 0 0 0 0 +7211 1 1.1773 1 284.31509494104563 224.62785615480303 0 0 0 0 +9421 1 1.0296 1 309.3984389907145 265.5884767890388 0 0 0 0 +5548 1 1.3442 1 278.9328524364602 275.62849920507443 0 0 0 0 +9487 1 1.0265 1 290.06369652072806 262.16804747459247 0 0 0 0 +9505 1 1.0256 1 280.88886491214015 274.4551978377287 0 0 0 0 +9521 1 1.0246 1 305.81820089133544 273.99840568653474 0 0 0 0 +9247 1 1.0396 1 302.24884906875985 233.31286220876962 0 0 0 0 +9592 1 1.0212 1 317.6112602531313 261.3894092920012 0 0 0 0 +306 1 5.6966 1 287.0936119146496 228.81037663761228 0 0 0 0 +9619 1 1.0198 1 316.68044754598367 254.78164946550825 0 0 0 0 +3394 1 1.717 1 305.3439874540164 233.9500292177025 0 0 0 0 +8452 1 1.0842 1 302.6283280062862 234.27504129036063 0 0 0 0 +9769 1 1.0115 1 323.82937401045604 253.60800391544538 0 0 0 0 +9849 1 1.0077 1 304.2554186716837 259.9835992680337 0 0 0 0 +4339 1 1.5245 1 316.62895032084305 238.64249233310568 0 0 0 0 +1964 1 2.262 1 311.25708997809636 242.0460939281161 0 0 0 0 +7244 1 1.1743 1 280.04931041119215 275.1219157724732 0 0 0 0 +2762 1 1.9077 1 300.14082297176674 232.7999130446243 0 0 0 0 +6957 1 1.1978 1 313.67382894180435 239.1904472211321 0 0 0 0 +1749 1 2.3855 1 306.05173976202246 236.05415350859127 0 0 0 0 +1822 1 2.344 1 307.63626178104573 237.75140161725957 0 0 0 0 +3484 1 1.6973 1 281.0574052032422 231.10557673442523 0 0 0 0 +7854 1 1.1247 1 281.9238970770669 274.40153592668474 0 0 0 0 +2827 1 1.8857 1 279.42444287270064 234.60197566262323 0 0 0 0 +4644 1 1.4739 1 310.87604344651004 232.2970529792287 0 0 0 0 +8531 1 1.079 1 305.5849227559933 229.0969746777378 0 0 0 0 +7300 1 1.1707 1 331.6101175034691 267.9770756354669 0 0 0 0 +6591 1 1.2326 1 284.2166495113295 277.82497603922315 0 0 0 0 +2445 1 2.0287 1 331.38917597331397 264.2903554364283 0 0 0 0 +334 1 5.4378 1 281.0467617839512 224.5414383944038 0 0 0 0 +9377 1 1.0321 1 278.34539535353827 264.63370659931377 0 0 0 0 +7698 1 1.1366 1 278.2899514285752 261.94178708463585 0 0 0 0 +6218 1 1.2691 1 289.63945815165937 278.1259655127638 0 0 0 0 +9547 1 1.0234 1 290.56003141108033 287.7133766596099 0 0 0 0 +33 1 17.6088 1 296.647634910331 308.93622216320483 0 0 0 0 +47 1 13.5938 1 314.5389390243995 313.0276784850197 0 0 0 0 +84 1 10.0972 1 288.61184435935974 321.59552186506204 0 0 0 0 +9685 1 1.0163 1 302.9433024105808 300.8764546714585 0 0 0 0 +102 1 9.5724 1 280.63780998674736 306.74800083576963 0 0 0 0 +9278 1 1.0379 1 315.41360688824784 297.4051599323487 0 0 0 0 +209 1 6.6389 1 280.13708240463933 296.60184843526054 0 0 0 0 +2136 1 2.1612 1 321.7465767171545 318.2984449317762 0 -1 0 0 +2583 1 1.9764 1 284.69185991105206 281.9300196824673 0 0 0 0 +382 1 5.0566 1 286.0373166131204 301.91437791179766 0 0 0 0 +414 1 4.8627 1 317.81067849257306 304.41567188979917 0 0 0 0 +452 1 4.644 1 309.62159814101705 304.9801299774728 0 0 0 0 +2471 1 2.0212 1 285.7635312042999 287.96175035414916 0 0 0 0 +491 1 4.4229 1 323.12870694814313 308.896305043229 0 0 0 0 +8634 1 1.0728 1 314.0726660889332 285.64424925663354 0 0 0 0 +4806 1 1.4478 1 323.5061634187708 318.27754290710146 0 -1 0 0 +553 1 4.1921 1 300.11219124557624 324.81503657134186 0 0 0 0 +560 1 4.1737 1 308.4121975901977 298.3020962983146 0 0 0 0 +63 1 11.7591 1 329.8748803787373 319.86519818493156 0 -1 0 0 +646 1 3.901 1 296.686577683437 326.85215251271404 0 0 0 0 +651 1 3.8853 1 303.23649728776826 320.84890685022765 0 0 0 0 +653 1 3.8852 1 304.5425431248782 297.7301639928664 0 0 0 0 +656 1 3.8759 1 305.40303150754534 316.4988156455876 0 0 0 0 +667 1 3.8478 1 310.6082239432034 294.97627110611757 0 0 0 0 +122 1 8.8662 1 303.1736899347286 289.2230657695584 0 0 0 0 +709 1 3.765 1 295.2825653283571 323.2981284728502 0 0 0 0 +718 1 3.7548 1 315.8935582209289 291.86394095137297 0 0 0 0 +720 1 3.7486 1 329.63718362822146 310.3511833477171 0 0 0 0 +731 1 3.7184 1 309.45235696932 319.8318417687079 0 0 0 0 +732 1 3.7178 1 324.50650471417737 313.76686606241867 0 0 0 0 +734 1 3.713 1 301.1884018152854 299.32857387972854 0 0 0 0 +747 1 3.6915 1 295.8449676038723 298.42847090190236 0 0 0 0 +804 1 3.5785 1 297.7462225044683 319.412913595829 0 0 0 0 +817 1 3.5469 1 280.93174662085005 291.6446275734573 0 0 0 0 +845 1 3.4643 1 319.9461147328282 289.5439811361205 0 0 0 0 +861 1 3.441 1 303.1449257781176 328.04135480961224 0 0 0 0 +885 1 3.3813 1 287.51401641481846 314.05807379923516 0 0 0 0 +887 1 3.38 1 313.56443200877123 304.736551595496 0 0 0 0 +891 1 3.3742 1 318.2068846771462 294.8869814881891 0 0 0 0 +1110 1 3.0029 1 327.7117542453987 312.9256494724668 0 -1 0 0 +976 1 3.2116 1 313.6934746355377 301.558139594554 0 0 0 0 +984 1 3.2058 1 316.6411906105198 300.53967855127166 0 0 0 0 +5833 1 1.3112 1 323.36525866738924 319.61834975932885 0 -1 0 0 +999 1 3.1776 1 306.8530517575532 310.01922862943235 0 0 0 0 +1051 1 3.0898 1 302.21248605409346 317.60716721019025 0 0 0 0 +1066 1 3.0626 1 289.47714483048526 299.91992082260924 0 0 0 0 +1073 1 3.0595 1 298.8061694393812 296.9323417329199 0 0 0 0 +1102 1 3.0146 1 306.55403581564406 321.30598277532107 0 0 0 0 +1125 1 2.9851 1 294.61347477211797 329.57655832928964 0 0 0 0 +5457 1 1.3552 1 291.9973672548279 281.75300326435183 0 0 0 0 +1190 1 2.9166 1 310.2655298825008 329.7411388385124 0 0 0 0 +60 1 12.3738 1 319.1746184052211 324.9754490008559 0 0 -1 0 +1223 1 2.8847 1 284.6084458898824 313.11997817991704 0 0 0 0 +1230 1 2.8775 1 290.4382225797642 329.64177591219794 0 0 0 0 +1242 1 2.8593 1 284.6134445670884 298.1381055641537 0 0 0 0 +1276 1 2.8176 1 311.182550258342 300.20214292118055 0 0 0 0 +1282 1 2.8091 1 294.761351860547 320.12926995189173 0 0 0 0 +1364 1 2.7244 1 288.1441808782989 328.1090615019292 0 0 0 0 +1396 1 2.6876 1 300.0481930811386 321.417217688629 0 0 0 0 +3620 1 1.6673 1 292.17903417334446 285.613215531056 0 0 0 0 +1484 1 2.5925 1 311.7844965594163 327.48486660942615 0 0 0 0 +1527 1 2.5484 1 313.39373886091226 293.6223140388847 0 0 0 0 +1584 1 2.5049 1 316.21938919712636 286.8096435661693 0 0 0 0 +1592 1 2.4999 1 304.72375291133056 323.6674162671111 0 0 0 0 +9337 1 1.0343 1 321.20510656832903 287.7009739092521 0 -1 0 0 +5171 1 1.3921 1 291.3499195595214 286.84542155129213 0 0 0 0 +4445 1 1.5069 1 296.7088781351234 296.0698767476125 0 0 0 0 +8929 1 1.0561 1 307.1667122743529 286.3484594080481 0 0 0 0 +1616 1 2.483 1 291.33550972792585 327.17740938263853 0 0 0 0 +5747 1 1.3206 1 308.1795217117154 289.1043909668885 0 0 0 0 +1630 1 2.4673 1 312.795832800271 297.1458412585293 0 0 0 0 +9669 1 1.017 1 298.8345568638497 283.98684532878053 0 0 0 0 +1730 1 2.4066 1 319.2658341409616 300.15366330169195 0 0 0 0 +1737 1 2.3983 1 307.6549958682403 327.00423617496244 0 0 0 0 +8631 1 1.073 1 307.3416936023379 291.90808558360436 0 0 0 0 +1766 1 2.3742 1 308.8383656074477 322.7344152585409 0 0 0 0 +1774 1 2.3713 1 293.6427420790278 327.18392963750557 0 0 0 0 +5107 1 1.403 1 294.36151078287344 290.529760986637 0 0 0 0 +9716 1 1.0144 1 284.9667627396379 284.73012815325313 0 0 0 0 +1867 1 2.3206 1 283.31813197082903 315.3356184136071 0 0 0 0 +1893 1 2.3042 1 312.164306595482 322.487054404713 0 0 0 0 +9808 1 1.0096 1 283.4274645805283 319.70272667086874 0 0 0 0 +1912 1 2.2916 1 308.62395555630366 290.82025441166337 0 0 0 0 +1933 1 2.2803 1 317.0771244275774 297.4476518159394 0 0 0 0 +1934 1 2.2803 1 280.9901121148174 312.61218415909906 0 0 0 0 +1309 1 2.7828 1 326.3765291308911 310.4356011408592 0 -1 0 0 +342 1 5.3782 1 311.2971692630718 288.11929682493957 0 0 0 0 +2020 1 2.2273 1 308.4876979784524 324.9315443796918 0 0 0 0 +2034 1 2.2201 1 305.3640610308397 304.41980316334394 0 0 0 0 +6823 1 1.2102 1 296.28092666675207 286.28535537533077 0 0 0 0 +9814 1 1.0093 1 300.0483646333825 327.3823992504853 0 0 0 0 +2102 1 2.1834 1 322.3956878470961 305.694397145511 0 0 0 0 +9878 1 1.006 1 331.0100033765779 283.4457277593554 0 -1 0 0 +2149 1 2.1575 1 315.4498823162555 294.72901560357695 0 0 0 0 +2174 1 2.1478 1 310.5432011308444 325.5149963158231 0 0 0 0 +2185 1 2.1446 1 282.53205332682484 301.3344643175438 0 0 0 0 +9001 1 1.0526 1 299.0953929975351 286.46414030639534 0 0 0 0 +2229 1 2.1241 1 293.10614473888927 297.92109099138526 0 0 0 0 +3504 1 1.6931 1 287.73549723203797 287.2772849308116 0 0 0 0 +9761 1 1.012 1 313.7049237797981 290.9398869669311 0 0 0 0 +2237 1 2.1204 1 300.8329035974872 294.55129905879966 0 0 0 0 +2246 1 2.1185 1 294.81775307362506 295.769016006722 0 0 0 0 +5110 1 1.402 1 321.8535705015043 314.71330904679076 0 -1 0 0 +2265 1 2.1092 1 286.9569011596749 310.31116971339674 0 0 0 0 +2266 1 2.108 1 305.4806638085467 326.6905749336719 0 0 0 0 +2330 1 2.0763 1 282.9693437789023 317.4730188240949 0 0 0 0 +2351 1 2.068 1 313.40052275146894 320.7259163405907 0 0 0 0 +2424 1 2.0394 1 283.4706884112874 290.6870409247852 0 0 0 0 +2492 1 2.0134 1 306.9493982294438 303.1098801176492 0 0 0 0 +2520 1 2.0043 1 312.37227408238715 291.6175878869064 0 0 0 0 +2535 1 1.9974 1 321.4274301767808 316.3563726396321 0 0 0 0 +1761 1 2.3764 1 286.27077858584084 285.8792378672418 0 0 0 0 +6627 1 1.2292 1 309.2667203406886 331.490157886296 0 0 0 0 +9572 1 1.0219 1 326.6314360871501 314.5173840345716 0 0 0 0 +9596 1 1.0211 1 304.3595421634935 314.19443983360287 0 0 0 0 +2682 1 1.9373 1 304.8402481956318 302.44526395150615 0 0 0 0 +5746 1 1.3206 1 308.26707846248956 286.7456098208029 0 0 0 0 +2766 1 1.9066 1 306.91662484795205 323.6625095440436 0 0 0 0 +2794 1 1.8948 1 293.51651997372255 318.1603287934337 0 0 0 0 +2801 1 1.8932 1 305.49794773928784 329.21131284853715 0 0 0 0 +2839 1 1.883 1 319.0341299322794 298.0231058013225 0 0 0 0 +2816 1 1.8901 1 299.70951612252895 285.13482370204053 0 0 0 0 +2852 1 1.8786 1 292.5136487332811 330.7109193718003 0 0 0 0 +2891 1 1.8644 1 308.14174508968586 317.35098358323745 0 0 0 0 +2917 1 1.8579 1 314.0941393091943 329.7338701540668 0 0 0 0 +2199 1 2.139 1 297.7737381803294 285.6339398105648 0 0 0 0 +3003 1 1.8289 1 307.3174011633627 329.029250727106 0 0 0 0 +3037 1 1.8152 1 320.81938118760274 306.8152502985631 0 0 0 0 +8664 1 1.0716 1 323.3836039693634 311.66212246103316 0 0 0 0 +9189 1 1.0425 1 307.83122213732366 307.13692606736214 0 0 0 0 +6008 1 1.2935 1 292.64568270943846 284.2092587217384 0 0 0 0 +5472 1 1.3535 1 286.0970764833024 284.0628670626842 0 0 0 0 +3117 1 1.7908 1 312.1455093157688 324.4680954059893 0 0 0 0 +3133 1 1.7835 1 286.0252582902052 328.5374282448835 0 0 0 0 +3155 1 1.7781 1 299.91349624965517 318.0162927543498 0 0 0 0 +4586 1 1.4826 1 327.62145890290145 308.7752975001646 0 0 0 0 +3140 1 1.7811 1 312.83759814323304 284.9412282460774 0 0 0 0 +4609 1 1.4791 1 295.5686542462171 289.77038529845635 0 0 0 0 +9795 1 1.01 1 302.54517377707015 325.8484000886375 0 0 0 0 +3407 1 1.7131 1 306.98277543730535 314.19758724215137 0 0 0 0 +3421 1 1.7106 1 314.78818752684106 288.2876664645747 0 0 0 0 +3452 1 1.7035 1 301.0633786366566 296.412454218831 0 0 0 0 +3486 1 1.6962 1 305.45937895211927 319.24510376829255 0 0 0 0 +3490 1 1.6957 1 322.02330730054996 311.7010092859719 0 0 0 0 +3509 1 1.6923 1 303.9474243440642 325.6146923072403 0 0 0 0 +8076 1 1.1088 1 307.9832404409204 287.9155855499306 0 0 0 0 +3526 1 1.6884 1 308.1652892431953 330.49607431671933 0 0 0 0 +407 1 4.9035 1 297.68460238088636 293.1110672688262 0 0 0 0 +3552 1 1.6809 1 285.7356988756311 308.96083219108385 0 0 0 0 +3564 1 1.6776 1 308.80791727553174 308.0339118501415 0 0 0 0 +3575 1 1.675 1 307.0325378675102 318.720996019639 0 0 0 0 +3588 1 1.6738 1 284.79229172210313 317.1334896232179 0 0 0 0 +3599 1 1.6713 1 289.05183135959413 303.1466512180545 0 0 0 0 +3637 1 1.6649 1 312.4416469183404 329.49251224701095 0 0 0 0 +3647 1 1.6628 1 287.18221529762064 305.31290699649236 0 0 0 0 +9549 1 1.0233 1 308.31473162644295 302.4639264935758 0 0 0 0 +3701 1 1.646 1 317.09263752569177 289.45999837055336 0 0 0 0 +3735 1 1.6423 1 306.31955756778797 301.47162931796936 0 0 0 0 +3755 1 1.6389 1 305.14116370571116 300.3851167053849 0 0 0 0 +3758 1 1.6379 1 319.9817268896088 302.015511896765 0 0 0 0 +8949 1 1.0552 1 285.6944402385954 311.1919179071896 0 0 0 0 +3787 1 1.6328 1 293.07418871834847 325.2998735430618 0 0 0 0 +8404 1 1.0875 1 291.6307675182438 288.03794638539307 0 0 0 0 +7651 1 1.1403 1 289.1406227168547 287.40509948267487 0 0 0 0 +3896 1 1.6088 1 313.12770792136615 299.1541672182482 0 0 0 0 +3907 1 1.6062 1 285.93763078756956 315.98455388367233 0 0 0 0 +3918 1 1.6034 1 292.49729538644755 328.81573928306614 0 0 0 0 +992 1 3.1884 1 308.14972643292754 284.50727464036254 0 0 0 0 +3985 1 1.5893 1 309.7331133911293 292.40527640806147 0 0 0 0 +4165 1 1.5557 1 280.10208727940943 300.93636881079544 0 0 0 0 +4173 1 1.5544 1 322.9483243299305 315.72734456006583 0 0 0 0 +8169 1 1.1028 1 297.0390719482408 281.1224328703127 0 0 0 0 +4242 1 1.543 1 314.28152686887506 289.81075035274074 0 0 0 0 +4256 1 1.5411 1 286.0581514710767 330.13956511788996 0 0 0 0 +362 1 5.249 1 289.34708105133876 283.71014426973096 0 0 0 0 +4295 1 1.5335 1 306.1206462410671 307.6214999534775 0 0 0 0 +4296 1 1.5332 1 319.25260714112744 307.2056912490548 0 0 0 0 +4308 1 1.5313 1 307.85717996905714 301.10005941317263 0 0 0 0 +4309 1 1.5311 1 319.5671702419052 292.79318248868327 0 0 0 0 +1306 1 2.7866 1 305.26126948052655 294.57206441145775 0 0 0 0 +75 1 10.514 1 289.06979338744605 293.2267834313956 0 0 0 0 +4412 1 1.5132 1 283.34021410745606 288.98094448364503 0 0 0 0 +4473 1 1.5022 1 322.0158524953677 313.2725952981307 0 0 0 0 +4475 1 1.502 1 306.9234555283961 295.90553528906815 0 0 0 0 +4515 1 1.4946 1 310.62182983022024 323.6787320559725 0 0 0 0 +4557 1 1.4879 1 307.04790757837134 312.42393554763237 0 0 0 0 +6850 1 1.2075 1 303.9891029855722 301.1547424693719 0 0 0 0 +6042 1 1.2902 1 281.8090701288888 316.3015770937008 0 0 0 0 +4592 1 1.4817 1 302.90719902698567 324.459474643787 0 0 0 0 +4700 1 1.4648 1 305.65428130971515 311.99305335132993 0 0 0 0 +4701 1 1.4647 1 306.1122430930289 325.07987239311944 0 0 0 0 +4736 1 1.4586 1 287.38338304414617 306.84453959691206 0 0 0 0 +4741 1 1.4576 1 290.09330988917 302.0535945503846 0 0 0 0 +4750 1 1.4569 1 282.64030672427407 293.4164861247734 0 0 0 0 +4843 1 1.4426 1 291.2976657489066 316.643702382649 0 0 0 0 +4864 1 1.4393 1 314.61604927978675 299.4625067463113 0 0 0 0 +4900 1 1.4324 1 305.7118130772331 306.1984971976944 0 0 0 0 +4932 1 1.4283 1 314.4119978079898 298.08918144964224 0 0 0 0 +4959 1 1.4249 1 283.5466144877826 311.3055353773828 0 0 0 0 +5224 1 1.3863 1 279.2979090880055 313.20737055123845 0 0 0 0 +5009 1 1.4195 1 313.86400263230155 295.5384068900298 0 0 0 0 +5013 1 1.4186 1 284.7115511798399 330.6042725140965 0 0 0 0 +5040 1 1.4151 1 296.7558742167808 329.456060810209 0 0 0 0 +5128 1 1.3987 1 289.0234295377236 331.23812919185514 0 0 0 0 +9651 1 1.0179 1 298.767163046143 329.85047717114674 0 0 0 0 +8005 1 1.1142 1 283.83268180845226 318.7497924716668 0 0 0 0 +7096 1 1.1862 1 313.02305844586004 283.51768900135465 0 0 0 0 +5201 1 1.3884 1 286.0730518192375 306.33681454276973 0 0 0 0 +9269 1 1.0382 1 309.2214899920509 326.37107685013996 0 0 0 0 +5250 1 1.3818 1 318.11263803053004 286.9730132196687 0 0 0 0 +5267 1 1.3804 1 283.61551496752185 299.9457593521576 0 0 0 0 +9941 1 1.0033 1 319.1470518125073 287.4826276735192 0 0 0 0 +5325 1 1.3726 1 289.5584894892741 315.1432600627839 0 0 0 0 +5334 1 1.3716 1 282.552311983692 313.65900398074507 0 0 0 0 +5369 1 1.3677 1 300.6459186291127 328.3494991254826 0 0 0 0 +5450 1 1.3564 1 282.36341709763735 299.7138356877637 0 0 0 0 +5481 1 1.3526 1 303.23024570918056 302.15466400776575 0 0 0 0 +8382 1 1.0883 1 310.2071948973405 285.0772834089083 0 0 0 0 +1712 1 2.4148 1 289.7707944995886 279.9271643272293 0 0 0 0 +968 1 3.2206 1 293.7548747180599 288.322990600374 0 0 0 0 +5553 1 1.344 1 307.67179426384274 315.55263178154155 0 0 0 0 +5574 1 1.341 1 315.6759688358997 298.5431769978845 0 0 0 0 +5602 1 1.3371 1 298.1248615436528 321.9408735659247 0 0 0 0 +5614 1 1.3356 1 310.6624957901997 302.1952267697121 0 0 0 0 +5628 1 1.334 1 288.34028510792024 304.4295086697927 0 0 0 0 +5634 1 1.3334 1 299.80679575229755 329.36306641512704 0 0 0 0 +5690 1 1.3269 1 284.9023485990629 283.54983447107105 0 0 0 0 +3162 1 1.7764 1 297.244118096944 282.51438807758586 0 0 0 0 +5705 1 1.3249 1 283.4116263835759 294.52369578258583 0 0 0 0 +5720 1 1.3242 1 306.49941504961777 292.93634774629453 0 0 0 0 +988 1 3.1965 1 297.2787214567767 288.2430283781297 0 0 0 0 +67 1 11.3032 1 302.9364314353978 279.40564692981604 0 0 0 0 +4150 1 1.5583 1 322.4538860822263 287.5487351789418 0 -1 0 0 +4711 1 1.4627 1 294.8305610759934 291.85797529983523 0 0 0 0 +5775 1 1.3166 1 317.9371633781046 288.2781946474432 0 0 0 0 +5790 1 1.3154 1 309.223486440493 327.93690013567254 0 0 0 0 +5823 1 1.312 1 314.33936861374843 286.7948381005632 0 0 0 0 +5840 1 1.3106 1 282.70416183038026 312.3318883247298 0 0 0 0 +5874 1 1.3081 1 309.25253437013083 300.8663788709816 0 0 0 0 +5916 1 1.3032 1 298.4049520193716 328.7735521073352 0 0 0 0 +5919 1 1.3029 1 307.0168597985224 306.35593479496436 0 0 0 0 +5926 1 1.302 1 311.9310688887164 319.96308904625386 0 0 0 0 +5997 1 1.2951 1 297.8778575163283 323.2235213299951 0 0 0 0 +6007 1 1.2936 1 294.8333397995237 294.0964716946533 0 0 0 0 +6013 1 1.2933 1 294.4629066847906 325.6115643175665 0 0 0 0 +6359 1 1.2561 1 292.4734496791387 282.9475771319251 0 0 0 0 +6056 1 1.2882 1 288.43657305233046 330.0437353102915 0 0 0 0 +6104 1 1.283 1 285.75974648356276 305.04932121083476 0 0 0 0 +9921 1 1.0043 1 302.1617299641369 301.47364225044345 0 0 0 0 +6142 1 1.2794 1 284.68153624799635 286.72633717695726 0 0 0 0 +3566 1 1.6774 1 325.9856726646154 326.678816459351 0 -1 0 0 +6175 1 1.2749 1 326.32549661018237 308.44570784331705 0 0 0 0 +6198 1 1.2717 1 287.685779916095 311.7886515871585 0 0 0 0 +6237 1 1.2664 1 287.20508624678473 308.5858039986861 0 0 0 0 +6239 1 1.2663 1 320.97540693401044 303.0433874393758 0 0 0 0 +6268 1 1.2633 1 297.466995192925 324.4246430718629 0 0 0 0 +6280 1 1.2621 1 286.2954896351628 307.6297136117755 0 0 0 0 +6324 1 1.259 1 308.32412508156693 292.5144944878033 0 0 0 0 +5086 1 1.4063 1 321.1181443485187 331.524609459032 0 0 -1 0 +6338 1 1.2581 1 315.7532634301944 296.34459608001396 0 0 0 0 +6355 1 1.2564 1 295.0868864561001 318.18015500035955 0 0 0 0 +9274 1 1.038 1 306.80764332580145 300.28771131709095 0 0 0 0 +6409 1 1.2509 1 286.45327313102894 312.02565678854234 0 0 0 0 +3128 1 1.7851 1 327.6594101104977 326.2525127032884 0 -1 0 0 +8839 1 1.0609 1 301.30798485167696 329.2898321872633 0 0 0 0 +6470 1 1.246 1 315.11005603237567 303.2013040680023 0 0 0 0 +9107 1 1.0469 1 299.08267184809034 327.21799837552663 0 0 0 0 +6482 1 1.245 1 320.19816637214615 308.1850101148038 0 0 0 0 +6484 1 1.245 1 309.3768579582424 302.0902255949296 0 0 0 0 +6509 1 1.2421 1 301.5456326200527 322.6331511204749 0 0 0 0 +9046 1 1.0501 1 321.8839564108094 304.19473000854316 0 0 0 0 +9535 1 1.0241 1 284.7094656080229 311.17235583780285 0 0 0 0 +5082 1 1.4075 1 284.6998879198012 289.27190056876475 0 0 0 0 +6572 1 1.2352 1 318.22974663590685 292.60854008430977 0 0 0 0 +6612 1 1.2308 1 310.7385074093423 291.3762288155323 0 0 0 0 +1233 1 2.8731 1 292.3597637986439 279.6898389351381 0 0 0 0 +6633 1 1.2288 1 314.5640418290841 296.65908866526496 0 0 0 0 +8722 1 1.0685 1 292.3822453994176 317.237279053074 0 0 0 0 +6653 1 1.2266 1 320.7946195145385 304.2457412360853 0 0 0 0 +9665 1 1.0173 1 295.66910774962196 290.97701205705454 0 0 0 0 +6675 1 1.2247 1 284.0267839219575 296.1895064348393 0 0 0 0 +1795 1 2.3602 1 307.72821654883666 294.1575520687505 0 0 0 0 +4828 1 1.445 1 282.3965961047649 279.4390740570102 0 0 0 0 +9742 1 1.013 1 291.43249835370244 298.4421297259811 0 0 0 0 +6742 1 1.2188 1 315.68096026594543 289.40913103996763 0 0 0 0 +6751 1 1.218 1 313.3773647364068 328.4233825516619 0 0 0 0 +6781 1 1.2152 1 318.7502681127912 291.52700000512357 0 0 0 0 +2921 1 1.8569 1 285.25211813682046 326.451125746649 0 0 0 0 +9877 1 1.006 1 306.14690967496733 299.5413535220117 0 0 0 0 +6536 1 1.2387 1 317.9471962951212 290.60366117101586 0 -1 0 0 +2515 1 2.0056 1 302.65969300088483 295.53367250264444 0 0 0 0 +7474 1 1.1548 1 323.0215551258024 330.40472448378705 0 0 -1 0 +6971 1 1.1965 1 320.20156917899294 287.289218296728 0 0 0 0 +6998 1 1.1944 1 286.6770246944004 326.87574007362707 0 0 0 0 +7098 1 1.1862 1 288.64842886654446 316.0020698200792 0 0 0 0 +7105 1 1.1853 1 298.8781629592122 299.8382013482991 0 0 0 0 +7151 1 1.1823 1 284.8528901744334 310.08285362213 0 0 0 0 +5820 1 1.3124 1 297.6842763677039 283.9505152673201 0 0 0 0 +2116 1 2.1719 1 295.4235833462288 283.11463720645787 0 0 0 0 +7216 1 1.1766 1 283.3031570190731 292.28295896004397 0 0 0 0 +7245 1 1.1742 1 311.096139462988 292.5285504079207 0 0 0 0 +7507 1 1.1519 1 282.24843221219095 289.729056924331 0 0 0 0 +7330 1 1.1681 1 303.07747814042807 315.69003883688293 0 0 0 0 +5150 1 1.3961 1 293.6900926521296 283.35511627508487 0 0 0 0 +7403 1 1.1611 1 290.107373771679 316.21626198339214 0 0 0 0 +7470 1 1.1552 1 294.0155080178891 299.958772993051 0 0 0 0 +7502 1 1.1521 1 303.6193056597476 300.0476369206622 0 0 0 0 +7616 1 1.1431 1 290.08678983579114 286.77937927042217 0 0 0 0 +2233 1 2.1216 1 330.29784043047727 313.070075893607 0 -1 0 0 +7550 1 1.1482 1 301.08860702788724 327.21413103894645 0 0 0 0 +1142 1 2.9693 1 294.42532091565886 285.3806818954175 0 0 0 0 +8464 1 1.0835 1 302.3153938351356 294.0672760496131 0 0 0 0 +7587 1 1.145 1 320.1227917939237 317.84944875634227 0 0 0 0 +7599 1 1.144 1 308.26507258841923 295.73648830254393 0 0 0 0 +7618 1 1.1431 1 284.82172820715 329.33841087758736 0 0 0 0 +7769 1 1.1309 1 287.50067405768453 298.93926592056107 0 0 0 0 +8077 1 1.1087 1 295.4911930914591 287.09314036073755 0 0 0 0 +7841 1 1.1265 1 289.6250444915375 327.0441060649176 0 0 0 0 +7859 1 1.124 1 311.4576551192985 298.2951550814647 0 0 0 0 +7865 1 1.1235 1 306.79106600091296 305.18442849073153 0 0 0 0 +7866 1 1.1235 1 297.8119237943379 299.6731344110943 0 0 0 0 +7880 1 1.1228 1 284.8584025264398 327.8390804259806 0 0 0 0 +7885 1 1.1223 1 302.5403524136066 323.2375781336048 0 0 0 0 +7961 1 1.1172 1 323.885128520913 306.321497777883 0 0 0 0 +6187 1 1.2735 1 284.14556388722696 287.8703973812401 0 0 0 0 +7200 1 1.178 1 296.062930942944 281.6427668061992 0 0 0 0 +8071 1 1.1097 1 296.9699076006895 321.5907509605208 0 0 0 0 +6148 1 1.2784 1 325.50166124035724 307.55620826262185 0 0 0 0 +6950 1 1.1982 1 279.40715721882106 311.95140841486 0 0 0 0 +3229 1 1.758 1 286.7660672230042 281.37108041943577 0 0 0 0 +5854 1 1.3095 1 288.11958787863256 280.7132895539055 0 0 0 0 +6667 1 1.2252 1 311.3400331637133 284.8557335612621 0 0 0 0 +9370 1 1.0325 1 311.4780257641658 321.01130944396175 0 0 0 0 +9084 1 1.048 1 307.3430601169599 308.0094695686759 0 0 0 0 +9618 1 1.0198 1 291.0247920772318 281.0837053092217 0 0 0 0 +8248 1 1.0978 1 310.01958903075257 327.0467747140026 0 0 0 0 +9762 1 1.0119 1 314.1912647355542 284.6168411709903 0 0 0 0 +8337 1 1.0916 1 312.00840847902134 302.9649910105928 0 0 0 0 +9184 1 1.0429 1 306.29935761440885 328.0194534830355 0 0 0 0 +8358 1 1.0902 1 291.1404715029589 301.3962599094869 0 0 0 0 +8381 1 1.0883 1 312.51721804001306 325.82957731256266 0 0 0 0 +1561 1 2.5238 1 292.20926997918417 299.98846614306433 0 0 0 0 +8386 1 1.0882 1 284.98901465245774 315.05460635051327 0 0 0 0 +8392 1 1.0879 1 320.7911942592211 305.38331111683556 0 0 0 0 +8418 1 1.0865 1 310.8636186443878 297.40003647438607 0 0 0 0 +6208 1 1.2707 1 331.47777594401595 281.51605564865264 0 0 0 0 +9483 1 1.0268 1 278.91425427478947 290.6742213376094 0 0 0 0 +8765 1 1.0654 1 299.4402737046808 328.2159369768771 0 0 0 0 +9037 1 1.0506 1 304.99610066952647 313.064209549212 0 0 0 0 +8517 1 1.08 1 302.173343766113 297.17075831677596 0 0 0 0 +8539 1 1.0787 1 287.23413745496913 316.2285189789072 0 0 0 0 +7360 1 1.1648 1 305.9521076456078 285.00834304401695 0 0 0 0 +8558 1 1.0775 1 312.0558641728134 306.25959212137667 0 0 0 0 +8574 1 1.0767 1 315.1227053993391 285.39393014453435 0 0 0 0 +8627 1 1.0732 1 300.59407624358715 319.43365818393136 0 0 0 0 +9465 1 1.0276 1 320.58118232851416 309.20720131957944 0 0 0 0 +8632 1 1.073 1 305.396674611701 314.0391603996068 0 0 0 0 +5131 1 1.3985 1 324.5507401714447 311.32115666880605 0 0 0 0 +3824 1 1.6219 1 323.9658337502352 316.8518406385568 0 -1 0 0 +8165 1 1.1034 1 303.38562090275343 294.1806443426094 0 0 0 0 +8668 1 1.0713 1 315.7004212058349 302.3350201097076 0 0 0 0 +8679 1 1.0711 1 306.03829505200093 313.1917527287274 0 0 0 0 +8714 1 1.0691 1 317.8985356339155 298.88239840570236 0 0 0 0 +5701 1 1.3258 1 286.11855477251834 282.74671101881427 0 0 0 0 +5175 1 1.3919 1 308.50150724952005 282.2877452542452 0 0 0 0 +812 1 3.5593 1 310.8881136566643 282.5460149858361 0 0 0 0 +6366 1 1.2555 1 285.5241138559186 280.59086612637236 0 0 0 0 +2359 1 2.0624 1 293.85419130127633 281.64507616210983 0 0 0 0 +5892 1 1.3057 1 284.35199048597065 280.19107655071747 0 0 0 0 +4914 1 1.4303 1 309.12638737758095 280.80932440328365 0 0 0 0 +2232 1 2.1234 1 281.191947090627 314.747537718657 0 0 0 0 +6849 1 1.2077 1 283.17104968165586 280.48432329015526 0 0 0 0 +6389 1 1.2525 1 329.9601808619132 283.4991693964177 0 -1 0 0 +7592 1 1.1445 1 284.30107991301253 278.988760558823 0 0 0 0 +72 1 10.8701 1 278.95978030564066 284.75716901845516 0 0 0 0 +6095 1 1.2839 1 281.0646667769287 279.179564227403 0 0 0 0 +4230 1 1.5459 1 295.3350349897058 331.602494685683 0 0 0 0 +2606 1 1.9658 1 287.3702756086272 331.1912558608691 0 0 0 0 +801 1 3.5868 1 295.5309810877995 279.381144115829 0 0 0 0 +4964 1 1.4242 1 290.3079008132143 331.73570424430517 0 0 0 0 +6706 1 1.2216 1 297.7376882612985 330.2126980687604 0 0 0 0 +8919 1 1.0564 1 279.05167720291803 278.8687787200839 0 0 0 0 +5744 1 1.3214 1 315.358850041826 330.61515126020333 0 0 0 0 +1412 1 2.6674 1 309.8600992027315 278.9106915088702 0 0 0 0 +7166 1 1.1807 1 278.49468524657163 301.8551103303546 0 0 0 0 +8125 1 1.106 1 280.0638387038908 278.5389061632388 0 0 0 0 +8441 1 1.0851 1 322.2338726676927 331.10986987366584 0 0 0 0 +6976 1 1.1962 1 319.881781735262 331.6845357950153 0 0 -1 0 +6337 1 1.2582 1 296.48492361322945 330.765174123569 0 0 0 0 +7189 1 1.179 1 278.695425622686 292.257515344873 0 0 0 0 +2680 1 1.939 1 316.47447008538177 331.73082627362515 0 0 -1 0 +6160 1 1.2761 1 290.9225148003547 278.1901716295705 0 0 0 0 +535 1 4.2476 1 286.8980347545429 278.26474986817976 0 0 0 0 +8425 1 1.0861 1 291.53195516037545 331.78754290098163 0 0 0 0 + +Velocities + +16 5.260666201267501e-05 -0.0009737884709042084 0 0 0 -2.7234396398140292e-05 +6528 0.00019571820982417236 -0.001110325959709673 0 0 0 -0.00011490010995966915 +8976 1.4090809428524827e-05 -0.0010226282861066226 0 0 0 -0.00015547741140055528 +168 0.00021675863166719647 -0.0011869014491254397 0 0 0 -1.1572223867577925e-05 +194 0.0001641151443668019 -0.001097586287646065 0 0 0 1.505868721039182e-06 +208 0.0005162024856164499 -0.0009303595463072028 0 0 0 -1.3440260412127087e-05 +336 0.0003849709779135179 -0.001065017561033697 0 0 0 -2.932519833171004e-05 +346 0.0006926848181723253 -0.0006294330140698434 0 0 0 -1.9139936967534756e-05 +364 0.00015505307535069334 -0.0011706005419170628 0 0 0 -9.640200937952352e-06 +412 0.00072186341813633 -0.0006760823041527376 0 0 0 -1.6352854520428083e-05 +439 0.0002737204102380885 -0.0011139295462731374 0 0 0 -1.8737452069264012e-05 +511 0.00022999952016798935 -0.0011071148908364916 0 0 0 -1.8615264430771876e-05 +527 -0.00010116115016313586 -0.0010066473223883333 0 0 0 -2.827228631850173e-05 +529 0.0008204070610662049 -0.00047554474459611935 0 0 0 -2.492656016060926e-05 +543 0.0005889373994365686 -0.0008379095701302459 0 0 0 -4.284927362499234e-05 +5300 0.0004390941768035999 -0.0005392641468062594 0 0 0 -3.907549779222174e-05 +569 0.0005667176135047981 -0.0005387722289699932 0 0 0 -4.298078413058237e-05 +4350 0.0008738156133875797 -0.00037626513614631067 0 0 0 -1.1875814586790355e-05 +629 0.0006453212595244072 -0.001126542527660624 0 0 0 -8.705535943637418e-05 +3990 -2.3676686807817543e-05 -0.0012014804017280035 0 0 0 -5.66002840376957e-05 +675 0.0005596261297357477 -0.0010188177144024948 0 0 0 -1.552895012476579e-05 +9041 -0.0003424868526883643 -0.0010999304307253786 0 0 0 1.3779279385797152e-05 +816 0.0006244784892988011 -0.0006767284132300886 0 0 0 -3.057674491970027e-05 +818 0.0005161186741222359 -0.001007323600092597 0 0 0 1.3722793540263083e-06 +826 0.0001828491286474793 -0.0010757751728556304 0 0 0 4.7686325983363374e-05 +839 0.0005606918356476915 -0.0009687350978425316 0 0 0 -1.863714906098011e-05 +2313 0.0011164754343111099 -0.0014153485766581477 0 0 0 7.581858915442339e-05 +8135 -0.0002666423348320579 -0.001084344993713134 0 0 0 1.404556696460057e-05 +8715 0.0005502682438415883 -0.0009293979122768383 0 0 0 -5.657722264796631e-06 +924 0.0006640868874371912 -0.001062905144133248 0 0 0 -3.410239356685334e-05 +936 0.0006862461427985465 -0.0005363548328029536 0 0 0 -2.760470686480755e-05 +1686 0.0008816113373023975 -0.00035210772103061856 0 0 0 -1.6407818994673824e-05 +8693 0.0007899227030517169 -0.00043095132517529343 0 0 0 -2.1121780543415322e-05 +9386 -0.00022393000491950266 -0.0010102911800340406 0 0 0 9.600084058613292e-05 +1098 -0.00016620287173294096 -0.001062661708312781 0 0 0 -4.500478948943344e-05 +7031 0.000344945480070324 -0.0006007905213091797 0 0 0 -0.00010719628996953159 +1146 0.0004593405875556538 -0.0010189660389991583 0 0 0 -3.490240960996041e-05 +1205 0.0006463187923864633 -0.0008330591772992501 0 0 0 -4.8338663317403334e-05 +1238 8.333418459152942e-05 -0.0009855505531073097 0 0 0 -7.974421904670588e-05 +1253 0.0005813408953650657 -0.0007951902476273679 0 0 0 -2.169226751116553e-05 +1292 0.0006773422078070226 -0.0010392328633965667 0 0 0 -1.383059655972834e-05 +1297 0.0008059290072023003 -0.0005369165635006548 0 0 0 -1.5963795669697432e-05 +1311 0.0006074995365258996 -0.0009080959045994098 0 0 0 -2.0810884384350985e-05 +1335 0.0007790864555844503 -0.001139842253710212 0 0 0 -5.9714038401470044e-05 +9282 0.0006937282407469968 -0.0007044834055314071 0 0 0 4.442045040172109e-05 +1020 -1.686906462290563e-05 -0.0011541993593339854 0 0 0 0.00010436049065448812 +6758 -9.450079657573074e-05 -0.0011299194716986461 0 0 0 0.00019996641962908996 +1475 0.0004535434184928422 -0.0010006914924383594 0 0 0 -5.419820628663541e-05 +7604 -3.2645459536491816e-05 -0.0009948341583718527 0 0 0 -0.00015340287842924638 +9200 0.0005322411434162163 -0.0009800860557582383 0 0 0 -4.798548763528776e-06 +2244 -0.00017139922158470716 -0.000984881282138165 0 0 0 -0.00013826532395795672 +4472 0.0004123678888043022 -0.0013694920549642295 0 0 0 -0.00016611980449318816 +2271 0.0004402634116055396 -0.0012311515779145773 0 0 0 -0.00043314497467424474 +2824 0.000870132893101487 -0.00039996529175226385 0 0 0 -5.108071119883511e-06 +5921 -0.00012057862809916798 -0.001001493846264318 0 0 0 -0.00013340528860949797 +1886 0.0001774103490599119 -0.0010890252339777915 0 0 0 -4.293601483494469e-06 +1932 5.5688093364711523e-05 -0.0011152385902916668 0 0 0 -8.777316973925895e-05 +1989 0.0003555505601308757 -0.000987528458743778 0 0 0 -4.556583491732661e-05 +1143 -0.00020056360823985465 -0.001008625529370378 0 0 0 1.0597689851413565e-05 +9159 -7.624307039457997e-05 -0.0009442555366014967 0 0 0 6.892094151723941e-05 +1246 -5.74608727409478e-05 -0.0009858139198466423 0 0 0 -3.1430527501531164e-06 +8536 0.0006104646957813753 -0.0010175302930613612 0 0 0 0.00017045080012012746 +5856 0.00026170570966213335 -0.001108778994396942 0 0 0 0.0002467110599496343 +9822 0.000107238527177807 -0.0014047350357938233 0 0 0 -0.00023268493585492818 +2405 0.0007345260546000645 -0.0005379616933588886 0 0 0 -2.7191973888398515e-05 +2408 0.0008116029924261863 -0.0011305668780190136 0 0 0 1.0028721051155337e-05 +8638 0.0011609969647352087 -0.001438507036026068 0 0 0 0.00010825776480023691 +2545 0.0005128790049286472 -0.0008760603347065103 0 0 0 1.1021844340029044e-05 +6729 0.0009009474387847207 -0.0014309735646262538 0 0 0 -6.815161182486279e-05 +2561 0.0004911025105173086 -0.0011042599770779372 0 0 0 -7.165512205246814e-05 +567 0.000737629555488592 -0.0004130313781541839 0 0 0 -2.6616536098924267e-05 +2629 0.0006517212812218326 -0.0009556206506858514 0 0 0 -3.943657801942823e-05 +2631 0.0005460741709019635 -0.0007760087967750046 0 0 0 -5.007316290519581e-05 +2671 0.0005806857643199057 -0.0009936619947800245 0 0 0 -1.780125690588041e-05 +6562 7.110994843991767e-05 -0.001045029669410604 0 0 0 -0.00024589053067737316 +8927 0.0005450044317287826 -0.0010145752540893145 0 0 0 -1.0210535253510263e-05 +2753 0.0003815748609361014 -0.0010846774419017216 0 0 0 -7.205599385953025e-05 +2797 0.00027383251269930223 -0.0010480653497154694 0 0 0 1.6070212359168004e-05 +2836 0.0005986455921908871 -0.0008628730345665432 0 0 0 3.831626418729631e-05 +2843 -0.0002513183944295039 -0.0010286495949539207 0 0 0 -8.3655689099792e-05 +2243 -3.47652760609164e-05 -0.0010269397712565436 0 0 0 0.0001162483177884395 +8984 6.542270274341202e-05 -0.0010483149125556663 0 0 0 0.0004447800787960479 +3020 0.0006321270717388173 -0.00047408425984554417 0 0 0 -2.6665236374342818e-05 +1803 0.0002526150357012737 -0.0011106902547617478 0 0 0 0.0001714171145948115 +3094 -6.266377526950498e-06 -0.0010104718900096348 0 0 0 0.00014632316587040418 +3114 0.0006643103200322092 -0.0009900592418189478 0 0 0 -4.196525593077896e-05 +3151 0.00013431729586349395 -0.0010942601269103038 0 0 0 -3.831141383172267e-05 +3218 0.0005374326310802249 -0.0006931716819448423 0 0 0 -2.102426737398406e-05 +3295 0.00017202969901436882 -0.0012059719910659664 0 0 0 7.4779225680755695e-06 +3315 0.0008380002559738165 -0.00047661890844174137 0 0 0 7.013001615308849e-06 +3336 0.0001299098324962057 -0.0011217269562313055 0 0 0 -4.8102725577265494e-05 +3351 0.0005546529722586963 -0.0011475286156838495 0 0 0 -2.3391632117849736e-05 +9959 0.000873655484763616 -0.001443131497499907 0 0 0 0.0004704500007709196 +3396 0.0007848828169512412 -0.0005706865504217039 0 0 0 -2.256811893195642e-05 +3409 0.0006764954098117352 -0.0004591814748964721 0 0 0 -2.3115030998933626e-05 +3418 0.00044865971390393907 -0.001319565682210028 0 0 0 -0.0004542482269346527 +3433 0.000433099403035054 -0.001021130926661477 0 0 0 -4.246115021286196e-05 +9495 0.0006066203430251525 -0.0008105404056152699 0 0 0 -3.8589589044933706e-05 +3439 0.0006125236456660533 -0.0011402795855105807 0 0 0 3.713003837508478e-05 +3440 0.00025166503946110884 -0.0011055388237445314 0 0 0 9.274885508791432e-05 +3453 0.00018335427888569508 -0.0010878775762909365 0 0 0 6.515534906867633e-06 +3472 0.00033172029933609695 -0.0011210725012470186 0 0 0 -3.555063943239292e-05 +4261 -7.598715718209165e-05 -0.0009812671070863776 0 0 0 -0.00018567007121504523 +5007 0.0009100421661890592 -0.0013347872443376808 0 0 0 0.00024149326199627693 +3549 0.0004663718327346011 -0.0011463805773265522 0 0 0 -0.00012127900030389058 +3590 0.0008560429069625773 -0.0011501663499067067 0 0 0 6.443411398721765e-05 +3604 0.0002312146277110305 -0.001125929578691738 0 0 0 4.3661640874012625e-05 +9545 0.0008816124981451111 -0.00036539223106424903 0 0 0 1.1785061597893256e-05 +3661 0.00019697051647567202 -0.0010681161013584954 0 0 0 -0.00014875942393308464 +3723 0.0006420171138794506 -0.0006940614019153478 0 0 0 2.5605594339371588e-05 +8580 0.00043470294139624175 -0.0009741919140884478 0 0 0 -5.807636754315451e-05 +3889 0.0006445949420247007 -0.001032034895276005 0 0 0 -2.7070019498105275e-05 +2760 0.0001786609482763063 -0.0013741592098438047 0 0 0 8.348721179093476e-05 +605 0.00014322700032729348 -0.0012276540237187766 0 0 0 1.7557628514001208e-05 +4000 0.0006418253009271481 -0.0005490374731628013 0 0 0 -1.7622839515121166e-05 +4024 0.0002807486752447257 -0.0011152509067736038 0 0 0 -4.150143053212365e-05 +4050 0.0008396206353819694 -0.0011467694232212154 0 0 0 1.2224639291307737e-05 +4056 0.0004371664088975271 -0.0006425819995548089 0 0 0 -4.562342564830324e-05 +1375 0.0003282687352266503 -0.0009983155759576076 0 0 0 1.1010058337713016e-06 +4119 0.0001118885584821738 -0.0010036602857942092 0 0 0 5.134832157089584e-05 +9783 0.0005449138791906215 -0.0011725730277465 0 0 0 0.0001091376597779741 +4138 0.0006176813297866427 -0.0007765885711059788 0 0 0 -1.8272851944423534e-05 +1030 0.000834575483272307 -0.00037051605339447324 0 0 0 -2.314058078719048e-05 +4180 0.0005851632756480686 -0.0008825765324622617 0 0 0 -0.00014695440539439747 +3303 0.0008719079264244533 -0.0014696387841517528 0 0 0 -0.0003071746394133042 +4252 0.0006858521755139744 -0.0007414209640688951 0 0 0 -2.767817740079911e-05 +6789 -0.0002345848278925385 -0.0007213347247361568 0 0 0 -1.1579967318999195e-05 +4323 0.00014756967111343095 -0.0011599909789803424 0 0 0 0.00013954960926316129 +8369 0.00018965899012420866 -0.0011736806719962773 0 0 0 -5.209719210980024e-05 +9343 -8.740148620884661e-05 -0.001008798686059665 0 0 0 5.685009939685943e-05 +4451 0.0004646921907332238 -0.0011041906617024117 0 0 0 6.088829327000842e-07 +2775 0.0010679315839980128 -0.0014209737799283503 0 0 0 -0.00024390107034034765 +4480 0.000683982468692989 -0.0010743044510191683 0 0 0 3.011103100463209e-05 +4497 0.0006334999689681687 -0.0010660713913046883 0 0 0 7.655018468257872e-06 +4143 -0.00025354367825999256 -0.0008789332267968127 0 0 0 2.8228125976581975e-05 +4522 0.0005138941153532038 -0.0006597646896768941 0 0 0 -2.7356686638615815e-05 +4527 0.0006175690889164757 -0.0009114525909057309 0 0 0 0.00018932605905101145 +9801 0.0007008395891051291 -0.0006847915043066633 0 0 0 -8.047275776898789e-06 +4624 0.00046276787514804707 -0.0006733403423949172 0 0 0 -5.259706004971785e-05 +4628 0.00018711416161266663 -0.001056114842053136 0 0 0 -2.6169235044583595e-05 +4381 0.0006229731816140658 -0.0014268976067724863 0 0 0 -0.0004120575957209171 +4271 0.000149460856587705 -0.0011798107247927058 0 0 0 -0.00026650906307809435 +6358 0.0008230900415663654 -0.0011296285892627073 0 0 0 -5.824317470310409e-05 +4762 0.0005604834306620633 -0.000850193947138421 0 0 0 -4.743960846745195e-05 +4796 6.918251710816906e-05 -0.0010963072457309832 0 0 0 3.135840122150083e-06 +4820 0.0005841103084763501 -0.0009916935087914156 0 0 0 -1.3393749008524258e-05 +4868 0.00012195233896746514 -0.0010670911123132473 0 0 0 3.7592652978967475e-05 +4872 -0.0006888467228305715 -0.00011608502131259702 0 0 0 -0.0010453750829494959 +4893 -0.0020269759761392873 -0.0013304347312193343 0 0 0 0.00016834379766501184 +4913 0.0001339775778796571 -0.0011774888132346278 0 0 0 -0.00015774018633993346 +4950 0.000632826515291389 -0.0007790479974659567 0 0 0 5.128101584621582e-06 +4998 0.00022080681011068777 -0.0011704423559928965 0 0 0 0.00015972248666986012 +4989 0.0007951259924195672 -0.00040190902766224857 0 0 0 -1.025759696299711e-05 +5063 0.0007715123377189301 -0.0004588501089446397 0 0 0 -2.6658456655256867e-05 +5068 0.0006744820579456636 -0.0007918377754984863 0 0 0 -6.329568894689969e-05 +5108 0.00036808863898389073 -0.001018089527477623 0 0 0 1.4877086713952393e-05 +5123 0.000810896877208807 -0.0005848133028981609 0 0 0 -1.2717491443340956e-05 +6628 0.000876611441575295 -0.00037102141700674876 0 0 0 -7.619148508758756e-06 +5190 0.00018969930141976877 -0.0011321366207418606 0 0 0 -3.403817357543042e-05 +9707 0.00033078573169291654 -0.0011762930619962876 0 0 0 -4.114144521747181e-05 +5266 0.0005699351037398053 -0.0006546856730111019 0 0 0 -3.234268987265199e-05 +6557 0.0008744904078156651 -0.00029733114769668357 0 0 0 -1.7702053484595348e-05 +9552 0.0007262123231962438 -0.0006383413651887656 0 0 0 3.773044553823018e-05 +5363 0.00036403210271021146 -0.0011152552875888708 0 0 0 -3.822048866894598e-05 +7372 0.001235007393235009 -0.0013192206218055485 0 0 0 -0.00010169601354580284 +5390 0.0005813226068218109 -0.0009669571364679156 0 0 0 -3.685018519122161e-05 +5437 0.0002235747705387632 -0.001250876406187135 0 0 0 0.00011966458972570425 +5510 0.0001858042885734854 -0.0010951256567272233 0 0 0 -1.4334359699456336e-05 +8020 0.00044667584748858945 -0.0005609957494597422 0 0 0 -2.9924874836870677e-05 +1746 8.541657579884273e-05 -0.0012264021097235377 0 0 0 -0.00012307858306658323 +5549 0.0007899422106364691 -0.0011323892121259244 0 0 0 4.133034387619308e-05 +5576 0.0005499525821082662 -0.0010249039424688963 0 0 0 -4.726514852832262e-05 +5587 0.0008987120437633096 -0.0011854178235893137 0 0 0 -0.00013379280259084983 +5601 0.0007956140540395531 -0.0011347455433816736 0 0 0 -5.384614369749362e-05 +5694 0.0005024384271158964 -0.001043321837498584 0 0 0 0.0007020918266225928 +5093 0.00017671404317514335 -0.0013629945959828804 0 0 0 -3.5175691433864904e-05 +5884 0.0005374675823162648 -0.0010544294390419278 0 0 0 -7.90168293149722e-06 +5932 0.00018217895502072831 -0.0009369381305845429 0 0 0 -0.0002629512475511914 +6035 0.00020163426365676446 -0.001166352953537445 0 0 0 -8.31826614216983e-06 +6036 0.0006644963856740894 -0.0006150439831426628 0 0 0 -1.9240938843999951e-07 +6063 0.0007957456345296035 -0.001130234441128115 0 0 0 1.0218814291224135e-05 +6094 -0.001627793092147218 -0.0003226449016310918 0 0 0 -0.0020248156938866475 +6180 0.000263072376665479 -0.0010959811477678904 0 0 0 -4.9606205251758026e-05 +6181 0.0008608126093608692 -0.00043246460081720157 0 0 0 -3.0286919740003956e-05 +9177 0.00030680206044326704 -0.0011537952129363105 0 0 0 0.00010323468386805716 +6432 0.00032453096386856706 -0.0011838334073191457 0 0 0 -8.65601071882027e-05 +5147 0.0008737539537278506 -0.000329264805057081 0 0 0 -3.44566717519364e-05 +6575 0.0012286066008026738 -0.001402645942970153 0 0 0 -0.0015606911836965724 +6626 -1.7759384516563982e-05 -0.0009417707486152259 0 0 0 2.9201604631251154e-05 +6637 0.0007573040268028973 -0.0005453574923277588 0 0 0 -3.686376974028015e-05 +6796 0.0004906293462966992 -0.0007094137075028713 0 0 0 -7.872457230056122e-05 +6803 0.0005770244921971017 -0.0010279694006364681 0 0 0 -2.4831461048053895e-05 +6839 0.0006158797543785261 -0.0005923195744199932 0 0 0 -2.652515728532464e-05 +8455 0.0008532300370429954 -0.0014498132027317829 0 0 0 -0.0002836140513927911 +7940 0.000465387274207153 -0.0006159468912509768 0 0 0 -4.03099135141036e-05 +7008 0.0005516871903039268 -0.001184966414660277 0 0 0 -0.00018246708903065897 +7112 0.00047169613309566266 -0.0012227450301128683 0 0 0 0.0007758754608675421 +7130 0.000511912414530185 -0.0010054006627460324 0 0 0 -1.3352298683736449e-05 +7162 0.0005419192222968462 -0.000981751109869095 0 0 0 6.586460316791586e-05 +7178 0.0006045325370002142 -0.0009394114244557035 0 0 0 -1.6397727868082357e-05 +17 0.0008142651777052075 -0.001439609993524636 0 0 0 1.61286620868881e-05 +7250 0.00019991001499839858 -0.0010725189117528726 0 0 0 -5.2033480111260984e-05 +3258 0.0005927260454288734 -0.0014107394111431092 0 0 0 0.00011872480088666773 +7264 0.0007677580661863441 -0.001124079466419896 0 0 0 1.212125935658422e-06 +6006 0.001214645883817594 -0.0012139938128262657 0 0 0 0.00014077572758645332 +8569 0.0006530393559069476 -0.0005045838145188712 0 0 0 -3.2110290166985006e-05 +2767 0.0010324046181696795 -0.0014059817781240291 0 0 0 -0.00018762493731912182 +7327 0.00042638924784855966 -0.0009453427210586716 0 0 0 -4.534974136811025e-05 +7333 0.00039228049757123796 -0.0006238861199694096 0 0 0 -7.80897539789019e-05 +7379 0.0006817511944290309 -0.0007543097294217896 0 0 0 -5.1991320082678025e-05 +2713 0.00016795570841809292 -0.0007661647517058796 0 0 0 1.2726782334548364e-05 +7460 0.0003459385770811265 -0.0011083391649810367 0 0 0 5.127407431660441e-06 +7473 0.0004983727482731581 -0.0012936650213105291 0 0 0 -0.05328136327054522 +9322 -3.2315061756636336e-05 -0.0010417772141210321 0 0 0 9.473028338658369e-05 +7537 0.0003754322326804708 -0.0011194659308679934 0 0 0 0.00010767280417681122 +7574 0.0006598118055180448 -0.000688598978375267 0 0 0 -6.146787974070875e-05 +7633 0.0003932585141956352 -0.0010882314503610677 0 0 0 -8.530998060436528e-05 +7648 0.0003913136836203237 -0.0009258758181939366 0 0 0 -2.048078370431494e-05 +7661 0.0003684818757913176 -0.0010464106965044604 0 0 0 0.00018912002983876455 +1729 0.0009119517916073438 -0.0002748939273598343 0 0 0 -1.5025783917183934e-05 +7697 0.0003596952120794115 -0.0009752599443044827 0 0 0 6.440472072699488e-05 +7770 0.0007026643465434369 -0.0007380971197751061 0 0 0 -8.272482395537046e-05 +7792 0.00024808291504827224 -0.0011067319817919196 0 0 0 -7.898897965776189e-06 +7814 0.0006553816263312948 -0.0006084327596401067 0 0 0 -4.588849040664379e-05 +7852 0.0007324271145502189 -0.0006282414261449781 0 0 0 -7.004247609737636e-05 +7895 0.0007340132006829059 -0.0010853927541980295 0 0 0 -3.299912781142432e-05 +4785 1.883083245672508e-05 -0.0010059440480689407 0 0 0 0.0001944135764743416 +7941 0.0005573136563861103 -0.0010583905014526784 0 0 0 -1.7822872384583385e-05 +8037 0.0007426005909848055 -0.000692838741803607 0 0 0 3.8946939773368265e-05 +8013 0.0007919220972537336 -0.00038906613399126375 0 0 0 -4.610440665335198e-06 +1904 0.0012611097352962137 -0.0014498651843367152 0 0 0 3.486397987440245e-05 +8182 0.0008193774530766499 -0.0011496928166338826 0 0 0 -2.5524786985730135e-05 +8871 0.000241778213264938 -0.001040617012371423 0 0 0 -2.9337965147227245e-05 +8206 5.0965849050610435e-05 -0.001101827299485236 0 0 0 -0.00021754172458165983 +8285 0.00016346350097430162 -0.001218994898501848 0 0 0 -4.593904063240757e-05 +8302 0.0005695770196621524 -0.0007930544650121129 0 0 0 -0.00010087710321039889 +8319 0.0003927523764757619 -0.0010174539877380983 0 0 0 -2.2235800996676057e-05 +5374 -0.00026520054871215383 -0.001032922376700339 0 0 0 -4.8067298021116966e-05 +5513 -0.00012685425360194937 -0.0011142160218257445 0 0 0 -0.00029374645489852315 +600 0.0011720888564426513 -0.0014323359051789807 0 0 0 1.217116740229445e-05 +4272 -0.0002760799432662459 -0.0010819418168349154 0 0 0 3.999766434208608e-05 +6865 -0.00030766001197879623 -0.00108793828334386 0 0 0 -0.00019463762714302753 +108 0.000255729822754604 -0.0011247780512366142 0 0 0 -4.499152608557396e-05 +7984 0.0012282871967809505 -0.0011962371731312695 0 0 0 -0.00018269239738526378 +2887 -0.00026357937205604705 -0.0010435776521111964 0 0 0 -3.276531879405868e-06 +632 -0.00011363685506252826 -0.001099733361229202 0 0 0 -8.17456865185901e-05 +1570 -0.0002637221981125704 -0.0010916678096815687 0 0 0 1.3354436554912174e-05 +781 0.0006091893921136316 -0.0014039358153910809 0 0 0 -0.00012728313414822574 +9419 0.0011827036701863175 -0.00142958223175878 0 0 0 -0.00011313843299655 +2529 0.000932358671233039 -0.00020893066764184976 0 0 0 -6.164456297120944e-05 +3544 0.00032556377791084003 -0.0012164278771306732 0 0 0 0.0002636050400399003 +9606 -0.0002521818930427298 -0.0010293503709871104 0 0 0 -0.00014091598719630154 +9140 -0.00033043903831204383 0.00016347964373286908 0 0 0 -0.0006837758673152772 +9350 0.0004649098396931777 -0.0011175034418256255 0 0 0 0.0002914535765193722 +1387 0.0012232920732210364 -0.0014450914006803274 0 0 0 3.089416920756813e-05 +5695 -0.0002606851963970851 -0.0010268857130038588 0 0 0 -4.5026482282211324e-05 +7758 0.00036826801345315145 -0.0012111132500332788 0 0 0 -0.0001566958140536454 +4461 0.0001478755279534315 -0.001006755600555852 0 0 0 -0.00011286029434332909 +6108 2.792662354834589e-05 -0.0012016374355519972 0 0 0 -3.0389761657462764e-05 +4222 0.0003175976771762506 -0.0013151844437752286 0 0 0 2.3485940412066554e-05 +9824 0.00021430757373393764 0.0007325877467919678 0 0 0 0.0009667813726309945 +5286 8.550001091467005e-05 -0.0008538106951765053 0 0 0 0.00015431979938829946 +3370 -0.00027243570845027107 -0.001037635608900779 0 0 0 -0.00010720920392019262 +7019 0.0005030319230995505 -0.0013789073748011584 0 0 0 -4.048185322271698e-05 +5774 0.00031553275155684555 -0.0005422606918488252 0 0 0 -7.75814266674714e-05 +4383 0.0008890998370068668 -0.00024528657484794355 0 0 0 -3.682237421255372e-05 +2504 0.0004496846824459885 -0.0004591801383521959 0 0 0 -3.6492253421823615e-05 +8740 0.0006636799653440635 -0.0004290934507327708 0 0 0 -4.534732072720348e-05 +5 0.0014224828198650188 -0.000881970929839604 0 0 0 -2.8502015424964138e-05 +6848 0.0013794998737873393 -0.0004903105114502119 0 0 0 4.3925453246485716e-05 +8029 0.0011904420081047598 -0.00045434172994604613 0 0 0 5.602740397788698e-05 +2135 0.001295320013195667 -0.0005498716153274892 0 0 0 -1.4795476623394338e-05 +9039 0.0013583988035167833 -0.00040743425251705775 0 0 0 -3.006232361859168e-05 +183 0.0013396679679250232 -0.0006795145075811763 0 0 0 3.5556243087967984e-05 +196 0.0015662993435895884 -0.0005965387046021104 0 0 0 -3.7578337782351975e-06 +210 0.0012169146418827238 -0.0007265626238954196 0 0 0 3.9549175035644125e-06 +19 0.0012860081100881818 -0.00046496579559649083 0 0 0 3.3116232470114616e-05 +264 0.0015266791070981521 -0.0008209140293507953 0 0 0 -1.320484737871739e-06 +286 0.001357440994587545 -0.0009345272142532768 0 0 0 2.8672273442948964e-05 +296 0.0013944129292125357 -0.0006153598449945149 0 0 0 3.7629312179159065e-06 +361 0.0017156839698434624 -0.0007349538344378376 0 0 0 2.2703671548122293e-05 +411 0.0009510099742580246 -0.0008920046339701376 0 0 0 3.9810078029391645e-06 +534 0.0015578150943340082 -0.0010942526924656267 0 0 0 6.406461946684565e-05 +546 0.0017668229995422644 -0.0008715021273642057 0 0 0 3.584243316756889e-05 +2384 0.0008949428524664651 -0.0007810631782614413 0 0 0 -1.67225065578378e-05 +574 0.001445225205462258 -0.0006720203155986734 0 0 0 -2.3589949399417058e-05 +4970 0.0014927170817597573 -0.0004912765298198545 0 0 0 -7.211974185797443e-05 +652 0.0014943285240544898 -0.0007462569420545378 0 0 0 2.143340221607753e-05 +1059 0.0014978606047697284 -0.0005296339187196793 0 0 0 7.178473463121678e-06 +2628 0.0011429654654665268 -0.0007872747632830803 0 0 0 1.1624461983439899e-05 +223 0.0011851902119154004 -0.00039670583240533863 0 0 0 -3.7833678143081688e-06 +867 0.0017003948379212467 -0.0005856790716548525 0 0 0 2.3542447803720214e-05 +875 0.0013791401815771021 -0.0012387575384742071 0 0 0 6.28222675630113e-05 +880 0.0014924039940475554 -0.0005073905149556514 0 0 0 5.3782500126753373e-05 +895 0.0013339210111898705 -0.00039729256556881627 0 0 0 -1.720636354502663e-05 +1012 0.0014707491756312141 -0.0006865241149780018 0 0 0 3.188711160090728e-05 +1014 0.0008579900697544825 -0.000801527056500936 0 0 0 -4.6711301275350595e-05 +1099 0.0014313848134430316 -0.0005985278782507152 0 0 0 1.3710918368480517e-05 +1131 0.001079048122478532 -0.0006881941785568544 0 0 0 3.188034767292762e-05 +1227 0.0010149513140975397 -0.0006646198973462565 0 0 0 2.66992134648597e-05 +1310 0.0014437107343303176 -0.0005429893596807293 0 0 0 4.8890677595123404e-05 +4936 0.0007606422536567889 -0.0008682135334652425 0 0 0 -4.291851845982543e-05 +3790 0.0014152573378400553 -0.00060494523660353 0 0 0 2.2628776204557522e-05 +1400 0.0016355393944580477 -0.0007041067611974969 0 0 0 9.700458312332279e-05 +7401 0.001192803563477527 -0.0004453330945568798 0 0 0 4.5276410749443544e-05 +1465 0.0010807611919031496 -0.0007412786197826187 0 0 0 -2.091667189964564e-05 +1466 0.0015394823411077083 -0.0010067547320583969 0 0 0 0.00017111456899941268 +1586 0.0013733489280689632 -0.0006918086917549523 0 0 0 -1.3623411585785029e-05 +1589 0.0014940886830804257 -0.0007873089027815267 0 0 0 4.3815827262846564e-05 +1613 0.0011552434787303514 -0.0006921742602230261 0 0 0 3.846705906918817e-05 +1632 0.0016678373315664797 -0.0006576033765927616 0 0 0 5.96136393654763e-05 +6352 0.0009022763826695968 -0.0009162059267284078 0 0 0 -1.0449312493249389e-05 +1661 0.0013575452445059553 -0.0005677421326266542 0 0 0 9.23965809370962e-06 +1668 0.001522922180988019 -0.0008865078652534535 0 0 0 0.00012484339815412666 +5153 0.0007950648167799854 -0.0008595488462086466 0 0 0 1.1911858918689685e-05 +1718 0.0014951528441979887 -0.0008103755773192022 0 0 0 5.6000348101495544e-05 +1776 0.001592117197577891 -0.0006543123963018084 0 0 0 3.113383572226228e-05 +1845 0.0017598787538938075 -0.0006889117991781111 0 0 0 4.659275937689294e-05 +1877 0.001806508316710344 -0.0009374135870621258 0 0 0 0.00019884623093490426 +4067 0.0012550251469649017 -0.001198609262204561 0 0 0 8.133009394768007e-06 +1931 0.0014330585620229855 -0.000647549145191439 0 0 0 3.1427728397697074e-06 +204 0.0012896371164663387 -0.0005278670022525467 0 0 0 2.3466537064262947e-05 +2016 0.0014513717992682463 -0.0011559854492014542 0 0 0 -5.604061595701209e-05 +2029 0.0016368944540278974 -0.0007704050856018246 0 0 0 0.00013221511726735358 +2048 0.0016122478236714416 -0.000638720641999736 0 0 0 7.4466947824604566e-06 +2085 0.00150999990691145 -0.0007805081114412723 0 0 0 -2.9043926744536847e-05 +2104 0.0015524863534072443 -0.0006521847944997277 0 0 0 -1.581935889912301e-05 +9625 0.0014899873610682301 -0.000697153929130568 0 0 0 4.991608311479827e-05 +9080 0.0011652517797902987 -0.0004258508582896425 0 0 0 1.5366181750160025e-05 +2298 0.0014728286924958944 -0.001203469469717423 0 0 0 0.0001330546201656803 +1031 0.0012195082693814145 -0.0002739938949562302 0 0 0 -6.746067646351825e-05 +2342 0.0015180905105342706 -0.0007747270293296283 0 0 0 8.128653673992918e-05 +2459 0.0017556016506860138 -0.0007390086792696346 0 0 0 -0.00012322691921573523 +2460 0.0016468081886444783 -0.0010161662346363663 0 0 0 0.00012495365017586315 +2479 0.0015053711709847888 -0.0006550248933826211 0 0 0 5.3155284332162234e-05 +969 0.001473507111683127 -0.0006667316116415991 0 0 0 1.1976334617759856e-06 +341 0.0011730482220876672 -0.0004951996121323205 0 0 0 1.5961907534225617e-05 +2509 0.0017000578199581186 -0.0006879876136879879 0 0 0 -0.0001359794421600285 +9538 0.0014192214042452512 -0.0012514093570237567 0 0 0 0.00011995328279873241 +9934 0.0010600557247017275 -0.0006892565616525627 0 0 0 -4.7404750377462656e-05 +2807 0.0010978841231075536 -0.0007476881818608544 0 0 0 -5.377425571339144e-06 +2817 0.001403755093442301 -0.0006722631170068314 0 0 0 -5.614806521698973e-05 +2903 0.0014949598427989408 -0.0006214827769138243 0 0 0 0.00010573828046179529 +2961 0.0014485499990690585 -0.0005175298675797059 0 0 0 -9.007182947974207e-07 +2972 0.0018408194844838784 -0.0006192751401066065 0 0 0 1.1183847266286869e-05 +3083 0.0015488982868246985 -0.0009119004432906634 0 0 0 0.0002975012021634715 +8566 0.0016328337002461883 -0.0006260390470604802 0 0 0 0.0004749246463111543 +3163 0.0016408902851508633 -0.0006432669648746738 0 0 0 3.4331307440048987e-06 +9929 0.0015437006166005825 -0.0012408211114779133 0 0 0 0.000333601765229081 +8789 0.0014085533945381438 -0.0006202440005262685 0 0 0 0.00011886086042216555 +3201 0.0013220389358484922 -0.0006722132405488755 0 0 0 8.094698029522066e-05 +3207 0.0014992818436757396 -0.0006028456354554541 0 0 0 3.796553365614636e-05 +3282 0.0012492894930427642 -0.0006653444033408036 0 0 0 -7.213852888799485e-05 +7242 0.0014112871001965737 -0.00047233354931336933 0 0 0 3.862928615626122e-05 +3328 0.0009551943393958591 -0.0008061132782039632 0 0 0 5.296856149368509e-05 +6100 0.0012385432505190106 -0.000540123935324262 0 0 0 -0.00011557663338127446 +3384 0.0011593040900203196 -0.0013365951355344438 0 0 0 -3.361504495499216e-05 +725 0.0012370197048575634 -0.0006738275600108567 0 0 0 1.2517745101693356e-05 +9924 0.004169926083215533 0.0003363257663480777 0 0 0 0.0016302705811248584 +3455 0.0011782597643712725 -0.0006350096460875864 0 0 0 4.8797668985899934e-05 +3489 0.0015774302463543103 -0.0009423410227803381 0 0 0 0.00011113634792528162 +3505 0.0015432912836350465 -0.0008122440599582276 0 0 0 -7.993924614022667e-05 +3558 0.0013798552782595102 -0.0004872571120098966 0 0 0 3.303189998928076e-05 +3561 0.0013731919253639072 -0.0007217588739240584 0 0 0 -5.41186799396414e-05 +3594 0.0010756169680163224 -0.0007958632332108016 0 0 0 -2.240444353509187e-05 +3616 0.0014832774783951148 -0.0006431283469991793 0 0 0 7.557237910321089e-06 +3619 0.0015223538682177626 -0.0011879767248620947 0 0 0 0.00012122976503666489 +3622 0.0013860017347291993 -0.0006335165967235375 0 0 0 -5.0550060376246715e-05 +3664 0.0013835194017005267 -0.0006219297464402612 0 0 0 5.4760559028199705e-06 +3685 0.0011220611881477228 -0.0007290850616961442 0 0 0 -3.106796421951581e-05 +3699 0.0014021942374410695 -0.0005199132773018279 0 0 0 -6.419783912807024e-06 +3809 0.0013699768953058106 -0.0007382374858714337 0 0 0 2.8507671903309215e-05 +3450 0.0009951464541817002 -0.0009091559997476203 0 0 0 6.006330294640934e-06 +3912 0.0013771765717594555 -0.001116040424713737 0 0 0 -4.0368997796988165e-05 +3947 0.0013702238286940431 -0.0005641389505377748 0 0 0 2.6861787094384924e-05 +3954 0.00160936878694855 -0.0011310855447175055 0 0 0 0.0001802729806023658 +4108 0.0008830761334121165 -0.0008822635900639511 0 0 0 8.270352089234694e-05 +4112 0.0014267851134749385 -0.0006697178233364634 0 0 0 7.207870956317499e-05 +4133 0.0013590758357101857 -0.0005867974761804803 0 0 0 -1.840624473736533e-05 +3999 0.00119038857194425 -0.00038420338366344466 0 0 0 -2.6741244653095953e-05 +4197 0.001261175748628152 -0.0007377299080290904 0 0 0 -2.758369923483248e-05 +4237 0.0014553248652160878 -0.0006652503076101074 0 0 0 -1.5336579519934592e-07 +4249 0.0014807778120174155 -0.0006029992084612485 0 0 0 4.7270691365612614e-05 +4262 0.0013290254868859389 -0.0006454842235296001 0 0 0 -1.3779504737197121e-05 +4269 0.0015100833206237543 -0.0005126942945008423 0 0 0 -4.2420889496465996e-05 +4274 0.0015820337083608553 -0.0006749103024505539 0 0 0 -8.427890359514129e-05 +4351 0.0013893926805645608 -0.0007647720642324567 0 0 0 0.00013738777395588505 +4574 0.001523233639838097 -0.000905328104060875 0 0 0 -0.0001647197600284383 +5406 0.0013571806046489383 -0.00047010473712187834 0 0 0 -3.4885261838975465e-05 +7555 0.0012532943995445076 -0.00031829181333825455 0 0 0 0.00011421990487898698 +4698 0.001394923781673012 -0.0006818525892979137 0 0 0 -6.073199531871643e-05 +4706 0.001638644989551553 -0.0008674957997928608 0 0 0 -0.0001450432091760838 +4734 0.0014072814973241866 -0.0006944235634910577 0 0 0 -1.3811987670860076e-05 +4749 0.0017815684681375006 -0.0006637326151554682 0 0 0 6.960851064238324e-05 +4800 0.0016667354165021517 -0.0006090368631859884 0 0 0 8.521214178473986e-06 +8344 0.0016570193842553732 -0.0006281291715641898 0 0 0 0.00029374496498306044 +4840 0.001315620310120987 -0.0004894049023976146 0 0 0 4.234057062429977e-05 +735 0.000855578680232782 -0.0009060242212274493 0 0 0 -3.751434546891103e-06 +5011 0.0016935100605693905 -0.0007165667871432796 0 0 0 -8.222751679070952e-05 +9446 0.0011620170060886207 -0.00042840154550777146 0 0 0 4.7662292565476306e-05 +5106 0.001595308181110087 -0.0010438266594874055 0 0 0 0.0001218958676365125 +5125 0.0014070264790014143 -0.0004165199110735438 0 0 0 -0.00019956990483495466 +5141 0.0015213982869726776 -0.0005872980051177672 0 0 0 -4.872621064810291e-05 +5144 0.0015021383506385983 -0.0006999372671864271 0 0 0 -3.860766109541228e-05 +5203 0.0017692882213503605 -0.000718614259841982 0 0 0 0.00018546433433147923 +7490 0.001377411908732476 -0.00048801822424215685 0 0 0 1.50882139390506e-05 +9953 -0.0020613284174636213 -0.0023809792825432497 0 0 0 0.0017710360768692316 +5319 0.0016166239346012603 -0.0006216542812112889 0 0 0 4.0251312100402154e-05 +5396 0.0014699091122418494 -0.0008146254211063729 0 0 0 5.348747136716278e-05 +5405 0.0014992048795685012 -0.0005569654810024446 0 0 0 6.0724764848516746e-05 +5419 0.0015791725533647256 -0.00054522517284867 0 0 0 9.580650980146155e-05 +3578 0.0012688094527606925 -0.0006801376043295163 0 0 0 7.776914928414753e-06 +5545 0.0012903035594568426 -0.0014424095003323528 0 0 0 0.0001548150799269235 +5836 0.0013808082841193171 -0.0004548207072005158 0 0 0 -3.002216150767036e-05 +5566 0.0018155836453111226 -0.0007184186467009685 0 0 0 -0.000219855559290285 +8866 0.0011801943477881564 -0.0004880600963181862 0 0 0 0.0001512705186734057 +5600 0.0014096114935379543 -0.0006923369825978112 0 0 0 -7.062003082355825e-05 +5608 0.0018030166919740028 -0.0007402768946917268 0 0 0 0.00023604281224098755 +5618 0.0013739799754646106 -0.0006143922109763397 0 0 0 5.013732914165471e-05 +5688 0.001722604610643137 -0.0006528365564054389 0 0 0 2.1606678738790828e-05 +5731 0.0012988075774418503 -0.0007084610718001822 0 0 0 -1.8472592114447285e-05 +5733 0.001425870521041999 -0.0006689902003325333 0 0 0 1.055494687350075e-05 +5753 0.0013186730115953783 -0.00043815643030384343 0 0 0 7.556888686624905e-05 +5843 0.0014005048999517465 -0.000805234643086988 0 0 0 -0.00019414596587142478 +5897 0.0016810398496758803 -0.0007294159565215743 0 0 0 -4.3468802915794376e-05 +5903 0.001498356889199315 -0.0008241460163653143 0 0 0 2.7998467473501974e-05 +5536 0.0011859589843815966 -0.0007892674566622067 0 0 0 -4.113625218035343e-05 +6022 0.001352316850484436 -0.0005690633168017415 0 0 0 -4.8847252120877996e-05 +400 0.0013517327319119276 -0.0005264692335295769 0 0 0 -2.438822947583716e-05 +6069 0.001499521190112953 -0.0007215724500510741 0 0 0 5.819306489060962e-05 +6083 0.0017461506381016162 -0.0008477841780109217 0 0 0 0.00018965326627754488 +6121 0.0015097889990939215 -0.001236440267891581 0 0 0 0.00014159288803867963 +7356 0.0012446271125737857 -0.0004720163625459574 0 0 0 -9.29695637450917e-06 +6188 0.0013812906062584645 -0.0012802021127877301 0 0 0 3.9760539759376855e-05 +6195 0.0014877154751715615 -0.0006855439462079983 0 0 0 -6.715062987987956e-05 +8774 0.0012603284925070623 -0.000549381839975065 0 0 0 4.063989755214713e-05 +6311 0.001504195997369132 -0.0008131415297709605 0 0 0 -4.8329202013940895e-06 +1967 0.0014003624600064514 -0.0005493126417558792 0 0 0 1.5998956383801982e-05 +9848 0.0017161453618639222 -0.0012719340111236397 0 0 0 0.00034422682640789117 +6412 0.0012529280406328855 -0.0007302724558592659 0 0 0 3.1661041754066934e-05 +6462 0.001430079901725422 -0.0006212040824628206 0 0 0 7.057435986454852e-06 +6502 0.0014537921333500424 -0.0011115074963628793 0 0 0 -0.0001175121698577215 +6537 0.0013985127546430455 -0.0009097851220272037 0 0 0 -0.00011762069007341943 +6608 0.0016343777128109665 -0.0009631693795737346 0 0 0 0.00033755642267350246 +7371 0.0015588481677003432 -0.0006599338687170061 0 0 0 -7.438686474561717e-05 +5544 0.0011686870911115684 -0.0003888876228579103 0 0 0 2.1774240093990606e-05 +6621 0.0012038019436941658 -0.0006453170127668825 0 0 0 9.222292061562984e-06 +6704 0.0019510813099300312 -0.0006268690689855199 0 0 0 -0.0013830900463247557 +9875 0.001730336926520314 -0.0007040717954694614 0 0 0 -0.00011416686542831159 +4174 0.0011073595973147457 -0.0007785811390966579 0 0 0 7.716967130271476e-05 +4369 0.0013463245422289164 -0.0004943231798692106 0 0 0 1.1097504760953855e-05 +1622 0.0011746952547883216 -0.0006287312938626762 0 0 0 -2.1948513560859746e-05 +3284 0.001193994212485993 -0.0006518568581803717 0 0 0 1.0921701353997764e-05 +9643 0.0013265801847364247 -0.0011109550775436187 0 0 0 1.933614297882628e-05 +1104 0.0012239058789601264 -0.00043264368640585644 0 0 0 2.3204004204090313e-05 +9125 0.0014161048462219235 -0.0006267798615714804 0 0 0 3.142649183080406e-05 +7000 0.0015731732097334881 -0.0007202789352662781 0 0 0 -2.952479936152809e-05 +7029 0.0014554331708780057 -0.000714224601806182 0 0 0 -8.133911294667118e-05 +7047 0.001419951143989629 -0.0006439580826453361 0 0 0 2.6562191720944734e-05 +7071 0.0015180530750347767 -0.0010957257063625339 0 0 0 6.35975082786039e-05 +10000 0.0017519363953161467 -0.0009630155092145488 0 0 0 0.0009122907902907662 +6944 0.0011364120757968062 -0.000763459708702225 0 0 0 4.4541068782932366e-05 +7139 0.0014927752310826604 -0.000744969243809552 0 0 0 -0.00026479219342727384 +7148 0.0010139623058371499 -0.0006278024020679694 0 0 0 6.073536713097974e-05 +7197 0.001610491218455059 -0.0008115385456335434 0 0 0 0.0002561935818332442 +7653 0.0013658255038843637 -0.0004224393046276255 0 0 0 8.745971330768639e-05 +7234 0.0015184532730881254 -0.0011748792394882448 0 0 0 0.0001738030975909807 +7279 0.0010742182224841913 -0.0007368459377266064 0 0 0 -8.5135630362802e-05 +7282 0.0014088157740444237 -0.0006202295794487979 0 0 0 1.1155165019687846e-05 +9593 0.0013349843972527919 -0.00047198410623347113 0 0 0 6.459338211034444e-06 +8451 0.0015677045210021278 -0.0005181172962475791 0 0 0 7.210867892848037e-05 +3802 0.0007493380732706547 -0.0007972211933099175 0 0 0 3.083310754646365e-05 +9313 0.001359435601487089 -0.0004509615002858854 0 0 0 7.176773435460106e-06 +5475 0.0015203133772388009 -0.0006948781650510479 0 0 0 -0.00013798872787526095 +8891 0.0014978854649569998 -0.0006442330830845281 0 0 0 2.680509823890105e-05 +7388 0.0010446609557540323 -0.0006544572092512896 0 0 0 6.291273814655729e-06 +7399 0.0014901266042909357 -0.0006131973933539359 0 0 0 9.258610111035789e-05 +7402 0.0014696267252620762 -0.0006732316398353914 0 0 0 6.122778152539506e-05 +7432 0.0028304598093706968 -0.0013093064426753372 0 0 0 -0.000515980584741853 +9340 0.0011855769102441913 -0.00043915243979078213 0 0 0 -6.106181383541305e-05 +7510 0.0017596281905958475 -0.0009524951887493094 0 0 0 -0.00016573283231042875 +7523 0.001495014769578003 -0.000596758377874778 0 0 0 1.98953669489402e-05 +7580 0.0015150816431253162 0.00018380325620159812 0 0 0 -0.00042333177832609736 +9755 0.0014330558098514135 -0.0007009876316866943 0 0 0 4.9550344189210056e-05 +7684 0.0014680511330851275 -0.0007286663093694794 0 0 0 -0.00017179924195682668 +6886 0.001299759709544701 -0.0011662430855275767 0 0 0 1.4646063742528139e-05 +7730 0.0017044845007419636 -0.0006627560279512174 0 0 0 1.219780921771096e-05 +7762 0.001145292097311504 -0.0003236930734481308 0 0 0 0.00015188174811937993 +7763 0.0017965582630274117 -0.0009872900003500091 0 0 0 -0.00048767001606870474 +7929 0.001365897551846543 -0.0004447581918337445 0 0 0 -0.0001596059197512374 +4286 0.0013273346321531713 -0.0004480869218278572 0 0 0 -5.8258963642855673e-05 +7993 0.0014710528654108895 -0.0007205164061419334 0 0 0 5.442135002118675e-05 +5148 0.0014783134920524203 -0.0006302575260104587 0 0 0 3.788694061419021e-05 +8041 0.0013708592240319355 -0.0006400275870344253 0 0 0 1.502956653856058e-05 +8046 0.0010886197107458661 -0.0006371539407496038 0 0 0 0.0002091479045047528 +8074 0.0013521390412579155 -0.0009208716504523521 0 0 0 3.4520202507458056e-05 +8091 0.0015107473665317305 -0.0009628046259083986 0 0 0 4.2533016358035417e-07 +9800 0.0015852378872959392 -0.0010859310051280556 0 0 0 9.41266732109169e-05 +8108 0.00180214885027748 -0.0009265425250383764 0 0 0 2.7399372860522317e-05 +8127 0.0015293579425021773 -0.0006811001736668578 0 0 0 0.00012539962856342293 +8141 0.0014979141831298743 -0.0006573284759903858 0 0 0 7.94152584665194e-05 +8181 0.0016290684390770226 -0.0007155548394530894 0 0 0 0.0001469939588612532 +8240 0.0018154445949935868 -0.0006287493225920777 0 0 0 -0.00015400563932138996 +8253 0.0011346970848152603 -0.0007013428256932881 0 0 0 7.448221604164128e-06 +8287 0.0008784518070618397 -0.0006566460265909029 0 0 0 -5.320477350445726e-05 +1496 0.00132660805175128 -0.000544183201544848 0 0 0 4.163616510819043e-05 +8317 0.001042788853535367 -0.0007676907305283559 0 0 0 -1.546616593404237e-05 +9845 0.0013557283105925196 -0.0011709083780604098 0 0 0 3.9622872484055395e-05 +8432 0.0014428912014296637 -0.0005227496233664707 0 0 0 4.574723677186379e-05 +8435 0.0018378229371947908 -0.000734227500238943 0 0 0 7.544448117792218e-05 +8439 0.0015170755835159032 -0.0008977277799044764 0 0 0 -4.804218421948282e-05 +8462 0.001214783248188181 -0.0007686460194847816 0 0 0 0.00012476463949169584 +8475 0.0011706523170810768 -0.0006798626444546301 0 0 0 -0.00012615656007913996 +8487 0.0014201410160037601 -0.001236041064540472 0 0 0 0.00015137275866270047 +8510 0.0015508271662163847 -0.0006784656591948768 0 0 0 2.640615179853619e-05 +6033 0.0011831897829184114 -0.00043304441942733997 0 0 0 2.865338611566719e-05 +8553 0.001527584595328524 -0.000872515856216031 0 0 0 -5.795811469752902e-05 +4821 0.00156732483187467 -0.000529973001540713 0 0 0 0.00021283376202747636 +8745 0.0013239505731606103 -0.000389914988129717 0 0 0 -0.00018018852591343792 +8784 0.0016955902781103282 -0.0006396708319325079 0 0 0 5.679806663209486e-05 +8816 0.001667715970497019 -0.001103073864561989 0 0 0 -7.107351626978025e-05 +8832 -0.0008967140133000656 0.0007443573988642285 0 0 0 0.0019830272751125847 +8857 -0.00010792974713269083 0.0006982564049013544 0 0 0 0.00221307804179487 +8862 0.00140532124996355 -0.00121199435570624 0 0 0 -0.0002550791984340752 +8863 0.0018277027975913416 -0.0008184650324862958 0 0 0 0.0003980030553836013 +5710 0.0014335022246681527 -0.0006309248169155572 0 0 0 2.4877777392909583e-05 +8955 0.0012481648237726351 -0.0006068822464298004 0 0 0 -3.360281474157903e-05 +8971 0.0013580436445030507 -0.00045695501126753014 0 0 0 -0.00011540685403657522 +8988 0.0015657973133007066 -0.0007117387447905951 0 0 0 -0.00010792274415129645 +7191 0.0006646476823894941 -0.0008344259921626171 0 0 0 9.647548884995898e-05 +9161 0.0016885825771760178 -0.0006389154662072943 0 0 0 0.00024102215862454497 +9215 0.001079457314852606 -0.0007550702910791927 0 0 0 0.0001154001036235058 +772 0.0014251617727839665 -0.00048214991054704414 0 0 0 1.5453388848415895e-05 +9222 0.0015008530121933396 -0.000565786213286813 0 0 0 1.6021534132924127e-05 +9279 -0.0003847530834518003 0.001682453877632102 0 0 0 0.008504886332577347 +9280 0.00185893258373483 -0.0006224615793323401 0 0 0 0.00031313309741037046 +7380 0.0013465612716088721 -0.0005907910224747592 0 0 0 4.440844049802567e-05 +9320 0.0027569390411008583 0.00037911326963637945 0 0 0 0.001622056400237978 +4618 0.0015309331280394583 -0.0006774780398084389 0 0 0 6.175797336158895e-05 +4581 0.001191795351874448 -0.00047318852971340046 0 0 0 -4.2910337332041235e-05 +9400 0.0014906896362278563 -0.0006075771598342279 0 0 0 -6.327113874006047e-05 +1209 0.0013892925942907007 -0.0006754769868784097 0 0 0 4.056178362346354e-05 +9420 0.000984489889501032 -0.0015544861364182481 0 0 0 0.0006102394666967811 +9650 0.001958116872762125 -0.0005302546094644818 0 0 0 0.001480535469961079 +9469 0.0016220176391628879 -0.001060610982578506 0 0 0 -0.00028513007725146583 +9502 0.0010364523516954987 -0.0006661190084716031 0 0 0 2.129295625232297e-05 +1121 0.0013481701799799213 -0.00045448865679061394 0 0 0 1.4802628195159906e-05 +9329 0.0011547771366464774 -0.00033654552983575323 0 0 0 -4.952287290627367e-05 +5275 0.0016399202945292098 -0.000682572151672369 0 0 0 3.603082340751343e-05 +7102 0.001462239572137624 -0.000714273001894324 0 0 0 0.0002864848683124055 +9038 0.0011694788770825809 -0.0004381619871425317 0 0 0 -6.329730314895917e-05 +2491 0.0008616189153969579 -0.0007466663628730294 0 0 0 -8.856166824014487e-06 +8823 0.0011735015118800774 -0.00044015145160988155 0 0 0 -1.3304187515254955e-05 +6155 0.0009792864031235142 -0.0008927240363494971 0 0 0 -3.6045835133029284e-05 +1648 0.001415950480117247 -0.0010287329462261893 0 0 0 3.962247249114587e-05 +7113 0.0012383426225902132 -0.00021649643765892619 0 0 0 -5.385499166277307e-06 +7754 0.0006767823836528064 -0.0009680654343402248 0 0 0 8.587844304472641e-05 +7369 0.0010131835770171333 -0.0006141504087644271 0 0 0 2.137608125917763e-05 +7225 0.0012286342942833906 -0.00028135461580220143 0 0 0 -3.1781003597576327e-06 +5960 0.0009396123999192594 -0.0009088539373620011 0 0 0 1.9529149423683125e-05 +7967 -0.0005338764240148161 -0.0022405910967720644 0 0 0 0.0015021694343035409 +9566 0.0010183715464815299 -0.00023343338144121784 0 0 0 0.0005035578994364207 +4746 0.001157360785512175 -0.0003802795461614248 0 0 0 6.9671195632903075e-06 +141 0.0007636289970988426 -0.00033684046281212514 0 0 0 2.3191109401529233e-05 +170 0.0011675488994569803 -0.00030943015939257593 0 0 0 -8.453255365406125e-06 +219 0.0009221022037375662 -0.000921838377920726 0 0 0 9.242722704999848e-06 +244 0.000813569652943914 -0.00044150369061390183 0 0 0 2.4196381090133446e-05 +353 0.0008288808437184423 -0.0007888758295050796 0 0 0 2.5456302000584274e-05 +7089 0.0010766649635423832 -0.0004419249349759837 0 0 0 4.363223201227721e-05 +8162 0.0007486066769645261 -0.0009340926263418213 0 0 0 -0.00012328664771366575 +489 0.0010543516832346085 -0.00022148364882799344 0 0 0 -1.1983131701261955e-05 +544 0.0009004016442882991 -0.00029894315150358585 0 0 0 1.0817817364867223e-05 +550 0.0008801822075609913 -0.00022706436508302582 0 0 0 0.00015134133695330295 +744 0.00045342424206383785 -0.00040000630712676505 0 0 0 0.0001803514878743685 +630 0.0007259054034785428 -0.0004156200204281808 0 0 0 1.165468456121899e-05 +637 0.0007069067936023122 -0.0007351557283827938 0 0 0 2.735078105836564e-05 +5779 0.0006098926927447875 -0.00011287270805272234 0 0 0 0.0006774301728660289 +664 0.0009498769251103941 -0.0001651520848882661 0 0 0 0.00014938509680636455 +699 0.0005296433591362656 -0.00030113614642837835 0 0 0 1.3243687034033468e-05 +7513 0.0006737917078484637 -0.0009268819056945188 0 0 0 3.1898267230534256e-05 +7328 0.0006428351961544268 -0.0008804535219181864 0 0 0 -4.4270410668302446e-05 +767 0.0007994551169743166 -0.0006454712708807102 0 0 0 1.9505920524929245e-05 +3760 0.0010388046710894377 -0.00026424027361228913 0 0 0 -5.876939182105482e-05 +791 0.0008650814979857924 -0.00029581989173227294 0 0 0 -6.571053487977069e-05 +836 0.000747924791154723 -0.0008478640540689551 0 0 0 1.4492547843473114e-05 +3318 0.0006630092084340941 -0.0008845454034057318 0 0 0 1.2580509589514672e-05 +898 0.0008749443065973538 -0.00030842230144331186 0 0 0 8.754741279914764e-05 +918 0.0007731406409347033 -0.0005079153728977831 0 0 0 4.060413432671336e-05 +975 0.0006451543224837536 -0.0006220370524592351 0 0 0 2.415892353059261e-05 +9658 0.0008568943436679752 -0.0002717984225804355 0 0 0 6.666509538748024e-05 +4464 0.0010145528229093803 -0.0002798890927837252 0 0 0 -6.403090416244871e-05 +1067 0.0008778144974053637 -0.0007064918728647652 0 0 0 2.496177047973352e-05 +1087 0.0007666206314804315 -0.0007426996371348663 0 0 0 1.5387658532940754e-05 +1118 0.0005906485116110298 -0.0004477901150540026 0 0 0 6.524621692842269e-05 +8308 0.0011693097967742936 -0.00020056207646487067 0 0 0 -5.6150407368680295e-05 +1139 0.0008079364630159977 -0.0008506436190900298 0 0 0 8.098709405717237e-06 +1295 0.0005965924178420331 -0.0006283797003590098 0 0 0 2.405448780152862e-05 +1327 0.001039545703729171 -0.0008453374401026082 0 0 0 3.6399619231045667e-05 +4217 0.0006235134619901517 -0.0005602951032863839 0 0 0 -4.7111984261271014e-05 +1551 0.0007336968875406388 -0.0002884126292669076 0 0 0 3.2077557793237785e-05 +1591 0.0005221952437789126 -0.00040834105073122136 0 0 0 0.00013130718886650056 +1605 0.0010331396529890033 -0.0007876397987511163 0 0 0 2.463435867590303e-05 +1720 0.0005882291692649165 -0.0006580694671161834 0 0 0 4.20791406002075e-05 +1739 0.0009704072911679712 -0.0007923121150937655 0 0 0 3.879807483565504e-06 +1760 0.000902158226974567 -0.0008847152833891096 0 0 0 2.0615356913938127e-05 +1892 0.0008472226838121589 -0.00029062233322397054 0 0 0 2.869173169892317e-05 +1926 0.0011245050113338167 -0.00019342250300813618 0 0 0 2.2737276887959856e-05 +1958 0.000748705364069834 -0.0009546859312458733 0 0 0 3.7310590290819886e-05 +4428 0.0007241514715935843 -0.0008493093377967583 0 0 0 4.036566827766025e-05 +2218 0.0010777100667305392 -0.0002718458727565549 0 0 0 4.9667619501012084e-05 +2292 0.0004952604796307963 -0.00044198660666827227 0 0 0 5.067487346422457e-06 +2301 0.0007796025958586625 -0.0009300699954463172 0 0 0 3.200516112274379e-05 +2348 0.000753940342550981 -0.0009214344591945459 0 0 0 -1.091985719709809e-05 +621 0.0010234050459216458 -0.00021525331218758578 0 0 0 -4.317069460695514e-05 +2396 0.0009654875212051537 -0.0007415567473916534 0 0 0 4.613555196518388e-05 +2419 0.0006362848591451983 -0.0007429248456458678 0 0 0 1.3356836021507736e-05 +2422 0.0008245987017955813 -0.0006493688450145586 0 0 0 -4.6931164843726007e-07 +2484 0.0010204691271986322 -0.00019619028067291653 0 0 0 7.8545348052414e-06 +2527 0.0008609182563664943 -0.0009499367661363526 0 0 0 1.5906245266119836e-05 +2572 0.0008537849768754349 -0.0006582737051191983 0 0 0 1.272446976345124e-05 +5679 0.0003978570925988231 -0.000410857613236761 0 0 0 0.00011451210621663689 +2650 0.0008171012718017166 -0.0002691635274862163 0 0 0 -1.7379094128730043e-05 +2825 0.0007033811169024992 -0.0004844756917890976 0 0 0 3.294382826657079e-05 +2870 0.0006367450370855276 -0.00039958645477056594 0 0 0 -2.107129672594081e-05 +2875 0.00026007762648995973 -0.0003812569053255337 0 0 0 0.0003731103727345125 +2978 0.0004926551564090429 -0.0002853734212355041 0 0 0 8.659200623726393e-05 +3097 0.0005874682659903548 -0.00045568579589706705 0 0 0 1.2984193451232768e-05 +1405 0.0010184528764932367 -0.0008963474781941851 0 0 0 2.3958579067535523e-05 +3171 0.0009465391466490308 -0.000686763032506241 0 0 0 6.869585342699663e-05 +3177 0.0009569985688328485 -0.0005113478260717573 0 0 0 3.1753635084157124e-05 +3217 0.0007342767440130369 -0.0006276525690483225 0 0 0 -1.5027575372081828e-05 +3233 0.0009703144600130666 -0.0005745241755484444 0 0 0 1.0930044476285773e-05 +3237 0.0009339020232216588 -0.000618234354335372 0 0 0 4.0811195981070185e-05 +3270 0.0006542145707639796 -0.0007166437455821291 0 0 0 1.6240636348894145e-05 +3283 0.000852913333255335 -0.00029041870272119934 0 0 0 -3.4430010709402265e-05 +3305 0.001102807759079396 -0.00026562078896465846 0 0 0 4.3345981613870035e-05 +3309 0.0005482512101084757 -0.00035592268465156954 0 0 0 3.3257148882015705e-06 +3448 0.0005900100352301002 -0.00011380590412164743 0 0 0 0.00031401271306980824 +3390 0.001167606964234235 -0.00025214148558461554 0 0 0 1.0573694467761472e-05 +3392 0.0005237226935635161 -0.0005391706534927551 0 0 0 2.4432303383931315e-05 +3410 0.000696044085683986 -0.0005134900609213177 0 0 0 4.011290053394514e-05 +3503 0.0008645654359582106 -0.0009096282679272453 0 0 0 3.4599639921063024e-05 +3614 0.0008836893397694097 -0.0003684997043427197 0 0 0 -9.898548738316444e-06 +3638 0.0007522368461465542 -0.00026967724253290615 0 0 0 9.400678430676635e-05 +3773 0.0009706365086821383 -0.0008893198264656027 0 0 0 6.660441796072141e-06 +7220 0.0010934118536983695 -0.0003266080083607881 0 0 0 -0.00010167038357565328 +3818 0.0007003270112018194 -0.0008192447934029923 0 0 0 8.687696574799401e-06 +3847 0.0006906337485146093 -0.0003145672764666404 0 0 0 -8.453305635996648e-05 +9645 0.001054745554420129 -0.0012277280550092571 0 0 0 6.78851729481628e-06 +4086 0.00096535911317136 -0.0008793448209537321 0 0 0 3.7926465137615574e-05 +4090 0.0010235383283457493 -0.0003202894069694097 0 0 0 -4.575772585986568e-05 +4570 8.939474097370095e-05 -7.6247817313605685e-06 0 0 0 -0.0015729439849525334 +4450 0.0007777412513970088 -0.0006317941363504457 0 0 0 -2.040478737824692e-05 +4452 0.0004685203431247056 -0.00029189718272995525 0 0 0 0.0002415637526809839 +726 0.0008558340660900284 -0.0009967442967970658 0 0 0 1.5139299856643642e-05 +4578 0.0007597397022792129 -0.00033523730832096793 0 0 0 -0.0001271114925701993 +4622 0.0008852912940080033 -0.0010260181349344482 0 0 0 -2.4711598251912898e-05 +9575 0.0008308328079156156 -0.0006046925957750863 0 0 0 3.912707820688605e-05 +4658 0.001005925228939942 -0.0007178676606015552 0 0 0 2.3275452455146235e-05 +4660 0.00053968588138908 -0.0003743205134357619 0 0 0 4.465816042417041e-05 +4669 0.0009891474260874937 -0.000632376834598553 0 0 0 2.123474426120326e-05 +4726 0.000861444014895519 -0.0002800956954202282 0 0 0 4.5886832523901116e-05 +4792 0.0010148798582176053 -0.00025966363669754233 0 0 0 -4.112603794647404e-05 +4809 0.001019981025890387 -0.0002518580770434472 0 0 0 5.8577251141327845e-05 +9680 0.0005510177287203045 -0.000433155777485803 0 0 0 -0.00027221412564378336 +1726 0.0010284475752306915 -0.00030752206567955426 0 0 0 2.7135762429746463e-05 +5048 0.0007137523638944099 -0.0004964871180771402 0 0 0 1.6710882107668513e-05 +5064 0.0009430977909744328 -0.0007862352662177764 0 0 0 3.459955549227458e-05 +5081 0.0008872165227821445 -0.0005759127392963119 0 0 0 8.33205926501422e-05 +7637 0.0010134161175552696 -0.0003875626260287942 0 0 0 -5.6835804914154176e-05 +5209 0.0007906233948496563 -0.0008205709466144893 0 0 0 1.3109640912304474e-05 +5277 0.0012420251544787444 -0.0002287065766613858 0 0 0 3.863255944239403e-06 +5353 0.0008060086733170804 -0.0006560604045928437 0 0 0 1.9050771898601622e-05 +5364 0.0007880700607018852 -0.000270605527665452 0 0 0 -2.4472579707834906e-05 +5376 0.0008876076236598574 -0.0010065355157298183 0 0 0 3.6189177068739725e-05 +5403 0.0007301000288452387 -0.0006561703974488575 0 0 0 -1.3417831218696145e-05 +9704 0.0009714827020748869 -0.00018429063586144446 0 0 0 -0.00020892371322538423 +9438 0.0007182247344060442 -0.0009034671587134886 0 0 0 -0.00013102602013063304 +1184 0.0010267938739308771 -0.00029859461942870587 0 0 0 -1.729633937795545e-05 +5645 0.0006329871330176488 -0.0002965612495009868 0 0 0 0.00015352238320204105 +5699 0.0010996607183081158 -0.000328282188302265 0 0 0 8.824680417218123e-05 +1879 0.0010551202432097452 -0.0003606206010016701 0 0 0 -1.3939470528005005e-05 +5776 0.0005126221642356354 -0.00022743731050428695 0 0 0 0.00037358922777532667 +2082 0.0011642039735920856 -0.00033325083792539205 0 0 0 4.622483400788198e-06 +2045 0.0009450155330304583 -0.00031462217001426495 0 0 0 -0.00033878791940052035 +5791 0.0007314739187890115 -0.0007976057239995119 0 0 0 4.170753554698961e-05 +6506 0.0011651564204608537 -0.00035558836328784533 0 0 0 -1.4739444434752281e-05 +6009 0.0011388924117018452 -0.00035012322047009474 0 0 0 -5.633227150268058e-05 +5709 0.0006627241762557946 -0.0009500275564556954 0 0 0 -1.2422475310267327e-05 +8778 0.0010727605364346795 -0.0003981762916440831 0 0 0 -4.332474632969309e-05 +5985 0.0008354600287090624 -0.00024367052428315918 0 0 0 -3.639867533659637e-06 +6002 0.0007056776156630386 -0.0008015574428248931 0 0 0 2.593487350872206e-05 +6078 0.00056968758689758 -0.00033339320706297313 0 0 0 -6.368029249700532e-05 +1534 0.0009928183241236666 -0.00036783539555409496 0 0 0 -1.2999630438972587e-05 +9571 0.0006376279221661583 -0.00023394849103779323 0 0 0 -0.00016415281248037455 +6135 0.0011491618269974509 -0.00030036019151371987 0 0 0 0.00016169751391510864 +149 0.0010599304728630835 -0.0003738734183966467 0 0 0 1.932476146043151e-05 +6185 0.0010239225012822503 -0.00017918699571965833 0 0 0 -5.391849027201869e-05 +6225 0.0008837081675402327 -0.0008944920927613397 0 0 0 1.9594669634639882e-05 +6257 0.0004766805007288666 -0.0002718807950999249 0 0 0 0.0004767183987835254 +6297 0.0007929177893688423 -0.0006226960510366637 0 0 0 -5.5240595476224644e-05 +6402 -0.0021955071427610696 -0.0006817096959139532 0 0 0 -0.0019010194928078155 +6353 0.0008483209475388594 -0.00045468532743123016 0 0 0 8.754708773706809e-05 +6498 0.0004879039787283389 -0.00028048185650816974 0 0 0 -9.234068327806716e-05 +8613 0.0006500556255629692 -7.735596100660395e-05 0 0 0 0.0011542458157609522 +6713 0.0008318177974043584 -0.00041058198211004415 0 0 0 -8.14663139965847e-05 +6747 0.0005893153599679694 -0.0006336082940593102 0 0 0 -5.27811123568594e-06 +6807 0.0004902205342212573 -0.00035658341067244624 0 0 0 -7.584377161142696e-05 +7531 0.0007124223962150332 -0.0008357481948597224 0 0 0 3.174835589311092e-05 +6862 0.0007421063043090296 -0.0003317912695759279 0 0 0 -5.9789038401831295e-05 +6909 0.0010089460262069833 -0.00022860390915500746 0 0 0 4.510142510876657e-05 +6910 0.0004926937165090372 -0.000317767894054096 0 0 0 3.3317652784476376e-05 +6916 0.000827277909556365 -0.0008600763142064913 0 0 0 6.010019958662036e-07 +6965 0.0010002528797717859 -0.0008030093606923699 0 0 0 3.6045284485897145e-05 +6968 -0.0019372216665382714 -0.002288779475038544 0 0 0 0.0029905966651586164 +1585 0.001098800785996717 -0.0003917090104006134 0 0 0 3.54068195698414e-05 +7128 0.0006403073332496086 -0.0006941122919415824 0 0 0 4.055571556506432e-05 +7150 0.000727926898514516 -0.0003662515277114072 0 0 0 6.454025626963712e-05 +7152 0.0011356465690402888 -0.00022594297285959155 0 0 0 0.00015644656006324003 +7177 0.000754367585964019 -0.0006900622172340766 0 0 0 5.9752999890626114e-05 +7184 0.000873203998851714 -0.00029342525047206035 0 0 0 0.00025612017321326305 +7959 0.001173721702411736 -0.00022039644092980618 0 0 0 -1.8224614794669716e-05 +7221 0.001030343352618889 -0.0007554835919519078 0 0 0 2.0425270382458107e-05 +7228 0.000904106167772854 -0.00036052317160860446 0 0 0 4.85581890681256e-05 +833 0.0006688008448754391 -0.0007969799521159313 0 0 0 5.06820404520326e-06 +2385 0.000331239556854283 -0.00038660819232341694 0 0 0 0.00022048761392261235 +7376 0.001133473198929752 -0.00036999143978934607 0 0 0 2.6908728024588623e-05 +7438 0.0003994679165536031 -0.00027120926588292566 0 0 0 0.00014481155270360037 +2654 0.0006659341297096641 -0.0008380370914107881 0 0 0 4.443386943688024e-05 +8530 0.001088751002510365 -0.0008030730801557461 0 0 0 3.63375772616792e-06 +7526 0.0004473320817759963 -0.00024174800613883116 0 0 0 -0.00025337729196280603 +7542 -0.0014497073648319513 0.0005963352603615944 0 0 0 -0.0010148788632137835 +7619 0.0004334651106977655 -0.0002586471658478381 0 0 0 0.0002867800753236652 +7722 0.0007629907927628923 -0.0008100807825098438 0 0 0 4.775480140726831e-05 +7726 0.00075917981299596 -0.000753384654181005 0 0 0 9.414752614485182e-06 +1191 0.0010177460646120231 -0.00034919991488365675 0 0 0 3.309961569281532e-05 +7771 0.0009267788063025304 -0.0005405261992286607 0 0 0 0.00010799450449797234 +7773 0.0008639430689734734 -0.00023985702312879386 0 0 0 -1.0220188067918132e-05 +7840 0.00113584917233392 -0.0001863368239400399 0 0 0 -7.03137052869476e-06 +7934 0.0006694650326654418 -0.0008237462758588559 0 0 0 -6.084197056877418e-05 +7948 0.0006670586917696739 -0.00035794709714972317 0 0 0 0.00014079012086664212 +4014 0.0011615006363815549 -0.0007901724239859626 0 0 0 2.741805520318064e-05 +7965 0.0009613920431776837 -0.0008016089257428593 0 0 0 2.7115009751080535e-05 +8000 0.0009228067633487732 -0.0008243971936295119 0 0 0 3.11574661496717e-05 +8043 0.0008120257147038854 -0.0008677733922263367 0 0 0 3.719030208123885e-05 +8116 -0.0011593142032603966 -0.002245308902528874 0 0 0 0.00043309746103962273 +9638 0.0005063042027221608 -0.00023352930916728878 0 0 0 -0.0006014430619546743 +8170 0.0007419004206292546 -0.0006048194037073865 0 0 0 0.00011007225366729995 +8192 0.0007556937497450826 -0.0009092333759917222 0 0 0 5.491862473317272e-05 +8251 0.0008320805580548626 -0.0009628051275015364 0 0 0 4.064733849843548e-05 +8273 0.0010655878411353168 -0.00026992898987317606 0 0 0 2.6462282709959198e-05 +8286 0.0006679634641447965 -0.00040860088052561787 0 0 0 0.00011918311523787624 +8303 0.0007931358967862666 -0.0007996070813799721 0 0 0 6.513038005217988e-06 +8335 0.0009262006001301783 -0.0008914304450228558 0 0 0 1.3361996496793439e-05 +8372 0.0008366787426101545 -0.0004417846948790812 0 0 0 -8.672112253401787e-05 +8377 0.0008500978370568773 -0.0002629832857999062 0 0 0 5.4880217545865365e-05 +8402 0.0004693791304691703 -0.0002633363691056216 0 0 0 -0.00021245031722867683 +8491 0.0009065709950036214 -0.00032484766733720515 0 0 0 0.00026746693114367524 +8504 0.0010933628191153628 -0.0002619996834220269 0 0 0 -0.00014772600663658838 +8584 0.001236309338476347 -0.00033011788139745876 0 0 0 -9.504073521301336e-06 +9775 0.0008431318664928332 -0.0004151537251769271 0 0 0 0.0001310559662443424 +8666 0.0009201916818788026 -0.0002806268611355729 0 0 0 0.00019817645775217608 +8701 0.000998503544671238 -0.0006695356926056979 0 0 0 5.489704062459745e-06 +8762 0.0005210468568603168 -0.0005168164902626446 0 0 0 -1.9797769320291595e-05 +8793 0.0005304917704645694 -0.0003997544488202721 0 0 0 -3.818270091285416e-05 +8845 0.0008769187990634403 -0.0003495884333223032 0 0 0 5.2638244639815146e-05 +8860 0.0004769891127176425 -0.0003413331875399692 0 0 0 3.120171153420872e-05 +8915 0.0009279873270588063 -0.0008355488611784732 0 0 0 4.108579005412729e-05 +8940 0.0007240171788016349 -0.0004179839482459772 0 0 0 -1.4405663968566443e-05 +8990 0.0008978966875746296 -0.0007206421365172647 0 0 0 0.0001353163776007396 +8578 0.0029774131214676857 -0.0018154498407950749 0 0 0 -0.0021288920507599963 +9050 0.0006630086507360868 -0.0007684392235099223 0 0 0 4.7745172764259913e-05 +2858 0.0011344497841081682 -0.0004336086825021512 0 0 0 -8.856608541697227e-06 +9182 0.0008562128791585811 -0.0008913690478360906 0 0 0 1.2217576940740364e-05 +9195 0.0007654809690248119 -0.0008839483355357327 0 0 0 5.819646150394421e-05 +9218 0.001019251324932022 -0.0007671644397781512 0 0 0 1.7867019802826574e-06 +9232 0.0008492313799448118 -0.0003074875059107274 0 0 0 -0.000206758257175331 +9266 0.0007768036075516137 -0.0005790096216277071 0 0 0 0.00016852043624708524 +9859 0.0011444918401455045 -0.0003719333576270536 0 0 0 -1.3824365947895612e-05 +9352 0.0008646829459362945 -0.0003229632966619099 0 0 0 -0.00018716993122934832 +9792 0.0004123201675904965 -0.0007763006687874249 0 0 0 -0.0023017950278497257 +9449 0.0007450392044673265 -0.00034868092710486025 0 0 0 5.1444366237271315e-05 +9464 0.0010071759136032078 -0.0008318323805764268 0 0 0 -2.8560181873783724e-05 +9471 0.0008914464319290007 -0.00020259652970418425 0 0 0 -0.0005153071462602324 +9509 0.0007609786829413452 -0.0005986310023464714 0 0 0 0.00020393422751392015 +9548 0.0009046300152255887 -0.0006749913128787173 0 0 0 -2.155057521368959e-06 +8224 0.0006080858947168563 -6.529263814337278e-05 0 0 0 -0.0006437799573514935 +5896 0.0008761475741728099 -0.0009944113671360927 0 0 0 -6.827311295794962e-05 +5515 0.0006942087868794314 -0.0008682743725103017 0 0 0 -4.676230005404283e-06 +657 0.0007407956397173926 -0.0009116263767949345 0 0 0 3.0288384379956326e-05 +41 0.0005644360575111453 -0.0008647316540014039 0 0 0 2.41431930128023e-05 +6510 0.0006423902225998258 -0.000857735336413859 0 0 0 -0.00011251788535269244 +939 -0.0001220723405615729 -0.00016128456880490244 0 0 0 -1.245595460378751e-05 +1769 -0.00016488706373484301 -0.00014404655417189714 0 0 0 0.00010307111141466823 +6417 -0.0006693528993917298 -0.000414557945926017 0 0 0 4.569159097786993e-05 +2684 -0.000521036331878519 -0.0004130154907818985 0 0 0 1.5649624169707465e-05 +2522 -0.0005932384129732309 -0.0003132756941438984 0 0 0 3.87878490242584e-05 +2862 -0.0003758910108660903 -0.00035931602074721237 0 0 0 0.000299333646861195 +7271 0.00017839363490329633 -0.0012594326209934593 0 0 0 0.001052508283477343 +2259 -0.0006505302999276674 -0.0003940558927337432 0 0 0 3.144016779147475e-05 +4720 -0.0004238450624075411 -0.00040678610442700477 0 0 0 -0.00013937593642017514 +1717 -0.0003116559320144583 -0.00027961116924881427 0 0 0 7.371092006786533e-05 +6977 -0.0001368859962567111 -0.00026460993773500565 0 0 0 0.0005926711680393466 +9428 -0.00015210138172846812 -0.0002504141226207979 0 0 0 0.00034527310165687145 +9905 -0.0004231999749939516 -0.00045150192464013793 0 0 0 3.340003202297911e-05 +6816 -0.0007688945708083098 -0.0004442892592163966 0 0 0 7.614652855979263e-05 +9926 -0.00022517944715664466 -0.0003210274150806769 0 0 0 0.00017336439332884894 +9193 -0.00037372030108468466 -0.00046310174121932517 0 0 0 0.0004794092355457917 +7444 -0.0004871030283790775 -0.0002720336941296588 0 0 0 9.050616614549065e-05 +5282 -0.0005882694241799113 -0.00040213947218401366 0 0 0 -1.06662952313635e-05 +2000 -0.0004760474335731818 -0.0004360894688179253 0 0 0 -8.103340301730582e-06 +6370 -0.000617231671511725 -0.0003968021343032497 0 0 0 8.528442895980345e-05 +580 -0.0007565210294237088 -0.00042850482413647647 0 0 0 -5.7010048018354905e-06 +6517 -0.00025466853989354127 -0.0003402352708554435 0 0 0 0.00030990053136777514 +3538 -0.0005108694308046138 -0.00035971376360919823 0 0 0 7.485018089662085e-05 +325 -0.0006379989782026159 -0.00046555560602287824 0 0 0 2.5463668202193914e-05 +6991 -0.0003054594679841408 -0.0003222393719068662 0 0 0 -0.0003889630093682196 +1765 -0.0003092706101197533 -0.000216335914009803 0 0 0 -3.764264046171469e-05 +1618 -0.00026827806253909786 -0.0003051173198120817 0 0 0 0.000127953588930806 +5434 -0.0002684665451154934 -0.0003215599256148376 0 0 0 0.00029329173985950954 +3412 -0.0007009815392674194 -0.0004106651979448859 0 0 0 3.744097356967416e-05 +12 -0.00029418033907173684 -0.0010396751301620447 0 0 0 5.091004335892161e-06 +18 -0.001024971093304573 -0.0006351666905149008 0 0 0 1.7101009954864543e-05 +50 -0.0006321924343151365 -0.0007144186920814156 0 0 0 -4.197242499500426e-05 +58 -0.00047000989213208237 -0.00033233019274499985 0 0 0 5.055297366014764e-05 +7257 -0.0002642803517008543 -0.00108877053498185 0 0 0 -2.097907564528953e-05 +116 -0.00039330650296058036 -0.001018772595422396 0 0 0 -4.125516956012109e-05 +143 -0.00016150551888168634 -0.0007769205400619956 0 0 0 -1.1347275104298278e-05 +7897 -0.0003264706527397118 -0.0010987071177417408 0 0 0 -0.00010456682446717087 +158 -0.0009128343316200104 -0.00037383864032443956 0 0 0 9.50433514917345e-08 +167 -0.0008069642075017333 -0.0007635308516976194 0 0 0 -3.896241619543677e-05 +205 -0.0006811308854469871 -0.000846760213343897 0 0 0 -1.148229244895607e-06 +234 -0.000749002859688227 -0.0007248680973487941 0 0 0 2.104342961257146e-05 +299 -0.00031292547557930345 -0.0003019821510058329 0 0 0 4.6411335121687785e-05 +322 -0.0005045439271312607 -0.0008549237820386109 0 0 0 -1.0395456756594173e-05 +3861 -0.0007209511216864332 -0.0005898652848044335 0 0 0 0.00018953489130288406 +386 -0.0005294674510056502 -0.0005171449047356673 0 0 0 4.31978340645282e-05 +4583 -0.00017839900973062596 -0.00098487007639338 0 0 0 0.00011028635441817697 +636 -0.0004800305758252144 -0.0005557211180152254 0 0 0 4.9342828039359135e-05 +788 -4.551873970913444e-05 -0.0005353115599811713 0 0 0 0.00014225169226807357 +799 -0.0006485662930052809 -0.0005059632388196044 0 0 0 4.3392761986594896e-05 +821 -9.647269611368404e-05 -0.0005496075540253264 0 0 0 -7.847371783536398e-05 +8494 -0.00019943872842630804 -0.0009439753763374199 0 0 0 0.0003549715622896802 +869 -0.0006077191545307793 -0.0007669986406580949 0 0 0 -8.94005133394298e-06 +874 -0.0006061216226877112 -0.0007823132327748831 0 0 0 -4.625386031314767e-07 +4722 -0.00031800777610301403 -0.0009320952535468399 0 0 0 2.981352978444036e-05 +945 -0.001021220170583901 -0.0006340884995977171 0 0 0 -7.667660323441383e-05 +1037 -0.0007308467886216059 -0.000785611100686829 0 0 0 2.5854700928251897e-06 +8410 -0.00034890351774528026 -0.0008700987347245062 0 0 0 -4.999141769504029e-05 +1112 -0.0007609278795812008 -0.0007844217499185758 0 0 0 3.226198373280128e-05 +1137 -0.0002429587696650122 -0.0007954830782932442 0 0 0 9.899113829203538e-05 +1222 -7.644156618300862e-05 -0.0008085017856135518 0 0 0 5.603004377301602e-05 +1202 -0.00029436651696587913 -0.0007747407808246108 0 0 0 -2.05213994508852e-05 +1206 -0.00045471075732075145 -0.0008401881169026616 0 0 0 -3.7573823972179814e-05 +9978 -0.0002800618272323188 -0.001055941008679942 0 0 0 0.00011920178379939933 +2989 -2.050428049126105e-05 -0.0006665339615638704 0 0 0 -0.00011956454287977404 +1296 -0.00043494861243623063 -0.0004792164390909803 0 0 0 4.488710375687455e-05 +6658 -0.0002871635573404653 -0.000247369953564942 0 0 0 0.00027538702044198885 +1312 -0.0008545505408376735 -0.000740236954023286 0 0 0 -3.5952402376505356e-05 +1315 -0.00065716252732993 -0.00053918191601825 0 0 0 -1.57170884403133e-05 +1341 -0.0003629626882473224 -0.0003172050849608548 0 0 0 5.234806101358754e-05 +1342 0.00032337632282017527 -0.0001237951147655364 0 0 0 6.822638647822032e-05 +6062 -0.00032456080356045694 -0.00020324713750836343 0 0 0 4.9393099337468514e-05 +1404 0.00038971347485736917 -0.0002709982793033564 0 0 0 0.000106383933117497 +3855 -0.00032432538106578985 -0.0008825541110238759 0 0 0 -5.6441977173063586e-05 +1445 -1.6347441339437877e-05 -0.0006617639094418509 0 0 0 0.0002354940713387277 +1530 -6.0753086934859904e-05 -0.0006278726530492896 0 0 0 6.501587647776348e-05 +1666 -0.0008282936316173923 -0.0004789843655948261 0 0 0 -4.7350286922357623e-05 +1677 0.0003534644412993311 2.6239843457845265e-05 0 0 0 4.554288504448074e-05 +1683 0.0002639380100685769 -7.436063175383792e-05 0 0 0 -0.00010781543727898625 +1752 -0.00013886301869170438 -0.0007172460475918808 0 0 0 -9.864215701040284e-05 +1789 -0.0003408311193650878 -0.0009323109411657285 0 0 0 -4.647171410501382e-05 +1828 -0.0006764867741892417 -0.00073336380231894 0 0 0 3.228538454826509e-05 +1835 -0.00023100532818813504 -0.0005453121629097086 0 0 0 8.277597685939862e-05 +9710 -0.0005425881016933952 -0.0004490677177535203 0 0 0 0.00019433640833142833 +9829 -0.000347154017402142 -0.0007552267409987838 0 0 0 8.19062350668762e-05 +2324 -0.000493039860525293 -0.00033885119583455337 0 0 0 -0.00012071358292175783 +1916 -0.0005464254975515613 -0.00046666665296711383 0 0 0 -0.00012784817632860174 +1929 -0.0002075902657808871 -0.0006539866221233106 0 0 0 -0.00013925383799973722 +1942 0.00023128778087669338 2.94176088322634e-05 0 0 0 -9.81391192593486e-05 +1959 -0.0003186241684464229 -0.0008364073760811502 0 0 0 -2.6911444441220534e-05 +1980 -0.0005355939991220148 -0.0008530177269957592 0 0 0 9.556857104116952e-06 +2007 -0.00048639883868879054 -0.0003810629533065871 0 0 0 -0.00012058790736223351 +2019 -0.00021176842506362236 -0.0006849339644909634 0 0 0 -7.259218893541186e-05 +2025 -0.00013779901758589886 -0.0007831509232883367 0 0 0 -5.073842564397835e-05 +2064 -0.0008053215994973021 -0.0008343441146742375 0 0 0 -8.036802242890522e-05 +2090 -0.00012268459662333208 -0.0007241253676581139 0 0 0 0.00013327665493444597 +2109 -0.0005923812097116069 -0.00042064310113888384 0 0 0 3.5765311775169115e-06 +9698 -0.0006954864116064035 -0.0004466502270633868 0 0 0 0.00010774283984896793 +2325 -0.00030160222420261073 -0.0007340563226927395 0 0 0 5.401360394486023e-05 +2600 -0.00027019324921472737 -0.0011437714942592575 0 0 0 4.423086437988312e-05 +2279 -0.000623519229942618 -0.0009278443603708297 0 0 0 -4.222580329409549e-05 +2321 -0.0006053400830803304 -0.0009103462521606808 0 0 0 3.9719759050512695e-05 +2329 -0.0007655643703577219 -9.968119644302746e-05 0 0 0 3.4025206976879524e-05 +2338 -0.000316756814019579 -0.0009800964919906949 0 0 0 -0.00015222599745760504 +2363 -0.00044262067367303 -0.0007963634882705257 0 0 0 -0.00014169246015896335 +2374 -0.0007666727556476942 -0.0008235930500112151 0 0 0 6.253748227081592e-05 +2439 -0.0004479265062891061 -0.0004532063699953097 0 0 0 0.00018590680867671335 +2455 -0.0004382719169283803 -0.00022885824068930358 0 0 0 -0.0002432582257838185 +2597 -0.0003784717580094749 -0.0005237293321228154 0 0 0 -1.8190480828466734e-05 +2613 -0.000882523786353524 -0.0006723022761661674 0 0 0 -3.3039294788412105e-05 +2746 -0.00031958109499040176 0.00014505694811471826 0 0 0 4.768930393734453e-05 +2765 -0.0006160252578139494 -0.0007543259019541325 0 0 0 -2.1580379564234444e-05 +2790 -0.00039142323844454797 -0.0004897525244778943 0 0 0 -2.9385687416490996e-05 +2826 -0.0003035490721841261 -0.00043992172230019136 0 0 0 2.005673895478886e-05 +8009 -0.00033422952438602653 -0.0007364604487551226 0 0 0 0.00015625110489852893 +2863 0.00030615689501288626 1.889298958612156e-05 0 0 0 -5.1142759637120174e-05 +2907 -0.001022981423822811 -0.00064361671767472 0 0 0 -0.00022328528605218114 +2945 -0.0006916101442915143 -0.000737885107146175 0 0 0 7.537993149798467e-05 +3095 -0.00030923372847982384 -0.0003778923080433555 0 0 0 -2.4998719952823788e-05 +9407 -0.00021568143928339854 -0.0007381165513508777 0 0 0 -3.5359921572447835e-05 +1513 -0.0003585166255930463 -0.0008671158757028403 0 0 0 2.6560376808902738e-05 +3246 -0.0007472857679652941 -0.0007875063363669976 0 0 0 7.015109994264075e-06 +3330 -0.0006070280797174386 -0.0009417222257811825 0 0 0 -7.196733181655111e-05 +3353 -9.228527399239049e-05 -0.0007356316247214057 0 0 0 -6.73233210934862e-06 +3372 -0.00019779724120540723 -0.000674748946046522 0 0 0 -0.00013745983002023653 +3424 -0.0006567478672996213 -0.0008662095452140088 0 0 0 -9.337181987710135e-05 +3441 -0.0009284541618182029 -0.00043260052365971737 0 0 0 9.996038226270664e-06 +3479 -0.0005428464251113964 -0.0007703542808024026 0 0 0 9.109349221846881e-05 +3491 -0.0007816054146247332 -0.0016618933495644531 0 0 0 -0.0005030220254875483 +3522 -0.0006132478455389591 -0.0009302184557402615 0 0 0 2.4312425149994927e-07 +3532 -0.00044881334145580065 -0.0004924500582138493 0 0 0 -4.2800408126177585e-05 +3543 -8.798704811150658e-05 -0.000565859078987421 0 0 0 -4.835178889756763e-05 +9310 -0.0006038613154833339 -0.00040470812240880135 0 0 0 4.3170000348041516e-05 +3613 -0.00036103375967909645 -0.0002247073778224401 0 0 0 0.00036620243746391176 +3621 -0.0009381090458009763 -0.00048729199900280663 0 0 0 -0.00012603102909605247 +7239 -0.0002924069311553779 -0.000906039575310892 0 0 0 2.5880645942389105e-05 +3710 -0.00020064948698189338 -0.000673521319874764 0 0 0 2.956150172840245e-05 +3730 -0.000507120073893689 -0.0008242877995736695 0 0 0 -0.00024312091917935924 +8759 -0.00026046273529116486 -0.0010582268429080055 0 0 0 6.077116694110906e-05 +3804 -0.0010004387201484415 -0.0005161480001553065 0 0 0 0.00014140296476300245 +3814 -0.0007178046038847073 -0.0007027411931416729 0 0 0 0.00014441491134185015 +9359 0.00027745617635198286 1.5167849462481685e-05 0 0 0 -3.3940165518800235e-05 +3854 -0.00017284699998391264 -0.0006800433795801608 0 0 0 0.00014883331751319249 +9346 -0.0008397214950073392 -0.0006616695735871852 0 0 0 -2.8507090659176516e-06 +3882 -0.0004097977563044123 -0.0003867919254552542 0 0 0 -9.774039307277182e-05 +3887 -0.0005656891779952385 -0.0006476583419083167 0 0 0 0.00011011104844644858 +3897 -0.0007213644874959214 -0.0002287632215768882 0 0 0 1.9045206557108326e-05 +8294 -8.120674200037168e-05 -0.0005491618058339151 0 0 0 0.0003462561752898254 +3949 -0.0004390335210448465 -0.0006172531285203775 0 0 0 -0.0004804108621937073 +3962 -0.0005553650243985654 -0.0008410615348533276 0 0 0 -3.595812746952655e-05 +3993 -6.409556996912535e-05 -0.0008498202273391103 0 0 0 4.286496177464395e-05 +4008 -0.000731234527889135 -0.0007711608971476793 0 0 0 -9.156487094152455e-05 +4033 -0.0005826318916579836 -0.0006753662673381549 0 0 0 0.00018599678345683986 +4083 -0.000507398481123352 -0.0005021698640148476 0 0 0 -0.00027600050163182396 +4085 -0.0009019743850757967 -0.00047753501378607673 0 0 0 4.6813453655228326e-05 +4121 -0.0004967862050367111 -0.0005760023028012193 0 0 0 -6.607190927675487e-06 +9601 -0.0006830226796866297 -0.0006062501550795492 0 0 0 -4.4983038538231064e-05 +3436 -0.00048073158390789396 -0.0008585908785082606 0 0 0 9.050037570349438e-06 +9180 -0.0002775867213463435 -0.0007449583642655153 0 0 0 0.000168703146280457 +4246 -9.345161567752846e-05 -0.0006825451777373687 0 0 0 -8.3841910434804e-05 +9670 -0.0005488134023953857 -0.000716114952785787 0 0 0 -0.000208310265697872 +4270 -0.0003246729553381649 -0.0008646334658361285 0 0 0 6.314280523332267e-06 +917 -0.0005357602616940215 -0.0009138247288698416 0 0 0 -1.7604391907854106e-05 +4282 -0.0006197508629390905 -0.0008319264668811266 0 0 0 -5.07871524790833e-05 +4321 -0.0005008119158227206 -0.0009113709996466317 0 0 0 -3.010464911353391e-05 +4342 -0.00037460601212869186 -0.0009745359426591397 0 0 0 1.8563050571785595e-05 +4371 0.0003047852813442712 -5.434603957534565e-05 0 0 0 0.00010553253515184443 +4411 -0.0004287475224949288 -0.0009568763656060464 0 0 0 -8.959051812186156e-05 +4418 -0.0005181427317525069 -0.0005604049785602232 0 0 0 0.000322681871943493 +4509 -0.0003963734747996176 -0.0009965940553903563 0 0 0 -1.5842809365098358e-05 +4580 -0.0005165962000607914 -0.00031979931253505085 0 0 0 -6.934153875676729e-05 +4759 -0.000563213420773818 -0.0010299655166025343 0 0 0 5.5549722699129666e-05 +6080 -0.0003755377386848708 -0.0008525218533216476 0 0 0 -2.43191313976483e-05 +1872 -0.00023344682489244838 -0.0007331272017773042 0 0 0 -6.057624777343618e-05 +4832 -0.0003658894559953807 -0.0008192946571289362 0 0 0 -2.404425290216498e-05 +4856 0.00039822265364188996 1.665420306465646e-05 0 0 0 2.2324673349502487e-05 +4957 -0.0003645890580678481 -0.0003974157086970062 0 0 0 5.7958714244034525e-05 +5000 -0.0008163975014899642 -0.0006621370576601 0 0 0 -8.742615275994005e-05 +5039 -0.0009002798322315336 -0.00040916697138805135 0 0 0 7.29619747781122e-05 +5047 -0.001049063653095246 -0.0005856789559195259 0 0 0 -0.0001739362868733985 +997 -0.0005417252452433117 -0.0008759240764756706 0 0 0 -2.7727584934144958e-05 +5113 2.4724614706973385e-05 -0.0007155757535435184 0 0 0 6.850871336350796e-05 +5121 -0.00027413898669040315 -0.0002851748072000201 0 0 0 -0.00018617297044556865 +5135 -0.0008214109948920002 -0.00035964255507865575 0 0 0 0.00018253946419344232 +5303 -0.0006228247606070513 -0.0006611806668437152 0 0 0 0.00017096222341097286 +5320 -0.0003477451014205714 -0.0002912648750803763 0 0 0 0.0006151675716755117 +5343 -0.000610295425265438 -0.0008412592855967936 0 0 0 -8.39360285325149e-05 +5358 -0.00037183429532808727 -0.0010297900702202498 0 0 0 -0.00021294992113711904 +5460 -0.0006799515415800864 -0.0009147447387782148 0 0 0 8.915788232939883e-05 +5492 -0.0003674005970209262 -0.001045611299303768 0 0 0 -0.00015566687581844882 +4268 -9.402845476354937e-05 -0.0006157422921118254 0 0 0 0.00013438134458889291 +5673 -0.00039195939384542675 -0.0009008479352283629 0 0 0 8.120269142822494e-05 +8488 -0.00040176920123790227 -0.000921395610295226 0 0 0 -1.2864993335615164e-05 +5728 -0.0005746230862282 -0.0007922243441916551 0 0 0 -0.0004196611721613076 +8894 -0.00031886644975781314 -0.0010939482985806027 0 0 0 9.668523499214302e-06 +8524 -3.011629949713403e-05 -0.0006680575503107781 0 0 0 0.000228966990972545 +5857 -0.0004089014937008513 -0.0010155318307711507 0 0 0 -0.00010836801215885852 +5865 -0.0008785168959098406 -0.00053854402475618 0 0 0 5.315311612358516e-05 +5870 -0.0006276407034054738 -0.00045277624900095864 0 0 0 1.6010181314301342e-05 +5890 0.00025155190315197875 -0.0001826448209389385 0 0 0 -0.00016045435458064233 +9452 -0.00027736207192734377 -0.0010540726917608915 0 0 0 2.9808244077455136e-05 +5934 -0.0003151942879052866 -0.0004384699288763691 0 0 0 -0.00021647199859804712 +5978 -0.0002931356012728248 -0.00022611855852074957 0 0 0 0.00024135311176748478 +5990 -0.0006171090353960268 -0.0008528871348762598 0 0 0 1.547775831393878e-05 +6073 -0.0003569643825326069 -0.0007065971636658594 0 0 0 2.80145866536714e-05 +2370 -0.00027765970206606526 -0.0010609461086949872 0 0 0 -4.996908091590572e-05 +6158 -0.0004355728898479484 -0.0005262005340355173 0 0 0 -7.143139990841946e-05 +6171 -0.0008134805037559458 -0.0006190069075413371 0 0 0 -9.69093110187765e-05 +2705 0.00033986730561028756 6.845847073645103e-05 0 0 0 4.123589391033259e-05 +6190 -0.00044701171177090814 -0.0010190147469734973 0 0 0 -5.688110698626097e-06 +6243 -0.0002609467419713795 -0.00022055012396917178 0 0 0 0.0002917098663469627 +6301 -0.000578822778785428 -0.00041025144845471383 0 0 0 -6.841863744268503e-05 +6309 0.00010740533383433586 0.0003487412320696679 0 0 0 -4.322034162393099e-06 +6406 -0.0009639821650014164 -0.0007278420951106689 0 0 0 -0.00011327996022027975 +2443 0.00016913150634167537 -0.00010952235981965027 0 0 0 0.0001504780854187824 +6533 -0.0001534188544181357 -0.000763998931995527 0 0 0 6.244171538596147e-05 +9955 -0.0003429880631161578 0.0008865317834682029 0 0 0 -0.001199671276090397 +9045 -0.0003194915437768634 -0.0010907995093900787 0 0 0 7.56470097779124e-05 +6644 -0.0007431163929366563 -0.0006970024424121246 0 0 0 -2.574868525300052e-05 +6646 -0.0006009482152227202 -0.0006165711077152946 0 0 0 0.0003475056510634518 +6650 -0.00057853218370189 -0.0009218843700506151 0 0 0 -2.5102352987422927e-06 +6670 -0.0002652749149105022 -0.0006846432421973062 0 0 0 -0.0008915177359560586 +6698 -0.0007538905350110214 -0.0007673678164379943 0 0 0 -8.963904199641209e-05 +6712 -0.0006003378059925222 -0.0008527018980312284 0 0 0 -3.827993486491577e-05 +6736 -0.0010234184217205505 -0.0004872404915042973 0 0 0 -3.202247359175149e-05 +9152 0.0018263458610307877 -0.001453424070822775 0 0 0 -0.0003833583447378747 +7920 0.0004066153837133917 -0.00042992306793684953 0 0 0 -0.0008046987279300321 +6773 -0.00035865855853512655 -0.001011851138809436 0 0 0 7.068556180036203e-05 +6788 -0.000489115554858189 -0.00023431851430997218 0 0 0 9.33510936056256e-05 +8089 -7.198800246923588e-05 -0.0008553686334381675 0 0 0 8.532657956886629e-05 +6793 -0.00025763083123896206 -0.0003362649841776872 0 0 0 5.944039431024011e-05 +9357 -0.00010293900362536461 -0.0007094746617588507 0 0 0 0.00022821581215240504 +1294 -1.0600386235029055e-05 -0.0006097007506122112 0 0 0 6.642356243875037e-05 +6872 0.00028734503782448003 1.6344745015083074e-05 0 0 0 -0.00010497054080511427 +6885 -0.0005489644361577075 -0.0010774106515908013 0 0 0 0.00023200063997183865 +6898 -0.0006466454667952734 -0.0008776555341220043 0 0 0 -9.629337612482642e-05 +6923 -0.0005150574605310435 -0.0003790528831044295 0 0 0 7.321836925802454e-05 +7033 -4.3904206918113135e-05 -0.0006313478780647721 0 0 0 -0.00015684335653888437 +8234 -0.0003261699257508075 -0.00031461533138525514 0 0 0 0.0005265819052375626 +7073 -0.0006808820230736597 -0.000614333672075554 0 0 0 0.00024209814988888478 +7087 -0.00024214943759387036 -0.0007188280478252074 0 0 0 -4.813143591595533e-05 +7093 -0.0005142944177282125 -0.0007907355064376807 0 0 0 -0.0001333033137456271 +7156 -0.0005776175492911833 -0.0004589093387180618 0 0 0 -0.00017103214617678882 +7190 -0.0004541801742937417 -0.0005605169467668915 0 0 0 0.0002630895492382161 +7292 -0.0006470289632931999 -0.0005077645434517801 0 0 0 -0.0002879314782834806 +7298 -0.00031652950708271617 -0.0009908515946501638 0 0 0 0.000165312507840549 +6936 -0.0002676029673548311 -0.0009771077339751754 0 0 0 5.802748578851887e-06 +7519 -0.0004279193685129696 -0.00051645132406275 0 0 0 -1.1876597456652702e-05 +7582 -0.0003025696146032377 -0.0007352284598776249 0 0 0 -2.1622819446876183e-05 +2841 -6.40746113402155e-06 -0.0005306875287985022 0 0 0 5.248767143210501e-05 +7631 -0.0006680448506424693 -0.000693595648006196 0 0 0 -3.398907772409494e-05 +7676 -0.0010362965423878763 -0.0006271704365331114 0 0 0 6.47895287536276e-05 +7710 -0.0006033769130003904 -0.000780591241288164 0 0 0 -8.659860479709809e-05 +7719 -0.0004955899605757815 -0.0003347833933553711 0 0 0 -0.000544068751980943 +7741 -0.0006026739454976248 -0.0007742808645946655 0 0 0 0.0003879808541012231 +7896 -0.00031096738524796313 -0.0013851660628952354 0 0 0 -0.0004768265086314111 +9874 -0.0004660383931228586 -0.0006356350931686109 0 0 0 -0.00018790630223584014 +7956 -0.00253986439939437 -0.0010246024370310824 0 0 0 0.0006090632433217274 +7976 -0.0004403059924179963 -0.0005443371631617967 0 0 0 5.8661532532157795e-05 +7982 -0.0009467505628093452 -0.0005291089807580071 0 0 0 9.004765657665989e-05 +9830 -0.0007485595266178736 -0.0008644955229288727 0 0 0 -8.74692538307206e-05 +8027 -4.5235783167596946e-05 -0.0006229827190954381 0 0 0 0.00040492444051133496 +7496 -0.0003315207910307325 -0.0011580955230229154 0 0 0 2.0483858771808907e-05 +2336 2.2429788030008257e-05 -0.000597434792314292 0 0 0 -4.723572548442552e-05 +9834 -0.00022841329569048667 -0.0010343861952877326 0 0 0 2.8960552545146045e-05 +6975 -0.0004918623809151703 -0.0008174347203076186 0 0 0 -3.7784036635269196e-05 +8227 -0.0006794016540989759 -0.0008491246239995602 0 0 0 -2.6121836028275162e-05 +622 -2.299142445219482e-05 -0.0005911886130992058 0 0 0 -8.419325948027742e-05 +8241 -8.337661642116404e-05 -0.0006932248394913941 0 0 0 0.0001358467028526619 +9325 -0.00027022530907837495 -0.0010021044830918736 0 0 0 0.00012818361530659065 +8334 -0.0007145658826309378 -0.0006470814067154679 0 0 0 6.749881927850819e-05 +8853 -0.0003883669026459895 -0.0008649853242020892 0 0 0 -7.91784385886107e-05 +8354 -0.00027919952019152554 -0.0009598919516074762 0 0 0 -3.237361264301151e-05 +8413 0.00040320291903222334 -0.0017347739617492282 0 0 0 0.0007165643937070856 +8417 -0.0006570081039358265 -0.0005502339677610525 0 0 0 6.950353393630033e-05 +7056 -0.00015314803564374767 -0.0009229251654878355 0 0 0 9.600961299878028e-05 +8468 -0.000530998468407084 -0.0007943118087585685 0 0 0 -0.00012229614098156977 +8486 -0.000460513893692636 -0.0005199223958306075 0 0 0 -6.021462003389477e-05 +9740 -0.00046485111348489895 -0.0004987527705567875 0 0 0 -0.00021041332444653453 +8339 -0.0002891460006384288 -0.0011679913232771103 0 0 0 1.56284749473634e-05 +8582 0.0003142947473637289 -0.0002293442098399593 0 0 0 -0.00015068544481340736 +8595 -0.0021484839047646903 -0.000655603989586468 0 0 0 0.0010416591079230545 +8649 -0.0004207153276390032 -0.0009028277018110025 0 0 0 -3.318373391391784e-05 +8653 -0.0006832883812540927 -0.0005662350673503168 0 0 0 6.875441134522303e-05 +8656 -0.0002393273087326993 -0.00047721593400507875 0 0 0 -0.00014265532953758144 +8669 -0.0009874169313340223 -0.0004179166850929887 0 0 0 -0.00010431093332999323 +9714 -0.00166244440549569 -0.0009232900554833692 0 0 0 0.0022002158875224745 +8712 -0.00043077770901680943 -0.00039060437764620035 0 0 0 0.00021145291431209594 +8755 -0.0006929914684604181 -0.00045250066377359885 0 0 0 -0.00017797770111364306 +8851 -0.0005866872482778844 -0.0006565159652267413 0 0 0 0.00020170248291740856 +8958 -0.0002014827563686432 -0.0006994636163259442 0 0 0 -6.195483541533783e-05 +9008 -0.0006442600562067511 -0.0007820404156828092 0 0 0 -0.00011980311450530298 +9011 -0.000720542145855502 -0.00077056711466893 0 0 0 -8.691266062261343e-05 +9129 -0.00041874545368973654 -0.0006264569905067623 0 0 0 9.343188773823516e-05 +9148 -0.0005520212679461209 -0.0009110142457706484 0 0 0 3.8629542386412834e-05 +1130 -0.00028267020117339733 -0.0011545175801448901 0 0 0 -4.985239372537781e-06 +9349 -0.00045308014940219213 -0.00037027855311017586 0 0 0 -0.0002294354866125079 +9199 -0.0005076605794360623 -0.0004001046156800554 0 0 0 -8.909075921494098e-06 +9212 0.00025986905230998943 -0.00016793779079173312 0 0 0 0.00022665336130225168 +9245 -0.0007848603002469931 -0.0007403909183276286 0 0 0 0.00010712243705663187 +1417 -0.0001234559354639461 -0.0006679242130000641 0 0 0 8.183382320624814e-05 +2497 -0.0008094514437500707 -0.00042735119448571824 0 0 0 -5.059376826706436e-05 +505 -0.0003908615443155702 -0.0007523180949683127 0 0 0 -3.21124283825162e-05 +6177 -0.0002520441516269898 -0.0006853821126509016 0 0 0 8.259322037866702e-05 +8507 0.0001769133337204284 -0.00015125831115026135 0 0 0 0.0006886011031690205 +4783 -0.00018986369100813767 -0.0006901987380177777 0 0 0 2.4317591195810153e-05 +7973 -0.0001246372373320043 -0.0006170299133501605 0 0 0 4.641336376747252e-06 +8564 -0.00017215435319823126 -0.0006989164357557657 0 0 0 7.809023880072145e-05 +8572 -1.5059472602763648e-05 -0.0006132665064644789 0 0 0 3.259240756861565e-05 +8902 -0.0006103419700122908 -0.0004378158758009734 0 0 0 0.0002409417476959834 +4281 -3.958855471583153e-06 -0.0005861391918739605 0 0 0 2.6591183438166746e-05 +5204 -0.000688812576890789 -0.0005614442867463356 0 0 0 -7.16196356113526e-05 +4787 -7.572435516087777e-05 -0.000655575350717482 0 0 0 9.508041823611863e-05 +5792 -0.00012440337343363756 -0.00064083901514003 0 0 0 -3.73665295980023e-05 +9118 -0.00023356941105043356 -0.000725136917786387 0 0 0 1.990712436068858e-05 +9632 -0.00027387356482062506 -0.0007297214163307349 0 0 0 -2.9531364733214824e-05 +3780 -0.0010600944761119575 -0.0006979204395919506 0 0 0 3.153832457275081e-05 +5905 -0.0004844153237901461 -0.0004091794016512262 0 0 0 -1.7405308428692075e-05 +1275 0.00036136121379188994 3.621199994975298e-05 0 0 0 7.95692083398462e-06 +3904 -0.0007060863191283266 -0.000499195748999762 0 0 0 -9.092701267765643e-05 +7518 0.00028881927597483776 -0.00025631603566884513 0 0 0 0.000978015718146044 +9888 -0.00025411042661778406 -0.0006413254454920197 0 0 0 3.845565313478331e-05 +2799 -0.0006665162535919695 -0.0004926177966550309 0 0 0 -5.631112433534082e-05 +3152 -0.00023259774879328418 -0.000620955979592333 0 0 0 2.5390217401259934e-05 +3669 0.00029500076211930995 -2.4118263357737626e-07 0 0 0 -9.682125652643664e-05 +1183 -9.703543360566724e-05 -0.00059870593849561 0 0 0 1.2511802251941564e-05 +4144 -0.0005813811812843133 -0.0003896912355979454 0 0 0 -4.780239764180724e-05 +1706 0.0001964911268889056 -0.00011241156156235297 0 0 0 0.0002793229883554741 +4488 6.923348159927934e-05 -0.00012600891865874057 0 0 0 -0.00030379794906605585 +6516 -0.0002460337807056436 -0.00011248311889331217 0 0 0 0.0003013948321166419 +434 0.0002899772119105556 0.0007990308072012588 0 0 0 -6.148161937248599e-06 +21 0.0014003153269916836 0.00045683435006070924 0 0 0 2.507540895007465e-06 +69 0.0007164435029051576 -0.0008405823378601168 0 0 0 -1.305787265157011e-06 +83 0.0008484787462773317 0.0005539365799518929 0 0 0 -2.0205278855555746e-05 +8095 0.0011924784724793008 -0.001199154313626079 0 0 0 -5.7809260235438784e-05 +121 0.0006627164305108836 0.00052046251648611 0 0 0 2.2491078716612417e-05 +133 0.0005877773405465398 0.000762876572491393 0 0 0 5.605975116007425e-06 +148 0.0006051999384493631 0.000237202756823364 0 0 0 4.299364543675555e-05 +250 0.0009226863529803667 0.0006073016026406144 0 0 0 -2.6456961000987297e-07 +257 0.0008224487173758738 0.0006851329128400396 0 0 0 -1.0204281602893967e-05 +284 0.000596907708793958 0.00048002507938838565 0 0 0 -7.475902002598364e-06 +332 0.0010455002360768933 0.0004020750991150196 0 0 0 -1.9764843329622243e-05 +8478 0.0006496317145154747 0.0008074629672113888 0 0 0 3.3340141135265905e-05 +355 0.0005214510257681481 0.0008208283261939269 0 0 0 -1.7521887486632145e-05 +374 0.0008168199426702134 -0.0004945611998093275 0 0 0 4.370614269643011e-05 +8920 0.00020083175992152312 -0.0007458238144480488 0 0 0 4.581066894753866e-05 +394 0.0009290920925848127 0.00028196286542507586 0 0 0 -1.949064177949458e-05 +419 0.0008716527071311239 0.0004655322533362956 0 0 0 -2.515487000574114e-06 +32 0.0002251095788879269 0.0007367157404208285 0 0 0 -3.1250067208863136e-05 +238 0.00027388559189703423 -0.0006823990570077234 0 0 0 -2.289127352051066e-05 +4048 0.00048327533148650363 0.0008545929664256767 0 0 0 -0.00013840828592643606 +4953 0.0009183078850495229 -0.0011730441966785225 0 0 0 3.0470043908416025e-05 +501 0.001139308310420097 0.0003113768194369272 0 0 0 2.9061811963097325e-05 +513 0.0012012723365998415 0.0005875157362740796 0 0 0 1.4573132279953866e-06 +528 0.0010320059141262646 0.0005674041156432416 0 0 0 -2.9265569041941916e-05 +608 0.0006439210579953036 -4.58665651492717e-05 0 0 0 2.400964241391485e-05 +665 0.0006256003307369317 0.0006023067038617346 0 0 0 2.4270673590374982e-05 +9737 0.001199107899243753 -0.000927872371144206 0 0 0 -3.0908634774652177e-05 +723 0.0009439421793686193 0.0005998284926304879 0 0 0 6.965695267375474e-06 +729 0.0009114742855532574 5.9823795971857083e-05 0 0 0 6.752602210669332e-05 +745 0.0010137118334167929 0.0005137400152370398 0 0 0 -7.441600184206994e-06 +753 0.001226195834046359 0.0005216123722330949 0 0 0 -1.928017782341748e-05 +876 0.0008819382555403545 0.0006670139182834765 0 0 0 -6.428204740834868e-06 +883 0.0006379670813918144 0.0007264585989590623 0 0 0 -1.862983843356113e-05 +935 0.0008674156035618952 0.0006303070654792366 0 0 0 -1.9112757976055615e-05 +9489 0.0004877955815698623 0.0008816526802740874 0 0 0 -8.121435045437415e-05 +960 0.0003811926855090246 0.0007024341717130297 0 0 0 -8.881316283202277e-06 +973 0.000635543622026036 0.000734219810001452 0 0 0 1.3065189366933729e-05 +982 0.000895444472979298 -0.00044001662275613854 0 0 0 4.176969870856071e-05 +1006 0.00037793668222971445 -7.246111906647011e-05 0 0 0 5.879750100451764e-07 +1018 0.0007719392791796753 0.000697008299954549 0 0 0 -9.961110764291944e-06 +1565 0.0009870084348927218 0.0006231362617434168 0 0 0 1.0899592924362252e-05 +3976 0.0009472489861941037 -0.0005766610043586747 0 0 0 0.00012263376569386603 +844 0.0006294869266999198 -0.001494939657212636 0 0 0 0.00022977780346625958 +1090 0.0012662738740849846 0.00011380784818883522 0 0 0 4.4554846239525835e-05 +1103 0.0013331432829958593 0.0005540157757976146 0 0 0 1.0688016320561662e-05 +1045 0.0005007215448877951 0.000503206076209061 0 0 0 -3.706703208664713e-05 +4382 0.001034236245255713 -0.0008786613271938794 0 0 0 -0.00017622286589988147 +1185 0.0007841477546127905 3.020855480121131e-06 0 0 0 -5.026256249753511e-05 +1194 0.0008055274459843641 0.0006235834503645694 0 0 0 3.072948697462807e-05 +1343 0.00033742311860913277 -0.000704656674723236 0 0 0 -1.8708830476543228e-05 +1352 0.0012577413906043752 -0.00033526573145894854 0 0 0 -3.7192238042416626e-06 +1355 0.0007360197806544537 0.00029307229344457876 0 0 0 3.827610245535096e-05 +1362 0.0013235274387692333 0.00012488554557210516 0 0 0 8.113466052879663e-05 +1395 0.0005923969042293172 0.0007526334184381544 0 0 0 7.651859782738848e-07 +1430 0.00017556946244957496 -0.0013539038350706108 0 0 0 -3.180719464255266e-05 +3980 0.0001849873251574219 -0.0006251349367311829 0 0 0 -1.9231594282096375e-05 +1467 0.0009360405402153502 0.0005564525731838191 0 0 0 -4.628301038300447e-06 +1518 0.001179974908384526 0.0005094206131257968 0 0 0 1.9835225621408698e-05 +4395 0.0011621508785727918 -0.00037026285104148864 0 0 0 1.6785439130872594e-05 +1550 0.001229788179898084 0.000623175458919515 0 0 0 2.6473892090193964e-05 +1560 0.0011640443871763404 -5.1289780452416035e-05 0 0 0 0.0001100863327172729 +7913 3.25761979448658e-05 -0.0006115186939205889 0 0 0 -0.00012968498604722862 +1575 0.0012794309518166314 0.0005145438683808415 0 0 0 2.5933334065249212e-05 +1593 0.0012338722397717229 -3.1646202946041315e-05 0 0 0 -1.1838072139252116e-05 +1620 0.0012573530320042219 -9.043302578569021e-05 0 0 0 0.00014388098639270746 +1660 0.0011552718807827417 0.0001980257225742553 0 0 0 0.00015581011542861376 +1674 0.0006085943707032178 0.0006841601105713214 0 0 0 1.951767842299243e-05 +1680 0.0012479493736096115 0.0006539260076060474 0 0 0 4.555811023803374e-05 +7768 0.0005069432136345143 0.0007110433865604973 0 0 0 -2.4033336944925498e-05 +1727 0.0010797075331340003 0.000533582242724111 0 0 0 -7.559267031578722e-05 +1728 0.0012035015493866439 0.0006562354350731623 0 0 0 -8.490546810395657e-06 +1732 0.0010847674975813615 0.0006571917342513447 0 0 0 1.1995417583954541e-05 +1753 0.0007654174818471715 -0.00022287242035658514 0 0 0 -6.336521278586444e-05 +1755 0.0005127431935679827 0.000472790028512007 0 0 0 -1.6867377671974125e-05 +1758 0.0010343880198011841 -0.0004368986979829466 0 0 0 -1.4105981690198615e-05 +1768 0.0009263182911150216 0.00045467672144558274 0 0 0 1.3674036377184795e-05 +3175 0.000861376994970322 -0.0012573095410247672 0 0 0 0.00016061419034209856 +1829 0.0006329202484235487 0.0003233148189877675 0 0 0 -4.026209738990743e-06 +7902 0.0011804174580876269 -0.0007897590124477557 0 0 0 -1.7455315590550964e-05 +1848 0.0011168267286807642 0.0006282147697403229 0 0 0 -1.5513628146154695e-05 +1894 0.0009318554892618706 -0.00020695091331826692 0 0 0 5.6533711410576216e-05 +1901 0.0009178969569871708 -0.0006131774179167396 0 0 0 6.593155925069167e-05 +1943 0.0011226941688212485 0.0005237271591559977 0 0 0 -9.106840119928789e-05 +1968 0.0010908562505478124 0.0006381605217502628 0 0 0 2.6481978501316268e-05 +2002 0.0012024413819657074 0.00053961744658189 0 0 0 -5.742918301450921e-06 +2006 0.0009949321613705235 5.047363536386453e-05 0 0 0 3.45205255152072e-05 +2015 0.0006183359685163975 0.0007079422751018024 0 0 0 -4.046794425298096e-05 +2028 0.0009789024527054985 0.0005025989325507363 0 0 0 1.7929712458861483e-05 +2042 0.000693697176012756 0.0006029978019726127 0 0 0 2.507260740075409e-05 +2068 0.000624473557470223 0.0002666301824662983 0 0 0 -6.68950329846928e-05 +2126 0.0012170491269788242 0.0005670371829270877 0 0 0 6.444282469727239e-05 +2143 0.0013110181197461218 0.0004998294229170228 0 0 0 1.9944002250722704e-05 +2167 0.0007119689863543628 -0.0001731501149521745 0 0 0 1.2338875645465433e-06 +2202 0.0006289616530120666 0.0005233100921340304 0 0 0 1.844142790535542e-05 +2205 0.0010021623710974937 -0.000844145524901554 0 0 0 6.474052235830167e-05 +8202 0.0007021824090602621 -0.001460897051559668 0 0 0 5.440204739858896e-05 +2258 0.0008233000328376401 0.0006751051413915329 0 0 0 -1.4719707252529836e-05 +2267 0.0008213622358989259 -0.00021941689362105972 0 0 0 5.55584841863564e-05 +4506 0.0006367345808143469 0.0008398831681293868 0 0 0 6.183491237216225e-06 +2311 0.0006127469699330738 0.0005517807331870156 0 0 0 0.0001398039506984467 +9277 0.0008292579957970323 -0.001232408517348689 0 0 0 -0.00021017811420996464 +5943 0.0008520857136589546 -0.0014475743347342877 0 0 0 0.00032225614441777514 +2347 0.0008762818999916666 0.00028057754153901264 0 0 0 -4.807130225092891e-05 +2361 0.0011120561925784256 0.0004938978395975996 0 0 0 -0.00010620916661445959 +2377 0.0004707419921394537 0.0002715614432955152 0 0 0 4.550511905178302e-06 +2403 0.0009296814160301378 4.543801685685945e-05 0 0 0 2.630120993906951e-05 +2458 0.000935089106826935 0.0005338193491343716 0 0 0 -2.362692451132141e-06 +2463 0.0009819731882321184 0.0005487411272486331 0 0 0 1.025566909853629e-05 +2482 0.0006163648781279421 0.0006250477850050928 0 0 0 -1.0839152578141959e-05 +2489 0.0012454053139699397 0.00022371325119091117 0 0 0 -1.577371553657205e-05 +2513 0.0012472765126913955 0.0003781746153030002 0 0 0 -5.679776138371524e-05 +2517 0.001133307164796599 0.0002904710649852903 0 0 0 0.00014793941995788765 +2528 0.0012545350127756204 0.0005829799191264292 0 0 0 5.497439846793002e-05 +2536 0.0011323779433366418 0.0004195368131035529 0 0 0 -5.43097368232649e-05 +2596 0.0006174307446661004 -0.0007441456746057989 0 0 0 6.355742330631359e-05 +6566 0.00033107460667163827 0.0007627669284542957 0 0 0 1.6532383063955597e-05 +2630 0.0011195665199118235 -0.00041296001983099744 0 0 0 0.00015993317570570605 +2089 0.000349326573754105 -0.0005182345588259011 0 0 0 0.00016836484837359878 +2656 0.0004746288189643956 0.000570496394640887 0 0 0 4.309046903399095e-06 +2659 0.0007849315464988493 -0.0003231633048418914 0 0 0 5.530739333654496e-05 +2685 0.0008388056117921205 0.0005972755946732265 0 0 0 -5.940848610226734e-06 +2690 0.0008844317067246113 -0.0005276738249456145 0 0 0 3.132457707845571e-05 +2740 0.0008414112779174735 -0.0003425392307066139 0 0 0 8.355531246840778e-06 +2773 0.00043358270583204874 0.0005997694284967705 0 0 0 3.432462355354064e-05 +2819 0.000953670884076528 -0.0002863920393382203 0 0 0 4.3856875661959645e-05 +8252 0.000477819563839219 0.0008372053290648093 0 0 0 0.00016329727144705775 +2850 0.0006933242959727812 -0.000234677139954561 0 0 0 0.00018989025075919332 +7932 0.0011367490370504428 0.0006418176600583588 0 0 0 2.9347334369527983e-06 +9415 0.0007471853094338001 -0.0007033772847776607 0 0 0 0.00030464816979059275 +2949 0.0008603193274824909 -0.0007771403970035661 0 0 0 0.00015510025882641297 +2990 0.0008265487498993609 0.0005899481214404592 0 0 0 -1.2493104021207343e-05 +2997 0.000711434217584935 -0.0008165979086207256 0 0 0 1.225596200840283e-05 +3038 0.0009055346033129061 0.0005336440902815929 0 0 0 4.3177184018423455e-05 +3039 0.00044448556231164554 -0.0014111500930514117 0 0 0 -0.00024936287002862867 +3068 0.0007593188714544499 -0.00031819025622109733 0 0 0 -1.794946368121482e-05 +3105 0.0006626715741123679 0.0005008854270263106 0 0 0 2.4777665949729318e-05 +5898 0.00077354583096836 0.0007155334885497775 0 0 0 2.920594685863639e-05 +128 0.0009651369175541852 -0.0006324470820660107 0 0 0 3.548567245901795e-05 +829 0.0005516775531981191 -0.0008112931147761565 0 0 0 -1.2434172837493544e-05 +5401 0.00024161823724326128 0.0007990667925062311 0 0 0 0.0001672968583054765 +3211 0.0003544640069477852 0.0007491260952305839 0 0 0 1.7720912983025127e-06 +3219 0.0008651115308653154 -1.796568012062304e-05 0 0 0 7.746686278784205e-05 +3226 0.0011644648635173772 -0.00019121297867346265 0 0 0 1.2912325514727514e-05 +3228 0.0006800434979485819 0.00041742478429938635 0 0 0 -7.450993170297869e-08 +3841 0.0010829678905878264 -0.0005366838548616761 0 0 0 2.6875832710651968e-05 +3266 0.0012060797718457424 0.00032258805854518797 0 0 0 8.116284020368211e-05 +3285 0.0009803025312725832 7.43295731922758e-05 0 0 0 -2.463359932518286e-05 +3286 0.0006877867678151874 -0.0008911098724712496 0 0 0 0.00020585490848281117 +8497 0.0005465629499869129 0.0008425971174766189 0 0 0 -6.10843929156812e-05 +3293 0.0008134967679710494 -0.00043215603352929864 0 0 0 5.019718496041747e-06 +1304 0.0007519719003189537 -0.0011486138456252887 0 0 0 -8.080407354238026e-05 +3365 0.0006241753306074102 0.0005890400706941017 0 0 0 2.7250960548145677e-05 +5372 0.0010748367653015795 -0.0005768462781652801 0 0 0 -6.45219046108993e-05 +3481 0.0011576777429431028 0.0005920923499922954 0 0 0 -7.494341414602977e-06 +5262 0.0006535539669418477 0.0007643009091122036 0 0 0 -8.153610457443482e-06 +3547 0.0010553347479338277 0.0005020912262948927 0 0 0 -1.75064971305006e-05 +3553 0.0006244132097833677 0.0007002879438726482 0 0 0 3.0724530357203e-05 +3555 0.0008946304781798678 -0.0007863887603714164 0 0 0 0.00013250536246580354 +3569 0.0006987111066579277 0.0006800158862779296 0 0 0 -5.05780767105462e-06 +3579 0.0007906486330178448 -8.545543357600377e-05 0 0 0 6.16759258905338e-05 +3605 0.000734195942142544 -0.0002968386851093385 0 0 0 0.0002982900227897277 +3610 0.0009988244439503389 0.0004933422938207438 0 0 0 6.853695291546345e-06 +3674 -0.00018425031501967718 -0.0016615410320402096 0 0 0 0.00038324548712263877 +562 0.0008393131136160965 -0.0012808252213807399 0 0 0 -4.281401992648992e-05 +3679 0.0009684331455512567 0.0001826266505110374 0 0 0 2.5944937304300653e-05 +3680 0.0012697871506673203 0.0006128153494924967 0 0 0 5.3969471654147004e-05 +3697 0.0005994721225980339 0.0006624459147915316 0 0 0 5.623361164373728e-05 +3747 0.0008844657422253922 -0.0005257127525977476 0 0 0 -2.107795035294856e-05 +3838 0.0005790009696912967 0.0005557766068972561 0 0 0 -0.00010654342906079895 +6945 0.0002528688417206778 -0.0007206872117392625 0 0 0 -5.349956265595386e-05 +9662 0.0007453185715374937 0.0007378868572433903 0 0 0 -7.484190979914184e-05 +3934 0.00112854599754855 0.0006532224783548984 0 0 0 -3.816337863980592e-05 +8757 0.0010196382589845144 -0.00118780396462692 0 0 0 0.00015904200231359094 +3966 0.0007612025356273474 -0.00047524044405011215 0 0 0 -3.979741421846692e-05 +3973 0.0011639905653653007 0.0006441893834922838 0 0 0 1.4518549531899004e-05 +3997 0.0007491559097638654 0.000680152271021586 0 0 0 6.143977666476248e-06 +6025 0.00016622156173675778 -0.0004770987867372441 0 0 0 -6.64708966646747e-05 +4034 0.0009819739478965073 -0.0001229731795878988 0 0 0 -9.287150735493476e-05 +4038 0.0007896351293454489 0.0006781652273967808 0 0 0 -1.508525508066987e-05 +4040 0.0011363158348355205 -0.00018611875597598123 0 0 0 9.610965062021567e-05 +4043 0.00025766333602042014 -0.0010818825660690071 0 0 0 0.00045865191256879334 +4072 0.000413163054231295 0.0007377506976638686 0 0 0 -1.1738241081613702e-05 +4075 0.0014341347943382997 0.0004398055168988169 0 0 0 2.978864062031892e-05 +347 0.000579682814513629 0.0007649932310473527 0 0 0 -2.6859309991663325e-05 +166 0.001219214403332594 -0.0011839205505589992 0 0 0 1.586528719424363e-05 +9259 0.0008053873369133937 0.0006823085971190107 0 0 0 0.00016161932232910622 +4243 0.0007684588310148771 0.0006989754874078504 0 0 0 -2.9633325554554847e-05 +4266 0.00040970318388744474 -0.0005796621196002264 0 0 0 -0.00016039051119756884 +4289 0.0013868092682744488 0.0005156951845957746 0 0 0 -7.337370466497463e-06 +4326 0.0011468389591088458 0.0006116089240761994 0 0 0 6.2259549184425564e-06 +4335 0.0009182009470957263 0.0006075659190897126 0 0 0 3.5107295981687253e-06 +4337 0.0012896346488611118 0.00010194428642525958 0 0 0 2.5316275916327905e-05 +4345 0.0008924222509678392 5.41062531683224e-05 0 0 0 -9.092031349570625e-05 +4372 0.0010468891011511606 0.0006410825174217863 0 0 0 1.52847074281386e-05 +4377 0.0009943156663675817 -0.0007392184468388112 0 0 0 6.108006098177836e-05 +5961 0.0004668601062045154 -0.000666368691168769 0 0 0 -5.71942163838699e-05 +4401 0.000599229540350583 -0.0011432027431554999 0 0 0 4.5671692833924316e-05 +4439 0.0006291149688485803 0.0007558981979113365 0 0 0 -2.2473808689143783e-05 +7224 0.0011698605213548174 -0.0007712549629175962 0 0 0 6.146982032673708e-06 +4482 0.000993817414745598 0.00010701104632212843 0 0 0 1.9614813759487985e-06 +4485 0.0008271120759238255 0.0006200357968535962 0 0 0 -8.691506539232511e-07 +4505 0.001194105033138369 -0.0002591546056453403 0 0 0 -0.00010552030418082677 +4538 0.0011872286820991586 0.0004846249234337742 0 0 0 -0.00013756567939889213 +487 0.00016019542144378522 -0.0002728575093262154 0 0 0 -1.7888842848484071e-06 +4576 0.0006192196223233234 0.0006239349655769947 0 0 0 4.015500755226051e-05 +4594 0.0010522916555960756 0.000486522820426595 0 0 0 -0.00012718314419449045 +4657 0.0011846237998906508 0.0005642051056042902 0 0 0 -9.235145840094029e-05 +4666 0.0006819893976806711 -0.00015510141668949277 0 0 0 -0.00014151121869666113 +4514 0.0007580278363530623 -0.0014552928602686748 0 0 0 0.000733143135295986 +4708 0.0012101781952424148 3.435008236731491e-05 0 0 0 -0.0001351986590738687 +5713 0.001072147766381324 -0.0003859836840772462 0 0 0 -6.397997237331095e-06 +4760 0.0007604643020887715 -0.00030117030467754477 0 0 0 -0.0001625414929922258 +4810 0.0009598962153170144 -0.0008322902655719088 0 0 0 0.0001261785761271129 +4816 0.0006303108257698679 0.00010551817647269484 0 0 0 0.0002240327003607106 +4835 0.000866036919816469 -0.0003666868434512058 0 0 0 2.1493327996382274e-05 +4838 0.000853740942878969 0.00012350030042969387 0 0 0 0.00030920133360678954 +4848 0.0011362783657203974 0.0004008218987561431 0 0 0 -0.00011668156672820503 +4849 0.0010672713994153945 0.0001289807303069966 0 0 0 3.9511718551858986e-05 +8058 0.0007645762467953093 -0.0011492934238156475 0 0 0 0.00010689711402693312 +8053 0.0007828159250882652 -0.000993262781380607 0 0 0 0.0005424775864940907 +4896 0.0005471342485049553 0.0006280646047637828 0 0 0 3.6458357712148147e-05 +4897 0.0009249569837217131 0.0005758836771419119 0 0 0 2.0413225584798182e-05 +8814 0.0006224974483919108 -0.000569425980621712 0 0 0 0.00025369045465629183 +4988 0.0006254509907571943 0.0006358875792448602 0 0 0 -1.4501504386953415e-05 +5026 0.001355764799189917 0.00036327388147506146 0 0 0 -0.00020542103800334722 +5029 0.0009376987584012064 0.0005667703348375927 0 0 0 1.0407381752639498e-05 +8528 0.00113246006295345 -0.0005459218447897057 0 0 0 -4.8331300581183284e-05 +8167 0.0005526984953134384 0.0007011607171826653 0 0 0 -2.1468877828330034e-05 +5067 0.0004639174041484237 0.0005068121792771845 0 0 0 3.1363482229132566e-05 +4920 0.0006445400002280744 0.000808805108049076 0 0 0 -4.3901163587051307e-05 +5091 0.0007451910523241373 0.0003508121506864414 0 0 0 -0.00010654532440859938 +7606 0.0008620203104598538 0.000711733975038899 0 0 0 0.0001364040428133004 +7203 0.0009757881175705724 0.00066864724528229 0 0 0 1.5596449691310713e-05 +5162 0.0006201770247082395 0.0005938030060317669 0 0 0 1.1635513213135891e-05 +5193 0.0013665488663908232 0.0004821076933070951 0 0 0 -1.4967816916035571e-05 +5196 0.0005238119732826972 0.0004814921978689419 0 0 0 -8.881299914150269e-05 +7975 0.0004255965273227019 0.0007448210526438511 0 0 0 -3.417016627202516e-05 +5219 0.0004615450264437196 0.000510110978548006 0 0 0 -9.671957225447806e-05 +5223 0.0008681183721201241 -0.0004775026761713069 0 0 0 0.00014030285400916634 +5234 0.0007106366714993252 0.00027776813942243975 0 0 0 2.5061164411723503e-05 +5244 0.0005984783086797259 0.0005177946415643234 0 0 0 5.417065985560858e-05 +5273 0.0011263264653956714 0.0006355169436473603 0 0 0 0.00010021529957833404 +5314 0.0006377100632445747 -0.0010454075616840562 0 0 0 0.00015977604891017098 +5333 0.0012756081870365329 -0.00020642821010081127 0 0 0 0.00011742336992233901 +5351 0.0005586542661716131 0.0007782742504902555 0 0 0 -6.335106595152698e-05 +8868 0.0011262819165011127 -0.00040177942979742525 0 0 0 0.00021476066747828622 +5412 0.000967127875124227 0.00027181373469744896 0 0 0 -4.3551876128224884e-05 +5470 0.0006165721210686521 0.0005012994455255619 0 0 0 9.337657242786574e-05 +5479 0.001213860693109473 0.0006421729382735612 0 0 0 3.452280817169563e-05 +495 0.0007601031027565043 0.0007559358649896945 0 0 0 -1.727162826548066e-05 +9146 0.0007730787554513646 -0.0005574801774840879 0 0 0 0.0003038039111053119 +7786 0.0010743599991224892 -0.0006492445792916938 0 0 0 -0.00016048780665628228 +5581 0.0006898246504416606 0.0006634167921553014 0 0 0 -2.2095636803167914e-05 +5582 0.0012070297693559078 0.000539161707475192 0 0 0 -6.379114105505218e-06 +5604 0.0013327448082513212 0.0005154473871285508 0 0 0 1.8977087186283417e-06 +5617 0.0013822369385656848 2.90827560558482e-05 0 0 0 0.00012865112243931693 +5662 0.0010013274464986028 5.824315409435042e-05 0 0 0 3.30022515542288e-05 +2610 0.0011035882082445216 -0.00018249513782255563 0 0 0 7.514486830123374e-08 +5740 0.0006585892040883156 -0.00024180486904773233 0 0 0 0.00014928509151466692 +5758 0.0008235220373832286 -0.00030054454416090235 0 0 0 0.00016914908650223046 +5762 0.0012352091483798541 0.000613636801038118 0 0 0 1.4233966249309338e-05 +5782 0.00048530983904891017 0.0005067401467218191 0 0 0 4.7483759125533544e-05 +5785 0.0010869215873760417 0.0001286243267306376 0 0 0 -6.639118268928253e-05 +2406 0.0003214732763121484 -0.0007319318245744095 0 0 0 -2.3780696678011307e-05 +5864 0.0011078457137723124 -0.00027663788660652256 0 0 0 1.8600124690536635e-05 +5876 0.0011649866464933643 -0.00028891565278732864 0 0 0 0.00025184019046547865 +5888 0.0012993167741416614 0.0005665889219229227 0 0 0 0.00019135791782878763 +9973 0.0008573882935895532 -0.000523210554244975 0 0 0 1.7850509582251054e-05 +5924 0.0008875131089397566 0.0006487158863145376 0 0 0 4.8510343517565726e-05 +5930 0.0004614971762084732 0.0002567779548776362 0 0 0 -9.479159160285964e-05 +6581 0.00046312892784044666 -0.0007771806067876405 0 0 0 -8.24528886352104e-05 +8972 0.0006369987885896325 0.0007976343321745892 0 0 0 1.2595316449957745e-05 +5963 0.0009335735021735478 0.00047228711991067275 0 0 0 7.060839984437935e-05 +5974 0.0013606451896230698 0.0005258365590261756 0 0 0 -5.9242916317363945e-05 +6000 0.0008382125569591131 -0.0003417171201907594 0 0 0 9.1365704771552e-05 +6017 0.0008296939724284538 -0.0007211832337790436 0 0 0 0.00024733598675309536 +5259 0.0011162796846575544 -0.0008581141919042774 0 0 0 2.85027181461853e-05 +6089 0.00034464642167636667 0.0008667717268294554 0 0 0 -4.937205023642099e-05 +6098 0.0003262991867646515 -0.00037246845139178906 0 0 0 -0.000482307483653662 +6163 -0.00012292889936365038 -0.00016727293626617423 0 0 0 0.0006454520308915679 +6197 0.0003997238369189023 -0.0015795727238100095 0 0 0 0.00011436067018022777 +6206 0.0012449331362975181 6.971550096716033e-05 0 0 0 0.00011991466709299616 +6231 0.0008426698842451375 -0.0007673992628878668 0 0 0 0.0001532335909760891 +2549 0.0005772772242306889 0.0008127667966009642 0 0 0 6.4820365715576456e-06 +6320 0.0011173132589460467 0.0006306339027324272 0 0 0 6.886210245131717e-05 +6326 0.0004765216738886135 0.0005374898022546952 0 0 0 -7.458356743229648e-05 +6350 0.0008643863513034623 0.0006648159287242312 0 0 0 0.00013362898250912706 +2286 9.446017571053161e-05 -0.0007934962359040976 0 0 0 -9.604595378998778e-05 +6430 0.0008237363106592321 0.0006538610733356122 0 0 0 -7.073939117979179e-06 +6543 0.0009417078407106649 -0.00048060915790580524 0 0 0 8.603613099402444e-05 +6574 0.00045378543559882584 0.000607677860754462 0 0 0 9.031402300514705e-06 +2203 0.001152432292756669 -0.0007395795171420855 0 0 0 3.199504462705533e-05 +6657 0.0009704303890597644 -0.00021105486011086465 0 0 0 6.011083714055039e-05 +6739 0.0010049551498154047 0.00011585703027315449 0 0 0 -2.9960575404084156e-05 +6745 0.0008727106182099962 -0.00026114789696155016 0 0 0 6.591591723361294e-05 +1452 4.917917901900311e-05 -0.0006766940835224059 0 0 0 -2.222949074796661e-05 +6782 0.0010195933334636665 -0.0009020509217513105 0 0 0 0.00022065232113975948 +6828 0.0006791130796044471 -6.743426486673619e-05 0 0 0 0.00041030356158230273 +6842 0.0009284810579517398 -9.05952956264269e-05 0 0 0 7.948902901710516e-05 +6905 0.0009282905798690049 -0.0007524840868858109 0 0 0 -0.0003986110044487642 +6930 0.0004459683145718242 0.00014796474898689263 0 0 0 0.00017779498523788382 +6942 0.0007795283395877404 -0.0005635264294490655 0 0 0 0.000845012083348738 +6943 0.0009004497127657246 0.000272603130839218 0 0 0 9.921400534896231e-05 +6956 0.0011164960060357067 -0.0007652436953529805 0 0 0 -2.2114558751591804e-06 +6959 0.0008558537390043941 -0.0005748499860568281 0 0 0 6.368437774644711e-05 +6985 0.0006432072375257361 0.0006966079100472371 0 0 0 -8.999726164036608e-05 +6989 0.0005701500681984955 0.0006168526102904836 0 0 0 7.720447542848701e-05 +6990 0.001021234276185123 0.0005902376513620003 0 0 0 -0.00013774261487391388 +7015 0.000632507497872097 0.0005642083015612515 0 0 0 -1.0674656175173572e-05 +1615 0.0011532078804138658 -0.0006058955705743433 0 0 0 1.490208657640192e-05 +7022 0.0006719717064982591 -0.00017594147464117848 0 0 0 -0.000235999655868135 +7054 0.0008627817462952111 0.0004907786444899503 0 0 0 0.0006420526661363465 +7141 0.0007466748403894659 0.000616874995475973 0 0 0 -3.5249823119384895e-05 +7149 0.0010636587555297053 0.0004189883790836758 0 0 0 -6.558125123451477e-05 +437 0.0003831209706786702 0.0007356729051776947 0 0 0 -2.5478414763434354e-05 +7229 0.0008901872170039887 0.000570729497668768 0 0 0 6.804035498350668e-05 +7230 0.0008736122121931637 0.0004580424262856165 0 0 0 -1.1647948372195387e-06 +7248 0.0009077333781748304 0.00031903883108418325 0 0 0 -4.073609365830834e-05 +7253 0.0006112281705099012 0.0005900048812418631 0 0 0 2.517903305538329e-05 +7308 0.001140186885139469 0.0005014560335019802 0 0 0 1.9765889095926366e-05 +7345 0.0010724523368598519 0.0002971884014729134 0 0 0 0.00044733159817073357 +965 0.0010627582960836897 -0.0005609047720133394 0 0 0 2.4416110764168245e-05 +7385 0.0008189697410649632 -0.00025876247961081856 0 0 0 0.00019088822157521822 +7386 0.0007778136019164737 0.0006601589021595747 0 0 0 -1.312760719073829e-05 +7417 0.0005919689408488137 0.0006205229341765221 0 0 0 -1.355210481672982e-05 +7427 0.0007933812615724043 0.0003235780358741355 0 0 0 -6.241708761863229e-05 +7441 0.0008817236574967507 7.71496095108867e-05 0 0 0 0.0001580089987208287 +7452 0.0006191705286549478 0.0007476881133116213 0 0 0 -3.284465342871351e-05 +7467 0.00103689017703617 -0.00016947024512596563 0 0 0 0.00012348936285448253 +7479 0.000993191015354585 -3.0331037730868155e-05 0 0 0 9.820153954900731e-05 +7520 0.0011141813157794157 -0.0009595156187563237 0 0 0 -0.000493272004479786 +7546 0.0011217640952261773 0.0006011119935330247 0 0 0 7.944640299658757e-05 +9319 0.0009675771586855498 -0.0011555753367072739 0 0 0 0.0001418920782801264 +5242 0.0004404796320373893 0.0009104494199078583 0 0 0 2.4330280123910868e-06 +682 0.0012213894880666266 -0.0011228462520576326 0 0 0 1.5741515385063603e-05 +7609 0.0013231737078186624 0.0006092947158163329 0 0 0 -4.8437075087002246e-05 +1225 0.0005482398829672255 0.000813912652919002 0 0 0 -2.9082182468640048e-05 +7729 0.0008900519730786919 -0.00015374646263137227 0 0 0 0.0001436543452587961 +7731 0.0007040575025078993 -0.00020797920823855786 0 0 0 2.957587104000714e-05 +7753 0.0013069322149747962 0.0005558674620806087 0 0 0 0.00014728215700266834 +9016 0.0009709230655305271 0.0005797650426569041 0 0 0 -3.5305512317416024e-05 +7801 0.00048610748955632137 0.0006361686472829724 0 0 0 4.448345665460209e-05 +7807 0.0007039569124653632 -0.0005059802639536388 0 0 0 0.00013314101258921974 +7838 0.0006661373635375698 0.0005827516286853749 0 0 0 -0.00013122663068822064 +7863 0.00037463185836789 -0.0004607780916228214 0 0 0 0.00014129370254830354 +7927 0.0014695741613762392 0.00032741876338624306 0 0 0 0.0001599095943421003 +4107 0.001133243463863566 -0.0007132626092017434 0 0 0 3.059743976875233e-05 +7949 0.0008725680996337789 -0.0004713069824233335 0 0 0 6.819507045866964e-05 +7969 0.0004687587144907586 0.00023946639196781067 0 0 0 -3.1232816494782926e-05 +8067 0.0009381228920967367 0.0006159392702998913 0 0 0 -1.6276553471565065e-05 +4100 0.0011111189444664067 -0.0008506926155978538 0 0 0 4.682596129744528e-05 +8625 0.00022877580179291848 -0.0010272042308610045 0 0 0 -0.000325133107927993 +2851 0.0006123221279012192 0.0008591965903666146 0 0 0 3.6302833794214295e-06 +8172 0.0005717916995714572 -0.00016821571855344728 0 0 0 -0.00038381933757274626 +4587 0.0006539962460588501 0.0007872915738706007 0 0 0 2.26075091644932e-05 +4101 0.0006727379544327898 0.0008108928478790349 0 0 0 -8.614118426363706e-06 +8246 0.0006476193695978407 0.000740452431288883 0 0 0 1.639744699144399e-05 +9123 0.0011069200473958708 0.0006471234379442597 0 0 0 4.6712226250216185e-06 +1801 0.0010121261234876714 -0.0006970844635013352 0 0 0 4.600271350174539e-05 +8292 0.0008175376698786847 7.174234163077538e-05 0 0 0 1.921255833424273e-06 +8293 0.000871939022869619 0.0006330686658322724 0 0 0 -7.399954051778067e-05 +8299 0.0006073319245741684 0.0006188151991782794 0 0 0 -2.212664632209124e-05 +8288 0.00031828869014464365 -0.0007546219702163156 0 0 0 0.00013318551231983743 +6122 0.0004887715456430278 0.0008360336786214146 0 0 0 -2.592459767113235e-05 +8390 0.0006038873479641773 0.00020034860276307344 0 0 0 0.0005717259053097264 +8398 0.0011754984973007978 0.0006151755670067471 0 0 0 4.165057066542742e-05 +8415 0.0007311647009928824 0.0006583709714218199 0 0 0 -5.693063538409527e-05 +8483 0.0009365206600467757 0.00046514986848382103 0 0 0 -9.232288090416591e-05 +8534 0.0013103203791819875 0.00046162216608578 0 0 0 -0.00028959464080522047 +8561 -0.0004717060851329466 -0.0002285401412135935 0 0 0 0.00029958684328349204 +8610 0.0009912820130437954 0.0005357014172118291 0 0 0 -3.548046150863886e-05 +9678 0.0006016869452194853 0.0007432411158362445 0 0 0 -2.0509219079485493e-05 +8651 0.00102253988981573 0.000280029501384076 0 0 0 8.43557476980136e-05 +8671 0.0006683504032538717 0.0006640007933475464 0 0 0 -1.7854107647904576e-05 +6003 0.0003348258519727741 -0.0006545169246284358 0 0 0 -9.49582122283451e-05 +6124 0.0011900795672772795 -0.0011355493089058573 0 0 0 6.043945732494571e-06 +379 0.0010336287688703677 0.0006405256782555356 0 0 0 -4.443730224283838e-06 +8893 0.000627303922882577 -0.00031094704310108607 0 0 0 0.0007576146866979644 +777 0.0004622484677641735 0.00087322747390002 0 0 0 1.4068345669176108e-05 +8945 0.001464394819958483 0.00042447502134480624 0 0 0 -6.775381424860773e-05 +8967 0.0011148510261835055 -0.0003488496261558187 0 0 0 -3.307058313664056e-06 +8973 0.001206090530645807 0.0006569407309934238 0 0 0 7.853317249107076e-05 +8907 1.4809029816622675e-05 -0.0007425738504879652 0 0 0 -0.00032613846203163145 +9035 0.00036715719581603494 0.0007351047661493811 0 0 0 7.484113016856756e-05 +7924 0.001113265293698971 -0.0006227337984326874 0 0 0 -3.994277301716122e-05 +9072 0.0008561889486513654 0.00048004106511752444 0 0 0 -2.16479345253239e-05 +9089 0.0009116686625788333 0.0005437675017557133 0 0 0 -8.912755064842087e-06 +9096 0.0009098158450163472 0.0005735174906085466 0 0 0 -8.047868169280728e-05 +1354 3.682140560716393e-05 -0.0006095525104778167 0 0 0 -4.289827212315811e-05 +9191 0.00043634310096631545 0.0005379248051441295 0 0 0 0.00020312725043913085 +9221 0.0009237087788980048 -0.0005074294420204939 0 0 0 -9.069816383249129e-05 +5940 0.0003467435253925243 -0.00015944381946365494 0 0 0 -0.00021937698922088337 +9241 0.0010229471872133344 4.571138950590943e-05 0 0 0 -5.673428933080491e-05 +3893 0.001149107629227006 -0.0007557000146026042 0 0 0 -3.03539548074016e-05 +9299 0.0011590592563784396 0.0006304698222022523 0 0 0 5.4716347270371756e-05 +9306 0.0009864447736608938 -0.00014617879315976663 0 0 0 0.00014237956029494777 +9318 0.0011023164991486175 0.0006231623924060141 0 0 0 -3.200851255430209e-05 +9333 0.0008443467285950532 0.0006883510674503986 0 0 0 -0.00013146296692757308 +7359 9.496389398291378e-05 -0.0007795695831797228 0 0 0 -0.00011140322447046906 +9356 0.00043534853478947264 0.0002404281204325556 0 0 0 6.057499362310026e-05 +4005 0.0007815927001108799 0.0006974109323777747 0 0 0 -2.087726081697961e-05 +9392 0.0006361341142438052 0.00047879767618624495 0 0 0 -1.3126648060059681e-05 +6333 0.0010033519433623687 -0.0006191108688290343 0 0 0 -0.0001793340718172149 +9435 0.001337470792037693 0.0005267341607720624 0 0 0 4.966519975913623e-05 +9461 0.0011451278633613808 0.000635447122544669 0 0 0 2.2045173309951795e-05 +6306 0.0006666322651851479 0.0006950244521551676 0 0 0 4.451088910565751e-05 +9520 0.0008079439354023355 -9.947782244848244e-05 0 0 0 0.0001227435573703576 +9558 0.0007885237352771814 0.0005310205727550951 0 0 0 -1.782455438444727e-05 +9565 0.0010287538103713452 -1.9004179913210675e-05 0 0 0 -6.357634269182037e-05 +4069 0.0011842567468936397 -0.0011354056691981471 0 0 0 0.00023434057897612232 +9582 0.0009519795731042977 0.0005785172478831083 0 0 0 -8.75323837422192e-06 +9648 0.0011876600111412386 0.0005401041916075395 0 0 0 -1.5180447914223456e-05 +980 0.0008603285073268778 -0.00047445452058315527 0 0 0 8.13899475940335e-05 +9660 0.0011306382922895478 -0.00023813029058521417 0 0 0 1.2176042653314537e-05 +4728 0.00029161963713028024 -0.0008926108363086651 0 0 0 0.0002385172838007595 +9681 0.001215308265902886 1.2331593199410966e-06 0 0 0 0.0003752037668922175 +9696 0.0005744481117122239 0.0005875940701235898 0 0 0 -3.0387160019013233e-05 +9699 0.0013681171763440234 0.0005012581449299075 0 0 0 -1.3775334388534135e-05 +9730 0.0005669969284594748 0.00046762316101213073 0 0 0 5.097638219236464e-05 +9741 0.0007657028520555864 0.0006260736617656027 0 0 0 1.5927025549491933e-05 +9798 0.0011824311051340894 0.00057843383795839 0 0 0 -6.474220742733755e-05 +9802 -0.00029588817476571244 -0.0012293214641562193 0 0 0 0.0013225925087247052 +9811 0.0009397262085550687 0.0005408898754652639 0 0 0 -5.186320822228484e-05 +5046 -0.0009273967788890185 -0.0009466688627539671 0 0 0 -0.0003225384114112174 +9832 0.0009052507644230388 0.000642515204784736 0 0 0 -4.850323413313716e-05 +9907 0.0006561524951524824 0.0007170890669230128 0 0 0 5.521891130344009e-06 +9920 0.000965845836534191 0.0005528327233090726 0 0 0 5.8242433720667246e-05 +9057 0.00042682695518256417 0.0007135142497710632 0 0 0 0.00012893455690966217 +7558 0.0006022460559998309 0.0008088082404458247 0 0 0 2.0179898262202523e-05 +7749 0.0007041630158756188 -0.0013227940077416276 0 0 0 0.0002296107580305148 +5778 0.0008987835688615658 -0.00039766484403558474 0 0 0 1.116473239413118e-05 +3534 0.0007659681320194938 0.0007308128859412967 0 0 0 -1.2415569123954004e-05 +186 0.0011076573661158713 -0.00028828760484700123 0 0 0 2.186119479798502e-05 +8375 0.00033431660329419816 -0.0009734484276184332 0 0 0 0.0005429259973321738 +9598 0.0012923399580144952 0.00019405184964636419 0 0 0 0.0003379830465692486 +85 0.0006648077713683276 -0.0003350635128354931 0 0 0 6.440635809749334e-06 +6750 0.00022044795673315865 -0.00029792931542753126 0 0 0 -0.00038190212008581395 +300 0.0006595012521635249 0.0007575050829413068 0 0 0 -8.806492333257143e-06 +2752 0.001256940269192469 -0.0004471278755635826 0 0 0 3.297634070694187e-05 +9042 0.0004895915565950625 -0.00037042908582275334 0 0 0 0.0007973424164842549 +2051 0.0010942050165462516 -0.0008529810662591057 0 0 0 2.5256614222122406e-05 +7679 0.0010210080355126101 -0.00025627998454867603 0 0 0 2.614000836555769e-05 +5727 0.0011321284012937452 -0.0003126243065836947 0 0 0 0.0001236853452098628 +9496 0.0008043034988064394 0.0006770425830324051 0 0 0 -1.036201430899156e-05 +7935 0.0008653451215904437 -0.0005433247192156455 0 0 0 -8.470559415325108e-05 +3502 0.0003361888870659513 0.0009108536691636638 0 0 0 4.619598977917087e-05 +5467 0.0006384192930736424 0.0007587062280786185 0 0 0 -1.049497553690717e-05 +2634 0.001034160806726117 -0.0004164452037433346 0 0 0 -2.360729049834457e-05 +5846 0.00046280604720300617 -0.00218739146103951 0 0 0 -0.0010275251711612783 +1802 0.0008528896920938676 -0.001185959442891535 0 0 0 0.00011533647318479287 +2181 0.0012050647323236146 -0.0011974592113920975 0 0 0 -5.929874943315045e-05 +2745 0.0003727714823060567 -0.0008904323919500549 0 0 0 -5.775871988856065e-05 +3497 0.0006507942794798484 0.0007266833099552661 0 0 0 -1.7047184428296888e-05 +6815 0.0006107170015400492 -0.0017137147562281828 0 0 0 -0.0004348353748554215 +617 0.0011812829067366054 -0.0012280872143122636 0 0 0 3.690528129341721e-05 +6962 0.001164159621740616 -0.0011340941703176892 0 0 0 -0.000368111441436273 +5206 0.00020809764022681538 -0.0004428112521607369 0 0 0 7.470138911039506e-05 +1971 0.0012179835229095177 -0.0010166712674695398 0 0 0 0.000104536573250929 +733 0.0011042921927577097 -0.0005487512764058763 0 0 0 3.0829030111537625e-05 +9238 -0.0007603171235332612 -0.002326362957840015 0 0 0 0.0004715050281540878 +3159 0.00011301644577252136 -0.00022473819421704833 0 0 0 7.33536192539787e-05 +7251 0.0006775298720058632 0.0006937812493122316 0 0 0 -8.880602626791519e-05 +1434 0.001067925135534584 -0.000613493538177955 0 0 0 -2.745683828633905e-05 +3176 0.001148150892357261 -0.0006542672095705326 0 0 0 2.8857980389156364e-05 +6813 0.0012232358079489554 -0.0009684378329427082 0 0 0 0.00014741866936882246 +1543 0.0006166652280443582 0.000692188813702845 0 0 0 -2.9252821503270704e-05 +4490 0.001106226843980399 -0.0005935403557915139 0 0 0 -1.092694704325488e-05 +1489 0.0011082874248403748 -0.0007382531486185666 0 0 0 2.439430185354131e-05 +6834 0.0005478279406617064 0.0006944991410746154 0 0 0 -1.863506119898485e-05 +6598 0.0006864881146061535 -0.0015439385298761077 0 0 0 -0.0005672985186417973 +1141 0.00045631556845836013 0.0004773322932602485 0 0 0 -3.6422498658067307e-06 +5561 0.0007761059755815987 0.00024570545710361595 0 0 0 -4.435355847472063e-05 +6664 0.001132722202885496 -0.0006374468873909214 0 0 0 3.2483727033391613e-05 +5042 0.0008298712811092389 0.0006985867364373432 0 0 0 2.8873224598681077e-05 +7247 0.0012061261920741477 -0.0008204125977922765 0 0 0 3.0652723368424755e-05 +4556 0.0011891077575846632 -0.0007569712400650973 0 0 0 2.9291623938303345e-05 +1716 0.0009971065351631941 0.0005996505533801167 0 0 0 -7.863611350677218e-06 +8278 0.0006935412377485138 -0.0013137550094672204 0 0 0 -0.00011256953808257646 +6679 0.0012427096193166826 0.00023160900804616088 0 0 0 1.1950255616457626e-05 +52 0.0013134794362078081 -0.00034845066619638906 0 0 0 3.222118096116543e-05 +66 0.0014108490014049738 -0.00028096572461825124 0 0 0 3.4476484391894765e-06 +103 0.0013485208637132754 -2.6043477935014764e-05 0 0 0 1.2389300924548771e-05 +107 0.0011968213234495348 -0.0005849703340388058 0 0 0 2.2934767989519355e-06 +9992 0.001251057526636732 -0.0008212467524751387 0 0 0 -1.8426029284598116e-05 +136 0.0011231715131718464 -0.0008501161244448614 0 0 0 3.191705884539392e-05 +142 0.0011492580116165886 5.848853298825681e-05 0 0 0 -6.268678216934912e-06 +171 0.0011491731655663478 -0.00029093106165669014 0 0 0 1.4283404308223098e-05 +456 0.0012979843208542816 0.0005273781614816489 0 0 0 7.741787473165661e-07 +193 0.0012453761746541205 4.350140486876261e-05 0 0 0 -4.721329482855431e-06 +203 0.0012407980687250471 0.00018038944919259475 0 0 0 1.8345386984448997e-05 +4440 0.0007707738430662997 0.00022228273074062792 0 0 0 -0.0010395801537434967 +212 0.0011410016541969917 2.776017719250265e-05 0 0 0 2.56302453867072e-05 +8957 0.0012893563498770494 0.00023679501454038353 0 0 0 -1.7418047969017974e-05 +231 0.0012549362983916557 0.00016114959070858412 0 0 0 1.1153496921564349e-05 +7659 0.0012756341990733304 0.0006512864247760815 0 0 0 0.00014995748891356666 +5661 0.0012146126666283264 0.0002447896350751698 0 0 0 7.055110449350273e-05 +348 0.0011002649834265274 -0.00033769504710927194 0 0 0 1.3524006578494996e-05 +392 0.0011132174329134957 -0.0005518384192473483 0 0 0 2.5281728882195808e-05 +396 0.001422333376475789 -0.0005087323101625361 0 0 0 3.2323586100310824e-05 +6605 0.0012080909373072856 0.0003410177727264769 0 0 0 -5.313474565121161e-05 +7472 0.001334731438351485 0.00019772892196862426 0 0 0 7.601936032365457e-06 +502 0.001147563314236847 0.00019789866331950065 0 0 0 9.877914595621455e-06 +533 0.0010872898838241718 -0.0006386006034165665 0 0 0 -6.550700743170083e-07 +554 0.0011322170159063449 1.0128056291984427e-05 0 0 0 4.5079431023705896e-05 +6560 0.0012496496907881004 0.0002373073296310318 0 0 0 -7.572121433135051e-06 +573 0.0012575866593162544 9.176391924612213e-05 0 0 0 2.0304356522487984e-06 +591 0.0012397970093013537 -0.00030951922717410544 0 0 0 -4.049970255830485e-05 +592 0.0014163424419257134 -0.00032967163821344034 0 0 0 4.7309332947834874e-05 +8861 0.00032477305312189 4.4719691138584145e-05 0 0 0 0.0006542740105703309 +635 0.001453499167868093 -0.00048425711387882134 0 0 0 4.7989775888874814e-05 +686 0.0013489331543295334 8.821065165582934e-05 0 0 0 1.4148483463078539e-05 +688 0.0012144887891545459 0.0001605095977913561 0 0 0 2.2799206128200188e-05 +7367 0.0012962087271909156 -0.0008395047336961525 0 0 0 4.511349687065955e-05 +785 0.0011698058905123812 0.00033142447264376194 0 0 0 2.3235657534784894e-05 +806 0.0012476173842530332 0.0003158884407453262 0 0 0 1.0753312643211545e-05 +807 0.0013925677425920277 -0.0001595427471641559 0 0 0 3.7551201024643326e-06 +828 0.0012731207199424015 0.00045821526704281363 0 0 0 1.8342670766373843e-05 +830 0.0012441790654640448 0.00034648752768680737 0 0 0 3.1206145536592406e-05 +8109 0.0015455416077490704 0.00045453485531562554 0 0 0 0.0001230554257162304 +864 0.0012436780156937384 -1.1692498164782016e-05 0 0 0 3.021273358022985e-05 +894 0.0013566385046245508 -0.0001151029531753626 0 0 0 2.612856416036548e-05 +7458 0.0013050303596459677 0.00044941306352548486 0 0 0 7.740760476411015e-05 +693 0.001324288243395991 9.278789547595813e-05 0 0 0 3.5247670756015956e-06 +934 0.0011696822174217048 -0.0004001933958577913 0 0 0 5.6735954921728617e-05 +937 0.0012453420051118278 -0.00024535767417377993 0 0 0 -0.0001152661876241013 +4064 0.001244021819910359 0.0003710179193378868 0 0 0 -4.804380444829167e-05 +991 0.0014767874303080214 -0.0005982167199390004 0 0 0 2.748341224239032e-05 +1022 0.0012689970846996603 -0.0001798626115944045 0 0 0 4.720312562623933e-05 +1390 0.0013576222498117676 -0.0007537538374227633 0 0 0 4.1333878843846545e-05 +1071 0.0013218748825289447 0.0001586031349613767 0 0 0 3.275476279580908e-05 +335 0.0013246556960111048 0.0002252236824340591 0 0 0 4.8537928127041225e-05 +1108 0.0012902246665649581 5.4428114113267326e-05 0 0 0 -1.592612978070184e-05 +1136 0.0013180405694666734 0.0005067374174207183 0 0 0 1.5020657041926441e-05 +1198 0.0010701935399062333 -0.0001412159043932786 0 0 0 3.6420513726078584e-05 +3627 0.0011178604954410313 -0.0004189614729118059 0 0 0 -3.649815035677344e-05 +5226 0.0013160690991660718 -0.0005944189056340335 0 0 0 -2.077722347531644e-05 +1320 0.0012647821930312623 7.80588323614077e-05 0 0 0 2.1864105140565565e-05 +1348 0.0013502021018992698 -0.0005632244950631916 0 0 0 -7.689477715369465e-05 +1381 0.0012032488285269676 -0.000761754210582507 0 0 0 2.775471074222857e-05 +1409 0.0014422669086456292 -0.0004715687634723856 0 0 0 7.839242828634515e-05 +1410 0.0012071176151856485 1.713350106067769e-05 0 0 0 3.800148772432667e-05 +9576 0.0012884214841058874 0.00055094088534996 0 0 0 5.616320473784058e-05 +1447 0.0011869771410679228 -3.88726135538767e-05 0 0 0 -3.9336599692943745e-05 +1485 0.0011701447557180549 0.00020002564975974083 0 0 0 -1.1305186119622041e-05 +2831 0.0012314114226039995 -0.0004187891895381242 0 0 0 6.243396563284197e-05 +3444 0.001274646813949185 0.00018371674843898207 0 0 0 2.769452685665627e-06 +1504 0.0012917821537841397 9.89219955367202e-05 0 0 0 1.496755714257189e-05 +4877 0.0012826108866500542 0.00024048907410921324 0 0 0 3.648508858075059e-05 +1537 0.0012791735501430901 0.0004609007769838177 0 0 0 8.405333906224789e-05 +1588 0.0012456352002357235 -9.111264184721144e-05 0 0 0 2.3595958782594026e-05 +4559 0.001461553813947291 0.0003755306572842634 0 0 0 7.959747188454186e-05 +1599 0.001272166043230247 0.0003801353953469773 0 0 0 2.014182560750575e-05 +8608 0.001300265534640062 -0.0004560280326982484 0 0 0 6.901406915182817e-05 +1635 0.0014343556935291126 -0.00028588847871536237 0 0 0 -1.0203650997748603e-05 +1636 0.0014549066091599481 -0.0004884633150493303 0 0 0 3.088256148788384e-05 +1664 0.0012364731611068294 0.00015963508126542423 0 0 0 -6.668343181942771e-06 +1685 0.0012889673845056782 6.521718660014047e-05 0 0 0 -2.6498653802952698e-05 +1714 0.001140815446038569 -0.0002104220865104481 0 0 0 -3.789566960841152e-05 +1780 0.0011446477992293732 -0.0005525588523792772 0 0 0 2.9699447235550736e-05 +912 0.0013447249625409441 -0.00102467658102638 0 0 0 1.0381869674456938e-05 +9860 0.0012390349477550487 0.000279533724366604 0 0 0 7.783055466584132e-06 +1804 0.0011005606753739733 -0.0005828951846378922 0 0 0 -2.217102881360554e-05 +1805 0.0012919735543000935 3.1820671844320896e-05 0 0 0 6.1418439638820575e-06 +1813 0.0011575821431861933 -0.0003518971064797709 0 0 0 5.920489273803469e-05 +1827 0.001191163925274301 -0.0003257126946896371 0 0 0 4.4318863637020175e-08 +4534 0.0012953601559581966 0.00045877581182281917 0 0 0 2.599514280974377e-05 +8881 0.0013372691682571728 -0.0007500039393560869 0 0 0 -4.475305962302409e-05 +1970 0.0012268482748415061 -0.00045665608521181926 0 0 0 -1.5746752293907526e-05 +9533 0.001337512239911562 -0.00047174582656815006 0 0 0 -4.841576220500384e-05 +2083 0.0013752460209136305 -0.00011030607687923709 0 0 0 1.3756816193884661e-05 +7173 0.00128830560934158 0.00022978158275336504 0 0 0 1.1615176684964022e-05 +2124 0.001246266887795027 0.00034038353077661676 0 0 0 4.623935622641648e-05 +2125 0.0010634923545195976 -0.00027284773961741186 0 0 0 1.673323019862479e-05 +6251 0.0024889017528153838 0.00028201883990734125 0 0 0 -0.0017439734465236518 +9876 0.0012456621025894459 0.00022388229603343456 0 0 0 0.00022322372094072957 +2723 0.0012056612783863854 0.00019649444602648264 0 0 0 5.8049658255222465e-05 +2182 0.0011843117676064272 -0.0002187683772839595 0 0 0 -7.254113004578948e-05 +2183 0.001287574571476176 -3.318587113976349e-05 0 0 0 -8.37771098404659e-06 +2187 0.0014553000130240604 -0.00047678624265102957 0 0 0 -6.254012940643854e-06 +1954 0.0012791853797719207 -0.0010495460494104603 0 0 0 6.759508967795722e-05 +2213 0.001258731076070826 0.00015783541725364233 0 0 0 1.9470931802600833e-05 +2223 0.0013994060739870166 -0.0005630329796617984 0 0 0 7.476474055021226e-05 +2230 0.0011805898257367697 -0.0010961677891979174 0 0 0 -7.983226242254067e-08 +7397 0.0012496517565046322 0.0003520654302874761 0 0 0 -1.2810608683130948e-05 +2343 0.0011524953175989607 0.00021145003033461643 0 0 0 2.0996775160939083e-05 +2344 0.0013134016308289365 -0.0004759601028073621 0 0 0 1.3789967071502298e-05 +2366 0.0012052324746905983 -0.00031466092735561545 0 0 0 1.2974424893775013e-05 +2369 0.001177737448119834 0.00035413159099835907 0 0 0 1.9459245549411748e-05 +2388 0.0012166743223223139 -0.00013932891780942165 0 0 0 4.451747191316808e-05 +2426 0.0011634205532109656 -9.339214193840943e-05 0 0 0 2.421043899126129e-05 +2580 0.001236599979595376 0.000373923525073198 0 0 0 6.244647758535022e-05 +9270 0.0012890535614420422 0.00024123733615649266 0 0 0 1.5523178504139076e-05 +6315 0.0013756887410539442 4.496566404476495e-05 0 0 0 -1.926342403320702e-06 +2674 0.001215350229630386 -0.0003215827695431811 0 0 0 4.6319769185257425e-06 +2718 0.0012207616919612824 1.301265625686614e-05 0 0 0 5.353008411747243e-05 +2727 0.0011557847596193591 -4.0043508182273425e-05 0 0 0 6.173019881089423e-06 +9416 0.0013052869455096284 0.0005391407877699551 0 0 0 3.7718101025772085e-05 +2759 0.0012468231335316705 7.97032547508229e-05 0 0 0 1.9458655989446925e-05 +2764 0.0013703315788276334 -0.00022857041972809632 0 0 0 7.544511207190485e-05 +2175 0.0013732338034878264 0.0005409961279168166 0 0 0 3.971567241701442e-05 +2806 0.001261936396398755 -0.0003126730936381103 0 0 0 -4.054942956886618e-05 +6043 0.0012833848671365007 -0.000822119403072701 0 0 0 -1.6073747396711327e-05 +2864 0.001367409390941587 -9.51307140896139e-05 0 0 0 9.270523674655571e-05 +2913 0.001315676397399095 0.0005791748731522875 0 0 0 8.76368621086467e-05 +2946 0.0012913664897859726 -7.943087208188978e-05 0 0 0 2.6042953955877998e-05 +2969 0.0012651614040601349 0.00017054057995133997 0 0 0 -9.134216952390045e-06 +195 0.0010895325499157772 0.000288554306050319 0 0 0 7.364384786191354e-06 +3042 0.0010708596774504718 -5.593546822305511e-05 0 0 0 1.7844945356467072e-05 +2418 0.001260448877632574 0.00029087509445401786 0 0 0 7.384940978011056e-06 +3126 0.001206384173919813 -0.000484554970660715 0 0 0 5.0603384598925986e-05 +3368 0.0013302896834138215 0.0004886525255706133 0 0 0 -7.237012499256133e-05 +3179 0.0013434690920920106 3.5618427586459604e-05 0 0 0 -4.5821925090330315e-06 +3245 0.0012930350982585594 2.276442036558495e-05 0 0 0 5.0772931635365364e-05 +3272 0.0012202810437546257 9.102136372321907e-05 0 0 0 3.999785422042011e-05 +3289 0.0014258533545952424 -0.00023759945767828352 0 0 0 3.489987622057889e-05 +3300 0.0013150833126097015 -5.537589664062996e-05 0 0 0 1.6328928398582702e-05 +3320 0.0012099533754425286 3.8336339877662933e-05 0 0 0 0.00017911811677600442 +3334 0.001159794223425429 -0.0003062062499094741 0 0 0 -1.1653918630477544e-05 +3350 0.0010933295942233694 -0.0003835878999357264 0 0 0 2.8887703128547027e-05 +3382 0.0011335342498034935 -0.00015919385942567726 0 0 0 6.934587047555842e-05 +3417 0.001223659430338692 6.008356959137749e-05 0 0 0 3.38748233585417e-05 +3466 0.001189481114437363 -0.000591513418788325 0 0 0 3.5311407550809664e-05 +6692 0.00132004579510772 6.49764925672619e-05 0 0 0 3.7994719736522086e-05 +3523 0.0013354644797787152 0.0005135569688293665 0 0 0 -1.872766413244828e-06 +3535 0.001329493013681439 -0.00023916302883132562 0 0 0 3.704289713349467e-05 +3562 0.0011981021742862408 -0.0007608559012860637 0 0 0 -2.3059438417350096e-05 +3585 0.0013352806245657488 0.00038854759231899116 0 0 0 -4.530430955936962e-06 +3608 0.0012351158805782088 0.0001841753915054424 0 0 0 3.420176623045547e-05 +3432 0.001096598797888956 -0.00039328614024907767 0 0 0 -4.830719339288783e-05 +3706 0.0010665832987545012 -0.0005411248379076205 0 0 0 5.223880826720911e-05 +3733 0.0012492452866758393 0.0004485946030694503 0 0 0 2.965903241699225e-05 +7522 0.0013707066097040266 0.000530577317274336 0 0 0 0.00017702755594230249 +3752 0.0012687520206250578 5.9472429053867924e-05 0 0 0 1.1138266936794298e-05 +3789 0.0012702249905554486 0.0003005380386283666 0 0 0 1.3428601144618197e-05 +6949 0.001295126379429293 0.000180709035313562 0 0 0 -2.7907378754584522e-05 +3817 0.0012705923622439066 -0.0004686203160549916 0 0 0 -2.9498034611908657e-05 +5556 0.0013561074741769551 -0.0009555782039718408 0 0 0 -8.345881949289921e-06 +2661 0.0013194931288308441 0.00014929541698792672 0 0 0 2.5559198089473773e-05 +3850 0.0014429200072254543 -0.0006389101438352407 0 0 0 -2.595320225516504e-05 +3872 0.0012457508726185233 0.00048433310517241097 0 0 0 6.385316545332263e-05 +3876 0.0014465122112524117 -0.00025587738595974155 0 0 0 -1.4569689488254804e-05 +5228 0.0012981346434271024 0.00016231463716130827 0 0 0 -5.803021821244823e-05 +3102 0.0011055660668896493 -0.0004180699376920875 0 0 0 1.93893376485045e-05 +9817 0.001243377320505657 0.0005303231058691147 0 0 0 -0.0005859108781187983 +4041 0.0012834864649644354 -0.0005233586381951831 0 0 0 -0.00010143123420218348 +9078 0.001306057037008353 0.00012017674087116807 0 0 0 1.5116744140088784e-05 +1439 0.0014527853081287914 0.0004331471231431742 0 0 0 -3.195129220816668e-07 +4088 0.0011350867270216295 -0.00037359596655980366 0 0 0 0.00046509575403548645 +2979 0.0012622440772842114 0.00030401122702781563 0 0 0 -3.788863402787387e-05 +4181 0.0011656989062782312 -0.000250231303834917 0 0 0 5.005489453319931e-05 +4314 0.00139097928607402 -0.0004904876323701349 0 0 0 -8.800136772928069e-05 +4361 0.0012750446748215477 -0.0002647016985945865 0 0 0 -0.000130926333316581 +1164 0.0011100121978510065 0.00017697187913037464 0 0 0 -2.8635151550711267e-05 +4390 0.001342300390954953 0.0004902889796437154 0 0 0 3.1419824713502675e-05 +8962 -0.0012056370468602777 -0.0010550439745844434 0 0 0 -0.0002956762190740946 +5749 0.001048890651072445 0.0001923613129112234 0 0 0 -3.716129812194623e-05 +8454 0.0012247328250597224 0.0002468072171919384 0 0 0 -3.217086115160129e-05 +4494 0.0012922811274406047 0.0005110402075848774 0 0 0 0.00010917760652483653 +4501 0.0012041975581031377 0.00015926120514315337 0 0 0 4.0825671291831004e-05 +4529 0.0011424306101475577 0.00018655209439852498 0 0 0 2.304223557243132e-05 +4110 0.001117952415551424 0.0002932736481805008 0 0 0 -0.0003098261103393201 +5947 0.001331230909417642 0.0003233537007168063 0 0 0 -0.00010207264737356164 +4604 0.0013118282997586295 0.0003661003788248467 0 0 0 7.697848771843941e-05 +4629 0.0010663563706390748 -0.00033575985649343947 0 0 0 -3.200449178683281e-07 +4641 0.0012457768257945765 0.0003703914244844593 0 0 0 1.717978653728469e-05 +4649 0.0011038482709099502 -0.0005850001754445244 0 0 0 3.6996701281369106e-05 +4682 0.0013148157338488504 0.00046300140806225585 0 0 0 3.6323259536556334e-05 +4684 0.0011727938259167312 -0.0005219723653312416 0 0 0 2.818419460260037e-05 +4732 0.0012834092927685318 -2.5955391594170117e-05 0 0 0 -3.132780187257658e-05 +4737 0.0012760187314088333 0.000516677212068777 0 0 0 9.717055145839847e-05 +4752 0.0014398210400023404 -0.0006902361357715183 0 0 0 -5.1336802977981715e-06 +4758 0.0011574423481161224 -0.0002397814841756905 0 0 0 -2.7701475783508e-06 +4831 0.001398837224668209 -0.00015836632545852553 0 0 0 -3.834862332913092e-05 +4855 0.0012565245230554399 0.00018989812230501456 0 0 0 3.29025925627804e-05 +4917 0.0011660953711961708 -0.0002532378021047126 0 0 0 9.112528772296316e-05 +1723 0.0012697964046185699 0.00029613722649870925 0 0 0 -1.0073991237890419e-06 +4996 0.0012566507061946464 -0.0007390242519221091 0 0 0 2.0614958499632538e-05 +5034 0.001133413312234016 -0.0003203940498468627 0 0 0 9.655854014054603e-05 +9945 0.001401708969903034 -0.00019427962636562788 0 0 0 1.7529119379064032e-05 +6322 0.0013321430335248923 -0.000846018360229769 0 0 0 2.9725228429581886e-06 +5074 0.001117649800993382 -0.0005596233959852488 0 0 0 3.466443677587537e-05 +5099 0.0014354774170080562 -0.00023724725791781628 0 0 0 8.307038228582125e-05 +5136 0.001266825613090722 0.0005081643496095005 0 0 0 3.268603495325367e-05 +7296 0.001328648270341969 0.00013167121536007822 0 0 0 -2.4674498130682364e-05 +5258 0.001125265294995565 -0.0001756739478263675 0 0 0 3.2404582091380613e-05 +5268 0.0012217781077387085 -0.0008230071340100844 0 0 0 5.0374453609907085e-05 +5271 0.0010293866054447926 -0.0004408897087238896 0 0 0 -0.0001071488546387186 +5288 0.0012836886689995852 0.0006066588818951723 0 0 0 0.00012625966604005534 +5993 0.0011704978336032844 0.0002859698957873337 0 0 0 -2.8331055870806293e-05 +5352 0.0011958686831642635 -0.00013205399160544674 0 0 0 4.3875035977427345e-05 +5366 0.0014199808243955255 -0.00030023386999829694 0 0 0 -8.410291952678851e-05 +5371 0.0013157713500719936 9.42917739056928e-06 0 0 0 2.35952963795131e-05 +5409 0.0012441016455829613 -0.0001968896976606301 0 0 0 0.0001212203984202902 +5420 0.00126563687933964 0.0006104750314919401 0 0 0 9.301208738490995e-05 +5421 0.0013641776563108996 4.025814368375671e-05 0 0 0 1.1401264358362196e-05 +5448 0.0012356146400837222 0.00015085692052233476 0 0 0 -3.4080511703028314e-06 +683 0.0012554719313780148 -0.0007583669206818892 0 0 0 4.222320652749016e-05 +5546 0.0011457794530512933 4.300892443325287e-05 0 0 0 7.073143960868328e-05 +5571 0.0012470036192826133 -2.3657727066628915e-05 0 0 0 0.00011342989613644054 +642 0.001277383992551631 0.0004068495196418474 0 0 0 4.2624599926433974e-05 +3879 0.00120700553247032 0.00021835898647962318 0 0 0 -3.4861097453584466e-06 +5739 0.0012901030787250238 0.0005988903543826708 0 0 0 3.94534036302174e-05 +5754 0.001371137297399284 -0.0006534497865458986 0 0 0 -2.102112876725695e-06 +5768 0.001300984744276342 -0.0002485043246013069 0 0 0 0.0002147790064807019 +5771 0.001235684485867598 0.0003340959578215973 0 0 0 0.00010430347244605886 +9425 0.0007285487236442095 0.0006369548980748206 0 0 0 -0.0008954346126582448 +5780 0.0013784925785606903 -0.0005635092672145449 0 0 0 4.045572502621135e-05 +5831 0.0011524745884002742 -0.00023736590461544377 0 0 0 9.791489813127811e-05 +5839 0.001263624285675304 6.725204186335995e-05 0 0 0 2.588919444610839e-05 +5842 0.001422135626105263 -0.0003530607093988553 0 0 0 -8.40741714352181e-05 +5855 0.0011744480056004646 -0.0001996926195622318 0 0 0 5.3000683183021535e-05 +5883 0.0012419779525879595 0.00031419773770039095 0 0 0 -3.763876619179965e-06 +5929 0.0013740399991385552 7.68574797077149e-06 0 0 0 -1.4831911813264603e-05 +5933 0.0012169168648739986 -0.0008663203959519294 0 0 0 2.2781420384264614e-05 +1288 0.0012829349578693235 0.00025711424421161324 0 0 0 -4.192127014773348e-06 +5957 0.001241155945813211 0.00011375031102674109 0 0 0 -7.507783308507945e-06 +5986 0.001076173394395119 -0.000832003459860787 0 0 0 -0.00021814596248450447 +6039 0.0010805398744380109 -2.983982997674853e-05 0 0 0 0.0003064714623474394 +6068 0.0013108122729270065 5.864362047753178e-05 0 0 0 0.00011169387810220812 +6081 0.0012769966882803538 0.0004298583590424412 0 0 0 4.324446894480457e-05 +2238 0.001220814918428894 0.00037426849678963593 0 0 0 2.207009715329476e-05 +6107 0.001295070947288764 0.00016229736538395976 0 0 0 6.601189526552658e-05 +859 0.0012482983822840112 0.00028696390484158084 0 0 0 1.2951607760695502e-06 +6182 0.001308707671550655 -7.986062977172389e-05 0 0 0 1.7431749305123065e-05 +6200 0.0011073381352433651 6.103387894764429e-05 0 0 0 9.172415643737132e-05 +6203 0.0014065820353309974 -0.00048616152452755717 0 0 0 3.1954338677382416e-05 +8383 0.001295899665100544 0.0002601747752678091 0 0 0 -4.023844972783526e-06 +6253 0.0011732525462015096 0.00017234211769216032 0 0 0 4.071557995490967e-05 +8327 0.0012344116672200322 0.0003472422794235767 0 0 0 -2.3104340998732866e-05 +7872 0.0011414243208814978 0.0003165925323028412 0 0 0 3.741709616385657e-05 +9712 0.0021478245788449546 0.0029911772915826107 0 0 0 -0.0023666603493748897 +6357 0.0012845506442861216 -0.0006353155047053249 0 0 0 -4.534399568027081e-05 +6364 0.0012451284590261741 0.00012100657980082442 0 0 0 2.421551982043891e-05 +6372 0.001166643801341585 9.961754671525037e-05 0 0 0 -3.189721193775996e-05 +6427 0.0014118938993658303 -0.0002730422765697393 0 0 0 -3.172773286019464e-05 +6445 0.0011818670761453124 -0.0005863713023118681 0 0 0 -8.187853670184249e-05 +8640 0.0013588305498842095 0.00010958713066351682 0 0 0 -1.0283504802291717e-06 +6547 0.001125870487019683 -0.00031494928053390375 0 0 0 -5.676584479005501e-05 +6564 0.0012862161486541818 0.0003926648598403471 0 0 0 -8.706157328300005e-06 +6568 0.0013028305954106078 0.0004177200909354207 0 0 0 2.4937185290904234e-06 +6583 0.0012327643645216081 -3.3644042056434566e-05 0 0 0 8.346793121199345e-05 +6593 0.0012044851291645093 -5.1334046874421405e-05 0 0 0 4.364250786692316e-05 +6616 0.001257493707358863 -5.460289188206788e-05 0 0 0 -3.4772217608598944e-06 +6655 0.0014039270574244954 -0.00023534880957926555 0 0 0 -2.975701273857336e-05 +7122 0.0022087306770805924 -0.0011380145861046337 0 0 0 -5.6178638287300635e-05 +6688 0.001293899098324145 0.0003942875494907564 0 0 0 3.185678444172928e-05 +6691 0.0011698471936494247 -0.0006340495905147842 0 0 0 2.1822701498420836e-06 +9913 0.0013776062000017218 6.309089829540961e-05 0 0 0 1.5764787641893924e-05 +6709 0.0012304982673694402 4.1513363150826834e-05 0 0 0 -4.130962122901056e-05 +6714 0.001241909780476236 0.00035792569904017404 0 0 0 -1.6491764379235605e-05 +6719 0.00129104814613837 -0.00034491221359900074 0 0 0 -9.436133525930946e-05 +6768 0.0014438297894942117 -0.0005537187216914159 0 0 0 -7.15959118317535e-05 +6774 0.0013034808709038953 0.0006164395470278293 0 0 0 9.918072827549711e-05 +6776 0.0012484304954672636 0.00012931676905721484 0 0 0 2.2423920529889966e-05 +3512 0.0012358459303719123 0.0006552143244273268 0 0 0 5.457186639096236e-05 +6831 0.0012206198286213853 -0.0008090422978809132 0 0 0 -0.00014213805224101695 +6838 0.0011316678701716021 -0.0001352667992674852 0 0 0 2.7537600803830495e-05 +6853 0.0014517223292046725 -0.00048499332096317604 0 0 0 -2.579229913602279e-06 +7103 0.001269657478791215 0.00048583259747234705 0 0 0 1.1317521503034713e-05 +6906 0.0011886762178300934 3.439792640564393e-05 0 0 0 6.415324245453465e-05 +6938 0.0019736471012093454 -0.0004285892715577505 0 0 0 0.0013279049836030469 +763 0.001267108476448353 -0.0006232576205260499 0 0 0 7.678619089861254e-06 +263 0.0013209935804432303 -0.000794724777210424 0 0 0 6.758291445821103e-06 +6963 0.0011083416533081388 -0.0002850384445795309 0 0 0 -9.99008454222832e-05 +6974 0.0010965515218444176 -0.0002968646860793641 0 0 0 9.735678446778932e-05 +2360 0.0011620715189065585 0.0002571846873321203 0 0 0 3.147860567524877e-05 +7016 0.001285358382905728 -2.2298458266710175e-05 0 0 0 4.4374354080357996e-05 +7080 0.0012439551613430816 0.0003199084568269668 0 0 0 -5.630503943430107e-05 +1972 0.001273237334851475 0.00024370465587807833 0 0 0 -1.8349825021909493e-05 +7108 0.0014659047318939422 -0.0004950276374007627 0 0 0 9.757844620536521e-05 +7118 0.0011573297510215764 2.390165970304312e-05 0 0 0 5.09444112674961e-05 +7163 0.0013346778519452854 3.2774001797654224e-05 0 0 0 1.4377576822471947e-05 +7180 0.0012362462212332772 -0.0005075024399292306 0 0 0 -3.2265689009433004e-06 +398 0.0010276597466058648 -0.00024629474268760395 0 0 0 3.289269133694246e-05 +8977 0.004425903147604433 0.0023857939037193548 0 0 0 0.0026784851125408824 +7293 0.0012545501578187083 0.00021185734235530424 0 0 0 4.0782512916078707e-05 +9936 0.0012644810548333005 8.449426196961635e-05 0 0 0 6.20311060853825e-05 +8746 0.0012475620461745772 0.00028263410501248144 0 0 0 -3.2685513962276043e-06 +6275 0.0012573194367710935 0.0006584001132025339 0 0 0 2.7120459927106692e-05 +2331 0.0013568591788840829 0.000399151377687822 0 0 0 5.504151792963739e-05 +254 0.001093376621013466 -0.0004131880328994291 0 0 0 1.3349082603779601e-05 +1800 0.0011502226137014373 0.00029313815123798164 0 0 0 9.150376122966642e-06 +7404 0.001059719616181026 -0.0002835602586472292 0 0 0 -0.00012215136207534725 +7425 0.0011050259524141878 -0.000602621327990287 0 0 0 2.9955654827655506e-05 +7428 0.001403562803247547 -0.0006614833476381773 0 0 0 7.121411251460836e-05 +5643 0.0012610068246789916 0.00025992228802234 0 0 0 2.795181594133526e-05 +7471 0.0012519911385383063 0.0003108153429427251 0 0 0 2.241598856064763e-05 +7516 0.001145790806824764 -0.00033021841230726484 0 0 0 3.144818388850599e-05 +7533 0.0011732723059632371 -0.0005855452673382982 0 0 0 1.1355528578072698e-05 +2270 0.0011083494446252266 -0.00088915646377467 0 0 0 -0.0001147246850071979 +7602 0.001233127534836203 -4.2500591662533396e-05 0 0 0 1.2500635548352275e-05 +7641 0.0010878908339442943 -0.0002166233970298029 0 0 0 7.183426418460683e-05 +7643 0.0012026024679293826 -0.0008329552787180256 0 0 0 -0.0001490827256315319 +7660 0.0014294442562296594 -0.00027713867927373076 0 0 0 2.1865590077602887e-05 +4213 0.0013176356286438286 0.00015591773445044227 0 0 0 1.7210246989952465e-06 +6854 0.0012490783216741407 -0.0008574868842578023 0 0 0 1.430138920468811e-06 +5708 0.0012212384455694203 0.0003564518595771167 0 0 0 2.7394125582683347e-05 +1195 0.0011031389342084955 0.00026810317537272123 0 0 0 -3.739635947495602e-05 +7805 0.0011946184910703302 -9.304256810512246e-05 0 0 0 5.8125725400999255e-05 +5276 0.0012392364328825717 0.0002747919416004001 0 0 0 2.4331117945639095e-06 +1507 0.0013240967938751332 -0.0004778304653516998 0 0 0 7.433555724786274e-06 +7917 0.0012535535020207814 4.3744252010459653e-05 0 0 0 6.0390229300632345e-05 +3890 0.0013094109797810206 -0.001071756898654188 0 0 0 -2.5323143644633553e-05 +4901 0.001353962401738555 -0.0007402226727485244 0 0 0 -5.770618835287723e-05 +7946 0.0014088451333629816 -0.0005189570283215562 0 0 0 -8.785110381102191e-05 +8025 0.0012563048900731681 0.00016006706431223662 0 0 0 4.9234001722343435e-05 +5931 0.0012316165193164814 0.0004048355213143685 0 0 0 1.846188993789271e-05 +8070 0.0011392734502692304 2.8364015665487613e-05 0 0 0 -0.00012487638774010733 +8086 0.0011239172645868868 -0.0005651124896079793 0 0 0 -4.0489531938606374e-05 +8104 0.0013432218320592237 -0.0004732476382263216 0 0 0 0.00012506419554487807 +6143 0.0011442347916186385 0.00026662054642356825 0 0 0 2.8645473848587088e-05 +8157 0.0012495635358412862 0.0003336673201417044 0 0 0 -7.365463062387354e-05 +7332 0.0013054741840582773 -0.0009542214776497548 0 0 0 8.986234675655286e-05 +8191 0.001320954011346384 -0.00012099848269903018 0 0 0 2.2934300067196514e-05 +8265 0.0013168035375109204 -0.0004618232936064079 0 0 0 -5.157363642002e-05 +8359 0.0014282294973076333 -0.00022670146599939816 0 0 0 -6.695894388600712e-05 +8360 0.0014801143693703703 -0.0006080120870663832 0 0 0 -3.5035106536161924e-05 +8400 0.0013333562411988235 -0.00046594372838206443 0 0 0 -8.881669672585629e-05 +8412 0.0012331129270984691 3.233839550115395e-05 0 0 0 -2.4641772155681168e-05 +8424 0.001159265510334557 -0.0001565912599430599 0 0 0 3.944903217684611e-05 +8203 0.002260896113480536 0.00017118474500960417 0 0 0 -0.00016098273781832306 +8458 0.001221080212743295 -1.57374684598365e-05 0 0 0 -1.2067674105021157e-05 +8525 0.0012359760533999036 0.00017004235422357787 0 0 0 -6.192431847724664e-06 +8645 0.0012823219726683815 0.0002477256010688458 0 0 0 -1.7952238914971794e-05 +8535 0.001361717565749422 -0.0003388495818833546 0 0 0 1.7478196392306312e-06 +8542 0.000602897644528327 0.0003051189884877295 0 0 0 -6.082667262193158e-05 +2010 0.0013410403181052719 -0.0008789110443013774 0 0 0 2.958142949601929e-05 +8672 0.0010810068749052678 -0.0008270249878468019 0 0 0 0.0003184497854967071 +8719 0.0013068896899732939 0.00036054941741625206 0 0 0 1.443415161663771e-05 +3446 0.0012600953818656497 0.00026323540142984483 0 0 0 6.86216709218894e-07 +2211 0.0012757919031932423 0.000257562735188376 0 0 0 -4.894236310882896e-07 +8785 0.0030576589266298223 -0.0005859866768983702 0 0 0 -0.001176245823820989 +1556 0.0012535763382588113 0.00026986435564990035 0 0 0 7.253178478824823e-08 +8808 0.0012221510377905854 5.857829452186416e-05 0 0 0 -0.00019543788694153803 +8834 0.0013246392783703652 0.00030390998452204494 0 0 0 7.991023069258371e-05 +8835 0.001090570784930183 -0.00024629011892965353 0 0 0 0.00011959915978558065 +5463 0.0012475613974850031 0.000309804000523182 0 0 0 -3.292499278108422e-06 +8864 0.0014871628736405956 -0.0004550344213921886 0 0 0 -2.386468833913774e-05 +4714 0.0012417634204215835 0.00020713250137044018 0 0 0 1.2208612981776609e-05 +9964 0.0010940800598880018 -0.0004851610631787254 0 0 0 0.00014225967267214514 +6969 0.001069179059532433 -0.0009581548272790185 0 0 0 0.00022537430163935239 +9002 0.0015197662272516902 -0.0005936178958005459 0 0 0 6.191072423639303e-05 +6622 0.0012998709658488938 0.00024431426003234454 0 0 0 -6.298603227624754e-06 +9064 0.001206240092305333 -0.0003198922047939118 0 0 0 4.542366409149267e-05 +397 0.0012079254057236065 -0.0008344249674738771 0 0 0 2.4018120784170954e-05 +7713 0.0012861523324289616 0.00025174072925561507 0 0 0 -1.5824842228354807e-05 +9103 0.001270374705221207 7.991818920619367e-05 0 0 0 -3.9977808482821535e-06 +9116 0.0013952334878413188 -0.0006292475950874767 0 0 0 4.273744957088466e-05 +4664 0.0013917358451005603 -0.0007437796046441194 0 0 0 9.05607515858905e-05 +9133 0.0014504375590280198 -0.0012854335827697223 0 0 0 -7.509353153033225e-05 +9194 0.0012975526258197012 -0.0002780027695550387 0 0 0 4.922456662186643e-05 +9203 0.0013745771999367233 -0.0007449568574281106 0 0 0 -0.00014498539609351553 +5734 0.0011101867684576315 0.00026412043994696 0 0 0 -2.5472822256127135e-05 +669 0.0012735736121371089 0.00024844931963470963 0 0 0 2.5247062216608812e-05 +3383 0.0012776284334651462 -0.0008123865484176078 0 0 0 -6.188500160563454e-06 +9399 0.0012917255994876011 0.0004079795274124385 0 0 0 2.3568462642833516e-05 +9414 0.0012405626276089433 0.0001111121152671214 0 0 0 3.1525813138274715e-06 +9423 0.0009624403012871811 0.0016469746456056738 0 0 0 -0.0003613483680983613 +6497 0.0013307059051188188 0.00020688291999201844 0 0 0 2.882827019002943e-05 +9450 0.0013275242749670336 0.0005131442965804808 0 0 0 2.1589543024946677e-05 +9493 0.0011873996241141404 -0.0002235188506513973 0 0 0 -1.8987381624566014e-05 +9519 0.0013060070033775835 -9.21164124653058e-05 0 0 0 0.0001592576834596514 +9525 0.0011913531095365361 -0.00030536819447836904 0 0 0 -2.7149714981823164e-05 +5841 0.0012604950213266984 0.0002971144629884547 0 0 0 8.67960716023656e-05 +9539 0.0010693618252823485 -0.0004223904583549711 0 0 0 0.00019021892117025057 +9541 0.00129175740590545 -0.0004153347709136892 0 0 0 -2.9499488970871646e-05 +3205 0.0012852290583657796 0.0004985067366720532 0 0 0 -8.611094337874616e-05 +9613 0.001289301305611274 -0.00011479198449573365 0 0 0 3.730849239136625e-05 +9623 0.0016408855973637747 -0.0001598637813507592 0 0 0 -0.0002378129842800624 +9642 0.0012388372074511587 -0.0002854395178746804 0 0 0 0.0002538233906294394 +9664 0.0012786387539307988 0.00046819713808329973 0 0 0 -4.8379241420205054e-05 +7106 0.0010559897513298703 -2.1667728804122298e-05 0 0 0 6.153642735952624e-05 +9745 0.0011636479667428631 -0.00022225830916814744 0 0 0 8.920505050706566e-05 +9816 0.0012294617794121618 -0.0007032375077873556 0 0 0 0.00010081711673911313 +9833 0.0010974705381863244 -0.0006151909899002321 0 0 0 -3.556873682134125e-05 +9906 0.00132647159486642 -0.0002760630202810337 0 0 0 0.0006794490068617789 +9911 0.0011865467371066703 -0.00013333297006926963 0 0 0 8.088325569264539e-05 +6020 0.001297866813292644 0.00023643827402556662 0 0 0 8.204341621989962e-06 +8347 0.0012124397303707802 0.00032250215882795167 0 0 0 0.00012557335201177213 +9492 0.0013682571343720808 0.00015698682373513085 0 0 0 3.2222279483249665e-05 +4904 0.001221937954317975 0.00030474171220660237 0 0 0 1.6236266115385812e-05 +2295 0.0012330939370292639 0.00017890342205112753 0 0 0 7.217687888944631e-06 +2717 0.0013572515191145021 0.00015212264398602293 0 0 0 -1.5885507075753546e-05 +8499 0.0012999434302208683 0.00016364616586878148 0 0 0 9.319090263822604e-05 +9562 0.001321939096272714 0.0001772211778440977 0 0 0 1.3677910766798098e-05 +5489 0.0012274951863296777 0.00023769522135747562 0 0 0 2.6633917751503574e-05 +7694 0.0013357006371191953 -0.0007380097995263351 0 0 0 2.462070189449401e-05 +352 0.0012451586906776994 0.000114778312406605 0 0 0 1.00739903736942e-05 +9216 0.001282862433700374 -0.0007987109559365633 0 0 0 8.977150131826315e-05 +173 0.0012200597880986672 0.0003842922201821535 0 0 0 3.3582623990344825e-06 +8888 0.0012606496474810163 0.00028526923780394233 0 0 0 -4.0643010899996695e-05 +986 0.0013041779485828183 0.00020382879760053575 0 0 0 4.545747335392112e-06 +7497 0.0013092033370836 0.00023112003077045462 0 0 0 -2.2729628471637743e-06 +3326 0.001162842588720632 7.750915839950912e-05 0 0 0 5.8690771507521554e-05 +2086 0.0012252630965630918 0.00031996208646901844 0 0 0 -6.406840689749334e-06 +9869 0.0013868800238037234 0.000560463414254051 0 0 0 0.00041900542048294454 +6272 0.001272057325547525 0.00029930764408792775 0 0 0 -1.1701278253446496e-05 +1005 0.0012915100617345346 0.00025163418975117195 0 0 0 4.152922852903525e-06 +3010 0.0012652338104852836 0.00028336212572381336 0 0 0 1.174459369076177e-05 +9457 0.0013056209633033912 0.00024373341647032014 0 0 0 5.932135345039591e-06 +5087 0.0013578742361548858 0.0001185671178456371 0 0 0 -5.469126365588773e-05 +904 0.0012394875575256338 0.00033526253279646755 0 0 0 1.1392862020629132e-05 +9838 0.0013468756590319286 0.0005800831422559473 0 0 0 -4.317577704465573e-05 +8426 0.0011357302522546533 0.00029573894868929274 0 0 0 -7.779184636523891e-05 +4184 0.0013195692490535684 0.0005755916869328276 0 0 0 0.00019369175507988958 +3154 0.0012990177887800664 -0.0008127641000413175 0 0 0 4.5067171011833443e-07 +6360 0.0010431828467940842 -0.0001942758206401797 0 0 0 0.0002080947873463905 +4777 0.0012559099106984521 0.00034902090862645746 0 0 0 -3.608469332571239e-05 +7589 0.005593544741295073 0.00035103808529560166 0 0 0 -0.0006404610000500208 +1169 0.0012720394248815783 0.0002474685895753144 0 0 0 -4.072098805551806e-06 +1679 0.0011549974896783262 0.00025986756792372654 0 0 0 -6.759561967280955e-07 +1525 0.0012294249171180514 0.0003712700889242523 0 0 0 -1.9074577263292935e-06 +1594 0.001363171283357589 -0.0004896793962265816 0 0 0 3.338434004189923e-05 +3640 0.0013978092013259375 0.0005174137409924242 0 0 0 5.676713831052998e-05 +9384 0.0012266491647322836 0.0003424820871317925 0 0 0 1.3671641769029587e-05 +498 0.0012676993816120774 0.0002733673452647256 0 0 0 -1.298717143539634e-06 +76 0.0013118326747909059 0.0002241289046013214 0 0 0 -7.340970485783364e-07 +2062 0.00128546953668544 0.0002488467297792391 0 0 0 9.09388074964586e-06 +1619 0.0012702790751017194 0.00026920142510412383 0 0 0 -2.0589118423145256e-06 +7449 0.0012293356078166382 -0.0011923352970970363 0 0 0 8.719352609954272e-05 +6759 0.001312601904987457 -0.000826350395996089 0 0 0 -5.8684594642202146e-05 +9077 0.0012492488321472267 -0.0009073799911850808 0 0 0 6.41167610979252e-05 +5593 0.0012997977977874877 0.00024176151269170393 0 0 0 2.34624439217646e-05 +3796 0.0012882140981652819 0.0005247316591914416 0 0 0 3.779485836348608e-05 +3082 0.0012663584551281205 0.0002933252149239391 0 0 0 8.879943696831391e-08 +7336 0.0019179014818396529 0.0003302883271855899 0 0 0 0.0007704481358253256 +7305 0.0012998156389717264 -0.00047452408897171626 0 0 0 3.061075949882653e-06 +3032 0.0012625369963659826 -0.00047313880745610004 0 0 0 1.2969684429414495e-05 +9960 0.0010128000287458986 -0.00016580928813331918 0 0 0 2.2103713513433922e-05 +5073 0.0010575527431641906 6.373379458170788e-05 0 0 0 3.684133454335359e-05 +4479 0.00105033935241813 8.824139999488603e-05 0 0 0 -0.00012555207912448514 +1301 0.0010345968149718537 2.5938574809823662e-05 0 0 0 2.229777716232541e-06 +5033 0.0012441429594681852 0.000564018064948942 0 0 0 -3.6622603293772404e-05 +2084 0.0008709438268428133 0.00026378964064975303 0 0 0 -9.132516924166913e-06 +340 0.0011040012589420627 0.000200636485194083 0 0 0 1.7687465330854814e-05 +42 0.0014939475128934584 -0.0006567152617282278 0 0 0 -1.0887952816557676e-05 +3443 0.0012781846925710581 -0.0012213243524845676 0 0 0 -0.00011062069614197392 +29 0.0010376734405521692 0.00016270794861946423 0 0 0 2.4986958800780495e-05 +124 0.0007876661329835461 -0.00021893858413032664 0 0 0 2.550203256702489e-05 +8155 0.0010308318807823492 6.2909008211624e-05 0 0 0 -1.6770388559811957e-05 +178 0.0007859241415557477 0.00027149150769938634 0 0 0 2.2918693981744043e-05 +6001 0.0010044773558097247 -0.000349133327600874 0 0 0 0.0003216560581920478 +9529 0.0009459256087261876 0.0002380995389432442 0 0 0 1.501016311589661e-05 +9676 0.0008599415896314288 -0.0002874708618375941 0 0 0 7.588389121609354e-05 +6903 0.000994679603758746 6.735909342750787e-05 0 0 0 4.6028722218985334e-05 +3036 0.0007779423881049814 0.00028193605014788513 0 0 0 -1.039088333080797e-05 +597 0.0005061222471473009 2.7755048545938575e-05 0 0 0 4.1213447815845956e-05 +606 0.0004992870639419561 4.9272209381569535e-05 0 0 0 4.0512056014316674e-05 +9061 0.0007531832930057949 -8.521280187763479e-05 0 0 0 0.00010421172990967642 +640 0.0007272014278339421 1.2585640299317974e-05 0 0 0 7.029045130279842e-05 +649 0.0008171368961297915 -0.000252492400401968 0 0 0 -4.907180200229399e-05 +691 0.0004602660350109387 0.0001389233182534818 0 0 0 3.457569796078683e-06 +941 0.0008447137845615849 -0.00013861147521409745 0 0 0 2.8169047439032155e-05 +961 0.0005010516898421427 4.840420719822119e-05 0 0 0 3.361043695312188e-06 +1024 0.0005121109549607337 0.00013467096483646749 0 0 0 3.170992023395494e-05 +1114 0.0004819480391492974 5.1733211598045896e-05 0 0 0 5.521653857867634e-05 +1182 0.0006274741903000937 -0.0001108889887763229 0 0 0 9.549435046847992e-05 +9383 0.00018584040873669515 0.0007444155697754647 0 0 0 0.0022195575475229966 +4558 0.0009808287824138505 -0.00037167854550951854 0 0 0 1.0271299027997693e-05 +1267 0.0009406380054890804 3.891009008281303e-05 0 0 0 -2.3578870575065616e-06 +3803 0.0009936518626722252 0.00027873050350624075 0 0 0 -7.207621391500196e-06 +1280 0.0006548066796678862 0.00026349742479464983 0 0 0 2.604886382788193e-05 +1419 0.0004430195045474951 0.00011090704471990584 0 0 0 6.0233433263102625e-05 +8261 0.001024392301043696 -0.0003645156578120416 0 0 0 -0.00017448510143335604 +1552 0.0004659436185465647 7.252250325715328e-06 0 0 0 6.710611315623033e-05 +7813 0.0010076595001672758 4.897107086797355e-05 0 0 0 3.991203245444025e-05 +1602 0.0006764277704720799 0.0002773016697220117 0 0 0 -3.3619559695048233e-05 +1611 0.0004480104224878936 -7.139192030116593e-05 0 0 0 0.0001331567225138825 +7252 0.0007146253985525804 0.00022047101584934278 0 0 0 7.837795943069728e-05 +1810 0.0007509827046710851 0.00026678844740107117 0 0 0 5.1877858672419286e-05 +1859 0.0004011628800171304 8.341331323778775e-05 0 0 0 -2.9624334839529936e-05 +2079 0.0008664020203445044 0.0003377737061611221 0 0 0 1.6394258140496798e-05 +375 0.0009416030808416699 0.0003155589855714663 0 0 0 9.413707767045161e-06 +5345 0.0003858757903371436 0.00014858481365911336 0 0 0 9.513637190748313e-05 +2117 0.0006898799523882661 0.00016673732997927635 0 0 0 9.482278350940529e-05 +2170 0.000344797543501041 0.0001785619781912775 0 0 0 -1.5133601774000793e-06 +2304 0.0007104605070766772 4.985212654915281e-05 0 0 0 2.0581485684209408e-05 +2354 0.0006039509250368003 0.0001605367743418846 0 0 0 3.29577705048016e-05 +2355 0.0006287563997716237 1.110864078357173e-05 0 0 0 0.00024226725848137544 +2372 0.0006341811940576664 2.4328246569060384e-05 0 0 0 -6.719476736990124e-06 +2451 0.0004949889323485133 4.8823113038380966e-05 0 0 0 -4.234861114127004e-05 +5344 0.0009032638102740418 8.944911773283364e-06 0 0 0 -1.839761643725082e-05 +2678 0.0005520691871076958 2.475166525856981e-05 0 0 0 5.2461604156300466e-05 +2694 0.0005766994320693126 4.737187311424381e-05 0 0 0 2.7741073268247607e-05 +6992 0.001021123678526809 7.608221415230636e-05 0 0 0 -8.74843031823782e-05 +2860 0.0003777992609076747 9.597626505362169e-05 0 0 0 0.00010419739552937677 +2869 0.0006619902321466138 6.996347609754365e-05 0 0 0 0.00015063373320797728 +2923 0.0009516231016174862 0.0002864461379114882 0 0 0 2.412679053464981e-05 +3031 0.0007644355542224119 -0.00018895033076155878 0 0 0 -0.00011185672429872378 +9984 0.0009098778323887371 5.13060794274342e-05 0 0 0 1.254893625167081e-05 +3055 0.0005279528932067904 -1.4322752979452852e-05 0 0 0 -1.949969143038799e-06 +3203 0.0009875161251493593 -0.0002998717148285144 0 0 0 5.149871829368715e-05 +3250 0.000707449518490597 1.4601972906600646e-05 0 0 0 6.399012410228097e-05 +3251 0.0004678550099844924 5.615092150729902e-05 0 0 0 7.344489042941901e-05 +3480 0.0007283214923072409 0.00031319110955830025 0 0 0 7.808975339867837e-06 +5104 0.0008167939016342353 0.000312888077123411 0 0 0 2.0472457992998577e-05 +3381 0.0009453437393964198 2.7466924511516338e-05 0 0 0 2.6775778465860496e-05 +3848 0.0008013184006666973 4.5882898487969916e-05 0 0 0 3.529282607029937e-05 +3442 0.00044386319754840273 0.0001045184777976696 0 0 0 -7.917340771894791e-06 +8428 0.000995809118409216 -0.0003229103876198631 0 0 0 0.00014588209221768272 +303 0.0009302912064422558 -6.905467017495487e-05 0 0 0 3.637427258857809e-05 +3666 0.0008624611616801775 -3.7887277825911435e-06 0 0 0 2.793769979227301e-05 +3694 0.0009757020827951869 0.0002826786746751443 0 0 0 -1.6312935271744643e-05 +3740 0.000361697663696346 8.145183307496825e-05 0 0 0 9.82653102656808e-05 +6021 0.0003913858245068695 0.0001255744894172883 0 0 0 9.915493858318657e-05 +3927 0.0007676328933550854 -0.00014338405899779833 0 0 0 -2.1780766455802422e-05 +3986 0.0005457924308341591 0.00017595440102612691 0 0 0 5.227586224503826e-05 +4022 0.0005526506882216902 0.00023436295155388536 0 0 0 5.248877255023421e-05 +9142 0.0005653210107050118 7.990653520281434e-05 0 0 0 -7.64161616438763e-05 +4147 0.0005501510042284981 0.00011632303752411919 0 0 0 7.182970455589945e-05 +4153 0.0009703371416642531 -0.00031160054947131294 0 0 0 4.915380620879344e-05 +4294 0.0009824399343679934 -0.0002948890694068986 0 0 0 1.7732570606950032e-05 +858 0.0010429616692301034 3.786655789778619e-05 0 0 0 3.1430885879256266e-05 +4502 0.0008945233978131829 5.580598346125137e-05 0 0 0 5.212697027077369e-05 +4516 0.0005078486243470066 2.41767829201373e-05 0 0 0 -6.307394876665721e-05 +1157 0.000470594651821371 0.00017079829604784333 0 0 0 -2.2425220185268157e-06 +9267 0.0008404176065150347 -0.0001660775556576337 0 0 0 0.00013831988291420431 +4588 0.00042629227444195326 -7.821820885590192e-06 0 0 0 7.687577099564748e-05 +4718 0.0007649757679122045 -0.00018984646593430557 0 0 0 0.00018874187990940017 +9691 0.0006117897649176302 -1.96738084017345e-05 0 0 0 0.0001024983625181846 +8680 0.0008885693812855523 0.00031490551490654344 0 0 0 1.5396739015717683e-05 +4911 0.0003246406473960243 9.373353486690466e-05 0 0 0 9.677440012404804e-05 +5028 0.0006889138795543836 -4.227588853556437e-06 0 0 0 3.738618352919118e-05 +2350 0.00101567005069546 0.0002772535736486441 0 0 0 -1.870531196629395e-05 +5114 0.0004148193430820321 -3.52546201222051e-07 0 0 0 8.852021395794068e-05 +6455 0.0009264684631186576 -0.0001539526829926107 0 0 0 4.1459377189176476e-05 +5311 0.0008071588571329607 0.00027645278130244706 0 0 0 -2.1070230547069963e-05 +5341 0.0007775536768004268 -0.00019351938246506156 0 0 0 -1.792168448773734e-05 +5417 0.000734621006756948 0.000220037698867048 0 0 0 0.00013451293541935487 +5439 0.000880551110017882 1.2871140477215177e-05 0 0 0 5.1591309036314606e-05 +7884 0.0009643718766996193 3.1106236451268873e-05 0 0 0 0.00012972908969308171 +2141 0.0008040224361101612 -6.668947866868737e-05 0 0 0 3.200486535997411e-05 +5563 0.00040772019652107874 0.000165768370995443 0 0 0 2.8547742435749387e-05 +5577 0.0008588084889106977 -0.00030568111718377297 0 0 0 5.2643096326019654e-05 +5594 0.0004983802359864938 -5.307207264439952e-06 0 0 0 2.8563950562434616e-06 +5629 0.0009871619186876599 -0.00040040499642098276 0 0 0 0.00012248732067346872 +5639 0.0006670560171810985 -0.00010982852961015347 0 0 0 -5.577671589143836e-05 +5644 0.0003303609341148014 0.00010217806884789377 0 0 0 0.00014280483864990824 +7989 0.0004353930008169901 0.00016080563387777314 0 0 0 -4.073617243850976e-05 +5745 0.0006760034387941312 -3.475499022681694e-05 0 0 0 0.00011666252065618901 +5767 0.0003323481056751904 0.00010673016142952599 0 0 0 9.983735030492308e-05 +5798 0.0007825015413994308 -0.0002032382926690979 0 0 0 0.00014719023828293232 +5807 0.00041098821197519514 0.00015329663753017023 0 0 0 5.2955467266039585e-05 +5887 0.0008205273657485188 -5.846928606258092e-05 0 0 0 9.813359791246153e-07 +5900 0.0005821471950311184 2.1652312366750398e-06 0 0 0 7.724675783499282e-05 +5973 -0.0010126626203679485 0.00029620230205783753 0 0 0 -0.0004908687322913499 +6287 0.0010331990915006693 8.162683325950653e-05 0 0 0 8.226068947838567e-05 +1058 0.0008968339078164678 5.855473670679323e-05 0 0 0 9.057075274290632e-06 +631 0.00045693156751427504 0.00022365376160622216 0 0 0 4.202234010693711e-05 +9190 0.0008358472708950449 -0.0001826504192399993 0 0 0 7.396821943093857e-05 +6059 0.0006132736519709885 -2.630965167993081e-05 0 0 0 0.00042392223081741626 +6279 0.00034315017226181627 7.992398771597676e-05 0 0 0 0.00013726998735887245 +6292 0.0007751990051419283 3.9650971968927235e-06 0 0 0 2.3147073217266736e-05 +6303 0.0006172013371308887 -3.500189222597906e-05 0 0 0 4.165721740375752e-05 +3238 0.0008981155861027738 0.0003157762529105073 0 0 0 2.9845992643947288e-05 +6385 0.0006805838518592144 0.00027889950437898713 0 0 0 3.965930723462405e-05 +6387 0.0005423571862966062 0.00017252046770738864 0 0 0 8.16170441526931e-05 +4146 0.0007038047941745669 0.000279932112230732 0 0 0 1.6064921982616474e-05 +8183 0.0009971083419397398 -1.631257810764527e-05 0 0 0 3.0458404608454084e-05 +6515 0.0006046701165465968 7.2603560233924196e-06 0 0 0 -0.0004011732553125622 +6553 0.00047137552831955884 -0.0002379148981432159 0 0 0 -1.2691740750404062e-05 +6577 0.0005465251604965317 -1.9644551146715307e-06 0 0 0 2.268172822814871e-06 +6579 0.000928940295121305 5.796213472765501e-05 0 0 0 -4.753674200253574e-06 +6624 0.00046503355096476703 3.723772125066817e-05 0 0 0 0.00022403475873423412 +6798 0.0008019930094702755 0.0002975029992494961 0 0 0 -7.701679057659033e-07 +9490 0.0006793406691840002 -1.2076413391283234e-05 0 0 0 -0.00027003859568117307 +7082 0.0003517756917186123 9.505052731682307e-05 0 0 0 7.206386538520613e-05 +5061 0.000543012372713222 0.000349820265715598 0 0 0 1.1867403037801792e-05 +7092 0.000516406800496782 0.00016635960067935883 0 0 0 9.826172321491405e-05 +7125 0.0007781676205495259 0.000311969755764869 0 0 0 7.857662524558909e-07 +9448 0.0009465259259946846 0.0003037591052034489 0 0 0 5.2040257107388585e-08 +3734 0.0009286178874138419 5.866949743526372e-05 0 0 0 1.4730299730032941e-05 +7405 0.001966502892528989 0.001891132222928687 0 0 0 0.002282647560457994 +7437 0.0003556455408011986 -2.880024280838472e-05 0 0 0 0.0004000769316210187 +7448 0.0007200475973080117 -1.7172398010164697e-05 0 0 0 9.015932117883195e-06 +7514 0.0008069517954406402 0.00022813080391917204 0 0 0 -3.795927644240145e-05 +6207 0.0010021302653091895 8.170884737393884e-05 0 0 0 4.1486016925142754e-05 +7683 0.0006191406784175795 0.0002833580167376553 0 0 0 0.0001163689878617226 +7690 0.00046027885070512467 2.7931856457638344e-05 0 0 0 0.00021392840022497412 +7761 0.0009489280659139564 4.526342236538278e-05 0 0 0 2.1950036754144604e-05 +7889 0.0008568981958048545 2.7779909131613636e-05 0 0 0 -1.0440882677879606e-05 +7916 0.0005769439408601728 4.811720644224307e-05 0 0 0 -0.00019143061616354773 +7971 0.000823534684947728 3.552286572741734e-05 0 0 0 6.782254794448674e-05 +7978 0.0006437701696485305 -5.7058428776527584e-05 0 0 0 0.00013661456403927507 +3356 0.0007863358979221107 0.00030567185293536365 0 0 0 -1.9672399916511315e-05 +8014 0.0003574923866851249 5.1625650764212416e-05 0 0 0 0.00018921462073691328 +8103 0.0005310242296153166 5.342844941138221e-06 0 0 0 -4.861147994588775e-05 +8189 0.0006533002182885644 0.00027336793255426954 0 0 0 6.0943400767838975e-05 +8911 0.00034196157044848126 7.446150368400731e-05 0 0 0 -0.00021878966898633456 +8255 0.0006647699989236654 0.00020780003884258291 0 0 0 6.717836444465364e-05 +8259 0.0005069461353678201 3.808055104856674e-05 0 0 0 0.00015998488278946022 +9033 0.00033702029111946897 3.0182753373999026e-05 0 0 0 0.00015660586644008156 +8380 0.0005078313592591118 0.00022840347599931978 0 0 0 -2.9463853137135575e-05 +8416 0.0006208396575341437 5.895078818550262e-05 0 0 0 6.951095456236122e-05 +9995 0.0005604158750684268 -1.6987590940527132e-05 0 0 0 4.036733606940979e-05 +5461 0.0009878706487886253 0.00027954734131950754 0 0 0 6.028769158834659e-05 +8484 0.0008878610974230942 -0.00024865935990653576 0 0 0 0.00012114589777207937 +8496 0.00047943682826391435 0.0001154681118738849 0 0 0 -1.2049412833292812e-05 +7302 0.0010280061076797554 -0.00043224882806317785 0 0 0 -8.539419714835956e-05 +8650 0.0005017548354510204 6.330233260307396e-05 0 0 0 -0.00021277027822257867 +8660 0.00046606452297934606 8.370880252167682e-05 0 0 0 6.666068109611629e-05 +8661 0.000813282776106578 -0.0002751944317990054 0 0 0 2.764054696221907e-05 +8838 0.0009830757793585338 5.02530740405363e-05 0 0 0 -4.21106926229126e-05 +7074 0.0008524231160298284 0.0003170335725504367 0 0 0 1.7603470220186272e-05 +7121 0.00035514330464115354 0.00022282616640756557 0 0 0 -7.1729340672904954e-06 +951 0.00041130253188252647 0.00016503149708329876 0 0 0 4.7909703897327705e-05 +1 0.0001189167942475993 -1.4383796177034472e-05 0 0 0 1.8614641077594802e-07 +8969 -0.00010887937194251445 0.0007121583282525824 0 0 0 -5.7163551834855184e-05 +40 7.389317530761648e-05 0.0005834389773873179 0 0 0 -5.585522536320873e-06 +56 -4.1455899783032474e-05 0.0007517130240574028 0 0 0 -8.870645154206279e-06 +62 0.00015439446271872697 0.0007389592060520039 0 0 0 2.628880284257564e-05 +9765 -9.79087575268932e-05 -0.00011321997596878965 0 0 0 0.0001921709600175071 +104 1.5172275124666011e-06 0.0001275703716719904 0 0 0 1.3182154894411444e-06 +174 0.0003943899218709551 -3.620036659094156e-05 0 0 0 -2.6442708472932933e-05 +2853 0.00038284269324739324 0.00047257914659638937 0 0 0 -1.3424213540601928e-05 +218 0.0002509117121243725 0.00027766652639783443 0 0 0 2.4307789212637563e-05 +2346 0.00031760336164768057 0.0008012775994078914 0 0 0 -6.797070679169795e-05 +252 -0.00016705640345261868 -0.0002695550898847612 0 0 0 -1.6012427973003785e-05 +260 0.000387984223729887 1.199441098682622e-05 0 0 0 -2.6998019037151207e-05 +266 1.0493455365259195e-05 0.000590294620345281 0 0 0 4.9928529095551606e-05 +297 -0.00024008393593969262 0.0005684521206678758 0 0 0 -1.85738701434989e-06 +329 0.00027020138710867527 0.0001228649252722185 0 0 0 1.664753106364208e-06 +383 -7.451040735180962e-05 -0.0005949183308072711 0 0 0 2.9190657073593154e-05 +391 8.933818748084437e-05 0.0006539427393645677 0 0 0 2.7080982590531392e-05 +448 0.0003094259059580683 3.596571895718028e-05 0 0 0 3.112853970016944e-05 +459 -4.6044681690392165e-05 0.00014748383243805505 0 0 0 2.2828836976028692e-05 +466 -0.00013395956340338106 0.0005381101196587013 0 0 0 -4.2153850811728166e-05 +472 0.00015424050279924632 0.00039472030490577217 0 0 0 1.2575620615724758e-05 +486 0.00023387589295782452 -0.0001993771553664067 0 0 0 7.824270535156649e-05 +561 -9.033470309250852e-05 0.0006240373150107361 0 0 0 -3.5139546575008433e-06 +564 7.589418388891128e-05 0.0004685025805352672 0 0 0 -2.4534866218374597e-06 +570 -0.00026970003342511955 0.000539824942242308 0 0 0 -2.3154128197337056e-05 +571 -0.00015898529231174222 0.00039875229422087097 0 0 0 6.397019783986336e-05 +585 -1.49384874932462e-05 -0.0005143825583113789 0 0 0 1.2723830159269633e-05 +601 0.00019690730131639964 5.3324234246193006e-05 0 0 0 1.677618259935373e-05 +4510 -0.0001409030447700297 0.0006029434472937471 0 0 0 -2.410271532371645e-05 +634 0.00047383874170707084 -2.519091277865208e-05 0 0 0 2.864753114461843e-05 +681 -9.149002647103541e-05 0.0006818199519881926 0 0 0 2.8499540100755575e-06 +740 0.00011545055154731041 -0.0003877199460551303 0 0 0 7.997615832633153e-05 +741 -6.391305763351379e-05 -0.0004768017070587822 0 0 0 3.2721600319220394e-05 +771 6.699196709699603e-05 0.00018363841512397257 0 0 0 5.340909484461318e-06 +786 -0.00016161715015769392 0.0006187976302979008 0 0 0 -1.8710249242014875e-06 +789 -0.00017175099156232015 0.0005318995594875439 0 0 0 -3.3379957502964476e-05 +1080 -0.0001728947705986477 -0.0006409843936810688 0 0 0 5.994627822984856e-06 +800 0.00018988036415855137 1.1419597027617658e-05 0 0 0 6.568300952882303e-05 +802 -0.000266019562763839 0.0004084372850360088 0 0 0 -2.339752498367815e-05 +9646 6.26620277429977e-05 -0.00017158096693393687 0 0 0 0.00020367122116045792 +841 2.146862555369755e-05 0.0004949228204846612 0 0 0 2.553561628010217e-06 +908 -3.7839933451272626e-05 0.0006635467124171202 0 0 0 -3.158851133284198e-05 +919 -6.346484097541051e-05 -0.0002460363735141607 0 0 0 0.0001022099395928555 +920 -0.00015768402720956704 0.00014911439896311376 0 0 0 7.008064485615295e-05 +1000 -0.00031319372281461607 0.0005000278536047671 0 0 0 -8.33913510165259e-06 +1028 0.00019976237371319142 0.000508839791666217 0 0 0 -9.643079209071037e-06 +1044 0.0001457050928210565 -5.623031412887557e-06 0 0 0 6.464718328521515e-05 +1061 -0.0001519926626643959 0.0007180330331491337 0 0 0 -6.973806847459896e-06 +956 0.0005105724633288524 0.0005977942079608933 0 0 0 -6.070760546089838e-05 +1111 -0.00013936350124565334 0.0006195485652527742 0 0 0 -8.800941475215732e-06 +1128 7.188173725477551e-05 0.0005173613279684967 0 0 0 1.1269186038109214e-05 +4036 -6.61600608223373e-05 0.0006656390586341831 0 0 0 1.3142462305892065e-05 +823 -2.0766450524265278e-05 0.0006433061351762156 0 0 0 -1.5169841663424077e-05 +1163 0.0001388394923944672 0.00030529049099548917 0 0 0 4.1827660672167846e-07 +2662 -8.546349697848992e-07 0.0007018052424474831 0 0 0 -1.9119683853182043e-05 +1208 -0.00011996231567890152 0.0006222032639719839 0 0 0 -2.968753347769622e-05 +1899 -7.016864348683895e-05 -0.0005863060769616139 0 0 0 7.472801269651292e-05 +1259 -0.000180482775003402 -0.0002924339918238425 0 0 0 2.975665420912559e-05 +1260 5.420275559666548e-06 0.0004235906897997907 0 0 0 3.1087204867385794e-05 +9639 -4.68474898316993e-05 0.0006780532132365217 0 0 0 -1.982380967898536e-05 +1273 -0.00019157385641458544 0.0005593642521759085 0 0 0 -1.217706146789882e-05 +1284 0.00017428890326063714 0.0002203759804696288 0 0 0 -3.8458990981600724e-05 +1287 0.00016125154444396653 0.0001597484169527947 0 0 0 5.361241858438136e-06 +8683 0.0003344783408405869 1.0428369599808808e-05 0 0 0 -0.00010346814315543955 +9656 5.104450001528315e-05 -0.0003003257492933922 0 0 0 -0.00018656245515010603 +1385 0.0004057835841338912 -0.00024287928509937552 0 0 0 -4.497400265719353e-05 +1403 0.0002505081700748969 -6.885278432003945e-05 0 0 0 -2.224726812758733e-05 +1408 0.00012646479241960415 -2.8098717666288784e-05 0 0 0 0.00011197778376427915 +1416 1.3279812074663775e-05 0.0007207788219981567 0 0 0 -4.769141861418218e-05 +1426 -0.00032959193002876365 0.00024157670904755504 0 0 0 1.2288551118986981e-05 +1468 -9.439422009906922e-05 0.0006024409365160064 0 0 0 -1.0155927918721716e-05 +1470 0.0002070338342141071 0.0005455395869248766 0 0 0 -2.2954963507991955e-06 +1480 -8.42264153157869e-05 0.0006986469445944118 0 0 0 -3.9487587640580895e-07 +1492 0.0002028231109602314 7.3533577505250326e-06 0 0 0 -0.00014945976103850395 +1536 7.749155969159418e-05 0.00020150635683961494 0 0 0 4.3267206575677216e-05 +1539 -0.0001270729642282626 0.0006417530842813044 0 0 0 -2.808777585601763e-05 +1559 2.533108563318718e-05 0.0005531543610694396 0 0 0 5.930123325218903e-06 +1566 -2.62654712748823e-06 0.0007385403503678452 0 0 0 2.1606740487234304e-05 +1583 -0.00017447803350302012 0.0005892902445918978 0 0 0 -2.2279008378819053e-05 +9497 -0.002788529201063627 -0.0008145687075862057 0 0 0 0.0013229039302866186 +1667 0.00022434683405368703 0.0004570265841718679 0 0 0 0.00015959874948726167 +1681 0.0004104560500921823 -1.0876369338536707e-05 0 0 0 -5.283181330338017e-05 +4168 0.00029580628588741007 -4.4372344965801475e-06 0 0 0 8.2465888179171e-05 +9515 0.0001677054835429262 0.00025947181487953245 0 0 0 2.415106533847129e-05 +9700 8.790605494219762e-05 -0.00016098665907910518 0 0 0 0.00045053673530853023 +9887 0.001598515196121568 -0.00041787716105030404 0 0 0 0.001393341836847954 +1759 -0.00026370418870016196 0.0003759092331019061 0 0 0 7.103921792509836e-05 +1786 0.00010667817390164642 0.00020070483788326232 0 0 0 -1.7345951953106384e-05 +1824 0.00013411468902570364 0.0006157399575787328 0 0 0 -3.6926819767414654e-05 +1849 -0.00022036291189485484 0.0004091129970672587 0 0 0 -2.8231933454728937e-05 +1873 0.00015543133277483407 0.0005527043820539794 0 0 0 -1.5474923930854161e-06 +1875 -0.0003339835439534603 0.00019437166782694724 0 0 0 0.00011010743706007756 +1918 -1.1770098327636768e-05 0.0002629208468793516 0 0 0 9.398029487073127e-05 +1927 3.439835430872204e-05 0.0005329775000341355 0 0 0 1.086510400650526e-05 +1969 1.7233837992877874e-05 0.000573419371521405 0 0 0 -2.169263613066245e-05 +1977 0.0003758464942475092 6.6747608054830375e-06 0 0 0 -1.1443001925823364e-05 +2018 -0.00025653029839890475 0.0005151782721773081 0 0 0 -1.0549237718910147e-05 +4037 5.9085274670919345e-05 0.0006697302607338916 0 0 0 -1.8937321871922217e-05 +5541 -5.9588860841088455e-05 -0.0007137420280968676 0 0 0 -2.219292304175447e-05 +2097 -0.00014641681789561163 -0.00013185518123944332 0 0 0 0.00011995387852386835 +2120 -0.0002703463113736227 0.0005290255498072767 0 0 0 -4.9307027787437343e-05 +2122 -7.505537750228436e-06 8.503066710342426e-05 0 0 0 3.0416426571951605e-05 +2241 0.00028643392162617766 0.0002746840357202928 0 0 0 5.563915970348024e-05 +2245 -0.0004344197950380007 0.0004231497964912529 0 0 0 -1.3004898093015552e-05 +2262 -9.173713408617018e-05 0.0006360348927845256 0 0 0 -1.8487590386337963e-05 +2300 -0.00015037569760699066 1.8000357804778075e-05 0 0 0 0.00036225062077540444 +1538 -6.897785720267686e-05 -0.0006341472509726817 0 0 0 1.968730555283533e-06 +4723 0.0003460042068378191 0.0004777132337228433 0 0 0 -7.770226854688572e-05 +2364 0.0001976028152339335 0.00042336081070976577 0 0 0 -7.468773253814986e-05 +2373 8.135954751750436e-05 0.0007260902061090773 0 0 0 -0.00010836200375506248 +4980 0.0003579247262123991 0.0005133989037905142 0 0 0 -0.00014054895778900498 +2415 0.0002008856747441699 0.0005472857680927684 0 0 0 -9.678280728595757e-07 +2416 7.788058514186665e-05 3.007886786878799e-05 0 0 0 0.0003337213417057091 +6820 0.0002532613253784725 1.5285033275773037e-05 0 0 0 2.4193256032890673e-05 +2466 -0.0001020690508676818 0.0006337267317923889 0 0 0 1.7097491791712592e-06 +7871 -0.00024185739544531224 0.00039950441623853107 0 0 0 4.290058980665474e-05 +2533 0.00038062824627426453 -0.00010452794009263439 0 0 0 4.765068093240893e-05 +2581 -0.0004364072138886477 0.0003455323634379229 0 0 0 9.421709944087593e-05 +2584 -0.00019638907654027026 0.0005701369119974164 0 0 0 2.254324128736614e-05 +8943 0.00011213825289685671 0.0007439704579148109 0 0 0 -3.708077014562764e-05 +2607 0.00017902600939815184 0.0006643451869186249 0 0 0 5.099822258378885e-05 +2633 4.549491529212363e-05 0.0005733917999466668 0 0 0 1.422331031253271e-05 +2700 0.00017204435378009888 5.967990129910475e-05 0 0 0 0.00011236998115695399 +2703 -3.7513930521206697e-05 0.0007118377028207187 0 0 0 4.447100858735986e-05 +7953 5.173717109005303e-05 -0.0001455990610095346 0 0 0 0.0005243364250863341 +2750 7.853881808444731e-05 -0.0002518099751398353 0 0 0 -5.578507755878241e-05 +9787 -0.00010873383015343104 0.0006779983788262051 0 0 0 -4.503882365022737e-05 +2785 1.0722091327040487e-05 0.0006027411062257416 0 0 0 8.566037169841073e-05 +2802 0.0004008656921441373 -2.809475560213133e-05 0 0 0 -3.120380523536601e-05 +9809 0.00012445405853169178 0.0005939718744374968 0 0 0 -3.6511355052113086e-05 +2871 0.00019734555344257714 0.00015625023353700492 0 0 0 -1.0983258008934004e-05 +2928 0.00013711844415812937 -0.00042752104242424173 0 0 0 0.0001241537338538104 +2951 -0.00035564883996878276 0.0004609039575134308 0 0 0 -2.5355131072839933e-05 +2984 -0.0002605824961519656 -0.0005461413492272423 0 0 0 -4.7180018917994e-05 +8156 0.0003541402541185091 0.00048632281543308696 0 0 0 -5.239844694109586e-05 +3018 0.00021307051177528954 0.00030674081408879974 0 0 0 -7.715283804622017e-05 +3120 0.00012152907667587165 -1.2580495177889247e-05 0 0 0 -0.00011864330852916533 +3136 -6.894928240063652e-05 -0.0003176352204395433 0 0 0 0.0002878978867219115 +3144 0.0001393209698623394 -0.0004017033551109376 0 0 0 -0.0001304627048312577 +3158 -3.6222837842871125e-05 0.00015766590802823103 0 0 0 8.564800851880107e-05 +3221 0.00022676648274479394 -2.2732004256601302e-05 0 0 0 -6.578341600386259e-05 +1861 -0.00018588605660158815 0.0005959027670149109 0 0 0 -2.2273603119827533e-05 +3348 -0.00040464734475660706 0.00046727303921634164 0 0 0 -2.6475172546017885e-05 +3358 0.0003193346465689003 2.6177915785691702e-05 0 0 0 7.768485093651133e-06 +3373 5.003511418712432e-05 -0.0004202847556052186 0 0 0 2.383897039862506e-05 +3422 5.640090315646546e-05 0.0004156778893390814 0 0 0 9.082620629376754e-05 +3541 0.000268847073408177 -1.9149228036551606e-05 0 0 0 -5.659213833401642e-05 +3554 0.0001399842307064042 0.0007805463718813009 0 0 0 1.3508028198885621e-05 +3557 -0.000130722905155215 0.0006568789971673385 0 0 0 -2.0566294516071693e-05 +3570 0.00013005123838271952 0.00024313760849471792 0 0 0 -7.891039986734311e-06 +3593 0.0001977460862420245 -1.6771581988520462e-05 0 0 0 -2.7821534650384014e-05 +3598 -0.00035583858678073623 0.0004675715556563532 0 0 0 -1.810464972417278e-05 +3624 -0.00035604279697350183 0.0004026210259346759 0 0 0 -6.338350036729934e-05 +3639 0.00016261729013331762 -2.9898005609483236e-05 0 0 0 0.00013369333575367415 +3681 -3.970486830718165e-05 0.0007315187689607412 0 0 0 -1.5366091073676085e-05 +3705 0.00024827456722048764 0.00012586756281090283 0 0 0 4.1826489209629426e-05 +3724 0.0002850152341430283 5.155280504809659e-05 0 0 0 0.00014304276079623563 +3727 0.00018472546404581358 8.570450747500782e-05 0 0 0 0.00011653268094096639 +3729 -3.9716089745812365e-06 0.0002197536696058349 0 0 0 -6.786747644039761e-05 +3746 0.00016042740551104162 0.00036039195592765626 0 0 0 2.5556473873479e-05 +3792 -3.3938846449444166e-05 -0.0002563649068348887 0 0 0 0.00011219517492016819 +3830 -2.1973522199186105e-05 0.0005872466873999268 0 0 0 7.31781959858665e-05 +3849 0.0002899904444537052 -0.00016216801153642868 0 0 0 0.00012080105546933648 +3895 -3.7184468099052386e-06 0.0006909877934194028 0 0 0 -8.70290368178069e-06 +3910 3.4268317323951415e-05 4.34084132203705e-05 0 0 0 -1.9634136776474033e-05 +3945 0.00013553736590896532 0.0002577300596140759 0 0 0 -2.9427509257872584e-05 +9880 0.0002759423823110729 0.0005102455058757511 0 0 0 -3.886391478133238e-05 +2546 -8.363370680267106e-05 -0.0006998000551934919 0 0 0 8.396830105909292e-06 +3958 -0.0001736515631343501 -0.0004622414501313812 0 0 0 -0.00011525273056101705 +3961 0.00015154290264693344 0.0003543173132972739 0 0 0 -2.6844458295630175e-06 +8436 0.000269019841969289 0.0006680949136067469 0 0 0 0.00010258815648007974 +3981 -8.594513367537528e-05 -0.0001511722542496768 0 0 0 5.4078070860187434e-05 +4013 0.00010009616071977546 0.000262929501666896 0 0 0 4.058637257531695e-05 +4015 -7.055376050241283e-05 -0.00022475031428834151 0 0 0 0.00014225891350836046 +4018 -0.0003932110722879713 0.0004091379059945839 0 0 0 5.354783579397356e-06 +4077 0.00012834763678850608 0.0005941610032812886 0 0 0 4.342716332938044e-05 +4089 0.0004236050913346712 0.00010794512398825559 0 0 0 -0.00040984261592317997 +4104 -0.00029774162681949824 -0.0008332380470870328 0 0 0 -0.00034723235134194214 +4130 -0.00012432447096903613 0.0006816559137260852 0 0 0 -2.1322301517999377e-05 +4179 -0.00010361706334195322 -0.0004996518918472817 0 0 0 2.8839670505389034e-05 +4202 0.00025710087776371584 -2.5068884361843286e-05 0 0 0 -5.2302754913115704e-05 +4219 -0.00011309068862835717 0.000622756729978177 0 0 0 -1.0147819913570402e-05 +9055 -0.0001359986377029971 0.0006430798615873858 0 0 0 -5.228257121715627e-05 +4239 0.00021493785156562198 0.00018788481932891237 0 0 0 0.00024459312415763814 +2883 0.0003191631218521326 0.0005078152636041454 0 0 0 -6.870042354777189e-05 +1266 3.389870100707432e-05 -0.0005481928967821313 0 0 0 -1.980071266046196e-07 +4284 0.00022746493174028579 0.00015837979654543022 0 0 0 4.3874572211830145e-05 +4287 0.00021731624400881064 0.0004932173197991943 0 0 0 -7.749151165892173e-06 +4297 6.8101152253459154e-06 0.0002001041029453461 0 0 0 2.3679047657627348e-05 +4391 3.972648475654859e-05 0.00045393089580757093 0 0 0 -7.077588357157705e-05 +4410 0.00023715962677806448 0.0004680815416172319 0 0 0 1.1585558878078175e-05 +4456 -2.069702039795405e-05 0.0007063885065409981 0 0 0 -3.657715837244762e-05 +4478 -0.00010767569199194289 -8.68972448404728e-05 0 0 0 -9.044363252701703e-05 +3302 7.573317253113341e-05 -0.0003492917332638267 0 0 0 -5.262342067759774e-05 +4492 -0.000286302968083527 0.00025509164186531355 0 0 0 0.0003541916238709807 +4498 0.00014529952797832338 -0.0005087994169573717 0 0 0 0.00016964118298783194 +4519 0.00028525555419425173 -0.00023870753036224387 0 0 0 -0.00015619011815230509 +4551 2.4583463611055733e-05 0.0005506527400260471 0 0 0 -3.562142588926917e-05 +4571 6.447263185237395e-05 0.0006150616358280558 0 0 0 -2.2816686790393744e-05 +4584 -0.0002056645513983291 0.0001092885865840827 0 0 0 0.0001370051800070406 +4602 0.0001683650427225969 0.00023713481173001432 0 0 0 -6.97861583434472e-05 +4627 5.395772297507366e-05 0.0007252759312425984 0 0 0 -0.00017561299576187675 +4646 -0.0001852314956309336 0.0005587915151387811 0 0 0 -5.221830460992173e-05 +6775 -3.8922204017670485e-05 0.000659012254680618 0 0 0 1.4532896788417432e-05 +4697 -0.00014707251028262173 0.000577477520979349 0 0 0 -7.226698298506669e-05 +4705 0.0003969094426876245 -8.183896314874009e-06 0 0 0 5.101828503973683e-05 +4707 9.810273071027879e-05 0.00018862486140972903 0 0 0 -4.67772112584536e-05 +4721 2.7102460918247053e-05 -0.000447112235768134 0 0 0 0.00013903854582448247 +4738 8.344455653166905e-05 0.0006789160697132058 0 0 0 -1.2232060646067547e-05 +4768 -0.00021557875199483745 4.692173945450895e-05 0 0 0 0.0001511090684004018 +9815 -0.0002763676880599885 0.0005542536348858548 0 0 0 -1.2073880853169076e-05 +9927 0.0003758099313123951 -0.00035347605415313567 0 0 0 -0.0003909586756673607 +4794 0.00012085563990782862 0.0005953144894466327 0 0 0 -6.142567836139841e-05 +4804 -0.00015242156812998262 0.0005830936956735456 0 0 0 4.489417522031332e-05 +4934 4.320493932212981e-05 0.0007006938615142647 0 0 0 -9.184771777433887e-05 +4969 -1.847480479174734e-05 3.908469447217306e-05 0 0 0 5.252881466029344e-05 +4992 0.00019250968244956425 0.0007016254803420115 0 0 0 -9.595047931883583e-05 +5018 0.00017584040636375783 -7.413062519189455e-05 0 0 0 3.4353633094758754e-05 +5025 -6.352440245377943e-05 -0.00017947712706039196 0 0 0 -0.0002135800995546683 +5065 -1.9789273961356855e-05 0.0007334263991707804 0 0 0 7.766515137814587e-06 +5116 0.0001919808263507542 0.0005675038667314016 0 0 0 -2.7602580193053748e-05 +5157 1.6795700856789113e-05 0.0005513109489517468 0 0 0 7.745585533474072e-05 +5163 1.222748192951088e-05 0.0002148783222067786 0 0 0 0.00017431555157131144 +5170 0.00031889190965452355 8.349223470423998e-05 0 0 0 2.0713605142843096e-05 +5189 0.00020653509391281832 0.000405496576823109 0 0 0 0.000125474840200729 +5191 0.0001407257702362454 0.0007190489201245351 0 0 0 -0.0001321198598091645 +5200 0.0001276152115758814 0.000270823093334142 0 0 0 2.990706782865087e-05 +5202 -0.0002346308589835047 0.0004281370873617174 0 0 0 5.383826563679827e-05 +5292 -6.627294440352388e-05 0.0007615182737689409 0 0 0 -6.316547087365301e-05 +5297 0.00018944561754132393 5.006450585179504e-05 0 0 0 -0.00014338895798050524 +5323 0.00015022976381196267 6.685491680374873e-05 0 0 0 -6.390511311286985e-05 +5349 2.3288710222090006e-05 0.0005649792441722996 0 0 0 6.159368988438087e-05 +5368 -0.00021859427349547002 0.000546332353499996 0 0 0 -6.953452065891235e-05 +5407 0.00022056433335967203 5.7986175372884465e-05 0 0 0 0.00012717965788244058 +1690 9.100438920416254e-05 0.0007414181092159694 0 0 0 -3.772490687342315e-05 +5445 4.47167786562076e-05 -2.4134117923073903e-05 0 0 0 0.00020606193155755614 +5462 -2.445044736906314e-05 0.00015949734136002172 0 0 0 -1.45120752340593e-06 +5468 -0.00020427340823248963 0.00046973240208051005 0 0 0 -0.00014242266973174856 +5490 -0.0001240769907815494 0.0006402146914681381 0 0 0 3.520996192077758e-05 +5499 -0.0010520112855687686 0.0013847347814309645 0 0 0 0.000622119963272833 +5529 -4.540885506193757e-05 0.0007000592629155531 0 0 0 1.9487002533156615e-05 +5646 -0.0002998108283645766 0.00021116099629868806 0 0 0 0.0003205754254640129 +7562 0.000494860585752901 0.0004821475980794969 0 0 0 4.81056821845786e-06 +5704 0.00025178166168939763 3.4669533357085015e-05 0 0 0 3.892685417228974e-05 +9498 0.00025823772103727874 0.00012759183174147453 0 0 0 1.3553695316526917e-06 +5781 0.00029406324752059685 0.000208860054426283 0 0 0 -0.00011730454931227237 +7465 0.00022148362667656437 0.0007300651718622557 0 0 0 5.4977344966427655e-06 +5794 0.00012421900785352172 0.0002389275458344534 0 0 0 -1.152499576549782e-05 +5797 -0.00019521624409350358 0.0005280043564384993 0 0 0 -1.9531946842452787e-05 +5825 -0.0003580853088683819 0.0004664758456142342 0 0 0 -6.824720584528225e-05 +5899 0.000139213757408264 0.00028309293040203854 0 0 0 7.31914032128048e-05 +5923 -5.970806753051322e-05 -8.328128878064918e-05 0 0 0 5.057623294680101e-05 +5097 7.990152960749366e-05 -0.00025706914685836104 0 0 0 -2.5998445873105507e-05 +2337 -0.00012567173346587297 -0.0005809668351922497 0 0 0 -3.2684720094935965e-05 +5994 -0.00011262074104046317 -7.292928633848841e-05 0 0 0 4.163129124375085e-06 +1796 0.00034650697252442054 0.0007695451140205723 0 0 0 6.455008020381326e-05 +6040 -7.888235134564752e-05 -0.0005340293235984845 0 0 0 6.87852722849857e-05 +6090 -0.0001082782432241165 -0.0005597938043718112 0 0 0 5.421630078079161e-05 +1868 0.00032352802716607566 -3.102931995153032e-06 0 0 0 1.3259818515575444e-05 +6169 -0.00014463862808839533 0.0005865591033459762 0 0 0 3.942904454949517e-08 +6227 0.0002302061661030062 0.00013875906188752756 0 0 0 1.953294262969424e-06 +6230 2.9151589918660215e-05 -0.0004990650147742844 0 0 0 -1.254150739790356e-05 +6234 -0.00032425431517679287 0.0010289863226608977 0 0 0 -0.00031379373884351386 +6262 0.0001259524918313399 -0.00046669574422129374 0 0 0 -2.5871104208683996e-05 +6300 8.125287130365238e-05 0.000182957964886314 0 0 0 -3.9473070491057944e-05 +6308 0.0002973601897170881 6.428074827570617e-05 0 0 0 -3.8316891540126416e-05 +9930 3.4008284652520403e-05 0.0007124450135369615 0 0 0 -0.0001718967611718583 +6328 -0.00013572857964694334 0.0006187580448973182 0 0 0 2.9908080967074512e-05 +6343 1.2404797887053474e-05 0.000696064930329365 0 0 0 7.796749459203167e-05 +6363 4.3196758203262094e-05 0.0005782474948119034 0 0 0 -7.469342293147407e-05 +6423 0.00012571092767810422 0.0007324227985017357 0 0 0 -3.508195486372872e-05 +6426 -8.438827100862524e-05 0.000647201728726495 0 0 0 1.058023343026127e-05 +6453 0.0003131339746019808 1.0546226619161249e-05 0 0 0 -2.4158230155554606e-05 +6486 -0.00044892303873798455 0.00037389393771704977 0 0 0 -0.0005500839449470492 +6504 0.0002470746206570152 -0.00010717876357703291 0 0 0 -0.0005083041604782826 +6505 0.00012888018740254582 0.00038095998431399635 0 0 0 -8.202851309807384e-05 +6561 3.693315529284525e-05 0.0005516818832762024 0 0 0 -2.455232926665863e-05 +6607 1.0145327341804857e-05 0.0007238677302508901 0 0 0 8.538547977558744e-06 +6635 -0.00013125243354218094 -0.00027083457476411913 0 0 0 7.156383558802342e-07 +6690 9.268303446941859e-05 -6.128781481726631e-05 0 0 0 9.105744975447313e-05 +2036 2.9819678655663896e-05 0.0007608883318785861 0 0 0 1.3236012146988717e-05 +6737 -0.0001059153996714669 0.000553044213030619 0 0 0 0.00012431907974815948 +6744 -0.0015285583304998345 -0.0005970481506053508 0 0 0 0.0009130283758395007 +6766 -0.00011466251077025208 0.0005821262606322618 0 0 0 5.283336497184816e-05 +6760 0.000329969824917637 -8.96952308353295e-06 0 0 0 5.815041362162218e-06 +6797 -0.0002677097192722928 0.0004797225462811169 0 0 0 -8.559772998373881e-05 +6859 0.00017170101317332505 0.0002445858208630515 0 0 0 -9.883777228184637e-05 +6896 -0.00020621694945293194 0.0004793805445773613 0 0 0 9.441909516161613e-05 +163 -0.00010401630679178695 -0.0007548879257654443 0 0 0 1.5806036987090767e-06 +9867 -3.322040328140069e-05 0.0007140019747689834 0 0 0 2.5590105371601744e-05 +6970 1.6314464730825085e-05 0.0006159747984632582 0 0 0 -9.874851638084187e-06 +6980 0.0004622782812689239 -1.9041262796987313e-05 0 0 0 6.520512063700121e-05 +6986 0.00015570136806838865 0.00025705873054834963 0 0 0 -4.134092310432958e-05 +6993 -9.485118493794312e-05 0.0006866275084837163 0 0 0 4.912344239820906e-06 +7009 0.0003621626177740338 -0.00033038982454665133 0 0 0 0.00042884838212587555 +7010 -0.00019799542745826105 0.0005971709953894114 0 0 0 -7.349191519309651e-07 +7020 -9.869761367666559e-05 -3.196370257917411e-05 0 0 0 4.4167508673375786e-05 +7037 -0.00023292792886773746 0.000687587171134385 0 0 0 5.3007614643546044e-05 +484 0.00027745250486915194 0.0005104043194204265 0 0 0 -2.858791271051952e-05 +7134 0.00014275479707475335 0.0002682355179851076 0 0 0 6.628403183575024e-05 +7275 0.00038032254132389255 7.68460700766228e-05 0 0 0 0.0005361428274832639 +7280 0.00024671251205183583 0.0002531212400048401 0 0 0 -5.257896121814446e-06 +7355 3.273969036561796e-05 -6.880552412092051e-05 0 0 0 1.705231682774838e-05 +854 0.00030002977995421997 1.0241795419663285e-06 0 0 0 -2.452600181897678e-05 +7459 0.00038842598802044884 -1.7593128663253495e-05 0 0 0 6.895409435990599e-05 +8188 0.00031325868995538814 0.0005050485859912104 0 0 0 4.5687554125658686e-05 +7538 6.690970767884412e-05 0.00018346821465260483 0 0 0 -5.243758232696859e-05 +7583 -0.00011720858495343096 0.0006066460975381465 0 0 0 -3.723573609046141e-05 +7594 -8.367498605250748e-05 0.0006456537734607517 0 0 0 4.8603137591941545e-05 +7642 -4.8533144029824135e-06 0.0001449796920258708 0 0 0 -2.001817771475667e-06 +7672 0.00010801498512644353 0.0005568002393192506 0 0 0 0.00014650372260864737 +9209 -0.00010089175145484473 -0.0006608076035495736 0 0 0 -4.329827438742652e-06 +7723 0.00014075450426421506 0.0005381074248146883 0 0 0 -4.55134166683896e-06 +7751 1.4196144862141963e-05 0.0005513006667471545 0 0 0 -0.00011783290255453639 +7767 0.0002651903291120952 0.00012545793820320131 0 0 0 6.6463423538492784e-06 +7777 -8.800447085113641e-05 0.0005851792487936309 0 0 0 1.8474585114580573e-05 +7828 -1.8534362279978283e-05 6.337713348719722e-05 0 0 0 4.059076750147531e-05 +7832 9.15533277051652e-05 7.00219585370318e-06 0 0 0 8.178953666565691e-05 +7844 0.00047806608264740777 -7.12454786165331e-05 0 0 0 -0.0001018144948369194 +7869 0.00036406056234126837 -0.00021864210420656732 0 0 0 0.00015354063138237433 +9573 -0.00019661714331069678 0.0005830729431298218 0 0 0 -9.529124624970903e-06 +326 -0.0002383532304973023 0.0006151798508671913 0 0 0 -2.921168464507704e-05 +7906 0.00014964704423670229 0.0006985447614680747 0 0 0 -0.00025663105367421514 +2942 1.4528410709831698e-05 0.0007472615651979167 0 0 0 -2.8736761665397267e-06 +1638 0.00023175046113647538 0.0005750355175808195 0 0 0 7.102047213782658e-05 +7931 0.0002026833166697997 0.00047964628007886534 0 0 0 -4.706477863585323e-05 +1132 -0.00025852752466661765 0.0005908266149580289 0 0 0 1.4773909998036074e-05 +7980 -0.0002719230406203495 0.000140875985056006 0 0 0 -0.0005181686544856809 +7988 0.0001539046188762857 0.0005962881125643421 0 0 0 -7.770757306823132e-05 +8018 -6.884121670272129e-05 0.0003649545952014265 0 0 0 -2.012999302177762e-05 +9437 -0.00012478317009727386 -0.0005562612541635501 0 0 0 3.518960651068787e-05 +8099 0.00011450758863378141 0.0002021630144157249 0 0 0 -2.6147517991212524e-05 +8129 2.7366475948656712e-05 -2.7741300555931057e-06 0 0 0 0.0001119887791231389 +8142 -0.00014016383344494826 0.0007018715721053408 0 0 0 -2.2871146030133784e-05 +3395 0.0002027558725667525 0.0007319787052843889 0 0 0 -0.00011169558952426328 +9872 0.0002877682582531669 0.00010504338634315768 0 0 0 1.9145622814281207e-05 +8225 -0.00025019307719511554 0.00044045932355059585 0 0 0 -8.284473955854453e-05 +8231 0.0003575475857657959 -1.6192370106049307e-05 0 0 0 -5.511766900080733e-05 +8236 -0.00043686635454174877 0.00028406806401209397 0 0 0 6.374326296154168e-05 +8260 0.00021596850717154999 0.00018735316811306957 0 0 0 -5.442373651329465e-05 +8276 -0.0003170115345731724 0.0005311242187726284 0 0 0 -2.4541848477472016e-05 +6689 0.0002554723859807868 0.0007819121072180925 0 0 0 -0.0002037320882860359 +151 -0.00013280204444157632 -0.0005778978744670953 0 0 0 4.538651543404525e-06 +8304 0.00045789587818185427 -0.00014240796475380207 0 0 0 0.00018957427647531765 +8316 -0.00022224419973362753 0.0003473828714871931 0 0 0 6.180859672293327e-05 +8326 -0.0002608490665908335 0.00046184373929540146 0 0 0 0.00017079689328695487 +8333 -0.00019206204263286415 0.00016271882986618693 0 0 0 0.0006809523239740667 +8346 -9.998476939356409e-05 0.0007005320019345099 0 0 0 -7.571077514692403e-05 +8348 0.0004990785544532967 -0.00012071165575176803 0 0 0 -7.589441726867213e-05 +8349 9.329667843030871e-05 0.0005234117131014431 0 0 0 -4.14369558590131e-05 +8431 -8.580881207050581e-05 -5.197460168463684e-05 0 0 0 -0.00021841021950449248 +8433 0.00014136499594598632 0.00038585994985391417 0 0 0 6.783171216591868e-05 +8437 0.00027921150895224354 2.9556429525972308e-05 0 0 0 -9.62780554969843e-05 +8446 3.6740144497153606e-05 0.0005643561569615196 0 0 0 -9.692183024689359e-06 +8450 -0.0003839093180985275 0.0004428666863883775 0 0 0 4.291620128690959e-05 +8500 9.834254740022473e-05 1.235675959627471e-05 0 0 0 2.2859870017416735e-05 +8503 0.00015278989672406988 5.6144665187116004e-05 0 0 0 2.9916745564206628e-05 +1035 -9.574354207107076e-05 2.9288216994735133e-05 0 0 0 -0.00021268342914655526 +8544 -0.00228573821704722 0.0012076977542830483 0 0 0 0.0016179513944286198 +8571 -0.0002058396125809929 0.0005635614830371957 0 0 0 2.6594665423006027e-05 +1826 -0.00010571866064948155 -0.0005475377714342936 0 0 0 -2.7534873582781638e-05 +8594 -5.8903034775618944e-05 0.0003622509799984154 0 0 0 0.00013707581046000446 +8616 0.00022232238485850382 -2.3683844562696844e-05 0 0 0 -5.4235777401375694e-05 +8618 0.00017578252201878804 6.424467067442502e-05 0 0 0 -0.00023190510792910014 +8639 0.00011265966503723894 0.0002352658793442595 0 0 0 -6.0592091020290926e-05 +8644 0.00013528652089474607 0.000713873890519624 0 0 0 -2.616609180381634e-05 +8460 0.0002867810232493825 3.5009972087346766e-06 0 0 0 -0.00017991311724911607 +8704 -5.568759655672714e-05 8.407795426138794e-05 0 0 0 5.431110082371428e-05 +2632 0.0005317693659445419 0.0005918039964201925 0 0 0 0.0001006176372687323 +6228 9.803933142751243e-05 0.0008156835816692065 0 0 0 -2.4181340976560773e-05 +8754 7.770370016876526e-05 0.0002978973872889694 0 0 0 3.474528486389159e-05 +8758 0.0002501447398567621 1.8867522057137233e-05 0 0 0 0.00016802189342564236 +8771 0.00014791158453321903 0.0007783797058658704 0 0 0 -4.273205285490118e-05 +8193 0.0015396754652721991 -0.0010236782029519522 0 0 0 -0.0020709400523511385 +8345 0.000329717264954173 8.820207323112219e-06 0 0 0 3.131669524947674e-05 +8906 -4.331321361764698e-05 0.0004939357282115984 0 0 0 -4.296427004645781e-05 +5004 1.981574612508481e-05 0.0006341569273000205 0 0 0 -2.172678556429185e-06 +8922 0.0003760828679242414 3.6523795725747982e-06 0 0 0 2.307074826988404e-05 +8948 0.0002977125590407787 -1.6392563884392855e-05 0 0 0 6.284197656664132e-05 +8952 -1.9707925231612377e-06 0.00036343346452211617 0 0 0 8.16992181078821e-05 +8684 0.0002618555162874044 -1.032791678638526e-05 0 0 0 -0.00012004811268520191 +9004 -0.00010642316029095703 6.070223831922409e-05 0 0 0 5.857573765358595e-06 +9036 0.00022745171343835433 0.00023713096379924723 0 0 0 0.0002471449962690542 +9044 -0.00010351923144807298 0.0006243880713840226 0 0 0 -5.102072416867147e-06 +9915 8.115457457775804e-05 0.0007500746757168976 0 0 0 2.5360689002355798e-05 +9069 0.00014485854705960886 0.00021030704637094145 0 0 0 3.590389576325447e-05 +9075 -4.790784272919669e-05 -0.00023484168675156172 0 0 0 -0.00026980403287786905 +9120 -0.0002555014081058892 0.00010687751576853366 0 0 0 0.0006859584937176317 +9124 -9.890983256258894e-05 0.00048277287576478124 0 0 0 -3.567043905318476e-07 +8986 5.793001784111964e-05 0.0006684582394055621 0 0 0 -4.177220803016713e-05 +9147 0.00012145728284834938 -0.00015764915463841193 0 0 0 -2.8161467537478524e-05 +9157 -0.0011234781989241892 -0.00015358808638745464 0 0 0 -0.0004065059508938356 +5675 -0.00015143404743743906 0.0005649681195395045 0 0 0 5.5461498117339276e-05 +9272 9.595460383331783e-07 -0.0004610000020470924 0 0 0 0.0001575591530425899 +8140 0.0002683558853257755 6.118799158528622e-07 0 0 0 -4.0549173680675853e-05 +9360 -0.00036738501284470996 0.0004855463306401477 0 0 0 -2.2112302820132133e-05 +9388 0.00034745763463576995 -1.1058722993349933e-05 0 0 0 3.101517435740444e-05 +9393 0.0002036500398256921 -0.000456202435951257 0 0 0 0.0005801101431124374 +9402 -1.6073797796799018e-05 0.00018686532508948144 0 0 0 -3.716779631636375e-05 +9424 -2.6562672466640404e-05 0.0007415735328528625 0 0 0 5.114213422037074e-05 +4109 0.0001716211220102411 -0.00011704916737200364 0 0 0 4.499070953391844e-05 +698 0.00013599885706399545 -2.5051544599708894e-05 0 0 0 7.158463312937468e-05 +4694 0.0018291558938100555 0.0005744845030388793 0 0 0 -0.0003647697089588765 +1880 0.000249529358312176 0.00031920347528406 0 0 0 -0.0003156340424094843 +54 0.0007900831534332075 0.0006800531533166371 0 0 0 -2.629468996238917e-05 +70 0.00031841616567174306 0.0004883842013332387 0 0 0 -7.2588950131863435e-06 +73 0.0009907811677334745 0.00044230360932154294 0 0 0 -2.5248877935020025e-05 +89 0.0004929164935991113 0.0006766399626066899 0 0 0 -1.570974618832221e-05 +232 0.0002695463165558398 0.0005631697124659844 0 0 0 -1.4869841441765676e-05 +267 0.0007036245022186889 9.521093165378346e-05 0 0 0 -3.1579470129368104e-05 +274 0.0008651941998571835 0.0004033156643198631 0 0 0 -3.3975293247610825e-05 +275 -3.677363051806513e-05 0.0008028836472715662 0 0 0 -2.1167418912868535e-05 +278 0.0002292616839101318 0.0005769523717227778 0 0 0 -3.728342747709507e-05 +8550 0.0008914215176173487 0.0006254318041713693 0 0 0 -3.24239112788186e-06 +1228 0.001120324244539719 -0.00019834118388177067 0 0 0 -6.0338671709423405e-05 +381 3.879441711678809e-06 0.0007959925678330607 0 0 0 3.5551947683994713e-05 +5935 0.0008938737975367462 0.0006115781924290367 0 0 0 5.777858022054459e-06 +453 -0.0003526800463065215 0.00019308400307777582 0 0 0 5.005898257312709e-05 +468 0.0005025565970671927 0.0005868327146653162 0 0 0 -2.8738045004696633e-05 +9781 0.0016870655868822609 0.0002709469734759303 0 0 0 -0.005324600916401736 +509 -0.00012094130498744038 0.0002198447369410381 0 0 0 -0.00012399731049499493 +515 0.00020078658998439223 0.0006237493179558654 0 0 0 -2.8582369543390932e-05 +523 0.0006419831971256944 0.0006891887584651736 0 0 0 -2.554513990495553e-05 +538 0.0005881808010439961 0.0006793262859587355 0 0 0 -4.209246655794233e-05 +670 0.0008412619896821415 0.0006273716512500077 0 0 0 3.2942567518377947e-06 +711 0.0005236637072499415 0.00026757220545830965 0 0 0 -7.480100635612113e-05 +3903 0.0009764695368616948 0.0006185727239159722 0 0 0 -1.0000655217753354e-05 +749 0.0007721301729350624 0.000596700999286677 0 0 0 1.3936819200674859e-05 +3185 0.0009210845490103565 0.0005474280537664779 0 0 0 -2.9294510678293396e-05 +793 0.0006693741769676049 0.00010808314453775072 0 0 0 -3.0349316465599694e-05 +814 0.0008574262538280377 0.0005009701656720702 0 0 0 -3.483797608692987e-05 +827 0.00015546732778063652 0.0006058921955109681 0 0 0 -0.0001691365914525506 +832 0.0003277862762319354 0.000634485114849403 0 0 0 -4.176632570948301e-05 +852 0.0007332249616738992 0.00020218243842997098 0 0 0 -5.265658119690191e-05 +922 0.0008003053883437768 0.00027334356774147807 0 0 0 -5.547651224627628e-05 +928 0.0005842012821486274 0.0006791184787401307 0 0 0 2.2330739350485202e-07 +1050 0.0006097705199493469 0.0005128851923423579 0 0 0 -3.2370262412675852e-06 +1056 0.00040278895635333063 0.000459207084448561 0 0 0 -6.998118593690996e-05 +1113 0.00012784028235220484 0.0004313857371905616 0 0 0 1.242734319687403e-05 +9893 -4.771152054472098e-05 0.0005964630055250411 0 0 0 0.00039706359969754186 +1162 0.00029023391309092496 0.0006581488276051898 0 0 0 3.930956304315948e-05 +1187 0.0006328957776139598 0.000663109174360419 0 0 0 -3.877676104482534e-05 +1196 0.0005893586993596368 0.000655016255479002 0 0 0 -1.6891345697790645e-06 +1212 0.0006301597714562608 0.000622152385543362 0 0 0 -2.4211531178362724e-05 +3677 0.0005507809466586614 0.00024565440121836397 0 0 0 -2.538344179869721e-05 +1248 0.0006211241173902398 0.0005441801282075505 0 0 0 4.811038551835125e-06 +1270 0.0010263455480172736 0.0001580999728856498 0 0 0 -5.327774556447117e-05 +1291 3.4548614559195256e-06 0.000674059913744413 0 0 0 0.0001319094750394523 +1323 0.0009640792956033595 8.08096587227316e-05 0 0 0 -4.539958601054837e-05 +1365 0.0002494588613601032 0.00037977450438488795 0 0 0 -3.5835152169068455e-05 +1371 0.0008416535896030496 1.781162003131682e-05 0 0 0 -3.6271888320375096e-05 +1374 0.0005413886645939244 0.0005454182598859807 0 0 0 -5.2180903413115324e-05 +1441 0.00034659019289046903 0.0006069997240466432 0 0 0 9.973862431557463e-06 +1494 0.0006851590556377847 0.0006468810259086542 0 0 0 1.6642491608861222e-05 +1520 0.0006303887182078408 0.0004382376290808058 0 0 0 -6.726230886079749e-05 +4670 0.0009069767290782758 0.0006164444212973296 0 0 0 -7.074464312917935e-06 +1548 -0.0002725160343244083 0.00026051270069545626 0 0 0 0.00010200936621354082 +1573 0.0008436786000370095 0.0005251056427678203 0 0 0 -4.1225857383511125e-05 +1628 6.384290254029699e-05 0.0006479804228352702 0 0 0 -8.076025223792458e-06 +1734 0.000606190535989386 0.00038209006063734613 0 0 0 -4.220077428741081e-05 +1762 0.0010339653844180766 -7.665835469963553e-05 0 0 0 -8.60350134193532e-06 +1775 -0.00014782044772697169 0.00041879157214219474 0 0 0 -0.00010085266398299042 +9977 0.0010142657313964478 0.00044639464503670593 0 0 0 -4.535233323657344e-05 +9768 0.0006584460836325639 0.0002771515664885851 0 0 0 0.0001712077086386613 +1850 0.00024091963404443737 0.000744485627933868 0 0 0 -5.070420583057354e-05 +1866 0.0001405791980198873 0.00047259283533997675 0 0 0 -6.285391064729398e-05 +1878 0.00027417629728647034 0.0006964686765008941 0 0 0 3.0449000661841383e-05 +1963 0.0003269844492891312 0.0004891218316899262 0 0 0 -2.7326774106244938e-05 +1988 0.0008901313358876522 4.774151244958665e-05 0 0 0 3.574324070228012e-06 +2011 5.5353218997082035e-05 0.0006645686183436056 0 0 0 -9.541835608466631e-05 +2070 0.0002576584813196431 0.0006042799961837104 0 0 0 -0.00023978328203149398 +2091 0.0007585917635918653 0.0006447073645611053 0 0 0 1.3883557312272322e-05 +8031 0.00048510906808234185 0.00013623455038510817 0 0 0 -1.093038845200777e-05 +1531 0.0010121832153405065 0.0005542319480411994 0 0 0 -7.709477637212954e-06 +2106 0.0001045368026562191 0.0007311128939204593 0 0 0 3.3364799852545546e-05 +9690 0.001009065017821491 0.0005142030131401109 0 0 0 -9.024398269504072e-06 +2161 0.000748466747489933 -4.321889982864793e-06 0 0 0 -8.714844571787789e-05 +2207 -2.277628194597098e-06 0.0002521682059912236 0 0 0 -0.0001751231045950265 +2208 0.0006018523547420906 0.0006719604236413683 0 0 0 1.6373148794235189e-07 +2475 0.0009486437042821903 0.0005170261158094644 0 0 0 -3.255682608268314e-05 +2323 0.0007155020938559752 0.0006064351523714008 0 0 0 -7.638080527215274e-07 +9791 -4.8684628827643036e-05 -0.0007330018582915328 0 0 0 -0.00012882934051917564 +2368 -2.811465615640655e-05 0.00035528286315154205 0 0 0 -0.00019237761183674092 +2433 0.000627060171329444 0.0006881162232178504 0 0 0 5.4637253790139334e-05 +2449 0.0002317163174333834 0.0006958812481887888 0 0 0 0.0003699523655872515 +2467 -1.9375547838718458e-05 0.000759151758038194 0 0 0 -0.00022344414121769238 +2919 -0.00012663309913757574 0.00040663765716045415 0 0 0 -0.0002120621987497711 +2485 5.396954788369355e-05 0.00050613643129143 0 0 0 -0.00020698095917282504 +2503 0.0005950297634167415 0.00024880764753818754 0 0 0 -4.18945290872645e-06 +2514 0.000627706315500506 0.0006619290998150294 0 0 0 -5.797668553555039e-05 +5551 0.0009210816748210525 0.0006262582627491965 0 0 0 -2.310965480761476e-05 +2562 0.0010716819559092637 0.0003111558107961886 0 0 0 2.845656312692502e-05 +2636 0.0002531702257252412 0.0006874666171424645 0 0 0 3.704970123155891e-05 +2710 0.0007425562273391836 0.0005401551160644686 0 0 0 3.933418324601143e-05 +2716 0.0009467378914738036 -2.1564213568987472e-05 0 0 0 -0.00012230431861410895 +2721 0.0006018320403567072 0.0006231224696440845 0 0 0 -3.0296662492848447e-06 +2730 0.0005711766994968296 0.0005583497354193978 0 0 0 -4.0713982198219405e-05 +2733 0.0005492212913817832 0.0003299828876257153 0 0 0 -0.0001617015844109506 +2777 0.0006926696291506392 0.0006935550217795631 0 0 0 6.940187248686513e-05 +2800 0.0005215900048118634 0.00030045912985960304 0 0 0 -0.00011226178058959009 +2834 0.0006149848879213722 0.0007775581470525939 0 0 0 -3.96797089229944e-05 +2837 0.00010438495594075633 0.0004843900396806736 0 0 0 -6.08795834273267e-05 +2844 0.0006449203466602316 0.00015426736336203583 0 0 0 -4.387477436385923e-05 +2273 0.0008852739205505622 0.0006428342890326742 0 0 0 8.758344321227393e-06 +6120 0.0007903218313396148 0.0007029624096209456 0 0 0 7.161885342888606e-05 +2904 0.000891692866309399 0.0003821742309767396 0 0 0 -4.599111744316231e-06 +2935 0.0010580278586551448 -0.00014937347207082263 0 0 0 -3.813493570262634e-05 +2998 0.0006692188056664993 0.00035818164200467485 0 0 0 -3.8832819121600874e-05 +3076 -0.00019186583182197997 0.0007559098724598496 0 0 0 -9.338174718486698e-05 +3079 2.944697135319436e-05 0.0006010863368717911 0 0 0 -0.0001676439132639928 +3089 0.00041816608901212296 0.0006248491781544961 0 0 0 -2.284595054630972e-05 +3115 0.0003030408773479441 0.0006312541103839957 0 0 0 -8.393603892678338e-05 +3124 0.0005641157949294447 0.0004961339989317803 0 0 0 -2.8522869104146658e-05 +3129 0.0006310253923541744 0.0006319111922956062 0 0 0 -6.897779450108883e-05 +3131 0.001014041561314968 -5.863452805744687e-05 0 0 0 -3.6511945836467975e-05 +3188 0.0007930585883469296 0.0006171635694247647 0 0 0 -3.186139980679465e-05 +3236 0.0007638288908235949 0.0005631788824537975 0 0 0 -4.700480866374952e-05 +3252 7.357560643782458e-06 5.604616907063316e-05 0 0 0 -2.4249022325321958e-05 +1590 0.0008794826346277179 0.0004775958033811228 0 0 0 7.766897718070373e-05 +3310 0.0006933891328096888 0.0007079239531971133 0 0 0 0.00017314984007044663 +3335 0.0003976678260937092 0.0005730155631612104 0 0 0 4.3019554650377286e-05 +3366 0.00039803920392577345 0.0005457132534339207 0 0 0 -5.422653113998474e-05 +3416 0.000708085136001276 0.0006409036677415326 0 0 0 -6.634823326382919e-05 +3462 0.0006584023767129821 0.0005987971212406363 0 0 0 -4.386237386423206e-05 +3463 -0.00035646409096353143 0.00029143645052793056 0 0 0 0.00013231609924855731 +8218 0.0008633078555257025 0.000616750446006591 0 0 0 1.9925172465276215e-05 +3869 0.0009109418694051165 0.0006227118552821167 0 0 0 -5.9409371922290415e-06 +2268 0.0009240171017802738 0.0005273678640172382 0 0 0 -3.1648508046185836e-05 +5414 0.001051295433804137 -0.0005910589445333197 0 0 0 0.0002795211266437643 +3607 0.00034376749495015484 0.0005467218401373024 0 0 0 -4.928325673761237e-05 +3609 0.0009486833558507404 0.0005851157896726171 0 0 0 3.74975384561571e-05 +3665 0.0007240053875520591 0.0006405908280007584 0 0 0 3.28244052648093e-05 +3671 0.001187340672820532 -0.00013047082934531125 0 0 0 9.858005007600066e-06 +3690 0.000984537107593983 0.00020310995405239653 0 0 0 -2.615318024369184e-05 +3716 0.0006812277420931128 0.0005136959804693578 0 0 0 1.35032428427821e-05 +358 0.0006132921165346438 0.00023966417864502006 0 0 0 -5.175429330443195e-05 +6681 0.0001720779773837469 0.00042110615673399604 0 0 0 -0.0002404207633337659 +3761 -0.00010427829741009662 0.00020989463689821791 0 0 0 0.0002866565701416459 +3793 0.00019664361425537593 0.0007324811934814099 0 0 0 -0.00013205418157059506 +3860 0.0007393307943953415 0.0003896599833243406 0 0 0 -3.5341292836147786e-05 +3863 0.0006973170887461909 0.000693488779506229 0 0 0 -3.6083576305779425e-05 +3880 0.0007515451750655852 -1.7440417688282767e-05 0 0 0 3.0086767370947387e-05 +3886 0.0001791893601570867 0.0004527490247784603 0 0 0 1.1713754641325262e-06 +3908 0.000242532180544851 0.0006750360070022561 0 0 0 2.548113789869208e-05 +3983 8.55957641525744e-05 0.00030482871431353035 0 0 0 -9.015495007569384e-05 +3998 -2.68983810869028e-06 0.0002665474325109274 0 0 0 0.00019014968981014311 +1838 0.0008865301350305522 0.000665054839919848 0 0 0 7.445311875186327e-07 +2587 0.0009833278023294583 0.0005642671733683062 0 0 0 4.9581073146379834e-05 +1149 0.0010299743051363334 0.0005205461796742606 0 0 0 -2.0234367801625375e-05 +4162 0.0009241332559178202 0.0005364321942324629 0 0 0 1.1505415470948422e-05 +4170 0.00046870736511671915 0.0007501149963621266 0 0 0 6.420521112012141e-05 +4279 -0.00033729183580203965 0.00022697119428742037 0 0 0 4.729194036368084e-05 +4298 0.0009990811119320985 -8.076345492919138e-05 0 0 0 -8.611243447975756e-05 +4319 4.7115818236309354e-05 0.0006167138849865211 0 0 0 0.0003218076180500203 +4344 0.0007561622431983906 0.0001772355327549502 0 0 0 0.00020338785374177597 +4385 8.214047592181235e-05 0.0005290674867767152 0 0 0 -6.884315911647316e-05 +6693 -0.0005436619062212684 0.0004946455770441653 0 0 0 -0.0011044352528029606 +3542 0.0008235314238403493 0.0006227982528348748 0 0 0 2.939508527788237e-06 +4419 0.0006699909271552381 0.0001395196844551752 0 0 0 7.944575284445435e-05 +4427 0.00020057142445147947 0.0004756699506729421 0 0 0 -3.4115267737074604e-06 +4504 0.000874983849751608 0.0006248277784048291 0 0 0 4.913743047344921e-06 +8059 0.0006871906339283823 5.752615296581804e-05 0 0 0 3.981097080643199e-05 +4521 0.0005876353550262598 0.0006477939396587531 0 0 0 1.600486109825764e-05 +4543 0.0003375349954575179 0.0005820717015357285 0 0 0 6.088901166656121e-06 +4561 0.00018121092695387846 0.00039152258992501194 0 0 0 -7.957552311407273e-05 +4850 0.0008764710958682726 0.0006350826536174123 0 0 0 -1.0858617349322398e-05 +4590 8.016449552193855e-05 0.00036820340348587297 0 0 0 0.00021405968327779288 +4606 0.0006959157210268156 0.000495562980916242 0 0 0 -6.766276087250799e-05 +4683 0.0010589540221013433 0.00024940108467695594 0 0 0 -3.1863952343398155e-05 +4689 2.9948828831423882e-05 0.0003603772956828358 0 0 0 6.344776929405916e-05 +4703 0.0008190457891633844 0.0006392458646205057 0 0 0 4.564126624938389e-05 +4819 0.0001639215544282877 0.0005928716051776677 0 0 0 -0.00019053826443576078 +4839 0.0006454764520483644 0.0006258414957753338 0 0 0 5.156482695273779e-05 +4859 0.00021979996568160528 0.0005145532530243719 0 0 0 6.810393810845555e-05 +4869 0.00017513633473170812 0.000629383457037679 0 0 0 -0.0003916674220081449 +4880 0.00047926012871171795 0.00045830551981827 0 0 0 7.648314260187189e-06 +4881 0.0007950965298864655 9.359343076495194e-05 0 0 0 -7.317511035747183e-05 +4883 -0.0011493879081428088 0.0004328075671287628 0 0 0 0.0007920008446406003 +6783 0.00020046017876622983 0.0005932823654295701 0 0 0 0.0007942055932559706 +7789 -6.285654719141307e-05 -1.07058075585672e-05 0 0 0 0.000772483260497933 +5019 0.0005761947862325167 0.0006440456699226565 0 0 0 0.00013628183693584472 +5024 0.0008884478849362354 0.0004240379858855324 0 0 0 -5.121621763818957e-05 +6756 0.0007022862708532796 3.6848897022881874e-05 0 0 0 2.759753799475499e-05 +5120 0.00045077269383908997 0.0006594081868644708 0 0 0 -7.631569704541434e-05 +5138 0.0005777762574525983 0.0006229629299974173 0 0 0 -7.897885235205186e-05 +5151 -0.00016958421417473493 0.0007288877393869476 0 0 0 -5.8948937203673004e-05 +5156 0.0008039035650826042 0.000634248454040639 0 0 0 -5.4307855656008626e-05 +5194 0.0007887574562510353 0.0006496318521555469 0 0 0 1.3877596264029558e-05 +5208 0.0009392437783773168 -0.000903676322116419 0 0 0 -0.0004984070575458654 +5210 0.0005149662432964352 0.0007669608069773881 0 0 0 -5.509228626283806e-06 +7794 0.0006404805327557246 0.00010982111730456743 0 0 0 1.0056113566670494e-05 +5247 0.0006116446218685736 0.0007038468594879487 0 0 0 -1.3501348273860421e-05 +3077 0.0001311914926570156 0.0003071876477944554 0 0 0 -0.00025779406665901614 +5321 0.0005019397168595213 0.0006869948131920611 0 0 0 -0.00025222293299393355 +9774 -0.0010773016398176248 0.0025688193018235505 0 0 0 0.005731121434344384 +9946 1.4365015818133076e-05 0.0001704080269878466 0 0 0 -9.618569414385745e-05 +9374 0.0009855833882816386 0.0005643918651088727 0 0 0 -2.3612772512524964e-05 +2235 0.0009902403607421337 0.0005320086617032986 0 0 0 -1.2108580874472471e-05 +5505 0.0009099660083026703 0.0005860077634925477 0 0 0 -7.691752396842843e-05 +5507 0.0007873648008575465 0.0005972019245599686 0 0 0 -3.637085975134531e-05 +5520 0.0006651910892024839 0.0006083723060103716 0 0 0 -7.135925911113606e-05 +5584 7.782115293166417e-05 0.0004735129458645669 0 0 0 -0.00013544491819371957 +5615 0.0004031537683250976 0.0005518226753241351 0 0 0 -6.367795903040101e-05 +5636 0.0009698989569416833 0.0001350681338233039 0 0 0 -4.534399404764098e-05 +5681 0.0010579992695674489 -0.00011065164341740813 0 0 0 -3.4417124641072256e-05 +5766 4.9935106980896413e-05 0.0008431582875739645 0 0 0 0.00018907144829274813 +5777 -7.895371841733531e-05 0.000679572710494357 0 0 0 -0.00011916735149523749 +3630 0.0004785548449767834 0.00011341553720224713 0 0 0 -2.7129187058835168e-05 +1415 0.001001895690129244 0.00045062798393810514 0 0 0 8.018417349872931e-06 +5873 0.0012112584381398887 -0.00016484506983879883 0 0 0 -6.124347271127404e-05 +5938 0.0007341353794803367 0.0006835152940371151 0 0 0 6.390758604902539e-05 +5969 0.0010131973441166043 8.392941874231045e-05 0 0 0 -4.662623163260967e-05 +5971 0.0006742167300791044 0.00032665546988822503 0 0 0 -2.4317525747056463e-05 +5979 0.0002556056776995744 0.0006863770218296241 0 0 0 0.00028179358417064655 +5996 0.0008734084695944896 9.489293769259661e-05 0 0 0 -8.514639676484625e-05 +6012 0.0013494178203248286 0.0007002503525556914 0 0 0 -0.00013632592961257493 +6048 0.00015335783034277407 0.0003751302096160108 0 0 0 4.006259090491106e-05 +6982 0.0007417444736332354 -2.0958047607180346e-05 0 0 0 -0.00014878295155965488 +9968 0.00028125436839185515 0.0006488743236352435 0 0 0 1.9592448615836304e-05 +3942 0.0009157980719244419 0.0006269780412577487 0 0 0 1.8592683336604923e-06 +6191 0.0008176868430089025 0.00061615521532361 0 0 0 -3.5523400146653786e-05 +6245 -0.0003753208900374157 0.0002752382705250316 0 0 0 5.3011345263117824e-05 +6254 0.0006425064255781082 0.0006572741209389789 0 0 0 -5.347411948678358e-05 +6266 0.0006901224645608396 0.0005632791813706488 0 0 0 -7.547037459457123e-05 +6271 0.0006450126186835707 0.0006259149032785289 0 0 0 0.00012311640066982047 +6361 0.0007495941723628784 0.0006282271403233386 0 0 0 -6.732240811808114e-05 +6369 0.0007157891413562284 0.00015710817692266132 0 0 0 -7.653715004058123e-06 +6375 0.00017796071213080453 0.0007568015838474177 0 0 0 -1.5112603826171562e-05 +6440 0.00014455423000237177 -0.00013543239588557964 0 0 0 -0.0007982820781874063 +6530 0.0006492549481620309 0.00046607119260284923 0 0 0 -8.09855035018841e-05 +6531 0.0008788284927986651 0.00014841412829421732 0 0 0 -4.2318093054044725e-05 +6718 0.0005030851929993533 0.00020142038799399173 0 0 0 0.00015709784535547158 +6582 0.0008462313089964506 0.0006179843603836741 0 0 0 -3.427671310798296e-07 +6586 0.0006552383135642698 0.0006748041450355665 0 0 0 5.461675766083439e-05 +6596 0.0006504735908560247 7.595938405470046e-05 0 0 0 -0.0003412508616855707 +6642 0.00013897152473506125 0.0006898484627745753 0 0 0 -0.00010603950196138026 +6649 0.00038174042859343005 0.0004322827945925609 0 0 0 -5.596389231839265e-05 +6659 0.00019960950306093225 0.0005191798692593363 0 0 0 -5.8685705495027454e-05 +6672 0.0006546651292211217 0.000482374856183888 0 0 0 -0.0001299213062562844 +7068 0.0009028492952392513 0.00045803301969883273 0 0 0 -9.995031109385944e-05 +6732 0.0005248413841266931 0.0006673550947834396 0 0 0 0.00010922146860915383 +3199 0.0009409840221130158 0.0005906141651934514 0 0 0 -2.6727616834660186e-05 +6778 0.0003557041317250257 0.0005593713423128652 0 0 0 2.5477029903448638e-06 +614 0.0008434078959595935 -0.00015301270171202123 0 0 0 -3.374972767427581e-05 +6825 0.0005535187126125868 0.0006876080686844323 0 0 0 3.632169940849567e-05 +3597 0.00048225634203564777 0.0006648181693040837 0 0 0 -2.3993398086739166e-05 +6844 0.0009851273066599513 3.932356239098267e-06 0 0 0 -0.00016401088783368967 +6857 0.000169944959291731 0.0005183918707505767 0 0 0 -4.954183410778095e-05 +6874 0.0022339368503992043 0.00028374515475512263 0 0 0 -0.001190621746319925 +6908 0.0005347887667664474 0.0003140182076803461 0 0 0 -5.715649596172436e-05 +6919 5.831225815927332e-05 0.0005345425803498639 0 0 0 -0.00019737923066908206 +3287 0.0009527184545757081 0.0006182600626846504 0 0 0 1.306174791883309e-05 +6952 0.00017987114263710396 0.0005834478246959792 0 0 0 6.704574187058167e-05 +464 -3.761711058462456e-05 0.0005903000997019986 0 0 0 0.00014926418541816818 +7006 0.000266571466273519 0.0004990556876935335 0 0 0 -3.0069605963345477e-05 +7051 -0.00010349629948323988 0.0008334153736889679 0 0 0 -2.0540201217796426e-05 +7062 -0.00010675324942473733 0.00015941176348618067 0 0 0 0.00034116901387434265 +7097 0.0003285770797553598 0.0005531555109951797 0 0 0 -1.7947223935797026e-05 +7107 0.0006061689383905142 0.0007451624736079085 0 0 0 0.00010160691811774366 +7183 -0.0002585783875650349 0.0007514358365117902 0 0 0 -0.00012050017182240617 +7194 -0.0004119707125351948 0.000600676654542791 0 0 0 0.00025956474806527265 +8829 0.0008601291317087339 0.0006989662477232669 0 0 0 6.183845070722637e-05 +7276 -7.693806845818453e-05 0.000859070594575172 0 0 0 0.0002396435145733256 +8506 0.0009736619505362179 0.0005050138090851777 0 0 0 -1.5709193046966235e-05 +7297 0.00017594290802780063 0.0006457811969527908 0 0 0 0.00017545898789391308 +7309 0.000670253947126447 0.0005684585418814713 0 0 0 -4.243007945482252e-06 +7363 0.0007839976062709985 0.00014923238430402514 0 0 0 -0.0004778500713007527 +7365 0.0009027580661517512 0.0004487298951523335 0 0 0 -6.41823636101804e-05 +7366 0.001036494513290936 0.00029980004430760335 0 0 0 -0.00012460267973336492 +7409 0.0002231504963034133 0.0008502579443123403 0 0 0 0.0002937705217284667 +7411 0.0006097315118327716 0.0005900394239488242 0 0 0 -7.035689558325914e-05 +7461 0.0006390416436324934 0.00029815656691814144 0 0 0 -7.078816835532237e-05 +7487 0.000635995818182132 0.0005117730245788051 0 0 0 -3.707850444364517e-05 +7535 0.0003654452288870877 0.0003310901690772036 0 0 0 3.0370212509236583e-05 +7559 0.0008455311862937011 0.000655549896645962 0 0 0 5.591565687068271e-05 +7607 0.00023009540371348147 0.0005197627273165907 0 0 0 -3.4653293580831095e-05 +7717 -0.00024367108073363925 0.00017086596588395468 0 0 0 -9.990754702015502e-05 +7760 0.0001232864070589447 0.000563211943355486 0 0 0 0.00045540963246452546 +7766 0.0004987285659205659 0.00042001615407705146 0 0 0 -0.0002457153338549254 +5355 0.0003742238991151135 0.00023076422806653127 0 0 0 -0.00039070023468713817 +6927 -9.931407335216912e-05 -0.0001620238859281368 0 0 0 -0.000327623454354301 +7851 0.0007341951125018628 0.0006246240839862913 0 0 0 1.1486502894228733e-05 +7905 0.000862626017743495 0.0006146550543127346 0 0 0 3.9017264062224936e-05 +7923 -0.000283632866387886 0.00048795350522985915 0 0 0 2.791790432634009e-05 +7958 0.0011436242186102137 -9.780115418108363e-05 0 0 0 -5.970131815685941e-05 +9738 0.0007312954848938115 0.0006821683714162787 0 0 0 -0.00014848062659992116 +7991 -0.0002625924864307048 0.00027096343500691313 0 0 0 -0.00025748534803201586 +7995 0.0004532676082472426 0.0006568344364576767 0 0 0 -1.7797444605852672e-05 +7997 -0.00023259016482018833 0.0006625892338972046 0 0 0 0.0004339968250924725 +8004 0.0006113594419653723 0.0006290191864929121 0 0 0 -2.224982396539496e-05 +8007 0.000648196279073714 0.00043756211946788096 0 0 0 -9.138195752486255e-05 +8017 0.0002104742150128341 0.0007493613551460738 0 0 0 -0.00040912765630536017 +8026 -4.337308457706554e-05 -3.775837846964555e-05 0 0 0 -0.0023161093267104016 +8033 0.0005987692885552991 0.0004431797101108568 0 0 0 -3.908659443211546e-05 +8034 0.0006294301205104742 0.00017555789171130957 0 0 0 2.3822025332913437e-05 +4017 0.0010104016273106726 0.000575869684357281 0 0 0 -4.8690157376599264e-05 +8102 -9.570084397369313e-06 0.0003098138016951034 0 0 0 -0.00018554476935651713 +8111 0.0006796411325059158 0.0001629580440924001 0 0 0 6.701748585531128e-05 +8164 0.0006010746859862575 0.000596964330045288 0 0 0 -2.628127318925949e-05 +331 0.0006273913865966681 0.00010205787314594766 0 0 0 -3.214605016513824e-05 +4 -0.00043136632797980307 0.0003344503011553649 0 0 0 -9.219938106589966e-06 +8297 0.00025874292724647704 0.0006555035355618571 0 0 0 -8.31252497135157e-05 +8301 0.0005578832995427764 0.0006904448950830558 0 0 0 -7.805255129637406e-06 +8309 0.0010270600783100726 6.801502630117744e-05 0 0 0 -9.027807438380802e-05 +8310 0.0007982326905402418 -0.0006625275873205848 0 0 0 -6.190260612691915e-05 +8356 -0.00025674480901203563 0.0002356325619824206 0 0 0 0.0001235034891045715 +8389 -0.0001810488495403225 0.00012125894938070939 0 0 0 -9.640506829792062e-05 +8575 0.0009996856775756073 0.0005007337526377645 0 0 0 -2.0233831838322654e-07 +8445 0.00048101940967762023 0.0006445946957344953 0 0 0 6.191091000096692e-05 +8448 0.0005500167595636992 0.0015175083680159008 0 0 0 -0.0003584663871395622 +8467 7.712801180833331e-05 0.00044703218128116097 0 0 0 7.807192787156226e-06 +8470 0.0008622201267606185 0.00016874392933095362 0 0 0 -3.5079750831472483e-05 +1129 0.0005749439273213395 0.00016838943643670203 0 0 0 1.6035539297353497e-05 +8490 0.0007309523790630038 0.000552489566764518 0 0 0 -0.00013734031168928672 +2846 0.0008495450960520452 0.0006065611728375405 0 0 0 -1.5981072027867366e-05 +8101 0.0008580156673708251 0.0006424341539023144 0 0 0 -4.1712377414225865e-05 +8648 -0.00016774431804292067 0.0007813369839383649 0 0 0 -0.00021134521816598277 +8657 0.00047465974149945363 0.0006164588447910099 0 0 0 2.4219320344524348e-05 +8674 0.0006990105995268586 0.0003778879297384982 0 0 0 -4.244111248840338e-05 +8681 -6.748956428002116e-05 0.0008453208462573117 0 0 0 -0.0003640098106218419 +8811 0.0005464333230080563 0.000752324814956068 0 0 0 6.151485892781343e-05 +8812 6.859526138543859e-05 0.0004311063204716185 0 0 0 -3.8862568303157824e-05 +8826 0.0005874923809750674 0.0006478373036187454 0 0 0 3.1661696581612135e-05 +9993 -0.0004775638396405429 0.0026741409279996313 0 0 0 -0.00021261728884246315 +9852 0.0010454556420041127 -2.7694717444007028e-05 0 0 0 -5.607295556758948e-05 +8886 0.0006567846057339284 0.0006319648401661803 0 0 0 -2.8948365573511805e-05 +8901 0.00014835291443694823 0.0003795426642725455 0 0 0 -0.0006491627341529241 +8961 0.0003849998946205204 0.0005467138485479618 0 0 0 1.1498530472621322e-05 +8707 0.003130228775845846 -0.0019225449252471948 0 0 0 0.0016377191472565795 +8981 0.0003981695632672313 0.0006613044684959559 0 0 0 -0.00010101912969433627 +8994 0.00026945456155477227 0.0007608217198432642 0 0 0 7.348074568488988e-07 +9070 0.00048450565724649294 0.0005541059343007874 0 0 0 8.271617854760938e-05 +9100 -4.913093723544937e-05 0.00016786880178755947 0 0 0 0.00012171642571377905 +9143 0.00018831619621549516 0.00044539352854418784 0 0 0 -8.144325606971453e-05 +9156 0.00023200513387592765 0.00047319470951393927 0 0 0 -6.078684578608151e-05 +9162 0.000418286102410419 0.00029639077717664915 0 0 0 0.000813954435019685 +9178 0.0006647984990039791 0.0008311742564139411 0 0 0 -0.00015128795153800185 +9258 0.00036318187172616035 0.0005424296017414215 0 0 0 0.00016630340467287835 +9297 0.0008117441790114357 6.976540494349389e-05 0 0 0 2.9009853473527445e-06 +3193 0.00024647968572670564 0.0003884875808077842 0 0 0 0.0004803161677524283 +9389 0.0005478369542303567 0.0007280743127987848 0 0 0 0.00015437238381553586 +3106 0.0008527291121582991 0.0006251827782303172 0 0 0 7.575677865670196e-06 +9422 0.001002148483382137 -8.547653297827893e-06 0 0 0 -5.179749224403858e-05 +4885 0.0009276233266493635 0.0006820888625709883 0 0 0 5.937422205343933e-05 +7289 0.001346254653924303 0.0012391008040783017 0 0 0 -0.0004273883298072668 +9570 0.0010433644384515899 0.00018058040181981536 0 0 0 -4.803066907704245e-07 +9586 7.457600030806717e-05 0.0007858736118475146 0 0 0 -0.00021496342014570488 +2605 0.00027016779312887814 -3.925320777246004e-05 0 0 0 -0.00014904721896424444 +9602 0.0002861724172971646 0.000691233134948778 0 0 0 -4.699453376041907e-06 +9636 0.0007395364274511555 0.0006146456711627903 0 0 0 3.6338487599924836e-05 +454 0.0009336867271312507 0.0006080639978413622 0 0 0 -8.20356119638718e-06 +9668 0.0002815889005134631 0.0006916514404544429 0 0 0 -4.434990126657807e-05 +9673 0.00034596090588784014 0.0005429610592558331 0 0 0 -3.388150946995498e-05 +8385 0.0008889203072210408 0.0006007551419281514 0 0 0 5.20416971250708e-06 +3756 0.0011049764486983091 0.00020603056606649734 0 0 0 -8.075511925251399e-05 +9702 -0.0003655123812295283 0.00023820353622046499 0 0 0 0.0002250261122688302 +9718 0.001073689398576644 0.00015071938688871288 0 0 0 -7.940943413407917e-05 +5435 0.0008831185749537172 -9.7581530561374e-05 0 0 0 -7.776891641177792e-05 +9242 0.002049055760597905 0.0008852524019562792 0 0 0 -0.001921824829425928 +3675 0.0008448932076111454 0.000605449237551202 0 0 0 3.441316299393211e-06 +8788 0.0009263754435741502 0.0006333105639159632 0 0 0 -5.9153233140823874e-05 +9 0.0014423916327998335 -8.254361816291799e-05 0 0 0 -1.4830084469102083e-05 +34 0.0012421392009734089 0.00025012023612751863 0 0 0 -3.7504968345727456e-06 +112 0.0011185874633733673 -0.0003059213236071884 0 0 0 -2.5408042699032277e-06 +119 0.0008801575103386655 -0.0004063255543214218 0 0 0 6.3365743504242965e-06 +13 0.0012871748889674015 0.0005350621545581108 0 0 0 -1.8353202337423548e-05 +152 0.0013602637838904493 0.000130405863234142 0 0 0 5.433892031000478e-06 +3829 0.0011898229800432157 9.673117582026677e-05 0 0 0 -1.9213366506485636e-05 +6802 0.0012337163890797445 0.0002538800067855986 0 0 0 -6.746055474930566e-05 +224 0.0014739376797257189 0.00017467225560429637 0 0 0 3.4226844324285497e-06 +258 0.0007193686591094904 -0.0003468088061479725 0 0 0 1.5796855424577197e-05 +277 0.0013822843023686463 0.0002580974229602179 0 0 0 -8.784244373904892e-06 +279 0.001277202324617548 0.00035995019443852295 0 0 0 -3.248554659120507e-05 +295 0.0010590070337448481 -0.0003505980550851359 0 0 0 1.6193873753294156e-05 +1501 0.0008507065011221687 -0.00031903625821244776 0 0 0 -1.767936953965563e-06 +317 0.0013824702362992783 0.0002725621464834729 0 0 0 -2.3377061710627236e-05 +390 0.0012025383270746878 -0.00020702404148539757 0 0 0 3.0254773092650578e-05 +428 0.0011453312735330583 -0.0002740672591462177 0 0 0 8.592622139407654e-06 +435 0.0010946334413332894 -0.0002128456474059516 0 0 0 2.4413265747313154e-05 +471 0.001116974590274824 -0.00021476523346384988 0 0 0 3.6581259985852455e-05 +4753 0.0011678257627124283 0.0002003700280740302 0 0 0 2.108653319590455e-05 +517 0.0011917469287043756 1.0848124306725747e-05 0 0 0 -3.805416379408552e-05 +537 0.0009792158747713806 -0.00025503281145521474 0 0 0 1.246164381500219e-05 +551 0.0012887810072543093 -0.00018557832722662274 0 0 0 7.855466491613762e-05 +563 0.0009137132455561879 -0.0002913014386598976 0 0 0 5.289632196802202e-05 +9531 0.0013419516408637202 0.0002983082511120717 0 0 0 5.5223499853550935e-05 +628 0.0011937182919398574 -0.00010453762457210872 0 0 0 -2.9159577602796785e-05 +3873 0.0009356831750677053 -0.0002379777164359866 0 0 0 -3.723013279727745e-06 +8733 0.0014662595790004883 0.00014222767014878424 0 0 0 5.571930177108233e-05 +9463 0.0012525237359627152 0.00015326529415358702 0 0 0 -5.3704337325956704e-05 +5849 0.0008561368726132349 -0.0003098573142453617 0 0 0 1.3587652351574199e-05 +759 0.001368722753672539 0.00036364714989830745 0 0 0 -3.37772513868137e-05 +773 0.0012914525688276753 -0.00015866803418127935 0 0 0 5.115309560583196e-05 +776 0.0012225807731880425 -0.0001642978433495691 0 0 0 -2.147920835992878e-07 +762 0.000986774532755413 0.0001942706581099815 0 0 0 1.5831025641535083e-05 +909 0.0013116240490063256 -0.00018121888303357334 0 0 0 -1.0405161551859519e-05 +921 0.0009392825216958658 -0.0003090111946974876 0 0 0 2.5746121643907855e-05 +950 0.0014593155263401278 0.00032394739169265503 0 0 0 -1.868915585685968e-05 +9338 0.0013984609004796139 0.00029319597836341535 0 0 0 4.014489946557709e-05 +1017 0.0011689116089786654 5.5970222533652185e-05 0 0 0 -7.605172417456133e-06 +1027 0.0014028758934741055 -0.00017302842163119058 0 0 0 5.090548812349478e-05 +9630 0.001121828875041995 -0.00020439048531617542 0 0 0 7.718482570639505e-05 +1052 0.0013571310328365897 -8.224465247262609e-05 0 0 0 -6.681846857565111e-05 +607 0.0008128440196546763 -0.00040575111549160373 0 0 0 -9.187957566798825e-06 +1070 0.0011625552347693854 -0.00025521261264212534 0 0 0 -1.1660830840890619e-05 +1095 0.0011013235637274473 -0.00021451860428437644 0 0 0 5.624523211708338e-05 +1145 0.0012439090486243388 0.00014722424656224095 0 0 0 -3.6009559454756234e-07 +3642 0.0009439903967487435 0.0001373411983411625 0 0 0 -1.0689909270696816e-05 +9289 0.0012078299044087186 -0.0001922393619747684 0 0 0 -4.80698043008442e-05 +1334 0.0009532567468679429 -0.00036659310766303676 0 0 0 -2.7660536970655816e-05 +1356 0.0013354441753554037 -0.00012259090038649835 0 0 0 5.230453932826572e-05 +1411 0.0012098393034774642 -0.00019367364715125056 0 0 0 -1.69558090525333e-05 +7954 0.0009180933148643042 -0.000247440959647794 0 0 0 1.619144126379732e-06 +1444 0.0014413671824737564 0.00031663801605160194 0 0 0 2.6523511032168588e-05 +1493 0.0010817528259459501 -0.00024318383578566142 0 0 0 2.2792197413227632e-06 +1503 0.0013713105265065718 0.0003999166232346333 0 0 0 1.0634686296427833e-05 +1519 0.0014558798603798444 0.0002869665035250489 0 0 0 -4.189604609683034e-06 +7206 0.001139092209211806 0.0001249977326902757 0 0 0 3.623495129460988e-05 +5788 0.001197626677413368 0.0002818738870898736 0 0 0 -4.871905336935877e-06 +8514 0.0009739559382948163 0.0002382094210119314 0 0 0 -7.383141678533314e-05 +4833 0.0014396120177427338 0.00021724671663045093 0 0 0 -2.086087991979968e-05 +6460 0.0008389319310716615 -0.00033104681614771906 0 0 0 2.419488909496649e-05 +1641 0.0011748560270220584 7.97454604163585e-05 0 0 0 4.1990074693102816e-06 +5676 0.0012375292935157642 0.00021405930716137078 0 0 0 -2.05068069931633e-05 +1646 0.0009202205885778018 3.818876790057601e-06 0 0 0 -5.935925197791509e-05 +1698 0.0014677369794982719 0.00024833053581415347 0 0 0 9.265446888848223e-07 +6151 0.0009385600643116133 2.833207782536546e-05 0 0 0 -4.3270456480031855e-06 +5987 0.0013436307816081074 -8.841837665411051e-05 0 0 0 7.169975579270779e-05 +1724 0.0010662054961003296 -0.0003729617551606225 0 0 0 -4.7956311668964826e-05 +8211 0.0010224516494079772 7.498885082568123e-07 0 0 0 0.00033205575256842727 +1794 0.0014301668639538575 0.0004132637947037199 0 0 0 -1.0916236169853623e-06 +1798 0.0011253216888553593 -0.00030492710123322116 0 0 0 -1.7797892729163439e-06 +3352 0.001018989037743016 0.00021038926809527887 0 0 0 -2.74661859657217e-05 +6929 0.0012197728365083377 0.00022550980596593737 0 0 0 7.865572153717911e-05 +1338 0.0009474368190223542 -0.00022265786563560388 0 0 0 1.908315644375306e-05 +9255 0.003015228671323893 -0.00019193867000327677 0 0 0 0.00024327492460604725 +8931 0.0013919535614307216 0.0008411979762475616 0 0 0 -0.0006826390178204965 +255 0.001265754111363759 -0.00012093522141442506 0 0 0 2.56403366155059e-05 +7241 0.0011775168217898603 0.00022568367393620864 0 0 0 0.0001256912416287644 +2448 0.001473284985317529 0.0002644323764378298 0 0 0 -2.828357743403504e-05 +2568 0.0010971306788941598 -0.00012984793259709638 0 0 0 -3.643093535686061e-05 +9711 0.0011629743202105495 -0.000176706910888369 0 0 0 -0.0002464416945393571 +2614 0.0012343301727037329 1.4079164114243662e-05 0 0 0 -3.562670480170716e-05 +2615 0.0009062974630101021 -0.0002986961143748083 0 0 0 4.399065911544842e-06 +2648 0.0009831031902103316 -0.00034985325904314697 0 0 0 8.786486611326695e-05 +2681 0.0012304805893475301 6.469033088931301e-05 0 0 0 -6.518183037776997e-05 +1542 0.0006910903194081702 -0.0004264375610665006 0 0 0 1.5540073663474365e-05 +8274 0.0011155426603441417 0.00011324358191999045 0 0 0 1.2748982899244133e-05 +3519 0.0009582233538381076 0.0001283688141567451 0 0 0 2.7386067615672855e-05 +2729 0.0014424295752223607 0.0002825694319664013 0 0 0 6.846828686691185e-05 +2642 0.001017942469816538 0.00025803859669746275 0 0 0 9.334744627057154e-05 +2770 0.0013901570539257481 -0.00012826912111996223 0 0 0 0.0001504813848946822 +8726 0.0008650368348575058 -0.0004327643557959066 0 0 0 -2.9468299296905263e-05 +2868 0.0014663432035744378 0.00034317350040978403 0 0 0 2.7317286582488612e-05 +2856 0.000951800161994771 7.807825694461272e-05 0 0 0 3.7378603737349624e-05 +4155 0.0009331708492639721 0.0002459585533344477 0 0 0 5.060793191689081e-05 +8877 0.0014472630823456792 0.0004323861501590959 0 0 0 8.964538187247773e-05 +2993 0.0009749993772322654 -0.00023821003549643634 0 0 0 1.749642287812646e-05 +2995 0.0013465527802978307 -8.855017942644339e-05 0 0 0 8.242857337726893e-05 +3006 0.0009477040003296568 -0.00034763556607085745 0 0 0 -3.404932915667481e-05 +9292 0.0011925611497252968 -3.937355927554332e-05 0 0 0 1.7809703651384554e-05 +3011 0.0014019241424805106 0.00035228232826432126 0 0 0 -1.5150255128791397e-05 +9040 0.001479173200233104 0.00043901392147088834 0 0 0 0.00011076274299937346 +3187 0.0012377006051638604 0.00014131552014275527 0 0 0 -3.370663837488489e-05 +8786 0.0013323618620955052 -0.00012768461601909558 0 0 0 0.00020267007187289783 +2280 0.0008889368069720764 -0.0002786970240694627 0 0 0 1.9800979967311248e-05 +3234 0.0009696012246025126 -0.00032045715178525625 0 0 0 1.56128731500017e-05 +3267 0.0012200450343886455 -0.00016728342589494724 0 0 0 3.368729728881561e-05 +3314 0.0014504295195957217 -8.135949231510729e-05 0 0 0 5.798716326763181e-05 +1576 0.0010154942589618353 -0.0002693596014991207 0 0 0 0.00013718728013058614 +9518 0.001214619099417691 0.00024778529899126126 0 0 0 -7.781047681638751e-05 +3331 0.0014011509917814398 0.0003044196436384829 0 0 0 8.508899650873662e-05 +1999 0.0008386384201292374 -0.00032264383205147715 0 0 0 2.8201486514039714e-05 +9922 0.001435711850254095 0.0002108412863328926 0 0 0 -3.993499801560742e-05 +3425 0.0011507490616024158 -0.0002633150972826767 0 0 0 5.692741171226245e-06 +8663 0.0012474925655506332 0.0002406922607704357 0 0 0 -2.669228171752124e-05 +8874 -0.003623237433491016 -0.00017194170697770744 0 0 0 -0.0008995905453075485 +4977 0.001214145675722813 -0.00014599041526089845 0 0 0 1.105825409075745e-06 +3574 0.0014511905996689068 0.00021991856759718208 0 0 0 -7.651335572603388e-05 +3628 0.0011190108780994165 -0.00012555982117282646 0 0 0 1.1586379836456734e-05 +3783 0.0012007686000669324 -0.00017858033547345792 0 0 0 3.361563738928018e-05 +9540 0.0011242324807338713 -0.00019189923469813662 0 0 0 -5.051361963628461e-05 +3698 0.0011487280828521751 -0.00015539685313756908 0 0 0 -1.8150642854730954e-06 +3711 0.001513777310853263 5.869565316373183e-05 0 0 0 3.862240722459076e-05 +3774 0.0012384547223759398 -0.00010127580970869795 0 0 0 1.2429672136993661e-05 +9081 0.0012801915733866459 -5.862365763090651e-05 0 0 0 -7.924448831395816e-05 +3807 0.0011782730862225728 -0.00025581092223518175 0 0 0 -1.6027500936636197e-05 +9324 0.001259100499675539 -0.00014370039644541024 0 0 0 -8.936420079793767e-06 +7351 0.0010464866539168127 0.000186198778209144 0 0 0 -3.7093761939283394e-05 +3296 0.000922424655766007 0.00018688805567816888 0 0 0 -1.1260620220422378e-05 +3940 0.0008895082802369347 -0.0003923307346977879 0 0 0 6.457241729240799e-05 +3989 0.0013926907458716483 0.00017699705165808216 0 0 0 2.7889509625692023e-05 +4046 0.0013278532330620112 -0.000317026933263754 0 0 0 -0.000293463745745061 +9720 0.001682451397390818 -0.0017507416227210042 0 0 0 0.008424052899997413 +4091 0.0012624262781378984 5.678959142668155e-05 0 0 0 -6.60574624178552e-05 +4114 0.0014259212072961086 0.0003093384532636017 0 0 0 -3.484792435519911e-05 +6070 0.0009508786074975429 0.00016484125063574362 0 0 0 -9.140838708447694e-06 +4158 0.0009131729767563008 -0.00035091796056525555 0 0 0 2.00396111791558e-05 +2873 0.0011309395214239757 0.00018322929013086804 0 0 0 -5.268319008672021e-05 +9468 0.0012093950265162634 -0.00017307465995886789 0 0 0 -9.926254058935499e-05 +4224 0.001456328244517588 -0.00011373410566654406 0 0 0 0.00015809150681071534 +4250 0.0010058091409254127 -0.0003473660104186689 0 0 0 5.691297335878055e-05 +4322 0.0011819737117867274 -0.0001293589961402688 0 0 0 4.114530344258563e-05 +4333 0.0012738609522444841 0.00031490410111308125 0 0 0 0.00012629076388283534 +4359 0.0014321561393205108 0.0002671935537565989 0 0 0 -1.3671587470602197e-05 +4389 0.0010904935265603597 -0.0003358051990987471 0 0 0 -5.581256719137525e-05 +8177 0.0012507949321703868 -0.00021798297147057323 0 0 0 -8.812018288208166e-05 +8602 0.0009507185192700795 -0.0003367985765982569 0 0 0 4.296484339154652e-05 +9770 0.0014553089471079552 0.00024384160929008335 0 0 0 -7.312743760277373e-05 +6193 0.0014687182508759983 0.0002565035932684017 0 0 0 4.5137386126420265e-05 +9963 0.0008533285546320356 -0.00041602042445312805 0 0 0 -3.0256033042877624e-05 +4597 0.0011973976948116826 8.261373291683349e-06 0 0 0 -2.166575714112008e-05 +4617 0.0014289952039364857 -3.8716647335842495e-05 0 0 0 -0.00016611317262794486 +4625 0.0008886178974158831 -0.00037590686517540014 0 0 0 -4.91903419113859e-06 +4631 0.000996618139471559 -0.0004121147578490766 0 0 0 7.749346727880065e-05 +7316 0.0012576516384428592 0.00021148201954111092 0 0 0 2.9879616613592376e-05 +4719 0.0013987664847820475 -0.0001451156281197893 0 0 0 1.9319476407280486e-05 +8035 0.001175917260206025 0.00043967428482128627 0 0 0 -5.752892945404945e-05 +9542 0.0011099836124021096 -0.0001590505956874028 0 0 0 -5.521148997540009e-05 +4540 0.001403073819535338 -0.00015474725069443318 0 0 0 4.3220027956432216e-05 +4875 0.0013365353136954015 -0.00014384372966201887 0 0 0 0.0003187672845919835 +9689 0.0010902813939279352 -0.0003595383626528874 0 0 0 5.854917009181445e-06 +4923 0.0007927153154880378 -0.0004196853713026062 0 0 0 -8.870136519910475e-06 +4933 0.0014734560256985958 0.00020365185085130841 0 0 0 -2.3651730995540328e-05 +4968 0.0012986220408941272 -0.00014529697732730944 0 0 0 -0.00029057335461540255 +8889 0.0008676824274260772 -0.00030412483010495723 0 0 0 4.019019835166811e-05 +5035 0.0011580786001848598 -6.17989485861816e-06 0 0 0 -9.130123619916914e-06 +5094 0.001185513088749214 -0.00026657377114445063 0 0 0 -2.7394009809742807e-05 +9743 0.0008559815933918683 -0.00044533595772000144 0 0 0 2.1020531929475594e-05 +5199 0.001234590745697053 3.3395321051413815e-05 0 0 0 -4.551507533515332e-06 +8725 0.0014063905380505696 -4.899948179132983e-05 0 0 0 0.00012918684428330038 +5251 0.0014031786700256994 0.00032617870419296343 0 0 0 3.0216718608520844e-05 +4938 0.001032330655724126 0.00018918825151347166 0 0 0 4.6919130302646246e-05 +5302 0.0007974623590192281 -0.0004368497390418213 0 0 0 1.4482283992258547e-05 +5317 0.0011421685817204444 -0.0001723091865710111 0 0 0 -9.182252642621224e-05 +5356 0.0012546631122414228 4.138863202853245e-05 0 0 0 1.73985117302678e-05 +5402 0.0009436562175723127 -0.00025525706607109174 0 0 0 -4.3480777987602574e-05 +5426 0.0010113114765910249 -0.00031843169386814717 0 0 0 -5.556964969611e-05 +5440 0.001168541730169104 -0.000231342647774965 0 0 0 -3.940949474625142e-07 +5503 0.000841761526663813 -0.0004224332035176161 0 0 0 1.1705299270026486e-05 +9109 0.0011498195001824695 -0.00013753177285228747 0 0 0 -3.054760697998745e-05 +5597 0.000919893057251657 -0.00033288125531852884 0 0 0 2.2685593118209322e-05 +5622 0.0014434499627146648 -6.407843717274991e-05 0 0 0 3.6276187367687707e-05 +5647 0.001477990057633364 -4.415136946829489e-05 0 0 0 0.0001283932431476464 +5658 0.0012284295314190872 6.176276906884714e-05 0 0 0 1.811387815778198e-05 +5700 0.0010625634064794565 -0.00029528281532629336 0 0 0 2.8845050762756353e-05 +9332 0.0012262450937045764 -0.00016729206194555498 0 0 0 -6.81087783954307e-05 +9729 0.0013629930296478472 0.00028924853454764484 0 0 0 -0.00012253078691695055 +5572 0.0010088147256944416 -0.0033402419554225873 0 0 0 -0.007147880936053204 +5810 0.0014472588471614717 0.0002772088821221938 0 0 0 1.0710615152435212e-05 +5816 0.0011880258826531588 -0.00025343742149016153 0 0 0 -7.88419104465161e-05 +9328 0.0014575691039106272 0.0002822204142484029 0 0 0 -4.6658072322933984e-05 +5826 0.0008599070022336525 -0.00040926364547107274 0 0 0 1.972515565728894e-05 +8753 0.000906246492605133 -0.00044851767152093467 0 0 0 4.284379209538896e-06 +5851 0.0013255497691567891 -0.00026069307612689574 0 0 0 -0.0002170905001823111 +5881 0.0014160801911885193 3.651928554053983e-06 0 0 0 -0.0001308667777956913 +4725 0.0014396587915324857 0.00023140363620625067 0 0 0 -2.527043702426463e-05 +3888 0.0012154755181983123 0.00017324729252560784 0 0 0 -6.46033717356958e-05 +8522 0.0011201645792099377 -0.000311494767864608 0 0 0 -9.729794409888293e-05 +1821 0.0008774233027923964 -0.00028745534439985953 0 0 0 1.1741370255725644e-05 +9886 0.001270450448781459 9.25643869869568e-05 0 0 0 -2.1832824169744604e-05 +1500 0.0008364466206043641 -0.000319450611447408 0 0 0 4.979990870531672e-06 +6079 0.0014321455216273005 0.00018918985817599802 0 0 0 2.813561507945862e-06 +6141 0.0014033796726316838 0.0002866755398515472 0 0 0 -8.925913241938391e-06 +6144 0.00115256420874671 4.927980673111292e-05 0 0 0 -7.36998453809405e-05 +6146 0.001352136849487645 -0.00014173882411819714 0 0 0 1.3131677391206533e-05 +6305 0.0013911974207145913 -0.0001082721003692943 0 0 0 0.00016124244788870304 +6172 0.0011782965793111556 -7.486236067618583e-06 0 0 0 0.00015778182762050667 +3138 0.0008855087523123167 -0.00032799694311214073 0 0 0 2.5014209495213777e-05 +6216 0.001157075636606103 -0.00031771709302209265 0 0 0 2.783641903756811e-06 +9460 0.001456925642790722 0.00031758767826724644 0 0 0 2.2739351044820247e-05 +9790 0.0008255592097983937 -0.0016487670263793876 0 0 0 0.0015391541325315765 +2132 0.00147842169389554 0.0001918749817772565 0 0 0 -6.793597897818253e-06 +6376 0.0011312059484442705 -0.000314902799270077 0 0 0 2.26178010796349e-05 +6394 0.001277834508084272 0.00029738916846166195 0 0 0 -0.00015304145088518908 +6447 0.001484261637618857 9.254915881448004e-06 0 0 0 0.0001913205568480351 +6451 0.0011637818524354443 -0.0002391377968062954 0 0 0 -4.35091290093384e-05 +9228 0.0012085935711849446 -0.00017467498278028192 0 0 0 -5.3506798925023616e-05 +6473 0.001296988967481721 -7.949186963207302e-05 0 0 0 -3.2177540306289856e-05 +6483 0.0012364058460771537 -5.215338053882962e-05 0 0 0 -1.7394953351834965e-05 +6501 0.0011834735582322055 -0.0002730051122883864 0 0 0 4.977748559370169e-05 +765 0.0008316146286924295 -0.00037456957924617733 0 0 0 2.3991668355455393e-05 +6569 0.0008888705267105422 -0.000419409013330569 0 0 0 -0.00018687331125311304 +7188 0.0008988581852036358 -0.00036921714483080064 0 0 0 8.996397168772005e-07 +6611 0.0014724183723031667 3.3477729628328772e-06 0 0 0 -0.00012797688442333296 +6734 0.0012877000460761972 -0.000286582628193369 0 0 0 6.32262983108609e-05 +6764 0.0011560555047668366 -0.00010419029146997706 0 0 0 6.057681561761863e-06 +6795 0.0021932140726017087 0.001843958310661127 0 0 0 -0.00040802094524323914 +7686 0.0013729606384858793 -0.00010681044954571125 0 0 0 0.0002657458629149111 +6939 0.0011613421727925304 -0.00028702734909081244 0 0 0 -1.9384742965221534e-05 +6961 0.001187724418828235 8.885474230953688e-05 0 0 0 -5.6011276012661114e-05 +7018 0.003071727090657335 -0.001502670933428816 0 0 0 -0.0015541760616877454 +9879 -0.004194151956623215 0.0006029996350759845 0 0 0 0.004811651530870785 +9210 0.0008151654028594597 -0.00035970353162324993 0 0 0 -6.574636274043588e-06 +5078 0.0014374963522339132 -8.379513418767256e-05 0 0 0 9.573651061662088e-05 +7174 0.0015351589039166126 1.0851722438370221e-05 0 0 0 9.504504671865132e-06 +7196 0.0014597910809652402 0.00026797342320200487 0 0 0 -7.815375527500346e-05 +7201 0.001466064369656826 -6.952355092873257e-05 0 0 0 0.00010746091641013154 +7219 0.0011596112047410048 -0.00020931117083714687 0 0 0 -2.1994262461458596e-05 +6746 0.0008827976702343024 -0.0002599147425259264 0 0 0 -7.3867571181053055e-06 +7266 0.0014103343093670483 -0.00014363253517793263 0 0 0 -0.00010708424409332167 +1180 0.0012019562132414908 0.00046624362535626566 0 0 0 -3.882108630408831e-06 +9672 -0.0004540729431052196 -0.00041476483311609404 0 0 0 6.95449578207808e-05 +9431 0.0008350708967940067 -0.00033098500820549293 0 0 0 9.089186953220665e-06 +5623 0.0011975888753590104 -0.00019219985959826374 0 0 0 -4.08490508991091e-05 +1490 0.0007800429814216432 -0.00037450690954133074 0 0 0 8.117482040044034e-06 +7450 0.0011834667861803996 -0.0002034476025319026 0 0 0 -0.0001083987760885044 +1987 0.0010033109870679845 0.00016539231192014148 0 0 0 1.9910221566992503e-05 +7512 0.0010777513839731957 -0.0003692985177630254 0 0 0 0.00010168905008470058 +8865 0.0008615618823645855 -0.00021946802346579903 0 0 0 -1.083537314371966e-05 +7572 0.001469618334018445 0.0003090157371935959 0 0 0 -1.2665521346994113e-05 +9301 0.0011490946680145712 -0.00020350445250061157 0 0 0 4.320458643500733e-06 +4394 0.0012596040060986195 0.0004521228124109042 0 0 0 6.492471062714257e-05 +7613 0.0010856740525518411 -4.823266098187522e-06 0 0 0 -9.793280364951022e-06 +5245 0.0011125160990087752 0.00021137614077388145 0 0 0 4.1350586059315764e-05 +7689 0.0011638343007599628 -0.00027976995225496225 0 0 0 2.5875350471795616e-05 +7045 0.0010452116170667795 0.00017304483591055949 0 0 0 0.00015728760619495755 +7712 0.0013560905480346668 0.00034186355977513643 0 0 0 5.232794719410562e-05 +7724 0.001175077682195694 -0.0008997092622386199 0 0 0 0.0003128625692294844 +7784 0.0009618791692556881 5.2745887197761163e-05 0 0 0 4.868404678207834e-05 +7791 0.0010238790814896164 -0.0002790337252499763 0 0 0 4.2350736350496175e-05 +7826 0.0014643750222093218 -7.557429176319994e-05 0 0 0 0.00020872274213491152 +7876 0.0014319910846789263 0.0002701158582494068 0 0 0 -2.572062372765428e-05 +9243 0.0009719317176139409 0.00017479957035088873 0 0 0 -1.3997591710780229e-05 +7994 0.0009160627285038974 -0.0003607415950710819 0 0 0 7.573754806806618e-07 +6638 0.0007298009320276808 -0.0004015863625368489 0 0 0 2.2539083053850288e-05 +8036 0.001186556432665691 -0.00020403736901491697 0 0 0 -0.00014856309410699354 +8153 0.0011697698080588173 -0.00019723315079728295 0 0 0 -2.699036365786325e-05 +8159 0.001086970958439923 -0.0005737255620965548 0 0 0 -0.00023873799496374344 +9589 0.0011157406042441957 0.00017771056606934792 0 0 0 -2.1974344679183124e-05 +5970 0.000991695543950083 0.00018452315784793096 0 0 0 5.524573177313694e-05 +4532 0.0011247652090796995 0.00019055500782797123 0 0 0 -3.612831824818369e-06 +5824 0.0009848317764352171 0.0001722842128815201 0 0 0 1.6496434775848322e-05 +8120 0.0008340333462017955 -0.00032456791585602996 0 0 0 -3.0660781522570056e-06 +3227 0.0007526184558394768 -0.0002993538949923799 0 0 0 -8.288199901664633e-05 +5718 0.0008592405443802804 0.0001970925172115303 0 0 0 8.240851787020947e-05 +9728 0.0012062695715213297 0.0003626291486481089 0 0 0 -8.202462613112712e-05 +9355 0.001186274843649762 0.00029131366897899234 0 0 0 -2.0212901389950696e-05 +298 0.0009051424886929687 0.00013914810060854771 0 0 0 1.1214926073460846e-05 +153 0.001342712540787735 0.00037349110385146935 0 0 0 2.8835968112284763e-05 +4569 0.0009372435807381542 -0.00024875060660679144 0 0 0 0.00014849676601541383 +5880 0.0009713098960121933 0.00018738088398171862 0 0 0 1.0389452031195349e-05 +1034 0.0008560490379473808 9.424193104794574e-05 0 0 0 -1.0584927751107713e-05 +3322 0.000788217917118354 -0.00036356901072561387 0 0 0 -2.170627435003494e-05 +1841 0.001180006142139436 0.0002778545937663129 0 0 0 -2.261720908473785e-05 +2902 0.0007554890478493038 -0.00040923454582762655 0 0 0 1.8306976575866642e-05 +8374 0.0008332323295098919 -0.00044409828524758643 0 0 0 5.053340969166553e-05 +8630 0.0009539588756441789 0.00026680856945462495 0 0 0 -2.1830493189822412e-05 +7329 0.000962045752096675 -0.0003551456940111285 0 0 0 2.7870666602883402e-05 +2306 0.0007797025057836156 -0.0002627921380396093 0 0 0 2.5151324695923804e-05 +6466 0.000755492492638539 -0.0003721160002585264 0 0 0 3.652459625692223e-05 +5818 0.0011679105278539874 0.00020355104162158837 0 0 0 -8.518122941108565e-05 +7258 0.0008574344956815474 -0.00028365468145391813 0 0 0 6.178803427443569e-05 +2575 0.000993249924981442 0.00024564435127765854 0 0 0 -5.6536432386037675e-06 +2725 0.0007703818679704426 -0.000294720451245972 0 0 0 2.1443132233812673e-05 +8870 -0.00039742756819381166 0.0010465086062528607 0 0 0 0.00010429546579952432 +1711 0.0007670166284073517 -0.0004406722683706368 0 0 0 8.866513338195432e-06 +3327 0.0007311699247713368 -0.0003903159727356688 0 0 0 -1.7690061281370717e-05 +2071 0.0007522779938160425 -0.00037613650312877053 0 0 0 -3.4414159798620435e-06 +7274 0.0006959044643531513 -0.00039734938969906807 0 0 0 5.807584868676104e-06 +3823 0.0006725682464896725 -0.00039897867040658195 0 0 0 1.7727597370452934e-05 +5109 0.0011213248365476735 0.00026394039439343257 0 0 0 -7.324532293512373e-05 +8122 0.0007234974653696409 -0.00040844537448511686 0 0 0 3.6407418815214935e-06 +7575 0.0011180509150495745 0.0004440440094022456 0 0 0 0.0001741230617570342 +7277 0.0008059808287763831 -0.0004588629480789525 0 0 0 4.610487314221692e-06 +2253 0.0009584313371792394 0.0002473974591252988 0 0 0 5.171693918388387e-05 +7131 0.0008032871678928241 -0.00046456900890934436 0 0 0 3.0148995300128766e-05 +641 0.0008396467244292659 -2.9900888357095498e-05 0 0 0 1.2231210120859072e-05 +4715 0.0007362073797449386 -0.0004305644696559061 0 0 0 7.869138159568059e-06 +371 -3.331820417868137e-05 -0.00034601942275470465 0 0 0 -2.723198836529862e-05 +31 0.0006445265503051626 -0.0007124136995781511 0 0 0 5.9670202731141715e-06 +71 0.0007202251594401291 -0.0003080997633460838 0 0 0 1.6839903010206775e-06 +3881 0.0008134683936798781 0.00011054058654872301 0 0 0 -1.813929934887541e-05 +110 0.000802137226938931 0.0001100905102236815 0 0 0 -5.6995275857144814e-06 +111 0.00035128171553149403 -0.00032976577628125253 0 0 0 -1.0034886788511368e-05 +159 0.0005623730520241983 -0.00032579006496809764 0 0 0 -3.334324094796811e-05 +181 0.0006402337238223259 -0.00043634850003554474 0 0 0 5.283836724813324e-06 +185 0.0006809649004991227 -9.988593826773272e-05 0 0 0 7.374846055023843e-06 +214 0.0004613628362516907 0.00014151589132780097 0 0 0 -2.7782830214506002e-06 +246 0.0003097061969857207 5.02601150844072e-05 0 0 0 -5.263892874903125e-06 +9187 0.0006643023662961862 -0.0007005063718681124 0 0 0 -0.00018743283427995398 +310 0.0007101058481114845 0.00019364323793064712 0 0 0 -2.4249941571244333e-06 +301 0.00020740527093748702 -0.0005645811111036736 0 0 0 -1.6045129633719306e-06 +373 0.0007169244056757783 -0.0005510730657650225 0 0 0 7.618562845582677e-06 +420 0.0005639247503001502 -0.0005825631116887456 0 0 0 -1.12207767692547e-05 +462 0.0004349714595688156 -0.0007513383818246749 0 0 0 1.90858737273944e-05 +519 0.0007531287906134045 -5.063433909376792e-05 0 0 0 -2.3026486918873764e-05 +547 0.00046862882280533896 -0.0006031462368604232 0 0 0 3.930168330287146e-05 +565 0.0006394946785978398 4.246624602236612e-05 0 0 0 3.686354290294119e-06 +648 0.0006495884335000187 -0.0006073275537210661 0 0 0 -3.8913686412129345e-06 +7317 0.0007165700777483408 -4.2317522081177574e-05 0 0 0 9.223358271928103e-05 +671 0.0008829766240941071 0.000236300125791244 0 0 0 -4.047049354469217e-05 +5891 0.000876050199353669 3.738115854046667e-05 0 0 0 -5.046502717252757e-05 +696 0.0006768056215464012 -0.0005500888313735405 0 0 0 -5.973436498265842e-05 +700 0.0007172910500286941 -0.0005874322293221968 0 0 0 1.454706248219333e-05 +717 0.00046393667332243993 4.763306688690684e-05 0 0 0 6.323550616587653e-06 +728 0.00017982751185345166 -0.00034937130542607377 0 0 0 7.255258489958928e-06 +1764 0.000831689848928048 -0.00047725031631117503 0 0 0 -9.28173463849291e-06 +787 0.0004930504803262321 2.6470214580012798e-05 0 0 0 -2.8698028499383144e-06 +820 0.00027803906328287834 -0.0007489170801640168 0 0 0 8.155619489256348e-06 +853 0.0006390130141297414 -0.00032063029911715446 0 0 0 4.28863504741994e-05 +896 0.0003248529487774917 -0.0006285484841615863 0 0 0 -4.776104020497447e-05 +925 0.0005998732740848815 -0.000633169833358831 0 0 0 1.1173777330744142e-05 +7624 0.000816704675780044 -0.00046124030450546655 0 0 0 3.258301723772992e-05 +955 0.0007157249016057038 -0.0005171406245342774 0 0 0 8.072539460111054e-06 +964 0.0005378199406009459 -0.00011017600429248378 0 0 0 1.060852190520212e-05 +8923 2.157327471150374e-05 -0.0003113872450320851 0 0 0 -5.684074179674303e-07 +995 0.0007259886288547133 -0.0004568509600900188 0 0 0 -4.1904034443913264e-07 +998 0.0001621619477898148 -0.0003583692501806555 0 0 0 -5.8104941085882275e-05 +9873 0.0007477526788612508 -0.0003986198832068882 0 0 0 -7.799839960064096e-05 +1021 0.00033789923489780196 -0.00018851819039967046 0 0 0 3.442879097297356e-05 +1064 0.0003429425572485317 -0.0005518715047347829 0 0 0 1.4332476481991943e-05 +9683 0.0003078674387783549 3.379637897396473e-05 0 0 0 -2.862117079289626e-05 +1085 0.0003862777838545065 -0.0006486356825913647 0 0 0 1.340512067713906e-05 +1150 0.0006957476801627086 9.777949704606412e-05 0 0 0 -2.506124786061205e-06 +4078 -6.551726329254154e-05 -0.0004933515573857215 0 0 0 0.0001653892873094023 +1158 0.0004883064965277822 -0.0003500914479192768 0 0 0 -8.209866894920652e-05 +9296 0.00044092602659393074 6.543744807106391e-05 0 0 0 6.867292540539618e-05 +9447 0.0005779512444467868 -0.00011368389528427644 0 0 0 2.192582586510251e-05 +1226 0.00043458957083492505 -0.0006606938289747178 0 0 0 3.591348706761379e-05 +1250 5.065137043091339e-05 -0.0006436271523144179 0 0 0 -3.689876650743488e-05 +1285 0.0006226511776009374 -0.0003035413933209816 0 0 0 -3.013061458625359e-05 +1277 0.0006386780539779113 -0.0004949014164039946 0 0 0 2.3074371365578354e-05 +1316 6.88760553945481e-05 -0.0002952421454786884 0 0 0 -3.719084057912767e-06 +1339 0.0005773437911439493 -8.520947300056e-05 0 0 0 -2.6661662929942503e-06 +1511 0.000520272135387296 -0.00019890492630567815 0 0 0 -1.3383837099374927e-05 +4573 0.0005701849019504791 0.00023809315926486056 0 0 0 -4.816657272503964e-05 +1572 0.0003923763928405066 -0.0007216864381699387 0 0 0 4.3338945596451466e-05 +1604 0.0003196327743228971 -0.0005994447112315891 0 0 0 3.201797028550698e-05 +1269 0.0007836531533763466 0.0002602521257250329 0 0 0 2.5970135009994792e-05 +1672 0.0005627282948164763 -0.0006339139180417363 0 0 0 2.5202551143766276e-05 +766 0.0005238253427291244 -0.0005626303613996633 0 0 0 1.3524405076346377e-05 +1715 0.00014985510210932377 -0.00028393137585200286 0 0 0 -1.0906285847786701e-05 +1733 0.0007061588559230819 -0.0005296816866415022 0 0 0 3.9997302369105973e-05 +1747 0.0007137089801849834 -0.0005465753699317187 0 0 0 3.042695799994706e-05 +1748 0.0006327488923702617 -0.0006428188269592745 0 0 0 1.3136605356723858e-05 +1757 0.0005737874781322308 -0.0007447706674360098 0 0 0 -4.76190387787407e-06 +1799 0.0006700484400271517 -0.0006472391519485195 0 0 0 -1.1607956545813575e-05 +7960 3.3149464815789332e-06 -0.0006189819821446523 0 0 0 -0.0003658808080914177 +1815 0.0006819029493202552 -0.0005204663481493214 0 0 0 7.240290882803594e-06 +1820 0.0006590107527661762 -0.0004784087462763565 0 0 0 8.7032645352273e-06 +1830 0.0004629351634934216 -0.00021810094467728934 0 0 0 -2.3957858022237036e-05 +1871 0.0005263270651986785 2.4114168169113963e-05 0 0 0 -1.2398206136064325e-06 +1881 0.00044997647952523966 -0.0005982086964099392 0 0 0 2.872516835375991e-05 +1915 0.00037597469794945686 0.0001260502486124964 0 0 0 9.045289357581821e-06 +1924 0.0006762528899411716 -0.0006677539049195757 0 0 0 -2.49586051072044e-05 +1930 0.0002827297323561934 -0.00019537734403769967 0 0 0 2.9689184381615207e-05 +1966 0.0004384306037573821 -0.0006661891479597533 0 0 0 -1.4250870422727066e-06 +5456 0.0005734072995752663 -0.0005299576517148672 0 0 0 1.859620579514999e-05 +1985 0.0005234853614693391 -6.96584066572547e-05 0 0 0 3.092278230965954e-05 +2037 0.0005026082871248834 -8.806577963725461e-05 0 0 0 -3.571738852029375e-05 +2039 0.00048427463193116964 -0.00010596209638372321 0 0 0 6.3235862265936825e-06 +4116 0.0007429569984722635 -0.000446912406988153 0 0 0 4.003879252101202e-06 +9952 3.196266758750977e-06 -0.0006306034475945979 0 0 0 6.178377706027119e-05 +2178 0.0004135200136608103 -0.0007671665143643972 0 0 0 4.1715474020247495e-05 +2179 0.00025746312769660767 -0.0007611411989731107 0 0 0 7.181757343350427e-05 +8537 0.0006362847333112788 -0.0004715629667685258 0 0 0 -2.1195930740129116e-05 +2222 0.0006594376219673745 -0.0004379003727511416 0 0 0 3.536836802835586e-06 +2227 0.00014166079046567712 -0.0007437126727303144 0 0 0 -3.637822083347073e-05 +9456 0.0004167447737291222 -0.0006052880216990941 0 0 0 -0.0001018688976813472 +2254 0.0006559615805672307 -0.0005503376590433915 0 0 0 -5.016704225313744e-05 +2260 0.0007865714065660651 -0.0001782794767558603 0 0 0 -5.8041124149397484e-05 +2310 0.0002886409853300658 -0.0005068336733977986 0 0 0 2.7293176879803635e-05 +2316 0.000130134255422851 -0.0007194571711876803 0 0 0 -4.064932908876171e-05 +9655 0.0007019941998798908 -4.33098842702882e-05 0 0 0 -8.242602140204146e-05 +9494 0.00023181475871775683 -0.0007235405007208589 0 0 0 -7.817532470528602e-05 +2538 0.0007085741512387289 -0.0005569053005499155 0 0 0 1.77013561937135e-05 +2557 0.00014356427960102823 -0.0006325725354649355 0 0 0 -1.6287744302964643e-06 +8659 -0.00022728513509253926 0.0015298604514245161 0 0 0 -0.0016156825045625027 +2771 -1.7798845476316349e-06 -0.0002593106928608333 0 0 0 -7.960202489513049e-05 +2618 0.0007052857759896676 4.166556466901495e-05 0 0 0 -5.520760480637296e-05 +2619 0.0005946749557103064 -7.505307454403502e-05 0 0 0 -2.3666167729460837e-05 +8770 0.00043177589303107283 7.45367070853886e-05 0 0 0 3.457091517574303e-05 +2652 0.00040175663238117696 -0.0007387477638804342 0 0 0 7.28831555858625e-05 +2683 0.000621430750902383 -0.0006547069367570954 0 0 0 7.864647640180884e-06 +2728 0.0005751412990705788 -0.0006776247479951911 0 0 0 -2.508759171818449e-05 +2744 0.00011180021159042298 -0.00036636764658770556 0 0 0 -2.6181391524971104e-05 +2748 2.929398129746286e-05 -0.0005183557206634695 0 0 0 -0.00012748035526378992 +1083 0.0008495806482294896 0.00028852819529961673 0 0 0 -5.1512853483463364e-06 +2894 0.0004721739992200968 4.145422776882697e-05 0 0 0 -2.220267222673868e-05 +2895 0.00013257944568120428 -0.0006366977699177001 0 0 0 -4.238610845848866e-06 +2905 0.0003490460651844045 -0.0007046081989834155 0 0 0 3.293215346131058e-06 +2906 0.0006335582254534853 -0.0003310429968634212 0 0 0 -6.543700124709911e-05 +2962 4.866967084109112e-05 -0.0003166878542795977 0 0 0 3.2243616589566395e-05 +2999 0.0007079061496913411 5.625543153705535e-05 0 0 0 -9.290360589148895e-06 +3022 0.0007478062651057132 -2.4318094246498812e-05 0 0 0 -7.680706919635887e-06 +3050 0.00034040692901894003 0.00010390751279386817 0 0 0 0.00015172235569851868 +3090 0.0006064232454981497 -1.7238891263046967e-05 0 0 0 5.030928706053254e-06 +3108 0.00037413783645584054 -0.0006182146815491443 0 0 0 -6.534607887889275e-05 +3146 0.0003413735834965281 -0.0007840317443336276 0 0 0 3.395157452225315e-05 +3195 0.00029933844880645333 0.00010636574829077898 0 0 0 5.118660620801664e-05 +3196 0.0007136778593365677 -0.00018911561052238125 0 0 0 -3.8556889715760445e-05 +3214 0.0004673497674807999 0.00014335604798033759 0 0 0 3.457982960076193e-05 +5808 0.0006846115005550844 -0.0003720692943104028 0 0 0 -9.379019674745505e-05 +2937 0.0007807533200346919 -0.00044940691814129597 0 0 0 1.3532510240925327e-06 +3263 0.0005126929385978537 6.585794996690522e-05 0 0 0 -1.8214047142081436e-05 +9205 0.0005982263200593187 -9.710616524314057e-05 0 0 0 -5.918233094856205e-05 +3307 -3.1449101239813327e-06 -0.0005916050826723033 0 0 0 6.501441913830738e-05 +3332 0.0005665920411763006 -0.0005085886972169657 0 0 0 -1.3863698973095157e-05 +3347 0.0001452426799443065 -0.0006486850883721114 0 0 0 2.004512562796689e-05 +3369 0.0007247718825832644 -0.0006133241371635619 0 0 0 -7.17625621464058e-06 +3387 3.720723325978516e-05 -0.0003592801409497823 0 0 0 2.3758136777833554e-05 +3391 0.0006405594692479395 -0.0004911590721622042 0 0 0 -5.713472065044609e-06 +1373 0.000585675626016259 -0.0005597033989166317 0 0 0 1.757452828407344e-05 +3451 0.00013089876603779275 -0.00028874612703368694 0 0 0 5.139363680633471e-05 +3476 0.0006496282734665154 -0.0005761625065737626 0 0 0 -9.027183506122934e-06 +3493 0.000667846500724395 -0.00046005882670119573 0 0 0 9.250659433131653e-06 +3527 0.00013659178720808106 -9.433290053368751e-05 0 0 0 -4.555793791544322e-05 +3540 0.0007765888059040004 9.047239391915193e-06 0 0 0 1.7066395137345192e-05 +3635 3.233804539281464e-05 -0.00027313700021824324 0 0 0 3.676204862288385e-06 +3691 0.0001216742333250152 -0.0003550904572494085 0 0 0 -4.751300048962953e-05 +3696 0.0017245717845018995 -0.0013609555918820012 0 0 0 0.00014304720443601514 +8118 0.0003280387762459606 -0.0006259280243398373 0 0 0 1.033004839213715e-06 +3816 0.0003863347285549046 2.7312815551210866e-05 0 0 0 -2.5713875322989844e-05 +9058 0.0005635046010880897 -0.0006196664587319781 0 0 0 -4.258997684473263e-06 +3833 0.0007060393658056033 -0.0006835936889418407 0 0 0 2.729237740230695e-06 +5443 -8.454599215123438e-05 -0.0004218767239612717 0 0 0 -0.00023495608580243672 +3852 0.0004382160736226268 4.1892923520291746e-05 0 0 0 4.7752383735275705e-05 +9181 0.00027016694052396764 -0.0006090648912912857 0 0 0 -3.538201780287355e-05 +3921 0.0005730222008327744 -0.00029101861063201667 0 0 0 -2.2474417643478386e-05 +3148 -5.441322514561588e-05 -0.0006002049077788719 0 0 0 -0.00015442554313994968 +4059 0.000377630938160892 3.554816311808069e-05 0 0 0 3.23424752021585e-05 +4063 0.0006502738246798522 0.0002015890296595778 0 0 0 -3.125464660319121e-05 +4070 9.415479006959405e-05 -0.00028254070662688365 0 0 0 4.3602876828421204e-05 +4115 0.0002206073345245936 -0.0006747974868722759 0 0 0 9.560052300221081e-05 +9588 0.0011181526390445834 0.001888579273695926 0 0 0 -0.0012570944413860853 +4518 0.0005658774428170018 -0.0005230269553899203 0 0 0 4.199805980833249e-06 +4164 0.00027234324543494643 -0.0007379891551985118 0 0 0 1.6413819837539206e-05 +4214 0.0006721183155554209 0.0007424473183120746 0 0 0 0.0003231498624863039 +4227 0.00069852765680225 -0.0005327016449778992 0 0 0 7.065942273133583e-06 +4231 0.000493802715382739 -0.00013966375222669784 0 0 0 -3.247546068046652e-05 +4247 0.0003477667412807228 -0.0006397177992753603 0 0 0 1.9814321794299385e-05 +4313 0.0004237105036368529 -0.0006737329154597064 0 0 0 -9.605118333809342e-06 +4315 0.0006183388653529736 -0.0004141525150444706 0 0 0 -0.00016668873604430882 +4399 0.0004325939980217668 -0.0006769030145536341 0 0 0 6.701238496467655e-05 +9372 0.0006533296620168048 -0.0006430850010109031 0 0 0 1.689487670379884e-05 +4484 0.00022580032777181255 -0.0006303877154520167 0 0 0 0.00013792080099280632 +4563 -2.1439907085639727e-05 -0.0002549768548259574 0 0 0 5.899807433917639e-05 +4608 0.000534927697946142 -0.0003957771463028974 0 0 0 8.09867575409851e-05 +4659 6.653316289310048e-05 8.517857894194705e-05 0 0 0 -0.00017457524185188672 +4662 0.00025621720410624535 1.8115586253282833e-05 0 0 0 -1.3602552464080437e-05 +4681 0.0008876699997658334 0.00010431556339146366 0 0 0 2.6292305909297346e-05 +4704 0.0007055885747488149 8.297591321384883e-05 0 0 0 -2.7127860699107614e-05 +10 5.716382797374356e-06 -0.000623508924349033 0 0 0 1.7314872297876242e-05 +4747 0.0005469829097653386 -8.528358963948767e-05 0 0 0 -2.117289722089367e-05 +4378 -2.929665229577277e-06 -0.0005227054359146399 0 0 0 -0.0002419703642128504 +4756 -0.00014654358931527557 0.0004563409428034888 0 0 0 -1.2461245026936883e-05 +7541 0.000661727467224777 -0.0004173481427212981 0 0 0 -2.3601853973956963e-06 +4789 3.191526227201999e-05 -0.00038778704053335456 0 0 0 2.639735946264734e-05 +4867 0.00037320649424845293 -0.00017394182566368293 0 0 0 -8.350627577887148e-05 +7072 0.0004568037384761099 0.00018442259091636885 0 0 0 -2.2521392116664883e-05 +4922 0.0003720044986780079 -0.0005891551588062492 0 0 0 6.460745466239108e-06 +5001 0.0008479837397988734 0.00013137015943753095 0 0 0 5.415771002006577e-05 +5020 0.0005851795227669199 0.00015710161891812805 0 0 0 6.954098335928369e-05 +5052 0.0005006337239877552 3.543808269016233e-06 0 0 0 -8.220030440240651e-05 +8882 0.000637663938019561 -0.00045536278186398405 0 0 0 1.759141850755284e-05 +120 0.0007621583564885145 -0.0004754062844725253 0 0 0 2.6390430325611173e-06 +5126 0.0005076746723304816 -0.0003439334787174893 0 0 0 6.550026646968548e-05 +5166 0.0005542519954951754 -0.000559212323932457 0 0 0 -7.676364087630817e-05 +5177 0.0004951934772721735 -0.0006008547738203855 0 0 0 8.764253753072487e-05 +5230 0.0005591140084973643 -0.0003494414730919026 0 0 0 -6.872257500130064e-05 +5243 0.00070616177038485 -0.0003967881339536286 0 0 0 3.3353161063708835e-05 +5249 0.0006902133585611305 0.00010611362668125084 0 0 0 2.5619650151854072e-05 +7657 0.0005198242502493161 -0.0005458950166653197 0 0 0 1.9372595991651563e-05 +5328 0.0006964619721118829 -0.000669744582756268 0 0 0 5.5111309488634036e-05 +5332 1.7998663604820223e-05 -0.000732970121606973 0 0 0 7.168152477644457e-05 +9262 0.0021417734134423346 -0.00019856542843336815 0 0 0 -0.000873248725127282 +5383 0.00021455004285365076 -0.0002751591825256172 0 0 0 1.9057917032807516e-05 +5393 0.0002972142175737881 -0.0005563294027460131 0 0 0 6.827993875093736e-06 +5422 0.0005564078502616494 6.938644585210414e-05 0 0 0 8.394241078738367e-05 +8257 0.0003333322525487761 -0.0005514895213600578 0 0 0 3.2690765139838085e-05 +5486 0.00043090268026275914 -0.00046506314542837755 0 0 0 -0.00018023520992013455 +5502 0.0007657284415892106 -0.00046792619358447713 0 0 0 5.532773841727351e-07 +5517 5.648494152665344e-05 -0.0002925674433817883 0 0 0 9.740426964196498e-05 +5583 0.00037295601996958574 -0.0007128710535391238 0 0 0 4.5045341297530907e-05 +9627 0.00024152812233930638 -0.0006321822187891473 0 0 0 6.270121898255092e-05 +9047 0.0004871888465805561 -0.0005381449387323523 0 0 0 4.1618696129797504e-05 +5656 0.0003812698104341239 -0.0005037811511364917 0 0 0 -1.8406722691843285e-06 +5657 0.0010538034099330034 -0.0001954886934315882 0 0 0 -0.0009761776912109649 +9451 0.0007614121908254158 -0.0005138364313014946 0 0 0 1.8810712106199482e-05 +6964 5.176650882389974e-05 -0.0003558110044194858 0 0 0 9.923013591070516e-05 +5693 0.0005952945083093802 -8.834029059780671e-05 0 0 0 4.591136317101063e-06 +9719 0.00046606089524833984 -0.0003139804663756038 0 0 0 0.000397473582192552 +5730 0.0006142661888363086 -0.0004384085054922307 0 0 0 1.235240104658605e-05 +9158 0.0007474840181605666 -0.00044977713452316913 0 0 0 -1.018668319298505e-05 +5761 3.986087602238985e-06 -0.0006372201913952251 0 0 0 -0.00027399995538470297 +5770 0.00045491594834063347 -0.0006091810420526941 0 0 0 -3.200145409240725e-05 +5795 0.0007273675596726756 -0.0003255526124547501 0 0 0 -5.312078007253372e-05 +5819 0.00028059279078804266 -0.00017588127723735944 0 0 0 -0.00013521323906873548 +5875 -0.0009001410822573279 -0.0009473881645883225 0 0 0 -0.0010357141441108806 +9260 0.0006605650444801 -0.0006909346083128565 0 0 0 6.067004242689665e-06 +5893 -0.0007934729893047612 -0.0008556600712304495 0 0 0 0.0008259812518321472 +5917 0.00017935641939352176 -0.0002834092960022316 0 0 0 0.00010978123532703307 +5975 0.0005199709792894893 -1.6065727325831855e-05 0 0 0 -9.468224279786032e-05 +952 0.0007437766499611548 -0.0005270269112622353 0 0 0 3.159448478930685e-05 +6027 0.0005633072311578369 -0.00033038985074994987 0 0 0 -5.2845987796887175e-06 +6066 0.0005915016700201675 -0.0003684390635849276 0 0 0 8.821725504809743e-05 +6105 0.0006639253409055847 -0.0002919882287725243 0 0 0 -3.1135244101859036e-06 +6130 0.0007047092290488973 0.00010012003359569159 0 0 0 1.0856070106163094e-05 +6132 9.46854668049558e-05 -0.000588071438806014 0 0 0 -8.123150535898356e-05 +2468 0.0005765006228857855 0.00016274182161768545 0 0 0 7.468348802717578e-06 +6209 0.0006197207885407236 -0.0006238199808501009 0 0 0 -6.913601327664032e-05 +6220 0.000749555582414254 -2.2210262299481345e-05 0 0 0 2.4130153905005803e-05 +6258 0.0005442794138685612 -0.0004543250318367932 0 0 0 -3.6139271189018196e-05 +6294 0.00040267536948071037 -0.0006431257186912281 0 0 0 1.1935573206823273e-05 +6332 -1.2182358943813772e-05 -0.0005830481404452367 0 0 0 -0.00027509390832520836 +6413 0.0006579291783206535 -0.0006639268433037218 0 0 0 -1.1681372749626037e-05 +6420 0.00037614210606083524 -0.0002965667841377332 0 0 0 0.00023528254137348208 +6441 0.0005134411097922547 -0.00024542314040069523 0 0 0 -0.00011250244105506221 +6476 0.0005812532335200109 -9.642384350124397e-05 0 0 0 4.646860869592117e-05 +9928 0.0007717247121015214 -4.891881379507984e-05 0 0 0 2.7127421900070493e-05 +6499 0.0008091908364763398 -0.00012429940790402872 0 0 0 -5.433284566217924e-05 +6519 0.00037677343359745385 -0.00015529486069928343 0 0 0 -9.711306801530117e-05 +6987 1.1777179515217169e-05 -0.00021422163904247343 0 0 0 -0.00023766797306846475 +2943 -9.111902083268339e-05 -0.0003241195362930923 0 0 0 -0.0002919624412196335 +6590 -0.0001940227916870477 -0.0001565040510624104 0 0 0 0.0003089924993009946 +6592 0.0006740118920929439 -0.0005311141868987274 0 0 0 2.5931405361364602e-05 +3851 0.0009442920335488585 0.0002826601812926455 0 0 0 1.9507283448212026e-05 +6634 0.0008061987413216449 -7.300853446180248e-05 0 0 0 7.352039570743148e-06 +3864 -0.00011238116952567528 -0.000414232004302236 0 0 0 -0.00014332619345523348 +6643 0.0003907618461358924 -0.0005048390396018368 0 0 0 5.5890692906859245e-05 +5069 0.0004175483505308996 -0.0005070369436991318 0 0 0 2.586897100215835e-05 +6702 0.000164622305864968 -0.0002744422141838602 0 0 0 7.299051257148991e-05 +6830 0.00028811581504033603 0.00010927711276761015 0 0 0 6.424019810469212e-05 +6878 0.00012013957805247374 -0.0006486591922254423 0 0 0 -1.3762553401847091e-05 +6882 0.0006219758991857749 -0.0006731610615150312 0 0 0 8.326689587079545e-05 +6893 1.9796627058789924e-05 -0.0006619493233885604 0 0 0 -3.1653050489966635e-05 +6912 0.00037798244065726986 -0.0007485045570797785 0 0 0 -4.4195661152458884e-05 +6920 0.0006131468783995988 -0.0003041135752720698 0 0 0 9.81646216147249e-05 +1687 9.38912827099388e-06 -0.00032579390303188197 0 0 0 -3.7773568394033257e-07 +9784 0.0006183916354523912 -1.6161745057943567e-05 0 0 0 1.893874721863524e-05 +6978 0.00033711457845047704 -0.0007055065697045407 0 0 0 4.620952544007379e-05 +6999 0.00015179516518768109 -0.0005049783848981942 0 0 0 -0.0002769000198655768 +7003 0.000598177446899271 -0.00027271897082057803 0 0 0 0.00014440027838307323 +9620 0.00032897662822867316 -0.0005543793998270681 0 0 0 4.4068203407650334e-05 +7052 0.0005367240464447567 -0.0005372866926994446 0 0 0 1.6955992664032204e-05 +9517 0.0004280489734717589 -0.00025746581135680424 0 0 0 0.00011412310128106005 +7101 0.0006671942203268622 -0.0006934836162805611 0 0 0 -2.9935723606088923e-06 +4979 -9.058861953041661e-05 -0.000324596510283852 0 0 0 0.0001735006123379059 +7137 0.0005309822062568244 -1.0231363334660883e-05 0 0 0 7.310726217769824e-05 +9861 0.00033408635621966443 -0.00016344068515299705 0 0 0 -0.0001282438244913208 +7181 0.0004778569762576134 3.351448983946369e-05 0 0 0 -4.749314656144432e-05 +7187 9.710866922929404e-05 -5.663854828295249e-05 0 0 0 6.339494369980115e-06 +8939 0.0008497737675832127 -0.00017726608711321934 0 0 0 -0.00041220896709676005 +2121 0.00045847018112258426 -0.0005339572431318189 0 0 0 5.990616692130743e-06 +7212 0.0004985385948087322 -0.00012780487532139756 0 0 0 -1.9781574418226586e-05 +8735 -0.0005720315420078818 0.00029014468443589283 0 0 0 0.002410432343523907 +9163 0.0002798701415414847 -0.0002567992185986809 0 0 0 4.414735771499919e-05 +9850 0.0005514031095910513 -0.0005722577003014517 0 0 0 6.299137002878956e-05 +9071 0.00010296674975920046 -0.00012889168122243072 0 0 0 9.572558630390166e-05 +7319 0.00037749334455756023 -0.0001392384986817266 0 0 0 3.1295605343148144e-05 +4435 0.0007595894368873125 -0.0004884341078074079 0 0 0 4.940949227092704e-06 +7352 0.0007329431087726082 -8.020110292750369e-07 0 0 0 -4.536865773823653e-05 +7387 0.00036156717706047384 0.00014639594019853246 0 0 0 -1.0044103041439814e-05 +7434 0.0006397849710723689 -0.0003709301364589091 0 0 0 6.981267775013229e-05 +7442 0.0008901730133890637 0.0001391029493123572 0 0 0 -4.015586356723e-05 +7476 0.0005284056774983836 -0.00029739581854457635 0 0 0 0.00010739565815282584 +8883 0.0008857180922739505 0.00011146682650284543 0 0 0 1.3096227689732092e-05 +7505 0.0005480536953146231 -1.5564178169919145e-05 0 0 0 0.00011598124732872311 +6342 0.0005838655462697753 0.00022839689210066365 0 0 0 4.210446037034434e-05 +6438 0.0007588412370905048 0.0002252659682620177 0 0 0 -1.3046608625781423e-05 +7701 0.00043834663338598526 -0.00037178391059781003 0 0 0 0.0001469755928150456 +7702 4.830048808525605e-05 -0.00031409920500704436 0 0 0 1.4011797204111361e-05 +3931 0.0005853552394974797 -0.0005237183005449331 0 0 0 9.278543436145349e-06 +7721 0.0004765924735460604 -0.00033944586497906343 0 0 0 0.00016782901048609648 +7750 0.00043610424720370096 -0.0005998422621671011 0 0 0 2.2339496361183056e-05 +7755 0.0006565984596992676 -0.0005124878022632873 0 0 0 -1.5119978978127404e-05 +7785 0.0006440384387565062 -0.0005586288876179501 0 0 0 -0.00010700273715169834 +7798 0.000526079048323703 -0.0005692516572295091 0 0 0 3.670509896461069e-05 +7806 0.00038353842460111745 -0.000625514394702464 0 0 0 2.695113162929036e-05 +6521 0.0006131577065358237 -0.0005434362380942262 0 0 0 1.3805440767201572e-05 +7825 0.0007387837393299588 -0.0006228606145521059 0 0 0 6.539785277790461e-06 +7827 0.0001450859071133436 -0.0005901404000794869 0 0 0 -5.4651629480699264e-05 +7830 0.0008032328586204098 -8.5382111711335e-05 0 0 0 7.732540199756965e-05 +7845 0.00036752197823945065 -0.0004947408899385671 0 0 0 -0.00015101230766422397 +7846 0.0005841851348579172 0.00018877909935539569 0 0 0 4.598592497726577e-05 +7340 0.0005664917761586277 -0.000488978677894615 0 0 0 4.679277254176124e-05 +7901 0.0005287730132425294 1.1409843181099635e-06 0 0 0 -1.8346271051440028e-05 +7983 0.00044519226194073567 -0.000539804328708291 0 0 0 1.4227519262499323e-05 +7990 0.0004676927874176198 -0.0005833028641937013 0 0 0 -7.550006194617552e-05 +7996 0.00021079184373798746 -0.00030985022399685424 0 0 0 0.00017720951321994493 +8022 4.332392096920043e-05 -0.0007118586552667495 0 0 0 -0.00014746065586809066 +8028 0.0004266222195670845 -0.0001111831281723961 0 0 0 -0.00017736361663209054 +8066 0.0005698013693111657 -0.0002517339234432989 0 0 0 -0.00013033725177788411 +8068 0.0007605669349219382 -0.0004529721417679178 0 0 0 -6.205585894989785e-06 +8075 0.0005719295154939537 0.0001179133459286912 0 0 0 4.219939641379617e-05 +666 0.000721927558620249 -0.00044458208003174973 0 0 0 -9.752060947301116e-06 +9091 0.0003846030916615925 -0.0007596819577956557 0 0 0 -3.5487310500451564e-05 +8163 0.0008316880737275641 0.00029420682648322434 0 0 0 -6.582512574605718e-05 +8185 0.0003551281135902872 -0.0007993119680851434 0 0 0 1.9800836408029256e-05 +8242 0.00030997110135901957 -0.0005937542831348624 0 0 0 9.787805455425186e-05 +8247 0.0006084725905004418 -0.000538765191517173 0 0 0 -0.00017899097522083393 +8321 0.0006254090174633945 -0.0005227221423095796 0 0 0 1.3173038754360451e-05 +8328 0.0004275999320010568 0.00015462889729571453 0 0 0 -1.0004172251273582e-05 +9155 0.0005689106685524946 0.00013964664095358155 0 0 0 0.00027773072942035556 +9311 0.0006431939278608599 -0.0006270631094629682 0 0 0 2.7222615189884407e-05 +8434 0.00025184358509839033 0.0008231116516778188 0 0 0 0.00018677957484125905 +3979 3.675357401557069e-05 -0.0005486480010433449 0 0 0 -5.4359056113688876e-05 +8461 0.000713995616605726 -6.670690453420816e-05 0 0 0 -0.00012352774214230417 +8465 0.0003370749582036875 -0.0006584240853630951 0 0 0 8.460825415807246e-05 +8492 0.0002614430816207005 -0.0005521033432847557 0 0 0 -2.7720219368764977e-05 +2749 0.0007261123854646173 -0.000498475368856056 0 0 0 4.990832693767398e-06 +8521 0.0005202588804361551 -2.6776388462445127e-06 0 0 0 -0.00014415088557464298 +8856 0.0003770998820743932 -0.0007749679773460217 0 0 0 2.5441351196411422e-05 +8570 0.0005674004573363046 -0.00059438348774479 0 0 0 4.575757733670384e-05 +8590 0.00035741927593181867 -0.0007032733877956813 0 0 0 5.3087340745012625e-05 +8599 0.0006551801093765459 -0.00027620386792177957 0 0 0 9.3319365839933e-05 +2139 0.0006212281622561811 -0.0005779954906411915 0 0 0 3.236456852900269e-05 +8643 -5.9006982434205294e-05 -0.0007922209180471551 0 0 0 0.0014378560381011795 +9695 0.0005038334996299769 -0.00043319925692833597 0 0 0 -7.277366648800067e-05 +8646 0.00042979929997352776 -0.0006422719636063605 0 0 0 -4.13874177888994e-05 +8732 0.0005724448077782673 -0.0007767017848071768 0 0 0 7.056738306169401e-05 +4467 0.0006799650599912624 -0.00033905954616409665 0 0 0 3.713301136645453e-05 +9418 0.0001934289060349404 -3.4492206910998034e-05 0 0 0 -0.00022528778355559482 +8560 0.0007201969143950012 -0.00043533444537729814 0 0 0 -3.230695932134775e-05 +4186 -0.0005907955121184044 -8.833846577621069e-05 0 0 0 -9.343315963037669e-05 +77 -2.2225939615395576e-05 -0.0004421940005840361 0 0 0 -3.704628595481736e-05 +403 -0.0002438853717009817 -0.0002565284567751871 0 0 0 6.573892065300126e-05 +130 -0.00010773121268485976 -0.000417075455211577 0 0 0 2.3414363675894588e-05 +6293 -0.0003022587508131887 0.0002258823594558395 0 0 0 -7.758779463767909e-05 +172 -9.702093448935886e-05 -0.00044360506538857386 0 0 0 1.6234554137288838e-05 +272 -0.0004809511943494968 -0.000103662587350315 0 0 0 3.6269045474029125e-05 +4997 5.681750451629705e-05 0.00011644026376738817 0 0 0 2.185757763086912e-05 +6114 -0.00018360643572604043 -0.0005884879071395766 0 0 0 -2.929087341553661e-05 +9694 -0.0004679873691916626 -0.0002361767261101175 0 0 0 0.00013354467873215355 +8552 -3.068067925646524e-05 -0.00047396431744784736 0 0 0 0.0001511540593673562 +873 -0.00011077837113002605 0.00012846136285115783 0 0 0 -7.306849330782997e-06 +6291 -0.0004466230271870942 0.00010724950492606731 0 0 0 2.3690987825590595e-06 +911 1.2415009714254616e-05 -0.00037465184180736274 0 0 0 -2.7941087394631e-05 +985 -5.9061825972959004e-05 -0.0004754433640596455 0 0 0 2.5674598533230946e-07 +9439 -0.0005439918883740436 0.00015328679927604212 0 0 0 -0.00012311563062159528 +3471 -0.00019918085771479426 -0.0005984498730112637 0 0 0 -2.1399530467871235e-05 +1101 -9.136670600482019e-05 -0.0003579252593457975 0 0 0 8.582619738964018e-05 +1165 -0.0001363164577844433 -0.0005123280525647366 0 0 0 7.617718005751029e-06 +1171 -0.00011054810194669268 -0.0005504516264895346 0 0 0 1.5562086935905778e-05 +9595 -5.015920439634346e-05 -0.00044550712782155005 0 0 0 0.0001495640260262788 +1179 -3.9742919716698206e-05 -0.0005746644390946466 0 0 0 -3.035942954750222e-05 +1231 -4.620171407855824e-05 -0.00037925981385413985 0 0 0 -1.1300645288818802e-05 +1252 -1.3727027771601485e-06 -0.00026950733057619976 0 0 0 -5.6316065759863234e-05 +2934 -0.00043940389952863045 0.00013138766305949135 0 0 0 -3.148824901308428e-05 +9883 -5.2591988673953406e-06 4.109831851205987e-05 0 0 0 -0.00011475808384205026 +1669 -0.00017192554777382087 0.0001069104148032864 0 0 0 3.156214559137902e-05 +9706 -0.0003260490739129722 0.00015537742328061252 0 0 0 -0.00010976936522153823 +1693 -1.3163153979912595e-05 -0.0004330057973906647 0 0 0 -3.264773258422924e-05 +1751 -1.730649242382218e-05 -0.0004000190600832805 0 0 0 -5.86732458878937e-05 +8628 -0.0006181693483522895 -0.00027162006847365674 0 0 0 0.00015586827525607494 +8600 5.9700639050915275e-05 0.00014731303039950539 0 0 0 5.350545135268645e-05 +1863 -0.0001343700007745783 -0.0004988416721203842 0 0 0 -2.0929481228142377e-06 +1945 -9.887448079259473e-05 -0.00022683002783438326 0 0 0 3.912752306689364e-05 +1973 3.8699104261206293e-05 -0.0003590202063778884 0 0 0 -7.332547850314937e-05 +1990 -0.00011932755639667535 -0.0005528784528617821 0 0 0 2.2433574805486026e-05 +2014 -0.00013842396063332973 -0.0004664864013651007 0 0 0 -6.637686747282574e-05 +8134 -0.0006922540342830005 -2.600364917508042e-05 0 0 0 -0.0003133460581731788 +9426 -0.00020788328782896833 0.0002007482406339635 0 0 0 0.0001645131360502307 +2193 -0.00012268431313038107 -0.0005740897142894109 0 0 0 -1.3369798429585639e-05 +2255 -0.0004861595323762281 -0.0002622104221008247 0 0 0 9.265083589161678e-05 +2291 1.1463028349040783e-05 -0.0002763727205645129 0 0 0 -4.409499652589305e-05 +2303 -8.698405796156173e-05 -0.00047582863313373367 0 0 0 -3.1994789246395424e-05 +8641 -6.571228872209423e-05 0.00011105300469003246 0 0 0 2.9597392193798327e-05 +2353 -0.0001271361627110675 -0.0005692096212264515 0 0 0 2.6040791971173264e-05 +2371 -0.00013734393337805925 -0.0005463873935966054 0 0 0 -3.55704911850503e-07 +2473 5.1794913737992746e-05 4.427324488006435e-05 0 0 0 0.00013200106382256046 +2518 -4.264231984880635e-05 -0.0004284612243852285 0 0 0 -0.00013888152687693784 +2625 9.411223497878198e-06 -0.0003424359466420059 0 0 0 -2.7775128528747233e-05 +8695 -0.00032718249517670126 8.79744151304336e-06 0 0 0 6.399135965682099e-05 +8724 0.00011042020549295275 -5.5094627492954486e-05 0 0 0 -0.0002992613044738782 +2715 -9.962116599930858e-05 -0.0005614392586271888 0 0 0 2.6179262073290975e-06 +2865 -0.00035862196081798306 -0.00012029130146792163 0 0 0 0.00017231977359666886 +2888 -0.00012171998816352126 -0.0005683115271876028 0 0 0 -2.4293413789024315e-05 +9160 -0.0002568084436038351 5.544587007360262e-05 0 0 0 -6.494993191326728e-05 +3007 -0.00013538247376758332 -0.00037425410571840763 0 0 0 7.401638136911879e-06 +3084 -0.00015048044355451344 -0.0005398367992896641 0 0 0 -1.2409058579136397e-05 +4470 -0.00041044159620862424 0.0002132626267545045 0 0 0 -2.5221405544074566e-06 +761 -0.0001664794666814314 -0.0005575076715888425 0 0 0 -8.937206096155253e-06 +3273 -0.00010687962224231839 -0.0005565743696247475 0 0 0 1.7540504949575403e-05 +8998 -0.0004451852909666826 0.0001273953019096761 0 0 0 6.3802932817747906e-06 +3487 -3.516131710717398e-05 -0.00016010567988505671 0 0 0 8.446634338484324e-05 +3667 5.1304524145156004e-05 -0.0002841625323886446 0 0 0 -5.181917726313953e-05 +3684 -0.00031785860184683264 -0.0003637185360574558 0 0 0 0.00019036827708666856 +9585 -1.152686836884209e-06 -0.0003675658487749748 0 0 0 0.00011543430582241108 +2192 -0.00027063153265502606 0.00022024477713242764 0 0 0 2.8982991823797233e-05 +3924 -0.00012713573814681785 -0.0004779319293314224 0 0 0 6.975974826365246e-06 +4196 -0.0001422668860825077 7.747389637213576e-05 0 0 0 9.90527569923145e-05 +9957 -0.00032747532596116467 -0.00035160655597171747 0 0 0 -0.00017463435688233744 +4010 -5.764021820405616e-05 0.0001597500093678297 0 0 0 1.9485566088437837e-06 +4027 -6.090546448747528e-05 -0.00042270818915506996 0 0 0 -6.010277054655762e-05 +9305 -0.00014351912320841119 -0.0005890879544976736 0 0 0 0.00017481218054076376 +8044 4.5649210373868726e-05 3.5734453815567516e-05 0 0 0 -0.00015909395710322528 +4238 -0.00039193437643796937 0.00017072997367297436 0 0 0 1.038051742985764e-05 +4135 -5.798517267481367e-05 -0.0004938931913317534 0 0 0 6.31335978677513e-05 +4151 -0.0004965027526935849 5.4207126931069386e-05 0 0 0 0.00011664793276263007 +1823 -0.00016130642670702234 -0.0005167083771182992 0 0 0 5.842293379701473e-05 +5289 -0.00042480507220110897 0.0001308524717861762 0 0 0 -2.4374498411595318e-05 +4414 7.548617096869992e-05 -0.0003223867194118668 0 0 0 -0.0001260238863465337 +4425 -0.00015321839014238224 -0.0005075777145379289 0 0 0 1.558132221095723e-05 +4432 -0.0005711110527333197 0.0001081727422914701 0 0 0 -0.00018398447023924912 +4598 2.0240649111424445e-05 -0.00041466182836461186 0 0 0 4.271999097917559e-05 +4677 -0.00040080166555603417 -0.00025752465462950053 0 0 0 -8.348717824989178e-05 +4716 -0.0003032654344778705 -0.00035242704582714345 0 0 0 3.945490453529135e-05 +1192 -0.00035792814394500493 0.00015862359207879765 0 0 0 -3.036113239427537e-05 +9484 -0.0003458319437838931 0.00014213256788517684 0 0 0 0.00014556953821528548 +2196 1.207683733165537e-05 0.00014499934460115863 0 0 0 7.456494691544675e-06 +4972 -9.67651633238702e-05 -0.00041759889702430996 0 0 0 4.2738150699588445e-05 +4978 -0.00012244088457178507 -0.000554816373088777 0 0 0 -4.1458053910736046e-06 +9065 8.856017926313348e-05 0.00012864989309073412 0 0 0 8.517974311042559e-05 +8743 -2.7059426334864855e-05 -0.0005972692755003526 0 0 0 -0.00020708623163599008 +4993 -0.00024965675014971904 -2.3654864578582505e-05 0 0 0 -0.0001283028793711295 +5006 -4.386358740748732e-05 -0.0005130232559796091 0 0 0 4.385146147825157e-05 +4003 -0.00020715417119719003 5.873528106079508e-05 0 0 0 6.925965091887586e-07 +5016 -0.00020698982193161953 -0.000608081681119631 0 0 0 -6.377819706873116e-05 +5032 6.574934648690564e-05 -0.0002723416513372656 0 0 0 -7.669188757054218e-05 +5054 -4.480188474042411e-05 -0.0006196125510435153 0 0 0 -9.281016083714586e-05 +5098 -5.044158142017272e-05 -0.0005170778609382271 0 0 0 -5.4879399279620225e-05 +8898 4.753442619723011e-05 -0.000271590154461273 0 0 0 -0.00019557847837614088 +8686 -0.00010922219858601054 -0.0006114883270647107 0 0 0 -0.00017317823160302697 +5140 -4.4806161293685017e-05 -0.0004296043916470801 0 0 0 -3.9571047013288944e-05 +5213 -0.0004115865871302181 -0.000139883994693228 0 0 0 -0.00021697850411449334 +5280 -4.411532444568712e-05 -0.0006166844000002039 0 0 0 -0.00017883895275684676 +367 -4.047628546794737e-05 0.00011309730593333732 0 0 0 -4.492489921827143e-08 +5361 -0.00015474187271241765 0.00013197617322596836 0 0 0 -4.6634426821829183e-05 +5387 -0.00015595764712652833 -0.0005893563913776651 0 0 0 1.0589667783759618e-05 +9709 4.7622998156701145e-05 0.00011150069973656243 0 0 0 0.0001130143557851817 +1394 -0.0006596659302638599 -2.052892065655584e-05 0 0 0 -1.6697109010062956e-05 +5441 -5.5571692208310535e-05 -0.0004245569071357134 0 0 0 2.8031888879661577e-06 +6902 -0.00013832516379036803 -0.0005457068188834515 0 0 0 -2.157056670358704e-05 +5454 -0.00026413860280056795 -0.00048570933557182003 0 0 0 -4.396011320120432e-05 +5504 -0.00013551078317820313 -0.0006054698809323717 0 0 0 -0.00011530528360624524 +9537 -3.6557791292169973e-06 -0.00037074017368043987 0 0 0 -0.00013314057350980566 +5558 -8.742230730759306e-05 -0.0004599976947344665 0 0 0 -8.200604816184886e-05 +5207 -4.0921083123992874e-05 9.146183780774127e-05 0 0 0 1.1814886403244208e-05 +4327 -0.00035096963914039975 0.00017763520502545952 0 0 0 0.0001969427357792056 +5755 0.00010537627145757398 2.028710566347365e-05 0 0 0 -0.00017769308993244626 +410 -0.0002128870150700562 5.144209719126913e-05 0 0 0 -3.021851305623288e-05 +5913 -0.00024291122359659136 6.325718740321015e-05 0 0 0 -0.00021170515266615147 +6449 -0.0001992837708251951 8.733077952562892e-05 0 0 0 8.302246760313733e-06 +6522 0.00010063702038732648 -0.0004871570874215893 0 0 0 0.00012074419756780635 +9273 0.0006728859099722194 -0.0003668888424077138 0 0 0 0.0011342332371151993 +6771 1.897679841237262e-05 -0.00040652664587243105 0 0 0 3.8841116364320845e-05 +5014 -0.00027026930814051875 -0.0002906080339749061 0 0 0 -1.6664168190348698e-05 +6855 -0.0001119189041936119 -0.0005223711322656744 0 0 0 5.496647779424602e-05 +6860 -0.0006427415629772366 -0.0006349575556585513 0 0 0 -0.00020056266601810075 +6866 -1.8424477240143226e-05 0.00016804150670011038 0 0 0 -3.2572617574678055e-05 +6873 -8.053277434000657e-05 -0.00039381909590217954 0 0 0 -4.8214713463864414e-05 +9455 -4.954937627673651e-05 -0.0004442294368242175 0 0 0 4.7814443922227015e-05 +9637 -0.0001517951764826863 -0.0005595496683744516 0 0 0 -5.4282943645039366e-05 +2481 4.716769366592252e-05 0.00013326539148003237 0 0 0 -2.0241244724701873e-05 +7025 -0.00014251080172990262 -0.000437732995112132 0 0 0 2.7532003206439356e-05 +8761 0.0006398879215594599 0.0012245923422769195 0 0 0 0.00020700897262671277 +7104 -9.844724218476839e-05 -0.0005355496678910554 0 0 0 -3.9648267473363334e-05 +7114 3.18837566239288e-05 -0.00039334967488865514 0 0 0 -0.0002897740520086526 +4392 -0.000402080112043136 0.00017463931891392164 0 0 0 -1.4976428398160006e-05 +7284 -3.051787004825051e-05 -0.0003868834370289522 0 0 0 -0.00016874110440154243 +7418 -6.580909457548128e-05 -0.0003827571537894087 0 0 0 6.050531746926867e-06 +7422 9.581302186000754e-06 -0.0005151322761136254 0 0 0 -0.00018815455418879612 +1278 -0.000482884374846006 0.0001988236619795945 0 0 0 -8.724371059133377e-05 +7564 6.173665061584774e-05 -0.0003351869551183783 0 0 0 -0.00010936836934762352 +7614 7.021715137395449e-05 -0.00023756386359788208 0 0 0 -0.00011100105621680125 +7764 -0.00038039795511117297 -0.0001427967667489267 0 0 0 0.00018868721516481057 +7811 -0.0003886280647708248 1.4573689005934308e-05 0 0 0 -0.00011069089707531378 +7951 -5.501501689504886e-06 -0.00030082217397234734 0 0 0 0.00012287718007969575 +2341 -0.00040950753346538215 -0.0003172698295563459 0 0 0 0.00011274743044459313 +7966 -0.00014513996339158774 -0.0006078399657605013 0 0 0 -0.000184642531629263 +7972 -0.00043530008091182494 0.00021094360366416152 0 0 0 -1.2750877273190301e-05 +2075 -0.0003945085676170902 0.00018888814044435565 0 0 0 2.765449034641347e-05 +8160 -0.00020539049898031557 -0.0006681351212460429 0 0 0 8.041437875100081e-05 +8239 -0.00031217862902633414 -0.000280889716646937 0 0 0 0.00022783206857743095 +9093 -4.84234741334503e-06 -0.00044621896916090514 0 0 0 -0.00016147801325752022 +3174 -6.96046696241249e-05 -0.0005007757925355492 0 0 0 -0.0001544302616007291 +2697 8.724609362087392e-06 -0.00047320584547283094 0 0 0 -5.985870820961749e-05 +1279 -0.0003692675506685581 0.00018938868161033894 0 0 0 -3.0513189112085154e-06 +9373 -0.0002515770928683546 -0.0002680106062464396 0 0 0 -3.900253506780551e-05 +4336 -0.00024008151631594934 0.00017045130643219726 0 0 0 2.9957465137615898e-05 +4398 -0.0005821597122352355 0.00015468563385475872 0 0 0 -0.00013026991570301547 +3941 -1.727860432145972e-05 -0.000551268686238714 0 0 0 -5.389133600667408e-05 +6640 -0.0016706293434237919 -0.0008926278674193655 0 0 0 -0.0013320807624785408 +9119 1.1606415787992354e-05 -0.0005644213944092893 0 0 0 -0.000150144025383301 +8667 -0.0003894775792871383 0.0001479953117855097 0 0 0 3.2789044017584005e-05 +7557 0.00011972817811847197 -2.0939477406569335e-05 0 0 0 -3.800070903360665e-05 +6378 -0.0005740613217657761 0.00016065114770945758 0 0 0 9.549343246902476e-05 +9264 -0.0002792152502736798 -0.00020491788899818647 0 0 0 9.751613864304304e-05 +6808 1.2158052142789441e-05 -0.0006103616750544864 0 0 0 -0.00028676822302514356 +7908 -0.00058004171580478 7.975616301648086e-05 0 0 0 -0.00014670440990775446 +225 -0.0002789829807189479 0.0002305259245843394 0 0 0 -1.6471426054320583e-05 +3030 -0.0004221174138025143 0.0005469363242835199 0 0 0 -8.971215719062451e-06 +57 -0.0006005447772814128 0.0005645063009374617 0 0 0 8.02156797959448e-07 +64 -0.0003731789201800723 0.0005462866222395082 0 0 0 4.882120958002988e-06 +65 -0.00010053562906596409 0.00020764618233807736 0 0 0 5.461436384705181e-05 +74 -0.00045172238581987854 0.0004559469459008756 0 0 0 -8.589405292902685e-07 +79 -0.0003364732465756423 0.0004168194917125803 0 0 0 1.448588127136136e-05 +162 -0.0005053598788627675 0.0005102218492173216 0 0 0 1.867837539012577e-07 +1081 -0.0005467029271658874 0.00048407385005525997 0 0 0 -1.6009227947655165e-05 +235 -0.0004655161372904911 0.0005654328316420423 0 0 0 -1.505945587691804e-05 +2540 -0.0005505427222959005 0.0005720228111258456 0 0 0 -1.3343207127082807e-06 +253 -0.0003023427368772802 0.0004781705692467896 0 0 0 1.970775340870777e-05 +302 -0.00013063001961130042 0.0004183669544778337 0 0 0 1.2795506709981437e-05 +311 -0.0003581787195746164 0.0005027618141636952 0 0 0 8.257312265707442e-06 +359 -0.0001645024297280997 0.0003931968740758466 0 0 0 1.466989998657307e-05 +3577 -0.0005532193206417118 0.0005174064361539218 0 0 0 2.608077574669293e-06 +4466 -0.0004855868200973921 0.0005239405894038029 0 0 0 -1.5800484574106394e-05 +2842 -0.0004952809930213672 0.0005579471976882422 0 0 0 3.1521775863750754e-05 +451 -0.0005095902860946575 0.0005026966042791903 0 0 0 1.3723973391022466e-05 +460 -0.00016370427147192383 0.0002384573204032955 0 0 0 3.4046584832558384e-05 +474 -0.00017324658426199062 0.00033472255449533476 0 0 0 2.2327748587366894e-05 +479 -0.0002531827347510438 0.00048698253515810577 0 0 0 2.082212141146617e-05 +3070 -0.0006140949208541413 0.000507143586020801 0 0 0 1.911229556224173e-05 +8565 -7.320840470654082e-05 0.0001148933683194807 0 0 0 0.00020701752433241287 +719 -0.0002457056744206046 0.0003391168607758177 0 0 0 -9.709355276129757e-06 +730 -0.00025319584207812035 0.0003334011250074503 0 0 0 -1.1881405170169126e-05 +752 -0.00012195098638759901 0.00017675529064647806 0 0 0 3.9225587166362675e-05 +755 -0.00014754090442226203 0.00024460514080349165 0 0 0 3.001779677847374e-05 +758 0.0006369601037798614 -0.0013331014994768737 0 0 0 0.0011836692871753092 +850 -8.494926580784935e-05 0.00029804771795741505 0 0 0 1.2560702802758493e-05 +870 -5.8064511621738605e-05 0.000293742793769088 0 0 0 -6.156585562359801e-05 +903 -8.047628530996048e-05 0.0002734258174300323 0 0 0 8.295623861809536e-06 +5627 -0.0006122436074144882 0.000501404914375786 0 0 0 5.394160187466972e-06 +993 -0.00017522723729310232 0.0003485460395642112 0 0 0 2.2109044979111403e-05 +1001 -0.00024061497260379877 0.000487174944087293 0 0 0 -4.848118027636668e-05 +1010 -0.0004384508486307432 0.0005026279423510146 0 0 0 -2.5004180048084965e-05 +9499 -0.000560286894980821 0.0005025797873842891 0 0 0 2.391937392817821e-05 +1065 -0.0003598171611003462 0.0002307022992483387 0 0 0 -0.00010578654503520698 +5904 -0.0003758554287876376 0.00034866106834339453 0 0 0 4.1430882857758384e-05 +1092 -0.00011223083698690703 0.00024146315440650362 0 0 0 2.7736821912195774e-05 +1181 -0.0002833872756631084 0.00045377062567400614 0 0 0 7.714712124675728e-05 +3134 -0.00048254197895767806 0.0002355127436349071 0 0 0 -3.715129346517982e-05 +1214 -4.2247303827358635e-05 0.00026242496335330325 0 0 0 5.3139177788014834e-05 +2398 -0.0006225909689180037 0.000495012214760077 0 0 0 -1.8488577837319104e-05 +1763 -0.0005643781956748897 0.0005577266588028237 0 0 0 8.366865877147722e-06 +1392 -0.00018386003425031902 0.0004230531378601564 0 0 0 8.492781644079744e-06 +9980 -5.1213897059002377e-05 0.00027714372803544734 0 0 0 3.628146562145137e-05 +1453 -0.0004263076571010818 0.0005703262042683357 0 0 0 1.3313620754486724e-05 +7699 -0.000572476252063521 0.0005875348151475774 0 0 0 -1.002344421497339e-05 +9532 -0.00029884467674095807 0.00046982893651795313 0 0 0 0.000141744803786894 +1483 -0.0001667508823738512 0.0003718741036031506 0 0 0 6.810553966943469e-06 +2407 -0.0004909723929219988 0.000576305720267441 0 0 0 3.6827151835619413e-05 +2437 -0.0005966073590638562 0.0004782148916039147 0 0 0 -6.049947346117579e-06 +1684 -0.00029224647798700677 0.00027226933066597014 0 0 0 3.777738425890407e-05 +1699 -0.00019578522886979312 0.000259185016261295 0 0 0 -2.3958875791559394e-05 +1783 -0.0003419020151919424 0.00041737900969488775 0 0 0 3.3665198566639555e-05 +7326 -0.0005182360320124183 0.0006009635431398723 0 0 0 -6.556555271287913e-05 +1921 -4.6099117207946365e-05 0.000144702368394064 0 0 0 6.627195198615968e-05 +1960 -0.0005147228803546221 0.0005500466742157873 0 0 0 2.1810110239314023e-06 +1951 -0.00025613497206767775 0.00047609787951041315 0 0 0 2.718113777579238e-05 +1997 -0.00048721346215424636 0.0004923014902039034 0 0 0 -9.554389664462484e-06 +661 -0.0004391531829957528 0.0005555104495393966 0 0 0 1.2098355818984103e-05 +2180 -0.00024957014694497275 0.0003681216835018061 0 0 0 4.0310205894184384e-05 +8161 -0.0005980882117596695 0.0004899080686132018 0 0 0 -1.1884003739676154e-05 +2278 -0.00020120992747871912 0.00047068278089031236 0 0 0 -5.239711285915586e-06 +2287 -9.278454122487577e-05 0.00019777283920517945 0 0 0 -1.0657869354101097e-05 +2289 -0.00037228867770792604 0.00046930134586452033 0 0 0 -1.0969479594959101e-05 +2305 -6.953226039579791e-05 0.00023488499000741037 0 0 0 8.660791963010113e-05 +7625 -0.0005410495038921213 0.0005447126415054466 0 0 0 -1.1808880266681085e-05 +2401 -0.0003676550569680863 0.0002548087746454354 0 0 0 6.25858748306897e-05 +7999 -0.0003242991116086482 0.00028510986735805823 0 0 0 -4.256478269012174e-05 +2412 -7.31375799859964e-05 0.0003129864197578677 0 0 0 5.3168380584186876e-05 +2453 -0.00023516682829536386 0.00037792430824007753 0 0 0 3.674399305997321e-05 +4491 -0.0006190852445002534 0.0005428109573954897 0 0 0 -1.566263976563188e-05 +3349 -0.0005978706041108529 0.00037996203071675815 0 0 0 1.0170729614133324e-05 +2544 -0.00044509725671052955 0.0005087930687571476 0 0 0 1.0610798742197961e-05 +542 -0.0005205915472831983 0.0005665204672574619 0 0 0 1.8587452884535146e-06 +2586 -0.00046572850360324943 0.000516706849687907 0 0 0 2.5894227149621446e-05 +2617 -0.0003130253041651243 0.0003904963229912849 0 0 0 -4.5813441981002185e-06 +2702 -0.00028462496912032206 0.00032820918805199074 0 0 0 -2.283897934676061e-06 +2737 -2.899236288865378e-05 0.00015466619456909827 0 0 0 6.340075426920258e-05 +9982 -0.0002537562380426589 0.00038410545512923056 0 0 0 -1.2725796874809538e-05 +2786 -0.00016097054525471724 0.0002330612277653972 0 0 0 -9.073143369419291e-05 +2796 -0.0003935074666622062 0.0005422501808857855 0 0 0 1.4238919812589976e-05 +2795 -0.0004899545493188036 0.000603817148210483 0 0 0 6.44130962869557e-05 +2848 -0.0001150423217748719 0.00038281089563092243 0 0 0 2.6204626380866773e-05 +2893 -0.0005156641156498629 0.0005041271505446168 0 0 0 2.19381278938814e-05 +2910 3.250708586117987e-05 0.0002158021464687721 0 0 0 7.346874234797852e-06 +5130 -0.00031866730389325904 0.00029801855187334666 0 0 0 4.309239020636519e-05 +1460 -0.0005500562568652943 0.0005565439072868903 0 0 0 -1.8191274554548017e-06 +2976 -0.0004840043811343096 0.0005724387935593107 0 0 0 -3.6212279254383586e-05 +2994 -0.00031766341583692055 0.0005519779446093526 0 0 0 6.833901191563758e-06 +3043 -0.00012744983618188994 0.0002370403904786976 0 0 0 7.35654146964177e-05 +3797 -0.0005706494931504918 0.0004972264867210981 0 0 0 1.5370564423866345e-05 +9433 -0.0004964997133817967 0.0004937517873239818 0 0 0 4.531543631890503e-06 +1922 -0.000644761969791855 0.00045772700539434074 0 0 0 -1.6720687254421963e-05 +3132 -0.00019931654834075648 0.0004664590367390651 0 0 0 2.9527404612012284e-05 +3576 -0.0005738846163113783 0.0005127026847448009 0 0 0 -1.7697233030201767e-05 +3139 -0.00036475002189805087 0.000520238003326015 0 0 0 2.375254497373319e-06 +3216 -0.00025638357204334607 0.0005063574746957844 0 0 0 2.4523512129160205e-06 +3242 -0.0002991029579274112 0.0004551085910248036 0 0 0 -6.604570693570409e-05 +7873 0.0011414662327878734 -0.0005659119570424776 0 0 0 -0.000543633443690589 +3290 -0.00010973562459099978 0.0003232804698743117 0 0 0 4.080297019698434e-05 +3311 -3.966040120789955e-05 0.00020659377028075114 0 0 0 6.269407862562006e-05 +6263 -0.0006453494565290157 0.0004653044492746178 0 0 0 3.1500838632036916e-05 +9227 -0.0005832486880161947 0.0005051500038638081 0 0 0 1.4559746639348576e-05 +3449 -0.00020723673737905942 0.0004528940710246872 0 0 0 -4.052844777608807e-05 +9312 -0.00030430901442338366 0.0004530610798193768 0 0 0 -8.470430326761357e-05 +9842 -0.003295544154356922 0.0025086319067607102 0 0 0 -0.003087013117586114 +3967 -0.0004117011183643487 0.000521844407011553 0 0 0 -4.579010675455333e-05 +3615 -0.00045867094079156965 0.00047201713934177887 0 0 0 1.7919228656946136e-05 +3636 -0.00019867463796762694 0.00012134518374619507 0 0 0 -2.668188135350409e-05 +1982 -0.0005349281475737506 0.0005746545234723918 0 0 0 1.3307432818893113e-05 +3676 -0.00021057583239236417 0.0003088223627886202 0 0 0 1.7648638415781873e-05 +3707 -0.0004653169435896229 0.00048646109938553506 0 0 0 2.4827078987807764e-05 +3770 -0.000432336685869777 0.00042013035021967656 0 0 0 8.528675847153572e-07 +3799 -4.706470664759863e-05 0.0001260874748334322 0 0 0 5.456732226712742e-05 +3842 -0.00020246563360304363 0.0003855360973508947 0 0 0 -2.235594369263998e-05 +3844 -0.00046206389130616605 0.0005521649277415871 0 0 0 6.076796744678238e-05 +3901 -0.0005360466879723968 0.0004913938188893385 0 0 0 1.3535774679530736e-05 +3906 -0.000301727021208984 0.00037360507593624633 0 0 0 2.3479819055684383e-05 +7817 -0.000512525052331756 0.0005376488675924708 0 0 0 1.521155956711633e-05 +5543 -0.0005478686817467588 0.0005713642162160973 0 0 0 -4.972111406414897e-06 +3992 -0.0003212434852397439 0.00045259815298732704 0 0 0 -1.3741436088064584e-05 +847 -0.000453147236040602 0.00038315382780998105 0 0 0 2.1651231663368877e-06 +4009 -0.0004157363168097479 0.0005019631172063875 0 0 0 3.438536079945045e-05 +2828 -0.0005350220014404027 0.0005584011159793095 0 0 0 -8.845999974132869e-06 +4080 -0.00015837044825266395 0.00030925124315780154 0 0 0 0.0001294139598908375 +4092 -0.0002699298483969497 0.0005077584467930599 0 0 0 1.6950223496148836e-06 +4163 2.148662786190836e-06 0.00015943696487835646 0 0 0 0.00012332612622742976 +4692 -0.0006093735483988133 0.0005136522582358589 0 0 0 -8.374095773740763e-06 +4229 -0.00016539709403644767 0.000165433882047412 0 0 0 5.661179174375323e-05 +4253 -0.00030459309229196804 0.0005384864245344747 0 0 0 3.7347375620568524e-05 +4255 -0.00023215411022731958 0.00028723189941895244 0 0 0 7.280076527295169e-05 +4301 -0.000184221294565545 0.00039243492478019534 0 0 0 2.961857898398676e-05 +8934 -0.0003680475904947973 0.000526970548707362 0 0 0 -3.94465739843977e-06 +4396 -0.0002623684078062686 0.000529722394622245 0 0 0 -5.479584067844533e-05 +4311 -0.0005549886070136874 0.0005129829781534854 0 0 0 6.43492487792021e-06 +4507 -0.0003804047984038295 0.0006030366093478451 0 0 0 -5.354369328558955e-05 +4552 -0.00024263090382308552 0.0003585594412829661 0 0 0 -1.7306867012034314e-05 +9846 -0.0002665589093616891 0.00043323763613936894 0 0 0 3.7264252792764384e-05 +9752 -0.0005351592114632004 0.0005706111123387809 0 0 0 -3.7326690671067145e-07 +4853 -8.484731980748814e-06 0.00022307401418202665 0 0 0 8.871695003142897e-05 +2872 -0.0005901683759153457 0.0005412290296260019 0 0 0 -1.2308483473517446e-05 +6454 -0.0006090434517777823 0.0005127739886562302 0 0 0 -2.059033235206048e-05 +8716 -0.0005028247398529822 0.0005911025574296347 0 0 0 7.822521287598005e-06 +5005 -0.00032302993285438533 0.0004742107983597366 0 0 0 2.654851802645091e-06 +5017 -0.00022250946374497866 0.0005560587640830427 0 0 0 0.00012796735660362512 +6205 -0.00041230843861939163 0.000517350344915342 0 0 0 -5.84865550788277e-06 +5051 -8.234108511248812e-05 0.00013096955972452537 0 0 0 4.864505936526244e-05 +5057 2.5252915861660035e-05 0.00023933202303221245 0 0 0 -3.819354104417521e-05 +5079 -0.0004360276740503882 0.0005230828975841318 0 0 0 3.522408230255148e-05 +5105 -0.0004941687627319119 0.0005789492630961446 0 0 0 -2.1142001260317583e-05 +5215 -8.864196514609505e-05 0.00025813618793936905 0 0 0 0.0001611259710818006 +5232 -0.0002835797000952527 0.00040917998022425595 0 0 0 -3.2276194989111745e-07 +5241 -0.0003987719820890097 0.0005452691150665584 0 0 0 2.153368163749202e-05 +5263 -0.00018942418739114068 0.0004810295019838451 0 0 0 2.589521550008543e-05 +1523 -0.00040259673854528864 0.0005313762807909512 0 0 0 2.3687607978899368e-05 +9087 -0.0005522006525490928 0.0005600099910293883 0 0 0 7.674310571538886e-06 +5304 -0.0002401198117375651 0.0003693854025230996 0 0 0 5.848149268577337e-05 +5309 -0.0003045058791131614 0.0002997336312556503 0 0 0 2.0314070162485362e-05 +8989 -0.00041988404659018124 0.0006213757017831207 0 0 0 -2.460648851539209e-05 +5377 3.5946433315490705e-05 0.0001821127930899042 0 0 0 -5.882464164780946e-05 +5391 -0.000265009337503364 0.000619560330568551 0 0 0 -0.00015950671783037746 +5394 -0.00027305119438257504 0.00022632440178468449 0 0 0 1.2724095483541125e-05 +5255 -0.00044929590752825567 0.0005206513605756373 0 0 0 -3.105682245927814e-05 +5429 -2.1617718717018303e-05 0.00014016509372860822 0 0 0 8.492893199492416e-05 +5436 -0.001019139151709049 -0.0017880243438793439 0 0 0 2.5044551448024035e-06 +5459 -0.0003702442889090066 0.00048348314618247584 0 0 0 6.869796554521234e-05 +5050 -0.0005683486011970604 0.0005459655073911836 0 0 0 2.701140557655879e-06 +5534 -9.632889853803975e-05 0.00031213764576982204 0 0 0 1.9350309491734628e-05 +5595 -0.0003342040848407829 0.0002023791802486382 0 0 0 9.056089929114672e-05 +9049 0.00010172502933751226 5.789986283693421e-05 0 0 0 6.240125195084036e-05 +8916 -0.0004511370975745786 0.0005280139120323445 0 0 0 1.197518920521317e-05 +8876 0.006871053176740692 0.0011451450834953749 0 0 0 -0.0035921523281478673 +1082 -0.0004702650850615502 0.00023282088458627433 0 0 0 -5.4837718852314436e-05 +3294 -0.0005078564039669579 0.0006022172631544789 0 0 0 -1.20627291756255e-05 +9649 -0.0005386702885309139 0.0005682315186777494 0 0 0 -1.1433743135908247e-05 +5914 -0.00022369861321818796 0.00024318355742676784 0 0 0 5.394778928466027e-05 +5915 -0.0002942167669047515 0.00031426812178733036 0 0 0 -2.6734110415521546e-05 +5949 -0.00041113152259180963 0.00027576709816737994 0 0 0 3.1188488134146826e-05 +9005 -4.397894670994598e-05 0.00015472749171584354 0 0 0 9.315124742335424e-05 +6014 -0.0005052603308895436 0.0005334577169574565 0 0 0 6.69086542672393e-05 +6047 -0.00026982796594014573 0.0004345181622249093 0 0 0 8.568064811167797e-05 +6201 -0.0004425223761569266 0.0003135590444165988 0 0 0 -0.0001173694760988879 +6202 -0.00035526072429558313 0.0005778733962062087 0 0 0 0.00013800603820853844 +6214 -0.0003813501009696841 0.0005261347734329606 0 0 0 -9.340652969368688e-06 +9853 -0.0005426422793385811 0.0005643278429584285 0 0 0 1.4523298645296431e-05 +6274 -0.0001381602403802204 0.00023086837210824256 0 0 0 1.7391317319611413e-05 +7050 -0.00021691277713067038 0.00035666141066800474 0 0 0 -5.1538209447280036e-05 +6345 -2.1724104452479273e-05 0.0002079307727015751 0 0 0 0.0001979831398014057 +3111 -0.0006056934875659588 0.00035460600336672344 0 0 0 -1.2370794364949921e-05 +6404 -0.0003416791428486314 0.00030444504865140477 0 0 0 3.6534918704010476e-05 +6421 -0.0004785001187457179 0.0005396737685937888 0 0 0 -4.006616042049479e-05 +9608 -1.323983600755316e-05 0.0002266396347000004 0 0 0 9.910796348579485e-05 +6443 -0.0009301521519766782 0.0011735006870620798 0 0 0 -0.006882208490228584 +6167 -0.0006093332398623991 0.0005145355510292651 0 0 0 -3.903454676437661e-05 +6481 -6.222068952608564e-06 0.0002512932332198158 0 0 0 1.3300038627004755e-05 +6584 -0.00010055199362031442 0.00023550554997477926 0 0 0 0.0002806849471762718 +6599 -0.00022182588540687885 0.0004018233744690107 0 0 0 0.00018070854450930683 +6609 -0.0004942168246994468 0.0005561680896315261 0 0 0 0.0001218939127979461 +6669 -0.0004066890832048639 0.00028566865177745876 0 0 0 0.00019120331002502107 +6684 -0.00018645152662229205 0.0003704650011825034 0 0 0 5.680871668510577e-05 +6727 -0.00048154840729723293 0.0005497817197459053 0 0 0 4.4916497206830695e-05 +6777 -0.0003225778015294511 0.00045009620048156183 0 0 0 6.45389560373188e-06 +3536 -0.0004659667089643534 0.00045613608467734695 0 0 0 -1.846333327723493e-05 +6792 -3.0445781186618e-05 0.00021707047472241246 0 0 0 2.0414612264493944e-05 +6806 -0.0003804745787112832 0.0005298065442755944 0 0 0 -2.6723669414370807e-06 +6817 -0.0005604909033271247 0.00015967330404056918 0 0 0 7.625733003902943e-05 +8935 -0.00013677117501898116 0.0003458818461605025 0 0 0 1.0399045342643982e-05 +8951 -7.532334161801562e-05 0.0002659492548333646 0 0 0 4.894292975577145e-05 +7042 -0.0002069426910719262 0.00036008308057603296 0 0 0 -5.6031112639136224e-05 +3499 -0.00018438382969136575 0.00023349265282662844 0 0 0 8.203325674356757e-05 +7065 -0.0001512319665534632 0.00040905532797238603 0 0 0 6.850096460931271e-06 +7164 -0.00030235358664463353 0.0005544740686325478 0 0 0 1.781495848069706e-05 +7175 0.00046378469270681396 -0.0016946980825041434 0 0 0 -0.004785512856215146 +7227 -0.0020949849337704735 0.0007006957236774608 0 0 0 4.392347374301876e-05 +9364 -0.00019807917561640964 0.0003270168348134003 0 0 0 4.257770134700463e-05 +7265 0.00011788022542073319 0.0001027774411837812 0 0 0 -9.209966455492925e-05 +7269 -0.00045315254139214055 0.0004684935022550455 0 0 0 6.853577678118399e-05 +7322 2.311007148765205e-06 0.00021586340851583322 0 0 0 9.816502702500676e-05 +5179 -0.0004011823361724653 0.0005582756555831856 0 0 0 2.048257441697897e-06 +7431 -9.118762614253094e-05 0.0003551732292238392 0 0 0 -0.00014070022060909675 +7446 -0.00013591845304551496 0.00022593198023805258 0 0 0 -8.17850879160955e-05 +7468 -0.0002556262298191627 0.00020255622345548621 0 0 0 3.8044219434291976e-05 +7581 -0.0001811334238265385 0.0002886641313802836 0 0 0 -7.461440546720657e-06 +7662 -0.00031453128136201203 0.0006441138628688892 0 0 0 1.8946861665951753e-05 +7670 -0.00012353536887349057 0.0002898235111698291 0 0 0 8.529692100964408e-05 +7704 -0.0004192751033302555 0.0005186380167410449 0 0 0 2.0971434572745305e-05 +7732 -0.00032411063429543314 0.0004800906416887169 0 0 0 -1.4319161953126279e-05 +7759 -0.00019697857225680715 0.00036850267166587764 0 0 0 9.959517489244011e-05 +7804 -0.00026258978732628325 0.00033952958221129554 0 0 0 5.8321163349175216e-05 +7815 -0.00024417672337980124 0.0005638199450423944 0 0 0 7.497835337290499e-05 +7855 -2.081577937449742e-05 0.0002078849816233868 0 0 0 9.381275630141914e-05 +7887 -0.00016949003511054043 0.0003356152418513049 0 0 0 3.329454168989571e-05 +7937 -0.00045769717851963085 0.0004620384094329891 0 0 0 -1.3022715737475249e-05 +8999 -0.0004983158068785262 0.00048675994208345787 0 0 0 5.1672603264328644e-05 +7977 0.0016988920503514346 -0.0014116844909774031 0 0 0 0.0022175114316327934 +5889 -0.0005055830885576487 0.0005841004751110169 0 0 0 6.309980684383468e-05 +8016 -0.00024711315203072197 0.0005145759290570113 0 0 0 4.076611769242086e-05 +8855 -0.0002851061416183175 0.00040575614071136916 0 0 0 8.236526199435874e-06 +8084 -0.0002468955090389833 0.0006057675284319306 0 0 0 0.00014095282975903152 +9661 -0.0003692915077705622 0.0004793593404676018 0 0 0 7.277823930461295e-06 +8150 -0.0003151206251368454 0.0004446270461022527 0 0 0 1.1309111385087756e-05 +3712 -0.0005598669214227824 0.0005781328919395242 0 0 0 3.0140516564737585e-05 +8298 -0.0002791412818352618 0.0005636598466501305 0 0 0 -0.00017774354619088224 +8343 -0.00022576040817280706 0.00038611050924561497 0 0 0 3.9430096172878926e-05 +8401 5.1145563625476646e-05 0.0002141875763962749 0 0 0 -7.90980729061918e-05 +9488 -0.00023259474554812863 0.0005034618294590651 0 0 0 -2.200268004123385e-06 +8407 -0.00016272033452417782 0.00030719189063666295 0 0 0 9.033471578712601e-06 +8469 -0.00020904706552432007 0.0004336456258631497 0 0 0 1.2235917274308638e-06 +8481 1.7131653670068952e-05 0.00018603266640039795 0 0 0 3.3073130770773306e-05 +8493 -0.00029813903665941986 0.0004494865897059065 0 0 0 0.00011808798544342824 +8505 -8.882181825690955e-06 0.00036260564756912446 0 0 0 -0.00029236604247362847 +5630 -0.00032589571168086624 0.00042731098154180115 0 0 0 -6.003550222309591e-06 +8549 -0.00042031828834470454 0.0005154921688711662 0 0 0 3.0376751018978643e-05 +8585 -0.00044813063427069687 0.0005321730203167574 0 0 0 7.557774621425323e-05 +9555 -3.398574209048509e-05 0.00014226729201492896 0 0 0 2.7521639795022486e-05 +8617 -0.0007265673741499378 5.047009123159078e-05 0 0 0 0.0031599030840734938 +8647 -4.80826473203317e-05 0.00028259315352698126 0 0 0 -5.2479943588808167e-05 +8662 0.001633977362077546 -0.0008184121344449374 0 0 0 0.0008325323221142552 +4235 -0.00048059487740196774 0.0004870884287335993 0 0 0 -2.212818838206346e-05 +6010 -0.0004378912328955438 0.0004807157853763117 0 0 0 5.176155219578772e-05 +8710 -0.0008999636348898899 -0.00027719768025172666 0 0 0 0.001854400507307018 +8781 -0.00034957440542168874 0.0004831867415033686 0 0 0 1.888225127647944e-05 +3313 -0.0005076733301008647 0.0005713898362231674 0 0 0 4.1615430665680696e-05 +8807 -0.00043970840429981517 0.000500650834076927 0 0 0 -1.517584768111314e-05 +8846 -0.0003957453681678337 0.0005923661240443177 0 0 0 -1.989444769452352e-06 +8849 -0.00019999487372347803 0.0003710651958683805 0 0 0 7.963555246835646e-07 +4986 -0.0003301738122755954 0.00029766871570825764 0 0 0 -8.297491656836208e-05 +2041 -0.0003568330499411371 0.0003891731840030617 0 0 0 9.432671140485714e-06 +7707 -0.0005583985564191715 0.000507855591780848 0 0 0 -3.4926263973864962e-06 +3686 -0.0005015407269437917 0.0005827463003230835 0 0 0 5.773001790409037e-05 +4044 -0.0005915759058299183 0.0003626692262181636 0 0 0 -1.0822266319166719e-05 +1900 -0.00047303903978617205 0.0005551067720304121 0 0 0 6.629539740161366e-06 +1458 -0.0005341529442108147 0.00048185820612282757 0 0 0 1.764008005051928e-05 +2409 -0.0002633075055118968 0.00034618552944649884 0 0 0 5.7302994631756326e-05 +706 -0.0005363506603938399 0.0005304154112986825 0 0 0 2.1862264252015866e-06 +5045 -0.0004489669277687025 0.0005542903037435943 0 0 0 -8.953431799867044e-07 +2706 -0.0004426221307704674 0.0005126331970061046 0 0 0 2.3145273449149754e-05 +6429 -0.000487548319247616 0.00044361026969482603 0 0 0 6.2041023136033965e-06 +8106 -0.00041408200537868624 0.0005073311095592588 0 0 0 4.769976356285978e-07 +5837 9.865082370540115e-05 0.00011591802923805697 0 0 0 4.035366357511155e-05 +1440 -0.0006183160995483347 0.00047767927554839964 0 0 0 -1.6382535925295353e-05 +1785 -0.000425892577352064 0.00024294214683657085 0 0 0 -5.013412634165137e-05 +5237 -0.0006102360222733858 0.00036028228205657234 0 0 0 3.696385721118871e-05 +9265 -0.0004871451616820168 0.0005085378424611377 0 0 0 -3.40043467528498e-05 +9647 -0.0006216831006347758 0.0004928209027008894 0 0 0 5.8447002075125495e-06 +4981 -0.00045775102778737765 0.00023777628190354202 0 0 0 1.9565355068887473e-05 +7081 -0.0006152993026669199 0.0005154359965815621 0 0 0 6.642973935394639e-08 +4429 -0.000459559479860912 0.0005525994630894685 0 0 0 -1.824319133984171e-05 +1709 -0.0005506246775665183 0.00037807616325469636 0 0 0 3.2579349247292825e-06 +1920 6.736139619229382e-05 0.00011664160544815381 0 0 0 5.0271302215590566e-05 +6790 -0.0003405708066051702 0.0004132201993540978 0 0 0 3.3737035949640003e-06 +2878 -0.00029665257148026004 0.0003873858037314322 0 0 0 4.498555738043945e-05 +2191 -0.0005142412707921664 0.0005498656036156409 0 0 0 -6.6202993620653486e-06 +8062 5.751902948791461e-05 0.00018631994615561824 0 0 0 9.012951734013115e-05 +590 -0.0004583692696722525 0.00046000998429870184 0 0 0 1.6547296179520474e-05 +8295 -0.00031318858978843364 0.00037874073501533947 0 0 0 0.00012140023170170526 +4020 -0.0005481796585083571 0.0005113310044757589 0 0 0 5.447044784615866e-06 +576 -0.00045115713593663515 0.0005258720239795489 0 0 0 -2.0182916198325732e-06 +8691 4.715939319846306e-05 0.00022833478740104325 0 0 0 -0.00018259659646351246 +4908 9.219410207282046e-05 0.0001614231441569011 0 0 0 -3.1233793093679825e-05 +4626 -0.00045760407660046346 0.0005241573412524494 0 0 0 1.9407326109815852e-06 +3400 -5.15626181540106e-05 0.0001704957565976239 0 0 0 3.552468867007876e-06 +51 -0.0006816470386555583 0.0003207947649356427 0 0 0 3.0490819959880868e-05 +59 -0.00029172425827566213 0.0004627479032712062 0 0 0 -1.1270046335601468e-05 +97 -0.0005455998684242794 0.00044387167731999407 0 0 0 -2.409721023216157e-06 +101 -0.0003237726502038426 0.0004111456639126306 0 0 0 -1.4727239874938638e-05 +3573 -0.0005181089306588226 0.0005841507337398692 0 0 0 1.4927311611949031e-05 +125 -0.0005815178159961301 0.0005615470399008843 0 0 0 -4.79020647987611e-06 +134 -5.53416160753257e-06 0.0005585709574296999 0 0 0 -2.490153410924937e-05 +281 -0.0005569023577209652 0.0003435352916459867 0 0 0 -8.735465036703607e-06 +287 -0.00042552956040329545 0.00040600147120827825 0 0 0 1.2545785045611013e-06 +292 -0.00036343686238742104 0.00035316086535547715 0 0 0 1.546607268572292e-05 +293 -0.00048198779238610613 0.00042745468115992124 0 0 0 -1.79550568372064e-06 +304 -0.0006031294716748302 0.00036627135406230854 0 0 0 -2.2720093759456297e-05 +8742 -0.00037997833826176094 0.00032930728995675824 0 0 0 4.198006642533563e-05 +351 -0.0005267959692301463 0.00036061349756503244 0 0 0 -2.4582525579636093e-05 +446 -0.0005988253358698873 0.0004783276137670222 0 0 0 -1.5875995184317396e-05 +6226 0.0002313112752885981 -0.0007223668520714406 0 0 0 0.00029615301435813584 +488 -0.000507116965859065 0.0005061813610494636 0 0 0 8.788020267496948e-06 +531 -0.0004936648151053752 0.0004234709514892684 0 0 0 -2.6690810818489496e-06 +8687 -0.0004726954916275842 0.00041236710696836176 0 0 0 -2.7746075071831535e-05 +710 -0.0005685337941842732 0.00048806310557238276 0 0 0 -1.2832386003943195e-05 +713 -0.0004642687188472397 0.0003788401294689384 0 0 0 2.6868822718921917e-05 +736 -0.0005086644969179447 0.0004950529819143361 0 0 0 -3.7598269851551834e-07 +748 -4.078925109305918e-05 0.000491450141263137 0 0 0 6.842685999321949e-07 +7222 -0.0006391696412202443 0.0003420617020138005 0 0 0 -9.709722075014289e-05 +764 -3.2320852615184166e-05 0.0006008529734530039 0 0 0 -2.3137826369413588e-05 +769 -1.6096026164388154e-05 0.00042767190867562386 0 0 0 1.9362787513561397e-05 +2049 -0.00037980459952005895 0.00037879087359869935 0 0 0 1.7375495306227685e-05 +783 -0.0006028754671154729 0.00038876113593507185 0 0 0 -1.4766720629837328e-05 +803 -0.00044708435511549126 0.00041150546686982275 0 0 0 -1.4012525443730222e-05 +815 -0.0005028767233662942 0.00043429011281767566 0 0 0 2.0001530949941967e-06 +819 -0.0005332559783657702 0.0005389645170178895 0 0 0 -8.858176361064774e-06 +2867 -0.00029582235842575614 0.00028622575068538276 0 0 0 3.948817209149717e-06 +835 -0.0005926869972294822 0.0005282845204097782 0 0 0 -1.1273320837293321e-05 +857 -0.000516489432759684 0.0005214028789520338 0 0 0 -2.5985215452626623e-06 +8880 -0.0005312075374525351 0.0005735008874106114 0 0 0 -2.7852366888868593e-06 +927 -0.0005248710402982889 0.0004767742949276807 0 0 0 -1.297986843848898e-05 +944 -0.0006163688886896575 0.00041582860179733395 0 0 0 1.1450024691625506e-05 +1011 -0.000506046527474492 0.00047297381043389725 0 0 0 6.537798727939989e-06 +9828 -1.5726341647385053e-05 0.0004883163823449934 0 0 0 -0.00011262916698238804 +1078 -0.00034042697206412267 0.0003059795481801476 0 0 0 -6.0581563670386125e-06 +1122 -3.160895460764864e-05 0.0004674417964715562 0 0 0 -1.0140076288684955e-05 +1160 -0.00048090074914215367 0.0004970465126448849 0 0 0 1.591173149430281e-05 +1161 -0.0005956812549452854 0.0004614838774813007 0 0 0 -2.844057060955242e-05 +1168 -0.0005506253431537272 0.0005338845068738398 0 0 0 -2.8262371185169554e-05 +1204 -0.00025912121076181725 0.00018101882120073954 0 0 0 3.1418466799557934e-05 +187 -0.0003565737316893115 0.000385333112471913 0 0 0 1.2348047498844531e-05 +9759 -0.0003263576533755566 0.0004078386301779792 0 0 0 -3.521138153123698e-05 +9746 -0.0005139309394390419 0.00044334803265137036 0 0 0 -1.0127692060819367e-05 +1308 -0.0004741039666708674 0.00043174341473316275 0 0 0 -6.111336225533221e-06 +1337 -0.0005118291178336155 0.0005945791120632013 0 0 0 3.5554836332475944e-07 +1366 -0.00036537548503358483 0.00041651780805119663 0 0 0 -1.4137284808384295e-05 +1380 -8.210564701327012e-05 0.0004868749777494811 0 0 0 -1.271954123211005e-05 +1397 -0.0005685089647382673 0.000395549466296165 0 0 0 -2.791609004403525e-05 +1448 -0.0004971774919285356 0.00045509421892528243 0 0 0 2.250834271308783e-06 +1473 -3.165349264355729e-05 0.0006624413659871486 0 0 0 -9.64240709439575e-06 +1546 -0.0005176772943903508 0.0004780656684341268 0 0 0 7.465026237842564e-07 +1558 -0.0004958065821962134 0.00043404765144493165 0 0 0 -9.711622898679633e-06 +1582 -0.0005041347477646406 0.0004844736085052613 0 0 0 -1.7061297343896452e-06 +1653 -0.0005055594368810287 0.0005237549123986962 0 0 0 -9.750585395887714e-06 +6728 -0.0002966035118441816 0.0004705389414663742 0 0 0 -2.7113874653043934e-05 +1812 -0.0005031032872272908 0.0004529867131654678 0 0 0 3.917752177095806e-06 +1816 -0.0005144120645021611 0.0004930789780806181 0 0 0 5.9630934153108866e-06 +1817 -0.0005877197620720436 0.0005587144429391291 0 0 0 4.421511213133959e-06 +1832 -0.00048216921089589874 0.0004445337415220812 0 0 0 -1.4935344657416539e-05 +1833 -0.0004835730092822834 0.0004061730491974055 0 0 0 1.2644677367639892e-05 +8873 -0.0003956184826407267 0.0003514942267264476 0 0 0 -4.343795955506353e-05 +6113 -7.180625636705879e-05 0.00024846716105729434 0 0 0 -0.00033899392254553524 +1862 -0.0005186621818182737 0.0005247126046804783 0 0 0 9.926558583034229e-06 +1883 -0.00052462210032784 0.00046340889344931394 0 0 0 -4.193725997087518e-06 +1895 -0.0004361296617656622 0.0004188521435238648 0 0 0 -6.277887057116698e-06 +1905 -0.00012394787830091405 0.0004386687368294574 0 0 0 6.204112292954755e-05 +4236 0.00014200597855198668 0.0006229593666679845 0 0 0 -6.720363300649476e-05 +1938 -0.0005097300698920392 0.0004972443433456373 0 0 0 -2.3014524907387183e-06 +1941 -0.0005293553991170946 0.000569521375032787 0 0 0 3.526215950097838e-06 +1965 -0.0004773041682006044 0.00036776537056814 0 0 0 4.25812477661489e-06 +1974 -0.0005099684666102425 0.00042867353732376645 0 0 0 9.674696084783344e-06 +1984 -0.00047818675617572893 0.0004324339046784385 0 0 0 5.8321469714639045e-06 +1991 -0.0005406574759974096 0.0004712503326740699 0 0 0 1.2310493469771309e-05 +2013 -0.00046788741638944707 0.0004393085188299032 0 0 0 -1.0187773003610058e-05 +2032 -0.0003338508382778605 0.00033840846188049214 0 0 0 -1.809805120435268e-06 +5772 -0.0004143470304152606 0.00035248741941115925 0 0 0 7.955571213321632e-06 +2140 -0.0004894463750536466 0.00048115831512761 0 0 0 -1.455654387041695e-06 +2147 -9.273768664430174e-05 0.000424785309330331 0 0 0 -3.3660350066311645e-05 +2153 -0.0005210001275657667 0.0004915609428917664 0 0 0 6.338545849408071e-06 +2154 -0.00039436399285724694 0.00042894630124318885 0 0 0 -6.840193641644119e-07 +2176 -0.0004822225717447481 0.0004248800538745624 0 0 0 -2.531663956219365e-05 +2206 -0.0005722152443176924 0.0004830469981878045 0 0 0 -6.607246256700937e-06 +2247 -0.00023845761791784685 0.000207660646157031 0 0 0 -0.00015210207049479112 +2256 -1.8528366160936125e-05 0.0005930692183390077 0 0 0 4.000817719444013e-06 +2275 -0.0005170424247669695 0.0004919714611116053 0 0 0 -4.414653362741905e-07 +6323 -0.0004581022917629347 0.00042724546836842643 0 0 0 -2.2456775276846783e-05 +2309 -0.0005370515296854975 0.0003049091473966908 0 0 0 -1.0784669011682768e-05 +2349 -0.000528355663853091 0.0004830176959671627 0 0 0 -1.7748307544826896e-05 +2367 -0.0003648408973832442 0.00037430644633027865 0 0 0 -2.0902827432341743e-05 +2380 -0.0004628239186257537 0.0004907336938697253 0 0 0 2.5489740907283645e-05 +2391 -0.0005295842330710605 0.00039456043317355894 0 0 0 3.733389442559932e-05 +1479 -0.0005204483615338065 0.0005842408368927465 0 0 0 -5.009875976183557e-06 +2399 -0.00020794236078046325 0.0004512996584710022 0 0 0 5.768602596355413e-05 +2411 -0.0004801129221123929 0.0004339366800234518 0 0 0 5.1637208116392985e-06 +2414 -0.000595820364977854 0.00043129121468584396 0 0 0 1.3993267282109619e-05 +3646 -0.0005885405668673797 0.0005501490116313993 0 0 0 -1.5307129975086555e-05 +2462 -0.0006253932359190222 0.00040372063136590535 0 0 0 -8.906106465823683e-06 +2480 -0.000397016077848519 0.00039786677568367097 0 0 0 -1.0979392530938698e-05 +2558 -0.000488963406686629 0.0004653538844692708 0 0 0 1.4834438379833582e-05 +2623 -0.0005200157733622749 0.00043170898396523166 0 0 0 7.024754021742776e-06 +2658 -0.0005421906186425133 0.000567055225608039 0 0 0 -4.908929326373313e-06 +8768 3.590840449623125e-05 0.0002928735506246815 0 0 0 -4.3591930914751186e-05 +2668 -0.0005428690438401828 0.0005386919840892402 0 0 0 1.0374059873776668e-05 +2731 -0.0006077558725034076 0.0003167180518014446 0 0 0 -7.417518020171795e-06 +2734 -0.0005941675761244143 0.0005574009971068884 0 0 0 -1.204240266145812e-05 +2736 -0.0005335051831156422 0.00043489390441710284 0 0 0 2.4180969858397175e-05 +2742 -0.0004886217536351851 0.0004156543021765682 0 0 0 -2.44833107991962e-05 +2743 -0.0006108864383428091 0.000516287186588661 0 0 0 -1.5427555020465635e-05 +2758 -0.0005275273126499504 0.0004678206503602892 0 0 0 -1.858553644500766e-06 +2792 -0.0004076854556951001 0.00038075895751194975 0 0 0 -5.8399018251058855e-05 +2798 -3.496727446220251e-05 0.00048684478509960886 0 0 0 2.0581761832246632e-05 +2833 -0.000565393685162952 0.0004442199766103516 0 0 0 1.707773950652122e-05 +430 -0.0005343034249620904 0.0005632999460579402 0 0 0 -5.4134292780787e-06 +8143 -0.00043735012550419355 0.000324606149007681 0 0 0 3.583192230247626e-05 +26 -0.00044224757120811813 0.00032679328040097195 0 0 0 -1.006672226430949e-05 +2918 -0.0005715974179321448 0.00044209301966365136 0 0 0 1.8852734901781006e-05 +4407 8.455022997407508e-05 0.00058051486090228 0 0 0 -2.012412895102036e-05 +2094 6.089889000916886e-05 -8.824450239499438e-05 0 0 0 0.00026239745963384925 +6571 -0.000607785195561231 0.00031505398550115776 0 0 0 -2.260308618293936e-05 +2986 -0.000519753923551941 0.0005363258345833868 0 0 0 -1.1860478274873767e-06 +9841 -0.0005024838523386472 0.0004615098553201527 0 0 0 1.409415042008852e-05 +3035 -0.00042831137130042553 0.00043310367692335147 0 0 0 -3.869454684586237e-06 +3044 -0.0005377666972554148 0.00047174375357275 0 0 0 4.4781825027542164e-05 +3065 -0.000530744000993286 0.0003289233517156559 0 0 0 -1.2642763494953946e-06 +3086 -0.00044949706858578965 0.00032796948987325904 0 0 0 2.6276425435625907e-05 +3235 -0.0005315813716999901 0.0004894025941239716 0 0 0 -1.2003499319140766e-05 +3279 -0.0005280932881614098 0.0005098000281951421 0 0 0 1.3743257629485784e-05 +3337 -0.0005025102805472344 0.0003970742327755997 0 0 0 2.9168433640384945e-05 +9724 -0.0005032327287673781 0.00043551943907777044 0 0 0 4.376630514518458e-06 +3371 -0.0005435312513088348 0.00040821752949769135 0 0 0 -9.98436479421306e-06 +3403 -0.00044550435602870093 0.0004216519212219293 0 0 0 -4.02116084555662e-06 +3411 -0.0006405632694951152 0.00036568578356441526 0 0 0 -8.242066633121584e-05 +3456 -0.0005354333534135595 0.000372221947160131 0 0 0 -1.004422642716766e-05 +3508 -0.000617602702853289 0.0005089846703009437 0 0 0 3.9106315470504184e-06 +3632 -0.00018330954936536244 0.0005998750557085887 0 0 0 -9.312345515770811e-05 +3634 -0.00023629925188662504 0.000408817605849918 0 0 0 5.6680682759400875e-05 +7014 -0.0005883706618791209 0.00035718790982065547 0 0 0 -0.00010176165395818704 +3653 -0.0005027397102353331 0.00044115754309759263 0 0 0 -1.3871377829034774e-06 +3655 -0.0005040416438990034 0.0004903932103676836 0 0 0 -1.7034085104226546e-05 +3673 -0.00047284832525618196 0.00032543264623347283 0 0 0 3.453758886782297e-05 +4687 -0.0004895624224918817 0.00044480316212422086 0 0 0 -1.974490058537062e-07 +3687 -0.0006525017751620685 0.0002907855713861797 0 0 0 -6.182470762086133e-05 +3709 -0.0005084049983919639 0.0004900794268284909 0 0 0 -2.8086712580390248e-05 +3732 -0.0005244103160099257 0.0003384417918131496 0 0 0 -4.0369582443126606e-05 +3759 -0.00048175078493686385 0.00047387330723495 0 0 0 -6.994338250261879e-07 +3765 -0.0004767121495321231 0.0005316180654428279 0 0 0 -1.4894397703225024e-05 +3813 -4.925927249965599e-05 0.0006453861172406536 0 0 0 -2.5920987293184177e-05 +3857 -0.0005362499275077336 0.0004172087240673644 0 0 0 -2.956332257127552e-06 +3871 -0.0002671492359661205 0.00037029164745413574 0 0 0 -9.856793810575763e-05 +3883 -0.0005707331669348878 0.0005717541599390935 0 0 0 3.2089958530944156e-05 +3915 -0.00063565109378082 0.000283815348932829 0 0 0 -8.030043809291854e-05 +3978 -0.0003709385083590489 0.0004137149831675823 0 0 0 1.167618257714473e-05 +4011 -0.0005839341498403854 0.0004140229618438454 0 0 0 -5.315732053564139e-06 +5451 1.6602808415110547e-05 0.00023011966864534337 0 0 0 0.000268842057596076 +5848 -0.0005693199225101977 0.0003396046936496938 0 0 0 7.705728759585304e-07 +4042 -0.0005628166013036441 0.00043619639270038964 0 0 0 1.7854109978465532e-05 +3465 -0.0005209113282634542 0.0005983731038563772 0 0 0 -2.3724167125871978e-05 +2599 -0.00028434991912888605 0.0004598836112094115 0 0 0 -6.712866216241614e-05 +4122 -0.0003519648420928967 0.00040939551544385254 0 0 0 -1.9448320404375003e-06 +4149 -0.0006309966211995851 0.0002917444829692371 0 0 0 1.4608421713824563e-05 +4166 -0.0004041240943913803 0.000377498597368631 0 0 0 4.0170694863961544e-06 +1088 -0.00039111072123298703 0.0003571986219196446 0 0 0 -1.1826203439421234e-05 +7415 -0.00031367378906444095 0.0003566079919768637 0 0 0 1.480627995891698e-05 +4257 -0.00047956613558582556 0.0004565334008584897 0 0 0 -2.2329600320353567e-05 +4275 -0.00037912961727197623 0.00030146711946903675 0 0 0 4.0904695645753695e-05 +4283 -0.0005816206766893443 0.0003634357353631849 0 0 0 4.812787429936071e-05 +4360 -0.0005136395662461309 0.00047094520272796046 0 0 0 -9.642724903768069e-06 +9870 -0.0005441456318565527 0.000470309092327223 0 0 0 1.0709247071021076e-05 +4366 -0.00039469654279071433 0.0004360195450916444 0 0 0 -7.760285810885584e-06 +4803 -0.000525755933502798 0.000589372572528961 0 0 0 -9.431451068862837e-06 +4420 -0.00041053096813337895 0.00039546668709008564 0 0 0 4.85130690918926e-07 +4465 -0.0005287809199177551 0.00046498386105113857 0 0 0 -4.91758928456356e-06 +4468 -0.0004709162943791949 0.0004225601369106721 0 0 0 -7.625641347408197e-06 +4493 -0.0006393724662229188 0.0003827479215065925 0 0 0 5.1178677283605024e-05 +4496 -0.0005772181201815126 0.00040605883446955936 0 0 0 2.7937267469995843e-06 +9557 -0.0005992458152795299 0.0005400851271177831 0 0 0 1.8875696503143956e-05 +4533 -0.0003790865909725292 0.0004234233771649715 0 0 0 -5.147221383606869e-06 +4549 -0.0004475374422394969 0.00039389586391586453 0 0 0 3.025940911064305e-05 +4550 -0.0005208030682188736 0.0005552796984759689 0 0 0 -7.1130825767537145e-06 +4615 -0.0005477620249613695 0.0005873558987592563 0 0 0 -4.681772881903043e-05 +239 -0.0005247769665923244 0.0005802008244186877 0 0 0 -1.463432320235947e-07 +4648 -0.0004353461548127122 0.0004536564352681903 0 0 0 -4.109403081640284e-05 +794 -0.0003051342974954392 0.00019992795652678825 0 0 0 3.5280637059918294e-05 +4769 -0.0005716750012495326 0.00040769510875236607 0 0 0 -7.20901958460124e-06 +115 -0.0006147066759495276 0.00034402493322573325 0 0 0 -1.052763096356424e-05 +4895 -0.0004045351257532086 0.00041592165380606563 0 0 0 -1.557555932698301e-05 +4902 -0.0001225889664353099 0.0003907346006106498 0 0 0 -6.542317841680984e-05 +4951 -0.0002601629280710865 0.00028810848303539204 0 0 0 -0.00014572310021458026 +4956 -0.00039629936049474345 0.0004202498621890003 0 0 0 -1.5349961455324475e-05 +4971 -0.0005482061510953868 0.00043010247826552237 0 0 0 -1.393170329845144e-05 +4975 -0.0005115849779549161 0.0005105947885789498 0 0 0 -7.423524729988266e-06 +4999 -0.00034293897628055086 0.00036888632039107583 0 0 0 -4.774727712997555e-05 +8541 -0.0005521138510209592 0.00034330238283834276 0 0 0 7.073809008331908e-06 +9748 -0.0004978049424254298 0.00030535923990770606 0 0 0 -3.781006042436982e-05 +5066 -0.0005659368526100285 0.00040447581439205765 0 0 0 6.673202546547472e-06 +5070 -0.0004649147820391403 0.0004148197499176907 0 0 0 4.36086895223948e-05 +5090 -0.0005164066101182452 0.00048600524090001247 0 0 0 3.285092987139143e-06 +5102 -0.0005628711212975932 0.0005278795451975504 0 0 0 3.0099415911797174e-05 +5115 -0.0005315727464784476 0.0005170277791935864 0 0 0 2.4916408674195635e-06 +5124 -0.0005220241321292272 0.0005284370958989309 0 0 0 1.473122213498885e-06 +3029 -0.000426169847952231 0.0003995702562419607 0 0 0 -3.560390026516715e-06 +5158 -0.0005431328174854953 0.000370860972252334 0 0 0 2.8233333132207016e-05 +5161 -0.0005472945340069662 0.0005123865482746689 0 0 0 -1.08740845026574e-07 +5936 -0.0003756211985598445 0.00034475112787184226 0 0 0 1.0819003070543934e-05 +5185 -0.0004954404572019183 0.00045408295718508816 0 0 0 6.55725347109303e-06 +5217 -0.0005298582765905128 0.0004564536232597221 0 0 0 1.4622118401210751e-05 +5220 -0.00025407879354891747 0.0005445868848123274 0 0 0 -8.889263733590542e-05 +4226 -0.00037982137706006413 0.00041659789028528706 0 0 0 4.452150908279088e-06 +5315 -0.0005472351473030115 0.00042120148819367365 0 0 0 -9.905766621748248e-06 +5354 -0.000660549301727993 0.0003479851009301064 0 0 0 -0.0001956361568675328 +9403 0.00014011617888005608 0.0005446916066429181 0 0 0 -0.00011998386115441231 +5392 -0.00011354559621564791 0.0004571252517318379 0 0 0 1.5221978105769203e-05 +5478 -0.0005009415786984947 0.0005419190320291334 0 0 0 1.5280282058332687e-05 +5484 -0.0004930767763517386 0.0005026296462522545 0 0 0 4.048670402164719e-07 +5535 -0.0005141091255422092 0.0002468746337903205 0 0 0 -3.277141527701816e-05 +5592 -0.0005064601260485142 0.00031486240773373686 0 0 0 2.694613438457879e-05 +5626 -0.0004924733781240569 0.00029966342161649837 0 0 0 3.871415092789562e-05 +5674 -0.0006434364734559632 0.0003639037700650226 0 0 0 -4.179966034261563e-05 +2971 -0.0005208860280791323 0.0005139119106591819 0 0 0 3.84651501303935e-07 +5750 -9.127249543547766e-06 0.0005409882513100721 0 0 0 -3.453547314492963e-05 +229 -0.0004417223111023983 0.0003278570637549117 0 0 0 3.818354494486399e-05 +5862 -0.0005670739920917802 0.0005283654254259112 0 0 0 -4.6937548231453644e-05 +5894 -0.0006276783646310438 0.0003702314547502281 0 0 0 1.5941637397494908e-05 +5909 -0.0002444141462299458 0.00017123935032000584 0 0 0 0.00013054345033549787 +5927 -0.0005783272603157086 0.00034728291692828154 0 0 0 -2.6562562332251196e-05 +5981 -6.403782050340942e-05 0.000619102213702038 0 0 0 -4.086441756577936e-05 +3254 -0.000537040648508107 0.0005806067862823155 0 0 0 1.379688129489781e-05 +4362 -0.0007075988546753215 0.0003270535213483678 0 0 0 -0.00010378923298082421 +6026 -6.517599099232139e-05 0.0006470285970981269 0 0 0 1.4873414761467065e-05 +6058 -0.0004920493149986872 0.0004031507542532912 0 0 0 2.2665455304638485e-05 +6099 -0.0005222225345913735 0.000513566254741842 0 0 0 -7.528989232581298e-06 +6115 -0.0005447415665129552 0.0005516653445616776 0 0 0 -1.7949167988727574e-05 +6118 -0.0005277152997918312 0.000476848705202897 0 0 0 -2.660974285435964e-07 +6123 -0.0003815672604053316 0.00035065793259312066 0 0 0 0.0001336630349657705 +6129 -0.000461145553621299 0.000414195534937276 0 0 0 -4.4353062317960546e-05 +5149 -0.000531584053360256 0.0005633449168056669 0 0 0 -5.309119002017877e-06 +6219 -0.0005665254827988139 0.00045310043592097776 0 0 0 -9.199829331379974e-05 +6224 -0.00010526580065033224 0.0005537245148518396 0 0 0 -5.732009872619107e-05 +1234 -0.0006120431094440488 0.00031975885874326347 0 0 0 2.998935395876409e-06 +5408 -0.0002908848616124794 0.000458642126222248 0 0 0 -2.4027716696907627e-05 +6250 -0.0005925972612607961 0.0004062676692434481 0 0 0 1.3251938432852435e-05 +6255 -0.0005185651732100768 0.0004209833382460066 0 0 0 -2.2434463879568678e-05 +1218 0.000219493891637755 0.0004014029538377982 0 0 0 -0.00014497044532314158 +6267 -0.00047390962663322616 0.000341577926213116 0 0 0 1.7726888047777603e-05 +6282 -0.0005295713063749223 0.0005134017380485782 0 0 0 3.024240718671387e-06 +6290 -0.0006665049916077029 0.0003748485910677452 0 0 0 2.7690819944221807e-05 +6317 -0.000568157413479958 0.0004912269020258795 0 0 0 2.4285588098609364e-05 +6344 -0.0005572575059335038 0.00038960379692464897 0 0 0 2.2485694309528052e-05 +6390 -0.000503883880389506 0.00040801660148658036 0 0 0 4.3982280724842643e-05 +6444 -0.0005094959921033004 0.000452178442932982 0 0 0 2.8154389083199793e-06 +6446 -0.0005307344844999106 0.0005714964613961673 0 0 0 -1.9156300068402987e-06 +6491 -0.0002404250356412071 0.0003474494379149444 0 0 0 8.877741988172248e-06 +6496 -0.0004879933153596006 0.0004938967298251907 0 0 0 -9.977486740492797e-06 +6511 -0.0005736831857594613 0.0004150437503485253 0 0 0 1.228962058329686e-05 +6527 -0.0003282535595627442 0.0004169973675799599 0 0 0 8.044157018490969e-06 +6540 -0.0003863668693266306 0.0003860998204628845 0 0 0 1.131923995314172e-05 +3757 -0.000108752624595839 0.0003007937850362355 0 0 0 -0.00014028960237114877 +2569 -0.0006130029467931174 0.0005276608104334956 0 0 0 -1.5900035995852065e-05 +6623 -0.00046128195799959433 0.00036439022408047116 0 0 0 5.557141709975552e-05 +6710 -0.0003158446252402653 0.000411375088873375 0 0 0 3.897097411430138e-05 +3230 -0.0003799219008305547 0.00033276315257435953 0 0 0 3.938196768221763e-06 +6738 -0.0005676190017255589 0.00040337981156191163 0 0 0 3.9448335251515214e-05 +6753 -0.0004681432034378312 0.00043943739381680543 0 0 0 5.349262894885297e-05 +6763 -0.0006204022047533364 0.00033649000505261756 0 0 0 7.073440710129268e-06 +6780 -0.0004922770086788822 0.0004430219190987313 0 0 0 -1.2175575727050933e-05 +6809 -0.00041061266095704493 0.00042877836882044147 0 0 0 -1.466506212972944e-05 +6814 -0.0005088212055898073 0.0004613474015733651 0 0 0 -1.106022863365463e-05 +6821 -5.681045000830363e-05 0.0005520348416964584 0 0 0 -8.128752633781274e-05 +6867 -0.0005095722096827453 0.00043017522073925276 0 0 0 2.2391355386531597e-05 +6877 -0.0006205059707830538 0.0004122404023165305 0 0 0 1.2938017779343785e-05 +6892 -0.000624928221259832 0.00036736060456840224 0 0 0 9.638938590856928e-05 +6900 -0.0006085884584871537 0.0004315198272067049 0 0 0 5.020555317753769e-05 +957 -0.0005313277207890103 0.0005353878962288023 0 0 0 -4.786312253687413e-06 +7012 -0.00040815885613597027 0.00032388177132783373 0 0 0 0.00016364082374386625 +2506 -0.00041289786124241063 0.0003409031185036637 0 0 0 -1.1289735117974866e-05 +7017 -0.0005006744192952581 0.00042332614634632283 0 0 0 1.4680492339166459e-05 +7026 -0.0004738664258645456 0.0003936924748932199 0 0 0 -1.7041242356050245e-05 +7027 -0.00012051513052952318 0.0004639797371819314 0 0 0 9.04353472441328e-06 +7030 -0.0005647074753049207 0.0004970881588543041 0 0 0 -1.0358385555041806e-05 +7904 -0.0004584752564476765 0.00034553749341713493 0 0 0 -1.2975538192848587e-05 +9666 8.987669708890748e-05 0.00022359112933224075 0 0 0 -0.0001790094195914496 +7075 0.0019615268297197724 0.000991929638965436 0 0 0 -0.0033230669177063393 +7079 -0.0005484401343724744 0.0003982420626674422 0 0 0 -1.532116192568055e-05 +9983 -0.0005449797400748597 0.000441805915794595 0 0 0 6.738731609666978e-06 +7129 -0.00038689178265661117 0.0003380559601146753 0 0 0 -8.162752249826764e-05 +7146 -0.0004314968948971959 0.00033276246540196166 0 0 0 5.547725025531429e-05 +7161 -0.0005205432286874215 0.0004479176120471915 0 0 0 3.6998468616422193e-06 +7193 -0.0004494481093537729 0.0003615965687413211 0 0 0 3.124999697742673e-05 +7214 -0.0003441988255999217 0.00034379357009879945 0 0 0 5.822164513609188e-06 +3957 -0.00043104478494223133 0.00034178749060051846 0 0 0 -3.146329684057793e-05 +7226 -0.0004983434504319048 0.00044558299272933106 0 0 0 -6.173149778460805e-06 +7249 0.0008078584591184111 0.0012061069500765285 0 0 0 -0.0005084314072664575 +7304 -0.0005069414450269495 0.0005091674012286987 0 0 0 -1.7998435489349232e-05 +7318 -0.000517491765107278 0.0004764362390511471 0 0 0 2.356062180765511e-05 +7324 -0.00046157537114079316 0.00044619770500412323 0 0 0 3.66559939921202e-05 +7342 0.00013273344045904294 -1.854339864271878e-05 0 0 0 0.00023944970537028887 +7349 -0.0005367530168227094 0.0004044618618174759 0 0 0 7.2096161941714476e-06 +7395 -0.0004524442843620901 0.000372179556462362 0 0 0 4.0027919110092445e-05 +7413 -0.0005129916681564206 0.00042397749201508294 0 0 0 5.78710814536474e-05 +7433 -0.00046598507268216577 0.000348601650839102 0 0 0 6.141374487748626e-05 +9989 -0.00043979469422941796 0.00033967643964020956 0 0 0 -2.5950107961599327e-05 +7447 -0.00012175953662897406 0.0005812796768711191 0 0 0 -0.0001344612219802116 +9733 -0.00047763191267984295 0.0004216131866393815 0 0 0 8.118537644519875e-06 +7567 -0.0004909527061139097 -0.0004674987572060409 0 0 0 0.0006595642796812143 +7573 -0.0005673028317045445 0.0005411700380858296 0 0 0 1.47369976050611e-05 +7635 -0.00048178213383858745 0.0004291706741680315 0 0 0 6.8238203020536265e-06 +7649 -0.0005476189774766743 0.0005743846437930218 0 0 0 1.8106024307117265e-05 +7654 -0.0005168094951081733 0.00043230769776047217 0 0 0 -9.716328130440628e-06 +7708 -0.0005752303566771147 0.00036878614985193567 0 0 0 -2.6008569198336887e-05 +7787 0.0008140270396586735 -0.0013320645342532844 0 0 0 -0.0004282213230847624 +7856 -0.0005543665787761134 0.00032245239035350016 0 0 0 2.6377759536092334e-05 +7870 -6.0400491756892e-05 0.0004862763520925061 0 0 0 -0.00013653193294895806 +7890 -0.00048274768266062725 0.00038595255693232156 0 0 0 -4.242452450812142e-05 +7933 -7.88658312411536e-05 0.0005241755448335097 0 0 0 3.300173746422341e-05 +7936 -0.0005042963505383049 0.0004233912437117475 0 0 0 8.278659503715262e-05 +7943 -0.0005038435934414841 0.0004316777578348918 0 0 0 1.9871647222389208e-05 +8032 -0.0005190450934087369 0.0004474575641458452 0 0 0 -3.955907257614197e-06 +8100 -0.0005741123691286934 0.00032003551696866485 0 0 0 3.41326660938932e-05 +8131 -0.0005344774234224992 0.0005134452738003077 0 0 0 4.5034829181311594e-05 +7039 -0.0005146790510643855 0.00039781427095966293 0 0 0 1.7021072324759488e-05 +5469 -0.0005078553484288467 0.0005979762813622927 0 0 0 -4.90647683614213e-05 +8376 -0.0004695576316839251 0.0004208670150612947 0 0 0 5.728517555353803e-05 +8394 -0.0005185432834317708 0.0005042507028881926 0 0 0 -2.7125809522410986e-06 +8405 -0.0010272236760133168 0.0011378781513290612 0 0 0 0.00024522572760511284 +2461 -0.0005869421369386083 0.000562891024465216 0 0 0 -1.691016129573688e-05 +8427 -0.0005106776102284158 0.00038743398404297684 0 0 0 -4.412520686720497e-05 +8429 -0.0005301388247930299 0.00047509083744699864 0 0 0 4.3381134633494e-06 +4192 -0.000513031725034671 0.0005888370817697435 0 0 0 -3.8069627699390623e-06 +8516 -0.0004942737096523187 0.00043013794257343335 0 0 0 7.235501005120932e-06 +8540 -0.00018835058632117767 0.00040236772668878737 0 0 0 -0.00014509641839270446 +9970 -0.0005093729785872546 0.00043389899022687093 0 0 0 1.2456601387972355e-05 +8586 -0.0003599362638178426 0.0003245962866464155 0 0 0 7.76795044295365e-06 +8589 -5.804062836329079e-05 0.0006453721724249143 0 0 0 6.556878555431355e-06 +8636 -0.0005018493819759024 0.0004217873869256947 0 0 0 6.624144774486785e-05 +9999 -0.00043681135438714767 0.0004090375157697411 0 0 0 -1.3157771589565172e-06 +8718 -0.0006210567802989651 0.0004564498350341893 0 0 0 -2.830059671888568e-05 +8766 -0.00036857363557064773 0.00025758111642088606 0 0 0 -9.724805559596022e-05 +7110 -0.0004257065657031292 -0.00047930772450003375 0 0 0 -0.0013778350693623078 +8792 -0.0005912667990793854 0.0003794735049171865 0 0 0 -1.729027534629852e-05 +8794 -0.0005443937811639446 0.0005786647957474327 0 0 0 -1.2344481330462654e-05 +8800 -0.0005059505565492541 0.0005068197634649402 0 0 0 1.254218393848447e-05 +1147 -0.0004176643810377124 0.000438795439002398 0 0 0 1.415314798989117e-07 +9727 -0.0005084490254923934 0.0005295145727882861 0 0 0 4.506215076982689e-06 +9966 -0.0003922897729503725 0.00040974005781503424 0 0 0 -7.757482806624504e-06 +8928 0.0018476763298593095 -0.0008863947268981999 0 0 0 0.00016630840411063015 +8275 -0.0005425690516679464 0.00033129526714244326 0 0 0 3.600857173573109e-05 +8963 -0.00032302364406610874 0.0003312238611037762 0 0 0 5.208845312419747e-05 +3127 -0.0005331626811615347 0.0005827251491629197 0 0 0 -7.0794181705694916e-06 +9009 -0.0004436600109042506 0.00040614685390473525 0 0 0 0.00017212982648037628 +9014 -0.00046355860709451163 0.0003866737614539066 0 0 0 9.298824952594847e-06 +9017 4.931250022839403e-05 0.00022393923000990534 0 0 0 -0.00011758550702587665 +9019 -0.0005162214240385773 0.0004560141094645971 0 0 0 -9.257372756609218e-06 +9024 -0.0005177945828800316 0.0004926837772218995 0 0 0 1.1119949085662069e-06 +9053 -0.0005260162199159107 0.0005032877994601355 0 0 0 -4.47597236861491e-05 +9079 -1.2660483699430338e-05 0.0005182008635375653 0 0 0 -1.074066351596733e-05 +9085 -0.0005520480051708368 0.00044396024446327707 0 0 0 5.060509354781852e-06 +9088 -0.0005772626219880231 0.0003817450113748108 0 0 0 -1.8325171698082948e-05 +9106 -0.00011407717464271552 0.00047734121952585924 0 0 0 -1.1211042154568791e-05 +9135 -0.0005205304932699214 0.0004488286443305321 0 0 0 -1.946663235850493e-05 +9693 -0.0006070583995959592 0.00047663966869758944 0 0 0 -3.312677455318098e-06 +9170 -0.00018782716129596433 0.00043592315675441685 0 0 0 -2.625869085401201e-05 +9175 -0.0005283673359024482 0.0005260375478169539 0 0 0 -1.0025129079531833e-05 +739 -0.0002323640015392135 0.00042410515694938766 0 0 0 -2.0279785206953277e-05 +9230 0.00075466924367217 0.0009855613686815142 0 0 0 -0.0009519893507955814 +9236 -0.0005636170281219093 0.0005429216458166568 0 0 0 -3.890625376882693e-05 +9249 -0.0005488646516130785 0.00044252041961409815 0 0 0 -1.4704240739758542e-05 +9275 -0.00048019220851543387 0.0003402740098355917 0 0 0 -4.076242098130656e-05 +9990 -0.0005405811113810142 0.0005113061018309385 0 0 0 -3.888877450323706e-05 +9904 -0.00042050744297807217 0.0004496384071678919 0 0 0 6.415929935985884e-06 +9390 -0.000504860869736349 0.0004923146166267784 0 0 0 -2.648850275631428e-05 +9396 -0.00027521168109996666 0.00225764695692707 0 0 0 -0.0022102724981302234 +9411 -0.0005452631283430169 0.0004333291089231719 0 0 0 1.1260335754266992e-06 +9434 -0.00044583777584966336 0.0004359588000055525 0 0 0 8.42150846098532e-06 +9523 -0.0005212645966721204 0.0005275951082547032 0 0 0 -2.436271236358027e-05 +9556 -0.00040614730730645024 0.00041037402942988363 0 0 0 -5.741699616089896e-06 +6246 -0.00029189074240143715 0.00031633243903348026 0 0 0 1.110821613268633e-05 +9563 -0.0006285674924430027 0.00038157659975907233 0 0 0 -3.353121056942738e-05 +9583 0.0007439910926660997 -0.0007736006023538067 0 0 0 -0.000846628220076189 +9594 -0.00028809087406334255 0.00043661789047739824 0 0 0 -3.316118616236095e-05 +8244 -0.0004933715325982045 0.0006209474233539373 0 0 0 -6.617541508513661e-05 +7682 -0.000303169955080314 0.00044402019865884897 0 0 0 -3.182834922473745e-05 +2322 -0.0005471066042756582 0.0005655818659509326 0 0 0 -2.356141222211964e-05 +9697 -0.000572063500876379 0.00030663289606194024 0 0 0 2.0045106463781793e-05 +35 -0.0004822730942627103 0.0005911611066481332 0 0 0 1.4071215982039055e-05 +2092 0.00021295230825942802 4.762873442407392e-05 0 0 0 -0.00023180982666982014 +8910 -0.0005521422127835144 0.0005855565448077343 0 0 0 -3.757553578749264e-05 +4052 -0.0005028636963209732 0.0006042455036739397 0 0 0 -6.0014205180412115e-05 +7899 -0.00032432542368225403 0.0003389469917807661 0 0 0 0.00016801036950979853 +5365 -0.0003860234194906681 0.00038804092840429147 0 0 0 8.009715849205358e-05 +1947 -0.0005096142046517942 0.000614881590050541 0 0 0 -2.359803717179939e-05 +8748 -0.00041580721041352886 0.00021326464132130643 0 0 0 -5.030919567096758e-05 +6720 -0.0003245101852126048 0.0004535338858049635 0 0 0 1.1676048478963724e-05 +654 -0.00031638876849782215 0.0002457084494645598 0 0 0 0.00010600252866885749 +9363 -0.00028706668256215945 0.00033482375121032744 0 0 0 -0.0002285351629915702 +5680 -0.00025585402441000784 0.00025215921486028945 0 0 0 7.275736496384876e-05 +8904 0.001654342143864198 0.000400493084783757 0 0 0 0.0001800927685758473 +3670 -0.0005280252677972894 0.0005983372634398599 0 0 0 -5.6119476607227166e-06 +8850 -0.0006810363671515054 0.0006047691688443534 0 0 0 0.0009514819412962896 +6946 -0.0005493148593940167 0.0005962685375456901 0 0 0 -2.6944326011335994e-05 +6140 6.63739412350831e-05 0.0003906760566569112 0 0 0 -0.0001790556101883059 +4076 -0.0006090778778098719 0.0003534538330577901 0 0 0 2.295601701864786e-05 +8783 -0.0002983322545230337 0.0002944443773201141 0 0 0 -1.1072252232767979e-05 +4001 -0.00031408311668293637 0.0003234703828885001 0 0 0 -1.7532497791340643e-05 +1258 -0.0005600700529522937 0.000322652197569091 0 0 0 -4.256190127794246e-06 +6024 -0.0005935150085977299 0.00032857543059878737 0 0 0 2.379568103665401e-05 +9168 -0.0006179775166933184 0.0003149625130642152 0 0 0 1.5293093817873177e-06 +3087 -0.0005103139769612785 0.000587594225153855 0 0 0 -3.353372579757509e-05 +754 -0.000634839471275794 0.00047165877508222753 0 0 0 -1.1102722475331373e-05 +6362 -0.0005697472012093662 0.00032758032592484473 0 0 0 -1.59707457084545e-05 +6935 -0.00024147951949249002 0.00024490306365935576 0 0 0 0.00031796421645309 +1048 -0.0005401706680161206 0.0006087306852644456 0 0 0 -5.133233351828594e-06 +5270 -0.0002446219307584485 0.00026153652626111117 0 0 0 -1.249726628263149e-05 +1756 -0.00023447391933309936 0.00023767617710322597 0 0 0 9.492578062926356e-05 +8042 -0.00030466632178110517 0.0002879664864662397 0 0 0 -6.002709490300158e-05 +3953 -3.862949500810876e-05 0.0006305232137677564 0 0 0 -2.7613934392133293e-05 +4679 5.285071078170695e-06 -3.5512694332513226e-05 0 0 0 -7.777119069110014e-05 +28 -0.00019381188817670845 -5.226878309664811e-05 0 0 0 -1.3994253775360964e-05 +3206 9.626679544057216e-05 7.526120139439611e-06 0 0 0 3.130376568966355e-05 +91 -0.0004369184995157536 1.5275194305203646e-05 0 0 0 2.6578705995357145e-05 +99 0.0007399754146210956 -0.0001248954214209656 0 0 0 -2.4668203850546884e-05 +155 0.0003480205149195415 -9.5551979295196e-05 0 0 0 -2.510235796135958e-05 +175 -0.0006968730874674676 0.00016823120690196265 0 0 0 -1.3818200542267505e-05 +191 -0.000572310423518266 4.3870736411632186e-05 0 0 0 -9.374435933912433e-06 +6349 0.00019391977719009017 -4.5920793270876945e-05 0 0 0 3.3918962296460747e-05 +211 0.0005758815160309365 -0.00020130961975429546 0 0 0 1.4845445756672186e-05 +282 0.00037578888149692054 -8.922934593977847e-05 0 0 0 -2.350812557039129e-05 +9485 -0.0005758634707479334 4.841151167234048e-05 0 0 0 -2.071442075194003e-05 +324 0.0004706147176753327 9.826484448821023e-05 0 0 0 -3.4336237144222544e-05 +5687 0.0002416022575790741 -0.00012941450605114237 0 0 0 1.031133826890435e-05 +9788 -0.0004071800004599517 8.056319113880142e-06 0 0 0 -0.00010069692729023349 +395 -0.0004970618531735065 1.48289572449267e-05 0 0 0 2.4220080881247775e-08 +457 -0.00022579976147619487 -8.071448203434828e-05 0 0 0 -3.237635975977188e-05 +3104 -0.0007632896757189309 9.950064170065703e-05 0 0 0 1.8701952275041644e-05 +568 -0.00011686754316613302 -0.00014299865116753239 0 0 0 -2.2720169093329565e-05 +583 -0.0007331919996697698 5.565100392028526e-05 0 0 0 4.935189056506473e-07 +586 3.431378291232765e-05 -0.00015638776992995933 0 0 0 -3.1581287359263454e-05 +610 -0.0005435648786448396 1.4075099365341747e-05 0 0 0 -7.753682764286323e-06 +5942 0.00018192499317029766 -4.199735617304355e-05 0 0 0 4.00106267377517e-06 +616 -0.00044221968206543076 3.217058954637364e-05 0 0 0 -1.2087760524343605e-05 +626 0.00020518303235709175 -8.654417587811179e-05 0 0 0 -3.454890806877388e-05 +639 0.000654239814108267 -0.0002671430957837465 0 0 0 -1.0903610505367049e-05 +3112 -2.6350173569397626e-07 -5.0161929631191955e-05 0 0 0 -9.504553641038395e-06 +662 -0.00047329154624381714 4.00387970543601e-05 0 0 0 -1.7863007731459107e-05 +705 -0.0004021951788280513 0.0001108304890672918 0 0 0 1.624914118858138e-05 +782 -0.0005560670545643701 -1.6575705752722457e-05 0 0 0 1.0884043756712036e-05 +2886 -0.0008725637338116093 0.00017996879346349068 0 0 0 7.147038490171588e-06 +914 0.00021935929467954595 -0.00016375623351914023 0 0 0 -3.012938765397777e-05 +966 -0.0005668645329058194 0.00019593204265608334 0 0 0 5.234672157316687e-06 +987 0.0004483354596829341 -0.00015177599886050667 0 0 0 7.680513439054621e-06 +4826 -0.0007774190990601685 0.0001438225785326263 0 0 0 -3.2302413960880796e-05 +1004 -0.00024207476305965466 -3.202235556773864e-05 0 0 0 4.628977544452086e-05 +6331 -0.0003349693388493083 0.00013403987759377404 0 0 0 -7.01015134097041e-05 +9692 0.00031820747047903435 -0.00017663940398400041 0 0 0 -3.280967165409901e-05 +8083 -0.00023114994149341756 -2.071200194580597e-05 0 0 0 0.00011799946897308893 +1265 -2.249565402360458e-05 -3.257113299282361e-05 0 0 0 -2.1876132861894645e-05 +1331 0.0003484391491120207 -0.00013362486465761587 0 0 0 -3.935410398231238e-05 +1359 -0.0004537732603504991 5.638878283788068e-05 0 0 0 5.829648867525689e-05 +7429 0.0002945204918072611 -0.00013926264487265787 0 0 0 -2.90917812293707e-05 +1437 3.611349838148471e-05 -3.9500395204094274e-05 0 0 0 -2.0601708585354226e-05 +1438 -0.0006126273015268785 6.0251050065754056e-05 0 0 0 -2.6459842218206734e-05 +1451 -8.595244974797263e-06 -9.129731253944562e-05 0 0 0 -3.0206728888780596e-05 +1455 0.0003952860623896994 -0.00012043831509912305 0 0 0 -2.817065619285154e-05 +1502 -0.00047870486970664003 -2.0887370374294532e-05 0 0 0 -7.286304400436039e-05 +5452 0.00019302467358768642 -9.653187878774432e-05 0 0 0 3.2724398982320823e-06 +1553 -0.0005189300367755804 -4.529409510136314e-05 0 0 0 3.561848594946332e-05 +1682 0.0007828355418671024 -0.00021517652379109383 0 0 0 -4.3205685660291325e-05 +1697 -3.6467622269953584e-05 -3.8276293875232496e-05 0 0 0 -9.431486998137294e-05 +1708 -0.00068259734942087 0.00013284154960522976 0 0 0 1.770658027285538e-05 +1743 8.66903843687406e-05 -9.872615198865682e-05 0 0 0 -2.540557047869419e-05 +1773 0.00013973275638359367 -6.160644402023214e-05 0 0 0 -1.8388863511615057e-05 +9291 0.0002705727457201881 -0.00011325427190579844 0 0 0 -0.00010188454636425198 +1814 -0.0006730431755834554 0.0001058918690798194 0 0 0 -8.299077685022531e-06 +192 -0.00015578395014295094 1.9354170058631146e-06 0 0 0 -1.5362980390282523e-05 +1852 -0.0005248991656857246 1.5156007383113901e-05 0 0 0 8.837609344034054e-06 +309 -0.000820481329332405 0.00017053506522844627 0 0 0 -6.854361899810019e-06 +1923 1.8570678698056496e-05 -5.697780082583003e-05 0 0 0 -8.304278723742113e-05 +1992 8.250430164226552e-05 -3.180304315201582e-05 0 0 0 -0.00012413186059484661 +1996 -0.0007023369342108078 0.00010245734911754524 0 0 0 2.4619286764882794e-05 +1998 -0.00015909271902386188 -5.371993028516349e-05 0 0 0 -5.080663156870428e-06 +4409 0.00022893679609888154 -0.00010242540405945501 0 0 0 3.37175401719914e-05 +2046 6.410004490934278e-05 -0.00017955451431940454 0 0 0 3.995477353228656e-05 +2119 -0.0002722590625561706 6.86211187356341e-05 0 0 0 5.537559973949915e-05 +2172 0.00018828308217842642 -0.0001218121817536144 0 0 0 -8.498250141334508e-05 +1325 -0.00023842330520169728 3.324160076855424e-05 0 0 0 3.091522206829201e-05 +2200 -0.00031119957229179426 4.537604887275323e-05 0 0 0 -8.403976731845769e-05 +2210 0.0001382718384813265 -2.256073143561867e-05 0 0 0 -1.0564586733340947e-05 +2231 -0.000676424248919924 2.9099423637094118e-05 0 0 0 -9.282516646862675e-06 +2319 0.0008952900143963395 -0.00021866867836992828 0 0 0 -3.237697707869686e-05 +2333 0.0001276807176765929 -7.554488763108932e-05 0 0 0 -6.484320768547642e-05 +2955 -0.0006391299791127224 4.388873204002325e-05 0 0 0 -6.3815396267367046e-06 +2413 -0.0005552452138023811 6.246323366630145e-05 0 0 0 -1.1147489180053905e-05 +2428 -0.0005343808080256667 0.00011812029865016654 0 0 0 -3.324196681930486e-05 +2493 0.0002443609857819203 -0.0001458701758651462 0 0 0 -3.139083876563609e-05 +2505 0.000157025165577414 -7.980345488330773e-05 0 0 0 -1.822996413076694e-05 +2512 0.0009571336534417023 -0.0002757630508780711 0 0 0 4.346004887518439e-05 +2525 -0.0004988806121148714 5.0762616473029904e-05 0 0 0 -1.1661935166360296e-05 +2541 -0.0004578649029318666 3.004023986581729e-05 0 0 0 -3.0097086226338966e-05 +2552 0.00043283836158959535 -0.00011113296225760989 0 0 0 -1.8245557669093615e-05 +9113 6.476379690019865e-05 -0.0001646193924781002 0 0 0 -5.8487510588201376e-05 +2624 0.00028255795541885586 -0.00011368507798655834 0 0 0 -4.827547456501153e-05 +2691 -0.00048032456252012013 1.1323264107634693e-05 0 0 0 1.9781809364516647e-05 +2709 0.00016642970755223013 -7.218973454891653e-05 0 0 0 -3.2823783735040707e-05 +7640 -0.00031253317451980983 0.0001263059423995054 0 0 0 4.5946538436976175e-05 +2739 0.0004050873341946655 -8.966924206734701e-05 0 0 0 -0.00017888662536997077 +2747 0.0009378932980984263 -0.0012761721734905187 0 0 0 -0.001088477283181804 +2763 0.0007139411113776359 -0.00023615770841185839 0 0 0 -4.449221327838381e-05 +2808 0.0005926721199323158 -0.0001969906386657202 0 0 0 -5.562439609869208e-05 +2820 0.0006597144237370385 -0.00025679365945997546 0 0 0 -4.585454235511951e-05 +2822 -0.0007659852282902085 0.00016958197215168842 0 0 0 -1.8533193397797394e-05 +9777 0.0004854780953327433 -0.00018716847796610626 0 0 0 6.98978090298059e-05 +2832 -5.790216799650171e-06 -6.16483978529181e-05 0 0 0 6.588402656917141e-06 +9674 0.00022324917173901772 -3.265449726143295e-05 0 0 0 -0.00010701917865166822 +1843 1.3637862315154557e-05 6.616795196057701e-05 0 0 0 1.879123113745488e-05 +2884 0.0009253356550094441 -0.0002662849360225045 0 0 0 -8.46612760271035e-05 +2890 0.0006100808903804895 0.0010065315522647784 0 0 0 0.0016936040337702657 +2899 -0.0005222090349087408 2.0146003563712473e-05 0 0 0 -9.539548806331168e-06 +2339 -0.0001710862217943395 0.00013724269245275162 0 0 0 1.6735197311340157e-05 +2966 -0.0006698587476191095 0.000143743139173745 0 0 0 7.302314924615876e-06 +4161 -0.0007871127077875607 0.00013298224179734795 0 0 0 4.1488142375134096e-05 +2992 0.0004921020510065166 -0.00017571759669733527 0 0 0 -3.2694847950387534e-05 +2162 0.00017604795487582463 -0.00011677821530991035 0 0 0 9.028804795186455e-06 +3021 -3.645426343315264e-05 -4.336790159455834e-05 0 0 0 2.7738031846821385e-05 +3051 -0.0005567666797087905 3.0263036832707065e-05 0 0 0 1.4476994787445108e-05 +3052 0.0008824568724771283 -0.0001983931098391331 0 0 0 -1.1152120771464221e-05 +4442 -0.00029910663763192376 0.0001300533696581552 0 0 0 -1.9985918243641625e-05 +5763 0.00026843958745390533 -0.00014763036348463691 0 0 0 -5.4989538133127914e-05 +9756 0.0006732616709990569 -0.00020605091800320326 0 0 0 1.2541723606950805e-05 +3099 -0.0003287256861152101 3.445347099935964e-05 0 0 0 -0.0001421636715947678 +5832 0.00015022043014941734 -9.328793148411978e-05 0 0 0 -0.00012090216574140713 +5877 -0.0008031598692124808 0.0001668458377988927 0 0 0 2.227251638332465e-05 +3198 0.00019975259714420586 -0.00012999827790787823 0 0 0 1.1975914873763066e-05 +3078 0.0003342391149041523 -0.0001828742365022158 0 0 0 -9.591217929004397e-06 +660 -0.0002686491958680677 6.972052837865857e-05 0 0 0 1.2850617346257328e-05 +3319 1.2252202672600984e-05 2.230805488583477e-05 0 0 0 5.1804791884288815e-05 +3333 -0.0005213146030392659 3.540542338195235e-05 0 0 0 -1.8545441077899563e-05 +3374 -0.0002397157406681029 4.9640462311849304e-05 0 0 0 -0.0001356793274932189 +3375 -0.0005887563725645605 1.3757352939259374e-05 0 0 0 -8.7973923666202e-06 +3388 0.0004617326172177991 -0.0001818695810943303 0 0 0 -0.00026197785804695813 +3389 0.00031796341353961254 -3.431666552261014e-05 0 0 0 6.343985161646622e-05 +3401 0.00019137455968180263 -0.00011318277501833299 0 0 0 3.621915063852802e-05 +3468 0.0005379435615468379 -0.00012903179626291462 0 0 0 -5.820799540581431e-06 +3473 0.000427090558920768 -2.8183363325514854e-05 0 0 0 -6.372918593133985e-05 +3478 0.00016655030894310112 -2.5789665975830753e-05 0 0 0 1.6775490126674724e-05 +3494 -0.00018668659913622716 -5.137781582454147e-05 0 0 0 -0.00010808193321381338 +3498 0.0004681472166641226 -9.262927014973237e-05 0 0 0 -4.919105656949497e-05 +98 -0.0004584420698438019 0.00015157517744372707 0 0 0 -9.908900228604903e-06 +3423 0.00022892726574926602 -6.115833347974484e-05 0 0 0 9.17409742205084e-06 +3516 -0.00046792246125636536 3.0404578966878097e-05 0 0 0 -8.34723564399305e-05 +3533 -0.0005221738446644128 4.415386567344009e-05 0 0 0 -2.5139988305283587e-05 +3568 0.00033491151752451485 -0.0001049196424497462 0 0 0 2.231000455502805e-05 +3572 0.0007505400714252767 -9.566224607350568e-05 0 0 0 -4.209752457329259e-05 +4328 0.000552331070301963 -0.0001863020258345888 0 0 0 -2.0804161537150643e-05 +1754 -0.0003195468464495788 0.00016017300596140682 0 0 0 -1.7177412893644393e-05 +1401 -0.0007830532009354879 0.00018224850990439684 0 0 0 -3.897691505443024e-06 +947 -0.0007397843778065321 8.70740129228204e-05 0 0 0 4.856910228968007e-06 +3741 0.00011103605359012397 -0.00012950002533184074 0 0 0 -1.1682688438376879e-05 +7339 5.381609117534659e-05 2.228432636767562e-05 0 0 0 1.9090723427426154e-05 +3771 0.00031204519504505617 -8.216284166848933e-05 0 0 0 -1.0670587612626117e-05 +3805 0.00033324789433106206 -0.0001783765115682536 0 0 0 -9.234159207961274e-06 +9997 -0.0006447647831130744 4.281938131434712e-05 0 0 0 1.4310836179647363e-06 +3868 0.00011390990939874244 -0.0001522856150611865 0 0 0 -4.32542798337823e-05 +3909 -0.0004894227460979026 3.1329324681515354e-05 0 0 0 2.5797232266879663e-05 +3955 -0.0004706918711901684 0.0002320972888140896 0 0 0 9.6826434185826e-06 +3968 -0.0004979536830031052 4.592376467706934e-06 0 0 0 -1.8292079078347915e-05 +1388 -0.0005654486386919581 0.00021449044802659538 0 0 0 -4.062108560303002e-05 +4002 -0.0004838834931637809 3.000013293797884e-05 0 0 0 7.206153773591153e-05 +4026 0.00020568145632207655 -0.00016562301579396281 0 0 0 4.107588072362394e-06 +4028 4.382247971649528e-05 -6.731880148665051e-05 0 0 0 -4.780003457542412e-05 +4047 8.834656690402387e-05 -0.00014056464396026 0 0 0 -3.467459529103746e-05 +4051 0.0003594687273663855 -0.00010636725049234505 0 0 0 0.00012555321014764251 +878 0.00024111290134012618 -0.0001252969074140572 0 0 0 -2.431323722171426e-05 +4118 -0.00034232462505331805 -0.0001045391926728971 0 0 0 -2.5556154247561152e-05 +4125 -0.00046052322900037954 3.3942637081403326e-05 0 0 0 -2.425958639127924e-05 +9503 0.0002394942669187329 -7.335521420996149e-05 0 0 0 9.656175178705427e-05 +4211 -0.0006171065049929355 2.664975130825513e-05 0 0 0 -2.5884410875421775e-05 +4254 -0.0005806014636215514 4.490237669360055e-05 0 0 0 5.52786955117866e-06 +4312 -6.54427600617551e-05 -5.2971451694422295e-05 0 0 0 -6.55179126425523e-05 +4316 -0.0007171802841842385 0.00019224632526805847 0 0 0 -5.3720282119463555e-06 +4324 -0.00047568102778706734 1.943765142250619e-05 0 0 0 -1.432095598420372e-05 +4368 -0.0005690058280270635 3.55332418160363e-05 0 0 0 -2.562753408487193e-05 +4415 0.00018071566952179103 -0.00010478008729560051 0 0 0 -0.00011076899127222464 +4433 -1.601059944257818e-05 -5.591425997064447e-05 0 0 0 -1.2493465376440487e-05 +4444 -0.0006179469191848219 0.00013566341922547438 0 0 0 -3.0984837691932815e-05 +4457 0.0006145365917930102 -0.00012557999860492313 0 0 0 -0.00010687655641780521 +9804 0.0003518727393184611 -8.662809986016938e-05 0 0 0 4.5912950546173935e-06 +4727 -0.0005350203773851003 4.3396137971269415e-05 0 0 0 -1.3602649827339843e-05 +4730 -0.0003850022507058239 6.817800593944437e-05 0 0 0 -9.75519273007584e-05 +9789 -0.00023357429517856706 -0.0009132057930067047 0 0 0 -0.00011110391786907902 +8476 -0.00023235857239510232 -5.786276125885033e-06 0 0 0 -0.00010012034754402971 +4786 -0.00045845140360790656 2.460071233325531e-05 0 0 0 9.79959548692305e-06 +4801 0.0003861059318908507 9.92873778161744e-05 0 0 0 -0.000497302431154541 +9056 0.00019675166515506034 -8.947171650626878e-05 0 0 0 1.792573121616603e-05 +1855 0.0002580404935361687 -0.00011701216488439795 0 0 0 1.444426347788853e-05 +4886 0.0007536322698676541 -0.0002690501822309849 0 0 0 -2.8818768879779395e-05 +4910 -0.0005283488813997975 -8.706289606084059e-05 0 0 0 -9.113659811940347e-05 +5038 -0.0006501959188409529 2.2391863934604398e-05 0 0 0 -2.3104379007054867e-05 +5129 0.0002598132869485801 -2.701230300582394e-05 0 0 0 3.298569569566926e-05 +5172 -0.0006951233264761371 9.528348416061049e-05 0 0 0 -3.0061789956036022e-05 +5192 0.0006533905013445119 -0.00014604117564077533 0 0 0 6.517590121577483e-05 +5211 -0.0005187472128380442 4.7958828326971105e-05 0 0 0 -1.1354177033263517e-05 +5214 -8.718711396350041e-05 -7.007835182085068e-05 0 0 0 -3.910075940810297e-05 +9825 -0.0007685528650810313 0.00015239930812045615 0 0 0 -2.779827273775185e-06 +5287 0.0004031432600750604 1.595427221791416e-05 0 0 0 0.00016768314219379085 +5306 -0.0004887020752441849 8.44240510452182e-05 0 0 0 -0.00014091247119144853 +5347 -0.0004815995521845293 6.667813179624228e-05 0 0 0 2.8206017392317302e-06 +7962 0.0003822243702674865 -0.00011186793652854859 0 0 0 -1.3553915489909327e-05 +5370 -0.0006025290251758607 3.106263243221099e-05 0 0 0 -1.2719545802259262e-05 +8207 0.0001968050299400779 -7.22824974929246e-05 0 0 0 6.840285860912615e-05 +5423 0.0008877232780348726 -0.0001088671846788491 0 0 0 -5.320393197125477e-05 +5480 0.0005377240128307506 -0.0001593493596937091 0 0 0 -7.478426392196819e-05 +5493 -0.0006696141660171366 4.5788158466791145e-05 0 0 0 -2.710791448644635e-05 +5514 -0.0001377009575912888 -1.3394907744003373e-05 0 0 0 6.399350161840302e-05 +5523 -0.00047184232705062957 6.425450960603827e-05 0 0 0 -1.3045906476943934e-05 +6395 0.0002458610542882899 -0.00011019701775812212 0 0 0 2.4313699726785268e-05 +5528 -0.0005918028930495073 4.7184797031435765e-05 0 0 0 -1.267192353086601e-05 +5547 -2.177133358433991e-05 1.4596205353609743e-05 0 0 0 2.5630753475946942e-05 +5575 -0.00017618295858492535 -2.2920132308368814e-06 0 0 0 -0.00012102377131019563 +5599 -0.0007037159545985583 4.488969669906979e-05 0 0 0 2.3845810537207575e-06 +5609 -0.0005449785610912476 3.646371813070789e-05 0 0 0 -2.01351084239746e-06 +8480 0.0002968533381737144 -0.00017594622730837046 0 0 0 -8.049217942865242e-05 +5651 0.000492422123148468 -4.150621814889163e-05 0 0 0 -7.623195103635532e-05 +5717 9.714850711202865e-05 1.4464258715072888e-06 0 0 0 3.577933421710815e-05 +5729 -0.0005027294577728464 2.299546757793815e-05 0 0 0 5.953809812071276e-06 +5738 -0.0004732525721584784 6.811619124245234e-05 0 0 0 -2.114562252005661e-06 +5811 0.00020430323953463206 -3.360222524641709e-05 0 0 0 -0.0003467399958904731 +3721 -1.4371876847129365e-05 8.347665507368686e-05 0 0 0 -5.2035481547231045e-05 +3991 -0.0005232171076026029 -9.235133537483001e-05 0 0 0 -7.340542619318855e-05 +5835 -0.0004959108520557556 1.4451299394893332e-05 0 0 0 -2.2032051899062923e-05 +5885 0.00015023308330422005 -2.738817424518178e-05 0 0 0 -5.439220722088043e-06 +5999 -9.997252096391286e-05 -0.0001873256542868563 0 0 0 -7.882352056711922e-05 +6060 -0.0004897047013619882 7.002138860652695e-05 0 0 0 -2.2989253467655877e-05 +6075 0.00083011573325388 -0.00021294443397091976 0 0 0 -6.704983966286521e-05 +6127 -0.0004559233464786852 3.931689973296207e-05 0 0 0 -6.487040459790327e-05 +6147 0.00013509470279976583 6.557205226047042e-05 0 0 0 3.360363391802042e-05 +6210 0.00014554897796933758 -9.026419179723387e-05 0 0 0 -3.1805640340198825e-05 +6211 0.00040099835818784897 -0.00014989017996771956 0 0 0 -7.081371072209473e-05 +6212 -5.85022759402947e-05 4.235581340163747e-06 0 0 0 5.959078846878754e-05 +6050 -0.00021647150818776887 3.353957865950203e-05 0 0 0 0.00012269798454619143 +6235 -0.00019745467069820063 -6.337869162950336e-05 0 0 0 0.0002569615863749835 +6236 -0.0007659197206488092 0.00012463577692534028 0 0 0 7.953003474637773e-06 +6241 6.640329813978511e-05 -7.292609114341406e-05 0 0 0 2.9805279889560124e-05 +6302 -5.728658942967522e-05 -2.8682596920011942e-05 0 0 0 -0.00018870375869321787 +6336 0.000327358460358049 -0.00014976949935758426 0 0 0 -5.739546108554564e-05 +6365 0.0003329381132343767 -0.00017506267609521654 0 0 0 4.716311119286946e-06 +6392 -0.0007092624647965519 0.00010547324159717931 0 0 0 -2.7260807204663046e-05 +8730 -0.0007416073138650356 6.825488958207135e-05 0 0 0 1.6997962526520035e-05 +6450 2.481794908581029e-05 -0.00013962804252009084 0 0 0 5.0523638720839115e-05 +6472 -0.00019165065298526248 -1.201981506305716e-05 0 0 0 4.3431050474585555e-05 +6475 0.00018246764824044614 -3.210599612142239e-05 0 0 0 -2.0294574335757307e-05 +6478 -0.0001336664860028644 -8.949211426709099e-06 0 0 0 -0.00019302660094805258 +6488 -0.0004423076005103333 2.446945465389055e-05 0 0 0 -4.2618187303901146e-05 +6518 0.0008123761834377257 -0.00020815525263051684 0 0 0 -1.755167556295879e-05 +6525 -0.0003400689280203422 6.284512173972053e-05 0 0 0 0.00019408847975297292 +3200 0.0003705814006280888 -0.00017422772766156436 0 0 0 1.6996421378647217e-05 +6555 0.0007562233457272092 -0.00012771217601960765 0 0 0 7.168731414168354e-05 +6677 0.0006755467078658656 -0.00014813711401152573 0 0 0 -0.00010318681415404988 +4754 -0.00023278914595224113 0.00012359399680460912 0 0 0 4.76829800200251e-05 +516 0.00026959386258992683 -0.0001431325875949818 0 0 0 2.867805252352888e-06 +6708 -0.0006702406071950868 0.0001613511537037393 0 0 0 0.00011412337917777656 +7853 -0.0008092445070408758 0.0001622188127958162 0 0 0 1.0316908000684372e-06 +6741 -0.0004803624903084119 2.623939040819105e-05 0 0 0 4.91750109804358e-06 +6762 0.0005402689459609473 -0.00019040452326834744 0 0 0 7.49777369485419e-05 +8930 -0.00040457946143344534 0.00017155450916852508 0 0 0 -6.319349346338196e-06 +6870 -0.00015811833319485648 -0.00022564501930296134 0 0 0 0.00011210207036108312 +6883 0.00016199708047505762 -0.00015399719348888974 0 0 0 -2.2356147554292045e-05 +1008 0.000296341992798516 -0.00015944021728806797 0 0 0 1.264428960105551e-05 +6907 0.0001715659566371211 -0.00012709380469714214 0 0 0 -4.029253500510309e-05 +6917 0.0004130054206660803 0.00039923036968971123 0 0 0 -0.0008144751715496808 +6937 -0.00042748020681275566 1.1649381338305671e-05 0 0 0 -3.854758348177868e-05 +1298 0.0003443349012541529 -0.00015739117413259666 0 0 0 -1.2885548914298414e-05 +6979 0.00044158031964638815 -0.00014976704527034076 0 0 0 -0.00010053919745297004 +7002 0.0006041359682543674 -0.00026380084744881285 0 0 0 2.7232242499737857e-06 +7094 0.0003118648625511492 6.1957157746685e-05 0 0 0 -0.0004496283955201102 +7115 0.00013870111007479154 -5.489542895613693e-05 0 0 0 8.497514023634366e-05 +7136 -0.0006451249354546778 0.00016514299566663807 0 0 0 -0.00010467740977755367 +7138 -0.0004908488564778919 6.483980962904266e-05 0 0 0 -2.0702566651638754e-05 +7154 0.0006147203527487509 -0.00021985803165263147 0 0 0 0.00011719536895310883 +7992 -0.0005137476413313414 7.825616295290038e-05 0 0 0 -5.1415256002341194e-05 +7170 0.00013638881946285373 -8.147568711695951e-05 0 0 0 1.4927923576421765e-05 +7192 -0.0001574315279541327 -3.435012532298503e-05 0 0 0 0.00022515004173236558 +7688 -0.0007471090008382923 0.00017568891679276845 0 0 0 -2.0594903353085318e-05 +7238 -0.0004559820518727953 5.239765757392235e-05 0 0 0 -0.00010812021976148423 +3275 -0.0005912632374595892 6.102273995999565e-05 0 0 0 -1.1596408603050756e-05 +7306 0.0006385396055631859 -0.00019889236753124293 0 0 0 2.822849995108058e-05 +78 0.00019312379176311177 -3.430077203681573e-05 0 0 0 2.6426518587465763e-06 +9751 -4.1365467171901595e-05 -0.00022155510131569183 0 0 0 -8.703008717012267e-05 +5665 -0.00023988109192564958 5.2065613888893126e-05 0 0 0 -6.020473510337457e-05 +7482 -0.0004938310657929783 8.630396087884907e-05 0 0 0 0.00017140886906293762 +7548 -0.00032912294071189716 -0.00010769434592728437 0 0 0 -0.00014143050214173448 +7554 0.0006528273653395133 -0.00027078675383618273 0 0 0 2.0910580911392203e-05 +7612 0.0004239892147300086 -0.00011964386973663772 0 0 0 -2.8641130967511856e-05 +7634 0.0007268141660556442 -0.000561647160391759 0 0 0 0.0004125597680843544 +7692 -0.0004677957295513593 3.678638495730898e-05 0 0 0 -5.3391328615574806e-05 +1251 9.567825450110971e-05 -1.9730861942029116e-05 0 0 0 6.837789880341631e-06 +7746 0.00032481276098923826 -0.00010114642595004524 0 0 0 -2.0411195371399802e-05 +39 0.0004517175132313039 -0.00012749128169705848 0 0 0 -8.779831579349689e-06 +7803 -0.00038016621108679255 5.3911962706393756e-05 0 0 0 -0.00016238589197468825 +7833 0.00026724931570990874 -7.131159155928598e-05 0 0 0 8.257222799003568e-06 +7861 -0.0005981089856173724 0.00018815250558458895 0 0 0 -3.880703694527362e-05 +7877 -0.0005574941968587598 0.00012097943341293797 0 0 0 0.00011583730736909567 +7888 0.00020113418558441863 -0.0001317865384267979 0 0 0 -9.34300864510869e-05 +7952 -0.0001652178863450826 -8.369564636140524e-05 0 0 0 0.0002920186947944629 +7919 -0.0004544529419037474 2.861155763409178e-05 0 0 0 -5.6504908765789535e-05 +8012 -0.00020014851252477114 -0.0004320748043961138 0 0 0 0.0006670218677317617 +7720 -0.0001779357444743878 -7.260144372439817e-05 0 0 0 -0.0003750361935922527 +4536 0.00036267188863648163 -0.00018799489194403965 0 0 0 -1.4521211695120027e-05 +8145 0.00030763361382650457 -0.00018089480963922848 0 0 0 1.0534570865387576e-05 +8158 -0.0005468442237211833 3.917728383168018e-05 0 0 0 -1.4839385797524108e-05 +8194 -1.5030924027352441e-05 -7.672298290899229e-05 0 0 0 -1.6235822886665244e-06 +8208 0.0001392059032352256 4.130356153360595e-05 0 0 0 5.779694900147763e-05 +1413 0.0003190583074405869 -0.0001792644105615833 0 0 0 7.436485339386929e-06 +6951 -5.154371314094062e-05 0.00010881136105171814 0 0 0 -2.969963376763143e-05 +3831 -0.0007284454203695397 5.4441226087923606e-05 0 0 0 6.6754751267750195e-06 +8367 -0.0006877404107981247 0.00018443157446091111 0 0 0 -8.779206815687637e-05 +8379 -0.0003375970582438784 5.896397091655955e-05 0 0 0 5.458321571876256e-05 +8421 -0.0006206314508713494 4.135870672467563e-05 0 0 0 -5.920563091804926e-05 +8459 0.00038311679988541156 -0.0001777792563365388 0 0 0 -2.922491649138062e-05 +8463 0.0011970880997904591 -0.0006091168753713497 0 0 0 -0.0004346850558625924 +8533 -0.0004985299072444166 -4.2648292735635695e-05 0 0 0 -7.045957192065336e-05 +8603 0.0002315048562236113 -0.00011500245188679504 0 0 0 -7.294390608825805e-05 +8621 0.0007409016421438465 -0.00022070186556858023 0 0 0 -6.126937416798021e-05 +8654 0.0005670445885893312 -0.0001802013647529532 0 0 0 4.479502028418963e-06 +8692 2.957791794910048e-05 -5.506163808034277e-05 0 0 0 3.4981565415124574e-05 +8708 0.0006260445471484158 -0.0002543599643502602 0 0 0 4.530994962746589e-05 +8777 -0.0005409688816313062 2.5233016534186875e-05 0 0 0 -4.9446428966424096e-05 +8809 0.00020730863763291195 -5.85308012051041e-05 0 0 0 -8.102740174975318e-05 +8858 -0.0006674440788786833 7.569397201365833e-05 0 0 0 3.982151813950971e-05 +3587 0.0002612798254100436 -0.0001292239301718659 0 0 0 -6.025656958948569e-06 +8950 -0.0005002881589330694 -2.549721926938335e-05 0 0 0 4.0151270615833476e-05 +8980 0.00041011474573892666 -8.461196582189564e-05 0 0 0 0.0002111088494081284 +9023 8.578864876504563e-05 -2.3904601837704205e-05 0 0 0 -0.00011273024813491585 +9034 0.0012957702606977463 -0.0001849996792805545 0 0 0 0.0009088840150138112 +9062 -0.000345390690325695 1.817634113806415e-05 0 0 0 -0.00023412749522430714 +9204 -0.000757816564652693 0.00011957032777758948 0 0 0 3.580465192473916e-05 +7169 0.0005791159904323927 -0.00014907875773162365 0 0 0 -4.8801447804028995e-05 +9240 0.00048528412064222315 -0.00014257031343293449 0 0 0 0.00011804598619732507 +5967 0.0003459188986608792 -0.00019000843860666423 0 0 0 1.3852000668154684e-06 +9295 -0.00042319117888372517 0.00011253789819433626 0 0 0 0.00010277185989312446 +9331 -0.0006632635956084586 3.900455840352182e-05 0 0 0 -4.8985766515327643e-05 +9398 0.0009608325182580383 -0.0002832512121826724 0 0 0 -4.998617770355488e-05 +5283 -0.0007852494076713879 0.00013836656349320417 0 0 0 4.561361515263012e-05 +9480 -0.00014930633676677046 -9.124513047360582e-05 0 0 0 -0.0003950750910829341 +9481 -0.0003053544239473897 -0.00014135822285922718 0 0 0 0.00012443891486114416 +9543 -0.00069513435081183 0.0001667780136719154 0 0 0 0.00016397846112677252 +9550 -0.0006208363331356628 -6.184333422724552e-06 0 0 0 3.868967227367664e-05 +9580 4.173273350222939e-05 -0.00014913459736774507 0 0 0 -0.00020822855821754638 +9609 0.001076448485604998 -0.0001859566078564761 0 0 0 -5.400499596375965e-05 +9614 0.0009333480899802321 -0.00023985682796809568 0 0 0 -8.760286555791526e-05 +5830 0.0001773117199362848 -0.00015695300455778434 0 0 0 -1.2840769562350521e-05 +7362 0.00033602366482930946 -0.00011578302456241104 0 0 0 8.702646744880468e-06 +4320 0.00022283955641066785 -0.0001113933900678103 0 0 0 5.155905197414686e-06 +384 0.00022258328754124314 -0.00013137502783274103 0 0 0 1.1149887407682664e-06 +1643 7.068119252630394e-05 3.852983854466044e-05 0 0 0 -2.4888741673475073e-05 +3510 0.00014796819117448274 -8.794782936923956e-05 0 0 0 6.714346224095132e-05 +9032 -0.0006121980866945176 6.510769235988126e-05 0 0 0 3.623925327530392e-06 +6153 0.00025079964927282556 -0.00016349212396789533 0 0 0 -3.6330276188740646e-05 +2012 0.0001262897577246373 6.253115119631785e-05 0 0 0 9.485966037100555e-06 +6215 0.00012870183217816798 -1.701703026268731e-05 0 0 0 -8.509754965192624e-06 +7796 0.0005043220404061923 -7.891114426030492e-05 0 0 0 6.643102305441558e-05 +9749 -0.00015441398941439915 0.00014046788620963497 0 0 0 -9.272735397144669e-05 +954 0.00016750486041449756 -4.31864603545752e-05 0 0 0 7.906089931072194e-06 +5821 -0.0006253471702833523 6.103136669238047e-05 0 0 0 -1.7565989493325145e-05 +4031 0.0006225391415122481 -0.00014221951034266658 0 0 0 -8.861184988280161e-05 +20 0.0007662548548288077 -0.00014951592325355013 0 0 0 6.651386353862147e-06 +1640 0.0008034687345115151 -0.00027171094864296983 0 0 0 8.61603114840929e-06 +3257 0.0013217903209251044 -0.0002755172436464839 0 0 0 2.546149347146074e-05 +96 0.00035354782339528144 5.776752938988099e-05 0 0 0 9.424163714596526e-06 +105 0.0004788805487422431 -0.00021330834471858584 0 0 0 -9.656227157900475e-06 +123 0.00034689572227912806 -4.801039700382408e-05 0 0 0 1.0076870870570573e-05 +164 0.0011894614201819007 -0.00026600084223589394 0 0 0 3.371087739180903e-05 +188 0.00018441729011599455 -9.442420173452691e-05 0 0 0 -1.8875037926224845e-05 +248 0.00015020321695132576 8.289812050392774e-05 0 0 0 1.3811902808531413e-05 +5984 0.0008180630412033756 -0.00022623852685912902 0 0 0 -3.4001590145965774e-06 +6544 0.0012256419770366699 -0.0002687156474025436 0 0 0 -2.4825970128904764e-05 +9663 0.00033927997010840783 -0.0002230325621201988 0 0 0 4.6229585072625677e-05 +294 0.0002043824570855208 -0.00019147956040674397 0 0 0 -8.671954415102064e-08 +312 0.0003304417838398006 -0.00017455959472764478 0 0 0 8.237031014258631e-06 +356 0.0008282693796866431 -0.00014734841663340245 0 0 0 -6.86676480873661e-08 +365 0.00018127061740626083 -8.041524171502005e-05 0 0 0 1.516351579553478e-05 +8363 0.0011415967505266492 -0.0002722734313194516 0 0 0 9.725602435455997e-05 +426 0.0005754532741625769 -0.0001406072485045207 0 0 0 9.413958762179879e-06 +442 0.00023855407480709705 -0.000117470242307655 0 0 0 2.2336560471659173e-05 +455 0.0007482069082179235 -0.00011807022116471869 0 0 0 -3.803463239190356e-06 +467 0.0008986003907634576 -0.00016503063169272833 0 0 0 2.44661210816179e-05 +483 0.0007253277768568726 -7.578466440809402e-05 0 0 0 -6.809687513323692e-06 +2957 -6.554155981433942e-05 0.00018809763086839038 0 0 0 6.667860823792978e-06 +559 0.0011654868173029947 -0.0001687830887559028 0 0 0 -3.733700391375999e-06 +572 0.00028222415650235196 -0.00020823225777528057 0 0 0 5.8283431785339995e-06 +8040 0.0009964211510662445 -0.00019478801197926179 0 0 0 -8.71406340956707e-05 +612 0.00038649229967310745 -0.00020836524500357338 0 0 0 -1.4449533637960658e-05 +7696 0.0011645361639695258 -0.00017775562949359525 0 0 0 4.28171153711319e-05 +770 0.0003390596837612581 1.993649030449606e-05 0 0 0 2.7318165325261693e-06 +866 0.000683407781481337 -0.00021589333967613432 0 0 0 1.2159332791138547e-05 +9271 0.0008892827076996456 -0.00012993712533524923 0 0 0 -6.951285933552214e-06 +915 0.0005926130823695081 -9.979502607240513e-05 0 0 0 3.887896526963045e-05 +938 0.0003168721321744525 -0.00023824735459859923 0 0 0 1.2853024822662965e-05 +7457 0.001260637271688741 -0.0002524444219723221 0 0 0 -7.29142091010314e-05 +9128 2.675748911967825e-05 0.00015449785783107594 0 0 0 1.5849409969087284e-05 +1025 0.0006432934447867285 -0.00014671897047782882 0 0 0 -6.964654125476426e-06 +1042 7.256265409312142e-05 0.00010970507229652301 0 0 0 5.040824771819074e-05 +1043 0.0007471135872827015 -0.00016366880144040054 0 0 0 -5.108758153379635e-05 +1093 0.0008130480808524407 -0.00017784492566124096 0 0 0 -1.538830001302921e-05 +7195 0.0008504960243700942 -0.0002704805655514362 0 0 0 -4.609835881540294e-05 +1177 0.0006276961587696524 -0.00028335723140520205 0 0 0 2.941276179444389e-05 +1237 0.00020087018253513725 -0.00016725623075856288 0 0 0 3.782873010966637e-05 +1240 0.0002901242682334715 -7.671515369540161e-05 0 0 0 -6.739364105969667e-07 +1262 0.0009147014326616723 -0.00016988968816788512 0 0 0 -1.914345994964485e-05 +1263 0.0008258403322753423 -0.00014610872941358725 0 0 0 1.2465583219737755e-05 +1289 0.00011227408479615105 2.214132142695147e-05 0 0 0 5.199681380684716e-05 +7237 0.00122362242926825 -0.00027039052268733424 0 0 0 -2.8913973709323802e-05 +6953 0.0011414731755438425 -0.00025016352310663296 0 0 0 -7.445420354898947e-05 +1407 3.7897810435129996e-05 -2.635426162632306e-05 0 0 0 7.59371809121355e-05 +6656 0.0008867475256907475 -0.000202059357465753 0 0 0 8.104002990340391e-05 +1429 0.0005750880746781389 -0.00020434772119280807 0 0 0 1.6318502515406262e-05 +3107 0.0009487418441900423 -0.0001422154674181806 0 0 0 3.5009361077540964e-05 +1540 0.0005079500175864327 -0.00016293043969148763 0 0 0 -2.9423125414933266e-05 +1555 0.0002969320730961804 -0.0001739031519751558 0 0 0 2.322302348413771e-06 +1571 0.0008429700163011363 -0.000146440655975377 0 0 0 -6.358572315932629e-06 +1587 0.0005726449936333559 -0.00021521500738123266 0 0 0 1.1471692327231078e-05 +1597 0.001016935567472245 -0.00029494797453418793 0 0 0 8.037880240234041e-06 +1598 0.0006188326574919421 -0.00013445601011170813 0 0 0 -3.8206162471920425e-05 +1647 0.0004866517537620564 -0.0001645789356035352 0 0 0 -2.5796177865817755e-05 +4134 0.0009483903712921239 -0.00011862539099740666 0 0 0 4.009193628510029e-06 +1691 0.0005973675315512155 -0.00018448019000749384 0 0 0 -5.704851695656376e-06 +1710 0.0011576184300374046 -0.00023188622355213917 0 0 0 -1.9112382448402828e-05 +5610 0.001115731051617233 -0.0003006133116458633 0 0 0 3.2185690647390194e-05 +526 0.001189195748391215 -0.00026325955156306124 0 0 0 -1.9039707758150874e-06 +8365 0.0013240964929858167 -0.0002837033124535544 0 0 0 -0.00011184271829176385 +1874 0.000403262263731259 -0.0001973367878488455 0 0 0 -1.178606955262913e-06 +1885 0.0008895729438644823 -0.00021446879828240998 0 0 0 1.0299698627536887e-05 +1913 0.0008904716740385933 -0.0002522229361403077 0 0 0 -5.9688642356138716e-06 +1955 0.0008006526673068657 -0.00017093454604830764 0 0 0 -1.0108119099909002e-05 +1962 0.0005631713625107292 -0.00016955734498831898 0 0 0 9.44967219871888e-07 +6133 0.0010831706982665464 -6.913747156367991e-05 0 0 0 3.576642580385709e-05 +2038 0.0003265878379410365 -0.00022467745770469807 0 0 0 -0.0001491884826728164 +2095 0.000402587241869363 -0.00017384680160501708 0 0 0 4.10575708595283e-05 +2099 0.000911842910746349 -0.00021169721199941672 0 0 0 4.124404925199424e-05 +2108 0.0002613408958986009 -6.87601030573598e-05 0 0 0 -4.269129779545234e-05 +5951 0.0013724829086214463 -6.640430263470825e-05 0 0 0 1.7093828826165768e-05 +2118 0.0003539591355714208 -6.400153774268947e-05 0 0 0 -2.2414739617494856e-05 +2156 0.0007436023180388167 -0.00011442799821112726 0 0 0 1.2032454608746143e-05 +3583 9.263620175639074e-05 1.467239816668874e-05 0 0 0 4.14730475272907e-06 +2165 0.0011795037772773813 -0.00027383368164662355 0 0 0 -8.052144033752214e-05 +2177 0.00013114504317745797 -7.136958471101691e-05 0 0 0 1.4008036230345027e-05 +2197 0.0003366084852153168 -0.000240571765557756 0 0 0 -6.186536134626981e-07 +3427 -6.631346783194965e-05 0.00016879930683952874 0 0 0 -2.0294660356181005e-05 +2252 0.0003718614589044506 -7.666547983428344e-05 0 0 0 -3.5719843905401365e-05 +4585 0.00027541650738447206 -7.068925873432609e-05 0 0 0 4.051282527561531e-05 +2293 0.00036899283811526806 -0.00026508730257959734 0 0 0 -3.1590204215550573e-06 +2307 0.0008884122040337168 -0.00022914696205984054 0 0 0 4.362326072880022e-05 +2326 0.0010710677220160674 -0.00024177174775966753 0 0 0 3.2881503219250516e-05 +2332 0.0002925628542291175 -0.00015908084793647424 0 0 0 9.227518100207762e-05 +2334 0.0008004157364561795 -0.00011088946770703887 0 0 0 3.5739993247433774e-06 +7551 0.0009289077268907716 -0.0002024009462593793 0 0 0 -7.770812667922577e-05 +2432 5.5679929514951364e-05 3.42358671539223e-05 0 0 0 9.727467855978427e-05 +2486 0.0006107658550215983 -0.00024989685692365556 0 0 0 -2.799186272848067e-06 +3063 0.0007825327812957751 -0.00019877532667987723 0 0 0 2.5461043504195152e-05 +2508 1.1879073767020645e-05 0.00018375867183925525 0 0 0 3.003947424372982e-08 +3899 0.0007167600313128858 -0.0003170918782087582 0 0 0 3.7566104764022624e-06 +2573 0.00022757198535633592 3.8797729254402404e-05 0 0 0 2.9786408344883615e-05 +2577 0.0005928221826595327 1.3492705500838079e-05 0 0 0 -2.1300921953482694e-05 +7060 0.0012564699731559238 -7.89107457836479e-05 0 0 0 -0.00014501615952788917 +2641 0.0013963774701785975 -0.00015938452511265238 0 0 0 9.60002871709184e-06 +2693 0.0005612670317803182 -0.00010374769244067261 0 0 0 -4.241112194885766e-05 +2768 0.0003160489639306191 -0.0002340510204095272 0 0 0 3.395947278843883e-06 +2814 0.00026295359852075505 2.236292461834779e-05 0 0 0 4.034446571982699e-05 +2818 0.0008657163727495931 -0.00017968553340271803 0 0 0 -4.278957751684803e-06 +2876 0.000672911386052189 -1.5091720096614304e-05 0 0 0 5.8218182437884384e-05 +2889 0.0004238059174711401 4.4679765681529995e-06 0 0 0 7.013807106879784e-05 +2901 6.214619469212456e-05 0.0001139379293167122 0 0 0 3.0832585485080115e-05 +2914 0.0003643200841489111 -1.2567984871660432e-05 0 0 0 4.509026131913349e-05 +2925 0.0006326049917038284 -0.0002021906068317015 0 0 0 -8.722404912856447e-05 +5521 0.0009001087299602656 -0.0001549910904042585 0 0 0 -1.5269212921315154e-05 +2964 0.0008122918440021015 -0.00020093467964474846 0 0 0 5.500558021018215e-05 +3072 0.0009526689609802136 -0.00022339158304342214 0 0 0 2.4949097012308412e-05 +3000 0.0008867646159080725 -0.00015342754979109002 0 0 0 -3.833108132499887e-06 +3092 0.0006443457556385753 -0.00015712243546868478 0 0 0 2.2484834230847844e-05 +3853 0.0010807058248580904 -0.0002589027889632211 0 0 0 4.388616315764376e-05 +3160 2.1594295966631472e-05 8.575649507554117e-05 0 0 0 -2.6491603064590562e-05 +3167 0.0006594162471904203 -0.00010017052897820726 0 0 0 -3.249786425794278e-05 +3719 0.0012763937585002993 -0.0002828413906851497 0 0 0 6.401632179254245e-06 +3274 0.00015160616884127507 5.376391529955719e-05 0 0 0 -6.8759233756741225e-06 +3357 0.000661232725280482 -0.00011770669704510344 0 0 0 -5.7675378596099125e-06 +3397 1.6753836002217082e-05 -0.00013982645004116377 0 0 0 -0.00021053237269724918 +3408 0.0005201484189857016 -0.00018337408564638287 0 0 0 4.89986433037252e-05 +5527 0.0011965374869926163 -0.0002950486646648855 0 0 0 -6.0308795057495404e-05 +3492 0.0006629481994382477 -0.0002471742178691799 0 0 0 -7.969703972230621e-05 +3518 0.000595674244091533 -0.00019563971106345196 0 0 0 -3.9508057186750325e-05 +9722 0.00037400955428764857 -0.0002767662557242431 0 0 0 -3.982719998448133e-05 +3618 0.001330229343564095 -0.000262105241899165 0 0 0 -2.2243341627611663e-06 +3731 0.0005481137446852266 -0.0002645924709012559 0 0 0 -3.556972929643418e-05 +2107 0.0008460492449505264 -0.00029318768047047644 0 0 0 1.4580596916649423e-05 +3811 0.0003068866866608897 -0.00011405938675140308 0 0 0 -8.863533064281614e-06 +8154 0.0007726919765532928 -0.0002893789255075191 0 0 0 -5.5449188094832145e-06 +650 0.0009515262823573666 -0.00020410067600588498 0 0 0 2.26918107154138e-05 +4123 0.0013616196077291059 -0.00029589715861745255 0 0 0 -1.275231096712987e-05 +3845 0.0004515693940241844 -0.00022115959904289207 0 0 0 0.00011756855224696074 +3891 0.00042051709669156505 -0.0001472156926525193 0 0 0 7.106218509840824e-05 +251 5.959156619656669e-05 5.712505354078428e-05 0 0 0 1.552075767285257e-05 +3959 0.0006115222608322951 -0.00025848908940320325 0 0 0 -7.133539779986874e-05 +4004 0.00037653766705733236 -0.00024895511134577904 0 0 0 -7.648920750397332e-06 +4016 0.0006584169897527109 -0.0001226148914349524 0 0 0 3.2552312623430164e-05 +3271 -1.2523966811455777e-05 0.00012311531490780245 0 0 0 2.29641710110151e-05 +4039 0.0010471469817542706 -0.00013229822457823916 0 0 0 -0.0002038222252116495 +4061 0.0008473119495289821 -0.00020107842533547863 0 0 0 -3.917471123996311e-05 +4084 0.00010839008460454037 6.573563887337935e-05 0 0 0 -7.198653781298798e-05 +4773 0.0010178349732420768 -0.0002238408782991188 0 0 0 5.4863164433410294e-05 +4136 0.00021941461474422663 -0.00011836296369893469 0 0 0 -6.096995491750069e-05 +4142 0.00013296515355695185 -5.832912548738414e-05 0 0 0 1.7346636312182723e-05 +4176 0.0008936074774921397 -0.00023955940091594435 0 0 0 -3.156744846047953e-06 +4185 0.00036214282960074154 -0.000227956755333822 0 0 0 -1.2006039595232839e-05 +4200 0.0003467586303454301 -0.00011800764682737359 0 0 0 2.703070873203688e-05 +7918 0.0011623393806140193 -0.00026532025560578967 0 0 0 0.00012958844471093212 +4215 0.0002866177071140655 -0.00012759095616615056 0 0 0 3.595027529039583e-05 +4278 0.0006886624842330607 -0.000138864038323102 0 0 0 2.8624799140552166e-05 +4304 0.0009362591646035973 -0.000262517487116666 0 0 0 -5.648892045210618e-05 +4305 0.0008473637289660253 -0.00011780288460833716 0 0 0 3.754182029097463e-07 +4318 0.00024869458773091064 -0.00014180606781431497 0 0 0 -9.013805652220857e-06 +5525 0.0006685678086043044 -0.0002672175484628914 0 0 0 1.0881543330248961e-05 +8887 0.0007776351406858553 -0.00032328680902470177 0 0 0 -1.8720922655758883e-05 +9938 0.00030212890042627535 -6.465732354852104e-05 0 0 0 0.0002880923578786785 +4352 -0.00011678527207151637 0.00018205961878512903 0 0 0 0.00012805007864972467 +4380 0.0012777644242645454 -0.00010369632561149183 0 0 0 -3.2246685236648086e-05 +4397 0.0003515523477102157 -0.0002325208193214153 0 0 0 2.3426755335625192e-05 +4403 0.0007735242607259661 -0.00011811902227544039 0 0 0 -6.538020950235871e-06 +4408 3.9927808262700754e-06 0.00016826889180191574 0 0 0 2.0863054390689272e-05 +7576 0.0006989016167334008 -0.0003299034192621146 0 0 0 3.351399668463511e-05 +4417 0.00047395537626105646 -0.0001769711855658295 0 0 0 1.2496061552415073e-05 +8174 0.0008102706126903143 -0.00025715274186308 0 0 0 3.931846276274149e-07 +5264 7.284727440007848e-05 0.0001013300496329442 0 0 0 2.5356706203775305e-06 +4567 0.0007980898087239651 -0.00013080246110828048 0 0 0 -9.475886800695866e-06 +7004 0.0013726286669653053 -0.00030203558593057997 0 0 0 0.00012814216374921808 +4614 0.0005309541357439537 -6.16975246742169e-05 0 0 0 3.898879854867116e-05 +4650 0.0006274519433097939 -0.0002697846233531208 0 0 0 1.8815373970798626e-05 +4665 0.0005126598836408343 -0.0002931077553150293 0 0 0 0.0002567240985071515 +4674 0.0006072151104083539 -0.00021790925418792737 0 0 0 2.286562700056615e-05 +4696 4.105324232040631e-05 2.1441683906157272e-05 0 0 0 6.795349327864248e-05 +1564 0.00033828848055130633 -9.398557071688865e-05 0 0 0 6.626521287431351e-06 +4740 0.00017379470728801704 -9.349004417179331e-05 0 0 0 -2.4577328028477114e-06 +4774 0.0004479404165577991 9.96983510488236e-05 0 0 0 4.483368027290048e-05 +4788 0.0007637374470293568 -0.00019801993952268937 0 0 0 2.6315220087784922e-06 +4822 0.0005966627973088978 -0.00018375584948667219 0 0 0 5.2680420973594536e-05 +4860 0.0009824062829823436 -0.0001831799881972071 0 0 0 7.602028112663764e-05 +4898 5.019056490802064e-05 0.00018083611411900838 0 0 0 3.800532743598945e-05 +4925 0.0003168126372606002 -0.00020612547680121774 0 0 0 -7.597528450718057e-05 +4949 0.0004768333548296817 5.152112076735582e-05 0 0 0 5.881608419180614e-05 +4952 0.0006128508315226866 -0.00017626676899308008 0 0 0 2.5112881647205372e-05 +7658 0.0006976113417436323 -0.00022884010932554404 0 0 0 9.435830144415595e-05 +4965 -0.00024721012620017985 -0.00043898097630843053 0 0 0 0.0003028650223841474 +4974 0.00012139847089263204 1.964155037111925e-05 0 0 0 -1.1626416892544727e-05 +3317 0.0009634007126853012 -0.0001419676253510794 0 0 0 1.0270181158071684e-05 +5049 0.0007149441224714794 -0.00021935882221186495 0 0 0 -3.459498681319029e-05 +5076 0.00012406558745831444 -0.002216358753119246 0 0 0 -0.0015932058395070078 +2823 0.0008658851909886544 -0.00021889807108568902 0 0 0 -3.93774500302694e-05 +5118 0.00027213307785185173 3.1256098824050976e-06 0 0 0 -6.108630742691469e-05 +8588 1.68327306517043e-05 2.284977322245857e-05 0 0 0 -0.00010684199852657046 +5246 0.00014051412811150716 -8.622520185260165e-05 0 0 0 2.101798143903901e-05 +6840 0.0008825723649804997 -0.00015198704948388478 0 0 0 2.436599813277339e-05 +5295 0.0010017778839110866 -0.00029864699641042846 0 0 0 3.9459551275385844e-05 +5308 0.00092058749598704 -0.00022646955477737148 0 0 0 4.8501618175220846e-05 +5326 0.00014689624603730298 -0.00016481207565242865 0 0 0 0.00026661896218597433 +9207 0.0007226326960041911 -0.00035665912238354004 0 0 0 -5.2499898666031146e-06 +5446 0.0008398169226153191 -0.0001641699371378496 0 0 0 2.568888558984891e-05 +3183 0.0007454631189270061 -0.00023762681232790986 0 0 0 7.435616558284541e-06 +5485 0.0006190112059704817 -0.00020914364623834378 0 0 0 -2.655208367746027e-05 +5498 0.0010114576289445767 -0.00032168669724844915 0 0 0 -2.3581987856753013e-05 +5284 0.001075104751279842 -0.00034522749746060665 0 0 0 -9.206556031849933e-05 +5568 3.223658496175951e-05 4.077074675597454e-05 0 0 0 0.00015520265366112597 +595 -5.2276502541973176e-05 0.00014141769764884583 0 0 0 8.876349869056138e-06 +5659 0.0007038727620704002 -0.00021226718704874038 0 0 0 2.6875935889373567e-05 +3828 2.229858046654513e-05 2.1903954735037207e-05 0 0 0 5.301866034738955e-05 +5722 1.3775456926870451e-05 -0.00010730054444459923 0 0 0 0.00041438680929968633 +5759 0.0005150948156143187 -0.0001839594579052824 0 0 0 3.483520812021419e-06 +3298 0.0009555506261882063 -0.00018383534612108097 0 0 0 -4.3672867236524155e-05 +5806 0.0014350321561013282 -0.0005104754668480685 0 0 0 -0.0005206166318264956 +3173 0.0009829523844145501 -0.00019567729339997356 0 0 0 7.323993110451663e-05 +5868 0.0009155858294884457 -0.00026500177497424423 0 0 0 3.592224011774036e-05 +2190 0.0010155639868965134 -0.00022426341534783313 0 0 0 -6.236478717386158e-05 +5908 0.0011248603224830113 -0.0002988541598065102 0 0 0 5.321630909602118e-05 +3812 0.00013539388995698689 -6.771778434651943e-05 0 0 0 7.2634864559446676e-06 +429 0.0009279011458674698 -0.00017479136024543576 0 0 0 -1.0804155016956864e-05 +9767 0.0002581268140794315 -0.0002308317012979544 0 0 0 6.151643817676718e-05 +5966 0.00023821416173817967 1.5201290196154593e-05 0 0 0 1.804464561576892e-05 +8254 0.0010338200906777999 -0.00029909970960499997 0 0 0 0.00017987826088378594 +6890 9.140080779443705e-05 7.586935331825042e-05 0 0 0 3.4568476073023837e-06 +9628 0.0007206991206189966 -0.0001314530603385516 0 0 0 4.598436761967871e-06 +6082 5.7152281091543336e-05 -0.00012860624271542932 0 0 0 0.00022479319742646416 +9522 3.1392762311008616e-05 0.00012630793619222903 0 0 0 3.802278952775856e-05 +6174 0.0011368991184617522 -0.0004194888038241131 0 0 0 0.00016108482345224024 +6196 0.0010322428700117838 -0.0001441321661693542 0 0 0 4.000542482213483e-05 +6229 0.0008626751019717246 -9.027820468424822e-05 0 0 0 -5.901509652829668e-05 +6233 0.0009747328274255273 -0.00019937173933046553 0 0 0 2.9123444472718978e-05 +6256 0.0005174896988315153 1.0988658888196858e-05 0 0 0 9.785957252210438e-05 +5869 0.00016791247253249223 -6.461817672470044e-05 0 0 0 -2.2777615155801385e-05 +6307 0.0006712249490769083 -0.00017545826411108646 0 0 0 3.55961174983549e-05 +6325 0.0009050047391372816 -0.00023297474536406715 0 0 0 4.6103102815741495e-06 +6329 0.00029650152322185843 -1.507186221005606e-05 0 0 0 -2.374687245038343e-05 +443 0.0007104718313976013 -0.0002596199331748944 0 0 0 4.202959898930074e-06 +6386 0.00026214615541336744 -0.0001382982961921583 0 0 0 7.577859485185625e-05 +6416 0.0008118995259329478 -0.00027978076896644595 0 0 0 2.6613930580891507e-06 +6398 0.0010767381041940595 -0.00016166587699603462 0 0 0 0.0002483340914772668 +6434 0.000297318917668492 -0.00022438735363199743 0 0 0 1.6977785920326933e-05 +6526 5.8430079194145126e-05 -0.00011452171604649881 0 0 0 0.00020066525694007955 +6559 0.000766251272881248 -0.00014818426016252582 0 0 0 -7.680467663587881e-06 +1003 0.0010492030035474614 -0.0002677930088834795 0 0 0 -5.814855065958812e-06 +6597 0.00038719941091141976 -0.00024330850956157425 0 0 0 2.9127459444587404e-05 +6618 0.0003785794286728746 -0.0001471769925305845 0 0 0 0.00012680884854225183 +6707 0.00031502902431364526 -0.00022148382411991735 0 0 0 -1.8379967211495416e-05 +6731 0.0011386422243928203 -0.00023360943540546637 0 0 0 -3.603444339294971e-05 +1787 0.0011521705479315698 -0.0002888573814693443 0 0 0 -1.5440191720557495e-05 +6770 0.0007870468646095555 -0.0001279748323814889 0 0 0 -1.8941564970981631e-06 +6772 0.0009849754025436747 0.00019467579615105055 0 0 0 -0.00046691758486380524 +6138 0.00011663162381808203 7.862300428918459e-05 0 0 0 1.8076134164782577e-05 +6822 0.0006149458181892802 -0.00017540900131722694 0 0 0 1.0187696821233741e-05 +3431 0.0008550121763018745 -0.0002559876758953509 0 0 0 5.23484954156977e-05 +6888 0.0007127173985569882 1.4097298310080784e-05 0 0 0 -3.202828793467358e-05 +6891 0.00011657616054832213 -0.00011156587324761112 0 0 0 -0.0002000591033032366 +6934 0.0003413883079786952 -3.0051515573435443e-05 0 0 0 -4.272070035955997e-05 +6940 0.0008680242940348293 -0.0001902531786321861 0 0 0 -1.7813008790169344e-05 +6995 0.0003518460321390638 -0.00018025743770140192 0 0 0 -4.657491680632333e-05 +2845 0.000940453359050268 -0.0002704099548140756 0 0 0 2.401259485845372e-06 +7011 0.0002039884641333301 -0.00017716316273227157 0 0 0 -0.00013245868282502928 +7059 0.0007586557674023404 -0.00011082723352648294 0 0 0 6.75650087867418e-05 +9610 0.001095499801369256 -5.4389993816339374e-05 0 0 0 -1.9324927666350146e-05 +7179 0.0010754524478944478 -0.00013037738731466473 0 0 0 0.00011484826251210996 +9753 -5.585006721372816e-05 0.0001979269918969475 0 0 0 -8.665738751079842e-06 +9896 0.0007368630946730905 -0.00012530853954657915 0 0 0 4.023547439837979e-05 +7218 0.000884541571682781 6.540526063257217e-06 0 0 0 0.00045389904873113443 +9731 0.0013918904567834076 -0.0003266997863283916 0 0 0 1.523477939405402e-05 +7398 0.0009681286893081238 -0.0002685581019871229 0 0 0 0.00011385325553206064 +9895 0.00038637401385790304 -0.00018626180074251807 0 0 0 9.071537188023791e-05 +7430 7.067839626692473e-06 0.0001736555531269993 0 0 0 -3.9580401538206246e-07 +7456 0.00025487274911476735 -6.564887610811066e-06 0 0 0 2.8205495985444635e-05 +7484 0.0003109086364498305 -7.497710200002794e-05 0 0 0 5.978843732125779e-05 +7521 0.001276346948250799 -4.989713452338359e-05 0 0 0 0.00021239631381458297 +7527 0.0008160355472475169 -0.0001795036972815409 0 0 0 1.2482616259991281e-05 +7536 0.0002901049409784057 -0.0002195347175457679 0 0 0 -7.5138650869149006e-06 +7552 0.0009417856357418543 -0.00021730755728858323 0 0 0 -2.808880459573429e-05 +7560 0.00019092921255195984 -0.00013327982530160517 0 0 0 -4.893337837038873e-05 +7570 0.000382905943259729 5.124563532647138e-05 0 0 0 2.6707963483710878e-05 +7603 0.0007947532380161121 -8.876719679431312e-05 0 0 0 -4.1783377244161016e-05 +7622 0.00029088444246642926 -0.00022713266224167692 0 0 0 2.7300980023962688e-05 +7644 0.0008497066437710093 -0.0001970284547361676 0 0 0 3.0107170260054785e-05 +7656 0.0010143674776201689 -7.704044579391744e-05 0 0 0 2.747148696868145e-05 +3259 0.0007426000865127403 -0.0003329736684165223 0 0 0 2.582646107764619e-05 +7718 0.00028711161601815207 -0.00013661375019401073 0 0 0 -2.840799643439643e-05 +7772 0.001063363400564369 -0.0003415456892072353 0 0 0 0.00012370665451806343 +7774 0.0004665953693359029 3.364719115890066e-05 0 0 0 -7.667380691564645e-06 +9967 0.0003413733136481427 -0.00024110911894696525 0 0 0 -3.437054959226661e-05 +9908 0.00015558962209280997 -7.127463993750832e-05 0 0 0 1.2259495557641132e-05 +8342 0.0004510900466643048 -0.00018888373025869928 0 0 0 0.00032525091329853534 +7799 0.0012526333793428557 -0.0002770650707196059 0 0 0 -3.937532510717331e-06 +7843 0.0003128515062230359 -0.00020876986519792996 0 0 0 1.0166602270574245e-05 +7907 0.0006290936307139065 -0.00013904230948491328 0 0 0 8.57901256587353e-05 +7915 0.0009099862589579509 -0.00022058412091298664 0 0 0 8.762268553370361e-05 +7504 0.0008000160188926838 -0.0003584223831858805 0 0 0 -1.4127504978072486e-06 +6285 5.457623780551658e-05 0.00010554438327979613 0 0 0 1.1060191404288346e-05 +7998 8.705414118603295e-05 -0.00010000755115085201 0 0 0 -3.6830060592445474e-05 +8039 0.0006790227123122177 -0.0001493706182761032 0 0 0 -1.7587891976744652e-05 +8078 0.0006373916571078632 -0.00020562714668748247 0 0 0 -4.3144697022888184e-05 +8187 0.0002511165225385458 -0.00010876514476735684 0 0 0 0.00011261195060892546 +6801 0.0012960153863505498 -0.00022959650449037302 0 0 0 -1.0882888302709342e-05 +8233 0.00023607888730657665 -0.00021461295066166791 0 0 0 -0.0001277921848063321 +8235 0.0002968087900909286 -0.00018639010780001662 0 0 0 1.1577303015892996e-05 +8277 0.00018963209555112866 -0.0001199109486736528 0 0 0 8.16479141297308e-05 +8306 0.0006851336356875127 -0.00024681862238230286 0 0 0 0.00010353471947787345 +8312 0.0006117678015406597 -0.0002505893948696389 0 0 0 -0.00026933405590276764 +8329 0.00012061735992955675 -0.0001415169070833156 0 0 0 -8.200593346732591e-05 +8368 0.00012818913793756 -1.4147262203770937e-05 0 0 0 8.24555288467228e-05 +8371 0.00039289676979678865 -0.0002450039306370363 0 0 0 -2.738175317267992e-05 +8393 0.0012913239732484738 -0.00025298667717404434 0 0 0 -3.170274511571881e-05 +8420 9.533459801399513e-05 -6.268405669319511e-05 0 0 0 3.4213289101980486e-05 +8442 0.0003157526786509242 -0.0001507298891171582 0 0 0 0.00015048437198758471 +8453 0.00025032007092274896 -0.00021682028738605368 0 0 0 -2.1730123027311473e-05 +1478 0.000782910239291943 -0.0002611509070189443 0 0 0 7.755712103712893e-06 +8482 0.00023849256463304725 0.0006717756981059628 0 0 0 2.044306616488062e-05 +8498 0.0007358385702936173 -0.00012985572059850034 0 0 0 -1.9129403089668587e-05 +8513 0.00013370810353726588 -1.0881826506317093e-05 0 0 0 -4.0124497403642916e-05 +8527 0.0005060196043827946 -0.00019342834467393164 0 0 0 -9.040423358329451e-05 +8720 -1.0416790072494505e-05 -0.0001423150821156108 0 0 0 0.00023700650155409833 +8723 0.000877346394694844 -0.0002184306902941225 0 0 0 -5.5814002837171725e-06 +8728 0.00016541317479537072 6.548745125706018e-05 0 0 0 9.834895219244439e-06 +4204 0.0005861043163931875 -0.00028213301743070635 0 0 0 3.138127023198665e-06 +8802 -4.170540851958986e-05 0.00013758603481105398 0 0 0 6.560976420812215e-05 +8803 0.0001478347768667637 -0.00023192149125272988 0 0 0 7.564717394899537e-05 +3870 0.0007470719414523506 -0.00029481044469230295 0 0 0 1.0956598928374382e-05 +8848 1.710041630425578e-05 0.000749178998170409 0 0 0 0.0001001488884638187 +8087 0.0007559519094612878 -0.000274601599313188 0 0 0 2.782454405745922e-05 +8921 0.0014091896656808476 -0.0002269855044428488 0 0 0 0.00027067060424707976 +8982 0.00013485009779715956 -7.940251165097949e-05 0 0 0 3.793495291845078e-05 +8992 0.0003714538998436651 -0.00017252444296371285 0 0 0 3.4793899488162316e-05 +9051 0.0005596484899580242 -0.0001668470076330638 0 0 0 -7.163838789762947e-05 +5511 0.0006884068595981574 -0.00020847275575485317 0 0 0 -5.1482146020205855e-05 +9073 0.00033169623159734176 -0.00011835803946143325 0 0 0 -5.288691289360292e-05 +9102 0.001181838160539664 -0.0002703070335831108 0 0 0 1.7522494099625258e-05 +9121 -0.0014763093881716022 0.00037391018173933146 0 0 0 0.0022728324159504423 +9132 0.0014181440497412188 -0.00036231230105359313 0 0 0 4.846192250522657e-05 +9223 4.199634836589434e-05 -5.863973077860853e-05 0 0 0 3.741340891054356e-07 +9226 0.0003624608082409235 -0.00020139757512644562 0 0 0 -7.273609535272762e-05 +9723 0.00042637169516225246 -0.00018369007540631558 0 0 0 7.807884541980805e-05 +9233 0.00018710283518929356 -0.00015260734895297337 0 0 0 -0.0005860957079485194 +9949 0.0007589129649901859 -7.254134988494077e-05 0 0 0 -9.87478293721224e-06 +9309 0.00029539992209174173 -0.00022018380927857665 0 0 0 3.6975107780534596e-05 +9323 0.0007439597171340806 -0.00011350523363212475 0 0 0 -1.730010540961785e-06 +9354 0.0011067717548123928 -0.00014382025767045142 0 0 0 1.5425489622274147e-05 +9394 0.0006043436048167806 -0.0001684420168132225 0 0 0 0.0001639833947159081 +9413 0.0006164997509411591 -5.654942954887848e-05 0 0 0 1.1639340121205138e-05 +9486 0.000925009659106635 -0.0009697435739063371 0 0 0 -9.426935945094639e-05 +9500 0.00019755933405395833 -0.00014003044150555396 0 0 0 -2.2434138404233704e-05 +7894 0.0007891982326746433 -0.0003107498509501577 0 0 0 4.3225264734230665e-05 +9514 -0.0005272496005597235 -0.000290225836943008 0 0 0 0.0005875352934867799 +9560 0.0008062170762812773 -0.0001741918210550794 0 0 0 -3.1388842887000415e-05 +5301 0.00012303767817190342 7.006204404605187e-05 0 0 0 -1.1052828199813482e-05 +9581 0.0014048915042234925 0.00016844694056802323 0 0 0 0.00012497016191802968 +4208 0.0007325362174573993 -0.0002690904177690911 0 0 0 2.1763001545720852e-05 +5254 0.00010000828821312326 -5.895671830453961e-05 0 0 0 2.9481083900874903e-05 +1106 6.469106945666845e-05 4.347224680253048e-05 0 0 0 3.1184780174536145e-05 +9082 0.0006951957689295548 -0.0003482849916415105 0 0 0 3.279287585047302e-05 +6341 -1.4124809687364889e-05 0.00017603699766067797 0 0 0 7.4831556078314605e-06 +7788 0.00018961804718241389 -7.638691166671519e-06 0 0 0 0.0001192656429119948 +9302 0.0006569839010862955 -0.0002869268834215587 0 0 0 -1.689276606438455e-05 +1645 0.0010884567815038454 -0.00019548844727446235 0 0 0 2.4831361333286192e-06 +8842 0.00023942148512871915 -3.612667516083914e-05 0 0 0 -1.231684626570788e-05 +1086 4.17402561684508e-06 0.00014927765841294576 0 0 0 9.869255762013092e-06 +291 0.0004907323253641021 -0.00021243463825137686 0 0 0 1.782329275369751e-05 +5044 0.00012243705470223713 -5.5703555796610516e-05 0 0 0 -1.1631360346957325e-05 +7963 0.0007197401639946451 -0.00031846413711761605 0 0 0 -4.084083417542017e-05 +68 0.0010890857440417677 -0.0002628549920261386 0 0 0 -1.2948792356405225e-05 +9839 0.00010700976317703958 -1.421133283070173e-06 0 0 0 -2.0126763677430016e-05 +8397 0.0007307363508747714 -0.00029961042014088753 0 0 0 9.345744941356028e-07 +8529 0.0007887634188544021 -0.00031630415734284654 0 0 0 4.2210364031736e-05 +2450 0.00013104256607281617 -1.5777883312126585e-06 0 0 0 3.870937685915293e-05 +2507 0.0003919018591900813 -0.00012753873279833065 0 0 0 2.524586641722602e-05 +2926 -5.0458638371167726e-05 0.00010140855051307186 0 0 0 8.150337258198507e-06 +9561 0.00023360551084184006 -4.746884654197565e-05 0 0 0 7.197791733052162e-05 +6284 0.00023751752358957442 -9.387342591153347e-05 0 0 0 1.8034430840031905e-05 +2882 0.0008202672258218268 -8.796119246282196e-05 0 0 0 -7.512930583616379e-05 +6041 0.00043230784893593624 -0.00020622870948330325 0 0 0 2.147026836110977e-05 +1860 0.00028293099455767464 -9.367047255760146e-05 0 0 0 -7.131687634860085e-06 +2532 0.0002011900003831976 -8.87082530169796e-05 0 0 0 4.3902354545050286e-07 +8903 0.0002402164870327527 -9.22097867802899e-05 0 0 0 4.568810787777196e-05 +6368 0.0003807414450100198 -0.00012507947986022385 0 0 0 4.133695887939456e-05 +2410 0.0006911932973062388 -0.00037707010905318973 0 0 0 4.3253293557782304e-05 +1957 0.00048277525605960116 -0.00023956099413621317 0 0 0 2.9590322607363977e-07 +5168 0.000805800879672301 -0.00032786228661036223 0 0 0 2.8709428394643912e-05 +7667 0.0008133141861768422 -0.00034278955823752524 0 0 0 2.4760979210073456e-05 +4220 0.0003948516038837329 -0.0002189130972598038 0 0 0 7.416880789483737e-05 +1264 0.0010777598765013767 -0.0001466187495442345 0 0 0 4.0288105104398734e-05 +4710 0.0006322884237214443 -0.00021559593141902167 0 0 0 -3.7013407135573064e-05 +333 0.0012262571270503682 -0.00012235443772470758 0 0 0 2.270857410909168e-05 +8364 0.000657196880495078 -0.0004133988071087315 0 0 0 -8.655639235657411e-05 +9166 0.00043792415933347265 -0.00021844646934957013 0 0 0 -1.4946748159947427e-05 +1069 0.0006321789622161231 -0.0003804815664840932 0 0 0 -4.07248902222593e-06 +2110 0.0004181240631680263 -0.00015595486485960372 0 0 0 9.528538503074171e-06 +7779 -6.82212203944729e-05 9.757373319937332e-05 0 0 0 3.931782132675234e-05 +3584 0.0008218044790623378 -0.0003021198252108345 0 0 0 -2.270950029516098e-05 +27 0.0005720801588766625 -0.0003482325198949463 0 0 0 1.1379200702013469e-05 +269 0.0008977920484130911 -0.00024541489112460933 0 0 0 1.7472059648521235e-05 +3631 0.0008975766405366546 -0.00021957134505913814 0 0 0 0.00011451824473532656 +2358 0.0009682944631692231 -0.0002542244915078553 0 0 0 -4.415239858239535e-05 +3839 4.027849883224701e-05 3.8852897174790785e-05 0 0 0 1.619303553537884e-05 +2393 -3.5966792760228076e-05 7.525359820248484e-05 0 0 0 1.1026230608189663e-05 +5449 0.0008217464403955224 -0.00030100642703170463 0 0 0 9.453696692874677e-06 +4962 0.0010854917497341114 -0.00021798936738358265 0 0 0 0.000105034739518526 +3253 0.0011280140050554555 -0.0003164576316626958 0 0 0 -1.319935026532478e-06 +3025 0.0008525768250551036 -0.00027639710211656786 0 0 0 9.502379622229705e-06 +8795 0.0014368010197546549 -0.0001261881431584963 0 0 0 0.00019864897942766506 +23 2.048954157270199e-05 -6.128677695023253e-05 0 0 0 1.8139402647415122e-05 +25 -0.00011377858899639333 -3.780708669759902e-05 0 0 0 9.564683835560518e-06 +49 -0.00023495437763923653 2.947094244276535e-05 0 0 0 -9.79068123827575e-06 +109 0.00046719372230762574 -0.00044680912958382853 0 0 0 2.187008222572327e-05 +207 -0.00027115073582138863 4.5954752354711463e-05 0 0 0 2.458322965143726e-05 +8323 -8.732452766320272e-05 0.0001923321943768216 0 0 0 6.934337714270517e-05 +226 0.00011709701058059461 -9.163709674388394e-05 0 0 0 2.586732584814481e-06 +5726 0.00038783500220796694 -0.00010069477830304394 0 0 0 0.00018693063997185993 +2386 -0.0001782186184331773 -1.6179123379272184e-05 0 0 0 -2.8339686019348483e-05 +7210 0.0006012711641101414 -0.0004216733978871309 0 0 0 4.7953379780159984e-05 +276 -0.0001352006049333108 0.00012152650265589691 0 0 0 5.449238086735349e-06 +9281 -6.665249373437306e-05 3.884551541994628e-05 0 0 0 -3.003526811237402e-05 +343 -0.00010464516299087775 3.759249922510532e-05 0 0 0 -1.4026941166624652e-05 +369 -9.936984019244653e-05 0.0001327023285231988 0 0 0 2.8479522431188675e-05 +377 0.00034333696323384687 -0.0002477329010922614 0 0 0 3.090865901295253e-05 +401 -5.580429247543291e-05 6.882113766240507e-05 0 0 0 -1.1789431324873894e-05 +8197 3.916355366133955e-05 -0.00014953258995098495 0 0 0 -3.597744713380197e-05 +413 8.130568465577467e-05 -7.217023207365708e-05 0 0 0 2.0120107577983858e-05 +417 -0.00020676697777406212 2.2452492113933996e-05 0 0 0 6.227688241077736e-06 +6168 -0.00021101124751437083 6.471514251896358e-05 0 0 0 1.668332818208867e-05 +8130 -0.000169262448385701 0.00010331269262748473 0 0 0 -4.028770090314842e-05 +432 -0.00016028214051374523 0.00023547960428410293 0 0 0 -1.3242914961530644e-05 +8223 -0.00010092081589130606 0.000149146743683433 0 0 0 1.6784995734508854e-05 +503 -4.118104973479119e-05 -1.1453572781498843e-06 0 0 0 2.1961603939375254e-05 +6154 2.8757129196241795e-05 9.66360933283478e-05 0 0 0 0.00015887235579641507 +406 -0.0002482450148330737 6.759196852206737e-05 0 0 0 4.0306294291628505e-06 +596 -0.0002111127546792386 0.00014902638856869598 0 0 0 -8.481589967317941e-06 +619 -0.00010882131377464167 9.189064414404072e-05 0 0 0 1.7777586132743725e-07 +690 -0.00014489522196890233 9.607544590305671e-05 0 0 0 -1.3587668073006513e-05 +722 -0.00017935815610103277 0.0001603639394745097 0 0 0 -9.871747124714511e-06 +6520 -0.00021836965777259447 -1.3945648134787206e-05 0 0 0 1.860064350348262e-05 +811 0.0004577525878345205 -0.0002583470738776863 0 0 0 7.828732435390945e-08 +7578 0.0005088343465962294 -0.0003799282340464724 0 0 0 2.874705359188316e-05 +910 5.549496336098108e-05 -7.935341132693696e-05 0 0 0 2.8600572413123873e-05 +577 5.66644169048455e-05 1.7031483786473423e-05 0 0 0 7.334863390928331e-06 +1047 6.19743554505211e-05 -9.51339514009452e-05 0 0 0 5.658611870739213e-05 +863 -2.8044261568280054e-05 -2.815031488408494e-05 0 0 0 -1.4450050211518815e-05 +1166 -0.0001559300491189537 7.568878151602332e-05 0 0 0 1.2657255334032217e-05 +8985 -4.545119139358465e-05 7.329898141171218e-05 0 0 0 -1.3600896614855253e-05 +1203 0.0003752657122853357 -0.00031627771880084367 0 0 0 5.488910488738274e-05 +5197 -0.00019462442594936604 0.0001166313651244163 0 0 0 9.353116729522843e-05 +1217 -0.00010703186340181795 1.2876094526974445e-05 0 0 0 -4.975696288374667e-06 +1235 0.0003327220833283556 -0.00020623645319909362 0 0 0 -2.0772776652426016e-05 +1243 0.00021080763594507037 -0.00017063734024050397 0 0 0 6.2590984172936e-05 +1255 -0.00021896130517216276 0.00012030603423545579 0 0 0 -1.394393747747359e-05 +1256 5.290648533781202e-06 -5.460168404989705e-05 0 0 0 2.186535986223332e-05 +8734 -0.00011714611787684756 -2.690888340753517e-06 0 0 0 6.700689258058629e-06 +8828 -2.2632494901342356e-05 0.00011979312946179851 0 0 0 -3.7737904256993126e-06 +4892 8.174998575112936e-05 -0.0004978659322490158 0 0 0 1.0159211665949317e-05 +1456 -9.159923261834131e-05 -3.623669413530332e-06 0 0 0 -3.37823217342839e-05 +1469 -2.2270463268780846e-05 1.4579976099092877e-05 0 0 0 -6.497171488900174e-06 +1979 0.00011205614105617373 9.61393303974634e-05 0 0 0 8.19170614281911e-05 +1482 -0.0003430494295997402 0.00026424961194949643 0 0 0 8.249408517563217e-06 +6805 2.6061855765282408e-05 2.2059160716117545e-05 0 0 0 2.0486838265113224e-05 +7818 -0.00013148008976333488 0.0002650180025163441 0 0 0 -9.173792268053985e-05 +249 0.0005963068471904847 -0.00044421289874799425 0 0 0 -1.080191107781668e-06 +9611 0.00011987688519166037 3.2042245098667845e-05 0 0 0 1.678393752552276e-05 +3056 -0.00018810378172560172 0.00010859186183910584 0 0 0 -5.103044489404581e-05 +1689 -0.00014182556064545833 0.00011539207153621237 0 0 0 -2.200318059732502e-05 +1701 -0.00017240630522080138 4.729704294232341e-05 0 0 0 7.386032638599727e-06 +1788 0.00011798181878349953 7.729217166118504e-05 0 0 0 1.0436250013753735e-05 +7475 0.00021725917581890856 -9.145805148487382e-05 0 0 0 5.8387614241922335e-05 +1898 7.185958781217826e-05 0.0002144996248814985 0 0 0 6.157564467795886e-05 +1925 -0.00023681656793680795 0.0001006185904797858 0 0 0 1.5329956779458187e-05 +1928 -4.837545381155276e-06 -4.174828656212558e-05 0 0 0 -2.1163495021100486e-05 +2395 0.00011112146878520516 -0.0005010991670431165 0 0 0 4.1632935712519536e-05 +7593 -0.0002731657483400696 7.555257495075265e-05 0 0 0 -6.070620045932169e-06 +2026 0.0002531852181972577 -0.00030997411749161 0 0 0 3.558889071358754e-05 +2053 -0.00025840937590464533 5.207824095900664e-05 0 0 0 4.469319301743671e-06 +5956 -2.951994500519615e-05 6.26889699049969e-05 0 0 0 -2.0461577341310846e-05 +2061 0.00014908081415679583 -4.444082863222316e-06 0 0 0 8.926485417395325e-05 +2066 -7.486446409516129e-05 1.318231940550805e-05 0 0 0 -8.293922287886484e-06 +8782 -0.00019665540568669182 6.663575440941202e-05 0 0 0 -2.1484574201440587e-06 +2114 -0.0002351149891133095 6.665261321095562e-05 0 0 0 1.9552467407653663e-05 +9954 -1.9386088255243757e-05 -9.443992152283227e-05 0 0 0 4.149133129667006e-05 +7202 2.3711991503139517e-05 -0.00010748411093980597 0 0 0 5.601487221812663e-05 +2166 -0.00015858076298157182 -2.7817094635173387e-05 0 0 0 -1.1750574327873323e-05 +3914 -4.297697458819402e-05 5.0488255296531204e-05 0 0 0 1.5986946381420386e-05 +4757 0.000511655796785719 -0.0003858935536514383 0 0 0 -1.2838507857357606e-05 +2228 -0.0002477198962742211 2.4980599052266632e-05 0 0 0 -1.6525063369214706e-06 +9358 0.00011219040306197309 0.0001602081084806908 0 0 0 0.0001492288580090966 +2257 -0.00011965195487064162 2.1180215617367985e-05 0 0 0 2.240635174744581e-05 +2263 -0.00012477269773060836 0.00025316532940027026 0 0 0 1.7678913514281245e-05 +2365 -4.6430610616424964e-05 1.4131439278450506e-05 0 0 0 -2.6571192165939252e-05 +2381 -0.00027186734810769606 2.949200734402626e-05 0 0 0 4.3071665192804384e-05 +8045 -0.00018825792054849317 0.00011336451359002635 0 0 0 -3.7654711474262686e-05 +8878 -0.00015710750695541897 9.905101474813056e-05 0 0 0 5.7432217851413995e-06 +9283 3.442673133055405e-05 -0.00011108358899237896 0 0 0 -4.838857311695411e-05 +2526 -0.00015753588606653564 9.894021063988464e-05 0 0 0 7.172886653876369e-06 +2465 0.00016298485737764823 3.425262950745109e-05 0 0 0 3.508514800004516e-05 +6539 0.0004574552193136294 -0.0003603623383543358 0 0 0 5.309832920848478e-05 +2501 8.257954602668804e-05 -7.938260373766906e-05 0 0 0 -6.048996888823574e-05 +2502 -1.1565061682212413e-05 0.00010367594344293235 0 0 0 -7.946336081630465e-06 +2534 2.680153660789888e-05 -4.020122055039853e-05 0 0 0 -4.5046604075855284e-05 +2556 -5.242362769273005e-05 -8.438843604335577e-05 0 0 0 7.886131140720062e-06 +8689 -0.0001255314276252204 -5.0996594504661955e-05 0 0 0 -2.686734270171826e-05 +9127 -0.0001656853079777666 7.749379589177733e-05 0 0 0 -1.9212442271973935e-05 +2593 9.524948202987038e-06 -0.0004738722636205545 0 0 0 3.182333129175186e-06 +499 -0.00015938499375408222 0.00010374346891100071 0 0 0 6.84913056303162e-06 +2720 -0.00017505704480625368 6.288655106303076e-05 0 0 0 1.0425319190063167e-05 +2722 -7.700516715913297e-05 -4.982930633343771e-05 0 0 0 -1.6621075033136794e-05 +2726 -0.00013248805080239766 7.436768633603157e-05 0 0 0 -1.8876325285201187e-05 +2732 1.7459030929236897e-05 -6.292831842018168e-05 0 0 0 -2.927159005140193e-05 +8063 0.00028001209307483495 -0.00043526412620317637 0 0 0 0.00010685625468739188 +2879 -4.165312909816031e-06 7.718172433094396e-05 0 0 0 3.291373261732017e-05 +2881 -0.00011991679811051864 1.3914050545571098e-05 0 0 0 -1.2270065926729133e-05 +2885 -4.4964955290936896e-05 3.7222913652438174e-05 0 0 0 6.467582895575027e-06 +2933 -0.0001601364163142848 0.00012299162195897253 0 0 0 4.6367971014274465e-06 +2944 0.0003468472612802228 -9.680966154058048e-05 0 0 0 0.00012335193564070828 +7809 -0.00010399495396228489 -4.3941790076613594e-05 0 0 0 1.4561081933478284e-05 +7711 -0.0002566101958297826 7.690006332699848e-05 0 0 0 -6.924001711211789e-06 +3008 -2.8268731277815223e-05 -7.710561723772065e-05 0 0 0 -1.4308048863260546e-05 +9060 8.730094581715918e-05 -7.609414810844782e-05 0 0 0 0.0001253401731581407 +7675 0.0002651840584832265 -4.729665554472344e-05 0 0 0 0.00020453505767370088 +3026 9.441267569729727e-05 0.00011057839852708931 0 0 0 -1.710098137771513e-05 +3046 0.0002676944772610693 -0.00024422536588382653 0 0 0 9.342253966881781e-05 +9234 -0.00014413980812423436 6.103750897593619e-05 0 0 0 9.616526193750604e-06 +3069 -4.646140681241333e-05 -5.197807476259419e-05 0 0 0 1.742545547882568e-05 +3071 -0.0002447136466168488 9.968544172664404e-05 0 0 0 -5.454152840341116e-06 +3081 -2.8153791711413293e-05 -6.609046300840026e-05 0 0 0 1.2132997613768988e-05 +3085 1.4008449323619304e-05 -2.8608675850960904e-05 0 0 0 -2.4484202383865486e-05 +3088 0.00016251336975945627 -8.591517557212894e-05 0 0 0 2.4028604753544938e-05 +7848 -6.058899444433059e-06 -5.2925908967926785e-05 0 0 0 -0.0001411025030754757 +7810 0.00041108944116292266 -0.0003182051055608645 0 0 0 1.3581607802733412e-05 +8869 -0.00012847851453615794 0.00011297935029095934 0 0 0 -2.8924575564546466e-05 +3168 0.0003896983519645021 -0.00029089180653015456 0 0 0 -5.558415790192138e-06 +3180 6.609614727116872e-05 4.293871554061688e-05 0 0 0 1.0083933630497291e-05 +8350 -0.0007491875251673932 -0.0008135765272194594 0 0 0 0.0011026093994473054 +3186 -7.792337707809288e-05 0.0001089301301083726 0 0 0 4.261410380785527e-05 +3414 -0.00019533185746368158 0.00011444257488466648 0 0 0 8.190170964615914e-05 +8438 8.362790893854588e-05 0.0002180535934767802 0 0 0 0.0001558975603147307 +3268 9.286602515745231e-05 -1.4045869776175984e-05 0 0 0 -9.826142143993586e-05 +7970 2.7706029758097108e-05 -0.00012286437749977952 0 0 0 -4.036432133888575e-05 +3280 -0.0003175659082469034 5.646344251184507e-06 0 0 0 0.00014315706188037158 +3292 8.995038692361651e-05 0.0001390360219068948 0 0 0 0.00011396083896971233 +9476 -0.0010020606225686693 1.5142095398757546e-05 0 0 0 -0.00046034034812953616 +8396 3.859193831717586e-05 -0.0003156679423122803 0 0 0 -5.0932811812039785e-05 +3321 -0.0002693251487004798 3.3461825413405225e-05 0 0 0 -8.222717906220798e-05 +3386 -9.714807058035574e-05 -8.89243280628898e-05 0 0 0 -2.881686867570585e-05 +9705 0.0004190174401316361 -0.00040937102562120704 0 0 0 -4.900903252991998e-05 +3428 -0.00013966622942361993 0.00018814998270456521 0 0 0 8.618194007771143e-05 +7540 5.7534506296865674e-05 -0.0004292838342830222 0 0 0 5.223164712401865e-05 +3617 -0.0002161896365621653 -1.7233669331518056e-05 0 0 0 -2.68030739882174e-06 +5692 -0.0002778185252612751 6.373622043764999e-05 0 0 0 1.3418927983680043e-05 +3511 0.0003660268821116388 -0.00022325899950136185 0 0 0 8.574586061497258e-06 +3531 -0.0002467157720858107 6.346138245035943e-05 0 0 0 8.939627069312402e-06 +3550 -0.00019679810126637791 5.857657293834319e-05 0 0 0 8.19633327056383e-06 +9551 0.0005940007817363972 0.00016736986305015622 0 0 0 0.0007824136457963663 +137 -0.00019985726578400655 9.475244786916924e-05 0 0 0 1.0750409529855222e-05 +8021 -0.0008327144888655279 0.001501670081048362 0 0 0 0.0012319629824109738 +3626 0.00017527183676110294 -0.00020911922104443142 0 0 0 2.7484459376897846e-05 +3633 0.00031710919192482704 -1.658745752957549e-05 0 0 0 -2.1200609300812007e-05 +3648 8.1773756790136e-05 -0.000117896226958121 0 0 0 9.179400851848614e-05 +3658 4.7322573511926275e-05 4.5192506138653555e-05 0 0 0 -7.963531498418522e-05 +8767 -0.00022124470622502027 1.0513237527452652e-05 0 0 0 2.483711959433644e-05 +3779 -3.8979692302839134e-05 -7.215555229233525e-05 0 0 0 6.787215068697242e-05 +9138 7.933334203298423e-05 -0.00013392662259932727 0 0 0 0.00039320211953865 +3875 -0.00022684717215147408 -6.6843639073024945e-06 0 0 0 -2.1363986389431213e-05 +7287 0.00045725740758837557 -0.00036049711443602754 0 0 0 4.128059989951939e-05 +3911 0.0004624907489154378 0.0023320993358936144 0 0 0 -0.001279705819256882 +3916 3.691903209928167e-05 0.00017202423681568564 0 0 0 5.624600903945547e-05 +9375 -9.224318212463154e-05 -1.4680284034196137e-05 0 0 0 -0.00011236992629204577 +3971 -8.949952398328041e-05 1.5481784909563323e-05 0 0 0 -1.1672387206253232e-05 +7545 0.00010380161614498358 7.576975748262576e-05 0 0 0 -5.110691986219177e-05 +3434 -0.000237390948218001 7.375825111751928e-05 0 0 0 -9.213624846589165e-06 +4049 -0.0001797580970892006 3.403385094911003e-05 0 0 0 1.0160176549197571e-05 +4055 -6.343790679037544e-05 5.071030930715223e-05 0 0 0 -9.304660866317615e-05 +4097 -0.00015936377885687126 0.0001485852605024161 0 0 0 -2.4056801974677268e-05 +7361 -5.1612858392516586e-05 7.931334704947002e-05 0 0 0 -2.602620976826261e-06 +4189 -0.0002713537295735933 3.838325642849418e-05 0 0 0 -2.7571461383196535e-05 +4201 1.1906071682252984e-05 -4.4519218464898866e-05 0 0 0 -8.66518595607441e-05 +7725 -0.0001593832097433294 0.00014093475480153297 0 0 0 -1.6245902588190235e-05 +4212 -0.00021428262161657892 1.5184518384385485e-05 0 0 0 -8.303858874011069e-06 +673 0.0002466038377650123 -0.0005180957136995459 0 0 0 2.153420035986376e-05 +4228 -0.00016232243590389906 0.00012375043292797006 0 0 0 -2.245480794788522e-05 +4259 -0.0002534186524778416 8.976046432961472e-05 0 0 0 -8.1898682847629e-06 +2214 2.6220410522606455e-06 5.20813625628837e-05 0 0 0 4.131118474314698e-06 +8609 -1.141107585761732e-05 -6.156391792424473e-05 0 0 0 -8.265530558292387e-05 +5290 -0.0002478473927554355 7.531501311973664e-05 0 0 0 1.4980155405566188e-05 +4423 -0.00019578014822754474 -1.383661934713024e-05 0 0 0 -4.050943087235994e-05 +4463 1.5071260559150567e-05 -0.0004560245860144147 0 0 0 8.710965436076013e-05 +1634 0.0004453332967314523 -0.000407635415831444 0 0 0 7.950632003790964e-06 +4565 -0.00017339177556039838 6.428458935458908e-05 0 0 0 1.3404479735331324e-05 +4575 -0.0001126363103639649 0.00010117863759822967 0 0 0 4.8751675090536805e-05 +4589 0.00040368167219583716 -0.0003304962389737525 0 0 0 9.10372223211466e-06 +4733 -0.00015375096978278917 5.780161181964269e-05 0 0 0 5.945750777274985e-06 +4742 0.0002939293611352317 -0.0002824817207250656 0 0 0 9.678104255266653e-05 +9165 -0.00013185149543332972 7.78809031551472e-05 0 0 0 3.474186506072854e-05 +4765 -0.000268133597167762 6.207690081049561e-05 0 0 0 -7.20209035647499e-07 +4795 -0.00017011039749085 0.00013873371653088504 0 0 0 -5.942553925027269e-06 +1654 5.878645483520904e-05 -5.618049837254186e-05 0 0 0 3.282685844133774e-05 +4825 -0.00011503633250774784 0.00018541182494655054 0 0 0 -4.830597299732978e-05 +8941 -0.0001832458161187171 4.388276031983703e-05 0 0 0 -7.13631004379009e-05 +4890 -0.00022296791522586823 3.137416400586203e-05 0 0 0 1.225286926738304e-05 +4924 0.0004414893111420799 -0.0003218802411297811 0 0 0 2.3414666890948978e-05 +5002 0.00018071378368433015 -0.00039114599389944053 0 0 0 9.530037874866854e-05 +8706 -0.00010831000494072328 5.484103922941138e-06 0 0 0 1.7939975097717837e-05 +5146 -6.93068857039161e-05 -1.7773749790557497e-06 0 0 0 3.3080881264379086e-05 +4317 3.210135876590394e-05 0.00021103352361539682 0 0 0 0.00011863073014825404 +7655 0.00017786413383069275 -9.958012738799694e-05 0 0 0 -3.417455368247937e-05 +8384 0.0001787364305821169 -0.001481735713382056 0 0 0 -0.0019927408874687927 +5279 -3.51757226525152e-05 -4.967036140519504e-05 0 0 0 5.411846443227006e-06 +9284 8.354560326461301e-05 0.00037355866698485213 0 0 0 -0.0003079362574930927 +5428 2.3435380515349653e-05 -5.013024422250817e-05 0 0 0 -5.711671302145074e-05 +5432 -0.00024432951283956275 9.70145820095744e-05 0 0 0 -9.744363435378352e-06 +3430 -0.00022443734672460673 0.00010223410389411473 0 0 0 4.143482698500806e-06 +3415 0.00017281266987757612 -0.0005074664511766858 0 0 0 5.076338018055234e-05 +5488 0.00014977394147032313 -8.715797779599194e-05 0 0 0 -4.466810212998281e-05 +5477 -0.001330689469791725 -0.001644131730752888 0 0 0 -0.0018800222242173073 +9401 0.0006182608157850282 -0.0004372162870556066 0 0 0 3.7840100990928026e-06 +5567 0.00048730002101319344 -0.0002630818011482903 0 0 0 7.879960161714554e-05 +5638 -4.254756850735905e-05 -0.0005946247759412472 0 0 0 4.594145188303728e-05 +5648 -0.00011730700624375281 0.00017172413820500324 0 0 0 -7.181364241253904e-05 +5682 0.00017491223478075462 -0.00011295496688578781 0 0 0 -2.7243053648002287e-05 +8563 -0.00021713738525254382 0.00020220931344966468 0 0 0 2.096511709747799e-05 +5697 -0.00019116947299557306 4.466634167762751e-05 0 0 0 7.385441510859721e-06 +5752 -0.00012969124518892778 -2.8049345040492484e-06 0 0 0 -1.3505919923675308e-05 +5756 -0.0001939592270440032 0.00012555519956616742 0 0 0 -1.1591339336765316e-05 +5827 -0.0002678978299899967 4.73863836649228e-05 0 0 0 -3.361955149102153e-05 +7500 -3.481613682794733e-07 3.189581848433633e-05 0 0 0 1.5313779743893907e-05 +5867 -0.00023586955833057395 0.00011411396035252366 0 0 0 -1.5503818226041802e-05 +5910 5.193344933757262e-05 -0.0009188021935262445 0 0 0 0.0002605359396655714 +5941 -9.093019479559896e-05 -8.513726884597827e-05 0 0 0 1.1070995775739422e-05 +3116 7.128432511773047e-05 0.00015295477736358047 0 0 0 -1.4200542665430664e-06 +9149 -0.00011021371088357096 -7.895410862244076e-05 0 0 0 -9.748787942633802e-05 +6051 0.0003506067441391429 -0.00024480452912529756 0 0 0 -0.00015943380803682316 +7879 -1.641963101443516e-05 -1.1862097076696138e-05 0 0 0 -2.6466176859086082e-05 +8250 -0.00021294884429806876 2.4430763915026646e-05 0 0 0 1.8035126557883303e-05 +6170 0.0023730384328434283 0.0009266839432304076 0 0 0 8.866786970797467e-05 +6204 -0.00015848062171539083 9.283591886566505e-05 0 0 0 2.7113624423158466e-05 +8264 0.0002759613256640238 0.00043475707350626637 0 0 0 0.0004989018720802602 +6261 -6.429064721517449e-05 4.6379195090122325e-05 0 0 0 9.216028266288508e-06 +2608 0.0001631746269314903 -0.0004202929037579589 0 0 0 6.124147400403126e-05 +8352 0.0004894605542529666 -0.0003829869510997586 0 0 0 -1.5146689758362425e-05 +6327 -3.345950177198885e-05 -0.0011110187826395461 0 0 0 -0.0004803804221033157 +8180 -0.00021139383752713563 0.00010142568499620543 0 0 0 -9.710821854051856e-05 +7950 0.0002527554695681886 -0.00033044673878987555 0 0 0 8.742878788696047e-05 +6347 5.6207556353924857e-05 5.837366062966721e-05 0 0 0 3.786478943684628e-05 +6356 -7.064438701386994e-05 5.9176922835684386e-05 0 0 0 1.320434993636552e-05 +6339 0.00010745033387713576 6.781202100291158e-05 0 0 0 -2.846265135884046e-05 +8622 9.209388768885916e-05 -3.056320711973538e-05 0 0 0 3.447456215008274e-05 +6439 0.00028319267570946227 -0.00022992262399900012 0 0 0 0.00016009134196361387 +9600 -0.00013181699962494924 3.4105176844587415e-05 0 0 0 -1.1666897814336297e-05 +8751 0.0002892111781497291 0.0007780482045059889 0 0 0 0.00047691854713428265 +6851 -0.0001919169100865066 0.00011942611995364007 0 0 0 -4.7754355989780396e-05 +9827 0.00027304640489929084 -0.0001988820763700296 0 0 0 5.86588464515385e-05 +3091 -2.1136905698680434e-05 0.00013524185420054355 0 0 0 0.0003002553370700811 +6661 0.00014264371419159177 -4.8591140306596144e-05 0 0 0 -8.540553111757174e-05 +2594 0.000261875806932373 -0.00035903387377783636 0 0 0 3.190391340238498e-05 +6711 3.612979795416624e-06 -9.714545680468074e-05 0 0 0 -9.654742780869955e-05 +6715 0.000164004570983305 -0.00012644472666716071 0 0 0 2.859129873777382e-06 +6721 -8.093734296124252e-05 -3.828236985636654e-06 0 0 0 -3.0073235259746202e-05 +6724 0.0003359922086282191 -0.0008831766724231002 0 0 0 -0.000999362119210212 +6735 0.00016089904091970428 -7.678164346729639e-06 0 0 0 -0.00022671308257219121 +6754 0.00024192899945014375 -0.00044891373382677295 0 0 0 -0.00029454683519919314 +8912 -0.00021650698436223502 1.301139151306766e-05 0 0 0 3.508611496867321e-05 +6799 0.00016067089561537973 -0.00010558451466530982 0 0 0 0.00020517584888276732 +6832 -0.0002756441945215715 7.03136614980749e-05 0 0 0 4.148021077964868e-06 +6835 0.0002028188126697878 -1.2350561286985603e-06 0 0 0 4.092909069682671e-05 +6845 -0.0001203291635735581 0.00029369048473326865 0 0 0 0.0001991860505196384 +6864 -0.00020149791265799624 3.287109424267109e-05 0 0 0 -1.2139213739640299e-05 +6876 0.00033072637700139044 -0.0002514792718820191 0 0 0 0.00010435555411960961 +6881 -1.6284082305443018e-05 0.00010538154947179893 0 0 0 9.289688104067778e-06 +6884 -0.00015474668534856779 0.0001488432703989636 0 0 0 2.7756458533099107e-05 +9726 -0.00015569106151835206 0.0001270147030657766 0 0 0 3.385509316993978e-05 +6924 -0.00026328378620726927 5.245951541551662e-05 0 0 0 7.92082320048911e-06 +6926 -0.00013354387903998736 6.744748207127948e-05 0 0 0 -9.453744724226901e-07 +7046 0.00019657385281282767 -6.51600413013394e-05 0 0 0 0.00016089109454304405 +7049 7.531811730502687e-05 -0.00041030472411383574 0 0 0 0.00010009012775180792 +7067 6.461783893477057e-05 -5.143896778563118e-05 0 0 0 -6.537592723185342e-05 +7078 -3.7691341864011657e-05 1.4595814996088913e-05 0 0 0 -3.799046134009672e-05 +4021 -0.0002016328403436303 -1.2585796437228294e-05 0 0 0 1.2225532466000356e-05 +7127 4.5448999488089694e-05 -0.00041543196701649456 0 0 0 7.43984682194717e-05 +6604 -0.00018947093256345301 0.00011359183884116746 0 0 0 5.9958514434536044e-05 +7204 -0.00025660789522303595 7.889916142044623e-05 0 0 0 -4.262186752514357e-05 +8790 0.0004258694610945049 -0.0023599495759381766 0 0 0 0.00034331971685995266 +7334 4.920144420868978e-06 -3.8224763476912786e-05 0 0 0 -5.088022504399781e-05 +7335 -0.00011542326715886919 8.896238096994964e-05 0 0 0 -3.4209493842985315e-05 +7709 -6.612613866358716e-05 5.5719696854163566e-05 0 0 0 -4.318897766442305e-05 +3485 -4.8306024414264137e-05 5.358748598053112e-05 0 0 0 0.0004267351255612087 +7370 0.00043060323530631745 -0.00034140966955237365 0 0 0 3.631077413899992e-05 +7391 -8.393267629001572e-05 -5.277946425599334e-05 0 0 0 -2.717292563702702e-05 +7392 0.00023811996093158426 -0.00017921987810129694 0 0 0 -3.365559661104122e-05 +9988 -9.753244604647989e-05 -0.00020014404081412148 0 0 0 -0.0003535262983074022 +7464 -0.00017097614998442867 9.978226810258125e-05 0 0 0 -1.5582317469087583e-05 +8737 -0.0001774106016146059 0.00011486841520672709 0 0 0 4.407075135635843e-05 +7491 6.25341484092717e-06 0.001095468120026343 0 0 0 0.00026803391914512984 +7494 -8.79836716816156e-06 6.755341446212904e-05 0 0 0 8.579640106761599e-06 +7498 -0.0002512776933258873 8.735548757065981e-05 0 0 0 -3.846694736121435e-06 +9176 -2.8891505680568046e-06 -5.284723138666547e-05 0 0 0 9.803049827508082e-05 +5316 0.0005606416112735285 -0.00038037294575508023 0 0 0 -3.7562021608071164e-05 +4815 -0.0001670593478666758 0.00010197980049750122 0 0 0 -2.018435533152054e-05 +4139 0.0005652739309371784 -0.0004061043097075361 0 0 0 -9.293807930978779e-07 +4023 0.0005264948107214975 -0.00038908293607474497 0 0 0 -6.243285052467344e-06 +7819 0.0005985926974392196 -0.0003974296109779101 0 0 0 -2.2460738924305375e-05 +2008 -2.674934367717382e-05 -0.00010222657008510578 0 0 0 4.998271291956819e-05 +7095 -0.0002273951628605629 4.858681139489455e-05 0 0 0 3.152737956690016e-05 +1199 0.0005208374317742135 -0.00040340529484151846 0 0 0 2.184822529640697e-05 +4421 -2.8239211323124945e-05 -1.0945124341163694e-05 0 0 0 -1.0504944958822554e-05 +7492 -0.00017470124706279406 0.00012287616611077033 0 0 0 -2.589737946915606e-05 +2982 6.297683784157811e-05 -0.0005125552206765218 0 0 0 -2.7451394555656767e-05 +3239 0.0005933460198101253 -0.0003983621125206307 0 0 0 -2.0307637620947676e-05 +5962 -0.0002518019275335853 5.339168881919525e-05 0 0 0 -6.284968620581231e-05 +4603 -0.00017658450185473868 0.0001149839510239045 0 0 0 4.9000931259145704e-05 +4871 -0.0002910867520191063 4.23488778923621e-05 0 0 0 -4.704001568602114e-05 +3660 0.00011317137908460535 -0.000534953000525269 0 0 0 -6.5373424671272846e-06 +5378 6.990284433029749e-05 -2.4695237860977713e-05 0 0 0 1.920587756950927e-05 +4400 3.844722436309006e-05 -9.21253952741303e-05 0 0 0 6.458750273826936e-06 +6 5.467485274232361e-05 0.0002582545230556759 0 0 0 -9.498447349558096e-06 +30 -0.0007186283048239549 4.5043811808320974e-05 0 0 0 2.2925320149157827e-05 +6755 -0.0008339198374255305 0.0002583908823061966 0 0 0 -0.00012609247110889935 +176 -0.0005937539630008826 0.00012805094695046376 0 0 0 3.1488975724355134e-05 +354 -0.00013432503973659143 -0.0004349040563474637 0 0 0 1.808277366431559e-05 +399 7.5598380013716765e-06 -7.348249360911815e-05 0 0 0 -6.623870591943577e-05 +7862 -0.000850280941182923 0.00011580222341819145 0 0 0 -6.858176102356617e-05 +445 -0.0008733891993756484 0.0001817853802097188 0 0 0 1.5592388236577824e-05 +541 -0.0008276539975879146 0.00020682526818809575 0 0 0 3.804183892041052e-06 +548 -0.0008704702236505305 0.0001514494209962133 0 0 0 5.5668648554007865e-05 +3827 -8.7889768843211e-05 -0.00031651227828434096 0 0 0 3.35324876599947e-05 +578 1.2100544774755207e-05 -8.183194730444201e-05 0 0 0 0.00010830106873798955 +643 -0.0004457176533793553 0.00019758342782034898 0 0 0 8.624179098300154e-05 +701 7.921030695104746e-05 -0.00011987064895520953 0 0 0 -2.8981296392228678e-05 +4905 -0.0006031529706013812 0.00018133005999835833 0 0 0 9.151969600166799e-05 +855 -4.475556234388293e-05 -0.00039725141912621024 0 0 0 1.4896063195007085e-05 +881 -0.000621038023997182 6.698542736819617e-05 0 0 0 -7.177051353392288e-06 +902 -0.0008882548765029763 0.000193862260687159 0 0 0 2.1306904290011493e-05 +970 -0.0002442575907687967 9.617026249605954e-05 0 0 0 2.3881725618349427e-05 +1026 -0.0004160743765605213 0.00017198811126497042 0 0 0 4.740798937865289e-05 +1153 -0.000344104201698057 0.0001370245762377751 0 0 0 8.536330706483665e-05 +1174 -0.0005059453285008028 4.183422240099608e-05 0 0 0 4.315746943120896e-05 +1307 -0.00015054910071265857 -0.00012898770057538053 0 0 0 0.0002672086189225835 +1314 -0.00028736608447758926 0.00012084318084865561 0 0 0 5.453910648430983e-05 +5631 -0.0001127251306445106 -0.00022586235116666176 0 0 0 6.835124781660773e-05 +1351 -0.0007892427399811518 0.00016717595038814485 0 0 0 3.274992780059642e-05 +4477 -0.00077980939441576 9.370123529086663e-05 0 0 0 -7.153864023082805e-05 +1420 -0.0009343852012571536 0.0002348505349160643 0 0 0 2.983210286046121e-05 +1424 -0.000519975411340111 0.00018180094412018107 0 0 0 2.755049494312417e-05 +1521 -2.2183147652814763e-05 0.0001281670627188854 0 0 0 7.714499662196553e-05 +1544 -0.0009597783335124003 0.00013107065769323614 0 0 0 5.943681819775837e-05 +1547 -0.0006844972213905044 7.23200601739166e-05 0 0 0 3.363008641341923e-05 +1601 -0.0008300699143050035 0.0002059627084962398 0 0 0 -2.721339049965433e-05 +1609 2.00306262888228e-05 -0.00016904462069654245 0 0 0 -7.014251930398786e-06 +1719 -0.0003505395310112787 6.169105368226723e-05 0 0 0 3.94382504580395e-05 +1836 -0.0007386981168552843 0.00011102292503344961 0 0 0 1.9336671006289292e-05 +1856 -9.136702004533205e-05 -8.396753596309669e-05 0 0 0 0.00025195553521175984 +1944 -6.003997311833464e-05 5.462417771051335e-05 0 0 0 8.947408960299934e-05 +1322 -0.00013866580894021717 -0.00011103883447651881 0 0 0 1.2067106890091994e-05 +2044 -0.0005780001779187307 1.673429163594542e-05 0 0 0 5.778204341978464e-05 +2158 -0.00014339422873171123 -0.0003836587555250658 0 0 0 -1.1106891033815304e-05 +4167 2.5784176045421126e-05 -0.000206040470654296 0 0 0 -3.454731930367714e-05 +2076 -0.0007988660775366965 0.00013500115020506032 0 0 0 1.9357498758061623e-05 +6023 -0.000743935257707814 0.00014311634155174768 0 0 0 3.0118535086044943e-05 +2417 -0.0007631001021852755 0.00031325506635341345 0 0 0 -5.428162169066927e-05 +2421 -0.0007502326381709839 0.00012118662626155199 0 0 0 0.00016356370208251992 +2431 -0.00013106434392099877 6.322675617616119e-05 0 0 0 3.1521479289316526e-05 +2440 -0.0006828234945603232 2.0406728209650435e-05 0 0 0 -5.959713412310057e-08 +2530 -0.0007340049625289757 8.96151554298095e-05 0 0 0 -2.6993496600200646e-05 +2548 -1.7683036520627058e-05 9.847902499410272e-05 0 0 0 9.143750474458861e-05 +2582 -0.0001906366502226553 1.3008786833185132e-06 0 0 0 5.975165148139664e-06 +2655 -0.0005641440509932331 0.0003688644513776935 0 0 0 0.0001588569953120356 +2657 -0.0009477054757570616 0.00022534973376832566 0 0 0 3.940717608676565e-05 +2688 -0.0005282876394150492 0.00014733748324507497 0 0 0 0.000531858014969106 +2699 -0.00013918390936733802 -3.2773592944661765e-06 0 0 0 6.25429738911835e-05 +2704 -2.6161908110424588e-05 6.922586186734145e-05 0 0 0 -2.0260728084653537e-05 +2751 -0.0006681962104265654 0.00021369380539051422 0 0 0 6.733913959650377e-06 +2754 0.00012839019824334368 -5.3241714690543326e-05 0 0 0 -1.21185739846461e-06 +2776 4.853264344980491e-05 -0.00013751701544099284 0 0 0 7.862710141814507e-05 +2830 4.955035534612411e-06 -0.00016043685885226567 0 0 0 -7.656577904745407e-05 +2909 -0.0008502083827510639 0.00019577845228944434 0 0 0 1.3978738114997446e-05 +2940 -9.951797598317668e-05 -0.00010708689491678385 0 0 0 4.962361274307959e-05 +2963 -0.0008915868904428424 0.0002446889575687921 0 0 0 4.086774078091332e-05 +2985 -6.988240559158542e-05 0.00023773985539880961 0 0 0 8.039042086490885e-05 +3019 -6.98110640105635e-05 -7.835059872562045e-05 0 0 0 6.066930178392825e-05 +3591 8.82796048245473e-05 -0.00019021344395452075 0 0 0 6.390262358227159e-05 +8739 -0.00010766695450827375 -0.00022713251215662406 0 0 0 -6.155634756182426e-06 +3145 -0.0002907629517091594 4.830112609279796e-05 0 0 0 2.1585025493149906e-05 +3147 -6.670575170117078e-05 -4.62596052647856e-05 0 0 0 -9.912574828733864e-06 +3224 -4.341614814596711e-05 -0.00015230495871371757 0 0 0 -0.0003096962364757056 +3264 -0.0008635946776750901 0.00013366359950686696 0 0 0 -2.9391163144176147e-05 +3340 -0.0008803861628727777 0.0002526688014101193 0 0 0 -0.000165842320239369 +3469 -0.0009671872838269492 0.00014820505785526975 0 0 0 0.00015394442448705327 +9823 8.497230996876383e-05 -0.00018609242402711939 0 0 0 -9.909607743382426e-05 +8543 -0.00046246240992174777 9.156704948268656e-05 0 0 0 0.00010021251807070428 +6005 -0.0001664101279909627 -0.0001358211105738923 0 0 0 -0.0004606069942572798 +3560 -0.0003253456727541669 -6.450644223665132e-05 0 0 0 7.583571792668066e-05 +3935 -0.0002620519777685768 -0.00018094810729343477 0 0 0 7.628739320781549e-05 +8361 -0.000644619654969481 0.0001320145061447866 0 0 0 -3.4728069722457825e-05 +4035 -0.0007780981678802925 0.00013536595346745142 0 0 0 4.493732432829938e-05 +4053 -0.00041800769733950176 -0.0001414497587333968 0 0 0 1.5063054175599382e-05 +4127 -0.0002097316292018677 5.734857247189072e-05 0 0 0 3.9638577884671846e-05 +4156 -7.199588046755263e-05 -1.2434405703531879e-05 0 0 0 9.102146382711782e-05 +9917 -0.00026687584161801906 2.978576647434736e-05 0 0 0 -5.7445731172763706e-06 +4673 -3.273984549538616e-05 -0.0001682120179940704 0 0 0 7.93555472988262e-06 +4195 -0.0007578965224444974 0.00014302131104755301 0 0 0 1.900978368077122e-05 +5184 -0.0008354586364569044 0.00025026385903821087 0 0 0 -0.00010545910619693839 +4203 -0.0007337065829636542 -2.7034072097038018e-05 0 0 0 -1.310967267585153e-05 +4221 0.00019151100727001673 -5.3063129365390995e-05 0 0 0 2.9146839786876264e-05 +4225 -0.0008567230543542249 0.00018618543167605583 0 0 0 3.0361599500770433e-05 +7032 -0.00028445526661781563 -0.00010438788669696012 0 0 0 -3.8684879001841865e-05 +4260 -0.0009161803674929853 0.00023194630287942363 0 0 0 -4.354040661666054e-05 +633 -0.00015078108543374757 -0.0002782697308811896 0 0 0 2.126737255531477e-05 +4346 -0.0005335443565337535 2.4168920450408424e-05 0 0 0 6.13839512710429e-05 +4354 -0.00016999270451852698 -0.00012006087319783155 0 0 0 0.00025995510182026953 +4356 -0.0006645104709697166 0.00022275052950395026 0 0 0 -7.018282068404471e-06 +4358 -0.0002472705883861652 3.160769209583629e-05 0 0 0 4.185825822463769e-05 +7511 -0.0007018345955960836 6.771580658812502e-05 0 0 0 -0.00021672627945186655 +4443 -0.0006429725276496242 0.0001665798187750463 0 0 0 -6.315131721910304e-05 +4459 1.4108163538276088e-06 0.00021963562866273296 0 0 0 6.888786401257312e-05 +9863 -3.433134111767506e-05 3.315093471494286e-05 0 0 0 6.111948278206742e-05 +4524 -0.0009703796414868046 0.00018083799974371253 0 0 0 0.00024078623651395127 +4547 -0.0009315053608425548 0.0002103603106668909 0 0 0 -5.9564536105412824e-05 +4599 -0.0005675043683586284 4.514399425455689e-05 0 0 0 -7.398229526659408e-06 +4613 -9.173148609460274e-05 -1.20054142367234e-05 0 0 0 3.997801361232024e-05 +4652 7.238201529647515e-05 -0.00010028993536976724 0 0 0 -0.0003168464863067221 +4686 -0.0006538098836327427 0.00019017001501066253 0 0 0 -8.364457785907902e-05 +4766 -0.0005524821123744808 0.00017042200872839888 0 0 0 0.00038857914348445203 +4778 -0.0006089793709162449 0.00010484739548515463 0 0 0 -1.3181438595668444e-05 +4791 -0.0001121518721786547 -0.00019968859416416676 0 0 0 -3.057734527524317e-05 +4807 -0.0008208156963436705 0.00021362974085345355 0 0 0 8.781871462291337e-06 +4842 -0.0007977447684338586 0.00018616934254175126 0 0 0 -2.4720637037025768e-05 +4907 -0.00037834655100271784 6.748904955805589e-05 0 0 0 3.225458193594022e-05 +4943 -0.0003168772567382154 0.000221594130827392 0 0 0 -7.456820325294821e-05 +4954 -0.000728755652833782 8.693370651187806e-05 0 0 0 -7.88358177877754e-06 +4960 -0.00025411151122414674 -2.183271284390753e-05 0 0 0 0.00025827958001612257 +4985 -0.0003849690650819263 -0.00010191671231361967 0 0 0 0.0003763500013521165 +5008 2.05621334084512e-05 -0.00015698846883775076 0 0 0 -3.336066408147646e-05 +5031 -0.0009462198831920654 0.0001519441429817439 0 0 0 0.0001422011573332903 +5055 -0.00010727260395131397 0.0002300464802066941 0 0 0 -5.723352830492262e-05 +5084 -0.0003760379319168026 6.31612535525966e-05 0 0 0 4.247054260916207e-05 +5085 -0.0008150902029798113 0.0001519174794742182 0 0 0 0.00013825279755169236 +5182 -0.0006194584371206818 0.0002045121642784934 0 0 0 -3.954866885694808e-05 +5186 -8.857267135711444e-05 -0.0003137553557264518 0 0 0 3.999383591051915e-05 +9923 -0.00010795064683776291 0.0001291426733632572 0 0 0 -0.00013219746214905055 +5248 -0.0005247759037404298 0.00023306634790905487 0 0 0 0.00046083087144133686 +5252 -0.0001624400700542464 -0.00038664203547244023 0 0 0 1.2591292060381853e-06 +5253 -7.123396115714231e-05 0.00014561027200923413 0 0 0 2.748016577882628e-05 +5399 0.0003530787437530695 -9.401109215708451e-06 0 0 0 0.0005453718102267952 +5418 -2.695493530696317e-05 0.00021954150646148502 0 0 0 7.793880351374436e-05 +5491 -0.0007168407554660818 0.00013909899584576242 0 0 0 -6.821414240240295e-05 +5669 -0.0004494677202806577 -0.00014109544777730023 0 0 0 0.00040021224262644053 +5725 -0.0005526769294172647 0.00019684239087755314 0 0 0 -0.00035707920100947366 +5748 0.0008759390482647681 -0.0006314118666372809 0 0 0 -0.0004289900686417864 +5789 -0.00023855361103984125 -0.00022796365018057187 0 0 0 -5.756960532092228e-05 +5907 -0.0003021162817348212 3.944424641107937e-05 0 0 0 3.9275496370523784e-05 +5964 -0.0002984208011168716 0.00012395987314274562 0 0 0 0.0002365669802811637 +5992 -5.67168506156877e-05 -2.2438668024629785e-05 0 0 0 -1.9877085708543987e-05 +6031 -0.0003317148759932181 0.00011340841773223602 0 0 0 7.52987443119383e-05 +8673 -0.0008200684014865607 0.00015470840547263356 0 0 0 -3.784464162483518e-05 +6131 -0.0005449167222269283 0.00022779821880962933 0 0 0 8.874353758073759e-05 +2531 -0.0005620005432638797 7.613118310462923e-05 0 0 0 -0.00010597355304501737 +6183 0.00013311326880534595 -8.445199036960716e-05 0 0 0 5.4331365583904445e-06 +9092 -0.000739639551853881 0.00011349139716736628 0 0 0 -9.702911142114192e-05 +6354 -0.0005417363933007237 0.00019169427037671221 0 0 0 3.431255615778479e-05 +6508 0.00017093789366946104 -1.596510943352029e-05 0 0 0 -7.294420269583326e-05 +6683 -6.108457977989913e-05 5.1361988204086145e-05 0 0 0 2.601561799451136e-05 +9797 9.926855785535483e-05 0.000760654474695202 0 0 0 -0.00025491021526951956 +6829 -5.2107425746867205e-05 0.0001869462987269345 0 0 0 0.00020683054250626926 +6901 -0.0009389560573329205 0.0003042385298074285 0 0 0 0.0002192269558352982 +5430 -0.0002841220364577709 -0.000147584180582574 0 0 0 -2.8412477462456482e-05 +6994 -0.0006669830224119703 0.0001459995708401818 0 0 0 6.971606795844891e-05 +7076 -0.000412385895626007 0.00020285514644826662 0 0 0 0.0004054370093128216 +7077 -0.00016870113964241078 0.00010292214558051978 0 0 0 7.91362743893974e-05 +7090 -0.0002491386182055549 0.00021768681177936067 0 0 0 3.1981971032786e-05 +7126 -0.00013512493094564458 -0.00020374790997848953 0 0 0 -1.233374070780008e-05 +7301 -0.0009091629727944483 0.00024640554326155276 0 0 0 -3.9312180432570115e-05 +7344 -0.0007179918497654496 0.00012972147539202467 0 0 0 3.099100111358215e-05 +7377 -0.00055649278994826 0.0001862940663394823 0 0 0 -5.1066800300461455e-05 +7455 9.003812080296917e-05 -0.00010534378793761798 0 0 0 0.00013185849796579148 +7508 6.879649090323555e-05 -0.0001093473782936276 0 0 0 -5.998479417687767e-05 +7591 -0.0005632060064099587 7.28277002623477e-05 0 0 0 7.013461864796474e-06 +7595 0.00011147051579391434 -6.758541673857709e-05 0 0 0 -0.00015340070601815357 +7739 -0.0003048049432237968 0.00010815111353953357 0 0 0 -1.9164280712998526e-05 +7778 2.1186660287939037e-05 -0.00016146275463423818 0 0 0 -4.6789018053470945e-05 +7780 -0.0008331361887289264 0.0002067358724448881 0 0 0 -7.343751087617201e-06 +7881 -0.0008391547130814691 0.00018046503398408387 0 0 0 0.00010171390816952345 +7886 -3.732155402145e-05 0.00011049137858743165 0 0 0 0.00011481649825529471 +689 -0.0008628698283619355 0.00023115577741835246 0 0 0 1.8925178006938504e-05 +8113 -0.0006773910754477892 -6.307728014242222e-05 0 0 0 -0.00012784477686942706 +1176 -7.810545715887625e-05 -0.0002827371890121212 0 0 0 3.563849715586594e-05 +8173 -0.0009504774404993949 0.0002306720219785261 0 0 0 0.0001921807314249577 +8210 0.00025183313845299226 -0.00015536661857665815 0 0 0 0.000308766358254479 +8238 -0.0009571066655189092 -5.402797983404539e-05 0 0 0 -0.000639961233516401 +8332 -0.0003678971593616228 -1.0049406923752354e-05 0 0 0 4.742295438525162e-05 +8373 -0.0005975945408728625 0.00021886096784895105 0 0 0 -0.00019167149124910243 +8440 6.328708807481779e-06 0.00020268615446889665 0 0 0 0.00013895362178966718 +8518 -0.0008410253241204227 0.00025742038868238555 0 0 0 -4.230618071679137e-05 +8577 -0.00046822188626069623 5.2928574795587706e-05 0 0 0 0.0008550236288600751 +8598 -0.0002792270814578914 -8.19339144275415e-05 0 0 0 -2.487955358275734e-05 +8604 -0.0008654395281530002 0.00026047594438340164 0 0 0 0.00024368988576113914 +2047 -0.000805198334340358 0.00015018915540857694 0 0 0 3.36100756652557e-05 +8697 -0.0009021793886168464 0.0003200706874938398 0 0 0 0.0002418756201250853 +8717 -0.00034321658400500877 0.00021715506743204738 0 0 0 4.9464630820185844e-06 +8817 -0.0005279455266384625 5.529809871225344e-05 0 0 0 3.727844930550977e-05 +8822 -0.0004245029109162146 0.0001462733357459009 0 0 0 4.145461419951684e-05 +8909 -3.922075139167995e-05 1.144244528775302e-05 0 0 0 -3.759467207691139e-05 +8956 -0.00011878931060744531 7.699664170050528e-05 0 0 0 0.0001668053167760888 +9083 6.316646828204584e-05 0.00023962705777234815 0 0 0 0.0003982128959470207 +9111 -0.0009193319541378384 0.00024169407328717037 0 0 0 4.88891493516628e-05 +9122 -0.0009539418607375183 0.00022929474796567624 0 0 0 0.00023662328906006979 +9145 9.032779799433705e-05 0.00014268332042851142 0 0 0 -5.2778958539392135e-05 +9153 5.639020270016656e-05 2.3860140294244607e-05 0 0 0 0.0002922448468875859 +8997 -6.567134963277919e-05 -0.0002448434942043926 0 0 0 -6.250270321674598e-05 +9192 -0.00010859755688343813 -0.0002733017755879771 0 0 0 0.0001111206318475558 +9206 -0.0010025817129214565 -0.00016205497406767902 0 0 0 -0.0016537113138798641 +9252 -1.9400916149643416e-05 5.6390358458343067e-05 0 0 0 0.0001593894916866585 +9304 -0.0005405695737415232 4.3406577443054274e-05 0 0 0 -8.920138080758566e-05 +4474 -0.00016226778790462485 -8.64080594088956e-05 0 0 0 0.0007501161137135971 +9387 -1.1752936537333023e-05 0.00019832316829953444 0 0 0 0.00013145367664544312 +9404 -9.703453493300985e-05 -0.0001174710234222858 0 0 0 0.00013682732079943238 +9430 -0.00034879214479315295 0.0003749083086408525 0 0 0 -0.0002555633385076209 +9436 -0.0005389165164142096 4.107051834098825e-05 0 0 0 5.078820771765599e-05 +9444 -7.645518836303788e-05 -0.00035304072185953064 0 0 0 3.3878824483759086e-06 +9534 -0.0001799250479135356 0.00021412191249981142 0 0 0 0.0003997568431163572 +9590 -0.00014968463178176473 0.00020073290287188228 0 0 0 6.176185794971147e-05 +9605 -0.0003407579214366459 6.369648309659767e-05 0 0 0 -6.335586531804507e-06 +2938 -0.0008103313270647121 0.00011657082818240036 0 0 0 -5.064609321605634e-05 +9621 -9.583609944929827e-05 0.00013767476796667784 0 0 0 3.8188935949957695e-05 +9631 -3.7405773028446354e-05 9.08173204582612e-05 0 0 0 0.00019304773833624843 +2159 -0.00010557584754973331 -0.00016297534108354085 0 0 0 3.13541180929457e-05 +9732 -0.0005393231705002677 -1.0813898517697592e-05 0 0 0 9.461927198702452e-05 +9763 -0.00022902849399116464 -0.0027271152569216415 0 0 0 -0.001669890635166723 +9771 -0.0006968088668459151 0.0002034443667491623 0 0 0 0.0001980948251834172 +6804 -0.00011618937544054848 -0.0003365238766269575 0 0 0 3.3025404167163788e-06 +4079 -0.0008743602382986867 0.00025094211795766125 0 0 0 9.660966879886354e-05 +9293 -0.0008207370192035049 0.00014852896785663217 0 0 0 9.253977662132685e-05 +144 -0.0005798639007199818 0.0001933105127687132 0 0 0 -5.854994766937176e-06 +4779 -3.973723845478746e-05 -0.00036230188687198843 0 0 0 -2.2148299735921798e-05 +118 -0.0002530355857324165 -0.00011806786499600171 0 0 0 3.4819107644691975e-05 +3932 -0.0008457282548230986 0.00023870512906669226 0 0 0 0.00015662388695449642 +684 -0.0007603140596371627 0.00011479567698713654 0 0 0 7.846200918634343e-06 +5330 -0.00027540780791367235 -0.0001250428746045913 0 0 0 5.626054498409934e-05 +3495 -0.00029741173850980596 -0.0001015970855802676 0 0 0 5.21978510198816e-05 +1808 -0.0008182734742280222 0.0002494285515798222 0 0 0 1.5599252195324717e-05 +2639 -6.046500039640553e-05 -0.00035541633346109587 0 0 0 1.201883007055512e-05 +5132 -0.0002710318604934342 -0.0001981976533536327 0 0 0 4.0141179393083654e-05 +7233 -0.0006630510546866435 0.00037507552181150085 0 0 0 -9.749737916927016e-06 +95 -0.0005158070681253506 0.00046353976623597946 0 0 0 -7.593576417815396e-07 +237 -0.0004411001543674828 0.0002656604442433909 0 0 0 -1.1601363443073415e-05 +507 -0.00047719408397062756 0.0003491689226354335 0 0 0 -1.0477755751873827e-05 +1639 -0.0005879105679141533 0.00048770696754946613 0 0 0 -4.696873018559699e-06 +3923 -0.0006901740887537096 0.00028383370687755117 0 0 0 1.5226891923680217e-05 +6319 -0.0004841017016506005 0.00037838605017143225 0 0 0 -8.545273522566008e-06 +4175 -0.0006263059828414735 0.000305416991664426 0 0 0 1.1554821253671242e-05 +7358 -0.0006103739906510468 0.000501400187350527 0 0 0 -1.9801262173039913e-05 +2804 -0.000538753564951997 0.0005012540363319807 0 0 0 -1.0806820705097528e-05 +9931 -0.0006738167647111306 0.0003912276668271985 0 0 0 -5.371901502668734e-05 +5684 -0.0006926146641875634 0.00039176044242669674 0 0 0 -2.3551670122816187e-05 +831 -0.00048273416593118005 0.0004996752449575412 0 0 0 -1.7679903611999386e-07 +930 -0.0005072266273577014 0.00048364430627380854 0 0 0 -6.53755720923087e-06 +5015 -0.00039517711396668817 0.00015849586231690628 0 0 0 4.542264488828902e-05 +972 -0.0006633697073745243 0.0003819499832923666 0 0 0 5.979095201841797e-06 +994 -0.00045372932987428446 0.0002912942203090107 0 0 0 1.1039493466303297e-05 +1023 -0.0005296365992484748 0.0004927906769857371 0 0 0 -7.064470140091316e-06 +1041 -0.0006107633025294616 0.00047875311307634375 0 0 0 -1.1944345597854426e-05 +1074 -0.0004479964588842715 0.0002194588443446167 0 0 0 -1.6457576474292095e-05 +1033 -0.0004733872822280243 0.00022463905313194202 0 0 0 2.577879793008001e-05 +1140 -0.0005689877224834908 0.00048392560087142126 0 0 0 -2.0689748737617098e-05 +330 -0.0005031556470528254 0.00033787116961217045 0 0 0 2.8962933955084213e-06 +1326 -0.0006236157700097887 0.0004738539791943155 0 0 0 -8.542798294055152e-06 +3919 -0.0005073623519105396 0.00036926736274320077 0 0 0 -1.6369183852374147e-05 +9569 -0.002173739780656489 0.0007721688931298326 0 0 0 0.0011745780928934593 +1516 -0.0004985848719833445 0.0004924678986003896 0 0 0 -1.2009134120482897e-06 +778 -0.0005115952549336037 0.0005013637974724356 0 0 0 1.8693854772861116e-06 +1578 -0.0004914085660230526 0.00041328561481881126 0 0 0 2.370069561142906e-06 +1580 -0.0004645664289224609 0.00035346155916297456 0 0 0 1.9650251255302994e-05 +1738 -0.0004999261566927681 0.0004931232924377817 0 0 0 2.937215280766845e-07 +4731 -0.00047112467394019674 0.0003564708475100885 0 0 0 -1.895432330354348e-07 +906 -0.0005672455849517807 0.00031211240652677077 0 0 0 2.6154723037824617e-05 +1819 -0.000508655612797312 0.00042846436420575825 0 0 0 -1.2885049397165856e-05 +1882 -0.0006806973868253092 0.0003251193473755333 0 0 0 2.62746771059073e-05 +4290 -0.0004920575083875013 0.00042534382848592847 0 0 0 -1.7335041896900648e-05 +1906 -0.0005461276986264031 0.0004972079853277237 0 0 0 -8.2243237798644e-06 +1948 -0.0004979554777233633 0.0004824307399086556 0 0 0 -3.6995915063992825e-06 +7547 -0.0005014679566107072 0.00036781088329969667 0 0 0 -3.448181259021933e-06 +8447 -0.0005189259885518535 0.0003900734899093859 0 0 0 -1.435327710629741e-06 +5902 -0.0006043531398600366 0.0004943751305933707 0 0 0 -8.232055702761197e-07 +2146 -0.00056816399022206 0.000491484159019125 0 0 0 7.768407957274368e-07 +2168 -0.0005048197788324955 0.0004421783194737384 0 0 0 -4.092419142024026e-06 +9657 -0.0008104038124063934 0.00033145183937782047 0 0 0 0.00012423054884181227 +2204 -0.0005083529189460089 0.0005051687540387755 0 0 0 4.178927812389917e-06 +2236 -0.0005007350675774128 0.0004362981952775678 0 0 0 -1.704919544333464e-05 +2251 -0.0005054619714205275 0.000496072605958715 0 0 0 -5.147788884302983e-06 +2375 -0.0007283507852928047 0.00033184367048013806 0 0 0 -1.3465935908982135e-05 +1909 -0.00048348147570924935 0.0003781232316344778 0 0 0 -8.882567153747476e-06 +2425 -0.0005203013687200831 0.0005035535613811996 0 0 0 -3.420694564804819e-06 +2436 -0.0007276554021832177 0.0004252324907565103 0 0 0 -3.5361285469919784e-06 +8411 -0.000601905049055216 0.00038816462069797477 0 0 0 -2.4877307994802807e-05 +2537 -0.0005277124414457016 0.0004670659901423935 0 0 0 -1.315533570744312e-05 +4117 -0.0004933240123355937 0.0002414757658669211 0 0 0 1.1323522237163268e-05 +1039 -0.0005676499561105925 0.00033727542084137455 0 0 0 -4.142229519886882e-06 +3937 -0.0006922174002376447 0.0004517734695846407 0 0 0 1.0181790013576004e-05 +2435 -0.0005324861349900442 0.0004470578262502861 0 0 0 6.968015860289546e-07 +2755 -0.0004903126510821798 0.000503904023502849 0 0 0 -4.842936530422925e-06 +2781 -0.0005140584417313728 0.00047677482441495206 0 0 0 -1.928438356931007e-06 +8806 -0.0004446212277708084 0.0002751017114083316 0 0 0 2.7653859792754785e-05 +2735 -0.0004947244579994259 0.00028619344997784135 0 0 0 -1.1682337057178062e-05 +4263 -0.0005431233738130986 0.0004554705654197767 0 0 0 2.1578568459815263e-06 +2897 -0.0007830738784914671 0.00028479941514409404 0 0 0 -4.501906806664129e-05 +2927 -0.0005200852214897074 0.0004368191041245539 0 0 0 -6.7068246959397045e-06 +4946 -0.0005223183704174746 0.0004419567453478813 0 0 0 4.3901156833466765e-05 +2948 -0.0006986285239712377 0.0003524766291093175 0 0 0 8.249676218727501e-06 +3001 -0.0004543936806625517 0.00021050278024333495 0 0 0 6.7583936314076e-05 +1029 -0.0006111537380433674 0.0003499356525760016 0 0 0 -1.1402687680681213e-06 +3130 -0.000369475139400347 0.00020486709164664168 0 0 0 -0.00010061960463135568 +9151 -0.0005133435911637772 0.0005033840575476364 0 0 0 2.3722299145986805e-05 +3192 -0.0008076510092218972 0.0002702446328752402 0 0 0 6.208441269575765e-05 +1625 -0.0005724000755883259 0.000499228165172866 0 0 0 2.646763614393622e-06 +545 -0.000617922258259611 0.000454489557923033 0 0 0 -9.344701429888857e-06 +3306 -0.000513240582481992 0.0005065886582705414 0 0 0 -1.4525401038890036e-05 +4748 -0.0006014887531306481 0.0005195076564986397 0 0 0 2.275065937945186e-06 +3435 -0.0004956604582094707 0.0004065633085189452 0 0 0 6.019453720990321e-07 +3447 -0.0005034589586387447 0.0004727641540603016 0 0 0 3.7864763338071382e-06 +5337 -0.0005949568896246842 0.0004838360325733403 0 0 0 -5.351927096925114e-07 +7986 -0.0005315016512771944 0.0004996334631520871 0 0 0 1.911621480932146e-06 +3652 -0.0005114064013535343 0.0004726689220421223 0 0 0 7.108358489602685e-06 +7001 -0.0006064776407867819 0.0003621247638811371 0 0 0 2.2881872100682455e-05 +3772 -0.00047184744047383884 0.00037312558625165814 0 0 0 4.211599202721344e-07 +3777 -0.0005206730082946846 0.00040080591079875007 0 0 0 -1.8395971511443534e-05 +3782 -0.0005105187630663338 0.00042413908199318776 0 0 0 4.494050697081865e-06 +415 -0.0006423523532404369 0.0004727628249233376 0 0 0 -5.5806962309076855e-06 +3884 -0.0005157700766827234 0.0004155992011428218 0 0 0 -1.99242001583505e-05 +5416 -0.0005970070984655031 0.00048550899614353956 0 0 0 -2.4332571730394924e-05 +5635 -0.0005035321763462904 0.0003281472038368694 0 0 0 4.0740799900006766e-05 +3996 -0.0005001410975851494 0.00047658721036229995 0 0 0 -5.5719897758968826e-06 +4012 -0.0004908877661893092 0.000498559753610457 0 0 0 1.6309172233880146e-06 +4921 -0.000652587540819 0.0004695104426532944 0 0 0 -2.4472515807912126e-06 +4071 -0.00047192325933794344 0.0003738053425869841 0 0 0 -3.944492518888854e-05 +958 -0.0007736397555338821 0.00026245975054615744 0 0 0 1.1080342918007044e-05 +9782 -0.0017272590712471858 -0.0002593318019750174 0 0 0 -0.0015934145835269505 +4264 -0.0004382959227257983 0.0001787168682497045 0 0 0 -8.580142665144907e-05 +5294 -0.0005462020498040978 0.0004231087085102211 0 0 0 -2.321354813990698e-05 +4357 -0.0004953997561477193 0.0005041957922950476 0 0 0 2.735369635379766e-06 +4367 -0.0003216791125598235 0.0001789906033804263 0 0 0 -0.00010606090322069534 +5395 -0.0005927412799334433 0.00045483008189945687 0 0 0 2.6453996771542613e-05 +9667 -0.0004752844494686851 0.0005129236785935175 0 0 0 1.1603148010726844e-05 +7695 -0.0004333783360633263 0.0002506675558208529 0 0 0 4.4408576279485393e-05 +2779 -0.0006017472945989141 0.00047971618322235356 0 0 0 5.729133203559202e-06 +4495 -0.00035145516713897175 0.00019210687520329947 0 0 0 -9.718353446417594e-05 +4535 -0.0004548830979247405 0.00028691057737103626 0 0 0 -2.9939125919966104e-06 +4542 -0.0008055957361115176 0.0003796468599052228 0 0 0 9.420109999377686e-05 +4553 -0.0007429709714901972 0.00043032712214474927 0 0 0 2.2770656571361844e-05 +4612 -0.0004867571305429392 0.00040453581040700553 0 0 0 -1.9482116545346332e-05 +8403 -0.0005603092120274409 0.000502650049751984 0 0 0 -3.558741039188394e-05 +9261 -0.0005608382869972548 0.00048165301042848454 0 0 0 -2.262306832538122e-05 +4702 -0.0005254034709696239 0.0005004689526820825 0 0 0 -1.8554322625556915e-05 +4739 -0.0005065468055299723 0.0005029431676767346 0 0 0 -9.08377731313748e-06 +6947 -0.0003938546458138136 9.125602338878919e-05 0 0 0 0.001789115301022202 +4912 -0.0004894298808526186 0.00046391392709713153 0 0 0 1.3266842133043902e-05 +9584 -0.0004910818941885192 0.0004271821701441882 0 0 0 -1.0489170088477145e-06 +4976 -0.0007895161518001481 0.00038046699033520467 0 0 0 -3.0349669652910804e-05 +7142 -0.0005299318153939344 0.0002821658772466343 0 0 0 4.4664921417313805e-05 +4379 -0.0005106174639681288 0.0004086197162690653 0 0 0 -2.3206549413202133e-05 +702 -0.0005589547544168716 0.0005047342556889285 0 0 0 -1.1047513642398213e-05 +2282 -0.0004427226512184441 0.00021574275341191575 0 0 0 -4.2676734463063084e-05 +7041 -0.0018811422468636308 -0.000672953164467151 0 0 0 -0.003366995933919242 +5278 -0.0005549824430057704 0.00048163309071648974 0 0 0 -2.2414493355515657e-05 +5305 -0.0004714991615834741 0.0005141764367024508 0 0 0 -1.8298147248472238e-05 +9837 -0.0006757302203698591 0.00026432136619984403 0 0 0 -5.4071141371717526e-05 +5464 -0.00047708710702423237 0.0003656204974473544 0 0 0 -1.0039025251295524e-05 +5476 -0.000671098672572426 0.00046294607786714036 0 0 0 9.690165485541198e-06 +5508 -0.0005398080729996791 0.0005055925416559492 0 0 0 2.5390777195620383e-06 +4931 -0.000468824072637698 0.0002580051481543316 0 0 0 -1.6574848139037735e-05 +9796 -0.0005021057184270002 0.00048173112698414173 0 0 0 -6.246843994936178e-06 +5671 -0.0004805870296100649 0.0004927258500055391 0 0 0 -3.4885935752320135e-05 +7700 -0.0005159658129809926 0.0004596776598416769 0 0 0 -3.7727038183056624e-05 +5928 -0.0004949397989275524 0.0004154515659551053 0 0 0 -1.1512308850179366e-05 +5976 -0.0005017201321432106 0.0004741427987290672 0 0 0 7.559756510958939e-06 +6011 -0.0005358279500956167 0.0004553771898542511 0 0 0 -4.869765552315046e-06 +1221 -0.0004891218953438803 0.0004140361045877363 0 0 0 -5.889694507867572e-05 +6053 -0.0005427262266443413 0.00046979849229849906 0 0 0 -1.562829835001114e-05 +6109 -0.0005072507383778267 0.0005058513070440922 0 0 0 -3.848705711787411e-05 +6128 -0.0004925489029601245 0.0005007989593295972 0 0 0 -1.0207474604085167e-05 +1665 -0.0007143124320476153 0.0004136284002255849 0 0 0 1.2722796723010041e-05 +8954 -0.0004999753050306863 0.00041588477397162365 0 0 0 4.771165273381887e-06 +6221 -0.0004935587921045283 0.0005005889870268463 0 0 0 1.4581643641841477e-06 +6222 -0.0004101862485022313 0.00027849937439382956 0 0 0 1.059194979059228e-06 +6238 -0.0004763063406162305 0.00037712155588058924 0 0 0 -1.5081539387961262e-05 +6265 -0.0007276202422606223 0.0003508079451326054 0 0 0 -1.855909008307638e-05 +6415 -0.0004987793168272881 0.0004966890403360856 0 0 0 -8.304030098685275e-06 +6431 -0.0004997032568240132 0.0004670185408888763 0 0 0 1.0128128073808115e-05 +6546 -0.0005087557568122597 0.0005004714240413232 0 0 0 2.4816236382782093e-06 +6554 -0.00047222913710673824 0.0003826991816219714 0 0 0 -5.9706036292873114e-06 +4074 -0.0006815972873622717 0.0003836672561744207 0 0 0 2.8502119818132544e-05 +6632 -0.0005157831462797265 0.0004281520227506986 0 0 0 -7.3593172125361636e-06 +6663 -0.0007195555888478662 0.00042534974742434594 0 0 0 -9.750427187229468e-07 +6696 -0.0006798956776787923 0.0004571081497754618 0 0 0 -6.3782860478051e-06 +9208 -0.0004801640196425118 0.0002945125555700336 0 0 0 -6.782485557015359e-05 +3405 -0.0005135654620523447 0.0005108104898076056 0 0 0 8.357647395482226e-06 +6955 0.00016423418031738575 -3.447734867988384e-05 0 0 0 0.00013297271386318913 +7021 -0.0005021022672976631 0.0004225993148884326 0 0 0 -3.1634813291444846e-05 +3965 -0.0005444311640593478 0.0004594085231561324 0 0 0 -2.5016405467332435e-05 +7157 -0.0006091360480994644 0.00047624811131203795 0 0 0 1.280637541072519e-06 +3657 -0.0005027644210633472 0.000342476544237328 0 0 0 1.6818201667331178e-05 +7243 -0.0004981817759013412 0.0005030236378078765 0 0 0 -9.61196172065716e-06 +7268 -0.0005058603050361139 0.00047592465322322103 0 0 0 1.1553808480114556e-05 +8489 -0.0005092570629109599 0.000509613429895115 0 0 0 -2.2784402214509522e-05 +9757 -0.0004986454586599611 0.0004136671214990616 0 0 0 1.0113689215942579e-05 +6922 -0.0006607344176089378 0.0004376805578971488 0 0 0 5.0681566491936285e-05 +7553 -0.0004905540920550152 0.00045816759861525756 0 0 0 -2.3873502313429095e-05 +7617 -0.0004323868370257367 0.00017364571175652497 0 0 0 0.00011811174203412088 +2444 -0.0005225220599733295 0.0003973977132066822 0 0 0 1.013852209223034e-05 +7445 -0.0005701639744897085 0.0004064208632610229 0 0 0 6.442279799828059e-05 +9526 -0.0004930378384980752 0.0005261377045600535 0 0 0 -3.674557355882729e-05 +7740 -0.000666207841647635 0.0004550359097944732 0 0 0 -9.106492923034223e-06 +6500 -0.000522809678077523 0.0003906845876874482 0 0 0 -1.4531481619285948e-06 +525 -0.0004702021787700881 0.000351743929280463 0 0 0 -1.0505464313652024e-05 +7945 -0.00038700969096448393 0.0006997191552297886 0 0 0 -0.00030395101811959914 +7883 -0.0003299968602721152 0.0001974914891513771 0 0 0 -2.956014246072822e-05 +2096 -0.000520239346527053 0.00038030399262523263 0 0 0 9.082597501767046e-06 +7912 -0.0005151735477740671 0.0004662141945039772 0 0 0 -1.280881548135665e-05 +7981 -0.00042744455179830125 0.00028669043342190387 0 0 0 3.781436462748438e-05 +8090 -0.0005408615138091252 0.00045610533534705367 0 0 0 -1.3204578941880998e-05 +8195 -0.0003227712828643971 0.00017300861473532693 0 0 0 -0.0001262018934680296 +8266 -0.0004151400679378304 0.0002495838139787629 0 0 0 -1.7783019944934487e-05 +8269 -0.0004509900878514643 0.0002921153900910937 0 0 0 -2.4813369152094842e-05 +8281 -0.0002838385094427105 0.0002298249229273734 0 0 0 -3.465174959851744e-05 +475 -0.0005062824771693308 0.0004057169686877384 0 0 0 -1.1724934304482372e-06 +2555 -0.00046372539685722797 0.0003539616301649663 0 0 0 -3.1174750426050404e-06 +8727 -0.0004978119819705457 0.0004948310368588551 0 0 0 9.403439933079703e-06 +8749 -0.00048559279291959817 0.0003883671261532495 0 0 0 9.849158153863342e-08 +8820 -0.0005027220872829099 0.0004749722175723096 0 0 0 -9.443300397953326e-07 +8843 -0.0006410156057111666 0.00047672792040646494 0 0 0 7.52598571531619e-06 +9018 -0.00043521886809754314 0.000296914512293278 0 0 0 -1.2459976155604943e-05 +4876 -0.0005320467748127311 0.0005019365059379808 0 0 0 -1.985619381975479e-06 +9067 -0.00048485632950440925 0.0003370556113473437 0 0 0 -4.50156481307408e-05 +3359 -0.0006741515491663799 0.00044469961044095604 0 0 0 -2.341771616942396e-05 +9098 -0.0007845933874565986 0.00032791258980820203 0 0 0 3.950206158282163e-05 +9217 -0.0005223060813908029 0.0005104378817635809 0 0 0 -2.95045384342349e-06 +5555 -0.0006969263356522197 0.0004354821109154269 0 0 0 -8.034162208217257e-06 +9891 -0.0006475051234251321 0.0003810041030696898 0 0 0 -1.1610567956486767e-05 +9303 4.1060564319970395e-05 -0.0006993877514942132 0 0 0 -0.00015611944440380268 +5912 -0.0005053352793260966 0.0002252613844357262 0 0 0 -6.011939666738135e-05 +9760 -0.00044778960573644004 0.0005224617061425149 0 0 0 -1.8661215782606416e-05 +7038 -0.0005371984785813729 0.0005077987620874439 0 0 0 2.933406873823106e-05 +7 -0.0007504953595413145 8.716716367891932e-05 0 0 0 2.393996912487003e-05 +80 -0.0007589770832063419 7.167194692241326e-05 0 0 0 -5.957108041727359e-06 +228 -0.0006813438244422356 0.00010438460665825619 0 0 0 -4.513535107732398e-05 +242 -0.0005521460919952724 8.54203852932509e-05 0 0 0 -3.968207497006528e-06 +268 -0.0003167306370707825 0.00014788685640295028 0 0 0 -5.409788909209042e-06 +8473 -0.00039031686370613193 -0.0006920014036390556 0 0 0 0.0007153177077996102 +5613 -0.0008167456000446885 0.00018621916786696127 0 0 0 -3.358188501790404e-06 +4066 -0.00026130572022782056 -3.216091372181415e-05 0 0 0 4.633457995416346e-05 +378 -0.0005477691970081867 -2.958085038086526e-06 0 0 0 1.4686360024690429e-05 +405 -0.000706097673646572 0.00022622983655193966 0 0 0 3.218387639616654e-05 +422 -0.0007283039748797261 0.0001668136920348887 0 0 0 -9.269577296521818e-05 +427 -0.0005959987901858557 0.00024217714001949488 0 0 0 -1.8230870553900326e-05 +327 -0.0006026063119005133 0.0002788643266115618 0 0 0 4.973822169265337e-06 +3093 -0.0003251611124011989 1.9076459644412577e-05 0 0 0 2.9289203665806463e-05 +5455 -0.0006246630720024311 0.0002257113042068613 0 0 0 -0.00018705174987386418 +594 -0.0002228289369021561 0.00017509358512036012 0 0 0 1.1613449706572427e-05 +7524 -0.0008203122180203984 0.00017383204661984683 0 0 0 1.2094467192906948e-05 +692 -0.0006037407010162166 0.0001969105094509926 0 0 0 -6.97264831205536e-06 +707 -0.0007675723493868155 0.00013260206842735794 0 0 0 2.0916074156867226e-05 +8966 -0.0007800571946015393 0.00014413838312718106 0 0 0 -5.789540475162176e-05 +822 -0.0005923981982888453 -0.00010901032279803934 0 0 0 5.6442341408998885e-06 +2516 -0.0005886577845752796 0.00019044025220803492 0 0 0 0.0001403445806428219 +837 -0.0008649996295387554 0.00010581057984037614 0 0 0 -3.645851458881284e-05 +862 -0.00025359385965489684 0.00016479151001978212 0 0 0 9.859116726999396e-06 +901 -0.0007018803436536262 0.0002359863616919023 0 0 0 -7.169744452003799e-06 +7040 -0.000689662097199166 0.00028345456538797037 0 0 0 1.723467652789e-05 +834 -0.000407840602661443 0.00015248326869463552 0 0 0 -2.3837449157293285e-06 +971 -0.0004502487720444844 0.00010765997623954035 0 0 0 1.5467865508007528e-05 +5169 -0.0005526059295407957 0.0002629837718225624 0 0 0 7.552845454766181e-08 +5799 -0.0008766948067679831 0.00023495454808969285 0 0 0 -5.707434446878787e-05 +1091 -0.0003081790943775277 0.00021772145228968193 0 0 0 2.506240732183735e-05 +5037 -0.0006540638789918712 0.00024816098075576234 0 0 0 4.072380754936044e-05 +1120 -0.0006256789581645847 5.956116155298635e-05 0 0 0 3.7858470749701705e-06 +1224 -0.0006282741831498801 1.8036881949931704e-05 0 0 0 -6.579184780124363e-07 +1229 -0.000599839201047107 2.164049635289049e-05 0 0 0 -6.702090998051137e-07 +1293 -0.00042527914050816357 0.00021597421255614712 0 0 0 2.9058335206922158e-05 +1357 -0.0006294186039702885 0.00010437274375912275 0 0 0 -2.9829569875308244e-05 +1358 -0.0004964270475829755 8.355816373048305e-06 0 0 0 7.94085640568604e-05 +1378 -0.0003873111481339102 0.0001410827551036468 0 0 0 2.018267930746305e-06 +7364 -0.00031256659527961403 4.297326968466628e-05 0 0 0 6.82752668611225e-05 +1428 -0.0008065853998231663 0.0001732832635806523 0 0 0 2.492741416969588e-05 +1457 -0.000839665206925467 7.264182679619744e-05 0 0 0 -6.253837826040048e-05 +1472 -0.00041287342280624587 0.00018413409679355768 0 0 0 1.1772519623610131e-05 +1474 -0.0006298352277744085 2.3119264996250017e-05 0 0 0 -3.4005269580797766e-05 +1495 -0.0006279810373880165 0.00021757385477914247 0 0 0 -3.3488419150178742e-06 +1633 -0.0005947880082548845 0.00023389252072653427 0 0 0 -2.7132098335345306e-05 +1642 -0.00034587790471550257 0.00026996299868126307 0 0 0 -2.326964879910677e-06 +9104 -0.0005876837691488562 8.287576182213558e-05 0 0 0 -2.049356487756783e-05 +1744 -0.00039695749880179926 0.0002336718920688226 0 0 0 1.8798663633372746e-07 +674 -0.0008340004335575934 0.00020890540272543444 0 0 0 -1.5047039185476095e-05 +1864 -0.0008178321319253524 7.789071545736309e-05 0 0 0 -5.9375530977077275e-05 +1887 -0.0007274565349321762 3.39966555531906e-05 0 0 0 3.16862132113119e-06 +1891 -0.0006917595384071525 5.030915977377694e-05 0 0 0 -3.2375331297076924e-05 +1488 -0.000268788880322731 0.0001618092662323346 0 0 0 -1.963532404872573e-05 +2065 -0.0005667199513984722 0.0001708070229418061 0 0 0 -4.297019038820474e-05 +2073 -0.0007086751605151696 0.00016593529316368997 0 0 0 -5.787456565244512e-06 +2074 -0.0003344159720067604 0.00022425640361929276 0 0 0 -1.7740244386258358e-06 +1888 -0.0006879364837210441 0.00023327271732623598 0 0 0 -0.00011391840721501307 +2100 -0.0005972321451725619 0.00023371908028123063 0 0 0 -1.2648796763884021e-05 +9965 -0.0005925800729650789 0.0001704264514360305 0 0 0 7.694391271107252e-05 +2297 -0.00046679196017654497 2.766259620178044e-05 0 0 0 -2.26195931174988e-05 +2376 -0.0008108287582942688 0.00010092227484079595 0 0 0 -2.2718277209742257e-05 +2389 -0.0005944608018081318 0.0002552702510648773 0 0 0 -5.487713462808195e-06 +4854 -0.0006720353023905834 0.00022325015522255367 0 0 0 2.352006502236414e-05 +9701 -0.0005817953179366677 0.00011661053469593995 0 0 0 -3.792864273155954e-05 +4656 -0.0008075569027882523 0.0001710922400325545 0 0 0 2.409236400232384e-06 +2447 -0.0007615651454693617 0.00015418614030511042 0 0 0 0.00018745165500761154 +2456 -0.0002550862334490316 0.00019022671657216195 0 0 0 2.4038078620232035e-05 +9721 -0.0007971552441972345 0.00020924024323684218 0 0 0 0.00014283978594334683 +2474 -0.0004828941827755475 6.810820040709154e-05 0 0 0 -0.00012533256685761467 +2566 -0.0005699903214127099 -0.00010778635711177272 0 0 0 -7.159049878344293e-05 +2591 -0.0005779284165936808 0.00015569338235608043 0 0 0 -1.2036964311739719e-05 +8698 -0.0008673125685299298 0.00018915990851329362 0 0 0 -8.025235097002144e-05 +2782 -0.0006249904931660418 0.00010154136873511779 0 0 0 -1.1657961142925659e-05 +3385 -0.00032982521153428044 0.00020516828653488112 0 0 0 8.305146281944739e-06 +9174 -0.0008237921872397939 0.00014932191688440193 0 0 0 1.8276225299785998e-05 +2967 -0.0005482417228336763 -9.068062603399201e-05 0 0 0 -7.186944504349098e-05 +2987 -0.000761324579960403 0.00010390243346504163 0 0 0 -5.243841917078332e-08 +2996 -0.0008795474533377616 0.00014852894365163747 0 0 0 -0.00018513261792528878 +3048 -0.0007590893805863097 7.034510303862438e-05 0 0 0 -2.3079393454403288e-05 +6784 -0.00030036064199824824 0.0002309323399168952 0 0 0 -6.805457643177348e-05 +3073 -0.0007060975081892437 3.672327127366693e-05 0 0 0 -3.621395385315646e-05 +4668 -0.00023026518691779624 0.00015912273573126485 0 0 0 5.579649355019718e-05 +8592 -0.0006148635823384377 0.0002710514391454469 0 0 0 -3.99552789425734e-05 +3121 -0.0007876895328659691 4.5173782595673394e-05 0 0 0 2.3522111840822586e-05 +447 -0.000591988876895503 6.423061057919261e-05 0 0 0 -6.093975909107482e-06 +3265 -0.0007420938868469227 -5.6012052058858206e-05 0 0 0 0.0008835925713811586 +5612 -0.0004219593952271101 0.00010820717495283416 0 0 0 -0.00025117591142922676 +3291 -0.000494296472286793 0.00023154841469656947 0 0 0 -2.135110018452103e-06 +3297 -0.0005955564730827397 -3.477673377530778e-05 0 0 0 -2.612419152025252e-06 +3308 -0.00027319638925855266 0.00015785028077728818 0 0 0 -2.4688038806332667e-05 +3324 -0.0006935271747635953 7.498627479155639e-05 0 0 0 -7.169531076910531e-05 +9237 -0.0007927906912656568 0.00010012177610821167 0 0 0 -2.024861636397442e-05 +3393 -0.00074449698869092 0.00011169690595506538 0 0 0 5.059822953860907e-05 +3507 0.0010465974417825075 -0.0013063501428404872 0 0 0 -0.0015153998725838873 +3548 -0.0006098943065008449 5.377938456819463e-05 0 0 0 -1.6971773622322088e-05 +3551 -0.0005736742013092445 0.00022045403040498476 0 0 0 -3.364800446158217e-05 +3596 -0.0008765697517923247 6.880329962417786e-05 0 0 0 0.00012523491976212389 +3612 -0.0003103266625358013 0.0002100481476998948 0 0 0 3.294261814285413e-05 +3649 -0.0007083473388626184 0.0001574518691662433 0 0 0 -1.5054602744272427e-05 +7381 -0.0007258397600847841 0.0002706949560991724 0 0 0 -0.0003109844923320826 +3662 -0.0007178109619929171 0.00023745873603306432 0 0 0 6.324742812146873e-06 +3751 -0.000600044567539997 0.00023882751967081126 0 0 0 1.4541624722998439e-05 +8258 -0.0008120207169360452 0.0001693567645189805 0 0 0 -1.0689835505302568e-05 +3778 -0.0006194454101906622 -0.00012461103207159126 0 0 0 -7.26091412096762e-05 +716 -0.00047540927302498553 0.00018204245065877504 0 0 0 2.40246282107262e-05 +3801 -0.0003235649066033403 0.00023775331088468128 0 0 0 -1.756720861717853e-05 +3826 -0.0005254626330894078 -5.0622806352328087e-05 0 0 0 -0.00016319928370071572 +6652 -0.0008102842499998873 0.00017735367731374366 0 0 0 6.826874222488401e-06 +3862 -0.0008006670632085486 0.00012455783506739384 0 0 0 0.00031484679421085726 +3885 -0.0005590052574567239 -0.00010721587439361362 0 0 0 -4.251315984280408e-05 +3905 -0.0008332087355013303 0.00018991779378884006 0 0 0 4.7909362270007e-05 +9578 -0.0006035240906100977 0.00017833194659776626 0 0 0 9.867546575324038e-05 +9981 -0.0006425320912378409 3.490266422097512e-05 0 0 0 -2.7479255640400408e-05 +3943 -0.0006154138225934562 0.00015635583756339237 0 0 0 4.760659163436123e-06 +3956 -0.0006589746396833741 0.00022041085565041555 0 0 0 1.6632146959761088e-05 +5188 -0.0002963127575751289 0.00020853542465820062 0 0 0 -7.870396894701643e-06 +4045 -0.0008011383117389292 6.912637037090924e-05 0 0 0 -0.00018301917789432067 +3688 -0.0008510319708394208 0.00018485004206646698 0 0 0 1.3887057884530852e-05 +4113 -0.0005906899383603031 0.00030113171486723073 0 0 0 -2.3355508873755934e-05 +4141 -0.00035854082366247413 0.0002658451374300568 0 0 0 -4.575895848379417e-05 +4148 -0.0006078172293634456 5.8483757714380906e-05 0 0 0 2.4654193486569182e-05 +8336 -0.0008522858133889631 0.00017358454757046985 0 0 0 0.00010427160226881299 +4187 -0.0007674795904661619 0.0001174616346080733 0 0 0 -0.00031625856947369317 +4233 -0.00047780760727034774 0.00021042393239566068 0 0 0 1.8747464236443208e-06 +2975 -0.0008361188439629523 0.00022916954648931099 0 0 0 7.794571666873698e-05 +4248 -0.0007546223006740007 9.552078137028414e-05 0 0 0 1.7673950507045947e-05 +5822 -0.0003530621416108713 6.855794714425407e-05 0 0 0 -4.7195005584156114e-05 +8176 -0.000694919891451837 0.00017673695440344035 0 0 0 -1.7940760948626884e-06 +860 -0.0006682610986619096 0.0002626309774321958 0 0 0 -3.726057538753103e-05 +4334 -0.0008538146983992712 0.0001552833105438306 0 0 0 2.839989065935318e-05 +1300 -0.000857275480426081 0.00012804796219756978 0 0 0 1.2032574958798126e-05 +4500 -0.0007637542525540858 0.00012563525579190429 0 0 0 0.0003193553556633447 +4531 -0.00022732142367422887 0.0001738922622959512 0 0 0 -1.3222521014537078e-05 +9231 -0.0006909906739234151 0.0002841550905600554 0 0 0 -4.379164940979803e-05 +4579 -0.0007654824548794341 0.00010799513034946558 0 0 0 2.292354197649999e-05 +4661 -0.0006809316275230963 2.9816222865174585e-05 0 0 0 -9.152757192322934e-05 +4672 -0.00044298105101846816 0.00027711555640110524 0 0 0 -2.663121848714251e-05 +3262 -0.0007843388773426824 0.00018853608899926732 0 0 0 2.2152735283117156e-06 +4744 -0.0007745452386295504 0.0001333000714962171 0 0 0 5.783818279167435e-06 +5379 -0.0008141680388619509 0.0006694983315342096 0 0 0 -0.0004766812218020037 +4245 -0.0007627621114179319 9.966082843057652e-05 0 0 0 -7.97565691561867e-06 +4906 -0.0006085086661408625 9.309782261862977e-05 0 0 0 -3.4874386848666155e-06 +9897 -0.000883598371011359 0.00021564469982811378 0 0 0 -0.00021982546975641374 +4987 -0.0006379157103051629 0.00012026538857489768 0 0 0 -4.116624686856034e-05 +4990 -0.00038418551773926194 0.00017251301326143398 0 0 0 6.567705914063177e-05 +5060 -0.0006191615876297132 8.213594553711568e-05 0 0 0 1.4049885921727297e-05 +9397 -0.0005056050257136226 -0.00014324725631158293 0 0 0 0.0003351055896863284 +5229 -0.000864229864805844 0.00023144423422508396 0 0 0 -5.7578819098863074e-05 +5239 -0.00035856981935499974 0.00011313369918841268 0 0 0 -7.878218524386382e-05 +3413 -0.000873372422180473 0.00020835807055431373 0 0 0 -3.545436828532631e-05 +2302 -0.0006823512588042969 0.0002983737185629137 0 0 0 -5.303263156791891e-05 +5331 -0.0005984814628614716 0.00022323311775969773 0 0 0 -5.299525399480171e-05 +5389 -0.0006164085320300775 9.391776573430234e-05 0 0 0 -1.3928720600281673e-07 +5516 -0.0007421829223035691 4.6318704140400887e-05 0 0 0 0.00013927918611819206 +5542 -0.0007210915859592725 -6.107506991604604e-05 0 0 0 -4.571731704955713e-05 +5562 -0.0006330807664467044 9.325037273488371e-06 0 0 0 -4.148278957211156e-05 +5585 -0.0006061074766685766 7.443302222074851e-05 0 0 0 -1.6679036220530235e-05 +3135 -0.00031584233177204505 0.0002162559666339816 0 0 0 -5.216281286950464e-05 +5653 -0.0006163041751902626 7.95007699349596e-05 0 0 0 1.3052574206713308e-05 +5655 -0.00039788176710160093 9.024919735974662e-05 0 0 0 0.00032203630202223577 +5686 -0.0005990090099843464 7.9201619395262e-05 0 0 0 3.202352566458393e-06 +5689 -0.00030886807888111476 0.00020597731557150345 0 0 0 1.532729080212331e-05 +4426 -0.0007869833902043661 0.0001603419982010338 0 0 0 -2.4467167643224967e-05 +8932 -0.001348701414335169 -0.00011923943100759427 0 0 0 0.0012000581706863712 +9836 -0.0008527744470934502 0.00011702451714913007 0 0 0 7.259160399846643e-05 +6136 -0.0008142645693740404 0.0001700674981875899 0 0 0 1.3375063341659771e-05 +5828 -0.0008105828087885152 7.675903224222082e-05 0 0 0 -9.55677486636802e-05 +9472 -0.00020784625286020413 0.00012840164876998567 0 0 0 -4.28132605799352e-05 +5968 -0.0004546893593804586 6.028712388611471e-05 0 0 0 -1.7364724861074655e-05 +5983 -0.0006997889540059286 -5.8569222913960424e-05 0 0 0 -0.00014790709749854796 +6086 -0.0006762316773712441 0.00011698469757393857 0 0 0 -4.8328614436037735e-06 +6087 -0.0006054730030604564 0.0002572920348090294 0 0 0 -8.938970566420634e-07 +6106 -0.00027325936930370267 0.0001691066492955669 0 0 0 -1.4472584904405154e-05 +9773 -0.000701470133611274 0.0002491608219546815 0 0 0 1.5543315530267638e-05 +6289 -0.0005264452930313486 -4.5181111085609346e-05 0 0 0 -9.848728450234594e-05 +6296 -0.0006143831822729748 5.927369093651892e-05 0 0 0 1.709761750197694e-05 +8204 -0.00030201894859706985 0.0001160689156580832 0 0 0 -0.00019367150800188055 +6313 -0.0002971945853733465 8.688426719392302e-05 0 0 0 4.494563356998692e-05 +6161 -0.00022897262394140172 0.00015558932020529067 0 0 0 -6.758439200523013e-06 +61 -0.0003198172220178988 0.00015774530186937906 0 0 0 3.669891914640106e-05 +6463 -0.0005534615674452333 0.0002168983001169154 0 0 0 -2.4996274621692986e-05 +6467 -0.0005889176982722112 7.14173580263368e-05 0 0 0 -2.0100585915386e-05 +6471 -0.0005088171405620074 0.000299144707031717 0 0 0 7.810194143317917e-05 +7921 -0.0007812804672529529 0.00016730555361660498 0 0 0 -3.305184048138308e-05 +9225 -0.0007755270948129121 0.00020820082735500156 0 0 0 -0.0003070507728758186 +6512 -0.000516072685949112 0.0002696440250773008 0 0 0 7.252326925934198e-05 +6534 -0.000506919308307034 0.0002374476636201867 0 0 0 7.171829638009589e-05 +6615 -0.0008882699761179251 0.00010853198448972322 0 0 0 -0.00013524779878918255 +6699 -0.0008043500806199515 7.171101166064546e-05 0 0 0 3.2156249221826006e-05 +6765 -0.0006782744637418258 0.00011344141622825558 0 0 0 9.475889074564587e-06 +6580 -0.0007170911894337177 0.00015288291787802556 0 0 0 -0.00022218763613047115 +6812 -0.00027681313915566507 0.00018388015969944468 0 0 0 4.062833692185394e-05 +8892 -0.0007226363036704706 7.690765353033202e-05 0 0 0 -7.144103145154876e-05 +6824 -0.0005273820525828583 0.0002815766197255842 0 0 0 -0.00015134793841245945 +6897 -0.0007928136461367166 7.61923532530464e-05 0 0 0 -2.47575325006015e-05 +9150 -0.0006670012746565996 0.00027005390438825176 0 0 0 -0.0002139571843462256 +7057 -0.0005933211989485831 0.0002076612707940139 0 0 0 2.4739542810005685e-05 +7070 -0.0007647105053156896 9.025692832092891e-05 0 0 0 1.6427326646187902e-05 +5989 -0.0006162060174363251 0.0002570821817438914 0 0 0 5.373448321878034e-06 +7171 -0.0005545325010255291 0.00023364865895297355 0 0 0 -1.368465829009299e-05 +7182 -0.0007194408776988836 0.0002359689929153607 0 0 0 -0.00011566824074221205 +7290 -0.000714197786340059 0.0002445036436273495 0 0 0 0.00018272242930896922 +7315 -0.0005905896207798136 0.0001075203495017894 0 0 0 -7.407162655440607e-05 +7338 -0.0006808092682413103 -6.6869316840766e-05 0 0 0 0.00011422004126307324 +2563 -0.0006505026565976611 5.475741177534864e-05 0 0 0 -2.787494501099773e-06 +3820 -0.0008666616685977265 0.00018642191622008774 0 0 0 -3.445801760831526e-05 +7506 -0.0005826394211250743 -4.406772917224356e-06 0 0 0 -5.407536707448485e-05 +7525 -0.0004641979687956211 3.148761389599748e-05 0 0 0 0.000290829230922942 +8682 -0.0006930496071526712 3.4743073531484655e-05 0 0 0 4.5822901072837035e-05 +7568 -0.00045756871191122793 0.00018264680883433817 0 0 0 -2.7555440877490836e-05 +7620 -0.0006793477384681073 -0.00010155012716860936 0 0 0 -0.00010043669056916041 +7645 -0.00033409580584165785 0.0002110526379636552 0 0 0 -6.859381840313154e-06 +7650 -0.0006826611579148832 -8.271515898888687e-05 0 0 0 -0.00010651757969978053 +9308 -0.0004634568657541521 5.056151276429936e-05 0 0 0 5.469797174540894e-05 +9405 -0.0005335582542288341 1.4668764868723054e-06 0 0 0 -2.975790694833113e-05 +6984 -0.0008453132724490027 0.0001786371996352583 0 0 0 3.417643952691284e-06 +7745 -0.000613568349943349 0.00018532898773241768 0 0 0 -5.627121120261365e-05 +7748 -0.0005025924507703054 0.00022133398774696217 0 0 0 -3.190289556091322e-05 +7823 -0.0005740927540846137 0.00021646398444808614 0 0 0 1.0819743574537054e-05 +7824 -0.0008906016854363184 9.389403562986553e-05 0 0 0 -0.00015752865026668906 +7831 -0.00045655543103344134 -0.0001146817648517671 0 0 0 -0.00031803208987299175 +4481 -0.0008318198613002412 0.0002132986973853993 0 0 0 6.992527377629407e-05 +7922 -0.0007227601572672643 0.00011340601437109506 0 0 0 6.154583733412216e-05 +7947 -0.00047308845377859834 0.0001419676123689658 0 0 0 6.94051165405981e-05 +4276 -0.00031312172511849885 0.00012634652531976246 0 0 0 1.584247443101523e-05 +8002 -0.000434778936513471 0.00014851545936009125 0 0 0 -5.517751889699839e-05 +3928 -0.0007992906879477883 0.00024132456438309674 0 0 0 -0.00014905852703267714 +8115 -0.0007476479287116166 0.0001513074295977743 0 0 0 -0.00037906492926434714 +8149 -0.0006157785036377466 -5.478927563125959e-07 0 0 0 0.00012467857295868422 +2442 -0.0005561425874568973 0.0002507025040078163 0 0 0 3.3437434844926904e-05 +8214 -0.0007313026284625867 4.9010959382185565e-05 0 0 0 -0.00035025630419028235 +8268 -0.0004363363307808222 -0.0002236104616433763 0 0 0 -5.620790133118802e-05 +8282 -0.000522749970983967 0.00027844764633178646 0 0 0 -0.00013669237492229587 +8325 -0.0006444729786980186 0.00011293509131459215 0 0 0 -2.5939336598324937e-05 +5650 -0.0006047990671451929 0.00022729242723434548 0 0 0 -0.00022883924285030263 +8501 -0.0008668903392262292 3.463248852504732e-05 0 0 0 -0.00021528879981794958 +8511 -0.0006136570011853528 3.336748462312199e-05 0 0 0 -4.311138937654634e-06 +8583 -0.0003206702956317817 0.0002045444185265362 0 0 0 -1.0714621055600627e-05 +8591 -0.0007987795310367182 7.36601162375043e-05 0 0 0 -5.4159055474173924e-06 +9491 -0.0008655522054766641 5.922839373664925e-05 0 0 0 -0.00014527652331573882 +8626 -0.0004818680116404993 9.733169412503747e-05 0 0 0 6.302157509901675e-05 +8635 -0.0005227878774189729 -2.3407594124588646e-05 0 0 0 -0.00014366641026011332 +8658 -0.0005757166991860335 0.00020063397893295738 0 0 0 -7.505361086907326e-05 +8665 -0.0008586063120445663 0.00010954135394545796 0 0 0 9.362800924040726e-05 +1949 -0.0007732326081206847 0.00016320477141839693 0 0 0 -1.1121231997854993e-05 +774 -0.0006010360345347203 0.00028199815017225955 0 0 0 -9.483062283849968e-06 +8729 -0.00031208543452722375 0.00020785165268252592 0 0 0 2.954105586176543e-05 +1695 -0.0007998210634816032 0.00016761688348852877 0 0 0 -1.7704830686279485e-06 +8738 -0.0007990093244166961 0.0001053196101790149 0 0 0 0.00017554436798832964 +8747 -0.000885456192946425 0.00014764229024924827 0 0 0 -0.00023586139931500966 +8760 -0.0005176274240316957 -5.060692856465936e-05 0 0 0 -0.0002719157163872968 +9713 2.7755602977820714e-05 -0.0003117768199409072 0 0 0 0.0004802859033597456 +8776 -0.0007593720316124192 0.00011727655359859861 0 0 0 -2.183532603199224e-05 +8769 -0.0006596545849181649 0.00031387964943685177 0 0 0 2.3459986184161508e-05 +8918 -0.0006749059452138106 3.609509340052703e-05 0 0 0 -0.00025374162467170513 +8938 -0.0005516812377370509 1.0548278621285846e-05 0 0 0 3.1728328736045464e-05 +350 -0.0008098423216323466 0.00017637494677966677 0 0 0 7.723464912836185e-07 +9028 -0.00021307343100153547 0.00018375973721121606 0 0 0 -6.552407897790513e-05 +2892 -0.0006537429335700862 0.00026133988177464465 0 0 0 -9.237843650173035e-05 +7669 -0.0007952108010621258 0.00020545114723959784 0 0 0 -7.354800758045691e-05 +3223 -0.00044030237532932497 4.264240886800198e-05 0 0 0 -2.6495203290193008e-05 +4945 -0.0008112491374560609 0.00019636258790590075 0 0 0 -2.943787647533753e-05 +2379 -0.0008272201171400472 0.0001503269070689607 0 0 0 -8.492963224515743e-06 +1232 -0.0008351664208742861 0.0001895971728768413 0 0 0 2.1837237650704215e-05 +4539 -0.0007975463714079117 0.00015500249753135314 0 0 0 1.5368025840780524e-05 +6494 -0.0007569168519910351 0.0002546730548416199 0 0 0 -0.00024925212127158814 +2954 -0.0006928298729936228 0.00026406368675196284 0 0 0 -8.484149792182754e-06 +6836 -0.0004923816283241457 0.00015100712070943286 0 0 0 -2.9151738711792195e-05 +4402 -0.0005616466784350283 0.00026425001099235167 0 0 0 -9.227062302604175e-06 +3815 -0.0006324139723908513 -4.323652317682072e-05 0 0 0 -0.00018870090066420457 +313 -0.0008230009820605615 0.00013896094544931875 0 0 0 2.7958275755933727e-07 +7023 -0.0008589244244274867 0.0001809729156751543 0 0 0 8.678340241632072e-05 +2666 -0.00036956322002385444 7.834959098096083e-05 0 0 0 1.071458497151156e-06 +4638 -0.0006504776520661171 0.00022177600607296047 0 0 0 -6.471229239375561e-05 +7584 -0.0008455426316773433 0.00023092418099361243 0 0 0 -0.0002010334411606423 +1116 -0.00039559854216442164 0.00015965089906478462 0 0 0 -3.64614565573991e-06 +8694 -0.00024636445286788545 0.00015124369868340628 0 0 0 3.562506278622868e-05 +1837 -0.0005884707687998976 0.00030695423044312895 0 0 0 -9.357410056414429e-06 +9805 -0.0005668734637535583 6.518275602885747e-05 0 0 0 -4.178996117615289e-05 +6514 -0.0008182686047829301 0.00015723968646779102 0 0 0 1.2746926181951904e-05 +6606 -0.0002932136231788516 0.0001796983926116318 0 0 0 3.2198403847592275e-05 +4676 -0.0006647656208855355 0.00020979645973457804 0 0 0 -0.0002954244500070754 +2724 -0.0007087039033312044 3.49676552248397e-05 0 0 0 3.35607797556748e-06 +1100 -0.0006414500867208664 6.098072968364216e-05 0 0 0 -3.8808435632391326e-06 +5591 -0.0006388359630620881 0.0002316618219705291 0 0 0 0.00026903974794283684 +4332 -0.0007208152736511401 0.00017735259431104307 0 0 0 -4.2407084497278006e-05 +2673 -0.0007437179471680102 0.00023236026017240812 0 0 0 -6.599179524742001e-05 +1305 -0.0002955175770967466 0.0002133481966812707 0 0 0 -1.578038630497841e-05 +2574 -0.0007407053231145515 0.00020533455176573843 0 0 0 0.00010347577304114587 +7812 -0.0008857374564474973 0.0001945138327952935 0 0 0 8.711111905269168e-05 +7693 -0.0005693445103800809 0.00018938957612538927 0 0 0 -0.00013764064987134938 +1345 -0.0008154535022123116 0.00017595646595828222 0 0 0 4.2527624117822725e-06 +949 -0.0005254899189162321 0.00018684590218394446 0 0 0 -1.1185912757046912e-05 +2472 -0.0004557058675165823 0.0001658625849210903 0 0 0 -1.5110753265205695e-05 +2067 -0.00029717685751554654 7.18934144086023e-05 0 0 0 -3.282870524408171e-05 +9909 -0.0008065584256820251 0.00015419674191642402 0 0 0 4.310643706692791e-05 +8780 -0.0004722576799843829 0.00016237332188280163 0 0 0 3.9584710788634465e-05 +7469 -0.0002900453986083505 -1.6586346309993377e-05 0 0 0 2.4043710257365217e-05 +4537 -0.00038359548708594263 8.479609913286197e-05 0 0 0 2.0833142296625406e-05 +3939 -0.00029364449575614883 -1.6707861047449745e-05 0 0 0 -4.188466326426976e-05 +9735 -0.0003432589508801088 5.468889731717433e-05 0 0 0 -1.8183751258243367e-05 +6493 -0.0004426354255459034 0.0002585345660863236 0 0 0 -6.699188796079106e-05 +7454 -0.0003565310412708759 0.0001341939202200018 0 0 0 -0.0001699380061024291 +7205 -0.00029067322694763085 0.000199538884554595 0 0 0 5.017300795988849e-05 +87 -0.00017236531405522907 0.0004516529795261938 0 0 0 -2.366874829889737e-05 +7323 2.8938131106814132e-05 0.0005422012404566369 0 0 0 1.271328761539416e-06 +129 -0.0009740663444162997 0.0009780317656523463 0 0 0 3.580439645192297e-05 +154 -0.0006095280742332322 0.0004755323229752493 0 0 0 -9.548709592919904e-06 +979 -0.0008528393444059907 0.0003027394758872538 0 0 0 2.798729777386941e-06 +5668 0.0002376211847189241 0.00037894253918806817 0 0 0 -6.144046677226699e-05 +221 -0.0005321252257121591 0.0003299771766366452 0 0 0 -8.677604284826107e-06 +7419 4.059029458107302e-06 0.0004008608365328884 0 0 0 2.822110263705967e-05 +259 7.190766252515239e-05 7.72962001081937e-05 0 0 0 3.8033621027882275e-06 +265 -0.0007712179350679061 0.0008898054553259623 0 0 0 -2.4926743459467385e-05 +6374 0.0002553958808938455 0.00036120703125779036 0 0 0 5.507206877561722e-05 +305 -0.0010494118204370472 0.0009317412206732882 0 0 0 1.48367662467054e-05 +314 -3.1123222955763396e-05 0.00012690643977478498 0 0 0 9.54068644698267e-06 +316 -0.0002658312738570586 0.000324123780463315 0 0 0 -1.9096905422164342e-05 +318 -0.0010118302572062607 0.0006712673622384101 0 0 0 3.797401466487212e-05 +328 -0.00028515652354766486 0.00018441881846576965 0 0 0 -8.289762615706726e-06 +315 5.5769317042322016e-05 7.91736950608378e-05 0 0 0 9.766109959989406e-06 +504 -0.0006539133028126689 0.0006610996461864126 0 0 0 -3.078493715445363e-05 +518 -3.761001987750105e-05 0.0007627947825470246 0 0 0 -7.12448733101909e-05 +539 0.00011706829844921846 0.0005664316502576212 0 0 0 6.0244652085166576e-06 +556 -0.0002314989037129109 0.0004019779331270687 0 0 0 1.3534224924292534e-05 +581 -0.00016706388646050454 0.0002774874043024614 0 0 0 -8.47469436859537e-06 +582 -0.0009628836877365333 0.000540854211797398 0 0 0 -9.998336188493893e-07 +598 -0.000577903879160141 0.0009839928210693466 0 0 0 -1.054401237560324e-05 +599 -0.00045045364239563416 0.00020945449702812485 0 0 0 -3.3352842193573786e-05 +613 -0.0003813689763231551 0.00039933033765569945 0 0 0 -1.7448704402181725e-05 +2077 -0.001010915357168848 0.0004046464332326641 0 0 0 -1.8698098808432027e-05 +672 -0.00024184252379976035 0.00033780063131633533 0 0 0 -2.7044421981467315e-07 +680 -0.000437478744310756 0.0004658904995877975 0 0 0 2.8584798285120373e-05 +738 -5.406143142676182e-05 0.00034706071185218164 0 0 0 -3.758490489559362e-06 +746 -9.960188824113158e-05 0.00020872609990059627 0 0 0 -1.655011205505041e-05 +760 -0.00020259252399314407 0.00033804147083748746 0 0 0 -7.723759979489049e-06 +796 -0.0009688906352657536 0.0005651437813867234 0 0 0 -1.9729141752252792e-05 +808 -0.000567903967489704 0.0007172767077870889 0 0 0 5.965819722611563e-05 +843 -5.5204185748090705e-05 0.00018096843405428068 0 0 0 -1.7090233847188758e-06 +882 -0.00010738358012881058 0.00021385186327164295 0 0 0 -1.0040479082378888e-05 +897 -8.398912133322504e-05 0.0003079779940804004 0 0 0 -3.247345910504312e-06 +907 -0.0006857832852120428 0.0006649380175099088 0 0 0 2.902230902195218e-05 +931 -0.0006505666461519623 0.0005641579312420003 0 0 0 -1.4110647362921819e-05 +933 -0.0006300754851525874 0.0007483551639924271 0 0 0 1.512206789802774e-05 +943 -0.0007744778005026001 0.0005443233982767282 0 0 0 -1.4626913504552303e-05 +962 -0.00012127658728987752 0.00038022194786278 0 0 0 8.474747405093396e-06 +963 -0.00015057110175700577 0.0006560690960518747 0 0 0 -3.0977708421707484e-05 +1094 -0.00041677667982197123 0.000386491623234346 0 0 0 -3.783748865729612e-06 +1109 -0.0005886373611654584 0.0005925835579066959 0 0 0 -4.611630805535342e-05 +1124 -0.00016587076639179094 0.0002702775525258082 0 0 0 3.4822905465515923e-07 +1154 -0.00047741119981851375 0.0009446656505139711 0 0 0 -3.23358525948891e-05 +1175 -0.0007295351826585762 0.0006711721112265006 0 0 0 3.1308562586085e-05 +1207 -0.0001673101707373902 0.0002656231255720713 0 0 0 6.5208160435239044e-06 +1210 -0.00038597392252770187 0.0007791522991504671 0 0 0 -2.255968957393947e-05 +1211 -0.00043686334620614563 0.000375280867776989 0 0 0 1.994058560215485e-05 +3744 -0.000797111632013945 0.0003133467696041077 0 0 0 4.7018500426121626e-05 +1283 -0.0009140099171716539 0.0004646253391027805 0 0 0 4.8538063678796816e-05 +1299 -0.0004170024937902872 0.00033244014832713327 0 0 0 4.5300732740826677e-05 +1302 -0.00012000789808971329 0.0002908135086029878 0 0 0 -2.5354406860602864e-05 +9336 8.414606228747575e-05 0.00034350592405807433 0 0 0 -0.00023820762244288499 +1330 -0.0008908801977291661 0.0009863763504071887 0 0 0 0.00010405881397975906 +1344 -0.00013517873067221814 0.0004304752101795973 0 0 0 4.2094094469121674e-05 +1363 -0.00025581667389883183 0.0002454938077574797 0 0 0 -2.4993688428237647e-05 +1386 -0.00020383455666320572 0.00033037728948578433 0 0 0 9.833567667670199e-06 +1406 -0.000943250017822479 0.0005290337157406214 0 0 0 -2.0247845930060593e-05 +1463 -0.00044819404680686666 0.00032687505717915216 0 0 0 3.7819299850241504e-05 +1497 -0.0006135685330461274 0.0007230017281817503 0 0 0 -1.6503842425037258e-05 +1508 -0.0010273769897521591 0.0006837674808650226 0 0 0 2.48133996415838e-05 +1517 -0.00023344893654937175 0.00017017696677893774 0 0 0 -9.639769057854106e-06 +1526 -3.28477053186142e-05 0.0003504559406773688 0 0 0 -4.764069084385827e-07 +4188 -0.0007845646526439214 0.000179180056455272 0 0 0 2.7676689343702072e-05 +1791 -0.0008241392281131356 0.00024017544471117785 0 0 0 3.3570835178812995e-05 +1626 -0.00019563928509837576 0.0002937787662881615 0 0 0 -3.415694226155158e-06 +1629 1.1723004847551796e-05 0.0006055589818686867 0 0 0 -3.735415700687244e-05 +1782 6.282322084717242e-05 0.000462910311294952 0 0 0 4.3478492803578204e-05 +1721 -0.0009923199708287605 0.0005770670564683176 0 0 0 -5.124700140793152e-06 +1854 8.902009935313542e-05 0.00042173401853195857 0 0 0 -3.2365349100835336e-05 +1781 -0.00020663102672895868 0.0003024307449052059 0 0 0 -9.292092135006598e-06 +1790 -0.0008476768223173887 0.0006265883059187167 0 0 0 -0.00010644089409241326 +1851 -0.0003939587309696249 0.0007131667824128006 0 0 0 7.706335766286128e-06 +1884 -0.0008341133959375591 0.0005099348064275831 0 0 0 3.166602045896475e-05 +3563 -0.0008523386792397557 0.00041225786321363563 0 0 0 -3.2479959120906007e-05 +1917 -0.0006903740996192513 0.0008687801562800257 0 0 0 4.872216231037605e-06 +1937 -0.00016066394487077598 0.00026555263260622105 0 0 0 4.618332340036031e-08 +2005 -0.0001666893736728873 0.0002545219422858633 0 0 0 -1.0735756025147723e-05 +2035 -0.0010130643747098367 0.0006834509509707331 0 0 0 9.76800281365246e-06 +2111 -2.684770922924616e-05 0.0003218316804807678 0 0 0 -7.48412039996912e-06 +2112 1.8047618120850774e-05 0.00013708280977937253 0 0 0 1.5731414562387523e-05 +2123 -0.000713348008795054 0.0010888982375071386 0 0 0 1.0108151884717679e-05 +2129 -0.00019231398427630873 0.00027461733695556957 0 0 0 -4.063835220386353e-06 +2186 -0.00010205259320208838 0.00022862403542840018 0 0 0 6.517395053661407e-07 +2194 -0.0005389352276970179 0.0009318838716836069 0 0 0 -6.530272645375691e-05 +2215 -2.3462907762448526e-05 0.00029737903984596134 0 0 0 3.2781554735037584e-06 +2224 -0.0004321624882496071 0.0006182462323996823 0 0 0 -0.0001304642420430589 +2225 -0.00025189735159492283 0.000338332743809806 0 0 0 1.3821032301912178e-05 +2269 -0.00033854717892045644 0.0004673775466668635 0 0 0 -5.430426280903727e-05 +2277 -0.0001915931843232686 0.00027487463550541645 0 0 0 -5.626527942197019e-05 +8978 -0.00043864240495668726 0.0007498945168391792 0 0 0 0.00023579522335299665 +2362 -0.0006758460158006901 0.0005890893865243517 0 0 0 2.931170822042747e-06 +2390 -0.00038697501860571225 0.0008239851605487629 0 0 0 -9.769043113717942e-05 +2404 -0.00020409258562615817 0.0002850944374545145 0 0 0 -1.5440103190934128e-05 +2430 -0.0004836423357310536 0.0009205107820418348 0 0 0 -8.094314490218055e-05 +2434 -9.077666261134002e-05 0.0002615372501020007 0 0 0 1.3263858800710948e-06 +7585 -1.9789755394202147e-06 0.0003732398063670738 0 0 0 -2.1398522143155753e-05 +2521 -0.00013327635912380463 0.00016389649393901465 0 0 0 -1.9481506881122482e-05 +2542 -0.0007017284530098835 0.0011274269092456906 0 0 0 -5.080749133368138e-05 +2554 -0.000141699116185776 0.00021137631069306187 0 0 0 -4.23340039086186e-06 +160 0.00015618621757297849 0.0005236601149542304 0 0 0 -8.477588393975553e-06 +2585 2.7739710285036306e-05 0.000580323419668297 0 0 0 -3.397033787901507e-05 +2643 -4.1504786190294765e-05 0.00026938780576363117 0 0 0 3.532835528628711e-05 +2645 -0.0005097811170369312 0.0006508549221798497 0 0 0 -0.00013769485222722819 +2663 -0.0001474442265906656 0.00017780013171834366 0 0 0 5.965722928888406e-06 +8318 -4.0118443530490675e-06 0.0001530292098733121 0 0 0 -3.6276029488990524e-05 +2791 -5.6376271021196144e-05 0.00039988267953315886 0 0 0 2.0872757508944517e-05 +2793 2.5671698465610584e-05 0.00013479870438273404 0 0 0 1.3417383856645578e-05 +7808 -0.00019943102806612264 0.0006932030310968045 0 0 0 0.0005992948499663935 +2924 0.00011333204032943293 0.0006515120336372646 0 0 0 4.248172920923936e-05 +2953 -0.00017533022165837513 0.00028086970040851574 0 0 0 -9.73824858894936e-06 +2981 -0.0006090792198484992 0.0007114292474929701 0 0 0 -2.7208899704235922e-05 +3028 -0.00020415811191209197 0.0003089335744780208 0 0 0 -1.0785850199188567e-05 +624 -0.00025587866432982137 0.0006597767581839403 0 0 0 -5.596921238031748e-05 +3061 -0.0009911039824183818 0.0006079713066870906 0 0 0 -3.822237832945995e-05 +6899 -0.0008475021857126738 0.0003337197168301542 0 0 0 -4.161337191970417e-05 +3125 -0.00014854204884392862 0.0002538326586554696 0 0 0 -2.5387499827423204e-06 +3137 -3.0995606252175906e-05 0.0005605231057723213 0 0 0 0.00011438363259345282 +4111 9.777373891659329e-05 0.0005088764374444969 0 0 0 -4.1691838417297e-06 +3190 -3.015890008431204e-05 0.0002758238967136768 0 0 0 5.930287218468456e-07 +3208 -0.00019536923220567253 0.0004959911416095562 0 0 0 -9.147623236761301e-05 +3231 -8.369141565623944e-05 0.0006485804309382067 0 0 0 0.00016337756372330011 +3244 -0.00045449322405490585 0.00045175893444360525 0 0 0 -7.760671473051654e-05 +3249 -0.0008155414426242212 0.0005342267783867979 0 0 0 1.1673908271474145e-05 +3260 -0.00043020052959858655 0.00015837561834229475 0 0 0 0.00033606127735403077 +3277 -0.00024378573576796668 0.00016819366798789738 0 0 0 -6.424708691828458e-06 +3342 -7.704973531969039e-05 0.00020379071320196322 0 0 0 1.559905160102609e-05 +3345 -0.00035852817225184847 0.00012057134571663835 0 0 0 2.1737158993393116e-05 +3346 -0.00043111221276878554 0.000474582053509202 0 0 0 -3.986847462221365e-05 +3380 -0.0001888415044686771 0.0002553889691857674 0 0 0 -2.7432283502072832e-05 +4098 -0.0010383250270362089 0.0007614411313047856 0 0 0 0.0001668995261304644 +3467 -9.042187819905044e-06 0.0003962615101895052 0 0 0 2.1819566899577288e-05 +3483 -6.707905983781213e-05 0.0006303306584077409 0 0 0 0.0003006701591553057 +3513 -0.0005040485251739858 0.0005184512548705511 0 0 0 -0.00017676009552759 +3524 -0.000822199237574235 0.0006557197118792882 0 0 0 -1.0516892131446712e-05 +7314 -0.000786870306220376 0.00023774970438076445 0 0 0 0.0002472779347151279 +3546 -0.00010300751871191985 9.668998022236666e-05 0 0 0 -3.5622525788781677e-06 +3559 -0.0007555929600520565 0.000281963831211616 0 0 0 2.0400479730264283e-05 +200 -0.0008117404386358774 0.0003710764501099334 0 0 0 -1.9798577101763132e-05 +900 -0.0008113288240797784 0.0001461659248621094 0 0 0 2.2187740265692023e-05 +3702 -0.00017323811310232306 0.00039487526168753383 0 0 0 3.8414642540150876e-05 +3708 -0.0001262482540955103 0.0002195478783156169 0 0 0 -1.9331113401020143e-05 +3718 0.0009655409950375666 0.0007280961108625307 0 0 0 0.00039139385348285045 +6895 -0.000731543911297352 0.00029313934921683523 0 0 0 -0.00012576458832700888 +3726 -0.00017013683479660978 0.0007038825115061692 0 0 0 -3.4092112059285955e-05 +3762 -0.00018787531361376476 0.00036005529663938734 0 0 0 -2.1950430627842973e-05 +3767 -0.00040701904942912984 0.0007953300258471673 0 0 0 -0.0001225403562047452 +3794 -0.0002810834352884227 0.0002563492578137401 0 0 0 1.4989758560675514e-05 +3835 -1.1986660681860332e-05 0.00017774153824164456 0 0 0 7.102096068452711e-06 +3840 -0.00031979373910409994 0.0008020878562429115 0 0 0 -3.918636329198053e-05 +3859 -2.603477392398782e-05 0.0006204742518737731 0 0 0 -3.866023593758796e-05 +3865 -0.0009291447495170844 0.000505478160846906 0 0 0 1.1168879568399625e-06 +3926 -5.4714721130129486e-05 0.00024583156147397664 0 0 0 6.030935556925961e-06 +3944 -0.00041249319341636723 0.0007075789577786348 0 0 0 -0.0001248226291283602 +3951 -0.00033608494517949777 0.0003558609662720575 0 0 0 -2.7134339124487354e-05 +3952 -0.00024436134906514394 0.00033577390959178366 0 0 0 -2.4963494605831936e-05 +3974 -0.00023544449652970753 0.00020021102897369407 0 0 0 -4.439035208332545e-05 +3975 -0.0004337671680404869 0.00044682320966163544 0 0 0 -4.8797802596213286e-05 +3977 -0.0009128963454315226 0.0007010146990303116 0 0 0 -1.727944480904329e-05 +3994 -0.0004297688750733979 0.0003907629609008811 0 0 0 7.301121799743263e-06 +4019 -0.0006613516944451888 0.0005481822554357832 0 0 0 -2.9698903208275484e-05 +4054 -0.0002424581726560443 0.0001980459495137314 0 0 0 6.589645252718502e-05 +4060 -0.00016279141509829568 0.00028241832025351164 0 0 0 2.4911210296944867e-06 +4065 -0.0006205548106148197 0.0006902512393247996 0 0 0 -2.873065999021421e-05 +4082 -0.00034701211381708526 0.0007094951334913928 0 0 0 2.3031913303631406e-05 +4099 -0.0005668315247378237 0.001007205918919878 0 0 0 -5.9444422745091356e-05 +4132 -0.000659056270479207 0.0006817044937565081 0 0 0 5.741206364506363e-06 +4140 -0.00023523049558561991 0.0003125321762550349 0 0 0 8.069377549074474e-06 +4191 -0.00017785951819478812 0.00047946965750051524 0 0 0 6.067429396915516e-05 +4198 -0.0005081927084467956 0.000531265264738453 0 0 0 -8.971360524989319e-05 +4209 -0.0007245837054755631 0.0008905765438595733 0 0 0 -6.187626752205768e-05 +1414 -7.893649997732669e-07 0.00032448228829589845 0 0 0 1.0764099175567704e-05 +4280 -0.00010688095638433854 0.00023955090412708022 0 0 0 -3.8486478323732874e-07 +4302 -0.0006215604064824379 0.0007800627616677218 0 0 0 -4.113433202824012e-06 +4343 -0.00023273984620807367 0.00029906237950634747 0 0 0 -3.499696961299996e-05 +1935 0.0002615821033212055 0.000362040785948028 0 0 0 1.2997737059253979e-05 +4446 -0.00021598017992946263 0.0002998133757545163 0 0 0 1.3100380083100077e-06 +4448 -0.00022845006144758129 0.0003031700364861771 0 0 0 2.7904105333585088e-05 +4460 -0.00016213440482481503 0.0002493056844900289 0 0 0 -2.77454021582404e-05 +4619 -0.0009185729714173447 0.000318415404991384 0 0 0 5.153718409409686e-05 +4632 -0.0001766441574771846 0.00020297154353104743 0 0 0 -2.2860661303071746e-05 +784 0.00014964108961882937 0.0004264316770897034 0 0 0 -2.9231337228294255e-05 +1704 -0.0008344249798321779 0.0002766486823012634 0 0 0 -6.452792245265542e-06 +5988 9.281305631312579e-05 0.0004726400821810425 0 0 0 -1.5884993973429455e-05 +4802 -0.0008145512583992831 0.0004950662075238492 0 0 0 -2.0107379295077475e-05 +4829 -0.00039411484695918707 0.0005317567155198775 0 0 0 -7.392521915711835e-05 +4836 -1.9959202545908346e-05 8.26807113158091e-05 0 0 0 2.8662589159812676e-05 +4857 -0.00032337244376462384 0.00024399719411584233 0 0 0 -2.030703968075528e-05 +8205 4.1292995443355746e-05 0.0004028422895561397 0 0 0 3.7010763283636545e-05 +4870 -0.0003288144262088157 0.00011832330789780882 0 0 0 -1.3169965067264508e-05 +4873 -0.00016540259011332814 0.0002942434387688755 0 0 0 1.284873411650499e-07 +4903 -0.0001877479162067655 0.0002763840510986824 0 0 0 2.4027323816919433e-06 +4909 -4.583189725241157e-05 0.00015252311095276407 0 0 0 -1.4094004395491642e-05 +4915 -0.0008816067124352741 0.0005609578278183475 0 0 0 -3.322730905201947e-05 +4918 -0.0005678866793960456 0.000660686581110164 0 0 0 1.5902055107417254e-05 +4928 -0.00019860140152305012 0.0003192418848338388 0 0 0 1.7157418585673253e-05 +4939 -0.00013148223428422216 9.449967319061417e-05 0 0 0 -2.888115030510373e-05 +4947 -7.359843696679236e-05 0.0006132298388797235 0 0 0 -8.531856302336999e-05 +4984 -7.615069758452923e-05 0.00033652822633475086 0 0 0 -6.0577984884473014e-06 +5022 -0.0004458176187576659 0.0003861112565881909 0 0 0 -8.216040842366556e-05 +5027 -0.000936910705313971 0.00036051051877611086 0 0 0 -3.1206267417382426e-05 +5056 -0.0008852163158659535 0.0004719799759548148 0 0 0 -2.5158256060222046e-05 +5117 -0.0002411864049463681 0.0003587516845811407 0 0 0 -2.0681152657612894e-05 +5137 -0.000761857416980554 0.0004846684063896248 0 0 0 -6.868392138446015e-05 +5143 -0.0001236669152742229 9.158373782235846e-05 0 0 0 -4.5948848891177364e-05 +5145 -0.0006156966345601715 0.0007258795413513348 0 0 0 6.112811046488819e-05 +5236 -0.0009762519263856976 0.000552252213557147 0 0 0 1.9611908145970448e-05 +5324 -0.0002186910069340251 0.0003284774765088712 0 0 0 -1.3378608197185541e-05 +5335 -0.0005730409058239934 0.0008501881602036982 0 0 0 0.00025410434239426437 +5342 -0.00015026457713660497 0.00016387935026319317 0 0 0 2.0185901649383947e-05 +4623 -0.0009410375987100812 0.0005379208455203997 0 0 0 8.069560339353231e-05 +6422 -0.0009273771254353388 0.0004436358835772731 0 0 0 3.1427767866328765e-05 +5444 -2.9327295230179688e-05 8.058312970918631e-05 0 0 0 1.3657112729292406e-05 +5474 -0.0006429888470951484 0.0005290067226547598 0 0 0 5.6446066374648976e-05 +5495 -0.0004800169666825156 0.00020084998714746537 0 0 0 4.0172784097447955e-05 +5496 -7.02145403118379e-05 0.00018654658914755886 0 0 0 5.154433452575981e-06 +5501 -0.00010049720201787055 0.00038484326399497795 0 0 0 -3.839178978616442e-05 +5512 -0.0013911649377076358 0.00031177176394337917 0 0 0 0.00032334493714323637 +5540 -0.000717722233055225 0.0008731713906965256 0 0 0 1.3725665419980656e-05 +6678 9.234545647109009e-05 0.0005129027929606504 0 0 0 -5.713652797382335e-05 +5685 -0.0002073866235703752 0.00031031139795290025 0 0 0 6.727959068877359e-06 +5711 -0.0004065386420592355 0.00015769804197566733 0 0 0 -0.00012231773221992162 +5716 -8.559732547319741e-05 0.00021177727205416608 0 0 0 3.6056183770014454e-06 +5741 -1.904541606495543e-05 7.196036339460359e-05 0 0 0 1.5680735133100043e-06 +5743 -4.225421779158223e-06 7.522397303123573e-05 0 0 0 7.599216726792393e-06 +9353 -0.00028310774518094256 0.00042180210696916636 0 0 0 -6.461846770031887e-05 +5834 -8.090221514370407e-05 0.00021415421491822708 0 0 0 -2.0933323810085602e-05 +5850 -0.00024363610491477436 0.00031204517544603335 0 0 0 2.145072830404047e-05 +5954 3.929376973452739e-05 0.0003727846403958129 0 0 0 2.0031722068842617e-05 +5980 -0.000353343258253545 0.0006103546035069278 0 0 0 -4.4069651426031655e-05 +5995 -0.00016006111316131156 0.0002421247329163754 0 0 0 2.4088013667232375e-05 +6034 -0.00017314070293544335 0.00024378955372511468 0 0 0 6.157712566188226e-05 +9708 -0.000912344651823996 0.00037318190646572354 0 0 0 -9.794372123506064e-05 +6061 -0.0001517789187165478 0.0006981065596063028 0 0 0 3.6278106895161235e-05 +6067 -7.086005503014318e-05 0.000366449681293276 0 0 0 -1.0928072720849761e-05 +6092 -0.0001659856073911298 0.00033338818128667914 0 0 0 2.545670820411887e-05 +6097 -0.0007687731941408745 0.0008804675578134964 0 0 0 0.00011068419694005568 +6110 -0.0007507904600048815 0.0008652125781687378 0 0 0 -6.976731146302831e-06 +6111 -0.0002056923676424476 0.00028572266333258593 0 0 0 1.23822690009968e-05 +6112 -7.763757404217033e-05 6.700237470804856e-05 0 0 0 -3.0165321352535348e-05 +6126 4.3613955568220584e-05 0.0001330008302264165 0 0 0 2.5870988560265038e-05 +6184 -0.0008893788227859082 0.0005553749227098298 0 0 0 3.6782633330152165e-05 +6186 -0.00012598511095602598 0.00023914678507264107 0 0 0 -7.788002802058948e-06 +6213 -0.0002525454787521065 0.00010059779031331422 0 0 0 0.0001583810902018588 +9458 6.597692109149411e-05 0.0005635695849432638 0 0 0 -4.156063852735975e-05 +6249 -0.00010482654121079553 0.0003680713132682094 0 0 0 -2.4909288864432376e-05 +6270 -0.00014319241188140943 0.00015900198531360114 0 0 0 -2.997043415480984e-05 +6298 -0.00016105554279740138 0.000277366820968998 0 0 0 -1.0364635460420227e-05 +8466 -0.0010362616702711774 0.0004565803986859822 0 0 0 8.181286297966277e-05 +6367 -6.984707850770614e-05 0.0001892146074922861 0 0 0 9.802695431179018e-06 +6377 -7.666591384894596e-05 -0.0013906112084300288 0 0 0 4.318723802164695e-06 +6388 -0.0009779189235769473 0.0005576900902967138 0 0 0 5.628354438794018e-05 +6405 -0.0004486926913914648 0.00040751672092759455 0 0 0 -8.033376011690336e-05 +6411 -0.0001251832532425389 0.0002506177314468837 0 0 0 -7.105069474635897e-05 +7256 -0.0010137645201941966 0.0005878866651203674 0 0 0 7.14535044162775e-05 +6437 -0.00040094918977951545 0.0003895293101713268 0 0 0 -7.452660741480225e-05 +6469 -0.00024262304842073522 0.00030808122820142714 0 0 0 -7.500099411247705e-06 +6513 -0.00013084025654487471 0.0001641832479283312 0 0 0 -8.898867238953697e-06 +6613 -0.0009188154479763556 0.0004898365897150907 0 0 0 5.6621952307521806e-05 +6617 -0.0007671494055553664 0.0004917210907661908 0 0 0 1.5539812594451974e-05 +6620 -0.001077751518361164 0.0008985704829334183 0 0 0 -0.00032547203874488555 +6648 -0.0006518471158882813 0.000506726163223611 0 0 0 -1.4351817128001629e-05 +6668 -0.0005022142944091913 0.0004435090296123348 0 0 0 -2.8125195244264355e-05 +7835 -0.0003343094219317054 0.0007183003555528653 0 0 0 -8.575667433990305e-05 +6701 -0.00022900098277892547 0.000323518912790189 0 0 0 -1.3039543069387327e-05 +6705 -5.059128240498932e-05 0.00022228382473158493 0 0 0 1.3882450587598864e-05 +6722 -0.00016700789067295932 0.0004161194972474649 0 0 0 9.444912670379046e-05 +6726 7.6013747168758456e-06 0.0008961211546631068 0 0 0 -0.00042908398482251035 +9840 -0.0009898654400050963 0.0007825305604855433 0 0 0 -0.00015370243117227947 +6915 1.4768903393926411e-05 0.0006299056796623676 0 0 0 2.3635000434975403e-05 +6931 -0.00017959843045537533 0.00041252629051334843 0 0 0 5.5953981517763635e-05 +6933 -0.00016370265951113337 0.0002651658447013809 0 0 0 7.236861016638606e-06 +198 0.00025796481881020043 0.0003960426854170328 0 0 0 -1.5269598677684605e-05 +6981 -0.0007348674218932966 0.0006730318580146443 0 0 0 3.698607217675833e-05 +6996 -8.341968067683404e-05 0.00022376134037163558 0 0 0 -5.54671727914776e-06 +5736 -0.0008794009615190748 0.0003105258911403298 0 0 0 -2.4456674673209357e-05 +7044 -0.0008956503099758152 0.0011021827064420793 0 0 0 -4.938577539958716e-05 +7053 -0.000602448257987754 0.0009264375190148325 0 0 0 5.903265620220532e-05 +7066 -0.0004613969032706755 0.0008595167712640457 0 0 0 -5.575325742349562e-05 +7133 -0.0002404458356754335 0.0003076867322872379 0 0 0 3.498417281418354e-05 +7143 -0.00047153289883050675 0.0009226710110506531 0 0 0 7.516275309348634e-05 +7198 -0.0006398328663645978 0.0006801086674272967 0 0 0 3.2742421127276097e-05 +7199 -0.0008510406308215749 0.0005223344136649013 0 0 0 -7.192395869764354e-05 +3304 -3.0091876287699453e-05 0.00015524021908134536 0 0 0 3.5380155411373776e-05 +7232 -0.0005346917165248665 0.0008903291222106184 0 0 0 -1.4499541591806687e-05 +7235 -5.0687707822542275e-05 0.00024226234129675004 0 0 0 2.3452568662281867e-05 +7261 -0.0001642508903560513 0.00026631327034221726 0 0 0 -1.6371123709745013e-05 +7281 -0.000741860198234471 0.0006676451684400094 0 0 0 -4.318225947261086e-05 +7294 -0.0002498875004462634 0.0004585834797773194 0 0 0 -4.813012072782025e-05 +7346 -5.622505312566493e-05 0.00019819554859659087 0 0 0 8.935579041604675e-06 +7347 -0.0006482321921542614 0.000715362605217517 0 0 0 -8.820661703031005e-05 +7350 -0.0002541400462549057 0.00033581961709313387 0 0 0 5.192515916448993e-05 +7390 -0.00022815111212133178 0.00030985479004656276 0 0 0 -3.737659193797114e-05 +5413 -0.0010465788824521106 0.000663397276297763 0 0 0 -5.7728627778320275e-05 +6414 -0.0007032980525891519 0.00022114969801225362 0 0 0 0.00020503026256387798 +7443 -0.0001343487386617856 0.00011815313653262264 0 0 0 4.572622036525682e-05 +7451 -0.0005000791569985422 0.0008782330937104374 0 0 0 3.389551653435593e-05 +7462 -0.00020306981986284485 0.0004768434138725165 0 0 0 8.461359019574227e-05 +7485 6.165073937385054e-05 0.0006239113252367352 0 0 0 -0.00010899328580116062 +7493 -6.92730129141605e-05 0.00027954740492869273 0 0 0 -3.012765878086788e-05 +7561 -0.00041036038391758183 0.0007071237318298661 0 0 0 -0.00011962787996850263 +8844 0.00013833474554418137 0.0002588179412771907 0 0 0 0.00024876749611892876 +7598 -0.00011760182686296017 0.0002253081011422695 0 0 0 1.0614312880647994e-05 +307 0.00021196652111019645 0.0003259428125760332 0 0 0 1.621050747433946e-05 +3420 -0.0010105296557820574 0.0006007121192252848 0 0 0 2.3244655697784093e-05 +7681 -0.00016064099653922048 0.00022928140824330747 0 0 0 6.627573389320131e-05 +7790 -0.0009251133509354189 0.0009011086264371752 0 0 0 -0.00021993622269690603 +7816 -0.00017275344719254403 0.00025501419589732627 0 0 0 3.337213715030089e-05 +7822 -0.0007725221844354328 0.0005134483071180212 0 0 0 -0.00016019506000792159 +7834 -0.00012296037579473276 0.0007002518352511412 0 0 0 -2.9887426345651366e-05 +106 -5.858063996229179e-05 0.00047053460698916476 0 0 0 -3.1917108918493534e-05 +7858 -2.3468120788469243e-05 5.949152169894064e-05 0 0 0 -1.4495334764406814e-05 +7930 -0.0001440217258093117 0.0006760075180547352 0 0 0 -3.413281981952965e-07 +7938 -0.00014202163103371415 0.00021938640407952558 0 0 0 -6.748341566252975e-05 +1818 4.230775054969665e-06 0.00013557234398575894 0 0 0 4.434934020787616e-05 +3054 -0.0008586314762399507 0.00030905547634564406 0 0 0 -4.4658281506602823e-05 +779 2.725968355506598e-05 0.000350521487720555 0 0 0 2.1735242350780057e-05 +8008 -0.00016535193536677706 0.00021485712923635604 0 0 0 6.455822251054449e-06 +8038 -0.0007297376573928466 0.0005985926989454013 0 0 0 3.407453374774656e-05 +3325 0.0001793715382046396 0.0004961111080775537 0 0 0 1.5580021323830495e-05 +8085 -2.627442221761414e-05 5.397293899635638e-05 0 0 0 3.9413329424144576e-05 +8096 -0.000805848789063219 0.0004919465242622123 0 0 0 0.0002195266547975443 +8114 -0.00014117168014934062 0.00023315310059470078 0 0 0 -3.107905010141509e-05 +8148 -0.0001805931233474628 0.00021866026507566655 0 0 0 -1.683792831147969e-05 +8179 -0.00013784785343596878 0.00039130099779519003 0 0 0 5.740079498413971e-06 +8184 -0.0005367726100720936 0.0009598253062354973 0 0 0 -5.011696745927052e-05 +8186 -0.0006900906805632829 0.0008343719743779521 0 0 0 -6.874200046780316e-05 +8284 -0.0004693534259866009 0.0003663813917321822 0 0 0 -1.4925666191633536e-05 +8307 -0.0006233167538129246 0.0010335874646124374 0 0 0 0.00014638758513875277 +627 -0.0010276059294282661 0.0005820430332196137 0 0 0 6.682725702013033e-06 +8362 -0.0006089614397513792 0.0011251659315825383 0 0 0 -9.347242264979232e-05 +8366 -9.231573348562117e-05 0.00037322009657424237 0 0 0 -1.573101660650158e-05 +8388 -0.0001759699253570677 0.00024225073805676114 0 0 0 -5.050417756980357e-07 +1038 8.31865213124002e-06 0.0003488168150347671 0 0 0 4.439214596626084e-06 +8474 -0.0009703807253712422 0.000949259905961045 0 0 0 -4.7614288141290086e-05 +1515 -0.000759132936094958 0.0002253125376678344 0 0 0 0.00011978865711353898 +8502 -4.085787329104127e-05 0.00034375551596194337 0 0 0 8.975274578664157e-06 +8546 -2.6047472821995325e-05 0.0006248711411833624 0 0 0 3.6792219417533224e-06 +8562 -0.0009473460143949243 0.0005786501986335417 0 0 0 0.000605470992332483 +8596 -2.2941575741796594e-05 0.0003044835356091024 0 0 0 -6.334256359324032e-06 +8623 -0.0005849542923983124 0.0007088818633741411 0 0 0 -7.442183794414289e-05 +8637 -4.226186483775374e-05 0.0001759143130024425 0 0 0 2.9904148639796913e-05 +8676 -0.0036633186319955983 0.0014017197398551256 0 0 0 0.0015166711606351283 +8678 -0.0004787774576067445 0.0007379424158446107 0 0 0 -3.474099456007809e-05 +8705 -1.1662859871134922e-05 0.0003196814050673323 0 0 0 1.3233965608823132e-05 +8731 -0.0007891469404859063 0.0006271321767715189 0 0 0 -1.996169527808243e-05 +8797 -0.00015528044791400183 0.00023120616984148882 0 0 0 1.522777133659796e-05 +8805 -0.000656451194462351 0.0007151319800133538 0 0 0 -9.488446950919863e-05 +8847 -0.0009168443039749584 0.0005091192749633531 0 0 0 -3.1032472397232616e-05 +8926 -0.00042626781668473067 0.00018932956184707227 0 0 0 -4.5413369054231186e-05 +2609 -0.0009974915890465705 0.0003656467196093323 0 0 0 7.968946393149172e-06 +8946 -0.00033714916165303153 0.0001266539193136243 0 0 0 -5.676619756404293e-05 +8968 -0.0001736781727150499 0.0004421435934058906 0 0 0 -5.344931509487948e-07 +8974 -0.00037314907755368806 0.0002833290618133247 0 0 0 3.510553715420863e-05 +8993 0.00044953742322444574 -1.566584375876393e-05 0 0 0 -0.0004961072200715838 +9003 -0.00013641584555713944 0.00023982457662167066 0 0 0 6.979520194095817e-05 +4846 -0.0008446676800290321 0.00017374400986916458 0 0 0 -5.836784403749318e-06 +9097 2.6174301615626525e-05 0.00012684171611653444 0 0 0 -7.746911227959167e-05 +4218 -0.0010534449398349034 0.0006320110714639538 0 0 0 3.147479494649664e-05 +9117 -0.0004428561727395339 0.0010456453542041749 0 0 0 0.0004556582940579766 +6396 0.00018022950816335657 0.0002725291763707651 0 0 0 -0.0001620493725112557 +9224 -0.00015236010138464402 0.00022873961969826847 0 0 0 -7.394898639790914e-05 +9235 -0.0004221695568673524 0.00024339031152649266 0 0 0 0.00029340660064967596 +9276 -2.3785856395447454e-05 0.0006614954009787419 0 0 0 -0.00022583996297841636 +9286 -0.00015522018232336826 0.00022921182234481605 0 0 0 4.086177450560084e-06 +9287 -0.000283039081461862 0.0001014112947065958 0 0 0 6.372028257267702e-05 +5787 -0.000895137270542675 0.00029893878965161087 0 0 0 3.2811426114008344e-05 +9321 -0.0006817596397032447 0.0005963223149762675 0 0 0 -2.0293278127478293e-05 +9335 0.00029833929517191 -0.00020044655109653682 0 0 0 -8.574561339176384e-05 +9365 -0.00021901992702396138 0.0003063776356177243 0 0 0 4.52185681308459e-05 +9379 -0.0005517119653059802 0.0009151938046494456 0 0 0 -8.305087236471311e-06 +9417 -0.00022856010834060376 0.00016820880018058565 0 0 0 -1.5627940462259492e-05 +9429 -0.00018736933286223867 0.0006624945015787702 0 0 0 -4.4825141213323484e-05 +9473 0.00014520076829087962 0.0005679904498653213 0 0 0 -0.0006590698213437061 +9475 -0.0002620469546116769 0.000252300135161499 0 0 0 3.6309636114664064e-05 +3520 -0.0009551682814217541 0.0002841023130009292 0 0 0 -6.613623780537681e-06 +9597 -5.3906074375314076e-05 0.00014436344757497163 0 0 0 -8.301314047494201e-05 +9599 -0.00016190160394647838 0.0003152604287278061 0 0 0 2.2155844928172198e-05 +9604 2.8527346062337664e-05 8.0644311104572e-05 0 0 0 -1.239843381012611e-05 +9612 -0.00032202018574869996 0.0001359327760250917 0 0 0 7.152209290900606e-05 +9641 -3.92329418765628e-05 0.0005680043889125273 0 0 0 -1.7311387565561845e-05 +9659 -4.802753940711457e-05 0.0005593244680988099 0 0 0 6.920842721044092e-06 +9688 -0.0006160785216070417 0.0007967875838327744 0 0 0 -0.00039678611568234813 +8387 0.00015973107642225208 0.0002669373888668494 0 0 0 0.00024608068033142637 +9772 -0.0006335740474760935 0.0005259818054707108 0 0 0 -6.368727703942001e-05 +9779 -0.00019094639949218328 0.00035379520276489126 0 0 0 2.557266577429188e-05 +9806 -0.00012235445344429928 0.00040196788062195365 0 0 0 -1.4843551370656114e-05 +9856 -0.000525271460469895 0.0002604068400923987 0 0 0 0.00015107393746568916 +9919 -0.0004312891181065502 0.000764304753467168 0 0 0 -0.00017281066591353202 +9932 -0.0007308165015399036 0.00056724871364709 0 0 0 6.219102799482589e-06 +9935 -0.0005701477189008804 0.0009748100504122543 0 0 0 -1.729677347383362e-05 +9950 -0.001101246673722191 0.0008846195058074279 0 0 0 0.0002476977785377159 +9956 -0.0007147813224822519 0.001143215392072491 0 0 0 6.7580173625932725e-06 +9971 -0.0006685709450182818 0.0005722213738322103 0 0 0 2.441112060300333e-05 +9975 4.9116108738552866e-05 7.741100698117938e-05 0 0 0 -3.0981716838679205e-06 +9996 -9.544002869310344e-05 0.00027204371613196647 0 0 0 2.308742860066249e-05 +2454 -2.254174650928365e-05 7.933591886979107e-05 0 0 0 -2.9395906988437492e-05 +6588 -0.0003931815753129092 0.00036215621899610866 0 0 0 -0.00017791903654275725 +8624 -4.607159233376612e-05 0.00019069306086624065 0 0 0 1.9472033637507912e-05 +1379 -0.0003675737162886858 0.0006635717254606426 0 0 0 -2.4925226980721588e-05 +3080 -0.0009501237700367925 0.0005456716936985563 0 0 0 -8.526424743317588e-07 +3571 5.1549072641960844e-05 0.0005494090360268763 0 0 0 -3.403967754354451e-05 +923 0.0002497899800422693 0.0003160317954175303 0 0 0 4.898564897969832e-05 +8060 5.2987246086664365e-05 8.517021012434986e-05 0 0 0 2.1674340133454082e-05 +4057 -0.0008775841000269533 0.0004495158646794224 0 0 0 -6.491325186370599e-06 +1976 3.065314578595928e-06 0.0005651034589641295 0 0 0 -2.181334209659859e-05 +8079 9.926793291918483e-05 0.0006658883293008826 0 0 0 -0.00029617596586078624 +3053 -0.0004552366758056744 0.00017303781658964447 0 0 0 -0.0004310831455330682 +8791 -8.535072553273338e-05 0.0005623625178972569 0 0 0 -2.4975128674366217e-05 +5796 7.132916916581008e-06 0.00038142163290880306 0 0 0 5.222632632293891e-06 +6045 1.2468891171038458e-05 0.00030868131414844954 0 0 0 -0.00011299591078801517 +3178 -0.0008583608170497159 0.0004505973236335428 0 0 0 1.4645334073097722e-05 +2173 -0.0007508105878736754 0.0001574295561116385 0 0 0 -0.00012690619950931313 +3255 4.287228666457112e-05 0.0005071257053923279 0 0 0 2.8084566877084503e-05 +7979 6.33902164042822e-05 0.00026470989834143836 0 0 0 0.00022246435484713067 +4755 -0.0010143972698737865 0.00043868501100233676 0 0 0 -2.4711422776772898e-05 +7272 -0.0008499689024274717 0.00033664429006895734 0 0 0 7.230090822498358e-05 +7477 0.00022279603177017033 0.0004998858520555647 0 0 0 -4.5534499124525735e-05 +9974 0.00012852375337831824 0.0005296190805718803 0 0 0 2.2030268311581402e-05 +256 -0.0008632503705592974 0.0003209489591118176 0 0 0 2.01777565027325e-05 +7714 -0.00023303946390198257 0.0006632252219679868 0 0 0 -2.7571356616700404e-05 +9000 0.00010155618146129787 0.0004331844687364713 0 0 0 4.992848230087035e-05 +2980 -0.0008718816893096962 0.0003816263138281415 0 0 0 4.850421799725289e-05 +9865 -0.001077836550344108 0.0004334097338621345 0 0 0 0.001392101868370531 +4782 6.94964407589116e-05 0.00043651418143522095 0 0 0 5.994045663845078e-05 +3775 0.00010783488267037344 0.0005823540277865419 0 0 0 -3.7980857831082067e-05 +7747 0.0001189241968775165 0.0004898356916921956 0 0 0 -3.614763554060664e-05 +4331 -1.6712186679603964e-05 0.00011178048453237931 0 0 0 -5.465507818849793e-06 +9409 6.62630243640239e-05 -0.0014848798119955439 0 0 0 0.0009730374512244737 +2559 -1.598161023670335e-05 8.383196481359686e-05 0 0 0 -1.5249006655653683e-05 +7120 -0.0008690087698630446 0.0002462995097848456 0 0 0 1.531617310344696e-05 +3500 -0.0007838327594308415 0.0001491282660756138 0 0 0 5.224450594861351e-06 +157 -0.0002456821701819359 0.00013447508623656653 0 0 0 -7.498347552120512e-06 +7406 -0.00034723145174391483 0.00013186220075452914 0 0 0 -4.0004974881668134e-05 +2 -0.00012349992366021527 0.00021618730104339186 0 0 0 6.684701147374103e-07 +5154 4.858240193842065e-05 6.788583956334664e-05 0 0 0 0.00010849897189407315 +38 7.685725211640613e-05 -0.00015712819068013935 0 0 0 6.759432643772625e-06 +88 -5.160484712759851e-05 0.00015043186602425277 0 0 0 1.4378106553115159e-06 +978 -0.00014789444075600714 2.7624715262936423e-05 0 0 0 9.760411326339134e-06 +8047 -0.00018695217500676282 0.00011805916710060182 0 0 0 -4.146916926315933e-06 +150 0.00027928304016628367 0.0003941768355541649 0 0 0 -9.034943476613244e-07 +177 0.0003839127636935987 0.0005303170103451205 0 0 0 -4.1875285213496185e-06 +189 0.000302383063749682 0.0005125573548655583 0 0 0 -4.737934281741177e-06 +197 0.000413254915781053 0.0006578299694438635 0 0 0 -1.183292401172815e-05 +233 0.00030619678736502903 0.0004594268061083172 0 0 0 1.603959076239961e-05 +271 0.00020582735820160236 0.00045119942231698726 0 0 0 -1.0478675619389917e-05 +357 0.00037311750978731757 0.000602868849778507 0 0 0 -6.2129737502363674e-06 +385 1.9044735411360863e-05 0.00019103699480379726 0 0 0 4.854818596103374e-07 +5714 0.00016384328220436689 0.0003753153752063654 0 0 0 -3.459090338504531e-05 +2495 0.0005514412931540334 0.0008298429729791031 0 0 0 -1.931604526332296e-05 +508 0.0001423264944344163 0.0003225516637332386 0 0 0 -2.1882156369837812e-05 +575 -0.00011392645703646639 0.00017970520645981688 0 0 0 -4.3455789332065245e-07 +647 0.0002029931439576872 0.0004114086117713685 0 0 0 9.662757370144128e-07 +655 0.00024465384815892667 0.00016612214016480277 0 0 0 -5.157158594424587e-07 +658 0.00020025326268895648 7.587729369882593e-05 0 0 0 -2.4435954285958992e-05 +663 0.00046191835636014215 0.0006963990153148843 0 0 0 -4.060429995375488e-06 +685 0.00020421857370131528 0.00036443249429682145 0 0 0 1.8314891937629686e-06 +695 0.00016519501056743653 0.0003474938719350707 0 0 0 -2.8270425516072907e-05 +5221 -0.0002004729789687849 0.00013072100372374723 0 0 0 7.256261550378022e-07 +7215 0.00031052777268014513 0.0005021297441910656 0 0 0 -2.3908225313409144e-05 +768 -0.00011214961286129666 -6.701084596477314e-05 0 0 0 -3.291984406257487e-05 +797 0.00024679115420073264 0.0001300254720739042 0 0 0 3.896445000983618e-05 +6468 5.0758400156390565e-05 -0.00015681442006310444 0 0 0 -6.184498185200604e-05 +871 -7.1121800520357e-06 0.00024839939872031014 0 0 0 -2.9172838722908695e-05 +899 -8.35443637160515e-05 9.385305457030576e-05 0 0 0 -1.3945231083702439e-05 +7368 1.3703418170110385e-05 -0.00019389281642545074 0 0 0 2.4040087034346002e-05 +2598 0.0004834187944324333 0.0008039736742622331 0 0 0 -4.6339451089879444e-05 +1063 -0.0002128810055890248 0.0001630552325600666 0 0 0 4.534207814574424e-05 +1077 0.00036073034154588524 0.0005764284224392404 0 0 0 1.4435507694596241e-05 +2378 0.00021356600082310783 9.317630496949533e-05 0 0 0 1.0629376614318371e-05 +1096 0.0002482505098813394 0.0004638667062744762 0 0 0 -1.4464973407325092e-05 +1117 0.00027139242228522146 0.00032494344358552753 0 0 0 -3.7322230151706815e-05 +2446 -0.00016945234771912276 3.297063421111776e-05 0 0 0 8.475249089210263e-06 +1241 0.00016454831632804726 0.0001642614573481567 0 0 0 -1.2202453605982661e-05 +1245 -4.5750586237382985e-06 0.00027473815688155236 0 0 0 -1.6383009236169767e-05 +7259 -0.00014764033185678577 1.0037435589075535e-07 0 0 0 -3.830715048249444e-05 +1346 7.224890110879155e-05 0.00025084067920502057 0 0 0 1.904710860936528e-05 +5565 0.00029042768439885546 0.000347056613937325 0 0 0 1.8478957871781812e-06 +1393 6.531189903933896e-05 0.0002903874015167074 0 0 0 -2.521516618920813e-05 +1399 -0.00010485534658444979 4.426854326095471e-06 0 0 0 2.2489843018730745e-05 +2487 -0.00020753075872766028 -2.709329864396129e-05 0 0 0 -1.2131910287902786e-05 +8996 0.0008960262265761456 0.0002313864272906385 0 0 0 0.0011346100312010702 +1476 0.0003682187339062902 0.00047884852420745645 0 0 0 1.6892937674766365e-05 +1486 0.0004585333777702387 0.0005993624156343254 0 0 0 6.0228283936374754e-06 +1505 4.983820368377898e-05 0.00033646057206137046 0 0 0 -3.5456177341454856e-05 +1506 0.0003358420804423033 0.0004171998200535493 0 0 0 6.620563228324756e-06 +1510 0.00010163596200442789 0.00035660088074925065 0 0 0 -4.295452716531923e-05 +7797 -0.00019028084399787078 6.745232197834956e-06 0 0 0 2.258116473699398e-05 +9315 -0.00018171607778888634 2.7917754859557606e-05 0 0 0 4.617778843804267e-05 +1702 2.973797485330287e-05 0.00023805912182138508 0 0 0 7.924038533023202e-06 +1771 -9.526623077044935e-06 0.000243912695525653 0 0 0 -1.5647109800190656e-05 +1778 -0.00019874663278486303 0.0001414750907255088 0 0 0 5.640385520968493e-06 +1857 0.00017066809481452945 0.00017736358705495902 0 0 0 -2.0890141989671436e-05 +1953 0.000361257803057224 0.0005508999416724965 0 0 0 -1.4860305387492404e-05 +9607 7.707445935550843e-05 0.00032295338675164407 0 0 0 -1.4980379718132485e-05 +1994 -4.749288628361814e-05 0.0002147316236186186 0 0 0 3.1984774162566927e-06 +9554 0.0005447129468954945 0.0007484420757221798 0 0 0 4.035418430879083e-05 +9818 0.00018488478049573904 0.0003241342932901575 0 0 0 -8.565393590327768e-05 +2188 0.0003274355362411321 0.0005007259897134497 0 0 0 -6.268246761453789e-06 +2189 0.00014048831074228157 0.0002359018467555589 0 0 0 1.0056033311377912e-05 +2198 3.8672551189314383e-05 0.00023885972437565477 0 0 0 -5.512211818093326e-06 +2212 -8.342896622769539e-05 9.080472399441298e-05 0 0 0 5.750808109427329e-05 +2274 0.00011158890935146841 -0.00011231792079444568 0 0 0 0.00013242939339033668 +9894 -0.00042699378460487724 0.0009038944622969712 0 0 0 0.00040553328138089864 +2438 0.00012192229184297473 0.00024204861470631466 0 0 0 1.5400391950870843e-05 +2470 0.00016029379278542102 0.00030800878287769374 0 0 0 -4.0629852246807685e-05 +2239 -0.0001922492940234663 0.0001183591986328283 0 0 0 -2.9718394805252783e-06 +6217 -0.00018838016690368272 -1.5217371213865816e-05 0 0 0 9.203174948718054e-06 +9925 -3.5441571039812314e-05 -7.029898576578611e-05 0 0 0 2.7424991036534514e-05 +2622 0.0003229115451463283 0.00046155341929126644 0 0 0 8.804779714759877e-06 +2640 0.00030463649508484335 0.00037642504062787764 0 0 0 4.562792911856669e-05 +2647 0.0002717764662591042 5.2779326114395495e-05 0 0 0 3.7910171509348595e-05 +1216 -0.0002416137504000611 0.00010815178753818491 0 0 0 -2.7462945487027167e-05 +2653 0.0002613213499677405 0.0005093909353635609 0 0 0 -3.5492205310150044e-05 +2667 0.00033763700612070107 0.0003838029434048122 0 0 0 1.2627210408610373e-05 +2675 0.0004577569533708783 0.0007192809524670836 0 0 0 -4.783534709129625e-06 +2677 4.0159430200436357e-05 0.00025777268400605316 0 0 0 -3.6253486660662696e-05 +2687 0.00027331931636668844 0.0004555896181958556 0 0 0 1.2022297217877095e-05 +2696 7.85341040065065e-05 0.0003196569936823064 0 0 0 4.01597546774762e-05 +2741 0.0003499384642435795 0.00044619538170459976 0 0 0 2.6839717843425945e-05 +2772 -8.359150347114386e-05 0.0001554475962305862 0 0 0 2.6383062994770306e-06 +2620 0.000216789281736854 0.00034453840991182044 0 0 0 -3.893084565685899e-05 +1186 4.012844404472377e-05 -0.00011855996078354451 0 0 0 -4.6672594578465276e-05 +2854 0.0003281145222717442 0.00038253705434922636 0 0 0 1.9940837501871824e-05 +6767 -0.0001509530829579067 -9.13158439315993e-06 0 0 0 -3.241744442760167e-05 +213 -0.00020753544503542622 -7.519132579193855e-06 0 0 0 -4.342881857890366e-06 +9622 0.0005159607218913121 0.000752268005684986 0 0 0 9.76956813297395e-06 +2947 -0.0001950709357507639 0.00013976332240050912 0 0 0 2.7020166967328397e-05 +2959 0.00048081697014227957 0.0006804706973988277 0 0 0 -9.408448614382374e-05 +2968 1.5057256495002153e-05 0.00012789035757197458 0 0 0 -3.58987938513074e-05 +2308 0.0004679459997847245 0.0006859529117638727 0 0 0 -1.5369595422958396e-05 +2216 -0.00017243776016560744 -5.187749806876464e-05 0 0 0 7.5711018357862e-06 +3045 7.71045556545352e-05 0.00030892682738915177 0 0 0 -1.866273376126237e-05 +7440 0.0005610077609802433 0.0001337775181831669 0 0 0 0.0011698309274195272 +3074 0.0003776289740624951 0.0005072089598656121 0 0 0 -8.76131401038982e-06 +3098 0.00032477136513654276 0.00048707618339436433 0 0 0 -1.0556086159961903e-05 +1054 0.000520365208168295 0.0007469984527055404 0 0 0 1.2433723096847576e-05 +3169 0.0004994531699045108 0.0007230402346679194 0 0 0 -3.085125712763422e-05 +3189 0.0003522697866800814 0.0006297499225934788 0 0 0 -2.2441097879859614e-05 +9686 0.000384519271718453 0.000618875874934974 0 0 0 2.7096121037399073e-05 +3362 0.0003694689717312254 0.0005531496751609397 0 0 0 -6.567363314475203e-06 +3016 -0.00023866124378001485 9.126319520848793e-05 0 0 0 1.3977931317878192e-05 +3454 -0.00021641384985196055 0.0001150113370852633 0 0 0 8.539024524388279e-05 +3457 0.0003773458371527532 0.0005568668889811291 0 0 0 4.6057649168458075e-06 +3556 0.0004694682681910654 0.0006303538630733227 0 0 0 8.795536157274719e-06 +3582 0.00023063474228935982 0.00021440072727483615 0 0 0 3.9663013385386125e-05 +3602 -0.00013879758601613345 -3.320647377443078e-05 0 0 0 2.943493168413151e-05 +3629 0.0001905441891008918 9.907775897262222e-05 0 0 0 -3.727381442689663e-05 +3659 -0.00016407293840770248 5.862229520822022e-05 0 0 0 1.2460334024422126e-05 +3693 0.00023758282430189913 0.0003515701592836684 0 0 0 -5.346094365959141e-05 +9764 0.0003687825325028782 0.0005397010174378906 0 0 0 -2.604629497935471e-05 +3745 -0.0005023330777913317 -0.0008655393122830316 0 0 0 0.0002141924460920608 +3753 -8.417828804287664e-05 0.00017189002629156963 0 0 0 1.3070644428263755e-05 +5062 -0.00016034371407320087 -3.331358872577462e-05 0 0 0 6.885557911499374e-06 +3766 0.00036838684002804556 0.0006347215045441837 0 0 0 1.2216375346305443e-06 +3810 -0.00010212900175693041 0.00017705443824029188 0 0 0 -4.914384582674134e-05 +4776 0.0003178243821959217 0.000530717934898502 0 0 0 8.478191589342883e-06 +3836 0.00013199182663796343 0.00032159830205866853 0 0 0 -4.3593128525338586e-05 +3878 4.258502906486389e-05 0.0002613967956262867 0 0 0 -0.00013637102429897138 +3925 0.000399549568303426 0.0006786501106272866 0 0 0 0.0001006674873876093 +3950 9.095627284160329e-05 0.000325161428373368 0 0 0 4.357032636865737e-05 +4006 0.00022095940774255644 0.00043947639280761424 0 0 0 1.601975852753147e-05 +4032 0.00030340320972412245 0.0006419219929690144 0 0 0 1.2687807631352221e-05 +5261 0.00019533512746291168 0.00032115868055083177 0 0 0 5.133348169440572e-05 +4096 0.00015974941322353345 0.00020431514215259566 0 0 0 7.610180511624477e-05 +4105 0.000433841693970105 0.0005629804522427637 0 0 0 -3.066014245872938e-05 +4178 0.00019487259802475915 0.0003622788538513152 0 0 0 -2.3683771555460682e-05 +4210 0.00012767625940795 0.0001720588608987489 0 0 0 -4.083877577878209e-05 +4288 0.0002175582172778306 0.00012243167297073247 0 0 0 -2.28213131079421e-05 +4292 0.0004063148053613652 0.0006282485023117893 0 0 0 -5.931229749507937e-06 +4299 0.00033475285538108097 0.0004454527340561777 0 0 0 1.072121928835342e-05 +3874 9.195238446229939e-05 0.0002990686471087416 0 0 0 -1.6081985385115227e-05 +4303 -0.00012591213242936023 8.358945434519072e-05 0 0 0 7.74200298513816e-06 +520 -0.00023414305192313978 0.00012003982716610722 0 0 0 1.3491258897920065e-05 +8709 0.0005328124784861011 0.0007210816935429696 0 0 0 -9.45167207925953e-05 +2590 -0.00021454067474129874 0.00010794417603381556 0 0 0 -6.4022324924317615e-06 +4025 -0.00015265336823821048 -1.1678045933008078e-05 0 0 0 4.925808600817755e-07 +9914 -0.00015744198345181345 -2.058745049892441e-05 0 0 0 1.304736551315463e-05 +4441 5.194416977005929e-05 0.0002690188088457725 0 0 0 1.6941452621291347e-06 +4449 0.00043894960703091815 0.0006649279807108961 0 0 0 -5.229126372938276e-05 +4487 2.7746473657433877e-05 0.00026745253417831383 0 0 0 -1.4296870640212474e-05 +3109 -8.465097759965203e-05 0.00011456855647004203 0 0 0 4.1799521526391094e-05 +4548 -2.5724579213215154e-05 0.00021825318194144174 0 0 0 1.2453487930248416e-05 +4554 0.0003391643174305401 0.0003784150887196955 0 0 0 1.7531013012508167e-05 +4601 0.0003528860676846239 0.0005189928495916284 0 0 0 1.401523502008716e-05 +496 0.0005986451795018574 0.0008331897392147472 0 0 0 -3.768198710793517e-05 +2849 -0.0002501070576432438 7.993075270138228e-05 0 0 0 4.260412343162698e-05 +4688 5.012617810300284e-06 0.00023576308992532145 0 0 0 2.5806832205861237e-05 +4772 0.00012840127498230686 0.00042402588192987437 0 0 0 -2.722516674260357e-05 +6346 -0.00010685286751802017 -4.216408047864443e-05 0 0 0 2.872803320419195e-05 +4784 0.00012833267515783723 0.00023542250247375948 0 0 0 -2.905421655264353e-05 +5212 -0.00010127306831509686 -5.4690320843911064e-05 0 0 0 -7.809613316595742e-05 +4884 0.000268487481632481 0.0005801284932669195 0 0 0 -7.349747244214684e-05 +4940 -1.2308590500574166e-05 0.00024806707846475556 0 0 0 -5.5389073909978596e-05 +4961 0.0003178965905798543 0.0003795885759802019 0 0 0 -2.2772970255284246e-05 +5043 0.00043894807183921414 0.0005831287267052129 0 0 0 3.728663488638467e-05 +5083 0.00046719182743663504 0.0007434285788608674 0 0 0 2.676951952375216e-05 +5089 0.00018744751807965726 0.000332469000907982 0 0 0 4.1040047101457985e-06 +2560 7.356314816039403e-05 -0.00015018598444312 0 0 0 -7.832017211053547e-07 +5178 1.9815132369476033e-05 0.0002759087705013763 0 0 0 -5.7231034380390714e-05 +1637 -6.414195747422609e-05 -4.236530824439629e-05 0 0 0 6.242679109601808e-06 +5235 -0.00014573782962933399 -1.2781070373242596e-05 0 0 0 -9.741141867206032e-06 +7639 0.00022591754521033593 0.000365133445984269 0 0 0 -8.076366283366552e-05 +5357 6.647895216065311e-05 0.00023538302524421664 0 0 0 -0.0001003884322628516 +5380 0.0003897860241638707 0.0005396713363130642 0 0 0 -1.7301816170549723e-05 +5500 0.000334299677558778 0.00046751192222040593 0 0 0 -1.541790366396356e-05 +5580 8.874193663485558e-05 0.0002471918090871103 0 0 0 0.0001000748240673747 +5624 0.0008188586519974879 0.0007438099162016791 0 0 0 3.834250666278245e-05 +5724 0.00032630302305099455 0.0006331045902481842 0 0 0 1.4960880918323981e-05 +5946 0.0003143725029242573 0.00048089799516734126 0 0 0 -6.296224741825075e-06 +5948 0.0003237089208209299 0.0004288350000516577 0 0 0 -1.0784322821377708e-05 +5950 0.00031712564139013775 0.0005212628439629529 0 0 0 1.6252941715333253e-05 +5955 0.00012392099444769806 0.00029916206013088276 0 0 0 -2.9520289192378814e-06 +5965 0.00033110119452489856 0.0005092382738440574 0 0 0 -2.4059361631788422e-06 +5972 0.00016463204655921612 0.0003791597774908406 0 0 0 -3.7565316317997623e-05 +6015 -0.0009953350906135579 0.00030416965760014406 0 0 0 -0.0009723754477876787 +6019 0.00045595300097984944 0.0006977832858460438 0 0 0 -2.8140789702841127e-06 +6032 0.0003971724293836595 0.0006182535238271585 0 0 0 -2.434110069840849e-05 +6088 0.00020733663948747645 9.896024427450831e-05 0 0 0 -7.133639867074963e-05 +6134 0.00022995442557088253 0.0004254053449570086 0 0 0 -2.7177194881542077e-05 +6152 0.00022629566494300685 0.0003511376724280531 0 0 0 2.754935318006329e-05 +4458 0.00048683869024809335 0.0007794075022580321 0 0 0 -1.724249257500825e-05 +6259 0.00020517845131560374 0.00015604783806570015 0 0 0 -5.5701630071913284e-06 +6310 -8.703236532982573e-06 0.0002343021471967189 0 0 0 -9.65968630934303e-05 +6312 0.00010429342677102985 0.0002768218994976076 0 0 0 -7.076829682329893e-05 +9819 0.00022439574474825372 0.00035558221060488077 0 0 0 -0.0001785454039085728 +8107 -0.00012229440497231025 0.000110462546056466 0 0 0 1.0060091058790269e-05 +6425 0.0003733975957192274 0.0005772621935010474 0 0 0 -2.543129224249783e-05 +6452 7.0645148326661985e-06 0.00025294312836913183 0 0 0 -0.00010976144862055521 +6480 0.0001596402035011312 0.00011929070196916746 0 0 0 -0.00010317051459695578 +6565 -0.001507875795158543 0.0005656648736299547 0 0 0 -0.002727302749635967 +339 0.00027512889610628317 0.0004884932406958295 0 0 0 -1.4606828408764745e-05 +6549 -6.024119251219823e-06 -0.00012853594796872298 0 0 0 -0.00015692072413446407 +6625 -6.262072006304368e-05 0.00023107579321634853 0 0 0 -4.2175592803229155e-05 +6700 -0.00024852002297668914 0.00012670290584194447 0 0 0 -9.670092326852131e-05 +6769 9.909249372456757e-05 0.00017954766009831637 0 0 0 2.9255500458495195e-05 +3149 -0.0001715007990102399 -2.3486890196773346e-05 0 0 0 -1.00729399858566e-05 +6911 9.66006991209754e-05 0.0003271388712420223 0 0 0 -4.1998912053209615e-05 +6958 3.595315560739276e-05 0.0002764061772780191 0 0 0 -8.171292230450064e-06 +169 0.00021473014999081333 0.00023327658160538569 0 0 0 3.498696577994546e-05 +7034 -0.0002034049245172617 0.00015879543462463374 0 0 0 6.41000618691988e-05 +8756 -6.161401053872535e-05 0.0002097028318519956 0 0 0 -6.915190396049629e-05 +7099 1.3710872974410251e-05 0.00025894811503636753 0 0 0 -5.711324760747309e-05 +7153 -0.0002237277304227136 0.00011729655282852475 0 0 0 -7.759900019692332e-05 +7155 3.2095687479827195e-06 0.00022929847461629723 0 0 0 -2.1155387677175775e-05 +7159 0.0003225398844150961 0.0003842191517018136 0 0 0 3.0687254429930574e-05 +7209 -0.00020853682274238285 1.1883649323092673e-05 0 0 0 0.0002680833273535225 +7213 0.00026196349056973613 0.0005285891912023068 0 0 0 4.9422194245776137e-05 +9644 1.919118448235287e-05 -0.00015373505271285825 0 0 0 0.0001527973658673672 +7231 -1.0449684919477692e-05 0.0002832428785984444 0 0 0 5.154078141181408e-05 +6334 0.00020025136366699623 0.0003718064214898786 0 0 0 -1.8927148138889637e-05 +5346 0.00022792172796985352 0.0003837972564078695 0 0 0 4.332673589484977e-05 +7373 0.0004401709887859789 0.0007188682639969206 0 0 0 -2.9725486986318917e-05 +7407 0.00035962547436662213 0.0005313008488904244 0 0 0 4.847703397168813e-06 +7481 0.00028596269748143254 0.00019820162323241526 0 0 0 -2.6416266586440452e-05 +7486 0.0003507118098638328 0.0005445853759258875 0 0 0 -4.930546233844927e-05 +8688 3.951200666012862e-05 -0.0001612322923956631 0 0 0 0.00010963360338839746 +7680 9.788274256885903e-05 0.00033906467879851146 0 0 0 -5.285808096293854e-05 +7743 2.2910313393756414e-05 0.00019957164586766087 0 0 0 -1.59761728457411e-05 +7783 -8.755462537894468e-05 0.00018467866943619926 0 0 0 -4.701812489632857e-05 +9820 9.524785370472431e-05 2.977859176048443e-05 0 0 0 -3.31210079896023e-05 +7820 0.0004083643300582584 0.0006216992609796535 0 0 0 3.2766709957867416e-05 +7860 0.00032394070260697146 0.00039520920550702453 0 0 0 -2.3155054998158305e-05 +7874 -5.6387646060313856e-05 0.00023259499664855142 0 0 0 -9.646144454459357e-05 +7898 -4.550729425628547e-05 0.0002554020627473716 0 0 0 -8.275336723912356e-05 +8006 -0.00010726012869458762 -1.4120519165027583e-05 0 0 0 -0.0005720811447223626 +8024 0.0003289888926122691 0.00042672829512770247 0 0 0 -3.173473869656784e-05 +5176 5.221001770384014e-05 0.00026345259276123545 0 0 0 -6.2575796729164684e-06 +8054 0.0003074326271462315 0.00047361176382385516 0 0 0 -3.004936395082132e-05 +8082 0.00022394829891664433 0.0004780048610801621 0 0 0 -6.342080354995531e-05 +8117 0.00020212088960713435 0.00036488016033673064 0 0 0 4.53555545547535e-05 +8121 0.00015718112252847218 0.0003757728909636794 0 0 0 -1.5952659086413005e-05 +8126 0.00034212003603648186 0.0005447748255688338 0 0 0 3.479916371081938e-05 +7665 0.0004331923086634586 0.0007294467643716121 0 0 0 -3.5087069103634197e-05 +2283 0.00013414139111780245 0.00011079849873888115 0 0 0 0.00015035546828686045 +8221 0.00034251631415267833 0.000580691669025007 0 0 0 -8.104174435058079e-05 +8230 0.0018764558864958181 4.575749821811003e-05 0 0 0 -0.000643149827779468 +9459 -0.00015315846444446422 6.238429155260093e-06 0 0 0 7.178001946017358e-05 +9844 1.452235129044462e-05 0.00023765611565787424 0 0 0 -7.604031982806323e-05 +8330 0.0003236320184517042 0.00040090997678819896 0 0 0 5.518910307673549e-05 +8472 0.00032524041995832796 0.00042912095710394364 0 0 0 1.0066730929455569e-05 +8555 0.0003250300225257845 0.0004922674319349309 0 0 0 -1.4239523537769832e-06 +8607 0.00025893082652314907 0.00036136894315565274 0 0 0 4.488567435017659e-05 +8615 -2.030959295376225e-05 -9.17245618427161e-05 0 0 0 -8.418689900831886e-05 +8629 8.31041816188818e-05 0.0002635314548271487 0 0 0 7.516839603800164e-06 +8633 -7.648858441349582e-05 0.0002358238913974215 0 0 0 -6.181396435770075e-05 +418 -0.0001619316861416913 -2.083380654859723e-05 0 0 0 -7.88166755503352e-06 +8799 -1.0453012095939393e-05 0.00031335005350412713 0 0 0 1.7805631283380015e-05 +8801 -7.247429427277197e-05 0.00025249741436150243 0 0 0 -9.51007668301945e-05 +8813 4.215688835333178e-05 -6.732097433162199e-05 0 0 0 -5.909502075412852e-05 +8819 -0.0015326080903554297 -0.0006427053341440564 0 0 0 -0.0001575932029232814 +9347 7.324615311545411e-06 -0.00020125105665875367 0 0 0 7.196846030562932e-05 +8836 7.149403345871559e-05 -0.00017878957322983556 0 0 0 -0.00017170690767322143 +1840 0.0002631945538863234 0.0002946844237231301 0 0 0 4.674345556446648e-05 +8867 0.0003412554789716584 0.00046991263372355276 0 0 0 5.055794048773239e-06 +8875 0.00012108318637801699 0.00020653067812888843 0 0 0 -9.125951979414169e-05 +8879 0.00018249786650443014 0.0003640961308637394 0 0 0 0.00015533140155561407 +9812 0.00035512779880244054 0.0004320954912088615 0 0 0 -2.2369837799671234e-05 +8944 0.00033807830383128984 0.0004984382670305484 0 0 0 7.535585460902508e-06 +9750 0.00023782031106136012 0.0004487798496394733 0 0 0 -9.896558293299425e-06 +9942 1.8618445035006592e-05 6.415133195628612e-05 0 0 0 -0.00010892836851906628 +9020 5.351127100782373e-05 7.87078439262802e-05 0 0 0 0.00030469334168926285 +9528 0.00026552155572041387 4.9162847570820014e-05 0 0 0 0.00012497883278356336 +9063 0.00028184801378948986 8.287310638250365e-05 0 0 0 -4.211931494342378e-05 +9101 -0.00014221546577990405 0.0010127084012797013 0 0 0 0.0005385603239622246 +9134 0.00036023177958776736 0.0005772082054784529 0 0 0 5.44904890453234e-05 +9137 0.0007247147029532723 -0.002000070290813886 0 0 0 -0.002556206566910575 +9154 0.00026203557240087326 0.0001720177637480187 0 0 0 -3.551278862958487e-05 +9198 0.00018479644894651292 0.0004213681695768876 0 0 0 -5.706799089360235e-06 +9220 0.00012468692904522865 0.00022919398760191896 0 0 0 6.706546439653853e-05 +9248 0.00021361504269073415 0.0001195122505101916 0 0 0 8.347277908801677e-05 +9253 -0.00011936665254242673 -4.336757012237114e-06 0 0 0 7.386320916240333e-05 +9327 8.667879753808794e-06 0.00030959135480671695 0 0 0 -3.470849774077842e-05 +6464 0.00012661807638800058 9.110543880516217e-05 0 0 0 0.0003929942012977927 +9362 0.0002468679244353883 0.0003922962710537523 0 0 0 0.00010451554776535422 +9367 2.5838151338081316e-06 0.0002065673873377416 0 0 0 -1.9495092271208326e-05 +9378 1.715733919021764e-05 0.0002532662088476948 0 0 0 -0.00011319802327523116 +9427 0.00020862255317689467 0.00035433205392971335 0 0 0 2.9684956941340018e-05 +9441 -5.783473362032646e-05 4.053464248344429e-05 0 0 0 2.0064296976224523e-05 +2054 -1.70219093237898e-05 -0.00012498963624396243 0 0 0 -1.4993491406170728e-05 +2761 0.0002593965621166321 0.00042610168218661787 0 0 0 -6.279017761556844e-06 +9512 0.00042149707842624234 0.0005529462138134037 0 0 0 4.056385305705512e-05 +4422 -0.0001330644687662267 7.272911054504918e-05 0 0 0 4.589603020974737e-05 +3212 -0.000228580636510771 0.00010246140033711996 0 0 0 2.7925098599625985e-06 +4805 -0.00020056637010332391 0.00011499102060825575 0 0 0 2.3278076048464614e-05 +262 -5.5641080602995434e-05 -5.152831503583771e-05 0 0 0 -3.1589909813525894e-05 +8515 8.662665336792943e-05 -6.540033467327476e-06 0 0 0 -9.578595946590918e-06 +4743 -0.00020045228408858366 -1.8638906778154424e-06 0 0 0 9.713908856767493e-06 +5386 0.00013242398308711616 0.00016894357604793641 0 0 0 -0.00018526814156271908 +3737 0.0002200078679871616 0.0004503332401585311 0 0 0 -3.896828400010064e-05 +4431 5.8444480991487374e-05 0.00028194128085503597 0 0 0 -2.1405311947906646e-05 +9508 0.0001657039596558867 0.00028494615867295466 0 0 0 -0.00010258958133681472 +7705 0.00021991773327389614 9.177322301025106e-05 0 0 0 0.00011550743208157866 +3603 0.0002724886234648557 0.0002615271013796519 0 0 0 -1.567136830798999e-05 +8137 0.00016590155053315762 0.0003770410218705016 0 0 0 -2.2198143130285283e-05 +9467 0.00013567349396423535 0.0003387774416564883 0 0 0 -7.230597750528073e-05 +7849 0.0002593059042780429 0.0003537065475146705 0 0 0 2.8662871622694808e-05 +9976 -0.0002171704809064922 0.00011168965280566164 0 0 0 1.504174466746088e-05 +8557 0.0005223040471818235 0.0008293749014234723 0 0 0 2.8644663631012928e-05 +3123 0.0005247281556802124 0.0007998704258770336 0 0 0 -1.6017145638900773e-05 +6585 0.000272744750849017 0.00031255213499015996 0 0 0 -1.0872301294173218e-06 +8885 4.917561116923701e-06 -0.00011202808227820152 0 0 0 -0.000157479793334869 +2151 0.00019775985482159135 8.125427536908617e-05 0 0 0 -0.00011836968787791764 +2988 0.00029695824906737425 0.0003644247303005279 0 0 0 -1.577027800179737e-05 +6665 -0.00020503390698316335 -9.533348563376432e-06 0 0 0 8.659967651043851e-07 +11 0.0004471718392787778 0.000908318416681483 0 0 0 2.745082298254277e-05 +44 -6.0114247064074786e-05 -0.0001453840454590869 0 0 0 3.722099122704893e-05 +9010 0.000645255507140354 0.0008883345196667057 0 0 0 -8.737244025228052e-05 +280 -0.00036650022908820925 0.0005063741559318215 0 0 0 3.9016604400011634e-05 +360 0.00020719609767696289 0.00018694400248650073 0 0 0 2.6213895647897906e-05 +416 0.00014398975904497783 -1.4811631792216694e-05 0 0 0 1.5907328922551832e-05 +425 -4.41812305260647e-05 0.0002443250802956925 0 0 0 0.00012238778895938394 +449 0.00023034510495903538 0.00013684997772476072 0 0 0 3.395656368582265e-05 +481 -5.771450967728166e-05 0.0009286367785559667 0 0 0 -8.255729975762623e-06 +490 -0.0006303726061159409 1.2244978775663583e-05 0 0 0 8.581309187113812e-05 +9635 0.0004866142439472374 0.000584702576250587 0 0 0 -8.76102522591872e-06 +530 3.028442064548305e-05 0.000422563596382447 0 0 0 -8.070238710820598e-06 +704 -0.00017362236921831053 0.00036809397629358656 0 0 0 9.955023381602533e-05 +737 -0.00020421428433507836 -0.00015704101247817742 0 0 0 0.00014570007570587648 +842 -0.0005857742420250004 5.6723339671432026e-05 0 0 0 0.0001878743036549335 +926 0.00021038147439541845 0.00030163647735057577 0 0 0 2.7100043002567464e-05 +946 8.878589521707538e-05 -0.00018076044906683667 0 0 0 -6.943665698476498e-06 +983 7.345472098719827e-05 0.00015360561486085382 0 0 0 -1.4819782262259526e-05 +1032 0.00025584817590412295 0.0002966301031535926 0 0 0 1.8076525092624988e-05 +9361 -0.00021046358022531558 0.00037086409094829495 0 0 0 -0.0001866396637044492 +2930 0.0005316460153020232 0.0005522425320564358 0 0 0 -5.451148698268405e-05 +1123 0.0004545366087329447 0.0005776591957805312 0 0 0 -1.927183199388221e-05 +9474 0.0005831124333250305 0.0007696904306035676 0 0 0 -0.00010885546900772636 +1170 -1.3786943645044467e-05 0.00035902744581673107 0 0 0 -1.2025827451133103e-05 +1247 -0.0006340394378271074 -4.073869287343778e-05 0 0 0 8.218343457435904e-05 +1303 -0.00013901446825272505 0.000204360567871054 0 0 0 0.00034624678416454133 +1313 0.0005998860048543182 0.000793612905573255 0 0 0 -7.803048094862051e-05 +1353 -6.914870357725843e-05 0.00020442999306015725 0 0 0 -0.00025437420047079304 +1377 -0.0005353988369515256 -4.340710267266628e-05 0 0 0 5.458198975157131e-06 +1574 5.359746190080406e-05 0.00019981675780402503 0 0 0 4.91662639480675e-05 +4406 0.000526609749741048 0.000599643933242868 0 0 0 -1.0027780349890196e-05 +1707 -0.0004851883214055574 0.0002527085543264046 0 0 0 0.00036800968074820323 +1722 0.0003788734736233129 0.0003250637522217812 0 0 0 3.005518050176946e-05 +8081 0.00042931894318711753 0.0005368996295972206 0 0 0 6.571335327941452e-05 +1806 -0.00041681113154145216 0.0002514385182377781 0 0 0 0.0005414782355291952 +1807 -2.7554213270212936e-05 0.00043051492393241886 0 0 0 -3.912998255020662e-05 +1825 -0.000287728237924895 -6.673457474647496e-06 0 0 0 -2.0688363553507634e-06 +913 0.0003976868047658064 0.0005072242834691357 0 0 0 1.9299373972075506e-06 +1876 9.163007969909737e-05 -0.00020429500630172434 0 0 0 -1.4951788344750368e-05 +2003 0.0005788521618424374 0.0007870709738869356 0 0 0 -4.006885960513745e-05 +2022 -0.00045405229043622036 0.0002906159213667897 0 0 0 0.0001108609555672345 +2031 -0.00010015454354122129 0.00029052431363475625 0 0 0 -0.0001255803194967098 +2056 -5.359553749939976e-05 0.00044205859951673324 0 0 0 -7.477700709002315e-07 +9940 -0.000567814131286585 -0.00027029903374586563 0 0 0 1.639795668526614e-05 +1201 0.0005468397384682894 0.0006233136338463167 0 0 0 -1.839232220811161e-06 +2847 0.00042048928351070544 0.00040656820361429985 0 0 0 1.1788294849397107e-06 +2240 -0.00030461629090130723 0.0007312545637421165 0 0 0 0.00013862611978117796 +8859 0.00033300350876346474 0.0003790521524940943 0 0 0 -1.225546026450714e-05 +4388 7.514508276952645e-05 -0.00022377475797305787 0 0 0 4.0277407819686564e-05 +1703 -0.00020346669657020432 0.00020857700420645915 0 0 0 7.534654931346855e-05 +4685 0.0006753395543095134 0.0008826070678918593 0 0 0 -6.36009616759651e-05 +2427 -0.00038734009549707917 0.00018833238663754293 0 0 0 0.0006346001471620373 +2464 0.00020749600575198474 -0.000142120760392414 0 0 0 -3.5295606353445766e-05 +2469 0.00029003917611838075 0.00034776485399191405 0 0 0 3.259781946025318e-05 +1435 0.0005550463602308467 0.0005717225303619745 0 0 0 2.0962794904961353e-05 +2550 0.00011347755924076192 -0.00017620544323309457 0 0 0 1.131238214217809e-06 +2553 -0.00046142488596553563 0.0005553454666925719 0 0 0 -0.00011253326796555816 +2565 -0.00047304728626826017 0.00021157191048280127 0 0 0 -0.00023673840683057835 +9169 0.0006866055412162035 0.0009228798697603768 0 0 0 -0.0002025360397004425 +2638 -0.00045373924502523457 0.00010563109926708108 0 0 0 -0.000220339720223849 +5805 8.533739463987437e-05 -0.0002387974658505523 0 0 0 3.57064488496607e-05 +2915 0.0005865404327803176 0.0007413265459957299 0 0 0 4.8525176273563136e-05 +6524 0.0006610362009889278 0.0006160566970106337 0 0 0 -0.0001819043261066806 +2958 -6.118248925268604e-05 0.0009085988466506788 0 0 0 0.00015136057983405259 +2977 -0.0007504620552689994 -0.00010441877001445059 0 0 0 0.00017584526456133984 +712 0.00053205676274546 0.0005899370422008452 0 0 0 1.6932418362034675e-05 +3015 0.00011755886538082847 0.00023858846526245194 0 0 0 -0.00032835422605351916 +3024 0.00015047108159504575 1.4798260225807372e-05 0 0 0 0.00017141198577939608 +3066 0.0005826808552627596 0.0006305736444188325 0 0 0 -3.225165297069694e-05 +9021 0.0004354940781857364 0.0005601809410269358 0 0 0 2.7313122852343625e-05 +3170 -1.8210104189531704e-05 0.0001646791700393237 0 0 0 0.00018301995176461686 +3276 0.0001416981067359188 -0.00014179828619915406 0 0 0 6.459802085866157e-05 +549 3.1379766942631696e-05 -0.00023275793078601892 0 0 0 6.181593108471812e-06 +3288 -0.00046363456119791587 0.00027646555591185815 0 0 0 0.0005697589816339405 +3301 8.455624253322196e-05 -0.00019731491821570595 0 0 0 8.123239675316688e-05 +1725 2.254358572346196e-05 -0.0002478312682363827 0 0 0 -9.147839812754656e-07 +7914 0.0015572496539984554 -0.0015419465899833328 0 0 0 0.0003167686390885242 +8606 -0.00019096774134574077 0.00024023207054149395 0 0 0 -0.0003233850686534827 +1981 0.00038188789235319744 0.0005283865542341494 0 0 0 1.3332741018176642e-05 +3736 -0.0005820515002876787 0.00011525478619274694 0 0 0 1.876096870928548e-05 +3748 0.0001699557948311447 3.2362700170430064e-05 0 0 0 2.054782772959767e-05 +3749 7.357201693066423e-05 -0.0002501402570221064 0 0 0 -1.0088103512749108e-05 +3750 0.0003579041593039217 0.0002548182322755862 0 0 0 -5.848207181629692e-05 +3785 -0.0005804397542034811 -3.560230560451107e-05 0 0 0 -0.00043263644011943414 +3933 -0.0005710572359565255 0.00037400466857728386 0 0 0 -0.00015089588123387823 +8049 0.0003979134071205104 0.0004047934524826622 0 0 0 2.0790528470049084e-06 +4058 -0.0004534376089577972 0.0004902627806279531 0 0 0 -5.7218128868603275e-05 +9961 -0.0005183256296512813 -7.914659928539173e-05 0 0 0 6.58204334363361e-05 +4159 0.00024060977881242145 0.00021505045966434586 0 0 0 1.4580167809808283e-05 +3281 0.0005923053520105147 0.0007938374175792887 0 0 0 2.0888653088384293e-05 +4232 -0.00028412029918484363 0.0004038554774076116 0 0 0 -0.00016624113518714113 +4277 -0.00048088394389826953 2.963038009970993e-05 0 0 0 4.131122996280742e-06 +4307 -0.00016634233349721892 0.00023595284140285981 0 0 0 0.000913633300362254 +4340 -0.00018752595766658933 0.0005257396994115695 0 0 0 0.0002316286651253207 +4374 -0.0004062510100013555 4.0969456157517114e-05 0 0 0 4.441952462542336e-05 +4447 2.667261522677149e-05 0.00018096170299457902 0 0 0 -1.185861536321442e-05 +8271 0.0003612822159959734 0.0003241076639740252 0 0 0 5.910893870483233e-05 +4476 0.0005765981731075668 0.0007583011588260778 0 0 0 -5.2660026552607214e-05 +4572 -0.00014980780719753926 -0.00017477582823755816 0 0 0 -8.978039000894385e-05 +4605 0.00012135781508896642 -0.00017113770362963136 0 0 0 -3.895913153423657e-06 +3964 -0.00017169566743732126 0.00029020400264761803 0 0 0 7.475411004590472e-05 +727 0.00046524007932104687 0.0005519347297227634 0 0 0 -1.2325387433678807e-05 +4699 -0.00013110593150102528 0.00018957693716618393 0 0 0 0.0008836121837830311 +3713 -9.288824524593866e-05 -0.00018991521759393 0 0 0 8.018069393132308e-05 +2855 0.00042900235496107344 0.0005116971200404039 0 0 0 4.11584414449955e-05 +4865 -0.0003855676083256796 2.229100113604589e-06 0 0 0 -0.0007710673377793575 +1644 0.0004687432645406441 0.0006075999700643493 0 0 0 8.82076132286611e-05 +5298 -0.0002481381203182636 -0.00020737874759154537 0 0 0 -0.00017068945020386943 +3834 7.290772296060303e-05 0.0011017479153668955 0 0 0 -5.5729781887962166e-05 +5385 4.619234140985408e-05 0.000140456660807645 0 0 0 -3.848147841565284e-05 +4073 -6.768125133799026e-05 -0.00018257490694838566 0 0 0 0.00018011415786846598 +5400 0.0006354483388760269 0.000858658218339545 0 0 0 -0.00027411663963689524 +5433 -0.0005013098593139966 0.00015361148282316923 0 0 0 0.0002995278094382517 +5559 -0.00036229437908666016 0.00016880476254035163 0 0 0 0.00013817638788325785 +1151 0.0001255500456198247 0.0006842305983834402 0 0 0 -6.66205078948348e-05 +5578 -0.00027561409390976607 0.0005943437911014655 0 0 0 -8.125489130445551e-05 +5606 -0.0007323210956346678 -0.00017668704703255683 0 0 0 0.0003349044194497257 +5642 0.0002995883687618564 0.00025291915964317476 0 0 0 0.00015241252673729329 +5652 -0.0002592826255149383 0.0006908083242701444 0 0 0 0.00012739132081966876 +5707 0.00017180044777714403 -0.0002010039891407859 0 0 0 -6.117748857765515e-05 +5712 -1.6828960211648441e-06 0.00028525000424451096 0 0 0 4.192442541371659e-05 +5757 -9.434394896995312e-07 0.0003880442002716349 0 0 0 5.0576272440688165e-05 +6595 0.0004105876061204002 0.0004169589682295424 0 0 0 3.755607681347365e-05 +5844 -0.00045264748185369993 -2.770264395562873e-05 0 0 0 0.00039760533169433024 +6687 1.7200657870985665e-05 0.00102553054994293 0 0 0 7.86921747346441e-05 +5895 6.127667500987428e-05 -0.00025959896014142886 0 0 0 -0.00011358792124061936 +5937 -0.0005636857697374635 -0.00013338545693672904 0 0 0 0.0005378784418688827 +5945 -0.000695711420395856 5.3543270932845954e-05 0 0 0 0.0004416877373250101 +9453 -0.0006588313492320396 -1.2568147331119556e-05 0 0 0 0.0006192239061358894 +6038 0.00012135680911129502 0.00017175772142682415 0 0 0 -0.00020828548703635084 +6116 -1.0286816178877358e-05 -0.0002656176701134457 0 0 0 -8.884009332806288e-05 +6192 -0.00039505490619441897 -9.135974004705904e-06 0 0 0 0.001065582306296109 +6983 0.0005102071513700114 0.0005994224611432387 0 0 0 5.7369075350694426e-05 +6252 -0.0007320391188606555 -0.00011878852586940987 0 0 0 0.00017154253500249394 +7891 -0.0002479885415848139 0.0005823829268689774 0 0 0 5.091082379246356e-05 +6410 -5.1568686721016015e-05 0.0003252804455946808 0 0 0 -0.0003052350728393268 +6458 6.5309036539319e-06 -0.0002390023024043531 0 0 0 -2.402283267469362e-05 +440 0.00028944315957705124 0.0004041737399914058 0 0 0 5.45312994730214e-05 +6485 0.00042842087632863655 0.0009687671369304279 0 0 0 0.00031831102253660794 +6490 -0.00021303808333357073 0.0004780100692789596 0 0 0 0.00010629675749603168 +3153 3.7039278073126404e-05 -0.00018230341416339323 0 0 0 2.3142306867668713e-05 +6558 0.0006028651941547693 0.000912772673957862 0 0 0 -0.00031440110664023393 +8947 0.000483299820200123 0.0005714538404180773 0 0 0 -3.060501029179437e-06 +6589 3.263096259771016e-05 0.0004491462189277791 0 0 0 5.728055780394876e-05 +6629 -0.0004912147297511892 0.0001415032289436842 0 0 0 0.00014243395282728145 +7278 0.0001601975500406324 -0.00026625516192715416 0 0 0 0.0005415564626820245 +6674 -0.00010587104449151722 -0.00021002108908682804 0 0 0 -0.00022082717549018165 +6858 -0.0005709414157847679 0.00032216145319055546 0 0 0 -0.00038500291570653703 +6871 -0.0004058498733568039 0.0002298729628369376 0 0 0 -0.0010100314818471856 +6887 4.5540802887741664e-05 0.0001625936918557166 0 0 0 5.413506148649324e-05 +6889 8.384429246309708e-05 0.000168876516634495 0 0 0 -0.00012757076179691727 +6941 0.00011910097591530208 -0.00014428807597125813 0 0 0 -2.991328257736203e-05 +6960 -0.0007060996475734759 -0.00012899031783196522 0 0 0 -9.708271859236804e-05 +7061 0.0006019037742853381 0.0008388958704884508 0 0 0 0.00015133912988200173 +7064 -0.0008593988153889048 -4.0485832579198804e-05 0 0 0 0.0009943462380967536 +7088 0.00027280947922194744 0.00025289532101990895 0 0 0 5.6469217336383114e-05 +3948 0.00031508593315493185 0.0003274853590030745 0 0 0 -3.342333575746172e-05 +7144 -4.70280537593787e-05 0.0001828760770881243 0 0 0 -0.00046272530257911155 +7246 -0.00026401695738206414 0.0001651196241043642 0 0 0 -0.0003262674907156354 +7260 -0.000583992535407501 0.0002281705377998981 0 0 0 0.0011270475275347784 +7270 0.00011405852275521554 -0.00011701238269817715 0 0 0 -1.131188946570837e-06 +2142 0.000522765872477503 0.0008097591569386914 0 0 0 -2.0170253055234877e-05 +7310 -0.0005644997938647496 -0.0001417507175473342 0 0 0 0.0004871235166756344 +7414 -2.4949128311968412e-05 0.00039284248772290445 0 0 0 -0.00011699964549992304 +7453 -0.00015859320898901476 0.0002034321819678594 0 0 0 0.0010255731337676305 +7463 -0.0007126385627185716 -0.00013020630440761934 0 0 0 0.0010205423464290364 +7544 7.882410123121267e-05 0.0001287256517862621 0 0 0 8.743681065040688e-05 +7577 -4.4801098077839226e-05 0.000398291188603706 0 0 0 -2.941356088825137e-05 +1016 0.0003319233065735574 0.0003975052964100381 0 0 0 2.1354128993602206e-05 +4525 1.1558344924207013e-05 0.0004018223819573205 0 0 0 9.594505178788431e-05 +7664 0.0002553978456724064 0.0001960473053832654 0 0 0 0.00021637235902307147 +7781 -0.0010427503668243498 -0.0007233041634678015 0 0 0 0.0018853005572318025 +7756 -0.00034416864922727215 0.00019303164179377858 0 0 0 0.0010140366107265846 +6351 8.715752487491533e-05 -0.0001647246964758144 0 0 0 -6.99889697825616e-05 +5071 -0.0003649520558113562 0.00041734167362286127 0 0 0 8.047022154675644e-05 +8051 0.00027248789458486535 0.0003401558569751896 0 0 0 -5.018844332480461e-05 +8057 0.00012961564825572267 6.516105625432406e-05 0 0 0 6.722023138252945e-05 +8072 3.24906514647515e-05 0.0001565322159120158 0 0 0 4.229185786407369e-06 +9629 -0.0005562714854312588 7.701506200697701e-05 0 0 0 8.141807800291428e-05 +8119 -0.00036649034327355874 0.0006003963093761356 0 0 0 0.00010445752100484866 +9466 0.0005507827833149375 0.0005843840048306478 0 0 0 6.160944206791818e-06 +8168 -0.0005918470273890688 0.00024521403195560575 0 0 0 0.000716385847235283 +8217 0.0005998076090974029 0.0006448238698305868 0 0 0 2.7148873519138802e-05 +8228 -9.60009616741823e-05 0.0004318029117529945 0 0 0 -7.650255473000087e-05 +8243 -9.526270278243232e-05 -0.00020269599490023248 0 0 0 -2.8213768917216122e-05 +5222 -0.00010307798343413547 0.00045144466911444615 0 0 0 0.00023866836068158024 +8313 -0.00024611145226440586 -0.00012215350119372067 0 0 0 1.5261854974897336e-05 +8479 0.00017719127211664879 -0.00019155835606784373 0 0 0 1.5621919931112933e-05 +9524 -9.290268307376563e-05 -0.00019405969987682488 0 0 0 -0.00019498262587825781 +4680 -0.0005394152931000125 0.00033424319836590044 0 0 0 1.2653223537640606e-05 +8601 -0.00010093816138723017 0.0012379919989040319 0 0 0 -0.0007171644408556212 +8611 -0.0002247784908642573 0.0006944086019266113 0 0 0 0.00011951440399236683 +8696 -0.0002697695925789073 0.0002652855963376051 0 0 0 -0.00036401010941282505 +8741 -0.000419484353462037 0.00037676203668995825 0 0 0 9.690169439951612e-05 +9074 0.0005522722904347534 0.0006387941367219704 0 0 0 -3.120652256360101e-05 +9086 0.00016693468135921797 0.00019298694266013872 0 0 0 0.00036351900932204165 +9126 -0.0001976228980683713 0.00020814363213072544 0 0 0 -0.00021661471914882405 +9130 -0.0006428957443894858 2.887934301312142e-05 0 0 0 0.0006119954632975702 +9136 -0.000301817111281095 -0.00043049613497095525 0 0 0 -0.0005285824153988407 +7307 0.0005595406779662063 0.0006191009840927505 0 0 0 1.7480072778222568e-05 +9298 0.0002251162849690962 0.00029409894411152113 0 0 0 1.963558119293914e-05 +9330 -0.0005992766928457377 -3.471922774461694e-05 0 0 0 0.0004268904796350744 +8267 0.00032829412327596027 0.0003523182189154544 0 0 0 -1.6234396781578543e-07 +2813 0.0003258304526234461 0.0003904355471873438 0 0 0 3.5473878294567985e-05 +2936 -0.00028316872459284155 -0.00011041313339070814 0 0 0 0.00024637379709713237 +3040 0.0003983653246393283 0.0005045028230782777 0 0 0 3.626524649169927e-05 +4434 0.0004297524616989879 0.0005191241179613366 0 0 0 3.9806025794157105e-05 +3763 0.00043870752464205955 0.000539141379921576 0 0 0 -7.886116088396885e-06 +2163 -6.536340912153719e-05 -0.00023079139887684295 0 0 0 -3.863577516146452e-06 +2651 0.00038487807690956076 0.00038931334554057545 0 0 0 -2.9145895471339684e-05 +2027 0.0003807801430331304 0.00038418692515332386 0 0 0 2.4239157332849727e-05 +5858 -0.000675840350922904 0.00013272066034464267 0 0 0 5.710916739764957e-05 +90 3.994629376081529e-05 -0.0001311662293121506 0 0 0 -3.5886690488087275e-05 +2991 0.0005395504932865935 0.0007259095805901902 0 0 0 5.4405627313281356e-05 +8827 0.00032141026909124137 0.00039836955509127674 0 0 0 -3.208946811314817e-06 +2601 0.00040830940365033216 0.0005180212884684244 0 0 0 1.6078904613168272e-05 +8270 -0.0008728780011995195 -0.00016905516040077763 0 0 0 0.002024974153593862 +4300 0.00037348210750714946 0.0003990271717881645 0 0 0 -6.312411633332272e-06 +2866 -8.713094812462273e-05 -0.0001794464896667028 0 0 0 8.192731209862894e-05 +9889 -0.0016893114424991755 -0.00023639546497711725 0 0 0 -0.0016953623105723245 +3 -0.0007301002172406056 -0.00010132069472551629 0 0 0 -1.2542307052596197e-05 +8229 -0.0005904872027483276 -0.00023098731931230104 0 0 0 -8.312951190726192e-05 +4364 -0.0006236472220080775 -0.00044899918815663296 0 0 0 9.388730188463264e-05 +409 -0.000588895102598985 -0.00024823115407537487 0 0 0 2.868170107823343e-05 +290 -0.0006509225592596561 -0.00030928115903765534 0 0 0 5.489318837151346e-05 +602 -0.0005895397807619695 -0.0001669422181668908 0 0 0 1.3087382468449712e-06 +6029 -0.0008560569563576721 0.00010248962660232504 0 0 0 0.0001172951745664852 +677 -0.0005890804437129318 -0.00042342667352029083 0 0 0 1.3998140678729302e-05 +2952 -0.000714658448613497 -0.0002572252538840269 0 0 0 -4.461240970891953e-05 +838 -0.0006668463904700856 -0.00011965146446037069 0 0 0 -1.3263919176755963e-05 +851 -0.0007443196809700177 -5.143331051737799e-05 0 0 0 -8.694398342541562e-07 +1060 -0.0006018004720114939 -0.0002614743130067642 0 0 0 -6.539787910012185e-05 +4424 -0.0007148678422792216 -0.0003222133296500463 0 0 0 -4.5781141225790096e-05 +1423 -0.0006638300923613257 -0.0001577353479279547 0 0 0 2.2587221765766665e-05 +8581 -0.0006702963732883465 -0.0001109745403523526 0 0 0 0.00012591978793029176 +1858 -0.0006891734902615848 -0.00015317100397310457 0 0 0 1.169840398825042e-05 +1869 -0.0007255757446356087 -0.0002720209567280617 0 0 0 -0.000129496249164346 +1890 -0.0006573166670365872 -0.00017839658512618447 0 0 0 1.479597941162094e-05 +9640 -0.0005810531375481447 -0.00035724929978402407 0 0 0 0.00023081679828793587 +2057 -0.0006518160418139254 -8.766332739396048e-05 0 0 0 7.65280023583966e-06 +2299 -0.0007150943298160355 -9.374686469555964e-05 0 0 0 1.5345914306231523e-06 +2452 -0.0007458646197431537 -0.000263416336487751 0 0 0 0.00010475481447932603 +2496 -0.0006116546528258122 -0.00019456774395041856 0 0 0 -1.2105639702110833e-05 +2769 -0.000631509451119901 -0.0002731172048982796 0 0 0 -3.870431430767225e-05 +2835 -0.0005455135415129122 -0.00024520660303634334 0 0 0 7.073377907844118e-05 +2857 -0.000603712922093202 -0.00016568232168212487 0 0 0 4.2932103740384936e-05 +3194 -0.0006893031990190442 -0.00017683793848495333 0 0 0 -4.7515396479705764e-05 +1261 -0.0007498206317219119 -4.9310406919321014e-05 0 0 0 1.4350987501302804e-06 +3329 -0.0006716615054877296 -0.0003013419128155998 0 0 0 0.00012558911105107896 +9739 -0.0007164900036304541 -0.0004489985906313246 0 0 0 0.00023367170484190892 +3404 -0.0007033969364692796 -0.00037925201792062175 0 0 0 0.0001230753988307373 +3460 -0.0006040051129184246 -0.0003979489994891729 0 0 0 4.608987786184979e-05 +3482 -0.0006300468582227564 -0.00019533790457123204 0 0 0 2.6130363544141926e-05 +3338 -0.000687571178858438 -0.0002899800654177453 0 0 0 6.497824927144992e-05 +7035 -0.000756662650764423 -3.32223179790325e-05 0 0 0 -1.1295278970119005e-05 +6102 -0.0005918040121360921 -0.00033484176034221416 0 0 0 -0.00019571191198107234 +3837 -0.0006906930254737344 -0.00018356117363765523 0 0 0 4.599493076665117e-05 +6630 -0.0007049220956386771 -0.00011470842303348762 0 0 0 0.0002447436550856432 +3960 -0.0005928890836392008 -0.00037817997946933894 0 0 0 -1.7833712979755127e-05 +3984 -0.0006413228489119007 -0.00023235592100539457 0 0 0 1.5985799958367702e-05 +4068 -0.0006749376540321509 -0.0004539584245264093 0 0 0 0.00013160128035654068 +4093 -0.000670532458233207 -0.0002632492673415912 0 0 0 6.936453021661406e-05 +4416 -0.0005723255843648611 -0.00018824740540258181 0 0 0 -2.708975795758131e-05 +813 -0.0006611487405006219 -0.00026105369131689985 0 0 0 2.9978002912244014e-05 +4430 -0.0006087893237736501 -0.0003587232590952987 0 0 0 0.00021587746014796542 +9780 -0.0006956406659568628 -0.000454363752079761 0 0 0 4.253327277393366e-05 +4486 -0.0007380071866221242 -6.759026864547598e-05 0 0 0 2.938387388364405e-06 +6461 -0.000638889155179494 -0.00013097224694324198 0 0 0 5.05678474808701e-06 +81 -0.0007179822967302097 -6.251815459946727e-05 0 0 0 9.230711209712156e-06 +9059 -0.0006014403728393308 -1.4301906701191534e-05 0 0 0 9.349291623282058e-05 +7288 -0.0005922157484670056 -0.0001387425240661364 0 0 0 0.0001193547902493419 +4847 -0.000671993242966908 -0.0002069731506136028 0 0 0 -6.15221884718569e-06 +4948 -0.0006050867473261225 -0.0002594588895150778 0 0 0 6.950417462426369e-05 +5100 -0.0005969663915846446 -0.00016138347079875057 0 0 0 -6.625053910015755e-06 +1062 -0.0006734661766063246 4.196817896208191e-05 0 0 0 -5.154266638841103e-06 +5362 -0.0005841284341018565 -0.00027745789708741244 0 0 0 0.00019563185360605299 +5424 -0.0006151901095936711 -0.00023873483954302347 0 0 0 -1.4304502548857892e-05 +5466 -0.0006455316093665863 -0.00017980865434645454 0 0 0 1.5972783834859008e-05 +7627 -0.0007029707693616118 -0.0002283185867585655 0 0 0 5.6083152461530154e-05 +5590 -0.0005371801074197455 -0.0002309928527449519 0 0 0 0.00014629110736542157 +5719 -0.0006911337738790301 -8.132058696731064e-05 0 0 0 2.6712426628238123e-05 +5793 -0.0006357753975965325 -0.0002692419574253473 0 0 0 5.537593363593936e-05 +668 -0.0007519204171419068 4.179476551296629e-05 0 0 0 3.654067359197333e-05 +5952 -0.0007590346163834597 -5.400682117196238e-05 0 0 0 -6.727186161873161e-07 +5977 -0.000657083250874894 -0.00020534845818461845 0 0 0 5.169812598302174e-06 +659 -0.0006760429055182174 -0.00011860197367055333 0 0 0 -7.475088079508234e-07 +5348 -0.0009060105716572322 -0.0006840960707566433 0 0 0 0.00036728670077966274 +9766 -0.0005252838241979928 -0.00026334476792915884 0 0 0 0.00024840045679503335 +6273 -0.0007277502415229288 -0.0003385834250946882 0 0 0 0.00012482936723764792 +6316 -0.0005932443125313452 -0.0002599118934185314 0 0 0 2.569601171396557e-05 +6477 -0.0007334531711094917 -6.833596505287648e-05 0 0 0 -1.890523475058489e-05 +9899 -0.0006626173312628508 -0.00030231713625390413 0 0 0 -0.00011884268608962854 +5666 -0.0006444087544436888 -0.00036036828971444657 0 0 0 0.00010574613145058436 +6733 -0.0005866740142119598 -0.00045302079856326656 0 0 0 1.5186340809846051e-05 +6761 -0.0005916997899364605 -0.00044024005242794393 0 0 0 0.0002020265042724603 +4205 -0.0006104320436644022 -1.1689180116825437e-05 0 0 0 0.00015913729094477948 +7028 -0.0005325731526111915 -0.0002216001570204137 0 0 0 6.155820397954117e-05 +7117 -0.0006731188391830918 -0.00046916435419723913 0 0 0 0.0001457539620286026 +3057 -0.000690294413460704 -0.00030596903334216595 0 0 0 -3.372309877680735e-05 +9948 -0.0006707290851004172 -0.00017775226351283277 0 0 0 5.369491773506826e-06 +7396 -0.0007049311210358556 -8.224997488852604e-05 0 0 0 1.4079043134935043e-05 +7466 -0.000698659482944253 -0.00030263852750112745 0 0 0 -0.00022944068925265197 +7483 -0.0007453693071311466 -5.943009202673579e-05 0 0 0 1.7619839676411455e-05 +7495 -0.0006637554379111891 -0.00019388242035097626 0 0 0 1.8729903197692123e-05 +337 -0.0005903671110738855 -0.00035945082235916696 0 0 0 1.2641976799331378e-05 +8854 -0.0005874718266229238 -0.0001766667209267844 0 0 0 -4.97885899765753e-06 +3725 -0.0005964941189754202 -0.0002870073222710723 0 0 0 4.446908575494417e-05 +7605 -0.0006194854354091302 -0.0003829919241466367 0 0 0 -0.00018133832772737385 +7703 -0.0005719108193540071 -0.000302926560779042 0 0 0 0.00024029851871299073 +6240 -0.0005890195828244967 -6.457079168631277e-05 0 0 0 0.00011031726986371945 +7735 -0.000678033061939253 -0.00016454894055444779 0 0 0 3.066202847134974e-05 +6044 -0.0006336143096926795 -0.00041713090001008576 0 0 0 -3.4499798225189224e-05 +7757 -0.0005577408041715496 -0.00020628385939215472 0 0 0 0.00028176231812573194 +7775 -0.0006591986214415254 -0.00036895537089940355 0 0 0 4.440678894139181e-05 +4654 -0.0006369258235030344 -0.00030870680964360634 0 0 0 4.927864310091503e-05 +2500 -0.0005613653177095827 -7.2382659957696855e-06 0 0 0 -2.0217823838480155e-05 +9268 -0.0007438546739312424 -0.00028225567869720583 0 0 0 0.00033179222695418404 +7005 -0.0006533527826185536 -0.0003118486966579893 0 0 0 0.00011579508298208816 +8279 -0.0006139802786711547 -0.00044571697380841794 0 0 0 6.239527706041931e-05 +8289 -0.0006028592259344654 -0.00028659805568907916 0 0 0 1.3710396978720347e-05 +8495 -0.0014735672309607898 -0.000938167572999945 0 0 0 -0.002234628843184652 +8699 -0.0005177927933666465 -0.0007753103605007874 0 0 0 -0.00032206686030856313 +6811 -0.000771021680749173 -0.00027373953702948295 0 0 0 0.00024526857485362486 +7091 -0.000749298878822835 -0.00013317861664649745 0 0 0 0.00019499107369979287 +9214 -0.000602104958769619 -0.00013319870275533624 0 0 0 0.00037044727209434514 +9254 -0.0006943150170415348 -9.21131181034477e-05 0 0 0 2.3384991883569276e-05 +2898 -0.0006055210650292713 -0.0003956734362224702 0 0 0 6.378171126838783e-05 +4171 -0.0005499002221963462 -0.0003625155071502344 0 0 0 -5.736705450345832e-05 +9366 -0.0005292229323264215 -0.0002627839163391144 0 0 0 0.00022090786190594874 +8 -0.0011771925158382572 0.000941035357066179 0 0 0 -2.4353627344210318e-05 +15 -0.0006297932803804414 0.00035728168177082164 0 0 0 2.3429911707710868e-05 +3225 -0.0005714914630555742 -1.909746125059303e-05 0 0 0 3.646790898948857e-05 +146 -0.0009332241860131586 0.0005641995472112343 0 0 0 5.888110008916753e-06 +216 -0.0008351831611274594 0.0006065787900456064 0 0 0 1.4112374211861584e-06 +236 -0.0009019168768397223 0.0002553733938567374 0 0 0 8.66315803448192e-06 +245 -0.0007566811332521641 6.617115039886274e-05 0 0 0 4.8140453887481985e-06 +247 -0.001119483969541091 0.0006279382654816287 0 0 0 2.9360171365664782e-05 +270 -0.0006323888330212628 6.853056961388112e-05 0 0 0 2.498927160720137e-05 +288 -0.0008349792882711018 0.0007181405114622796 0 0 0 3.205382885634996e-05 +9843 -0.0010099536032565888 0.0003051550722295461 0 0 0 -8.277950174420405e-06 +5155 -0.000960231743147457 -0.0008172296345559714 0 0 0 0.0005576393502160646 +363 -0.0007582529363674498 9.195159682398388e-05 0 0 0 1.183488942683274e-05 +433 -0.000873873062585321 0.00018145441255570038 0 0 0 1.9518550919217694e-05 +469 -0.00021473406830414747 0.00012273104733845062 0 0 0 1.7597133226400656e-05 +477 -0.0005675925882650355 0.0001222087317900811 0 0 0 1.8125815854323573e-05 +478 -0.0007436171073341892 0.00017759034679620431 0 0 0 1.3727938545680908e-06 +506 -0.0008498234154909644 0.0002451458385838787 0 0 0 1.8044518881984954e-05 +521 -0.000818330614235855 0.00019796855611056013 0 0 0 3.7350005758303145e-06 +557 -0.0005802900228392132 0.00043448743102059465 0 0 0 -1.6632878531649002e-05 +620 -0.0005286334126460593 -0.00014379898227133057 0 0 0 4.5540833411969246e-05 +644 -0.0007442008175960732 0.00018663584266346206 0 0 0 -3.9308754751829314e-07 +6819 -0.0003601699217627946 9.69249980485527e-05 0 0 0 -3.4131642566632735e-06 +5667 -0.0010307678489278702 0.00033025038634285466 0 0 0 -8.656043737826133e-05 +775 -0.0009827038503266432 0.00040752654580071947 0 0 0 4.735020957755303e-05 +795 -0.0005592593937832393 0.0003657458511944151 0 0 0 -3.063410275011127e-05 +810 -0.0008881455662870392 0.0003505767343947534 0 0 0 -6.146669838998296e-07 +3041 -0.0007916156040802786 0.0005510562303504727 0 0 0 3.943697948390505e-06 +865 -0.0009531649411223345 0.0005835951531841601 0 0 0 2.755350729959464e-05 +888 -0.0011128574528074461 0.0008128703594398433 0 0 0 1.3735507509618747e-05 +892 -0.00040898652026290233 0.00012894586387358903 0 0 0 3.308731394405593e-05 +4610 -0.0008231596984402638 -3.0194670663212105e-05 0 0 0 0.0001393688418221583 +2209 -0.0009888006536289684 0.000337368747550946 0 0 0 -1.364316045995938e-05 +1144 -0.0008999397359706671 0.0002112219621027042 0 0 0 -2.7115340071594634e-05 +1167 -0.0010526658335465796 0.0006174274062625163 0 0 0 -3.7501829781338705e-05 +1200 -0.00028778663364433134 9.997073217792332e-05 0 0 0 2.195685087185129e-05 +1792 -0.0007418519118182963 -4.210095569354754e-05 0 0 0 4.18173964849201e-06 +1281 -0.0005121553291704729 0.000360546688120887 0 0 0 -9.446487781203706e-07 +1286 -0.0006752440038921269 0.0002498793907712584 0 0 0 -2.3204154362886582e-05 +6694 -0.0009733796797377079 0.0006141940816741152 0 0 0 -1.7104459206543255e-05 +1318 -0.0006191976207560966 0.00034297397532501405 0 0 0 -2.7981431922930343e-05 +1336 -0.0006725220603815779 0.0005454600991149555 0 0 0 -5.443518815782082e-05 +1340 -0.0010363343202844178 0.0008654281329763823 0 0 0 0.00010147682627619994 +1659 -0.0009804381459471412 0.00021734886921010636 0 0 0 1.3293233531971825e-06 +1360 -0.0006118599657667885 0.00044143803141932905 0 0 0 -2.4963627212393542e-05 +1369 -0.0007254201716102301 0.00014784813751578 0 0 0 -1.779170597935071e-05 +8936 -0.0010946814516076815 0.0007595132927109329 0 0 0 0.0005179114146911482 +1382 -0.0007293894589566944 0.00020992508501356148 0 0 0 -1.1942647159763981e-06 +1421 -0.0003014710350470522 0.0001038377679189181 0 0 0 2.0319129796778197e-05 +6680 -0.0006644752371371529 0.0003505655631287547 0 0 0 0.00011383673559876561 +1427 -0.0006031610787280233 0.00023917570376037504 0 0 0 -6.65103460527423e-06 +1449 -0.0008248797632126884 0.0003280583715439392 0 0 0 -2.2845504367196502e-05 +1487 -0.0006956776358948956 0.00037098563434542813 0 0 0 -2.0275287636148364e-05 +1514 -0.0008749681590355121 0.0002415754106087275 0 0 0 -2.4027597289954372e-05 +1563 -0.0008922452071159453 0.0003520142863922439 0 0 0 2.34141408413892e-05 +1614 -0.0007283092312434656 0.0005779896222398948 0 0 0 4.517149900795015e-05 +1627 -0.000983614267284496 0.0006185219761886989 0 0 0 -1.5905925542352673e-05 +1652 -0.0008423473655946441 0.00030233425310037315 0 0 0 2.8355541451062312e-05 +1655 -0.0008046959178247881 0.00034397346995221285 0 0 0 1.901035454629207e-05 +1658 -0.0004137721169795738 0.0002093333908130161 0 0 0 5.305670899584098e-06 +3819 -0.0013820696995219296 0.000787353113515528 0 0 0 -2.030353097229759e-05 +1673 -0.0005109848821423954 4.275997794291423e-05 0 0 0 5.941387178915759e-06 +1213 -0.0009789214817021235 0.0008474147150528312 0 0 0 -4.0713732505070775e-05 +1705 -0.0006467965105583472 -6.846228310621822e-05 0 0 0 -1.3582669471910273e-05 +7964 -0.0009204104434487149 0.0006830440977573795 0 0 0 5.404877214589338e-05 +1797 -0.0007567134277857531 0.0006554327411630566 0 0 0 1.2091123526846422e-05 +7320 -0.000849449994809404 9.71110775078461e-05 0 0 0 0.00020096617846941493 +1907 -0.0010940261422345758 0.0007959296714124787 0 0 0 8.276628580576463e-05 +1936 -0.001147099828379013 0.0008920631918379818 0 0 0 0.00014566462473305144 +8798 -0.0013763358866389428 0.0007259110333380206 0 0 0 -0.0001571259010828319 +2063 -0.0008989912033027938 0.00021085479495193263 0 0 0 -5.477867608280946e-06 +2069 -0.00023611335983514365 -0.0001325924828932032 0 0 0 9.943070140712067e-06 +8050 -0.0010217106525567707 0.0006432285209244065 0 0 0 0.00010865041825512893 +2184 -0.001028551303199409 0.0008876543544936227 0 0 0 0.00012301597469721858 +2195 -0.0008294511866767302 0.00023409698661837756 0 0 0 7.427515257012219e-06 +2217 -0.0007301889510939588 0.0001964345300101614 0 0 0 2.3904821951582355e-05 +2294 -0.0008239324196314598 0.0003989826635029074 0 0 0 2.260236223315543e-06 +2335 -0.00045350304731331983 0.0002767597177413177 0 0 0 2.6183720619211076e-05 +2352 -0.0008783690003823939 0.00034393342028004323 0 0 0 5.083605792071896e-05 +940 -0.0002558643121145674 1.9116295671212588e-07 0 0 0 1.6506918395537148e-05 +2402 -0.0010329787914708534 0.0006566195196935088 0 0 0 -5.488963802930833e-05 +2840 -0.0010096918071958482 0.00024310912927580692 0 0 0 -2.481521518174956e-05 +2539 -0.0008089429123134401 0.00020303191084770615 0 0 0 -5.33682176114997e-05 +2551 -0.0008197048197694088 0.00020658321171657153 0 0 0 1.785017885789689e-05 +3929 -0.0008524009835869362 0.00010590800716471556 0 0 0 0.00010026477192305938 +2589 -0.0005950535066909151 0.00042752236699541773 0 0 0 3.371829290799113e-05 +2592 -0.0009093327392384224 0.00022764691370951885 0 0 0 -4.11604350809351e-06 +2595 -0.00022908670325789347 6.450871990506007e-05 0 0 0 -7.017957694339748e-05 +9734 -0.0007757835898431238 4.3786513594730645e-05 0 0 0 4.235052062945301e-05 +2635 -0.0006419924469599448 0.0005905485800693541 0 0 0 -3.557248097046251e-05 +2646 -0.0006456695259691032 0.00047160810860152246 0 0 0 0.00010585762239976367 +2649 -0.0009694406617980318 0.0006180811499550808 0 0 0 -1.5870730017646118e-05 +2669 -0.0006378373451358382 0.00026567837975793803 0 0 0 -3.65984138562098e-05 +9317 -0.0011369692640372472 0.0009680469801019501 0 0 0 9.705997848498151e-05 +2712 -0.00048468632227946523 -3.185939060281673e-05 0 0 0 5.152111479851743e-05 +3402 -0.0011593271823190459 0.0008207423459204443 0 0 0 0.0001472253215110598 +7638 -0.0012160770102667318 0.0005853248426511027 0 0 0 0.0004722792283553091 +2932 -0.0007849318678915224 0.0006001817614613595 0 0 0 1.2327783471293797e-05 +2939 -0.0006894058156416699 2.8392866143040477e-05 0 0 0 8.640833425525411e-05 +1940 -0.001410443608757252 0.0007829661733763771 0 0 0 6.190773904891289e-05 +3611 -0.001172153288871244 0.0007278715122439329 0 0 0 -4.016193722281571e-05 +3034 -0.0008282843351658759 0.0006604662527287083 0 0 0 -4.024772674675333e-05 +3047 -0.00020824256571966152 8.39386080641668e-06 0 0 0 8.6094243694629e-06 +3062 -0.0008613270007468683 0.0004118229980801907 0 0 0 8.889616998664581e-05 +3141 -0.0006858921273045354 0.00034477571685688897 0 0 0 1.9377250955099333e-05 +3184 -0.0008555823548766929 0.0008100667535768261 0 0 0 0.00011700808264008686 +6794 -0.00017608678775339512 6.625144577261047e-06 0 0 0 5.807529125142545e-05 +3256 -0.0007637854542574781 0.0005458524803788211 0 0 0 5.4213518771697804e-05 +3261 -0.00071542214550071 7.851185591361168e-05 0 0 0 1.6560054980984464e-05 +6740 -0.0005601713018114684 0.0006290139817607112 0 0 0 -0.0007949849911594378 +932 -0.0010062834787406664 0.00030751193447528996 0 0 0 2.67222769237091e-06 +7579 -0.0008449585218534198 0.0006642960499153616 0 0 0 0.0001888683547749964 +3488 -0.000768531891412223 0.0006755373463070201 0 0 0 7.3540681920995825e-06 +9568 -0.00047172643629270244 -0.0002338731825669116 0 0 0 -5.6612066606463705e-05 +9244 -0.0002494264086325703 0.0011157357677214473 0 0 0 0.00128075535055013 +3565 -0.0009449596324006665 0.0003786422046191732 0 0 0 0.00014540681739999683 +824 -0.0007469233273201531 -2.1219502465697492e-05 0 0 0 2.2587239715627433e-05 +3917 -0.0006325533560530958 -4.940236903378301e-05 0 0 0 6.031196993475191e-05 +2637 -0.001032117912023198 0.0008764339362911285 0 0 0 0.00010012620221743825 +3715 -0.0008861883176485593 0.0003668915708290285 0 0 0 -4.4904999047729414e-05 +3739 -0.0009445008643835509 0.00036705818505315007 0 0 0 5.676944339640532e-05 +8324 -0.0009996823993053188 0.0003038962218894737 0 0 0 -4.3778502999987595e-05 +3846 -0.0007455735010342392 0.0002025444269728722 0 0 0 9.01848934258784e-07 +470 -0.00136848142563313 0.0007990460915776291 0 0 0 1.883197463783042e-05 +4376 -0.0007225354867667099 0.00025241879277521984 0 0 0 -6.328735829244836e-05 +3970 -0.0010701453313196423 0.00038241617077663877 0 0 0 0.0001276152182537054 +3988 -0.00045622698747821953 0.00027970205166672884 0 0 0 5.548935067390544e-05 +3995 -0.0009004994572237898 0.00023784111316957915 0 0 0 1.1527391179968219e-05 +6474 -0.001304013295608572 0.0008863565391556484 0 0 0 9.942819033872132e-05 +9671 -0.001968749365858 -0.00023121761073790058 0 0 0 0.0021099854887249893 +4183 -0.000453395531401535 -0.00012363951171527276 0 0 0 2.1317802974944873e-05 +4199 -0.0006264440510767498 0.00028525613362572253 0 0 0 -9.90290264164112e-06 +4234 -0.000819843945479715 0.00019940993898545528 0 0 0 6.252003163016321e-06 +4244 -0.00024737274916770437 4.389998197060635e-05 0 0 0 2.625764076546036e-06 +4273 -0.0009100403872403087 0.00022824431879051716 0 0 0 6.859105211726438e-05 +4128 -0.0006942223387822172 9.385162178972987e-07 0 0 0 8.049950715974979e-05 +4348 -0.0008274143685390389 0.00019046658145860642 0 0 0 -2.1750799326059613e-05 +4349 -0.001065078719131359 0.0008955961091703168 0 0 0 0.00048752334481585465 +4363 -0.000925664458103273 0.00041007211477439207 0 0 0 -8.684430964257717e-05 +4370 -0.0008764782889250103 0.00036191195806282924 0 0 0 -7.482772928263584e-06 +4384 -0.000583756673756106 0.000507402007620441 0 0 0 1.6943104682249983e-05 +4386 -0.0008578915262776815 0.00035849984556143567 0 0 0 4.810093966309604e-05 +4813 -0.0002222666515889865 -4.049959309871418e-05 0 0 0 1.2677317428270166e-05 +4469 -0.0008169615286556356 0.0001677948514295948 0 0 0 -1.91802962282136e-05 +4471 -0.0006548626928877266 -7.24152861716547e-05 0 0 0 -7.961611910703893e-05 +721 -0.0007961760017244315 6.977541398610224e-06 0 0 0 1.548195955055088e-05 +4512 -0.000844568535298034 0.0002841268006304955 0 0 0 -1.85829896962004e-05 +9246 -0.001080656363352841 0.0005883919176365365 0 0 0 -3.5549430295576624e-05 +4541 -0.0008311066772159632 0.00024571356359986236 0 0 0 -2.8522072367522444e-06 +4560 -0.0005904097313064781 0.00012068435644070264 0 0 0 -7.668784182754244e-05 +4607 -0.00022091736140413652 -8.084496636908309e-05 0 0 0 0.0001048238856080876 +5133 -0.0010560825789721403 0.0008566567349347162 0 0 0 0.0005844249001482624 +4653 -0.0005103838955542791 -0.00029974059265602826 0 0 0 -0.000509444151021788 +3240 -0.0006487444375480893 -1.9693212535653786e-05 0 0 0 -2.741103103777071e-05 +4671 -0.001022185598518163 0.0006234165652849356 0 0 0 0.00015468026586044285 +9813 -0.0009914815914062282 0.00041141974750215945 0 0 0 -3.1664264251702694e-05 +4717 -0.0006099745547710158 0.00035055136743689195 0 0 0 7.629721249163501e-05 +4729 -0.00025683340235094443 0.0001395603849472936 0 0 0 3.209191205289857e-05 +4751 -0.000598769539851324 0.00019440537853632162 0 0 0 -0.00010374280990079196 +4761 -0.0008315823982919553 0.00020124953124553614 0 0 0 5.0514542651365225e-06 +4798 -0.0005598133471549102 0.00014551732298634338 0 0 0 -6.230713537312479e-06 +4811 -0.0010121702109414758 0.00033866839624093777 0 0 0 7.196678730596774e-05 +8642 -0.0008099728705679387 0.00038550668565577335 0 0 0 6.356123847214992e-05 +4814 -0.0004192348034838103 -2.1899852433002967e-05 0 0 0 -1.4110351454317952e-05 +4845 -0.0010022938982473188 0.0008395910682819721 0 0 0 -1.980052896892432e-05 +4851 -0.0008394149226368267 0.00027984900743851414 0 0 0 -5.456471679436854e-05 +4927 -0.0008839701485831265 0.0006764603637245658 0 0 0 -9.468849259479133e-06 +4929 -0.0005073126933572259 0.00029842034214212315 0 0 0 -9.32661301233656e-06 +4944 -0.0012030507142360952 0.0011052239506680404 0 0 0 0.00025272442812902514 +5817 -0.0011333751150210624 0.0007674323655311154 0 0 0 -8.168172074527417e-05 +4958 -0.0008450630718401771 0.00022914330417766581 0 0 0 -1.6191584579272204e-06 +4995 -0.0008614009968105858 0.0002030369889070201 0 0 0 -3.170726259367996e-05 +5041 -0.0009294562611265542 0.0007323561558559878 0 0 0 1.0787238090655878e-05 +5059 -0.0007924150513088844 0.00020145497739249498 0 0 0 7.450856530685019e-05 +1889 -0.0010249095870264893 0.0007081594777954618 0 0 0 4.4633887281092435e-05 +5088 -0.0008326339354382676 0.0007301638973316725 0 0 0 0.00012013978278279736 +5127 -0.0009033326645877476 0.00021993508279938436 0 0 0 -3.2389398547322383e-06 +3581 -0.0004338375535414799 5.667164665874146e-05 0 0 0 5.323162037579132e-05 +5164 -0.0008196661233089448 8.332217032173905e-05 0 0 0 6.0285089657840644e-05 +5269 -0.001078192835961623 0.0007633114595613638 0 0 0 7.687788688933187e-05 +5291 -0.0008363780747187048 0.0002013198220358697 0 0 0 7.545400605695873e-05 +5338 -0.0008296187666316544 0.0006791348125586115 0 0 0 8.950147933773938e-06 +5359 -0.0009004188055354244 0.0002842208063304413 0 0 0 2.6392798139016566e-05 +5373 -0.0007242145631862462 0.00023756387748720208 0 0 0 2.8078095167077863e-05 +5431 -0.0011418508344369848 0.0009671356425334439 0 0 0 0.0002798518006620388 +9587 -0.0011562399123297988 0.0005103585871098128 0 0 0 0.0007275255432635481 +5506 -0.0004524260650560161 6.972002197357655e-05 0 0 0 -8.784153683922137e-05 +5532 -0.00044442518369335114 -0.0001269902536643547 0 0 0 8.736948457644701e-05 +5539 -0.000889125500756641 0.00047299578798153184 0 0 0 -4.6153891235042e-05 +1422 -0.0004521321249622291 -0.00015356907326260257 0 0 0 8.7865804480899e-05 +1471 -0.0010313045488442396 0.0003059482698765876 0 0 0 -1.9218320611980955e-05 +5649 -0.0012833153371248865 0.001035488503752897 0 0 0 0.00023037430204956647 +3096 -0.001102203370795271 0.0003452322815336281 0 0 0 0.00024198378665836364 +5664 -0.0008330581860390698 0.00031953385433040643 0 0 0 -5.982745356253573e-06 +9847 -0.0009874099205592335 0.0006574973612552176 0 0 0 0.00012666520976160065 +5698 -0.0010002590212466818 0.0003437288869428221 0 0 0 4.6481606608761646e-05 +4637 -0.0011209015546404348 0.0009687894505257714 0 0 0 0.0002473861187680392 +5800 -0.0006178285808804744 7.160791728114395e-05 0 0 0 -0.00010869605565500876 +5804 -0.0008766327770507181 0.0005238019345961436 0 0 0 -3.264252849748926e-05 +5812 -0.0006761247271459273 0.00021592496287771212 0 0 0 -2.3689831868739782e-05 +5829 -0.0006698157554832729 0.0004326726501666998 0 0 0 4.183393871948613e-05 +5871 -0.0008624201555359179 0.00021557283958009452 0 0 0 6.563758720049668e-05 +5953 -0.0002720480023586269 -0.00011456364422374479 0 0 0 -2.3160619832846855e-05 +3692 -0.0007432698451707867 -3.2837529823069988e-06 0 0 0 -2.033774573129274e-05 +6125 -0.0008112651421785891 0.00032571368838609166 0 0 0 -6.001295443427175e-05 +8508 -0.0010825903608641264 0.0008854509311041599 0 0 0 0.0003913854165036785 +6139 -0.0004429959898295491 0.0003177850397922469 0 0 0 -9.410895808293601e-05 +6145 -0.0007936531527542924 0.0005759621975904223 0 0 0 -3.0471486806788728e-05 +6165 -0.00025839926749482157 -7.780697099174744e-05 0 0 0 -0.00011759731359630424 +2081 -0.0006945801253836341 0.0003266922133792375 0 0 0 4.0032974676049e-05 +6264 -0.00021874094432080044 5.697468779888957e-05 0 0 0 3.252276033610241e-05 +6330 -0.00025830411474213853 0.00010378802759597725 0 0 0 5.4362536231798776e-06 +6433 -0.0009489477444169912 0.0007664148668946303 0 0 0 0.00017639845961358764 +6435 -0.0011473094125094465 0.0006876747516410534 0 0 0 6.812469240709066e-05 +6442 -0.0008649761744488267 0.0001654451610759518 0 0 0 -1.621922881691259e-05 +6456 -0.00020517881205767683 -9.909785576343959e-05 0 0 0 -2.450281488671014e-05 +3215 -0.0009076941528358759 0.0004091334712557612 0 0 0 0.00012722583846102076 +2707 -0.0010186221523511485 0.0003849657105931128 0 0 0 -6.20013342093806e-05 +6538 -0.0005014444588057444 0.0003353573002406001 0 0 0 -6.95323096479311e-05 +6545 9.189982743349918e-05 0.0002920035081854452 0 0 0 -0.0005349279242682693 +6550 -0.0007901983992377741 0.0005625522742807263 0 0 0 0.0001133485312830747 +6576 -0.0003537955774637735 0.00011273695258929819 0 0 0 3.3633434028841935e-05 +8019 -0.0005779072432441755 3.671733103918638e-05 0 0 0 -0.0001519634095915625 +3033 -0.0007232198686580342 4.962781276256149e-05 0 0 0 -8.481975128121366e-06 +6603 -0.0006574771623173421 0.0002990434423814761 0 0 0 2.6854592606566386e-05 +222 -0.0006440980605012809 -8.88479817191006e-05 0 0 0 2.1069197492224307e-05 +6703 -0.0010100012392710743 0.00032189506596952606 0 0 0 0.00017715616376965047 +9410 -0.00017357484284348027 -6.94321203478162e-05 0 0 0 -9.424669818826835e-05 +6791 -0.0008219440518111376 0.00012333836202616197 0 0 0 1.7752226416706427e-05 +6826 -0.00017109375493453484 -0.00013353244616196253 0 0 0 0.00015498818287186565 +5640 -0.0010199233178058969 0.00045906984954600965 0 0 0 2.8933260967296952e-05 +6846 -0.001211923010327318 0.0010980342158168229 0 0 0 2.003830965057769e-05 +9987 -0.0006322792036260462 0.00026460185989922506 0 0 0 6.507833789360683e-05 +6852 -0.0006134559057856022 0.00043885138780915087 0 0 0 -0.00014367288597502356 +6894 -0.0005934467535801458 0.0002997137469841438 0 0 0 6.371365197197819e-05 +3768 -0.00017095918862393693 -5.102806404227857e-05 0 0 0 2.3244383267648992e-05 +7124 -0.00037095122044923846 0.00010024859518688988 0 0 0 3.581518701626663e-05 +2665 -0.0011631723544493163 0.0007831618444563169 0 0 0 -2.7554346382689344e-05 +7100 -0.0010756433416411423 0.0008817168151776795 0 0 0 0.00018452331375137424 +7857 -0.0012639118608017202 0.0007925060433311391 0 0 0 -7.584378350121981e-05 +7207 -0.0008241249515990495 0.00018740556397179008 0 0 0 3.483846084457104e-05 +7223 0.0006635619663220593 -0.001244487683699788 0 0 0 -0.00018786813754107597 +7255 -0.0006502878577113386 0.00027974886913302707 0 0 0 -6.650828022678735e-05 +1610 -0.0008458151782957153 0.0004647900245654354 0 0 0 1.956101979417461e-06 +3521 -0.0013691876838270208 0.0006239484434649423 0 0 0 -6.903282002144507e-05 +7357 -0.00038920912728901576 9.004367018803777e-05 0 0 0 0.0001277732148881709 +5538 -0.0014086195697556713 0.000764597049539909 0 0 0 2.483733896244966e-05 +7439 -0.0009898994855294144 0.000783297679431949 0 0 0 -0.00010149259876897026 +3529 -0.0008516953534656109 0.0004319569682628493 0 0 0 1.4077812602070437e-05 +7530 -0.0010151330034279947 0.0007980645861318862 0 0 0 0.00022083158235781063 +7566 -0.0005729127623289447 0.000442221454295894 0 0 0 -8.022458916842831e-05 +345 -0.0010036013663148585 0.0007824511552487186 0 0 0 2.353350584993104e-05 +7628 -0.0008255317088439901 0.0006834289045786422 0 0 0 0.00018365143175441229 +9901 -0.0005438930132423282 0.0003850921515631625 0 0 0 -0.00012414873021468584 +7666 -0.0005699153478738238 0.000338045139697322 0 0 0 0.00010188963441286251 +1896 -0.0010251484066473918 0.00026983368734610763 0 0 0 -8.01247785783032e-06 +5702 -0.0010053738188883238 0.0002367242297466038 0 0 0 1.8873362821158375e-05 +7782 -0.0007475469065751455 0.0001952889687117853 0 0 0 -2.873279222603307e-05 +9998 -0.0010197934393814815 0.0002423201018355438 0 0 0 9.777237307277625e-06 +7842 -0.0005820668495716793 0.0002988147456401525 0 0 0 -5.787698672349241e-05 +7850 -0.0011654081913405555 0.000417047294589179 0 0 0 -0.00011875508632949292 +7875 -0.0008291067406959816 5.854797327973487e-06 0 0 0 8.692624865604569e-05 +7910 -0.0008736212830261484 0.0004920628397662276 0 0 0 3.780570749748137e-05 +4812 -0.0008570768476615479 0.0001222326804145304 0 0 0 -2.5845734975013614e-05 +3406 -0.0007452293946482106 0.00032668765609353674 0 0 0 8.163268845856194e-05 +8048 -0.0009120563244239993 0.00012320952387015002 0 0 0 3.9071063604009496e-05 +8055 -0.001004121410910428 0.0008820237301695807 0 0 0 -0.00011160235451468984 +8061 -0.0005100039233559968 0.0003428411306076684 0 0 0 -5.5307918168717845e-05 +8105 -0.0006602409901775467 0.0002559355783230184 0 0 0 -3.471978586437494e-05 +8124 -0.0010488552809479522 0.0008828771531515593 0 0 0 0.0002966824391668552 +2055 -0.0014010558468061983 0.000739601006234385 0 0 0 -8.95208339883055e-05 +8178 0.0005097136803114803 -0.00020702267407923138 0 0 0 0.00039214480393679575 +8196 -0.0011731915222826352 0.0007820727749379737 0 0 0 9.3273621191739e-05 +8226 -0.0005962616913026824 5.3468562770523146e-05 0 0 0 0.00019651202430342505 +8249 -0.00028601673087117987 0.0003172221310098164 0 0 0 -0.0002216935978906244 +5552 -0.0010488906167109375 0.0003587581618745178 0 0 0 -3.5769557684092354e-06 +8272 -0.00038439797447029956 0.0001127013106892341 0 0 0 1.791902020407894e-05 +8290 -0.0010961147902172753 0.0007850984809658375 0 0 0 -0.00021642732870846615 +8296 -0.0008151234990809154 0.00029378219475877765 0 0 0 0.00016014194446771916 +6383 -0.000864865005522417 0.0005330250821666262 0 0 0 3.219245036423201e-05 +8408 -0.001049671579248237 0.0003026911025424169 0 0 0 8.752135144115083e-05 +8456 -0.0006153577505586896 0.00014474077410181338 0 0 0 4.048374900094357e-05 +8457 -0.0007856720687754691 0.0007027519349423814 0 0 0 -5.7821923669532286e-05 +7678 -0.0011444136538618088 0.0007068870316179249 0 0 0 0.0001512685399815387 +8509 -0.0007620716881382439 2.4048664206013328e-05 0 0 0 -2.5480822830274036e-05 +8523 -0.0006178814370971415 0.00015848306586778126 0 0 0 -6.0402125358248855e-05 +8538 -0.0008573127990124597 0.00020827652413244358 0 0 0 6.393638133384237e-05 +3165 -0.0010774101243700368 0.0006394455669250305 0 0 0 -9.630178050446741e-05 +8675 -0.0008002337393370683 0.00012769701697409554 0 0 0 7.460485050554604e-05 +8190 0.0011375933403605725 0.0014990752543560274 0 0 0 -0.002130194359297218 +8773 -0.000840253774873248 0.000310360240765363 0 0 0 -2.957556215296949e-05 +3101 -0.001414358067806969 0.0006464641506626873 0 0 0 4.974949898536198e-05 +8796 -0.0008383008377946382 0.00019173789649517317 0 0 0 2.762669899325533e-05 +8804 -0.0008427051241425789 0.00025223349466997266 0 0 0 2.9418349596893065e-07 +8917 -0.0008797563567306909 0.0004855848829711431 0 0 0 6.428256841358556e-05 +7208 -0.001023708192294026 0.0006965076251098922 0 0 0 -0.00012861372733393884 +4808 -0.0002458123660189978 9.502163817501005e-06 0 0 0 2.713738556343311e-06 +9013 -0.001110148433615616 0.0006648066773790309 0 0 0 -0.00023346079261932277 +9026 -0.0010004221712514685 0.00035224644748851745 0 0 0 4.797678705183464e-05 +9076 -0.000548548393178084 0.00040095490912057366 0 0 0 -0.00012950859982529454 +9094 -0.0009036859177521949 0.00020567788223942805 0 0 0 1.524006941490136e-05 +9095 -0.0005779958128529778 0.0002803606704409835 0 0 0 6.497228058727705e-05 +9099 -0.000825824508767972 0.0008136770946339523 0 0 0 -0.00010659905053163624 +9141 -0.0003942557126837688 0.00012445235363295375 0 0 0 -1.015612881283302e-05 +4858 -0.0011752896022855838 0.0007510237105457415 0 0 0 1.252070271894923e-05 +9183 -0.0016942756749703516 0.001003481812902065 0 0 0 -2.188636973977036e-05 +1376 -0.0009670275644120001 0.0006260318827746819 0 0 0 3.439544801933727e-05 +9251 -0.0008355168918239647 0.00022828933227908398 0 0 0 -7.923237948043632e-05 +9440 -0.0005586019314907006 0.0004123813384273176 0 0 0 -7.358496687453153e-05 +9501 -0.0008445893634530886 0.00019640037958017104 0 0 0 -1.9403973031440632e-05 +9516 -0.00043068780455577017 -0.00010019466200478995 0 0 0 8.222809009183745e-05 +9536 -0.000655319078376642 -6.497959115830748e-05 0 0 0 0.00012081786902735766 +9626 -0.0001960344296040186 -5.508555976358126e-05 0 0 0 1.650309194253645e-05 +9652 -0.0005058145724446618 0.00026170433423687605 0 0 0 -0.00010830468685405638 +1049 -0.00031720805074141853 6.841888546446436e-05 0 0 0 1.3296979519759245e-05 +1671 -0.001004975226277503 0.00033020519461220957 0 0 0 -2.1434075433771468e-05 +7556 -0.0009703148418390704 0.00031820094052707027 0 0 0 5.9026411374199184e-05 +7985 -0.0010595992532693615 0.0007747956699142364 0 0 0 -0.000172404607031835 +9744 -0.000290478540290243 0.0003150485154936073 0 0 0 0.0001928648126419885 +9747 -0.0007395786893628874 7.582896996154246e-05 0 0 0 -0.0001507430485503685 +9835 -0.00022348057444159682 -0.0001626882683691356 0 0 0 0.00019593952298016298 +1993 -0.0008558392875358423 0.00038625178417622726 0 0 0 -7.462276046698937e-06 +9962 -0.0006551033494402666 0.00035696594672264775 0 0 0 -0.00012715781822816388 +9862 -0.00048711726161619487 -0.0002039955571673361 0 0 0 0.00013403495608843124 +9881 -0.0006663105921074395 0.0005515096618563 0 0 0 0.00010802792546273915 +2829 -0.0010336819718692871 0.0008591601745548846 0 0 0 -0.0005058477312213171 +5732 -0.00022876487550868167 -1.511183725566491e-05 0 0 0 1.4719474934720284e-05 +4329 -0.0008854444561784852 0.0004715974586695924 0 0 0 2.1920789963449296e-05 +6578 -0.0008400240401963298 0.0005033493864610749 0 0 0 3.267288329435142e-05 +6299 -0.0002450426193392971 -4.534672573584021e-06 0 0 0 -4.643945572597333e-06 +1612 -0.0006525297409813424 6.742896021645824e-05 0 0 0 -2.4050733251509e-05 +7727 -0.0006426526259008451 5.892478125898817e-05 0 0 0 1.3143446464632279e-05 +522 -0.001070651265698213 0.0007051511354014209 0 0 0 -4.747716504884414e-06 +2810 -0.0002704924012245061 3.053236565102749e-05 0 0 0 -1.273900899940386e-06 +9300 -0.0002974408675963587 3.509017214589752e-05 0 0 0 1.295791139045912e-06 +7007 -0.0010916976166233856 0.0009435268447436394 0 0 0 -8.154652024178533e-05 +8237 -0.0008285671512523437 0.0004833974013522877 0 0 0 -5.0543386583301375e-05 +8220 -0.0011552029474191153 0.0007633113499446261 0 0 0 0.00026851155776352095 +8852 -0.0009075818578911063 0.0005460420016778727 0 0 0 -2.6370074647311952e-05 +9173 -0.0008611084878636975 0.0004792679311183105 0 0 0 1.3942480206025117e-06 +3525 -0.0011519617164090698 0.0008413936090885076 0 0 0 0.00012528178167350455 +3058 -0.0010585039900918446 0.0006177142391762568 0 0 0 0.00012572954656835987 +6800 -0.0013682988182459547 0.0008951410140123947 0 0 0 7.307728578038771e-05 +5293 -0.0014395438225045273 0.0008508056738023607 0 0 0 0.0004306533011789063 +3764 -0.0010099074046968385 0.0006283188861254123 0 0 0 5.4033720124759766e-05 +7571 -0.0011986002767391654 0.0008870187568304073 0 0 0 0.00035854604665304336 +6232 -0.0010150181487350238 0.0005634732321932985 0 0 0 5.299524398575447e-05 +9012 -0.0009932903325886146 0.0007808065908509254 0 0 0 -0.00015890147924096693 +8573 -0.0008095320797413471 1.1471322064672365e-05 0 0 0 -8.390398057743234e-05 +514 -0.0009839778095629642 0.00041401665869429346 0 0 0 2.2060446075474334e-05 +7590 -0.00046998995553339045 -0.0002467994520359771 0 0 0 0.0003464880453044118 +7312 -0.001033467196178503 0.00031911189662579706 0 0 0 -1.554898106872619e-05 +1600 -0.0010119353337824464 0.00031856379078612956 0 0 0 1.1119472766282763e-05 +2579 -0.0009294532891421414 0.0005219994815963657 0 0 0 -8.913018131748487e-05 +587 -0.0009850102025212885 0.00042205407306689617 0 0 0 -4.669307035986094e-05 +5735 -0.0010236491164275013 0.0003960355259184739 0 0 0 2.64394611803693e-05 +7517 -0.0010443066429336244 0.0007099953046207135 0 0 0 -0.00012653381924250022 +4639 -0.0005635810465572859 -6.995150523053722e-05 0 0 0 -0.0001282514717254429 +7736 -0.00035844188056060136 -6.676374605901941e-05 0 0 0 -4.183448043175216e-05 +3938 -0.0010420474981668126 0.00035606689470773747 0 0 0 -1.466262778412742e-05 +5487 -0.0010436872058205361 0.0003289925066455424 0 0 0 -2.4840412814733324e-05 +8175 -0.0014258824626894812 0.0006933416928586782 0 0 0 0.0002694310023340161 +3339 -0.0009267920784633291 0.0006223691332004413 0 0 0 4.839680895351845e-05 +7836 -0.001413868888125363 0.0007460108039530113 0 0 0 0.0001433529365952174 +552 -0.000615427993908948 -0.00015608527467270332 0 0 0 -4.053539668482777e-05 +1107 -0.0004376890615667326 0.00012776352644014793 0 0 0 1.0285473498662e-05 +9348 -0.0007343343134240574 -3.6764925730636545e-05 0 0 0 5.72824425935372e-05 +6785 -0.0006335604040348461 -8.414526518781932e-05 0 0 0 -5.474334122794769e-05 +45 0.0005146469934967286 0.0003485431714526927 0 0 0 -7.764918571715128e-06 +8430 -0.0009411181546322448 -8.665025262626101e-05 0 0 0 -0.0010757857229254434 +6843 -0.0001630756066352733 -0.0004129427591465044 0 0 0 -4.9746507486792675e-05 +7036 -0.0003489249536954647 0.00038566099079309407 0 0 0 -0.00014589037717932778 +127 0.0006344384797840177 0.00021342644815185518 0 0 0 -2.5365711432347174e-07 +131 0.0009306800539210529 -6.145541660464339e-05 0 0 0 -1.4868420072540763e-05 +6523 -0.00026471085878170637 0.00039408000630177566 0 0 0 -7.021280450916733e-06 +165 0.0008093398556559455 -8.598802912444181e-05 0 0 0 -2.032674360126916e-05 +180 0.00020245260512996197 3.6831949812647885e-05 0 0 0 -4.0227349955330596e-05 +190 0.00030825086353369576 0.00036761317852373814 0 0 0 3.8441035089256594e-05 +9066 0.0003899586615171869 0.000365707460610357 0 0 0 -2.7622643035786803e-07 +199 0.00023081627628624565 0.00031154951786773594 0 0 0 -1.3817058595466912e-05 +201 0.00064431878926425 0.00022411909515362576 0 0 0 -9.716029714509865e-06 +202 0.000710510633517503 0.00018240400440744912 0 0 0 1.6474290916987364e-05 +206 0.00020780664819392686 0.0003594994841217756 0 0 0 -1.1183735432456117e-05 +323 0.0004165491296074759 0.00020378719191278943 0 0 0 -1.8014815639075696e-05 +344 0.0007091511330684631 -0.00019317601119125325 0 0 0 -2.353683410432564e-05 +438 -0.00013542327275155555 0.0003070322335899133 0 0 0 -2.8668712182771043e-05 +441 0.0005407668684293161 0.0003337372440555032 0 0 0 -5.88207344874958e-06 +473 0.00046208493403328065 0.00025139248860295716 0 0 0 -2.1477648675400972e-05 +6662 -0.0002468465158823869 -0.000378224884670615 0 0 0 -4.320149736279845e-06 +493 0.0004957350530960558 0.00037163679497438944 0 0 0 1.2019081795306628e-05 +500 0.00030736368683550926 0.00020464603781464094 0 0 0 -1.77675715746447e-05 +512 0.0005936340483179423 0.00025831644052898083 0 0 0 5.907752718622887e-06 +6428 0.0007623970408721131 -0.00031348554808653 0 0 0 -5.9347392119467416e-05 +604 0.00036815189649628226 0.00042719583682965256 0 0 0 -2.5761430279569207e-05 +8355 -0.0004993357840551401 0.0004681823494582837 0 0 0 -0.00010375089011100159 +625 0.0003852131456550156 0.00038516041814254994 0 0 0 0.00013668983460353275 +676 -0.0004360956050700319 0.0003852710995386018 0 0 0 -8.264261543220867e-06 +703 8.563019021440382e-05 -0.000143916963606717 0 0 0 -2.783305921683602e-05 +708 -0.0001290238156584587 -0.00032871322085795666 0 0 0 -3.4619751301345675e-05 +714 -3.9220910357910326e-05 0.00037230931027637743 0 0 0 -1.2623374975941476e-05 +4926 0.0004890421370926111 -0.0002766024880591301 0 0 0 -5.13752425131403e-05 +742 0.00033576048730183327 0.0003214986561802134 0 0 0 -9.435367060462814e-06 +750 7.056546566676242e-05 0.00034356241817558997 0 0 0 -2.6880254602966622e-05 +751 0.0007244872316665026 6.974991629684828e-05 0 0 0 -3.3839523006940855e-05 +4190 0.0006550470088012584 -0.00012713131736175688 0 0 0 -2.863511281259942e-05 +6448 -5.1701529572130524e-05 -0.0005301320721474675 0 0 0 -6.340411232348765e-05 +780 -7.80626212678346e-05 0.0002823483084531595 0 0 0 2.6539601369805526e-06 +5922 -0.00024617804959312057 -0.0003955512501294404 0 0 0 -4.981884413597401e-06 +790 0.00030351668167774424 0.00024814173912059796 0 0 0 -2.8641083110666646e-05 +792 0.0005474243105946591 0.00025547403693992286 0 0 0 -6.535259116215526e-06 +825 0.00041849157258882916 0.00028489281457539067 0 0 0 -1.4012451698666571e-05 +884 -5.5119610174968766e-06 -8.165361654274116e-05 0 0 0 -3.719948513214376e-05 +890 0.0005582631931887662 0.00015120999797096002 0 0 0 -1.0537312238815226e-05 +9139 0.0006461529029650724 0.00019326358419557253 0 0 0 1.1516919419329224e-05 +953 0.0005646724302926963 0.00025591757518218767 0 0 0 -2.9809704435249236e-06 +9368 0.00022788580888311337 0.00031500325869431354 0 0 0 1.4199802897236373e-05 +1007 -0.000197266472711247 0.00033152048361208736 0 0 0 -0.00010339478009359029 +5075 -0.00267474544354232 0.0007271282810687008 0 0 0 -0.0006248845118503089 +9687 -0.00017978767672890107 -0.00015125075292702928 0 0 0 -3.027314618094903e-05 +2250 -0.00010758301079144695 -0.00042158591605759554 0 0 0 -3.312342011555396e-05 +1036 8.205818251915763e-05 -0.00033333729092093514 0 0 0 -3.181277140881202e-05 +7968 -0.00039172658911161307 0.00043234508317275384 0 0 0 -0.00010458770011454664 +1040 0.00012289257241562463 0.0002791165805638862 0 0 0 9.068581751878044e-05 +1046 0.00035851480343279576 0.00016702594703074073 0 0 0 -2.855889448104271e-05 +1053 0.0006728077136718161 0.00014307470315407658 0 0 0 -9.721856843292328e-06 +1057 0.00020445610411032645 0.00026837414652929325 0 0 0 -6.68572435515364e-06 +1115 6.29696729917045e-05 0.0003768511088515153 0 0 0 -1.0989571573786313e-05 +1134 0.00035607588343177594 0.0003951491715179738 0 0 0 -4.26274133147551e-05 +1152 0.00044136247877676275 0.00014224564865253838 0 0 0 -8.578819919753936e-06 +1188 -0.00030387258932914745 0.0003772319780049523 0 0 0 -4.214415421293803e-05 +1249 0.00017644503138758644 -0.00010102705203998248 0 0 0 -2.4862990285253658e-05 +1272 0.0005374947520710851 0.00017864040868581727 0 0 0 -1.711161432615429e-05 +1317 0.0008477243605790586 0.00012433824238038517 0 0 0 -8.22598510368659e-05 +1329 0.0005626112272953415 0.0002878032356339297 0 0 0 -2.812837646996936e-05 +1349 0.00028310754799481256 0.0002509466303025617 0 0 0 2.989591651085115e-06 +1350 0.0002314810554765405 9.30653308945318e-05 0 0 0 -6.637514732297325e-05 +1372 4.794713594071433e-05 -0.00025234140965043684 0 0 0 -3.570418821259104e-05 +37 0.0005669098432839913 4.1045761027172044e-05 0 0 0 -1.6233509153286578e-05 +1389 0.0008052780771736806 0.00013968873470820314 0 0 0 2.5998976571260718e-05 +9172 0.0005883479810979657 0.0001928246618485803 0 0 0 -4.2364273765198367e-05 +1418 0.00015672291337433684 0.00036464435750042397 0 0 0 -9.481428774567866e-06 +1425 -6.802336289649327e-05 -0.0003757202255846988 0 0 0 -2.956299478023801e-05 +1442 -0.00037024601745194356 0.00035776227226892623 0 0 0 -6.602159514492345e-05 +1499 0.0002918366366017603 0.0004122003599379943 0 0 0 -3.05885033732631e-05 +1509 0.0004226293972154158 -0.00028137225017660735 0 0 0 -2.8998784030546712e-05 +1579 -8.650231181687064e-05 0.00036137672346286026 0 0 0 -2.9752589748231386e-05 +9482 0.0004685910479562875 0.00038444668324505004 0 0 0 -2.9319985138163884e-05 +1596 -3.3142705488405713e-05 0.00027954508466583534 0 0 0 -2.2693999280866155e-05 +1606 -8.685848434994257e-06 0.0002949969879981061 0 0 0 -1.569104771986922e-05 +1621 6.0943304660299093e-05 0.0003172688354495727 0 0 0 -9.972745040393407e-06 +1624 0.00025930391688251203 0.000334996011422047 0 0 0 -1.1822201063221322e-05 +1649 0.0006339810666173642 0.00015488903289628461 0 0 0 -6.576733302716672e-06 +1656 0.0005167989187345141 0.0002539205395072641 0 0 0 -1.5735162367979474e-07 +1657 0.00017702196108191232 0.00039069496185877044 0 0 0 1.1620751935024005e-05 +1694 -0.0001292598788932662 0.00030396263809519454 0 0 0 3.3449153514570946e-05 +9288 0.0006614872662972152 0.00010615578847983229 0 0 0 -1.6613156941940377e-06 +1731 0.0007177485009391947 0.0001229609958528961 0 0 0 -4.080109223904844e-06 +1767 -0.0006389833227084459 0.0004102373044812397 0 0 0 -7.9741557492648e-05 +9793 0.000547824919695445 0.0004430841828607756 0 0 0 -0.0008225168579910004 +5637 0.0006476213936521908 -0.00021888498802059004 0 0 0 -4.553448819811914e-06 +1831 0.0002657100585734689 -5.011284698207076e-05 0 0 0 -9.606234952174663e-07 +1842 0.00027252820703336405 0.0004429123628032811 0 0 0 8.624324099168499e-05 +1847 8.726520421884787e-05 0.00033166902438577865 0 0 0 2.3377787306455374e-06 +1853 0.0002476566279875843 0.00024974139111826066 0 0 0 -6.664890432834661e-06 +3806 0.00067869736376136 -0.00010517905892267767 0 0 0 -2.9870444285008394e-05 +1902 0.00037680781079425763 0.0003644063932083767 0 0 0 -1.575362588965015e-05 +1911 0.00030011216025360976 0.00037397398799212105 0 0 0 1.2442702643338013e-05 +4591 -0.00017669759494722044 -0.00027695746812625405 0 0 0 -3.902171461224783e-05 +1939 0.00033040118526962096 -7.308433160760405e-05 0 0 0 -5.928636186967994e-05 +1952 -0.00041131888855306097 0.0003786728138906978 0 0 0 9.73290767351869e-06 +1961 5.401280569655794e-05 0.00034744537017538307 0 0 0 -1.8572653069341144e-06 +848 0.0005540578757435874 -0.00019438919081947928 0 0 0 -3.590835082145746e-05 +2017 -0.00012127123952760691 -0.00017332316677680278 0 0 0 -1.8095357534725942e-05 +9031 0.000468996093497079 -0.00023428798504004748 0 0 0 -2.0108442307027512e-05 +273 -0.0003122007371809281 0.0003726726096354554 0 0 0 -1.6203908978059204e-05 +2088 0.00043601315677085326 -0.0003920219147610393 0 0 0 -3.446323477938583e-05 +4735 0.00041365635073836753 -0.0002412425856935662 0 0 0 -2.697883177549999e-05 +2103 0.0005897665679414261 0.000228971601300599 0 0 0 -1.5208353113471469e-05 +2113 2.0111581741429945e-05 0.00030309612069815496 0 0 0 3.438107245943696e-05 +2145 0.0005971475208055988 0.0002479775771165898 0 0 0 1.4595522579127642e-05 +2150 0.00035779513836099497 0.00020333913006682198 0 0 0 3.8576801726257354e-05 +2264 0.00045752623209666246 0.0003931977560947362 0 0 0 -2.4043961740928886e-05 +2288 0.0005066676836666129 0.00019616023420092758 0 0 0 -1.2661126320811209e-05 +2312 0.00038740198562391587 0.0004567197799076066 0 0 0 2.408338631773196e-05 +2356 0.0003196178227974678 0.00038001806822320045 0 0 0 -1.7858812933124043e-05 +2387 0.0008372779385522318 0.00011258011741771768 0 0 0 -3.920295227920777e-05 +7421 0.0006420183064720651 -0.0003606394346868705 0 0 0 -6.454894133197452e-05 +9043 9.6672121224223e-05 -0.00032992197769405674 0 0 0 2.2309774900052944e-05 +2499 0.0004915647675012378 0.0005027198918034644 0 0 0 -7.701118046553553e-05 +687 -0.000821292874439097 0.00043481003576795164 0 0 0 -4.201725705681895e-05 +2564 -6.553844350817251e-05 0.00029274822164684157 0 0 0 -1.1668522674553541e-05 +9454 0.0005717683391993218 0.0002673109554797669 0 0 0 -1.8987817255518142e-05 +2578 0.0002168155366825251 0.00039336711586081946 0 0 0 -2.116860534364122e-05 +2604 9.248756004391823e-05 -3.501446031123058e-05 0 0 0 1.309963236092723e-06 +2612 0.0010129280118442892 -2.8610122287666415e-05 0 0 0 -2.620142886578091e-05 +2679 -3.979285436050152e-05 0.0003877179066796366 0 0 0 -1.446189365993338e-06 +1623 -0.0001329752119331426 -0.00012193689233317216 0 0 0 -2.568555041243415e-05 +2698 0.0005733107745498316 0.00016384782643570544 0 0 0 -7.503542788223967e-06 +2708 0.0007844219647876739 -0.00020474210532153323 0 0 0 -1.8261922454718446e-05 +9903 -0.0004172214597534199 0.0003215935706294201 0 0 0 -2.0996115512357583e-05 +1865 0.0006293096654754018 -0.00016352382306673995 0 0 0 -3.166173433707401e-05 +2783 -4.247823010490306e-05 -0.00021645563383397952 0 0 0 -2.8196262845071316e-05 +2811 0.0001733445102977661 0.0004798872039346913 0 0 0 0.00013717887292998774 +1595 -0.00025200385412971763 0.000394931664454255 0 0 0 2.489340524062837e-05 +2877 0.00015300354511801862 0.0003717036868421426 0 0 0 -2.5278982074505334e-05 +2916 -2.316367045509534e-05 -0.00014891512956172938 0 0 0 -1.874240737828041e-05 +2960 0.0005665612773205858 0.0003308336007239733 0 0 0 3.985711366351452e-05 +2965 0.0006338551082744384 0.0002751374912727983 0 0 0 -3.2590221774284136e-05 +3009 0.0005125035056985077 0.00020776649482307316 0 0 0 -9.326355632391605e-06 +3014 0.0006107776697083764 0.00015170631056948575 0 0 0 -1.0854294207640709e-05 +3017 0.00027142351506431365 0.00024976152790826233 0 0 0 -3.6975675999342127e-05 +3143 0.0008606438846424909 -0.00011730667643977147 0 0 0 -2.255155911559486e-06 +1607 -3.606457688942278e-05 -0.00041621507624682575 0 0 0 -5.2940252782539277e-05 +3157 0.00041520521245383163 0.0004022228177464249 0 0 0 -7.412650629599398e-05 +3172 0.00047857309376914283 0.0004095304274618348 0 0 0 3.083325790186346e-05 +3181 0.0005011558613319417 0.00028827531938101827 0 0 0 -2.225045824541468e-05 +24 -9.356689688456873e-05 0.00017823782236247324 0 0 0 -3.0223349934152607e-05 +3204 0.0001171606207797328 -0.0002386439434388272 0 0 0 -1.83069835618558e-05 +3213 0.001361754494893304 -0.00207880452268754 0 0 0 0.0008391881149185463 +3232 -0.00011414382101826064 -0.00024068925395589436 0 0 0 -2.8283320125683757e-05 +3247 0.0005626871466307047 0.0002382033646811923 0 0 0 -1.4630429269847144e-05 +6348 -0.0003767630636084988 0.0003974270217281547 0 0 0 -9.654360661814989e-05 +3269 0.0004615962872461864 0.00040313113341081954 0 0 0 -0.00010761727178642455 +7499 0.0003214844300208671 -0.0003877637945337711 0 0 0 -5.047502432667721e-05 +3354 0.00041127922808456986 0.00030651726203796215 0 0 0 -3.568769537697321e-06 +3363 0.0008087053859169963 -0.00024073333153586444 0 0 0 -4.4071664305636e-05 +3377 0.00029987649760288877 0.00045093225289585896 0 0 0 4.2747505096868115e-05 +3378 0.0008093478756860204 0.00016488379892233064 0 0 0 -1.9182875418758765e-05 +5621 0.00047950932501494067 -0.0003442739830867626 0 0 0 -4.381390405540266e-05 +3426 0.0006093847198613732 0.00020449114047515896 0 0 0 2.466943930319697e-05 +3445 -8.32736045132327e-05 -0.00045595606454305946 0 0 0 -4.414003023171956e-06 +3464 0.00026370478504041117 0.0004246837177129386 0 0 0 8.762335248110057e-05 +3501 -7.37989220694548e-05 -0.00021380164810615005 0 0 0 -3.629072271642477e-05 +3537 0.00013954664520324453 -0.00019125303311380597 0 0 0 -8.369832909088187e-06 +6137 -0.0008566877151112021 0.000477641065217581 0 0 0 -7.153968348380466e-05 +3623 -0.00022343536587872694 -0.00038508232382359687 0 0 0 -3.480703983532039e-05 +3625 0.00027670395859767075 0.00024308254535737134 0 0 0 -7.221823315567373e-06 +3645 0.0005447636902979533 0.0001667880594722459 0 0 0 1.0205455071709495e-05 +9944 0.00019831051488494432 0.00033458143620988877 0 0 0 -1.1432020150401897e-05 +3738 0.0004630425497211141 0.0003009697054701356 0 0 0 -1.0499475199515065e-05 +6529 -6.0983154132449576e-05 0.00029256979143781563 0 0 0 -8.438208671457426e-05 +3060 0.0006972716701595139 -3.740613154812396e-05 0 0 0 -2.4004233483484065e-05 +3798 0.00064932841449791 0.00015485537924383848 0 0 0 -4.323868254167176e-05 +3800 0.0003403675766784546 0.0001889952563828487 0 0 0 -4.0262562539497374e-05 +3808 -1.3573130044537376e-05 -3.4940279623841654e-05 0 0 0 5.3238442277996745e-05 +3843 0.00022087631480817733 -6.22758868204863e-05 0 0 0 -1.0448224317655057e-05 +3858 0.0003865153938227323 0.0003648488336977221 0 0 0 -3.5150618668982235e-05 +3913 0.0006229125813253985 0.00020997309972278032 0 0 0 3.7688412758084092e-06 +3987 0.00012277920384577424 0.00037592718585638396 0 0 0 -2.4027364858298493e-05 +4007 0.0005017522183444336 0.00042533630015282616 0 0 0 4.153512279008223e-05 +4030 0.0006161945546752655 0.00024460576467499716 0 0 0 -1.8836612238476236e-05 +4081 0.0005684551892442809 0.0002799280920434874 0 0 0 7.686096244788524e-06 +4087 0.0005084468173911484 0.0002455494021770584 0 0 0 -2.0307327806572936e-05 +4102 0.0008876048708213811 -0.00017888013555728916 0 0 0 -2.863405701920129e-05 +4103 2.5026865317654628e-05 0.0003165858952226666 0 0 0 -3.156908092915806e-05 +7286 0.0005961153543313247 -0.0003391721797249495 0 0 0 -2.982653450356569e-05 +4120 6.247980425326008e-05 0.00035310375318390333 0 0 0 -5.40539617358098e-06 +4129 0.0003094450535282095 0.0003190195302218083 0 0 0 -1.3760012862965898e-05 +8216 5.7009947144774885e-05 -0.0003259746712842032 0 0 0 -1.2243716978670366e-05 +4160 -0.0002976397619733879 0.0004310676393346639 0 0 0 7.200082865582838e-06 +9504 -0.0003817135429583235 -0.000151987432421442 0 0 0 0.0005573232564776825 +4216 0.00020583794975392717 0.0004607809901684943 0 0 0 -0.0001118893785062926 +4223 0.0006885152886756995 0.00018144276444725759 0 0 0 5.693452004030034e-05 +1383 0.0008516057686310018 -0.000219166959645095 0 0 0 -2.903374095284988e-05 +4291 0.0006379961926765291 0.00019407154690713883 0 0 0 2.798809966189227e-06 +4330 -0.0003690360621938544 0.0004363631238416279 0 0 0 1.3659365187970261e-05 +4338 -0.00011750561492037086 0.00031387602170076823 0 0 0 4.628197837171578e-05 +9477 0.0008169463821372156 0.00014288478462604634 0 0 0 7.265356450513537e-05 +4393 0.0003687354953264552 0.00010188508759605033 0 0 0 -3.352923247433425e-05 +8069 -0.0003091496161507176 -3.7155567334052295e-05 0 0 0 9.918296576645064e-06 +4462 0.0005191961153771829 9.404049223615672e-06 0 0 0 -0.0002067393993939732 +4582 0.00031294573089241643 0.00045334683939278437 0 0 0 -4.525300892739322e-06 +4593 -3.9367542865244224e-05 0.00031745221233198177 0 0 0 1.1909320924411846e-05 +7291 0.0006786658257114664 -7.419923541221008e-05 0 0 0 -2.503326915642544e-05 +4655 0.00015420635728520397 0.00038177039943937055 0 0 0 -4.51213307643743e-05 +4663 0.0003876387557734029 -0.00015365519551565224 0 0 0 -5.492283534565052e-05 +4712 0.00030727747377522446 0.00036635925189991203 0 0 0 -2.593011409735601e-05 +4763 -0.0005036488099836532 1.8199758669864046e-05 0 0 0 6.818844197781817e-05 +4775 0.0006915897087134793 0.00022564863443352354 0 0 0 -6.862585481882716e-05 +113 0.0002446769187082751 -0.000254940887042266 0 0 0 -2.8896377857115042e-05 +4827 0.00040045750391376765 0.00038404811032599265 0 0 0 6.189140067760708e-06 +4889 0.00042604348340313737 0.0004181001559748906 0 0 0 -3.46945624486028e-05 +4891 0.00040003284129638085 0.00016090755865628726 0 0 0 1.119503292876801e-05 +4899 0.0004118238791673159 0.0002709281398439836 0 0 0 -1.455559662988394e-05 +4919 -0.00010354031405159404 -0.00012588858047651402 0 0 0 -3.8255523396131874e-05 +9285 0.00042072557290021413 -0.00025330774977892664 0 0 0 -1.7882158213709024e-06 +4937 -9.360439753981292e-05 0.0006771672674913677 0 0 0 0.0003163164730078749 +4941 5.0357267330302825e-05 2.9100990554395495e-06 0 0 0 -0.00010623679065888745 +8443 0.0008064128981770745 -0.00019978233641291772 0 0 0 -3.1318029647395725e-05 +4994 0.0004176250553777879 0.0003082095169505057 0 0 0 -6.0204619204025146e-05 +5012 0.00032689844846832845 0.0004115451098443089 0 0 0 4.936784703569074e-06 +9027 0.0006998190358296884 0.00016015455728224232 0 0 0 -4.9778696075103193e-05 +5077 0.0004842729499645274 0.0002920171702996341 0 0 0 -1.4603946806759804e-06 +8338 -7.382208890929465e-05 -0.0004867237921663498 0 0 0 -3.5022115280269716e-05 +5096 0.00011676665890189207 -8.07767681554127e-05 0 0 0 -3.8892116618591506e-05 +5112 0.0002566704328150389 2.2009969768430312e-05 0 0 0 -2.6994326349021323e-05 +9112 0.0008176612771232318 -0.000603876580924055 0 0 0 -0.00012780474114726113 +5152 0.00012470624343579028 -0.00037305017355813 0 0 0 -0.00010967260024724028 +5167 0.0003701158147131443 -0.00011679477196958897 0 0 0 -5.732766115814436e-05 +5173 0.00015743716637767752 0.0009866398973549652 0 0 0 0.00038884099767812284 +5183 0.000384934698286667 0.00020841093292104366 0 0 0 2.7727723620412865e-05 +5216 -0.00023826994908339837 0.00039248653989450865 0 0 0 1.5832691121200535e-05 +5225 0.000679588225761219 0.00021192985158250907 0 0 0 6.303913463405568e-05 +5233 0.0006496399507266212 0.00016338609571202173 0 0 0 6.109816323471271e-06 +5274 0.0004553049709373396 -0.000229021731542956 0 0 0 -3.9802248695072114e-05 +8895 -9.638745349978429e-05 -0.0006083522993871132 0 0 0 -1.1942540943065422e-05 +1391 0.000625320225763576 -0.000268867277560111 0 0 0 -3.82994863941663e-05 +5313 0.0005357222290165115 0.0002655103144689526 0 0 0 -1.0836187044652938e-05 +8315 -0.0022319770701270825 0.00028910118332158664 0 0 0 -0.0016468614893499376 +5398 0.0006203808127037133 0.00021910566527923772 0 0 0 -2.4452806030941314e-05 +5404 0.0004502254525401889 0.0003782223452796566 0 0 0 0.00020469514821797182 +5415 -0.00014585624488661883 -0.0002060757643623694 0 0 0 -2.439924536058905e-05 +5465 0.0006052505820461192 0.00027432166060350143 0 0 0 6.866356880205572e-05 +9715 0.0003872994684280605 0.0002386164054850021 0 0 0 2.8575843461633196e-05 +6647 -0.00017473931463725067 -0.00011274203937027534 0 0 0 -3.040670949460921e-05 +9144 0.00037259709569715323 -0.00031325853322237415 0 0 0 -2.4885473447553297e-05 +5531 0.0002175895567018245 0.00028426099302145087 0 0 0 -2.494866315015882e-06 +5554 6.489999745033091e-05 -7.090961394040877e-05 0 0 0 -3.735224915147861e-05 +5625 -7.836602843459969e-05 -0.000274798913570718 0 0 0 -3.059753243676361e-05 +9933 0.0002892599395936122 0.00031666765133379427 0 0 0 -1.9851664291135646e-05 +5663 0.0005394748476004409 0.0003722202163541867 0 0 0 -7.298905431784146e-05 +5318 0.0006767043328821854 -0.0003182154327126847 0 0 0 -1.3371984679435447e-05 +5691 9.944649665266258e-05 -0.00020701451833634487 0 0 0 -3.056662262824116e-05 +5696 -0.0024990715308053687 -0.0017000706824405465 0 0 0 -0.0015774725246208272 +9799 0.0003848585612789692 -0.0002111984779173171 0 0 0 -2.2913277048725828e-05 +4267 -0.00040662480337567714 0.00039347158954275294 0 0 0 -0.00011736320564627608 +5803 0.0006031536454857689 0.00028119036084760745 0 0 0 8.149585493915338e-06 +5809 -0.00034478380749792934 0.0004581185803639386 0 0 0 -0.00011534044966522662 +5853 0.00020976934788539584 0.0003890883939634512 0 0 0 -1.957098452520732e-05 +5861 0.00039572866192211025 0.0003406591614286048 0 0 0 -4.1134479218613674e-05 +5863 0.001025415187619448 -4.816536046680847e-05 0 0 0 -3.135870168281139e-05 +5879 0.0009059897822289908 0.0005632609779657755 0 0 0 -0.0007003624788766434 +5882 4.527816059164235e-05 0.00024973971735508496 0 0 0 0.0004729927762496826 +5906 0.00041478589522241603 0.00013178863917879724 0 0 0 -8.633531206958257e-05 +1777 -0.0005551142545449684 0.00044557294364377145 0 0 0 -8.503512628925999e-05 +5925 -0.0004329991920596168 0.0003901279801732791 0 0 0 5.186577616755168e-05 +5939 0.00017516206650698582 2.817718938174282e-05 0 0 0 8.592978687121059e-05 +5958 0.0002065635878021063 -0.00011495115873771791 0 0 0 -2.960867834514521e-06 +1617 -0.0004716458817233361 0.0003565197750276096 0 0 0 -6.687141861982231e-05 +6004 0.0002080252493950254 0.00035860810345204295 0 0 0 -3.54735575583573e-05 +6028 0.0006808295900262625 0.00010525796100004279 0 0 0 -3.3964227559534064e-05 +4285 8.593604161908742e-05 0.00037573992022815116 0 0 0 0.00029976493831681417 +6049 0.00013097656570263864 0.00037442001058415224 0 0 0 -2.1773713151303422e-05 +6057 0.0007155247458415849 0.00013706665958832705 0 0 0 -1.9014641390962597e-05 +7394 -0.00042150923613847984 0.0004024552332972873 0 0 0 -0.00014674404947458353 +6065 2.8967417403585287e-05 -0.00020704428985475864 0 0 0 -3.586197637632659e-05 +3595 -0.00041976993510249214 0.0003674408785504765 0 0 0 -5.250495964821416e-05 +6156 -9.607265336802018e-05 -7.314256556320815e-05 0 0 0 1.0212901646072684e-05 +6176 0.0003378573519299474 0.0003930656464804324 0 0 0 2.7786390863860204e-05 +6178 0.00040045970611311246 0.0003620248377258622 0 0 0 5.013346952993344e-06 +6179 0.0006931419001953162 0.00014323594601380694 0 0 0 -1.5583626891634015e-05 +6194 -6.347666255678698e-05 -6.0493178297183805e-05 0 0 0 2.680129590273007e-05 +6247 0.00047977468184916066 0.0004360531272881249 0 0 0 -3.945439327528822e-05 +6269 0.00030880681782052366 0.000445170404956847 0 0 0 -5.903089731359857e-05 +6278 0.00032099737468128074 0.000362163369002024 0 0 0 -3.1658171437735347e-05 +6283 0.0008242160285940148 0.00019938192790989526 0 0 0 -7.183691342102821e-05 +6314 0.0003209748219309421 0.0004573727828326402 0 0 0 -5.636663296975695e-06 +6321 0.00036151020207731305 0.00021778952856111585 0 0 0 -7.292646495094115e-05 +3012 0.0007823879557395247 -0.0002609239729114802 0 0 0 -2.6535020628385477e-05 +9677 0.00011310024961115901 0.0004029739663007257 0 0 0 -4.052733030714499e-05 +6380 0.00036797220495924884 0.00031748415542502695 0 0 0 -2.1626611337719253e-05 +6552 -3.7265987124956174e-05 -0.00025854153412705133 0 0 0 -3.0974025026905135e-05 +6393 0.00044167227582372133 0.0004327924049737344 0 0 0 1.0228171551116008e-05 +3343 -0.0002519798652598323 -0.0003391738317447019 0 0 0 -3.053568238074638e-05 +7685 0.0006065850047025829 -0.0003988894123913897 0 0 0 -4.127901257896318e-05 +6424 0.0005709394950177345 0.00015949683547272176 0 0 0 1.2674866319375374e-05 +6436 0.0007291029822725027 0.00013196898255166502 0 0 0 -2.2270927983256663e-05 +6541 7.271365108666263e-05 0.000355177392210938 0 0 0 -5.0903386605439635e-05 +9442 -4.280042395840247e-05 0.0003217892287645988 0 0 0 -3.9418178042617346e-05 +9256 -0.00016248514428419204 -9.366334640808646e-05 0 0 0 5.210148063966056e-07 +2738 -0.0005559085175988497 0.00037184504484331834 0 0 0 -6.317679809165311e-05 +6600 0.000419263183296116 -0.00017378180079157066 0 0 0 -8.2980512496804e-05 +5497 -0.0004010794767110061 0.0003755081493306739 0 0 0 7.297688492147446e-05 +6861 -2.649600108643462e-05 -0.0002911288235103912 0 0 0 -4.877610881800944e-05 +1811 0.00021354507460441495 0.00045558144272776465 0 0 0 1.7621619463440043e-05 +6676 0.0003598388428400061 0.00019159888045201765 0 0 0 -4.571679423199567e-05 +6841 4.488467441229008e-05 0.00027979973196897725 0 0 0 -2.322575007987423e-05 +6685 0.00034084435366009386 0.00021134214323366058 0 0 0 -5.969484216464722e-05 +6686 0.00024147071822483492 0.0002948543493428666 0 0 0 -2.5857567467002282e-05 +6743 0.0004148778843148217 0.00036440810547350594 0 0 0 -1.567003846010814e-05 +6749 0.00030950634194407367 0.00032182652990604455 0 0 0 -4.49458246146139e-05 +6752 0.0002990732606421218 0.0003605393993278191 0 0 0 -3.196618364220538e-05 +6827 1.986030576248337e-05 0.00031409512271449993 0 0 0 -7.591197216060244e-07 +6837 7.833651452198041e-06 -0.0003273127667324175 0 0 0 -3.815846170947966e-05 +9892 0.000482366884562388 0.00056747501152022 0 0 0 -0.00022029920258902132 +6856 0.0002787158716014758 0.00035689783379105617 0 0 0 -1.4616654212235344e-05 +6868 0.0006267185448196338 0.00019441299654542014 0 0 0 7.828900397636392e-06 +6875 0.000292051664417515 0.0007193535525788067 0 0 0 -6.495169369855226e-05 +6880 0.000570107753730692 0.0002383603271992694 0 0 0 9.566478180537142e-06 +5388 -0.0002734796100280086 0.0005396620919639729 0 0 0 -3.03063769470342e-05 +6921 0.0006653111674223509 9.757546548825111e-05 0 0 0 6.8491565937059875e-06 +6925 0.00017918260414925323 0.0002613965428412634 0 0 0 -1.1735416290969471e-05 +6928 0.0008237947859595749 -0.00015640179669231864 0 0 0 -2.9446910285332e-05 +6932 0.0005940067454433017 0.00014380981822760083 0 0 0 -1.3609086949823675e-05 +8551 -0.00018855455843869265 -8.580113839547385e-05 0 0 0 -3.031534999967458e-06 +6465 -0.0006138411855428072 0.00040335359754118885 0 0 0 -0.00010644132133483184 +2570 -0.00027606821538770585 -0.00030498372048761417 0 0 0 -3.5114162442767804e-05 +7083 3.221522794195984e-05 2.299388747471166e-05 0 0 0 9.821619816684857e-05 +7116 0.00028110380242591325 0.0003703488717664074 0 0 0 -2.5581208694999214e-05 +7145 7.228428236221191e-05 0.0003998070949801472 0 0 0 6.849902719009925e-06 +7167 0.0009577956640944621 8.008026724436708e-05 0 0 0 4.261268022438874e-05 +7168 0.0006389422595483531 0.0002295051247939873 0 0 0 4.423688252792621e-06 +7185 0.00042963037129756243 0.0002763673274223346 0 0 0 8.010764774268966e-06 +9188 -0.0006254498329512693 0.0003248521418788904 0 0 0 -0.000264075061320652 +7299 0.0006205000796674148 -0.00019120903649976384 0 0 0 -7.375194047233709e-06 +9007 0.0005582785323276169 -0.0005380725141992175 0 0 0 -0.0003171777947258565 +8763 -0.0003253197697549811 0.00034958992409540374 0 0 0 0.0001557095620405984 +7382 0.0002896916615778593 0.00025220153325507234 0 0 0 1.4152213202360312e-07 +6384 0.0011917493028871567 -7.867574513219728e-05 0 0 0 -0.00010045564309199423 +7416 0.00010537111608350635 0.0003123900686566339 0 0 0 -6.786130407006494e-05 +6570 0.0004492660557784726 -0.0002441237573403051 0 0 0 7.940433393151415e-05 +7424 0.0007094175219542572 0.00012628220191230368 0 0 0 -8.95535850678959e-06 +7435 0.000546199052158155 0.00028292139483552294 0 0 0 -4.564485803186256e-06 +7436 0.00023390735267113204 -0.00010733621871307612 0 0 0 -4.272191558514445e-05 +4137 0.00028829791307834055 -0.0005383298851761851 0 0 0 -5.756262179152821e-05 +8138 0.0005823579013576368 -0.00016212028675732584 0 0 0 -3.5728424846824686e-05 +7478 6.24048167169945e-05 0.0003195654360233215 0 0 0 2.4266553443474815e-06 +7313 -0.0020304051477555056 -0.0008177996752583108 0 0 0 -0.0017244156610802745 +6757 -0.0005894279715067046 0.00040421797596278114 0 0 0 -5.2004267745881895e-05 +7543 -0.0001552461326926432 -0.0002438192765391928 0 0 0 -1.6943825233168398e-05 +7563 0.0009268159142238493 -3.2344060947710473e-07 0 0 0 -5.2458956628590563e-05 +9916 0.0009656279131249364 -1.276530745021493e-05 0 0 0 -7.361509648653227e-06 +7586 8.940491462727117e-06 -0.00031109314052219324 0 0 0 -2.0855772370754674e-05 +7600 -0.0012685484867695066 -0.0008822856196990464 0 0 0 0.0006358389143950473 +7611 -1.8007919512000814e-05 0.0003263598596799873 0 0 0 -3.809211441571095e-05 +7615 0.00028463463774256034 0.00036095931350435453 0 0 0 -6.705806762992105e-05 +7621 0.0003599144126684899 0.0004600742007088971 0 0 0 -7.401538991361932e-06 +7629 0.0004063401690070662 -0.00026997399495535244 0 0 0 -1.2455279736941866e-05 +7632 -0.00010079550043046852 -0.0005615560990010135 0 0 0 -6.425983949914472e-05 +7636 -6.543059076965858e-05 -0.00028730590471866545 0 0 0 9.17761022295236e-06 +8263 0.0005677317746638918 -0.001660372363885989 0 0 0 -0.0012725208934076038 +7663 0.0007593144555475835 -0.00017365189889272307 0 0 0 0.005806543654621545 +7673 0.00031345511676440644 0.00021103432633869744 0 0 0 -6.287613820624232e-05 +7677 0.0002697162201374836 0.000347906054784683 0 0 0 -7.229950820026383e-06 +7687 0.00044662521676235495 0.00045661068589544356 0 0 0 -4.195182085324494e-05 +9559 -1.3512058627176212e-05 0.0003120754420531915 0 0 0 -1.4901889072171571e-05 +1846 -0.0003634974995026798 0.0003854421953266467 0 0 0 -1.088947991464511e-05 +9294 -0.0006846242667630423 0.0004056994777075674 0 0 0 -2.384059523030486e-05 +7765 0.0006412915313180153 0.0002455140457365252 0 0 0 2.359859961642233e-05 +7795 -0.0007787424321165346 -0.0012480306101352282 0 0 0 0.0007691111207732149 +3475 0.0006547942330379806 -0.00029194746298109376 0 0 0 -4.0882069708518084e-05 +7821 0.00033796637516059365 0.00034468999539500293 0 0 0 0.00019123961365330976 +9202 0.00039342814999601954 0.0002776726036636875 0 0 0 -2.1653122338137055e-05 +7839 0.0005024532010125953 -0.0001419957679906139 0 0 0 -8.498510590657221e-05 +7864 7.850733988390944e-05 -0.00028210746613680784 0 0 0 -2.2036087807497297e-05 +7878 4.422953760878865e-06 -0.00016524895410942433 0 0 0 -4.9158773872036845e-05 +7534 -0.0005860617217969775 0.0003030996949815552 0 0 0 -2.06884018247425e-05 +7926 0.00042766529951743747 0.0003084332877370558 0 0 0 -8.088473054728226e-05 +2941 -0.0001569497298872092 -0.00016813539858784473 0 0 0 -1.4121357857215055e-05 +7944 0.000671682169878198 0.0001928673909555987 0 0 0 -1.2868562046376057e-05 +3064 0.000231643814136583 0.0004168518219377719 0 0 0 -0.00017934158588441937 +9866 0.00040546003740212367 0.0003406496842853432 0 0 0 -8.612711212953611e-05 +1554 0.0005603514472053655 -0.0003238033105352802 0 0 0 -3.321241214485188e-05 +8030 0.0008680504601535905 -0.00013798209855748453 0 0 0 -3.8764299051161035e-05 +9882 -0.0002344940542962379 -0.00035209313242152355 0 0 0 -3.105868162471799e-05 +8073 -0.00012754300942551612 0.00029754766354428896 0 0 0 -9.00002565708959e-05 +9068 0.0006603075688612091 1.3718832039893037e-05 0 0 0 -7.470971134005262e-06 +8080 0.00045758769955031055 0.0001646319809127921 0 0 0 -3.125570105918148e-05 +8092 0.0008788326721921054 -0.00014468066782402807 0 0 0 1.4574621899293018e-06 +8097 0.00018021062695914084 0.00037876034991675953 0 0 0 -2.6957947520458192e-05 +8146 0.0006929148893332471 6.979986524205328e-05 0 0 0 3.743273207363011e-05 +8152 0.00028794548849608273 0.0003773402760539175 0 0 0 2.6687612719907486e-05 +8840 0.00031336430855609675 0.000370725051558721 0 0 0 -8.214944736375714e-05 +8213 0.00044393264214896336 0.00041033012692688224 0 0 0 0.00011286132396172808 +8136 -0.00035282775817935605 0.0003978482847409391 0 0 0 5.938765962996698e-05 +9826 -6.694311644957836e-05 -0.00028553963953972594 0 0 0 -4.310775663503594e-05 +8222 0.0002831777932122482 -2.375435666505694e-05 0 0 0 -0.00012754168966709048 +9507 0.0005474154646845562 0.0003870238242354212 0 0 0 -3.935204771779486e-05 +8291 -4.345856347465146e-05 0.0003108882765667483 0 0 0 0.00011501592003042757 +8311 0.00031430158416271393 9.584568397920758e-05 0 0 0 4.183790852936024e-05 +8340 0.00011307621257610155 0.0006344816979434989 0 0 0 0.000375332530398258 +8357 -3.833488683376734e-06 0.00030774124834373234 0 0 0 -5.164178463040919e-05 +8199 -0.00033076887340186255 0.00040398307541941676 0 0 0 5.117045012523851e-06 +8414 0.0006012776138075362 0.0002223120660755437 0 0 0 -6.341605622194116e-05 +8444 0.0007096267455973538 -7.412342029405794e-06 0 0 0 -5.0789364598959156e-05 +8471 -1.8831822177737916e-05 0.00031804231546580695 0 0 0 -1.5447275256204622e-05 +8576 0.0005862769281065171 0.0002484003396447626 0 0 0 -9.039294096663722e-06 +8579 0.0003848760268179247 0.00029824109478938606 0 0 0 0.0005430917582877174 +8677 0.0006450954747998029 0.00016342451919729333 0 0 0 -2.5891817790432523e-05 +8690 -9.200857457499987e-05 -5.40418657137486e-05 0 0 0 -3.938849995171107e-05 +8703 0.00021965385356274042 -0.00010608870348825709 0 0 0 -1.4986359405597253e-05 +8750 0.0006381338164855595 0.0002111796077565415 0 0 0 -2.8285854604073317e-05 +6119 -0.0004692382725587321 0.0004383615075561457 0 0 0 2.6422813025596044e-05 +8764 0.00043944314184470756 0.00030477491178179406 0 0 0 -1.1692538755348132e-05 +8772 0.00020342472164134863 0.00027389495161575446 0 0 0 -3.544053091371854e-05 +9855 -7.026120289472707e-05 0.00029068547156967925 0 0 0 -2.174696032497287e-05 +8818 0.00019854007821216925 0.0003256688642898889 0 0 0 -4.943121526823399e-05 +8821 8.739283170924118e-05 0.00028147192204869357 0 0 0 -9.495115148350248e-05 +8098 -8.73281866512422e-05 -0.0005582942129167078 0 0 0 -1.385272739257194e-06 +1581 -0.0005181852699427864 0.00039397551329980616 0 0 0 7.723227775097605e-05 +8897 0.00018782752547075572 0.00027174636644047417 0 0 0 1.763624301078309e-05 +8900 0.00020848626301984654 0.00039042960211044464 0 0 0 5.9130966457037715e-05 +8913 2.2086796433177658e-06 0.0012026894030767654 0 0 0 -0.0013391149931759967 +8959 0.000633821127338789 0.00016296897673995572 0 0 0 4.2195963259314555e-05 +9179 0.00029705472541583845 0.00036325531631482583 0 0 0 7.196300269135381e-06 +372 -0.0002805034963519632 -0.00010942120935695165 0 0 0 -3.575232722353175e-05 +1148 -0.0001893421769234758 -0.00021691390538544297 0 0 0 -3.236656174783507e-05 +2234 0.0002050113712377673 -0.000496471343526434 0 0 0 -8.823909344375105e-05 +3643 0.00036306606699168867 -0.00037048930044980587 0 0 0 -4.176654170107632e-05 +2423 0.00047409475772847354 0.0002740777889948076 0 0 0 4.08907028783619e-05 +2105 -0.0006949247510584556 0.0004113519951549924 0 0 0 -6.991746283263076e-06 +7408 0.00026958025746225416 -0.00047797845604595816 0 0 0 -4.48472339134642e-05 +5801 0.0011298554695399524 -9.445728434370321e-05 0 0 0 -0.00010302599146030273 +877 4.6423261111283825e-05 -0.0005325084535469222 0 0 0 -4.6108201967483475e-05 +5524 0.0010994696789972528 -4.650766013657943e-05 0 0 0 1.093374004054152e-06 +7480 -0.0006043850456402976 2.8690896991556764e-06 0 0 0 -0.00030162351278571845 +5285 2.3238401998474e-05 0.0002633057670945076 0 0 0 0.00022809883427010096 +4635 0.0007421082621976292 0.00011754949600905446 0 0 0 -8.507406435778166e-05 +3399 0.0007321480711848868 0.00012567562103282185 0 0 0 5.931928189711907e-05 +9553 0.0007082345863624981 0.00013068439510394324 0 0 0 -5.560094653079788e-05 +2900 -0.000582174289014934 0.00042988666600287344 0 0 0 -0.0001919703439287218 +9754 -8.3415993231063e-05 -0.0006108184607994276 0 0 0 -1.8863323226646585e-05 +3788 -3.898239611040972e-05 -0.0005885618022434906 0 0 0 -3.996185583318658e-05 +9679 7.636746939496464e-05 0.0018583532761893688 0 0 0 -0.0011575573771024595 +3700 0.00010035436280032773 -0.0005537449642792388 0 0 0 -5.525346317138756e-05 +5339 -9.34747594737715e-05 -0.0006284783108938208 0 0 0 -1.3372725415256876e-05 +5522 0.000524771123467781 0.0002216203916599458 0 0 0 -1.884943472147811e-05 +480 0.0010208153523674993 6.202047799581191e-05 0 0 0 -3.458531614872133e-05 +5165 0.000705360069019878 -0.0004021302841816152 0 0 0 -3.963638816009377e-05 +6556 0.0010632222301083145 -4.0531640207431694e-05 0 0 0 -5.158826975162419e-05 +6403 0.00012652127710029994 0.0003836203019091634 0 0 0 -2.983598107458169e-07 +100 -0.0002473571204023381 -0.0005856278921536899 0 0 0 -3.1126619127741215e-05 +9344 0.001837244922442871 0.0003166438959806587 0 0 0 0.0015332565467100097 +3866 0.0005946216905053398 -0.0004108628246010336 0 0 0 -3.082351613595969e-05 +977 0.0003878669690597769 -0.0004611078961255511 0 0 0 -3.667835685043667e-05 +2644 0.0005260243035446711 -0.00039149571535065697 0 0 0 -5.4119991580385416e-05 +8056 0.0008148338850460103 -0.0003669249260437419 0 0 0 -5.472248886604411e-05 +6671 0.0009095108775803468 -0.0002075887882404641 0 0 0 -9.994469838902389e-05 +48 0.0006400339765023944 0.00013432796070132768 0 0 0 -2.4118361066711643e-05 +82 0.0009624055651223328 -0.0003619207291665393 0 0 0 1.053755266418445e-05 +135 0.0011155393593098976 -0.0006188184756925833 0 0 0 2.1889011446072138e-05 +2602 0.0007718637456283003 -0.0005474959002128187 0 0 0 -2.3066254300911972e-05 +2774 0.0011182734255046959 -4.421822535633405e-05 0 0 0 5.914414213872138e-05 +9864 0.0005206861998449397 -0.0006627336720498772 0 0 0 2.6978319822404777e-06 +349 -2.206491425358753e-05 -0.0005181497607614743 0 0 0 -2.512388723016687e-05 +388 0.00027177146770734694 5.5906430861168714e-05 0 0 0 2.4207622870918496e-05 +7311 0.0003934387274302487 -0.0008471257626121018 0 0 0 -3.336432565686099e-05 +404 0.0011105131538573254 -0.00014226658154266737 0 0 0 2.7884381081584535e-05 +408 0.0005768116990624265 -0.0006950143187814097 0 0 0 3.367404589063905e-05 +421 0.0008956522936496912 -0.0004480121399568633 0 0 0 -1.2927421138186187e-05 +461 0.0001352666389226421 -0.0002986991961594062 0 0 0 -6.510544697376397e-05 +524 0.0006084652324254752 -0.00031323944165013735 0 0 0 -6.6128659814413575e-06 +532 0.00035985828245791254 -0.000741244187117513 0 0 0 3.7745444416342416e-05 +558 5.146299642440225e-05 -0.00046784038505542837 0 0 0 5.6037548066790004e-06 +603 0.0007670786972157044 0.0001565150225110825 0 0 0 1.2070873204114631e-05 +609 0.0012815505329872516 -0.00011363667452048296 0 0 0 -1.3365691878909647e-05 +611 0.00029858819802068884 -0.0007682708255318882 0 0 0 -2.0893995423202976e-05 +7716 0.0004325350399478744 0.00032880597201593047 0 0 0 2.7922204401560095e-05 +2098 0.0007555826180855709 0.00015199016301976914 0 0 0 -4.188405348755953e-05 +8925 0.0007307665432352132 -0.0005426185305533641 0 0 0 -0.00020018374763752813 +9048 0.0009424293225040454 -0.0002293572361014913 0 0 0 0.00010208294833445296 +893 0.0013163159149066248 -0.0005703156408415782 0 0 0 3.689907872658125e-05 +959 0.0013694139811345541 -0.00026732871123378855 0 0 0 -3.124037435083502e-05 +8003 0.0005084110427086556 -0.0008239423537572719 0 0 0 9.04184233544318e-05 +9577 1.0302368874435152e-05 -0.0003210092711237857 0 0 0 0.0006455390586769549 +990 0.00017416223767825078 0.00048667962824235783 0 0 0 4.5385266054524e-05 +996 0.00018000934222021665 -0.0003197398793357587 0 0 0 -2.684443591502445e-05 +9617 0.0006483747636843644 -0.0007241805258230187 0 0 0 -4.0483174501437985e-06 +1015 0.0005086073851226795 -0.0006956874657059693 0 0 0 -1.671865530762948e-05 +1135 0.000752007233116419 2.1593816809039884e-05 0 0 0 -0.00011229055140496352 +1155 0.00018283668392736968 -0.00024331282522100763 0 0 0 -8.837582804006751e-05 +1172 0.0014777686994042328 -0.0004698489699503144 0 0 0 4.6811052854822735e-05 +4193 0.00030584300932491354 0.00043930294271633694 0 0 0 3.99463622058297e-05 +1239 0.0001159894968999317 -0.00047892123273254644 0 0 0 -0.00011148503439728878 +6064 0.0001712672883865712 0.00046090139398134863 0 0 0 7.14834694255953e-05 +1321 0.0009455127232734441 -0.0003029483074396148 0 0 0 -1.3858179639340643e-05 +1367 0.00027460458709267804 -0.0001357391806308036 0 0 0 7.73473219251855e-05 +1446 0.00027294049247731945 -0.000495805794631114 0 0 0 -0.00013022173761017075 +1450 0.0010385559853306314 -5.302822437717101e-05 0 0 0 0.00016341110563798715 +1464 0.0007895770282346611 -0.0005308768454114319 0 0 0 4.272528756200075e-05 +1477 0.0012607119407660582 -0.00024449356122144804 0 0 0 1.2658500323453987e-05 +1522 0.00020036507921708974 -0.0005901325853832497 0 0 0 -0.0001658423337430455 +1524 0.0009075875204836053 -0.0005422919792772056 0 0 0 5.068648428310436e-05 +8593 0.0010662685851825636 -7.225566687782589e-05 0 0 0 -0.0001269854631246597 +1603 0.00016851422261702776 -0.00027835789708076543 0 0 0 6.646342273779349e-05 +6150 0.0007856478895819003 -0.000708068575514681 0 0 0 -0.00012510709027876106 +8685 0.0012421045744652748 -0.000663257392914592 0 0 0 -0.00040870541100282974 +6614 0.0009449330674817752 -0.0006755844182208248 0 0 0 0.00012219716307162613 +1772 0.0011595945668455819 -0.00027214399458745637 0 0 0 8.15072019177128e-05 +1844 0.0012747229272156233 -0.00026077261706993474 0 0 0 -5.556422835364623e-05 +1897 6.463295412787819e-05 -0.00026630325320751535 0 0 0 -7.674423581568665e-05 +9381 -8.889287642945757e-05 0.00020683197564270187 0 0 0 -0.0001337814492768948 +1978 -3.109017142932622e-05 1.75808686561115e-05 0 0 0 -9.018120744110373e-05 +2030 0.0003214907321494686 -0.00039756831173001593 0 0 0 -0.00014932285542276695 +2043 9.373562610763336e-05 8.52642870057218e-05 0 0 0 -6.750692989424921e-05 +579 0.000332220136508297 0.00046453397628203833 0 0 0 -5.003659867932944e-05 +2130 0.00012994790791489113 -0.00031231145450710915 0 0 0 5.1351204212506114e-05 +2144 4.792149875690159e-06 0.00017634618921156384 0 0 0 0.00023905803741999676 +1019 0.001025107982211104 1.5782591875788234e-05 0 0 0 -8.3320884883938e-05 +94 0.00030954995116739544 0.0004059280354257804 0 0 0 4.7710982211625214e-05 +2201 0.0011542111923353237 -0.0006347939678161121 0 0 0 -6.408882401700144e-05 +7909 7.743591784274368e-05 0.0005617592792693723 0 0 0 0.0001831042701749752 +2261 0.0002957902397559044 -0.0006930292089615586 0 0 0 7.759770799911667e-06 +2281 0.0009196136702176484 8.89424051427885e-05 0 0 0 2.7954464882078952e-05 +2285 0.0005335514000999666 0.00043669059392876196 0 0 0 -8.706422018897189e-05 +2315 0.0012707588370121363 -0.0005871843435642514 0 0 0 7.717431372611626e-05 +2394 0.0007375027505590742 -0.000432650547408524 0 0 0 -6.0742161669010524e-05 +2477 0.0011663677814478168 -0.00019594786617720952 0 0 0 -4.267557609723166e-05 +2478 -0.00010852834763138607 -0.0003546409253883708 0 0 0 5.308768249290973e-05 +9351 0.00025217027146790796 -0.000628956524910182 0 0 0 -0.00033621525527144266 +2498 0.0013296723341173471 -0.0001713277005111304 0 0 0 -1.8620222960968493e-05 +4157 0.0012447619543235824 -0.00012284401805516974 0 0 0 2.7806275619302048e-05 +2627 0.001504615634015889 -0.00044599756717338823 0 0 0 0.0002132857883722708 +2670 0.0006157508357689446 -0.0006712530474297099 0 0 0 -7.786269632955398e-06 +2821 0.0002554395742342055 4.8714227071058935e-06 0 0 0 0.00017120230330159455 +3059 0.0006964855312583315 -0.0006492588209150362 0 0 0 8.865197831064068e-05 +9854 -0.00011462060079634392 -0.0002772982865791159 0 0 0 -0.0006153685760997294 +8597 -5.936360580738304e-05 -0.00011050417120861654 0 0 0 7.999056811885972e-05 +8547 0.0012125819290358965 -5.349076411174498e-05 0 0 0 -7.324813672535355e-06 +9717 0.0013164363922918434 -0.00012530943138708145 0 0 0 -0.0001456751926464718 +3243 0.0005785215599686698 -0.0001297737644878981 0 0 0 -0.00010633983250851108 +6567 0.0010697281423135828 -5.232487341380946e-05 0 0 0 0.00018425445003573675 +3323 0.0001273673723352719 -0.0005280208906619954 0 0 0 5.279230983147069e-05 +9675 0.0004950521073435025 0.000721010572204555 0 0 0 -0.0004685183414790114 +3429 0.00030396602979930736 -0.0006079173101289488 0 0 0 0.00012013864755206964 +3477 0.00030668434209562087 -0.00012072946609867146 0 0 0 -6.031691146478719e-05 +3545 0.0011637431971918209 -0.0004766299623807381 0 0 0 5.0791743698929726e-05 +8942 0.0008227174389347739 0.00035809362315471346 0 0 0 -0.00024101555546663492 +3586 0.00022532050842587035 -0.0003371413987142237 0 0 0 0.00012529227838052183 +3600 2.190992247526749e-06 -0.0002560150507983123 0 0 0 -0.00010848671915800587 +3703 -0.0001793781648648108 -4.723976455523323e-06 0 0 0 -0.0004276679892400212 +3714 0.0003971000168936645 -0.0007640709890675468 0 0 0 -1.2870892943997875e-06 +3717 0.00040445100088810644 -0.000600085618834231 0 0 0 -9.362174923338635e-05 +6610 0.0003499826843992757 -0.0007432089946961632 0 0 0 -5.028222638758029e-05 +3182 0.0009731297607752363 -0.0006402832725549421 0 0 0 -5.293106029078698e-05 +3902 0.0011868294550110342 -0.0006342718620322234 0 0 0 -5.461620798864101e-05 +3930 0.00021359811954379095 -0.0005654463316708278 0 0 0 -0.00013500436560027635 +3969 0.0008334708751617079 -0.0002577992805781915 0 0 0 -7.684277436251486e-05 +4124 0.0011584472516542384 -0.00041416437987659076 0 0 0 -0.00015020719193590962 +7186 0.0012224231491508293 -4.981554975244572e-05 0 0 0 -1.3061653397240297e-05 +4145 0.0013061806831562886 -0.00027381372757102673 0 0 0 -8.521208084564819e-05 +4169 0.0012307474450507254 -0.0005682323031520643 0 0 0 -5.8256226191683255e-05 +555 0.0008411559628879453 -0.000678921112799828 0 0 0 2.145780287127055e-05 +4293 0.0002140997248612301 -0.0001876731980471945 0 0 0 0.00013654814961119527 +4325 -1.0839446504916193e-05 -0.00047203105745207276 0 0 0 8.811786350264842e-05 +4347 2.7066044632409332e-05 -0.0002807836719464244 0 0 0 9.110684429917866e-05 +4405 0.00025726853283141105 0.00045375308049266987 0 0 0 7.070609065838971e-05 +6786 0.0007054803611471137 -0.0007091747740505376 0 0 0 0.00014494581578300883 +6913 0.0009104633996295571 5.610301178173256e-05 0 0 0 0.0001511190228539767 +4517 0.0009508997042343308 -0.0005880298135422086 0 0 0 3.106040780532167e-05 +4520 0.00044787479889868285 -0.0007714043500228941 0 0 0 -9.615252669214561e-05 +4546 0.0011462001201520916 -3.64412464342951e-05 0 0 0 -0.00017786599435913985 +4562 0.0015072356472979446 -0.0004275664098153867 0 0 0 -4.142670511483699e-05 +4611 0.000972284584552998 -0.00042850021665519124 0 0 0 -0.00013928183402602893 +9164 -0.0005084919900108419 -0.0010270376875561 0 0 0 0.00026097501345373367 +9395 0.0008421751714051664 -0.00045964384166017404 0 0 0 -0.00016223650964950447 +7742 0.00061686518484184 0.00018788176068448801 0 0 0 2.7261513303509732e-05 +9615 0.0012313718280567132 0.0012671802917919258 0 0 0 -0.00022825997672992738 +6281 0.0007529620962660779 -0.000690359272052973 0 0 0 -1.929549793627211e-05 +4824 0.0009815339007503987 -0.0004958705793934132 0 0 0 9.994055676789222e-05 +4862 0.0010230471161026596 -0.0005259134872849957 0 0 0 -0.00011886115164085299 +4930 0.0005520339659172978 -0.000572481676093387 0 0 0 6.359894033219074e-05 +4935 0.0004786042437885839 -0.0004296654340910259 0 0 0 -0.00010257675506152989 +4963 0.0007668164244377843 -0.0004912641859041563 0 0 0 -2.309130201377294e-05 +4966 0.0007716700090263818 0.000162928178473362 0 0 0 0.0001139370703857703 +4455 0.0008858020650723363 3.544954412874622e-05 0 0 0 5.0537614635365885e-05 +8559 0.0005880663099267579 -0.0001689797990082217 0 0 0 -5.999283113666872e-05 +5053 0.00010369523704559446 -0.00019581600721030201 0 0 0 -2.2410975715731403e-05 +5159 0.0008348093738233407 0.0001231528245845779 0 0 0 -4.483658286240195e-05 +5160 8.194339524170156e-05 -0.00031065622651473733 0 0 0 3.001952636528515e-05 +5174 0.0007844394963941038 -0.0005580345042953263 0 0 0 8.298760132801474e-05 +5181 0.0009604923076918168 6.59037091232842e-05 0 0 0 -6.323673403397806e-06 +5187 2.6976030547305026e-05 -0.0003454353784126845 0 0 0 7.553213889568378e-05 +5256 -6.609075735487545e-05 -0.00023223079557278757 0 0 0 -0.0003698951119637229 +5265 0.0005264966944711596 -0.0001255655715912069 0 0 0 -7.27111478370214e-05 +5299 0.00036907927647092517 -0.00021178953391053407 0 0 0 -0.00022801226954309998 +5367 1.3412223262887342e-05 -0.00029246679990322077 0 0 0 0.0001782602749759197 +5410 0.00020672208152287306 -0.00027040638030776477 0 0 0 -0.0001033524347311263 +5632 -0.000644046432442953 1.0712863180744823e-05 0 0 0 -0.0004694104257163277 +5442 0.00020572038452958607 -0.0007546182302028998 0 0 0 5.9093889121474916e-05 +5447 -9.639866928570828e-05 -0.00033343502845099425 0 0 0 0.0002020406113639047 +5473 0.000533290903527826 -0.0006955156862012621 0 0 0 -7.573384706320772e-05 +6666 0.0006563976377704058 0.00012973627974983352 0 0 0 4.154930509263669e-05 +5482 0.0004617885804053419 -0.0008098924126773519 0 0 0 2.6813004536003435e-05 +2087 0.0005322553524101157 0.00020357088664512308 0 0 0 2.8054001628749208e-05 +5596 0.001458727249129868 -0.00037602878232455305 0 0 0 4.141725046648458e-05 +5598 0.0006028474398449042 -0.0005059936504212361 0 0 0 0.00012120091570985293 +5603 0.00024118014946733723 -0.00048566845068082634 0 0 0 0.0004126186666873786 +5616 0.0009823217388847708 -0.00030616553071705874 0 0 0 -3.6709017393759464e-05 +9794 0.00023208880139229977 0.0004969880900717863 0 0 0 -0.00026753890091369916 +5633 0.0010531396733951095 -0.0003149062106476654 0 0 0 -8.4715666180859e-05 +5678 7.924050651891312e-05 0.00022226763906414506 0 0 0 -0.0003475033848453955 +5765 -5.087812443301628e-06 -0.0005953984627493577 0 0 0 0.00020455026301281136 +5784 0.00039626091105984904 -0.000780590662719314 0 0 0 3.34803748507815e-05 +1013 0.00034969922974838853 0.0003937065357388681 0 0 0 -2.555913977154244e-06 +1557 0.001176985953714997 -4.133573821829073e-05 0 0 0 -2.3970934316641106e-05 +5901 0.0009891830416392368 -0.0004995501897034743 0 0 0 -0.00017914649700844347 +5911 0.0009498069633538214 -0.0003352864729569298 0 0 0 9.394366888557163e-06 +9108 4.82050765264574e-05 -0.0004773256669527876 0 0 0 -8.874371115942e-05 +6052 0.0014366180243401477 -0.00023507933206313214 0 0 0 0.0003373696984947666 +8485 0.0006046499280847988 -0.0006663815321074451 0 0 0 0.00014583002346235657 +6162 0.00011986372988700633 -0.000507347641279405 0 0 0 2.700385724082042e-06 +6199 0.00024341464595897133 -0.0005908498922479991 0 0 0 -2.5770655839030384e-05 +53 0.00046557615072479944 -0.0008258618660788904 0 0 0 -4.358023978787766e-06 +6397 0.0014452593507542095 -0.00018452146243251745 0 0 0 2.639353472836587e-05 +6419 0.00032445392989776403 -0.0007064713523724423 0 0 0 1.1470822575018811e-06 +6489 7.098871433972482e-05 -0.0003174889355607549 0 0 0 -4.379649036554526e-05 +6542 0.0008179274259891187 -0.00025981087391596224 0 0 0 -0.00013081261553287045 +5786 0.0006570116906030448 0.00021770143538826718 0 0 0 -3.3048125108647596e-05 +9345 0.0005558490118804782 0.00023335411512925277 0 0 0 0.0002504970576783612 +6645 0.00019504450735151972 1.9276159900896235e-05 0 0 0 0.00015832802761133307 +6660 0.0005861660008455986 -0.0002673484423142026 0 0 0 -0.00021269578857521337 +6673 -7.634899848210176e-05 0.00020967869202937294 0 0 0 -0.00015900334718809856 +6717 0.00017385983925569145 4.791691576148748e-05 0 0 0 -0.00018003460454742696 +6730 0.00041689286145817046 -0.0005733800453100087 0 0 0 -6.743920002885247e-05 +6787 0.0012770931433661902 -0.00024997062631154887 0 0 0 -1.7081010200863057e-05 +6966 -0.0001846055014098456 -0.00023165328817038652 0 0 0 -0.00031687711344007555 +7013 0.00033611970684085013 -0.00044223096045972233 0 0 0 -2.865189831335772e-05 +7043 -1.8531766794133783e-05 0.00023946171304622154 0 0 0 0.0001849058964139777 +7393 0.0012258297665261758 -3.08531083284159e-05 0 0 0 -2.3780108309577564e-05 +7111 0.001038520985980447 -0.00019104445669790754 0 0 0 3.75568583479694e-05 +9544 2.5078018354537853e-05 -0.00030509766762730413 0 0 0 -0.0003653518962504873 +7303 0.0003938942611184813 -0.0006629550754725279 0 0 0 -0.00016059687913493894 +4645 0.0006061472993398895 0.00017121506549836385 0 0 0 8.130618570637952e-06 +1676 0.00034075963865528864 -0.0005946896473103382 0 0 0 -4.044798280395064e-05 +7348 0.0003875437144634212 -0.0007621835041909548 0 0 0 -9.240985963039084e-05 +7353 0.0012543874210728088 -0.00023839362263995838 0 0 0 0.0002981601061310676 +7738 0.00048059520438634905 -0.0007548909851692321 0 0 0 7.20502711417993e-05 +7389 -4.605891757418542e-05 -0.0003525553181695046 0 0 0 -0.000510958241828771 +3695 0.000700592783252984 0.0004435917409354342 0 0 0 0.0001161346873618935 +9316 -0.0019141759683079444 0.001746630892216385 0 0 0 -0.0007186867404184981 +7426 0.0008387100379231268 0.00012574832418199715 0 0 0 -2.7322187138251336e-06 +7489 0.0008022148957674219 -0.0004877555565602447 0 0 0 6.301148986851237e-05 +7503 0.0005525075741040825 -3.3326701217271746e-06 0 0 0 -8.557400091617755e-05 +7509 0.00010215298319227557 -0.0005501063008983365 0 0 0 -0.00016117042142630737 +7646 0.00026921021506850134 0.0005629511273845737 0 0 0 6.578102001906686e-05 +3202 0.0005739286405121088 0.00014040077854037951 0 0 0 1.5606013336416006e-05 +8810 -8.10338912166574e-05 -0.0002974802040969226 0 0 0 -0.0006796027972829924 +7737 0.00010918260118686692 -0.00031318669020549505 0 0 0 0.00013190428280581066 +724 0.00044828165567225865 0.0002853922030081231 0 0 0 -4.253562853465867e-05 +3156 0.0006200011329390902 0.00040898754789616944 0 0 0 -4.545580759891937e-05 +7867 0.0011750248688792739 -0.0005197905120127335 0 0 0 -0.00022153587359424683 +7868 8.644039611416413e-05 -0.0002794611763938474 0 0 0 -0.0003867566345718308 +86 0.0008076371729952591 -0.0007197242602649305 0 0 0 1.3820779970751908e-05 +8219 0.0005792400462633727 0.0001924248380418123 0 0 0 -1.574923827730729e-05 +7925 0.0007881145766376257 -0.0004572661200049001 0 0 0 0.0005507965684063246 +7939 0.0009293473212084466 -0.00030765778215835916 0 0 0 -0.0001731550573323543 +8010 0.00034611732145479855 -0.0007321868865079874 0 0 0 -9.161402236653421e-05 +8023 5.8215978798516045e-05 -0.00019630159981352932 0 0 0 -0.0003203259839188014 +8052 0.0006910214956943155 5.5932363897561375e-05 0 0 0 0.0003597669458270504 +8064 0.0008199128919034816 -0.0003921132139224179 0 0 0 7.953626051638709e-05 +8088 0.00024870211169018456 -0.0006095818221345371 0 0 0 -7.395400696575723e-05 +8132 -5.9640614929029346e-05 -0.0003192691745823088 0 0 0 -0.0003426713097364019 +8198 0.0010668015563085425 -0.00021182450022976977 0 0 0 6.008690527165015e-06 +8201 0.0006452433773281254 -0.0005944573380249042 0 0 0 0.00010724251807706245 +8209 0.0015473512623410861 -0.0002455628681544781 0 0 0 -0.00012229339455293486 +8232 0.0006926268512909194 -0.0005154964776331764 0 0 0 -0.0002827979358424662 +9530 0.0007592848040619026 -0.0005638595577852066 0 0 0 4.376738434818317e-05 +8353 6.188222876984769e-05 0.0004952668500499691 0 0 0 0.00011388098081149006 +8370 0.0013716426017502978 -0.0006056763422136326 0 0 0 0.0002507636053871654 +3474 0.0004991858624879492 -0.0008699490856081839 0 0 0 9.341030906610889e-05 +8409 -9.713164611493533e-05 -0.0003291991554832064 0 0 0 -0.0005993704792621309 +8422 0.00085181910776091 9.42918882807435e-05 0 0 0 -0.0002375093953988344 +9912 0.0020853002476433633 -0.0004903332536103243 0 0 0 0.00019767494485278076 +3470 0.0005672480420797676 -0.0009316235148588481 0 0 0 -0.00013008880827503668 +757 0.0004897436398729552 0.00022013516074499158 0 0 0 -3.604692181038922e-05 +7652 -0.0014726025294425301 -0.0003728104513134684 0 0 0 0.0020723692670693607 +2296 0.00046206308158680185 -0.000815144822665316 0 0 0 5.828930794124014e-06 +4834 0.0007630585850625081 -0.0006622436973899639 0 0 0 -0.0001374570527388301 +380 0.0006096053821556503 -0.0009030301180396092 0 0 0 -3.8176563273990075e-05 +9382 0.000542657096291546 -0.0006735066267551915 0 0 0 6.322148553300881e-05 +7285 0.00044802667827616394 0.00035700576834197183 0 0 0 1.9308113738166355e-05 +9513 0.0008757601128764321 4.055322003108496e-05 0 0 0 -0.0001004618372010873 +1454 0.0006457466184863967 -0.000649436190784174 0 0 0 -4.238628855900218e-06 +8399 0.000907923919523398 -0.0005926593097290532 0 0 0 9.190616375778196e-05 +5589 0.0007171865188362896 -0.0006641182527352459 0 0 0 -7.8366042822066e-05 +2078 0.0008570272773660106 0.00010920672555165491 0 0 0 -3.127777112706166e-05 +7420 -0.0007141950924942786 -0.00011962407479600536 0 0 0 -0.00013801307932268352 +2429 0.00040208905363217103 0.00037189471099940535 0 0 0 -7.854915521651337e-05 +5101 0.0007576863330874957 -0.0006685461609634175 0 0 0 0.0001413794410214693 +36 0.00028377798117076646 -1.1097212310009233e-05 0 0 0 -1.2193955101171202e-05 +1055 0.00025009142812123326 -2.211029320979153e-05 0 0 0 -3.181881856627597e-05 +92 0.0003165406346914168 -0.00023863650933779421 0 0 0 -7.497574778556843e-06 +2494 0.0003987486411798457 -0.0006998772923473521 0 0 0 -2.008601706057256e-05 +117 0.0002866437709581788 -0.00034494352040648674 0 0 0 -3.318003747175392e-05 +132 0.00046875299386741454 -0.00046081785622437843 0 0 0 -1.7391114579922244e-05 +140 9.729140553238712e-05 0.00013947816714504635 0 0 0 -1.835951325521831e-05 +145 0.0001996546481396893 0.00025468094115097955 0 0 0 -2.839394420555989e-05 +2164 0.00011562312149534322 -0.00028896776685094375 0 0 0 -5.186403467938491e-05 +182 0.00041651050821279166 -0.00040290322854810354 0 0 0 -4.647715595759126e-06 +217 0.00043233099658479925 -0.0004828465077685509 0 0 0 -4.0722690204620116e-05 +243 0.0004754558625037445 -0.000503170845229922 0 0 0 -4.529096466005996e-05 +283 0.00013210204789943685 1.942355396262014e-05 0 0 0 -1.492866665009129e-07 +285 0.00038115129022340866 -0.0004025212462900968 0 0 0 3.2649076764450804e-06 +289 0.00034406284439657806 -0.0005665047590413243 0 0 0 -2.8236484151374918e-05 +320 0.0002701340364035874 9.309540844499967e-05 0 0 0 -6.958269847708614e-06 +8833 8.360018176150572e-05 -0.00016648750750790638 0 0 0 -0.0008644596276935148 +370 0.00035682017524857806 -0.0002263666029672452 0 0 0 -1.1466982231139704e-05 +1577 0.00028339784194878756 0.0004669177076450217 0 0 0 -2.290948963922626e-05 +5427 0.0005577478239466858 -0.0006013088596848391 0 0 0 -0.0002203808839042084 +424 0.00022523795299594362 2.394404095227404e-06 0 0 0 1.3177233758905334e-05 +431 0.000367033821984743 -0.00026252323309211686 0 0 0 -7.999756730491516e-06 +436 0.000400139033933601 -0.0005158541814566073 0 0 0 -1.4317821911334792e-05 +450 0.00025150502869777594 5.2155555889925025e-05 0 0 0 -1.2674049445765278e-06 +458 0.00039506209154586595 -0.0004473751964347044 0 0 0 -5.603899805352887e-06 +463 0.0003493332962520559 -0.0003339198017638137 0 0 0 1.1819384964328364e-05 +465 0.00029400339417645264 -0.0003381164470118572 0 0 0 -1.1719850648373124e-05 +8423 0.0003829049073320101 -0.000610109278546365 0 0 0 1.5854404774212213e-05 +482 0.0004023551256971558 -0.000394665048881342 0 0 0 1.3700891242367161e-05 +497 0.0005204469350815207 -0.0009578251005493738 0 0 0 -1.358237403946015e-05 +510 0.00035701904719541997 -7.902480165426796e-05 0 0 0 -2.8681876484366838e-05 +3795 0.00031678702790792403 -0.00037425120260636705 0 0 0 6.768987232044827e-05 +593 0.0004361679850678255 -0.00047005637012388234 0 0 0 1.540683085185582e-05 +615 0.0003702838799900888 -0.0003306865170046518 0 0 0 -2.622106995592134e-05 +743 0.00032411771984092966 -0.00036016116844573 0 0 0 3.782671503786654e-06 +7325 0.0004319369210840851 -0.0003147627868174541 0 0 0 -1.2083886179334366e-05 +805 0.00037112925395020417 -0.00035358681195672134 0 0 0 -7.96329945687139e-07 +147 0.0004318932102647626 0.0005416707845273545 0 0 0 -1.9509479495885996e-05 +872 0.0003436673093910751 -4.049807190610613e-05 0 0 0 1.527117788071764e-06 +916 0.0002819302552332877 -0.0002198795572657611 0 0 0 -2.508040485621415e-05 +929 0.000638523292750657 -0.0009644385954260364 0 0 0 -3.3307540691886e-06 +974 0.00038270158516069377 -0.00045050313717640147 0 0 0 3.618811456358601e-05 +9591 -0.0025055559071195926 -0.000259866466755292 0 0 0 -0.0002081622295872929 +1068 0.0007140055444957805 -0.000586553117918366 0 0 0 9.832881056421595e-06 +1075 -4.372050683545026e-05 0.00021117449339506066 0 0 0 -1.8160167074346968e-05 +1079 3.059505629441468e-06 0.00017180802984423404 0 0 0 -1.6135106821631317e-05 +1097 0.0003437057251780176 -0.0002620522144265099 0 0 0 1.6721109985328026e-05 +2626 0.0002550664108014275 -0.00027934084411268664 0 0 0 0.0001366101866113228 +1126 0.0002585178531621596 -0.0001698673451488787 0 0 0 6.954368087045635e-06 +1133 0.00033446317374805567 0.0001442972151497482 0 0 0 -1.8793561771845664e-05 +1173 0.00039004314764556 -0.00039272005757951624 0 0 0 -3.177866088889917e-05 +1178 0.00038118696974941385 -0.0005140626122183853 0 0 0 -1.2574001248275994e-05 +4678 5.52485875815419e-05 0.00023288766108492767 0 0 0 -4.6860284286791396e-05 +1193 0.00014673310045342826 -2.647682452851017e-05 0 0 0 -3.193378359592583e-05 +1215 0.00026145447995211244 -0.00016541997851359354 0 0 0 -6.331928850405147e-06 +1244 0.0002950638449363082 -0.0003209418948579635 0 0 0 -3.171362667142597e-06 +1324 0.0002688459768665705 4.7620438862335495e-06 0 0 0 5.331264385338311e-06 +1361 0.00025863966487726535 -0.00015843139379007423 0 0 0 -1.735671406756708e-05 +1370 0.0004469911636141923 0.00029424767242157293 0 0 0 3.0653036462250782e-06 +1384 0.0006143868174273498 -0.0005301252321512373 0 0 0 -0.0006771672882090665 +1402 0.0003741819952348997 -0.0004896284549157725 0 0 0 4.333347028878467e-05 +1433 0.00026311355445660214 -0.00011322281429702635 0 0 0 -6.388944105402197e-05 +1491 0.00027500840027717364 -0.00019566300323389907 0 0 0 -4.905786057739164e-05 +1512 0.00021918133530568918 -9.975440257110421e-06 0 0 0 -3.771658207812921e-05 +1535 0.0002597601051252974 -3.0340400033429987e-05 0 0 0 -6.394819349284438e-06 +6096 0.0006003455511503041 -0.0008667650224432371 0 0 0 0.00028525733030246287 +1569 0.0006019393266686531 -0.0010115813166213395 0 0 0 4.592116845532339e-06 +1650 0.00037414530233597325 -0.0003532932369891333 0 0 0 3.7615157014559765e-06 +1675 0.0005982684341832463 -0.0010083359950526602 0 0 0 -3.231991002284011e-06 +8825 0.0005137020264879268 -0.000692404770555855 0 0 0 -0.00021008581897886505 +3220 0.0004296411772013387 -0.0005336208673890619 0 0 0 -1.3720496243746713e-05 +1779 0.0002982447957688256 -0.00020178213959713364 0 0 0 5.6501783783355706e-06 +1793 0.00015374849355881162 -1.2044402687533697e-05 0 0 0 -2.3464999547879823e-05 +1870 0.0003733569511008141 -0.00033032340349727437 0 0 0 -1.8079976162788153e-05 +1908 0.0003359897156290163 -0.0002003687877955848 0 0 0 -1.3921568948031733e-05 +3110 0.0006493606017627621 -0.00026131962140948326 0 0 0 0.00044033025054151555 +2009 0.00021935072145558423 -3.803915939704958e-05 0 0 0 8.22049668431812e-05 +2058 0.00032443334846100967 0.00026464311436549375 0 0 0 -1.7603136793272663e-05 +2072 0.00045122426996937955 -0.0009012728501224343 0 0 0 -0.00018671736089285386 +2080 0.00014416450479560577 0.00029106342166654585 0 0 0 -1.924842587827157e-05 +2101 0.0004057857427172226 -0.000401803348203318 0 0 0 4.138370503867189e-06 +2115 0.000324329120314664 -0.00020225836184042584 0 0 0 -3.3378783111908367e-05 +2128 0.0005660182470539979 -0.000361716495327165 0 0 0 0.0005817632720919525 +2138 0.00028554791308981435 -9.055157497415986e-05 0 0 0 -2.906460899322461e-05 +2152 0.000551376110631484 -0.0009553706198507897 0 0 0 1.7363982413134065e-05 +2219 0.0003500656685495951 0.00040336657999996955 0 0 0 2.9146220751772746e-05 +2242 0.000194483833307095 -0.00010347051495099532 0 0 0 -2.0774733358706933e-05 +2272 0.0003878460922669943 -0.00047030741491271133 0 0 0 -3.073013277852228e-05 +2276 0.00023641411675453557 -0.00014576561631390536 0 0 0 1.8799323965284948e-05 +2318 0.0007010095789047638 -0.0009549929664040787 0 0 0 1.1484085279012856e-05 +2320 0.00032148545066248876 -0.00013549235440111186 0 0 0 -4.6466810401148225e-05 +2345 0.0004673100752315932 -0.0004370750680847836 0 0 0 4.5503638308699965e-05 +2383 0.0003411900194245797 -0.0003128907725503854 0 0 0 7.80607363981543e-05 +1692 0.00027403770001570055 -0.00027844192415487577 0 0 0 0.00020165756053006103 +2397 0.000251316979012769 -0.0003793813424582988 0 0 0 -0.00017530868721822224 +2400 0.0002923971984307818 4.66625367540438e-05 0 0 0 2.581143642730745e-05 +2476 0.000446303097949764 -0.0005620446561573321 0 0 0 0.000150445137721848 +2483 0.0009193390666842342 -0.0004945218102442744 0 0 0 0.0006464058094532078 +2488 0.00024825412096816127 -8.161249537939583e-05 0 0 0 -1.7329816820642767e-05 +2510 0.0007115749691496038 -0.0009865374324313262 0 0 0 0.00012656254499213444 +2511 -3.769001050337623e-05 0.00020359612659823112 0 0 0 -2.015382342918653e-05 +2621 0.0005262400657362942 -0.0007870415982577422 0 0 0 -0.00015554960976415507 +2523 0.00016781077162337398 3.0662925130806386e-05 0 0 0 -0.00013446182282231777 +2567 0.000368649755113889 -0.0001812998178456508 0 0 0 -5.4810620080736316e-05 +2588 0.00037734278403380594 -0.0003041863527817398 0 0 0 -4.955110800310205e-07 +2616 0.0003746613348096869 -0.000543719187574384 0 0 0 2.4483347465207105e-05 +8775 0.0005065496137812312 -0.0008424947387368806 0 0 0 -4.057666639474607e-05 +9868 0.0014030089839478664 0.0014340566492607833 0 0 0 -0.0011112655096472438 +3822 0.0003353281359980324 -0.00047261399241782927 0 0 0 -3.9231910443452296e-05 +2664 0.00036140464000831795 -0.00033050950709802876 0 0 0 3.5293435145704445e-05 +2692 0.00010710713200620999 2.0593860753180416e-05 0 0 0 -0.00013746545348613295 +2714 0.00033636849334535657 0.00030494724984096093 0 0 0 1.0585686640037501e-05 +4131 0.0002670830464243175 -0.0003126674647091454 0 0 0 -0.0002228210900959887 +2756 0.0003320933009522566 -0.00036465600505443223 0 0 0 1.4221151910101504e-05 +2789 0.00030581613984432453 -5.6637616322877574e-05 0 0 0 -8.67083523572722e-05 +2805 0.00035249223087713413 -0.00034971493192004216 0 0 0 -4.917476239809922e-05 +2812 0.0003682027409529214 9.15809144506454e-05 0 0 0 -1.5586895150840547e-06 +2815 0.0006830598615999892 -0.0007994591646862724 0 0 0 -0.00016724378147362092 +1545 0.0004556534029487746 -0.0006115975597921968 0 0 0 -5.3879117575386124e-05 +2896 0.0003682350550549004 -0.0003362816839703602 0 0 0 -3.0323810531807732e-05 +2920 0.00039429022410048393 0.00010859183598519329 0 0 0 -0.0001369756869906844 +967 0.00032661795358172597 -0.0005969654872959751 0 0 0 -2.9635429627127765e-05 +2929 0.00027718638791596764 1.5561518243867005e-05 0 0 0 4.874974319662754e-05 +2973 0.00019995481754808602 -0.000409105167062924 0 0 0 0.00017172607475827425 +9115 0.0004380671445940045 -0.0005548384858524686 0 0 0 7.847720353339413e-05 +5588 0.0003153932073426274 -0.0005100247271403854 0 0 0 1.8153097916799096e-06 +2974 0.00033204338775961675 0.0001427181487853169 0 0 0 -3.0812256209821013e-06 +3004 0.0002902814894963454 -0.00026799835859335513 0 0 0 -2.650577250891828e-05 +3023 0.0003731649651814273 -0.0005538538503357372 0 0 0 1.2106262749436245e-05 +3049 0.000354688590231871 0.00043024466043586554 0 0 0 -1.8698492590659336e-05 +3075 0.0003102294286476182 0.0003320681366029709 0 0 0 -3.963781757868056e-05 +3100 0.00026945185373068167 1.5178701064413822e-06 0 0 0 2.6058498515270283e-06 +3118 0.0005239518175452838 -0.0010403319617051422 0 0 0 2.0985842141415908e-05 +3209 0.000455822877169646 -0.00045444580678623655 0 0 0 -8.164537594788363e-06 +3222 0.0002852239049078194 0.00018937004792694292 0 0 0 1.2433541272673978e-05 +3278 0.00039056236162305643 -0.0004666964096202858 0 0 0 4.04644226957958e-05 +3316 -4.8820955888137724e-05 -0.00025572938004687716 0 0 0 -0.0003552161273917986 +3341 0.00039593272261341045 -0.0005104562791020511 0 0 0 1.170680363566543e-05 +3344 0.00037280550631731195 -0.000359760961349938 0 0 0 6.220552592185386e-05 +3364 0.0006201657006952135 -0.0009686448098233381 0 0 0 3.0149242027858576e-05 +9821 0.00015150650860708463 6.285832359323573e-05 0 0 0 -5.0362629213187e-05 +3398 0.00039909496332831855 -0.0006490112909744407 0 0 0 -2.5733788666382478e-05 +3438 0.00018766309683919283 -1.900387199750375e-05 0 0 0 7.652964851705053e-05 +3458 0.00035469336587531014 -0.00033691284450564134 0 0 0 -3.6184597526339285e-05 +5847 0.0007240862990350599 -0.0009294580755191839 0 0 0 -1.048392735995382e-06 +9898 -1.3171228333840215e-05 0.00018021141809090958 0 0 0 -0.00011007757001013155 +1741 0.0003860810697138817 -0.00034535309026427746 0 0 0 0.00010704248729894137 +3515 9.467891080518803e-06 0.00015175860933807142 0 0 0 -3.0335192377301152e-05 +3528 0.0005711144538825807 -0.0009944045477653122 0 0 0 -3.44009415838893e-05 +3539 0.0004356331188239731 0.0005656439632111662 0 0 0 -1.8866341330377877e-05 +3592 0.0002688489468778365 -0.0002043355916885247 0 0 0 2.8865622301624672e-05 +3601 0.0003365254534252051 -0.0005384000625249493 0 0 0 4.76094532784373e-05 +3641 0.0003955129191890817 -0.0004353776474289563 0 0 0 -7.713026990259378e-05 +3654 0.00028300753820750466 0.00021270420670151588 0 0 0 -9.15456893527656e-06 +3656 0.00028096966529310414 0.0002786584042800696 0 0 0 -5.173105981298114e-06 +3672 0.0006980241713094894 -0.000990105731522093 0 0 0 -4.645204268020526e-05 +3678 0.0006565566893395954 -0.0006134618528498934 0 0 0 -0.0004427499684527801 +2490 0.0007370628683700641 -0.0005944612155344288 0 0 0 -0.00017676352896467176 +3683 0.0003547470717298612 -0.00024935099760666944 0 0 0 -6.286185711488783e-06 +3689 0.0004243938835821869 -0.00032039101578481226 0 0 0 -3.114350282827491e-05 +3704 0.0003205165979236396 -3.586438811017044e-05 0 0 0 6.854242178518962e-05 +3728 0.0003083164660824404 -0.0003431628887389147 0 0 0 -9.940307315114179e-06 +3743 0.0002882596733956295 0.0003316008275616266 0 0 0 -2.8886172446151293e-05 +3754 0.00043139312583762707 -0.0004915798890850047 0 0 0 3.098952553575008e-05 +3776 0.00039671338651549375 -0.0003710455165024567 0 0 0 -9.583529215213284e-06 +3781 0.00032602853006058474 -0.00016552434599933683 0 0 0 -4.771646276603198e-05 +3825 0.0005601654084729051 -0.0007316810408070987 0 0 0 -6.443857768493516e-05 +3832 0.00042343070538438597 0.0002570105507130792 0 0 0 -3.622942818300535e-05 +9110 0.0007164853078817465 -0.0008939888731387802 0 0 0 9.550291844269914e-05 +3892 0.00038653316508658795 -0.00020440643979312414 0 0 0 2.3417023151214808e-05 +3122 0.0007997478063254777 -0.0010179049300752822 0 0 0 8.867478359005432e-06 +3936 0.0003816826870481632 -0.00026671658100839126 0 0 0 -2.3270168633580193e-05 +3946 0.0003028172088373258 0.0004363247292733287 0 0 0 -1.4684658853038182e-05 +3963 0.00039880584407093187 -0.0003860039482239537 0 0 0 4.2940010529288886e-05 +4062 0.0003846538247011611 -0.0002591868922314012 0 0 0 -2.3777368001347454e-06 +9910 6.651204919861299e-05 0.00023657892036217854 0 0 0 -2.0356715648559548e-06 +4152 0.00042159758956540654 -0.0005174729884700795 0 0 0 -7.9670396607558e-05 +4177 0.0002674903139385204 -7.634441234357287e-05 0 0 0 -2.9365418147402243e-05 +4182 0.00038316341627162416 -0.0002502395790875163 0 0 0 1.6600029737602548e-05 +4194 0.0003827768670841509 -0.00034790221796677086 0 0 0 -6.746847392620152e-05 +2970 0.0006188308024855677 -0.0009440320639414917 0 0 0 -1.4506777794377895e-05 +7882 0.000259450946008991 -0.00026450263176425333 0 0 0 -0.000685731141192702 +2050 0.00011591150225381175 -4.981823683764361e-05 0 0 0 -0.0002140046578753216 +4306 -1.4097952130500105e-05 0.00020210100666425004 0 0 0 -3.254836948446804e-05 +4365 0.000329979521466971 -0.00037026477133869694 0 0 0 1.262838972318809e-05 +4375 0.0004143285323348136 -0.0001790627077566419 0 0 0 2.6594146430967754e-06 +8815 0.0005502243120950772 -0.0005166554198491739 0 0 0 0.0005289828019690042 +4413 0.00010989811811874697 9.443983430455926e-05 0 0 0 -4.687273177850615e-07 +1119 0.0006393262733267264 -0.0009273123497306103 0 0 0 6.598326949793868e-06 +1290 0.00023369866787237225 -0.0004702279600622114 0 0 0 2.206266511911349e-05 +4438 0.0001542997865727952 0.00014469842677633906 0 0 0 2.6271708063081386e-05 +4454 0.0003675280830162463 -0.0005556185692104846 0 0 0 1.8621154441802517e-05 +4489 0.00044512918708937855 -0.00040086846468551747 0 0 0 5.249935453395659e-05 +4528 0.00032965356342733653 -0.0003194689753613592 0 0 0 3.104041515861968e-05 +4530 0.00029989999725317355 -5.318710802085001e-05 0 0 0 -1.471205926436831e-05 +4544 0.00028547233488526784 -0.0003576022044966412 0 0 0 0.0003597605069832644 +4545 0.00043914978903072336 -0.0004568303108176854 0 0 0 0.0001422202124769092 +4555 0.0007411525442263197 -0.0006464081851800274 0 0 0 0.000307049861409017 +4764 0.0008172575297127082 -0.00036658995459282943 0 0 0 -0.000526224777398271 +4600 0.0004034330846891608 -0.00026440685225635345 0 0 0 -5.167428330958256e-05 +4616 0.00016309807411765134 0.00010199196094282562 0 0 0 -2.4375686503383308e-05 +9831 0.0002991877851836746 -0.0002822425221079429 0 0 0 3.632123898048806e-05 +4636 0.0003637478424632498 -9.953099806526455e-05 0 0 0 0.0001048667488353201 +4642 0.0004076502017664221 0.00011012957842788163 0 0 0 -5.149537901880216e-05 +4643 0.0003636738812507514 -0.00046026246370557667 0 0 0 -5.4843307681818855e-05 +4675 0.0004079146491547121 -0.0004597476885395426 0 0 0 -2.283161481558688e-05 +4355 0.00033849732249888745 0.0004482606144706213 0 0 0 -3.9343180301200876e-05 +4693 0.0005759548629659754 -0.0009833764903560424 0 0 0 2.641334947153526e-05 +4709 0.00043217928727379187 -0.0004655414217906659 0 0 0 -3.571432139183677e-05 +4770 0.0006228144803962718 -0.0008154944867545841 0 0 0 8.896237259827693e-05 +4797 0.000376070851293005 -0.0003437223012233512 0 0 0 1.009304331431159e-05 +4818 7.885647543737498e-05 9.5613728322249e-05 0 0 0 9.118811305844006e-05 +4830 0.0005870261545488009 -0.0009775769095736646 0 0 0 -9.140541548847985e-05 +4837 0.0002420561424981719 -0.00013239341481105637 0 0 0 2.6419391169100955e-05 +4841 0.00042866700323794673 -0.0005083725934104695 0 0 0 -0.00017296338935159303 +4866 0.00033771565824336003 -0.00034673584610532657 0 0 0 -4.385307645596396e-05 +4878 0.00029680861970580633 -9.563101104758683e-05 0 0 0 -0.00010810376854250998 +4879 0.00034436437148715034 -0.00018846052423551721 0 0 0 -1.3415140676044265e-05 +4882 -0.00018381526416726574 -0.0008475564120788636 0 0 0 -0.001127799038580822 +4894 0.00043782496062067053 -0.0004313549154305012 0 0 0 8.634872440546314e-05 +4942 0.00025544536853513544 5.5380705375036465e-05 0 0 0 -3.2848728625247513e-05 +9479 0.0002606663953444319 0.0020122854952876073 0 0 0 -0.0012687305502578055 +5010 0.0001589088268262603 7.644627606698783e-05 0 0 0 -1.880896493385459e-05 +5023 0.0001797093887660725 -6.645791922867861e-05 0 0 0 2.272301353328609e-05 +5036 0.0001991065179501919 -2.1339375486074437e-05 0 0 0 -9.554257833624062e-05 +5095 0.0006770926714082533 -0.0005993327955420881 0 0 0 -3.919702573833062e-05 +5111 0.0002026107488252537 6.91016973877797e-06 0 0 0 0.00014081543766918117 +1910 0.00030992276598832986 -0.0004838224766751995 0 0 0 3.048702909553541e-05 +5180 0.00039804720683630444 -0.00039589236716012875 0 0 0 1.4485128054858156e-05 +5231 0.0007041216376339577 -0.0013345424050322607 0 0 0 0.00038690480401958375 +9902 -1.8030405510718793e-05 0.00018361417005610203 0 0 0 8.223277954732659e-05 +5296 0.000274491619589631 -0.00018086964514139395 0 0 0 -8.86146000922418e-06 +5307 0.00038417075215728435 0.00014621291464037448 0 0 0 -0.00010258579746744436 +5312 0.00040976512637443704 -0.0004800671242312952 0 0 0 6.815414852488977e-05 +5327 0.0005151444164404385 -0.0008962682569833082 0 0 0 -4.242792175999355e-05 +9918 0.0006295666291245595 -0.0008515200649502458 0 0 0 0.0005051735708226569 +5397 0.000345780258597261 -0.000277549937819046 0 0 0 -0.00012945575980554308 +5411 0.00026636500294235037 -0.00019229297646626895 0 0 0 3.359098996546022e-05 +5425 0.0005931114365287122 -0.000844888516045869 0 0 0 -0.00011530759294441716 +5453 0.000302974193040155 -0.00033749521928522734 0 0 0 -3.3388958119048583e-05 +5471 0.0003543245340280068 -0.00013081771672417098 0 0 0 1.3022216441710786e-05 +5494 0.00034098233651278664 -0.00034801164781509634 0 0 0 -9.002226867373812e-05 +5509 0.0002384139881623892 -0.0001482955466041123 0 0 0 -4.6060578937172334e-05 +5519 0.00036915641241643356 -0.00030723079933185523 0 0 0 -6.772985777108147e-05 +9807 0.00019407141579722316 -2.1637073981588193e-05 0 0 0 -6.0252424221607046e-05 +5530 0.0002064631141864958 -3.5133073365780564e-05 0 0 0 1.2128749285793711e-05 +5550 0.0003655256476970477 -0.0003017140302196484 0 0 0 7.004778259573532e-05 +5557 0.00017583256657029104 4.320182468954651e-06 0 0 0 -9.825912427447824e-06 +5560 0.00040839341693114386 -0.0004142667210522656 0 0 0 -1.565933356585023e-05 +2340 0.0005390343415734335 -0.0007822800338391126 0 0 0 1.3689611219075867e-05 +5641 0.0006597460868800196 -0.0007931237911809545 0 0 0 0.00037496729166005665 +5654 0.00028975807112999375 -0.00028309116987612756 0 0 0 1.2832263868420104e-05 +4651 0.0008004105404640236 -0.0009935340049112363 0 0 0 -4.772358778736408e-05 +7706 0.0005373021430319325 -0.0006446405344779766 0 0 0 -9.213579998562216e-05 +9803 0.0004509479568818539 -0.001097625422271259 0 0 0 -0.000433343475307616 +5715 0.0004389660943958499 7.180947755517636e-05 0 0 0 -4.5957995146046616e-05 +5721 0.00044093204270984656 -0.00040704884130963776 0 0 0 -4.7585489666190604e-05 +5737 0.0003200464522582369 -8.266792873738841e-05 0 0 0 -7.845674097133015e-05 +5813 0.0004130147532801875 -0.00039578018253812235 0 0 0 -0.000134724200206758 +5814 0.000379505008915237 -0.00013355469854616013 0 0 0 -0.00012442465585229908 +5859 -0.00031395849764754506 -0.0011599385854340765 0 0 0 0.005258790936192548 +5866 0.0004928797687913577 -0.00045434269493655377 0 0 0 0.0001681607481456677 +5886 0.00039398701508687966 -0.00040362838770901925 0 0 0 1.5594537739019715e-05 +5982 0.00028500813809852145 0.00035896249084054057 0 0 0 -6.477654395926499e-05 +6030 0.0002550048858656296 -0.00020065555705804333 0 0 0 4.3900093468766164e-05 +6037 0.0004755371042699536 -0.0009220546264742377 0 0 0 0.00025209521238220685 +6055 0.00036226140410013937 0.00032801175896698937 0 0 0 -0.00011048390080273983 +6091 0.00026322054757903934 -0.0001723195957847438 0 0 0 2.1235818478310852e-05 +9871 0.0007130396499843306 -0.0013166303659429923 0 0 0 0.0009436762789760272 +6189 0.0004114947831779242 -0.00028746818806203755 0 0 0 8.634531716239658e-05 +6242 0.0005740181224474334 -0.0010441340246134339 0 0 0 3.7059177502047334e-05 +6260 0.0003394958279409058 -0.0002172706324961392 0 0 0 5.392711500468445e-05 +6277 0.0002156294839906487 -0.00011103022914071657 0 0 0 8.08997492502511e-05 +5619 0.00042517217140391583 -0.0006650560447447947 0 0 0 -3.367760806847907e-05 +3496 0.00033228383645079654 0.0006030730537317883 0 0 0 3.819520235147488e-05 +3360 0.0004146428468853787 -0.0004118992316782342 0 0 0 1.8945176947642573e-06 +6340 0.000388984202795645 -0.0003624490335324781 0 0 0 3.6655714412961305e-05 +9979 0.00031749613923962884 -9.962567521619114e-05 0 0 0 4.766746258595256e-05 +6382 0.0003493406687574703 -0.00035195606191178375 0 0 0 9.867635918563228e-05 +6399 2.1358929737182206e-05 -0.0006615837724377048 0 0 0 8.007488972482677e-06 +241 0.0005372890908124642 -0.000587620222798249 0 0 0 5.6961773807025244e-05 +6407 0.0005385756890006137 -0.0008605156973495935 0 0 0 -6.319090880904748e-05 +6408 0.00018429821709798304 -6.51923173030662e-05 0 0 0 4.1999115944121905e-06 +1002 0.0003445963384414668 -0.0005006181499749234 0 0 0 0.00018043421925918838 +6459 0.0004082462511014142 -0.0004087088707385961 0 0 0 -5.890796940996785e-05 +6487 0.00024264353601912228 -0.0003978828039343779 0 0 0 6.820828838511561e-05 +6492 0.0002613384036028417 -5.696859848419382e-06 0 0 0 -1.4457753705120748e-05 +6495 0.0014810282000946248 -0.0016486258399534398 0 0 0 -0.002394497291896432 +6503 -6.805488129237752e-05 -0.0015233039021506482 0 0 0 -0.0005808188639023609 +6532 0.00026257972028744545 -7.410057159495438e-05 0 0 0 0.00013131871155582962 +6563 0.0004263081909398469 -0.0005002192896174139 0 0 0 0.00010708011312358516 +6587 0.00026213898008136305 -0.0004341325165588176 0 0 0 -3.0642231760195754e-05 +6602 -2.6487951796291734e-05 0.00021301400123240638 0 0 0 -6.979028412658915e-07 +6619 0.0005742197502617121 -0.0010529339068162265 0 0 0 -1.690641038143069e-05 +6641 0.00046976149802769435 -0.0005049801003449474 0 0 0 -6.896784480082351e-06 +6651 0.0004534850562766781 -0.00042233246769072196 0 0 0 2.1383148468998487e-05 +6695 0.0005228620784085864 -0.0006888984141711837 0 0 0 3.484658301042565e-05 +6697 0.0005758275388642979 -0.0006797887102851217 0 0 0 -0.00019493697649643687 +6725 0.00038677972807144094 -0.0005307219987085601 0 0 0 -3.17601475566921e-05 +6818 0.00020208840876998382 -6.664670168758957e-05 0 0 0 2.081624389668341e-05 +6833 0.00026412827999803445 -2.729785689954282e-05 0 0 0 7.914104794981651e-06 +9462 0.00021196693678871548 -0.00023770031133630876 0 0 0 1.3112315396455562e-06 +6869 0.000152774815024636 0.00023232216655867614 0 0 0 -6.482138088826244e-05 +6879 0.0002647992512797794 -0.0002443904130023078 0 0 0 2.3230013996660808e-05 +6918 0.0005459304128393964 -0.0004178619977167962 0 0 0 0.00021416023080747656 +6954 0.0006892965854203308 -0.0009570348793822507 0 0 0 -1.584313739471949e-05 +7024 0.00027056819385686573 -0.00011715014203093825 0 0 0 7.442715147948985e-05 +9408 0.0002874348623174633 -0.0004803046881226724 0 0 0 -0.00011655674734270839 +7058 0.0003437225260358021 0.00021878344741392048 0 0 0 -6.517528283486711e-05 +4695 0.00038651107354735134 -0.00040274548711520075 0 0 0 -0.0004077363763459547 +7086 0.0003665049712446854 -0.0003358594808921724 0 0 0 -1.7872336897867678e-06 +7132 0.0003025231957175558 0.00018417544597853518 0 0 0 -7.121255681849936e-05 +7147 0.0004155725306536044 -0.000440115716728433 0 0 0 -1.6871781786710562e-05 +7172 0.00029831336260827975 -0.00019464687876648778 0 0 0 6.318211911314246e-06 +7236 0.00030641065122773863 -0.00023898427648475913 0 0 0 3.4770220248475546e-05 +7240 0.00025094712212389195 6.421592673987185e-05 0 0 0 -1.2483322586509907e-05 +7263 3.7327050999116914e-05 0.00015953280689406563 0 0 0 -0.00030516485968740245 +7273 0.0003939163145001749 -0.00025093604069325757 0 0 0 5.964598229680384e-05 +7383 0.00012510708132978569 9.184337554093787e-05 0 0 0 -0.00011543651073641214 +7384 0.00043036765407047716 -0.00045938971500538047 0 0 0 -2.248361589233371e-05 +7400 0.0003832107481905686 -0.00036278218082875846 0 0 0 -3.330036263521288e-05 +7488 0.0003275902477043794 0.00019227373779864856 0 0 0 -4.765165855543618e-05 +9994 0.00021175830780742269 -8.374953229970665e-05 0 0 0 -1.4451861096369503e-05 +7528 0.00039651669278184813 -0.0004098813966181217 0 0 0 7.944117278265815e-05 +5878 0.0005386016920448945 -0.0009457000138152297 0 0 0 -0.00012737980603999072 +7539 0.0003136649985356218 0.00028556276875215774 0 0 0 -5.469256152428081e-05 +7623 5.888246574392916e-05 0.00024396660149026363 0 0 0 -2.4928713038245296e-05 +7626 0.00025352429854416225 2.4339337327809635e-05 0 0 0 1.4401083728352908e-05 +7647 9.64666240655274e-05 4.544730618903035e-05 0 0 0 -0.0004369675843805287 +7668 0.00040410552506092576 -0.0004505341813704091 0 0 0 1.5544701112855346e-05 +7744 0.00045098861797266847 -0.0004460444757092583 0 0 0 3.0230120668592015e-05 +7752 0.00045264730243224817 -0.00045522890513604577 0 0 0 -0.00012109222822295351 +7802 0.00029269288089457126 -0.0003022679607816638 0 0 0 -7.4301139005133945e-06 +7829 0.0002868052579526774 -0.0003390542939615524 0 0 0 -1.9241391097642662e-05 +7837 0.001916889906436175 0.0014462186867853916 0 0 0 0.0027657992160427082 +7847 0.0002519317881021214 -5.690530980925323e-05 0 0 0 5.547877090176798e-06 +7893 3.5963101267029194e-05 -0.0006237895822100221 0 0 0 0.0007953063860207216 +7911 -4.335619740412783e-05 -0.0008317224610647254 0 0 0 0.00017394567122700687 +798 0.00034729161933272975 0.0005291808205957108 0 0 0 -1.933618430873486e-05 +7987 0.0004730954567791434 -0.0005373231423483842 0 0 0 0.00017902721077848373 +8011 0.0003170113029350827 -0.0011910743358062724 0 0 0 0.0004088064149547513 +6018 0.00023383252887873845 -0.0003049944859829315 0 0 0 -0.0006018780894874638 +8094 0.00037245122154912165 -0.0003615279999590797 0 0 0 -4.6580041098969833e-05 +6551 0.00031985689574207116 -0.000357681392967816 0 0 0 0.00026505402497933016 +8133 9.319330126124154e-05 1.0281435390100357e-05 0 0 0 -0.00011912470741443072 +6548 0.0003441962405856644 -0.0006294749737659794 0 0 0 -5.902800415720291e-06 +8139 0.0002574187677158712 2.341601049326415e-05 0 0 0 3.8017630743020556e-05 +8151 0.0003840855483388537 -0.0003860813081605043 0 0 0 -0.000104941397452659 +8171 0.0008935950731454476 -0.0010566688141892034 0 0 0 0.00019340901617295828 +8215 0.00048227807751548166 -0.0007896002713166295 0 0 0 0.00045436887450784594 +8256 9.126768861633544e-05 0.0002596606407548669 0 0 0 4.640770108378988e-05 +8283 0.00042889646656788194 -0.0004693849575556755 0 0 0 5.9301404208940814e-05 +8322 0.00022452322227507974 -2.550930916455658e-05 0 0 0 2.157690616576337e-05 +8351 0.000135420043247621 0.00026865764621019186 0 0 0 2.2315329058008105e-05 +8406 0.00033498893588329847 -0.0002392715814787823 0 0 0 0.0001064651195733414 +8612 0.00012709080132837806 -3.358045259468788e-05 0 0 0 0.000277039067668244 +7055 0.000989031342747518 0.0009140559412742852 0 0 0 -0.0004671934621561011 +8556 0.0001630913041712441 2.986552701267178e-05 0 0 0 -0.00021141849673754782 +2148 0.00014775818973496407 -0.00031512534235881445 0 0 0 4.169744479719626e-05 +8605 0.0001749150480455484 0.00014415739965250495 0 0 0 -8.084049647469297e-05 +8614 0.000388223087585459 -0.0003722233476427708 0 0 0 -0.0008938577652550471 +8620 0.00044554436524599884 0.0002428956382674589 0 0 0 -7.69465702089545e-05 +9786 0.00035717571546146036 -0.0002970569965544022 0 0 0 -9.228400433684905e-05 +9986 0.0005081998919943145 -0.0009200236424121643 0 0 0 0.00040943924203141655 +8824 7.484364321692872e-05 0.00010941153878908872 0 0 0 -0.0004384508335784497 +308 0.00048571733792937734 -0.0006945602065471207 0 0 0 -1.5616161102220215e-05 +8830 0.0003275752866582416 -0.00015395726178319403 0 0 0 3.09729492981308e-05 +7423 0.00041707060923924495 -0.0006013769075401907 0 0 0 0.00017217060859943447 +8841 0.00023627825027225293 -8.811643390888362e-05 0 0 0 -6.384955342297667e-05 +8872 0.0009330678037452369 -0.0005306244543788706 0 0 0 1.6386620112111775e-05 +8896 0.0003282569008161446 -0.00026821247471654113 0 0 0 9.985259178532072e-06 +8908 0.000379345609329976 0.00010934129335264221 0 0 0 0.0001331642800344836 +8924 6.237928532419753e-05 2.6290618165374565e-05 0 0 0 -4.2253853161057545e-05 +8937 0.0004006020215465736 -0.00038893130908185697 0 0 0 -3.038111407020969e-05 +8960 0.000678694875408346 -0.0009554513738496746 0 0 0 -5.4481075908926445e-05 +8965 0.00035888295023115877 -0.0003167361181115718 0 0 0 -0.00016625032639648046 +8970 0.000659042893019218 -0.0007790616930186812 0 0 0 -0.00041268645839710863 +8975 0.0002896020489787998 0.0001762154832742998 0 0 0 -4.2581277415284135e-05 +8983 0.0007428997142035129 -0.0003904036524349754 0 0 0 -6.622503849376965e-05 +8991 0.000777441850335347 -0.000885475751273988 0 0 0 -9.304613698032154e-05 +8995 0.00043404239130155826 -0.00046310629135025736 0 0 0 0.00010030075846397661 +9030 0.00031085328481958706 -0.0003468548941971345 0 0 0 -0.0002413666911368448 +9052 0.0003457533775950081 -0.00023837282828848168 0 0 0 4.782624164964731e-06 +9939 0.0003689737886456141 -0.0003464153085393679 0 0 0 6.077337025467061e-05 +9171 0.00033836684631751823 -0.00018993859633625903 0 0 0 -6.699060925933068e-05 +9257 0.00032201506880434524 -0.00010087514872052072 0 0 0 5.283176195572151e-05 +4511 0.0003777701984994841 -0.0004362126023822542 0 0 0 4.2363598052364176e-05 +9341 0.00034649463358072535 -0.0004511484481043529 0 0 0 -0.00011933587377313786 +9369 0.00030975196471075034 -0.0002705210663257348 0 0 0 -1.3092719208927828e-05 +9371 0.00024827198471651834 1.6587160210774764e-05 0 0 0 -3.114065420888341e-05 +9445 0.0004349514186746459 -0.00038499774704206773 0 0 0 -0.00011216589397615968 +4874 0.0003998509838465964 -0.0010076398631204747 0 0 0 7.665203529827225e-05 +9478 0.0008379184069389498 -0.000704332949710873 0 0 0 -0.0008549684294700538 +9511 0.0002877469235680373 -0.00022351536495492953 0 0 0 1.67785328233306e-05 +9527 0.0003435897335581277 0.0003158797185877576 0 0 0 -5.880370796294018e-05 +9546 0.0005456424780691036 -0.00014246317164834252 0 0 0 0.0001730829635752223 +9567 0.0003797934622672091 -0.00040110462335436997 0 0 0 -1.9054452600043738e-05 +9574 0.0002967452342901374 -0.00019511918113224248 0 0 0 -6.24592018780446e-05 +679 0.000319282759057835 -0.0004977276803184664 0 0 0 2.2170551740181777e-05 +6085 -0.0007709485374334942 -7.472408152057233e-05 0 0 0 -0.00028820605976962333 +9616 0.00029495259009225606 7.63264085860013e-05 0 0 0 -3.74966747519646e-05 +9624 0.00035600401843164346 -0.0002656273994915319 0 0 0 0.00016857492787908731 +9633 0.00026980422100193367 -0.00021879261524714277 0 0 0 -7.471667026438811e-05 +9634 0.00011615157000996106 -1.607259032060391e-05 0 0 0 8.620455311719307e-05 +9653 0.0004068143141366942 -0.0004430299896628348 0 0 0 0.0003906550662552055 +9682 0.0004464834328388682 -0.00045770500792964103 0 0 0 3.160600646881682e-05 +9684 0.0004716307057921126 -0.0005569201440052757 0 0 0 -0.00015510898437427704 +9776 0.00032176316530406056 0.000390852227209403 0 0 0 -3.641168119396321e-05 +9778 0.000327276977180043 -0.0003509597466281915 0 0 0 -9.232898655033787e-05 +1750 0.00012407987527740587 -3.016930529128527e-05 0 0 0 -5.133901553225732e-05 +4483 0.0004075544052945556 -0.00041895386372722295 0 0 0 4.7987261557920755e-05 +1459 8.16876061105616e-05 0.0002601490161903023 0 0 0 -2.6026599010557415e-05 +9022 0.0004464017088552226 -0.00039072393950269574 0 0 0 -0.00010015495949062767 +138 0.0005017447114786084 -0.0006196832050413824 0 0 0 1.5049777885898622e-06 +9339 0.00016390117628081868 -0.0001554521871462911 0 0 0 -0.00014491795696453506 +8512 0.0006815786466318252 -0.0009091358220918292 0 0 0 -0.00010987711560972384 +9810 0.0006668691270577836 -0.0005553482408861152 0 0 0 2.7111273971340774e-05 +9029 0.00023205436883591693 -0.0004898733762530818 0 0 0 -6.72106411985593e-05 +7715 0.000541692178786447 -0.0006451203885356039 0 0 0 0.00015783221399446302 +7069 0.0002886291547250979 0.00045590479242387855 0 0 0 1.2350331394275688e-05 +4982 0.000520792185895726 -0.0008185124932206509 0 0 0 -2.7353063805863893e-05 +7295 0.000258717494791426 -0.00047509099505473886 0 0 0 4.1936701853968864e-05 +485 0.0007483855052279697 -0.0009429082212238597 0 0 0 -2.3219706204156903e-05 +6071 0.0004369291501529735 -0.00036139845081850847 0 0 0 0.00012394818131549005 +8391 0.0004725485857694941 -0.0006059764100860958 0 0 0 -0.0002789132849746223 +9857 0.0005777796777425007 -0.0006191893864708242 0 0 0 -1.1887613696931077e-05 +9342 0.0005159658217001464 -0.0005256226988887507 0 0 0 -0.000584058034873376 +6318 0.00046407542604452045 -0.0006048438753419198 0 0 0 -6.796850324705118e-05 +126 0.0006519712166262539 -0.0009092331397486885 0 0 0 -3.110558894760957e-05 +2838 0.0002870807645165224 -0.00024643762377418683 0 0 0 -4.0305096735719086e-05 +2922 0.0002979344536803621 -0.00027473705885808013 0 0 0 -4.530586289795013e-05 +2248 0.0003641263314575802 -0.00044699510282928653 0 0 0 -5.74483412259562e-05 +5336 0.0004363477398743793 -0.0005256896680607856 0 0 0 0.0003722262648244029 +715 0.00045841363933646107 -0.0004272922635585631 0 0 0 -1.530582929498048e-05 +7321 4.8795516400870005e-05 -0.001173975177039295 0 0 0 0.00018891077676329028 +4596 0.0004970291758418069 -0.0007984839062670212 0 0 0 -2.4529163544229722e-05 +3164 0.00030456659841955136 -0.0005148120135508982 0 0 0 -0.00017903925672817345 +4126 -0.00013525561076971267 -0.00012785667160198404 0 0 0 0.0004400541000538461 +9185 0.00041585194665264734 -0.0002959897851144086 0 0 0 2.787807386425829e-06 +1347 4.193488395228484e-05 0.0002345405942016806 0 0 0 -4.643903686526664e-06 +9432 0.0003973991610778932 -0.0003276125486906668 0 0 0 -0.0001748200992047142 +4508 0.0007122972918696014 -0.0008882362891090693 0 0 0 7.849229918348149e-05 +638 0.00040310230706890716 -0.00043178457225832525 0 0 0 -5.147773935231484e-05 +9443 0.0005372361055956784 -0.0007978713995612918 0 0 0 -2.7819719715040724e-05 +6335 0.00040080324019052635 0.000543918835630697 0 0 0 6.0079229673622885e-05 +886 0.0007197155239601792 -0.0009199662239890423 0 0 0 4.542631066566513e-05 +7900 0.0003161777725945128 -0.000300954134458467 0 0 0 -0.00012126177020208966 +4207 0.00026356107842307884 -0.00020229382341663767 0 0 0 -1.5709900453729306e-05 +9890 0.00044643213714747114 -0.0007464485657129026 0 0 0 -5.6127670384594365e-06 +7343 0.0004670041065128217 -0.0007906610044676332 0 0 0 -5.714778239926926e-06 +9054 0.00020956161599611242 -0.0004937840301081237 0 0 0 -0.0012048772608556507 +3894 0.00031396237056331456 0.00023633685978991924 0 0 0 -4.265379806332115e-05 +5783 0.0005741890219792995 -0.0009284573461872434 0 0 0 0.0001535551982693757 +3161 0.0004271383129119699 0.0005936004116399462 0 0 0 4.275723442760277e-06 +179 0.0002820568252038776 -0.00016539017067138535 0 0 0 -1.6925770362011945e-05 +9380 0.0005055768788751666 -0.00221155883485158 0 0 0 -5.088140443634531e-05 +9758 0.0001294861980052633 -0.00015386329328040012 0 0 0 -0.0003747064489233612 +43 7.244106219077203e-05 0.00040129533648651435 0 0 0 7.560216601411902e-06 +46 0.0002242213514375712 0.0009555494442412627 0 0 0 -2.2686293786811694e-05 +114 -0.00032364353073983487 0.0005282537514781202 0 0 0 5.42187020676153e-05 +139 0.00012599505634080258 -8.319826032390985e-05 0 0 0 -5.256599647027089e-06 +184 0.00025249486749891805 0.00044622670576678717 0 0 0 -4.9914312027042415e-06 +220 0.00024910318523613077 0.0007022655003040248 0 0 0 -1.3979879536977105e-05 +261 0.0002328194858147668 0.0004312242146972299 0 0 0 -1.3543585719075264e-05 +6295 0.00024589071247023815 0.0006493847145145975 0 0 0 4.67563873981807e-05 +321 0.00038514360361298984 0.0008184097578218146 0 0 0 -4.36124351013783e-06 +8587 0.00017826234723876644 0.0002534683414417783 0 0 0 -6.38333480147876e-05 +8890 0.00022616478592217765 0.0004596750954949508 0 0 0 -7.759622187260784e-05 +368 0.00016400020590376954 0.00017022660183242043 0 0 0 -7.564883663218954e-06 +389 0.00034029926700254975 0.0007989062279529179 0 0 0 -1.1488474180131664e-05 +393 0.00019007159161282778 0.00018667120317509926 0 0 0 -4.494040522874385e-05 +402 0.0002877419670281378 0.00019853814957362104 0 0 0 1.0307877481548832e-05 +444 0.00017240956150356624 0.0001621725683569741 0 0 0 -3.1432023335258896e-05 +6863 0.00034922457531547915 0.0007373073771079048 0 0 0 -0.0003403370203162579 +536 0.00016353973018699069 0.00018499524930982062 0 0 0 -3.711279768424507e-05 +423 0.00037215575629665143 0.0004581644442693112 0 0 0 -4.786001648232471e-05 +584 0.00011747081697802851 1.6135427363340948e-05 0 0 0 -1.981460280514178e-05 +588 0.00018956063868243693 0.0002485218812908083 0 0 0 -2.9521039564707814e-05 +5260 0.00031794870923551653 -9.228343573558536e-05 0 0 0 -3.9727533379047534e-05 +678 0.00010633628083595479 0.0004025112348294323 0 0 0 -1.635471014330126e-05 +697 0.00019797228018603432 0.0002922431354163634 0 0 0 -1.1657589004753298e-05 +756 0.0002512479955974916 0.00018949390387456287 0 0 0 -7.900664187987957e-06 +809 0.0001644646469359743 0.0001987275929783765 0 0 0 -3.574694462003641e-05 +840 0.00018619432470450706 0.0007047427254448875 0 0 0 -1.961962724838899e-05 +3013 -2.1091764143492126e-05 0.000699290901732104 0 0 0 -4.4848589502940117e-05 +2519 0.0004775183635940114 0.0008603873657393534 0 0 0 -0.00010507254799215449 +868 0.00017946659807382474 0.0008234573806161389 0 0 0 1.4862679752068277e-05 +879 0.0002252816423817774 0.0006436451742241668 0 0 0 -2.391575485109481e-05 +889 0.00043470332227207636 0.0007922042394373539 0 0 0 -3.7154021659748583e-05 +942 0.00015041862479459433 0.00011317838584043175 0 0 0 -3.099530277446486e-05 +948 -0.0002841626451135713 0.0006094876832794746 0 0 0 5.176122444295261e-05 +981 0.00015010877169624264 0.00043120022369769743 0 0 0 1.6305523768610013e-05 +989 0.00023931526445089527 0.0004712308674852587 0 0 0 -1.647587715932109e-05 +8568 0.0002999164270360419 0.0007201335141175202 0 0 0 -9.699530382997164e-07 +1084 0.0002328270529135177 -0.00010516748939110619 0 0 0 -1.6890806782080998e-05 +1127 0.00020365285474653716 0.00031846548073261684 0 0 0 -5.51757157251807e-05 +1156 0.00017301796286282718 0.00038077889664721266 0 0 0 -3.575604451722845e-05 +1159 0.00022308038590616362 0.0008129286144188847 0 0 0 9.216375660140805e-06 +1197 0.00022985126827312053 0.0003121749900754529 0 0 0 7.767434205292896e-06 +1219 -0.00020773246803353342 0.0004281436662258347 0 0 0 5.885252027623085e-05 +9969 0.0002555671661837431 0.0004922769624558512 0 0 0 0.00045634712931059897 +1268 0.00011607255246806841 0.00041262132442631183 0 0 0 -9.78114876769959e-05 +1271 0.00033554464011401964 0.0010185033613049482 0 0 0 3.144181937870328e-05 +1319 0.00036101376431499636 0.0004880345088296756 0 0 0 4.2855688174701525e-05 +1332 0.00016327805555298316 0.0008576506702609415 0 0 0 7.320638640994357e-05 +1735 0.00040471211187580256 0.0006308750495058782 0 0 0 -2.8126439430117563e-05 +1432 0.00020554138489731826 0.0010407627000059946 0 0 0 -2.148730677391873e-05 +1436 0.00014816991842080672 0.0005837598027679814 0 0 0 -1.535691787717676e-05 +1443 0.00023561348627774617 0.0004732471511031906 0 0 0 2.336568668345782e-05 +1461 0.0002168504008158393 0.0004574182510488832 0 0 0 -3.2682854629255352e-06 +9376 0.0001714351216648034 0.0003471686466804884 0 0 0 -1.9054058483071394e-05 +1532 0.00027108895276812433 0.0003608534541804235 0 0 0 1.5325365926970948e-05 +1541 -0.00020677339575763697 0.0006022647387824 0 0 0 -8.102323057751657e-06 +1568 0.00018973529577213027 0.0006799689305526801 0 0 0 -6.383509029649537e-05 +1651 0.00032314194454632396 0.0005104047761665747 0 0 0 2.1411203521699837e-06 +1678 -6.658108363854094e-05 0.00024650579702944613 0 0 0 -2.540941932582592e-06 +8933 -0.001876658619607673 0.0013772611492258368 0 0 0 0.0015817956578135777 +1696 0.00011856843945019256 2.7456574884958207e-05 0 0 0 -3.1959334264584657e-05 +1700 0.0002497719140634188 0.0009694403879627585 0 0 0 -0.00013497533336557827 +1713 0.00022402509696230628 0.00010894857792827068 0 0 0 -6.599070961447692e-05 +1740 0.00025879174100910653 0.00041960781201882366 0 0 0 -3.5875747238782542e-06 +2908 -0.0008194125746826572 -0.0004477888430842233 0 0 0 -0.00037206707899313914 +387 0.00033503155972050016 0.0004557276093398086 0 0 0 -6.0463270135509434e-05 +8702 0.00012321219849244068 -3.297502082825891e-05 0 0 0 -6.534895671634047e-06 +1903 0.0002397448233043873 0.00028252853949633084 0 0 0 -1.5300295813046848e-05 +3191 0.0006030383382364389 0.0008355873649060733 0 0 0 -0.00018555522125861932 +1946 0.00025824331045081486 -0.0001046538194809195 0 0 0 4.1254332968561674e-05 +1562 0.00021646549288610394 0.0001541911012483326 0 0 0 2.5585032083461844e-06 +1975 0.0002471229964962253 0.00036441977863142295 0 0 0 -1.2206520012128689e-05 +9510 0.0001023807772904098 0.000646892401674734 0 0 0 -0.00022395962013795314 +1986 0.00039222843142341685 0.000653202739556179 0 0 0 5.1883670788396126e-05 +2004 0.0003184400669661153 0.000916684867110397 0 0 0 -2.2354581898010608e-05 +5677 0.000346285123805248 0.0002722313816772676 0 0 0 0.00012771922269330674 +8884 0.00026867446592838815 0.0005305744610958192 0 0 0 1.7045456366947406e-06 +6166 0.0003009210302827621 -0.00013515415672494957 0 0 0 0.00011653171331748041 +2093 0.00014115411602298516 8.737341727559901e-05 0 0 0 -1.7974728962567315e-05 +2133 0.0002871209435803872 0.00011630388400223697 0 0 0 -0.00012538912243520748 +2134 0.0001686940450679971 0.0006046561426607878 0 0 0 1.1907797688190005e-05 +2137 0.00012472588128472316 7.808188777094152e-05 0 0 0 -2.303683770349361e-05 +9991 0.000208119058160901 0.00038972104692260213 0 0 0 -6.596805668939855e-05 +9943 0.0001969947713584889 0.0003371295335142049 0 0 0 -2.0180491248805523e-05 +9196 0.00011307307530336506 1.4296497454153882e-05 0 0 0 1.5302364084503835e-05 +2249 0.00012775543667277594 0.0002445807124334888 0 0 0 1.7458599456102078e-05 +2284 -8.95186697665011e-05 0.0004938555550488346 0 0 0 -0.0001438056253592273 +9785 9.075880184119823e-05 0.0006389008443668098 0 0 0 0.00018906760852675008 +2317 0.00022564131900828545 0.0004163507152568194 0 0 0 1.6115250434169595e-05 +2327 0.00014217334629072385 0.000864501332641881 0 0 0 0.00012162759820806364 +566 0.00024694625552513485 6.85452317080256e-05 0 0 0 1.6821887230401123e-06 +2382 0.00011448022476166142 0.0008695396485286841 0 0 0 -1.6740269862148296e-06 +2441 0.0001410532239580753 0.00021013960081750678 0 0 0 2.7429726645179084e-05 +540 0.00018668375520932814 -0.00012508254174588125 0 0 0 3.655246991615345e-05 +2543 0.00015217117781783987 0.00023950141026784371 0 0 0 -6.744811902458587e-07 +2547 -0.0001306912596082467 0.0007506386013177919 0 0 0 -6.655720309653034e-05 +2571 0.0001041580119969007 -4.148294218762677e-05 0 0 0 2.2779169689854934e-05 +2576 0.00029659637745201695 -0.00010977105073269295 0 0 0 3.002060294312353e-05 +2603 0.00023897187131066098 0.0003809633717140889 0 0 0 -3.483113067863448e-05 +2611 0.00022080642712395915 0.0005426714172588623 0 0 0 -5.1062983128688695e-05 +8123 0.0004063957376661903 0.0005631335053166145 0 0 0 -2.786641597425438e-05 +2672 0.00020766714357670681 0.00042059676755312275 0 0 0 1.1453085469092822e-05 +2676 0.00017836371775795012 0.00033730361135073334 0 0 0 0.00011748069646219886 +2686 0.00036621040948535996 0.001038374613836126 0 0 0 -0.00014320291290249523 +6381 0.00043379488727727123 0.0008347697905154164 0 0 0 -0.0004194913050381863 +9105 0.00015894779135989818 0.0009346976115708384 0 0 0 6.0316892317492475e-05 +2701 8.756820859951638e-05 -5.057938373656354e-07 0 0 0 -3.419226978660774e-05 +8837 0.00023463881451307034 0.00046011265867781427 0 0 0 0.0001233635054689433 +6418 0.0003662351811832388 0.00020997714809034261 0 0 0 -0.0001229316333506609 +2780 0.00021446430384945082 0.0008717990002912107 0 0 0 1.721456265208573e-05 +2784 0.00029719363218733716 0.00034729225075153 0 0 0 -1.2388492964770849e-05 +8744 0.0002095172698125757 0.0008816315653200406 0 0 0 7.291213378186015e-05 +2809 0.00018176990738435418 0.0005210897314006078 0 0 0 -8.650581456075548e-05 +8831 0.00020998810602560045 0.00016522297379040028 0 0 0 -6.160791046093994e-05 +8093 0.0003932981402088484 0.0005391366269159929 0 0 0 0.00012576887639470708 +2874 0.00021789353253037216 0.0001522768918272949 0 0 0 5.8727826524653436e-05 +2880 0.00020524272055835345 0.000780315530350697 0 0 0 -4.8292674454617526e-05 +476 0.00016815647866355243 -0.00011765650034040832 0 0 0 2.087875995508765e-07 +2912 0.00013516469659872893 -9.310858370932032e-05 0 0 0 2.2583798981063172e-05 +2956 0.00016850723443060915 0.0002841493709232075 0 0 0 1.228322670098156e-05 +2983 0.0001812396144798037 0.00022137722529717868 0 0 0 -7.59097163289905e-05 +3002 0.00012717549215765237 0.0001848502667734169 0 0 0 -7.050666292187669e-05 +6400 -0.0002790293799782068 0.0004935842820873976 0 0 0 -0.00020553636292724404 +9736 4.731368313879179e-05 0.001070810590908736 0 0 0 -0.00010490225075391365 +3027 0.0004670921070824967 0.0006852215523987595 0 0 0 0.0002099297070123776 +3067 0.0002751408883664356 0.0004240517962117809 0 0 0 -6.464581962613088e-05 +4634 0.002181581460336193 -0.000349092373514821 0 0 0 0.001344217695531166 +3113 0.00010160809497836143 -6.726561659667107e-05 0 0 0 -4.747543285206174e-05 +3682 0.00015238238357489624 0.000996886870303507 0 0 0 0.0035781351906304633 +1089 0.00032172035021347557 0.0006002590039130648 0 0 0 -4.690740716495505e-06 +3142 0.00025382650512046067 0.00048030127320687193 0 0 0 -5.528879613778911e-06 +3150 0.0003428947224758909 0.0005624962363355488 0 0 0 -9.686869098134866e-05 +3166 0.00016659929943230287 0.0005865404839790218 0 0 0 -4.792468320886956e-05 +4387 0.000314959967162837 0.0006169277510582017 0 0 0 -6.934122121751365e-05 +3241 0.0002503329174921194 0.0001270643135075572 0 0 0 1.6877069114469503e-05 +3248 0.0002485697189188478 0.00027714443300467 0 0 0 -6.0871484972229544e-05 +3299 0.00014071685967886272 0.0005865977448317665 0 0 0 -1.2386147778704926e-06 +3312 0.0001127155579371486 0.00020479667660530725 0 0 0 4.62697439799044e-05 +3361 0.0002818089641818626 0.0010032128121967763 0 0 0 0.0001619505276230442 +3367 6.68268293579959e-05 -7.266323604387982e-06 0 0 0 0.0002138414692479436 +3376 -6.990508249424045e-05 0.0007914503745346318 0 0 0 0.00036308105562197986 +5579 0.00034998570036973555 0.0002681901852326332 0 0 0 -1.15565101773972e-05 +3419 0.00014554952128520754 7.688390613242313e-05 0 0 0 -2.2588002522649476e-05 +3459 0.00013793419119192252 0.00019494466930073596 0 0 0 -8.866386133168383e-05 +3461 8.861438919483817e-05 -2.7121219625124988e-05 0 0 0 -1.029196755255153e-05 +3506 0.0002860068266771277 0.0003915277604998239 0 0 0 1.9012580762147724e-05 +3517 0.00024605862514327873 0.0005017861943860037 0 0 0 -7.070531789276705e-05 +3589 0.0004108323328912275 0.0005380900272265318 0 0 0 8.195402062649403e-06 +3644 0.00039549656052804884 0.0009598035071919057 0 0 0 -6.602072649951324e-05 +3651 0.00015534385482778314 0.0001754948873783951 0 0 0 -5.350086658938361e-05 +3663 0.0001421172010846842 0.00038441553388928254 0 0 0 -1.7896521931802952e-05 +3720 0.0001300735052134714 0.00026504476146901727 0 0 0 1.2077618878492439e-05 +3722 0.00013746722783888527 0.00022363638485431152 0 0 0 -1.743407699930259e-06 +3742 0.00018756047567417404 0.00029769541652779495 0 0 0 -7.538988873920283e-05 +3769 0.000260185611442823 0.0008247060810802089 0 0 0 2.753914314988407e-06 +3784 0.00017067090814572194 0.0002501715479525907 0 0 0 1.954951953221883e-05 +3791 -0.0004285073389289958 0.0018059629408502874 0 0 0 -0.00040506482290061696 +3821 0.00024013020552474907 0.000675087382721997 0 0 0 -6.145073491393863e-05 +3856 -0.0009642003137106294 0.0016727972215272002 0 0 0 0.0012010059209908504 +3877 0.0001925620865791798 0.0005236076788621389 0 0 0 -6.821168460603267e-05 +3900 0.0001605559317196804 0.00044321152670446866 0 0 0 3.359409728494697e-05 +3922 0.0002553425774864599 0.0008450637744427666 0 0 0 1.0096693492461365e-06 +5142 0.00027220703046230234 0.0004861846292428078 0 0 0 5.0524527536389686e-05 +3972 0.00012838736960572072 0.0001631228827440938 0 0 0 -9.98343876413097e-05 +3982 2.937131643735204e-05 0.0011374197588985304 0 0 0 -0.00010615625711319042 +4095 0.00015448917452320522 0.00012670835326058464 0 0 0 1.5778594060493703e-05 +4106 0.0001531014118484407 0.0001539778453657573 0 0 0 -1.188020260189179e-05 +4154 8.343629170789493e-05 0.00044211543151834333 0 0 0 -3.787140297807361e-05 +6173 0.0004307298001845686 0.0005244826180097434 0 0 0 -4.943320981841742e-05 +4241 0.0003248312520767171 0.00031999241877349256 0 0 0 -4.36615422405527e-06 +8144 -0.00024798858001212116 0.000489561580880839 0 0 0 0.00027780330057845077 +8713 0.0002278777987399448 0.0006692230219771855 0 0 0 2.5786017648810544e-05 +4310 -4.137985095369953e-06 0.0010324661445263905 0 0 0 -0.00029946695715986745 +2931 0.000308274849511143 0.000699680080514986 0 0 0 -3.912903389223643e-05 +4341 9.436870325769341e-05 0.0004893488972395288 0 0 0 1.5525326032028623e-05 +4404 0.0002243310123227848 0.0004340607455043733 0 0 0 -3.166033873357043e-05 +4436 0.00016616875460758487 -9.532263841741563e-05 0 0 0 -2.14260934949881e-05 +4526 0.0008418409551680856 0.0012835744160896165 0 0 0 0.0005157524239624376 +4566 0.00012522419569025993 0.00015810380352791707 0 0 0 1.4420876400222868e-05 +4620 8.350122502881309e-05 -4.5748419829440563e-05 0 0 0 2.0248066747758877e-05 +4621 0.00012238229217160644 6.927482212617446e-05 0 0 0 -2.3431977135336823e-05 +4640 0.00016356477718590916 0.0003026047603423368 0 0 0 -1.2928509008404588e-06 +9290 0.0003556090337551267 0.0006670706432967838 0 0 0 -0.00034239499558568864 +5003 0.00033276182037125817 0.0005909605666900487 0 0 0 -2.37742403506031e-05 +4745 0.00029871431725138407 0.0005690084725723091 0 0 0 -2.5949678374586893e-05 +4780 0.00011472694555239788 0.00036609386126813733 0 0 0 -1.3187049759148735e-05 +4781 0.00010077540239267971 0.0003930881681632175 0 0 0 -8.144461697218931e-05 +9334 0.00022145992308902622 8.435569132241674e-05 0 0 0 -2.2477070971544507e-05 +4817 0.0002546204361999595 0.000828971975453595 0 0 0 5.5209240672695524e-05 +4823 -4.764065140131451e-05 0.0005462260530367569 0 0 0 -5.116917690620666e-05 +4844 0.00013135146441794975 -9.571315224245489e-05 0 0 0 3.425298688673823e-05 +4863 0.00017917293733287997 0.0004668343685195512 0 0 0 -1.6051487221415352e-05 +4916 0.0002031722230164015 0.000511845503304168 0 0 0 -0.00023709431302991956 +5021 0.00012770094969978533 -6.27813843450192e-05 0 0 0 5.152125715596774e-05 +5030 0.00044677372654385283 0.0009722077283618756 0 0 0 -0.00020874645491353194 +5058 0.00030640591399401637 0.0010434489895691935 0 0 0 -0.00013593595170346243 +9239 0.00030687533322850855 0.0005458984450769712 0 0 0 0.0001698189369723934 +5092 0.00021201218672378813 0.0001624571755465653 0 0 0 -3.454880637597441e-05 +5119 0.00019153964685604744 0.0003427861406637519 0 0 0 5.6038119291869495e-06 +5122 0.00038855871545705504 1.038917329871109e-05 0 0 0 -2.1631289933980124e-05 +3379 0.0002905480029787272 0.00038207642404140173 0 0 0 1.682451144747602e-05 +5198 0.00022432246660981857 0.0014692865823214356 0 0 0 7.208682022831162e-05 +9406 0.0002805522781790493 0.0005421403706197271 0 0 0 -1.2279342857061888e-05 +8449 0.00022689241953782266 -0.00017101175156587905 0 0 0 -0.00012156907258394627 +9213 0.00045795882432431433 0.0009150304508868121 0 0 0 -0.00015104651602057786 +5310 0.0003433156008916334 0.0009156190663985924 0 0 0 9.9816829122686e-05 +6117 0.0005263042685002762 0.0006672444716775152 0 0 0 0.00010344947064720906 +5329 0.00039117218825033406 0.0006589829464709859 0 0 0 -4.481343199957512e-05 +2719 4.9825891563947105e-05 -6.923637823569306e-05 0 0 0 7.070278267397595e-05 +5360 5.004209059668989e-05 0.0003643891528748792 0 0 0 -1.5101638601484447e-05 +5375 0.00011917401991273393 0.00017930442455594756 0 0 0 -5.438538032293117e-05 +9579 0.0002601740635825367 0.0005695398963444235 0 0 0 -6.289592818194824e-06 +5382 0.00010774534644018763 -6.00995503358866e-06 0 0 0 -9.724756440911959e-05 +5438 0.00025875293044535 0.0004912054129884905 0 0 0 -3.3455989297618534e-05 +5483 -0.00031315799816988935 0.0008418961298776782 0 0 0 -0.00027351248551957973 +5518 0.00046425027834281026 0.0008374443431543773 0 0 0 -0.0002864919692013611 +4691 0.0002264631481771269 0.00013751774161841268 0 0 0 5.471558004692921e-06 +5537 0.00015783876078497765 0.000169615886313126 0 0 0 8.378770776878392e-06 +9900 0.00043876883355377047 0.0008345037738407686 0 0 0 0.00010367244989841279 +5620 0.00013385553931988966 9.969875020034802e-05 0 0 0 -1.2666437450554191e-05 +5660 0.00020453849530077943 0.0004938092098802296 0 0 0 -4.6085318211342994e-05 +5672 0.0002529954857870138 0.0004003693335783666 0 0 0 -5.113572094073946e-05 +5683 0.00023738316276886135 0.00021572229135031898 0 0 0 -4.991935063502765e-05 +2226 0.00046893852804495625 0.0006493134015350293 0 0 0 -0.00010017853948032692 +5723 0.00027776197825469016 0.0007762155554242503 0 0 0 -7.850047767286323e-05 +4206 0.0004404321091917057 0.0005992252779506952 0 0 0 1.1202500017374943e-06 +1189 0.00028645039067303304 -0.00022200924520895436 0 0 0 4.57059639312845e-05 +5769 0.00028853376686962677 0.00014073668774179047 0 0 0 0.0002671000080024787 +9412 0.00015048780987044226 0.00027029101313511786 0 0 0 -0.0001492039226153041 +5815 0.00016960812959493303 0.00021881368336262362 0 0 0 -2.9868902863762543e-05 +5838 0.00011991081825299156 0.0007938910962972122 0 0 0 -2.131222318990754e-05 +5852 0.00011070509564185624 -8.551698174301131e-05 0 0 0 8.005841187311622e-05 +5860 0.00011065178835046668 0.0011456903995756137 0 0 0 -9.024760113837908e-05 +5872 0.00011058783872226103 -3.228239409675055e-05 0 0 0 -1.1966431916010434e-05 +9263 -0.0002152123791161728 0.000851215369804381 0 0 0 0.0003799204453698616 +5920 0.00013882921001786473 0.00014864823660555218 0 0 0 -0.0001239792593332131 +5944 0.00010294262314858383 -4.643347316163943e-05 0 0 0 9.124911903680824e-05 +5959 0.00022918931222807204 0.00023491028547759882 0 0 0 -3.921653844987951e-06 +6016 0.00011676679313718176 0.00011799944450036567 0 0 0 -9.45124105109229e-05 +6046 0.0001852308123838871 0.0003569146278098709 0 0 0 -0.00011749989374412545 +6054 0.0003122275494875282 0.0004212174263569987 0 0 0 6.444920030489538e-05 +6074 0.0002685082371075675 0.0005170443287110032 0 0 0 8.434403433259736e-05 +6076 0.00024937205987369404 0.0006039669388607109 0 0 0 -4.888149724356498e-06 +6084 0.00015826028186634512 -0.00010419924111953299 0 0 0 4.343989594276429e-05 +6093 -0.00017299546457310607 0.0007832604230627364 0 0 0 -0.0003192496165027348 +6101 5.571413955740659e-05 2.401957260245618e-05 0 0 0 -0.0002029956480501381 +4265 0.0003061552848597387 0.00036567915875702613 0 0 0 7.13943060340997e-05 +6149 0.00021655815595532065 0.0010291886655009871 0 0 0 0.00013729656430952619 +6157 0.00014507266616010976 0.00025000409445065873 0 0 0 4.0718018195615904e-05 +6164 0.00013970108630950736 8.150137649934797e-05 0 0 0 -7.224184929382136e-05 +93 0.00029151753651217717 0.00035573690362023067 0 0 0 -2.4362759035467673e-05 +6223 0.0002939917294076474 0.00047635699784396354 0 0 0 -4.343309062121018e-05 +9167 0.0004486351106921056 0.000694279485735757 0 0 0 5.112081083677223e-05 +6286 0.0001059484183485106 0.00021920699897614684 0 0 0 -1.3178851865161768e-05 +8953 0.0001704960717314973 0.0006959962458559241 0 0 0 1.848829046599748e-05 +6391 0.0003529054133631444 0.0007431033362685441 0 0 0 -0.00023262926761051243 +6479 0.0004096680332365735 0.0009354255556567598 0 0 0 -0.00020470118945468217 +6535 0.00020817098784628755 -0.00041898145750977466 0 0 0 -0.00022567549152751248 +6601 0.000392911123601021 0.0008863494307333912 0 0 0 -6.366980573783304e-05 +6631 0.0002729136959266476 0.0004695461244145611 0 0 0 -3.6926806878385604e-05 +6636 0.0002791212541560068 0.0005790401134868875 0 0 0 -8.436216501564122e-05 +6682 0.0001776633552948526 0.00010286605023754619 0 0 0 7.553023336183974e-05 +7501 0.00016645430096267618 -0.00011314745581615608 0 0 0 3.060537383507218e-06 +6723 0.00020103750971311267 0.00015952510764402514 0 0 0 -2.3271455988090797e-05 +9114 0.0002137450609658654 0.0003849790421470086 0 0 0 -8.862888259822e-05 +6810 0.00015506817464150207 -0.00010216976010907771 0 0 0 -1.7116439968346135e-05 +6914 0.00014570014244770504 -9.273875945114269e-05 0 0 0 4.2015114649930856e-05 +9197 0.00014427484239713022 0.0008503611321398896 0 0 0 1.7096233923801672e-05 +6967 0.0002355674083461852 0.00015786690219132102 0 0 0 -1.657971931625282e-05 +6972 0.00030594701834498925 0.0009659292839833006 0 0 0 0.00044914973674123744 +6973 0.00013827889468097447 0.00016906219527249204 0 0 0 2.773481351612952e-06 +6988 0.00010976150278760901 0.00043443966702499877 0 0 0 2.6682489266715663e-05 +7063 0.0001253172057602607 0.000145095812346361 0 0 0 1.645165390376942e-05 +7085 0.0001714746640390523 0.00042950369341387246 0 0 0 7.643449549753434e-05 +7109 0.00022065404443581912 0.0005084391336049359 0 0 0 -6.720847582855027e-05 +7119 0.00133518204218794 0.0003901985958287337 0 0 0 -0.00030380874818856614 +7123 0.00014645212572385354 0.00016566637702994358 0 0 0 -4.400403823632841e-05 +7135 0.00017099275512975914 0.00044474573342632767 0 0 0 -1.3556598936531801e-05 +7140 0.00022262875911188164 0.0008097911428251201 0 0 0 8.389150986081122e-05 +7158 0.00015251621504880838 0.0005578797367276353 0 0 0 6.572929934696317e-05 +7165 0.00028833555562692156 0.00017959293355752443 0 0 0 -5.368136739795716e-05 +1688 0.00035805094559659457 0.0006497424268294188 0 0 0 -2.9959008936159256e-05 +7217 0.00021079425781302046 0.00021350041198268588 0 0 0 2.9201132702544774e-05 +7267 -0.00031108779595134437 0.0006082453306135932 0 0 0 -0.0001947206688460171 +5526 0.00014308045433442164 -9.793215340320214e-05 0 0 0 -3.366329285192301e-05 +7341 7.817630037251109e-05 0.0002801805220435157 0 0 0 -0.0001193098653285076 +7374 0.00019182569052109987 0.00028176316962932716 0 0 0 -6.13865700538579e-05 +9186 0.0002837355970366069 0.00039022695353881564 0 0 0 -8.033611180498626e-05 +7378 0.0003849303221427301 0.0005665139549544946 0 0 0 -0.00014439268539323172 +7412 0.00022795973812218164 0.0007445589096861632 0 0 0 3.0620173252221775e-05 +7515 9.953100521021821e-05 0.00021471338330192482 0 0 0 -5.394613814323576e-05 +4251 1.3148361675608101e-05 0.0010297393423530437 0 0 0 -4.146953764838187e-05 +8721 0.00019902035923171732 0.0008411844752856554 0 0 0 9.162582003138177e-05 +7569 0.00032650064062249897 3.4047654640521477e-06 0 0 0 0.0004184078124853291 +7596 0.00012246863083894516 0.00021821300940348662 0 0 0 1.2165032262256864e-05 +7084 -0.0014055376230742572 -0.0004101518856590081 0 0 0 -0.0015322270231095483 +7674 0.00016532444054358504 0.0002999461303461054 0 0 0 -4.345359827013398e-05 +7691 6.145528654144973e-05 0.0006364138724998317 0 0 0 2.3575349790463684e-05 +1274 0.0004947927677674551 0.0006640106924679231 0 0 0 -4.5124158874577506e-05 +7733 0.00013690782590180937 0.0004244339293102432 0 0 0 2.013467089626353e-05 +7776 0.00013892368811921718 0.0006077479945230023 0 0 0 0.00017241866179684029 +7800 0.0001729141419883498 0.0002918877786923497 0 0 0 2.58721203958501e-05 +8670 0.00039010312063749396 0.0009178565956421945 0 0 0 0.00037512107254938763 +7048 0.0002652908038075887 0.0006074014729953897 0 0 0 -2.5979804549302936e-05 +9564 0.00015885553643344281 0.0002984259577091973 0 0 0 -6.537778649939728e-07 +7942 0.00021031454311553068 0.0002737858570877654 0 0 0 1.6009084556494417e-05 +9219 0.00015194572691342985 0.0004989142348360046 0 0 0 1.5070803963220763e-05 +7974 0.00030866574391988485 0.0003647443394261196 0 0 0 2.2302037959888035e-05 +8001 9.38244643108059e-05 0.0002656899948618671 0 0 0 7.696225813803025e-05 +8015 0.00022887233697011953 0.0004786002726740738 0 0 0 -2.097681143561588e-05 +8110 -0.0007059981959026479 -0.0011060845089163598 0 0 0 0.001634336863008336 +8147 0.00021739589395391445 0.00018034567848282816 0 0 0 -2.471079096456441e-06 +8200 0.00033427285459636024 0.0005453097553433711 0 0 0 -4.603004097659683e-05 +8262 0.0004934340928060365 0.00016039984931620762 0 0 0 -0.00038191660696817027 +8300 0.00010006897830774512 0.0009156502926373158 0 0 0 -3.959910294536001e-06 +8314 0.00023294592626852995 0.00023634157869396977 0 0 0 -2.141368202371658e-05 +8320 0.00023929127603481798 0.00046223211948459114 0 0 0 -2.072924814891928e-05 +9470 0.00012500975273368098 0.00043377889308697845 0 0 0 -3.0167860766633786e-05 +8477 0.00011589953934227906 0.00025827337157339537 0 0 0 -7.540587242504655e-05 +8519 0.00021624960247874962 0.00014503944751872232 0 0 0 -2.025254334642951e-05 +8526 0.0002050452649336917 9.914177675553352e-05 0 0 0 7.808896807992555e-05 +1919 0.00041162278307131444 0.0006686620400887103 0 0 0 7.871473219087268e-05 +8532 0.00028478852043325233 0.0002016399241582258 0 0 0 -3.22162340403245e-05 +3197 0.00038568817492746766 0.0007564376401457612 0 0 0 -0.00029275493715280674 +8548 0.00026252246927223815 0.00010024115139123686 0 0 0 -5.916810975820941e-05 +4094 0.00047571449548324847 0.0006123670122314351 0 0 0 -1.881288947839017e-05 +14 -0.0005787539525290441 1.4354102683172773e-05 0 0 0 1.2554102134086457e-05 +22 -0.0008970606509029946 -0.0006424332276308748 0 0 0 1.830600963275952e-05 +55 -0.0008373135451097079 3.964617575299669e-05 0 0 0 3.380437411279079e-06 +2524 -0.00031664106938523106 7.386886463756083e-05 0 0 0 -0.00017788608809417685 +3005 3.139546423914522e-05 0.00028816283361926916 0 0 0 -2.7914447004496534e-06 +5384 -0.00046979737132426516 -1.7487325142301243e-05 0 0 0 -8.224671935510678e-05 +3103 -0.000211762508379917 0.00019132231266272908 0 0 0 0.00013933238187198487 +156 -0.0007014856150322085 -0.00017658435603610766 0 0 0 1.3052173976676562e-05 +161 -0.000270577912577946 -0.0003830141737842833 0 0 0 5.6027479558214974e-05 +215 -0.00010971992423674276 -0.00018283616398336662 0 0 0 2.878633729634486e-07 +227 -0.0008360852741057992 9.20900133150557e-05 0 0 0 5.455261412258844e-07 +230 -0.0008304977059227784 6.664960822442733e-05 0 0 0 9.997255636984762e-06 +240 -0.0004010453814361526 -0.0004327705640041659 0 0 0 7.693665031979322e-06 +5605 -0.0004940409846362214 4.787754348613414e-05 0 0 0 -0.00010573814647709213 +319 -0.00036817511006454444 -0.0005933032393961901 0 0 0 3.53749516521488e-05 +9603 0.0001268623549248242 0.00024360750598429538 0 0 0 -3.947945608567629e-05 +366 -0.00040966720633713727 -0.00023084608505416078 0 0 0 -1.678328353145005e-05 +9951 -0.0003612576205319423 -0.0005792696425137 0 0 0 -4.1420209033283805e-05 +9885 -0.0004538381211034954 8.223877688435811e-05 0 0 0 0.00025804975698593617 +492 -0.0008248900275434235 -0.0003820059570260179 0 0 0 -5.078267419869935e-06 +2052 -0.0008709952545652394 8.660700354880771e-05 0 0 0 -3.070506728552944e-05 +5381 4.265609484046004e-05 0.00026112417659117674 0 0 0 -1.961190124894946e-07 +618 -0.0002552695290044112 -0.0005406359305292029 0 0 0 2.5134138222180846e-05 +623 -0.0003512054720580985 -0.0003689535477932516 0 0 0 -1.8930792326128453e-06 +9654 0.00016150694084533687 0.00011992723836182212 0 0 0 -0.0002415347690444334 +8545 9.952540470431847e-05 0.00025664335060134253 0 0 0 6.396128848453562e-05 +694 -0.0006546814978137358 -0.0003954145496918758 0 0 0 -2.3838947799944825e-05 +3668 -0.00024889755124154854 0.00018341931518517927 0 0 0 -4.549155934825751e-05 +2127 -0.00037549682912623594 0.00021160392580830032 0 0 0 -5.522268492311746e-05 +849 -0.00047254409572389786 1.7854101089023205e-05 0 0 0 7.39424053887057e-05 +905 -0.0007182833546673629 -0.0006667406594198127 0 0 0 -1.6151000469847135e-05 +8619 1.3698116487984631e-05 0.00032629271499478126 0 0 0 -5.018246629557089e-05 +4172 0.00016888169674533285 0.00013878746794056368 0 0 0 0.0001942311616061447 +1009 -0.000719844374484096 -3.609853086997751e-05 0 0 0 1.0795719429398546e-05 +1072 -0.00015950577406246015 -0.0004747376005285097 0 0 0 1.3026127022756874e-05 +1105 -0.0006654545846928784 -8.895683350246166e-06 0 0 0 -4.424843045021621e-05 +1138 -9.624441520174856e-05 -0.0002851977316495224 0 0 0 7.727950148702492e-05 +4713 -0.0006840283678702186 0.0001733583172259594 0 0 0 4.384705779277882e-05 +1220 -0.0005867379139560227 -0.0006375574137808938 0 0 0 5.295654125283879e-05 +5533 -6.627421274829764e-05 0.0002082589850270107 0 0 0 -7.108622508184952e-05 +1254 -0.0007497085703161891 -6.530820835808151e-05 0 0 0 2.03486679426706e-06 +1257 -0.000804496976281287 2.1988405794622606e-05 0 0 0 -1.7839226069285057e-05 +5918 0.00011434001589455633 0.0003030874067142335 0 0 0 1.0971440568043404e-05 +1236 2.6299353964626063e-05 0.000311061453700878 0 0 0 4.730933399590424e-06 +1333 -0.0008309504239173988 6.944091584612401e-05 0 0 0 -5.305506499068753e-06 +1368 -0.0007072424063757978 -8.431759307386235e-05 0 0 0 1.1808684498553263e-05 +1839 0.0001561260219753964 0.0001793530166220845 0 0 0 -5.987277653030413e-05 +1431 -0.0003218589410058902 -0.0005859226107145176 0 0 0 -3.421065654454576e-05 +1462 -0.00025442328279903813 -0.0003721335119727615 0 0 0 -3.767608017999778e-06 +1481 -0.0005456618165657433 -0.0003068067186643344 0 0 0 4.5574848192099585e-05 +1498 -0.0008550011500153514 -4.135092117682359e-06 0 0 0 3.2178783219856615e-05 +1528 -0.00016371289586477632 -0.0002589458440350984 0 0 0 -3.058758219940137e-05 +1533 -0.0007380175535839911 -4.1862851955382937e-05 0 0 0 1.79441148795113e-05 +1549 -0.0009459125721303805 -0.0003408609732413782 0 0 0 -6.33091823076721e-05 +9985 -4.316222734896542e-05 0.00026231620251193475 0 0 0 0.00021169231322694168 +1567 -0.0007826361108893015 2.0406470032916446e-05 0 0 0 -1.4704010860951454e-05 +1608 -0.000756678193185196 4.52024752860382e-05 0 0 0 1.2605712817477088e-05 +2171 -0.0005161183738564021 0.0002335430052859565 0 0 0 0.00017292474545796914 +1631 -0.0004860588826608938 -0.00018601720561925737 0 0 0 -7.94492271092569e-05 +1662 -0.0005629093468296626 -7.37110798560171e-05 0 0 0 2.3140254170158423e-05 +1663 -0.000852952517782037 0.00012097995832288874 0 0 0 -9.738055514229656e-06 +1670 -0.0009589425907028698 -0.000177085538517445 0 0 0 -9.670656366240879e-05 +2803 -0.00040107735475085983 0.0004772335905076296 0 0 0 -0.00023420634296316954 +5742 -0.00028172348446292464 5.318134354428175e-05 0 0 0 4.3851716155167026e-05 +1736 -0.000613692690915365 -0.00034465366887763784 0 0 0 1.2385317461657872e-05 +1742 -0.00043257542235956007 -0.00027789925362231956 0 0 0 -7.455808405469052e-05 +1745 -0.0007429784982784298 -6.404828487381918e-05 0 0 0 3.833452061690767e-06 +2695 0.0001706320663042823 0.00018981003474289153 0 0 0 5.5868454461883915e-06 +1770 -0.000834204135442545 6.864990190047315e-05 0 0 0 -1.894499814347963e-05 +1784 -0.0008367698824969976 7.390935407117086e-05 0 0 0 2.5608064674258376e-05 +9884 -0.0007684944109942571 -0.00026242217497079095 0 0 0 -4.305947164760918e-05 +1809 -0.0005611989244845386 -0.0001086408985763819 0 0 0 3.5543479108393606e-05 +1834 -0.000539882439214483 -0.00016269898813036688 0 0 0 -7.655762530072234e-05 +1950 -0.0006319802799369644 -0.0004934408442307062 0 0 0 6.859107903779367e-05 +1956 -0.000837820191113384 -2.1592895222452686e-05 0 0 0 -7.204109114952637e-05 +1995 -0.00022701979563015927 -0.0004318258196043096 0 0 0 4.980578107971415e-06 +2001 -0.00028664346495312033 -0.000457426345183743 0 0 0 -2.901962530783472e-05 +2023 -0.0007872143748697567 -0.00038875114096017155 0 0 0 -4.737456096027817e-06 +2024 -0.0005399764395258165 -0.0003590221691441464 0 0 0 7.344824121034345e-05 +2040 -0.000835051792900624 8.549004266024057e-05 0 0 0 2.1881796781557463e-06 +2059 -0.0007320366125831331 -6.844705719544902e-05 0 0 0 -1.4962327945447543e-05 +7283 0.0001594692294764761 0.0001596503615662542 0 0 0 -3.9415696353097676e-05 +2131 -0.0006654202967194751 3.878554675892516e-05 0 0 0 -5.765725768570253e-05 +2157 -0.0006914424504038114 -0.00022183823382362184 0 0 0 -1.257862765263258e-05 +2160 -0.0006629375158043026 -0.0002343272688409484 0 0 0 5.1881334417780184e-05 +2169 -0.0007409512268072632 -9.091725839018683e-05 0 0 0 1.1374402657890996e-05 +2155 0.00014688839341824576 0.0001917590851716568 0 0 0 -2.5185695217865522e-05 +2220 -0.0008669835584193215 -0.0001907869785263084 0 0 0 -8.056909095709673e-05 +2221 -0.00032435693478391914 -0.00029194095209330017 0 0 0 3.062814310973627e-05 +2660 -0.00018686583471918497 0.0002110080248373339 0 0 0 1.6405539272219415e-05 +2314 -0.0007256954310879148 -5.504826997533691e-06 0 0 0 3.89621648770427e-05 +9307 4.535052357065162e-05 0.0003984708321823312 0 0 0 -3.49244220491456e-05 +2420 -0.0004188661110364717 -0.00032887083553665054 0 0 0 -5.306159435668327e-05 +7601 -0.0008854838663670369 0.00016229135344741045 0 0 0 -2.76218756471729e-06 +2457 -0.0009372710637056157 -0.00041429599718610763 0 0 0 -0.00013515095923238713 +1076 -0.0002765927325822469 4.047882909546028e-05 0 0 0 1.436850019102647e-05 +5139 -0.0003981904187969998 0.00012923208606564857 0 0 0 0.00011679699824884507 +4799 -5.514444713459081e-05 9.571208417756187e-05 0 0 0 3.621495683635437e-05 +7928 1.74219419307565e-05 0.00027697663702931803 0 0 0 6.130401123859428e-06 +1398 -0.00023818050173718582 2.2282737536684758e-05 0 0 0 2.578669635085184e-05 +2757 -0.0008864091767106906 4.052470645017884e-05 0 0 0 -5.826569958593037e-06 +2778 -0.0008417738138890023 9.225685476522146e-05 0 0 0 4.1254903193336577e-05 +2787 -0.0005569036801825251 -0.0003579846285527117 0 0 0 -9.856543337529519e-05 +2788 -0.0007442234736575486 -0.00011997344179130596 0 0 0 -7.555545178413105e-06 +5227 -0.00031986903541178773 0.00044663393262902267 0 0 0 7.00776820076122e-05 +9506 -0.00012598284599553913 0.00038344438611675086 0 0 0 -0.0004853996377237995 +5706 -0.00023900206437739202 0.00029230555389206196 0 0 0 0.00022048883650126435 +4437 -0.0005569585091889883 -0.00013046134982107007 0 0 0 1.8353439153115425e-05 +2911 -0.0004765148193508924 3.381888251997649e-06 0 0 0 2.8764816501225675e-05 +2950 -0.00044374465768860457 -0.0003591215989130506 0 0 0 -1.2437843520991865e-05 +9937 -0.0002714986116084851 0.00017692993344119965 0 0 0 -0.00010852048939948391 +5760 5.162990072114578e-05 0.0003243959834600924 0 0 0 0.00013707301113172183 +7565 0.00014285233977234622 0.0002551177491076141 0 0 0 -2.475244915381099e-05 +2859 2.7861433164804393e-05 0.00027257861961596877 0 0 0 4.3064749774968646e-05 +2689 8.180450237819944e-05 0.00031806471231019657 0 0 0 1.9388575807106685e-05 +3210 -0.00036586050658896123 -0.00030793709098234827 0 0 0 1.2146824136949618e-05 +3355 -0.0004188380935855873 -0.0005643229741027913 0 0 0 6.0647546477498125e-06 +3437 -0.0005267231574936168 -9.640041912670182e-06 0 0 0 -4.770647674082408e-05 +3514 -0.00025385155092038015 -0.00035092022554760984 0 0 0 -2.483987901125122e-05 +3530 -0.000574805051863883 -8.036639929510277e-05 0 0 0 -9.001634579163092e-05 +8655 -0.0004997407347937512 0.00021691961572340416 0 0 0 0.00021218980818387784 +3567 -0.0007732133829742322 -0.00025587951325201314 0 0 0 -2.3156759854202135e-05 +3580 -0.0002672955341583636 -0.0003529134602919846 0 0 0 -7.350979878824755e-05 +3606 -0.0008908101860351192 -0.00022953142164231418 0 0 0 9.684320407529244e-05 +4724 -0.00029800910199603864 9.857625556605039e-05 0 0 0 -5.183772349325262e-05 +3650 -0.0005746245962098696 -7.111139211899881e-05 0 0 0 -5.974234015816844e-06 +3786 -0.0002943296887286519 -0.0005207162161936928 0 0 0 -1.9476839780460707e-05 +3867 -0.00034693706124918906 -0.0003250042731779579 0 0 0 -2.7149986227580556e-05 +3898 -0.000518514990198765 -6.487016646983676e-05 0 0 0 -0.00012512633276111118 +3920 -0.00018896495451621844 -0.0002600748320567701 0 0 0 3.228726391353497e-05 +4029 -5.1530361548481505e-05 -0.0002154407600040865 0 0 0 0.00018300084133935499 +7597 -0.00032044592268065355 0.00018860251252551905 0 0 0 8.615982022534734e-05 +4240 -9.332965912990696e-05 -0.00037221165598921884 0 0 0 -9.907120160585878e-05 +4353 -0.00020727572478926394 -0.0008923177014252549 0 0 0 -0.0003052620792128609 +856 -0.0003675152939425942 0.00022844032781622905 0 0 0 -1.380916072600923e-05 +4373 -0.0007638732641786347 7.813460407753095e-05 0 0 0 9.261755384174189e-06 +9858 -0.0007379744061904351 -0.00010778071754226356 0 0 0 3.653683010189942e-05 +4453 -0.0004868903521452307 -0.00031666755816731117 0 0 0 2.4476851257759334e-05 +4499 -0.000859213311064056 -8.298397099414483e-06 0 0 0 -5.719595125400012e-05 +4503 -0.0006018099380755529 -0.0006111941790375943 0 0 0 -7.064708571303413e-05 +4513 -2.1752675389735022e-05 -0.00022632899018573783 0 0 0 0.00010490017761669855 +4523 -0.0008460277577147342 0.00011469834849577256 0 0 0 1.8304356207589652e-05 +4564 -0.0009151008359029071 -0.0002109457831323196 0 0 0 -0.00025831116157191335 +4568 -0.0005886525237116926 -0.0004408900146476825 0 0 0 8.292407451928572e-06 +4577 -0.0007004022565519078 -0.0006748678967529149 0 0 0 6.835385851844854e-05 +4595 -0.0005341242955044381 -0.00030674765913318543 0 0 0 -0.00011212104351312047 +1983 0.00011947727918362044 0.0002804271243947322 0 0 0 -4.456745374463417e-06 +4630 -0.000715053138518109 -0.00011364606340872085 0 0 0 -1.771564352524467e-05 +4633 -7.893444205109848e-05 -0.0002804746518447182 0 0 0 0.00013047872049385897 +4647 -0.0004946724847548995 -0.0003226434021203159 0 0 0 -3.627157947386528e-05 +4667 -0.00011646334123657914 -0.00028229749309438963 0 0 0 6.445590574282596e-05 +4690 -0.0008828741933308119 7.357995623551851e-05 0 0 0 -9.073433524347149e-06 +645 -0.000871104333521293 0.00010171550770610288 0 0 0 1.7461977929907854e-05 +4767 -0.0005105100099818947 1.5651242779278096e-05 0 0 0 -5.531567598837507e-05 +4771 -0.0008208409562928669 8.264371331172336e-05 0 0 0 3.509901281128854e-05 +4790 -0.0006915447389638502 6.028334262688504e-05 0 0 0 3.837343329289037e-05 +4793 -0.0002225001667806665 -0.00040394556645175725 0 0 0 -2.3917789690130133e-05 +4852 -0.0006163611271454581 -0.0006087445012108042 0 0 0 -8.68058686841492e-05 +4861 -0.0007062330414948247 -6.240826893822984e-05 0 0 0 -1.1131452789001652e-05 +4887 -0.0008057763521414492 -0.0001819887439684985 0 0 0 -1.1205248237018945e-05 +7608 -0.000217172413534201 0.00017907785874518204 0 0 0 0.00018589804281264193 +9391 -0.0008606261939591819 9.376438573186646e-05 0 0 0 3.442686711491667e-05 +4955 -0.0003768105442488164 -0.00032415966834064967 0 0 0 1.9774715350407464e-05 +4967 -0.0002806753550798304 -0.0005236567857944718 0 0 0 -1.921807410072683e-05 +4973 -0.000728592388808359 -7.857165622331281e-05 0 0 0 2.057114645003745e-05 +4983 -0.0005126172996325028 -0.0005431819991083571 0 0 0 4.037810012687637e-05 +4991 -0.0005296072407014505 -0.00034193288136613755 0 0 0 0.00011102299396408691 +5072 -0.000829666170671166 -0.0006984370234431049 0 0 0 -0.00012650218817165563 +5080 -0.0005587794013664425 -0.00036783342945098186 0 0 0 0.00014443856966767145 +5103 -0.0005569293433844234 -4.886679900131697e-05 0 0 0 5.583409695297534e-06 +338 0.00013485859558908208 0.0003027989141094567 0 0 0 3.448631082791356e-06 +5134 -0.00037442484544590186 -0.0003189154930683205 0 0 0 1.5873884614759357e-06 +1529 -0.0002520717067459056 0.00018881996171538336 0 0 0 5.760211100473662e-05 +1328 -0.00024728060899707185 9.296139036593357e-05 0 0 0 3.834016400626173e-05 +5195 -0.0005241203397831184 -0.0002926153753803728 0 0 0 4.514866884970981e-05 +5205 -0.0005754960079878505 -6.986415688468585e-05 0 0 0 -0.00010265671995243102 +5238 -0.0002819958989173416 -0.0003305374812124258 0 0 0 5.9026783895684584e-05 +5240 -0.0005464016761733707 -0.00016754071563189176 0 0 0 3.5822778463644155e-06 +5257 -0.0006506340735502308 -0.0001771859771018742 0 0 0 -8.653344571901693e-05 +5272 -0.0003006327566200835 -0.0003659548341778931 0 0 0 1.6990783997727512e-05 +5281 -0.0001016367030948454 -0.00035435163563081386 0 0 0 0.00018519359397555058 +5340 -0.0007445973891236202 -0.0003852181503185372 0 0 0 0.00011489606469742411 +376 -0.0006039613623891573 -0.00017939457183554277 0 0 0 1.8358486685101917e-05 +846 -0.0002442397299791699 0.00024270445255494862 0 0 0 3.899372231356106e-05 +5458 -0.000735385512987584 -8.611002120736434e-05 0 0 0 -4.8884783404640255e-06 +1914 -0.00015028958689685006 0.00031759213915949806 0 0 0 0.00013067597054223823 +5564 -0.0008288862048334753 5.117236267605466e-05 0 0 0 2.2476646848882213e-05 +5569 0.00013191810464002776 -0.0009204619528147037 0 0 0 0.000591750257215142 +5570 -0.0004911261239810408 -0.00033183977227386644 0 0 0 -9.879190202751256e-05 +5573 -0.00021096531564622728 -0.00034683901304129357 0 0 0 8.045985326995882e-05 +5586 -0.0007242140499611741 -4.9832427298970716e-05 0 0 0 -2.176667526049213e-05 +5607 -0.00042374564263614076 -0.0006080553574145865 0 0 0 2.5586671772303687e-05 +5611 -0.0003082869905638257 -0.00037057456104933213 0 0 0 2.3927701977632957e-05 +2357 -0.00024374659537010717 0.00017612010362660102 0 0 0 4.037330529543585e-05 +5670 -0.0006688034836561807 -0.0005040646309329233 0 0 0 -5.1026696941992936e-05 +9972 -0.0008375018448170975 8.021676506752919e-05 0 0 0 -5.182829856082281e-05 +5703 -0.0007378846558974796 -8.702804282998815e-05 0 0 0 -1.655057767819766e-05 +5751 -0.0008000893550103391 -3.0548276418038164e-05 0 0 0 2.6226101443418498e-05 +5764 -7.365723712276918e-05 -0.00026750242942757615 0 0 0 3.629806057552527e-05 +5773 -0.0008276965716268234 -3.156679376163595e-05 0 0 0 4.955439946539059e-06 +3119 1.8559557671595683e-05 0.00029760564595634006 0 0 0 -0.00018804679459270303 +5845 -0.000503119216779405 -0.000205512068605492 0 0 0 -0.00012003155664243809 +7375 0.0001378987054042646 0.00016955098514655694 0 0 0 -8.343129207614348e-05 +5991 -0.0007212907588116167 3.939507582261345e-05 0 0 0 6.0688940748196796e-05 +5998 -4.505110646045857e-05 -0.00029733527641081684 0 0 0 0.00014025982220376015 +5322 -0.00026721894308090444 6.758187871714159e-05 0 0 0 3.618079906547688e-05 +6072 -0.00022591610423324755 -0.00021488294226951584 0 0 0 -5.385927492690047e-05 +6077 -0.0005497555809714635 -9.625703526260239e-05 0 0 0 5.339988514052361e-06 +6103 -0.00047542376878534695 -4.301329036093002e-06 0 0 0 -3.036689104552593e-06 +6159 -0.0001723986417374469 -0.0003445007003380124 0 0 0 8.264803328531961e-05 +4258 -0.0001833693140847117 0.00016752074849424927 0 0 0 7.057903606295952e-05 +8787 -6.058664044386593e-05 0.00045551200642688267 0 0 0 7.903971207936548e-05 +2711 -0.00010202014280284786 0.00021769098747182334 0 0 0 0.00010045174405548039 +6248 -0.0007384565215375852 -6.253258446651451e-05 0 0 0 4.744545388812658e-06 +6276 -0.0008725282939361336 -0.0004251837621441442 0 0 0 -3.0154679619286147e-05 +6288 -0.0006582360388811217 5.853504032213025e-05 0 0 0 -6.302797754507798e-06 +6507 -0.0006304622993884482 -9.135152519763256e-05 0 0 0 -7.176316732306098e-05 +2328 -0.00037748146315785494 0.00023596092490730524 0 0 0 -2.9628038701869632e-05 +9385 -0.0004987472677131423 0.0002081049302441705 0 0 0 -0.0003104487245806267 +6371 -0.0003379502920320059 1.1070540742729916e-05 0 0 0 -4.317925411948134e-05 +6373 -0.0007280560631272216 -0.00014877533883205654 0 0 0 3.709337563950783e-05 +6379 -0.0008063525846193727 4.318732265115423e-05 0 0 0 5.020307245549483e-05 +6401 -0.0005778499430823445 -0.0002907183077839237 0 0 0 6.772988760537755e-05 +8736 -0.00045517765909203797 0.00039969580329734475 0 0 0 0.00011424799255914767 +6457 -0.0007924600966118748 -4.62837912667916e-05 0 0 0 -8.195996518482294e-05 +9725 1.4366240537270011e-05 0.00031694951666234834 0 0 0 6.621598344428375e-05 +5218 -5.877481674377342e-05 0.00028100688529888155 0 0 0 -7.711513682754338e-05 +6573 -0.0008383038136993442 9.818820373166982e-05 0 0 0 -4.176291461953358e-07 +6594 -0.000870086515783567 -0.00028287785404486256 0 0 0 0.0004249665406192065 +6639 -0.0008300205591048859 5.992140359678304e-05 0 0 0 -3.810393200198874e-05 +6654 -0.0008377681862680067 4.2734678454998495e-05 0 0 0 -7.91905272020428e-06 +7728 1.9007721614954487e-05 0.00030931333315531326 0 0 0 -3.79280213056083e-05 +6716 -0.0008541078584092858 0.0001171266335602978 0 0 0 1.1352046359981035e-05 +6748 -0.0011617743063997747 0.0009164267792897657 0 0 0 0.0004428733199509284 +5802 -8.2901511051912e-05 0.00040859483212981766 0 0 0 -9.62019046389402e-05 +2290 -0.0001679788588723639 0.0004341214212994344 0 0 0 8.025917343848039e-05 +6847 -0.0005342672063384193 -0.00017068896479157606 0 0 0 8.612323316843061e-05 +6904 -0.0002741061473941362 -4.0234319128352665e-05 0 0 0 9.772227000144293e-05 +6948 -0.0008019725652232686 3.142822432186172e-06 0 0 0 4.102042722278553e-05 +6997 -0.0003213223513039978 -0.0004007158944877242 0 0 0 4.496682118164176e-05 +6779 0.00014711234960810692 0.0002854421689850843 0 0 0 -4.5820088548185974e-05 +7955 -1.795207973145276e-05 0.000338149001938264 0 0 0 6.57249663693717e-05 +7160 -0.0008458107958052257 0.00010788353258624241 0 0 0 -1.532468464947929e-05 +7176 -0.000610366606968755 -0.00023073473431032385 0 0 0 8.590950266061835e-05 +8779 0.0001345114055011897 0.00022112873900941618 0 0 0 2.5600962038861943e-05 +7254 -0.0008051966403923917 -9.568075946965773e-06 0 0 0 6.734230876772758e-06 +7262 -0.0008212226998055918 -0.0002331486651515022 0 0 0 -0.00023625702676339383 +6304 1.872276589329124e-05 0.00040032868612738677 0 0 0 -9.669106200051749e-06 +494 2.5486810229824662e-05 0.0003152709964671911 0 0 0 4.4613770235549835e-05 +7331 -1.742063848273706e-05 -0.00020831183719225593 0 0 0 0.0003008071068288442 +7337 -0.0008449633758698154 0.00011002447249339414 0 0 0 1.8271359527939167e-05 +7354 -0.0008709988810930062 0.00010554464884475168 0 0 0 1.6913843428389435e-05 +2861 0.00015104438545236897 0.00026291319650870426 0 0 0 -8.248457800970987e-06 +7410 -0.0007116583747195342 -3.243015562261521e-05 0 0 0 -1.2663229675118226e-05 +7529 -7.36885625531319e-05 -0.0003235734695232733 0 0 0 -0.000371363241161631 +7549 -0.0003434574907011754 -0.00022499329507899807 0 0 0 0.00015916734559396075 +7588 -0.0004946084233157937 -4.231079785049786e-05 0 0 0 -3.531057096324985e-05 +9851 6.562386117411239e-06 -0.0001780361743887854 0 0 0 -0.00023006864044661398 +7610 -0.0005505970227651858 -4.386660304843743e-05 0 0 0 -6.975124500031581e-05 +589 8.991170513825084e-05 0.00021674008061763652 0 0 0 -3.6275694994215336e-05 +5350 -0.0002512812016121781 0.00019925192209573918 0 0 0 -0.00011831530437329021 +7630 -0.00023509081144374268 -0.0002732334513724659 0 0 0 9.088542212573929e-05 +2021 4.848463957715402e-05 0.000256147796416978 0 0 0 1.6902413592800157e-05 +7671 -0.00010728216027545356 -0.000280721332610396 0 0 0 -1.1684869869678021e-05 +9703 0.00014333161076187086 0.00026656227912299476 0 0 0 -4.821841181669514e-07 +7734 -0.0005487694361809501 -5.5095193047052485e-05 0 0 0 -2.685764953149078e-05 +7793 -0.0006983730446571497 -9.837384254069135e-05 0 0 0 1.7116189049765867e-06 +7892 -0.00021954359768935812 -0.0005267096739369388 0 0 0 -9.114105127678313e-07 +7903 -0.0016557273574036603 0.0017995392132404725 0 0 0 -0.00037688358358954876 +7957 -0.000742945854261921 -0.0003656028583158787 0 0 0 -0.00012902178066156455 +8065 -0.00024167539661791582 -0.0005145637124852686 0 0 0 -1.4414441001586556e-05 +2060 -0.0008994508498635083 -0.00047512900388694564 0 0 0 0.0007171649768669154 +8112 -0.0005535136126708311 -2.9067665265752983e-05 0 0 0 9.366185239968603e-05 +8128 -0.00045715938922634414 -0.0003403342923695358 0 0 0 -8.502774046412176e-05 +9947 -0.00029998875570459054 -0.0001738459725776598 0 0 0 0.00020685758495806998 +8166 -0.0006261343328392996 -0.0002746347805845835 0 0 0 -7.843862626596244e-05 +2033 7.969659956553193e-06 0.00043888761020051165 0 0 0 0.00011200508741495484 +8212 -6.455585654440122e-05 -0.00027880948959623734 0 0 0 6.921463404868821e-07 +8245 -0.0006924199461313385 6.109440329578047e-05 0 0 0 -2.7351670735532724e-05 +8280 -0.0007225785020953525 -0.0003835292091514171 0 0 0 -0.00014201335160243998 +8305 -0.0007352826726725637 -0.00012080312281738162 0 0 0 2.181292341496693e-05 +8331 -0.0008276853988419367 8.791931472749526e-05 0 0 0 9.67254623515873e-05 +8341 -0.0008038672147911742 -4.509964267087259e-06 0 0 0 1.7461313665936114e-05 +8378 -0.00031626303687930154 -0.00043216125466570077 0 0 0 1.0894471529622313e-05 +8395 -0.0003789625308817967 -0.00038343084504381404 0 0 0 -5.6077078805471756e-05 +6244 -0.0002533556955323043 0.00024716710293566196 0 0 0 6.151842589548098e-05 +8419 -0.000868932029994447 -0.0003270523961182477 0 0 0 -4.1731743801729006e-07 +8520 -0.000158514551406365 -0.00046246186383160326 0 0 0 7.152669022799041e-05 +8554 -0.0007818619633021109 -0.00024254549605185532 0 0 0 -8.43681134302353e-05 +8567 -0.0006775911113417706 -0.0003144762748106439 0 0 0 0.0002630494707566234 +4888 -0.0004654061486246023 2.571308173282669e-05 0 0 0 3.144163484100976e-05 +8652 -0.00013889348996775432 -0.00027429330311385986 0 0 0 8.378253832461602e-05 +8700 -0.0006828040638476565 -0.0005345064527028549 0 0 0 -4.849867381566259e-05 +8711 -0.0004977278098747175 -0.0002278311352936216 0 0 0 -3.069748313972796e-05 +8752 -0.000764981587239715 -4.50162168551194e-05 0 0 0 7.485533349366701e-05 +8899 -0.0007034093818165314 -0.0004527091153214815 0 0 0 0.00010459100280536913 +8905 -0.0005516774455149489 -0.0001057366107396537 0 0 0 -2.0254407596031453e-05 +8914 -0.0008859620391925198 9.647224693704547e-05 0 0 0 -3.6576186845648667e-06 +9958 -0.0005146281228062163 -0.0002432379462275638 0 0 0 7.32102872497087e-05 +7532 0.00015806029382349832 -0.000419845841524697 0 0 0 -9.117533550778377e-06 +8964 -0.0008505925084220985 0.00012102347428525484 0 0 0 -4.930719640134718e-06 +8979 -0.00023387210184486933 -0.00040685378847673707 0 0 0 0.0001759694145960128 +8987 -0.0005926973640587171 -0.0007381583083841186 0 0 0 0.0001416996531722548 +2392 -0.00045436581628534653 0.00032467976334657836 0 0 0 1.804293318085503e-05 +9006 -0.0006176667122362253 -0.0001671622339724926 0 0 0 6.642724325566879e-05 +9015 -0.0008977165612306003 -0.00036334379774376283 0 0 0 -0.0007931529893889605 +9025 -0.0004973588001026186 -0.00020735918618748514 0 0 0 0.00044405936522647456 +9090 -0.0007077483117796032 -3.63024508256815e-05 0 0 0 -6.8556526958128885e-06 +9131 -0.00010486595105420012 -0.000312762118042347 0 0 0 0.0003913448981118928 +9201 -0.00046702230760308215 -0.000534709548100436 0 0 0 -8.50154538104984e-05 +9211 -0.0008078531404158826 -0.00038066694344665553 0 0 0 -5.014654632383104e-05 +9229 -0.00030830118909021183 -0.00034126294417911515 0 0 0 -2.23921398281578e-06 +9250 -0.0003546233782008608 -0.0007407498696570183 0 0 0 -0.0003511539980532068 +9314 -0.0007356990082078362 3.6002956312362697e-06 0 0 0 4.615342083963518e-06 +9326 -0.000599987043447741 -0.00018740736361721777 0 0 0 -7.655950305332641e-05 +7211 -0.0004021357015425931 0.0003526662570198712 0 0 0 -4.228739740050009e-05 +9421 -0.000743578283968885 -0.00040985495153110236 0 0 0 3.979502530542419e-05 +5548 -0.0008567609031049066 2.9113076032254132e-05 0 0 0 7.464523778071176e-05 +9487 -0.0005657923616236286 -0.0005529117373203935 0 0 0 -8.294702883831375e-05 +9505 -0.0008334719320401317 3.8326944662489724e-05 0 0 0 0.00011194667840382017 +9521 -0.0009456588008708404 1.1729737397113932e-05 0 0 0 -5.836603904829711e-05 +9247 -1.5367448822387096e-05 0.0002765885297421061 0 0 0 -0.00010337772179361454 +9592 -0.00037300667682687086 -0.0005790158258273013 0 0 0 3.897478289923298e-06 +306 -0.00028830545170960487 0.00013227928233833436 0 0 0 7.02457855681038e-06 +9619 -0.00034062774522524884 -0.00038063917515414867 0 0 0 -4.804444930645602e-06 +3394 -2.551543584778191e-06 0.0003267879592528811 0 0 0 1.2789485490534636e-05 +8452 -8.476250742928984e-05 0.0002816703959901263 0 0 0 0.00035958262020421107 +9769 -2.7192520386893157e-06 -0.0003464872826684776 0 0 0 0.00021485732606590967 +9849 -0.0006575338834915265 6.786977910883589e-05 0 0 0 -5.9210968112915454e-05 +4339 3.703058076858422e-05 -0.00015122764212082858 0 0 0 0.000190964943672776 +1964 -0.00013985171965911277 3.5897627636861766e-05 0 0 0 -0.00011878904020838272 +7244 -0.0008401321240115656 3.150976124401317e-05 0 0 0 2.3435974780078214e-05 +2762 2.9822593438156388e-06 0.0002171378843792193 0 0 0 0.00022753295647910918 +6957 -0.00035295301287966476 -3.6158814619312966e-05 0 0 0 -7.193424343262256e-05 +1749 -0.0002767990626011245 0.00023971574469183914 0 0 0 4.658592289998215e-05 +1822 -0.00033139812758690285 0.0002320778157972975 0 0 0 2.9505263846264914e-05 +3484 -0.0005255548071359009 8.28374054900186e-05 0 0 0 6.0756387756878485e-05 +7854 -0.0008349517608546238 9.651007797701231e-05 0 0 0 -2.125217173184229e-05 +2827 -0.0005851486608395368 -0.00012580856181722795 0 0 0 7.634057916143763e-07 +4644 6.609267040714766e-05 0.0002537863448882054 0 0 0 1.6283398002706212e-06 +8531 -1.1053355138178328e-05 0.0002513094122122591 0 0 0 1.7194442619928436e-05 +7300 -0.0005012197802316204 -0.00033869459012819615 0 0 0 0.0001735701260952048 +6591 -0.0008689988335275168 9.79455015756601e-05 0 0 0 -3.216769563207823e-05 +2445 -0.0001864772789596789 -0.0002772077683518813 0 0 0 1.7095704136383642e-05 +334 -0.00038371176029360337 0.0003759616756838957 0 0 0 -4.87555930360429e-06 +9377 -0.0006905070456747075 -7.942457451890771e-05 0 0 0 -4.586500257562594e-06 +7698 -0.0007166417548121752 -0.00017693591651295507 0 0 0 -5.710805964956041e-05 +6218 -0.0008697977700057719 0.0001413678151444548 0 0 0 1.6362947876974838e-05 +9547 -0.0010428176352477582 0.0002408871061287117 0 0 0 -1.5224798360798144e-05 +33 -0.0013261576102042477 0.00034905251810506794 0 0 0 -4.471476313525792e-06 +47 -0.0010818531912989903 -0.0002160321144453956 0 0 0 -3.551547300581748e-05 +84 -0.00121494022989266 0.0004978720808498729 0 0 0 -7.237686253795788e-06 +9685 -0.0012342703784716802 0.0002946539666074529 0 0 0 -0.00011474236842940806 +102 -0.001400407357234018 0.0005765718671126018 0 0 0 -8.593865425717758e-06 +9278 -0.0009801694711886195 -0.00032447995229745456 0 0 0 -9.020267680492016e-05 +209 -0.0010382790499436152 0.0002612859321055538 0 0 0 7.208687758847141e-06 +2136 -0.0007689793085039023 -0.0004763104146198824 0 0 0 -2.195340181649776e-05 +2583 -0.0009227285941991395 0.00014673332972144334 0 0 0 -1.5056077019555523e-05 +382 -0.0013726726162816612 0.000491951733344497 0 0 0 -8.085172797321783e-06 +414 -0.0011048856393929966 -0.0002861395383941028 0 0 0 -3.3271497630970245e-05 +452 -0.0013269404170150835 -1.0689325950565472e-05 0 0 0 -8.794681838331897e-05 +2471 -0.0009599444335921101 0.00021128312996821798 0 0 0 2.308448598073379e-05 +491 -0.0011227476377252395 -0.0006229585262694115 0 0 0 -1.119832243356755e-05 +8634 -0.0007921073435026812 -0.0005365179927502584 0 0 0 0.00010806892942490821 +4806 -0.0007428439584860662 -0.0005013009303894066 0 0 0 -3.2471507803603415e-05 +553 -0.0009263471226629793 0.00026704301918711084 0 0 0 -3.239711334347031e-05 +560 -0.0011736932559970078 -1.1597116252249646e-05 0 0 0 -1.213652411149952e-06 +63 -0.0006730116962401074 -0.0006981897646335899 0 0 0 -2.9899369980647047e-05 +646 -0.0008962623636393373 0.0003775037800737245 0 0 0 -4.187457372444578e-05 +651 -0.0009568850262216888 0.0001907228140066929 0 0 0 -2.4395046627094973e-05 +653 -0.001246351695201545 0.00014364231487681733 0 0 0 -2.3114553908101572e-05 +656 -0.0010735368467628184 8.60509998184377e-05 0 0 0 -2.753330669411903e-05 +667 -0.0010450710325845577 -2.4015183252629826e-05 0 0 0 2.7552914670148046e-05 +122 -0.0010068908567538019 4.021476686703364e-05 0 0 0 8.035871458149378e-07 +709 -0.0010954098741292253 0.0004072339394801863 0 0 0 -4.279373829053108e-05 +718 -0.0010733596345867341 -0.0003942009985479652 0 0 0 -2.187215276679013e-06 +720 -0.0011128517493429883 -0.0006630821687569437 0 0 0 -4.7537847600575585e-05 +731 -0.0008953161810339005 -5.557168081544296e-05 0 0 0 -6.526069688943746e-06 +732 -0.001029407722444016 -0.0005746449511711302 0 0 0 -1.545237278381098e-05 +734 -0.0012291040246415093 0.0003264616852143351 0 0 0 -2.8718077729886183e-06 +747 -0.0012006306132673725 0.0003053016458014481 0 0 0 4.491589475943421e-06 +804 -0.0011410289081601479 0.0003613262879947215 0 0 0 -4.8359228297937354e-05 +817 -0.0010218209043993658 0.00021684795639859657 0 0 0 5.569447533228865e-06 +845 -0.001088490560800673 -0.0006033464338985005 0 0 0 -5.047616580806928e-05 +861 -0.0006658384820784063 0.0001295486756240743 0 0 0 -3.938693498251951e-05 +885 -0.0013038327395228867 0.00048389450312417027 0 0 0 -1.8772946948223444e-05 +887 -0.0012825816277822516 -0.00023158205049191773 0 0 0 3.5691844238757144e-05 +891 -0.0010563000574022544 -0.0004910048602764234 0 0 0 -9.237186471123254e-05 +1110 -0.0010450420781773378 -0.0006100426802924959 0 0 0 -3.9781439783715356e-05 +976 -0.0010550655645213236 -0.00023372447546958887 0 0 0 -4.659832738996871e-06 +984 -0.0010355458753760684 -0.00028715820886059514 0 0 0 -1.04467812775096e-05 +5833 -0.0006980036581580928 -0.0004945657919632001 0 0 0 1.894369005834265e-05 +999 -0.0012580359011752928 0.0001103375020546727 0 0 0 -5.356050145311145e-05 +1051 -0.0010951572831924123 0.00021984165849349413 0 0 0 -5.074976082359584e-05 +1066 -0.001365151034021011 0.00035063055789074163 0 0 0 4.2650718716894816e-05 +1073 -0.0011798997185879338 0.0002877789774888845 0 0 0 -2.1192683004543632e-05 +1102 -0.000895719635979341 3.827296631025107e-05 0 0 0 -5.2497612632698324e-05 +1125 -0.0008102617569677878 0.00044419027275614234 0 0 0 -4.336545290471444e-05 +5457 -0.0009195082837129334 0.00018936903760141677 0 0 0 2.613241812305818e-05 +1190 -0.0004623886112488588 -0.00010424174169035603 0 0 0 -2.050395587842999e-05 +60 -0.0005390246823682558 -0.0003531673081981103 0 0 0 -4.858643866683542e-05 +1223 -0.0013712184743685958 0.0005781236448747402 0 0 0 -4.911875397345051e-06 +1230 -0.000833926054501875 0.0004376530161938681 0 0 0 -2.0976868854000167e-05 +1242 -0.0010804835541713175 0.00037107278952083295 0 0 0 4.5127704032223745e-05 +1276 -0.001147396409504084 -5.205792105702447e-05 0 0 0 -1.0416337357033607e-06 +1282 -0.0011900467786332925 0.00039743177598957095 0 0 0 -8.17733244356918e-06 +1364 -0.0009855618420008354 0.0005109328128322337 0 0 0 -4.9006567874718296e-05 +1396 -0.0009956328711897972 0.00025019200074399606 0 0 0 -1.9154273233162797e-05 +3620 -0.0009951646119463167 0.00023498626345331203 0 0 0 -6.638644459499271e-05 +1484 -0.0005241901093124935 -0.0001350531692082695 0 0 0 -4.3179557304732664e-05 +1527 -0.0010873978049114712 -0.0002676376676581402 0 0 0 -6.478279201356354e-05 +1584 -0.0010560147303824024 -0.0006474239399485168 0 0 0 -9.45120694401156e-05 +1592 -0.0008523122260667268 0.00014590672149615723 0 0 0 -4.460422204338052e-05 +9337 -0.0010679835590883054 -0.0005948864735426788 0 0 0 0.00015765794978306558 +5171 -0.0010123329305405868 0.0002483619241514777 0 0 0 7.104769299382919e-05 +4445 -0.0011488880007827023 0.00023434352094815238 0 0 0 0.00011429335223602224 +8929 -0.0010758970930865668 -0.00018808403695964738 0 0 0 -7.301804773101471e-05 +1616 -0.0009539261041023196 0.0004043226234824317 0 0 0 -7.094264036013377e-05 +5747 -0.0009647397731356367 -9.827961956648278e-05 0 0 0 -0.00013450310564002338 +1630 -0.000993425346661918 -0.0001272677521153074 0 0 0 -9.884043896881217e-05 +9669 -0.000918247403508863 -1.4518994358144009e-05 0 0 0 -3.247118639003016e-05 +1730 -0.001027734845332554 -0.0004918473335494479 0 0 0 -5.292830420440906e-05 +1737 -0.0006240903891812762 4.821538037371571e-06 0 0 0 -2.6151236003957948e-05 +8631 -0.0008886698265609204 -0.000144407746562304 0 0 0 -0.00027008874915989567 +1766 -0.0008463281422101966 -4.6139140245229336e-05 0 0 0 -5.356403673804463e-05 +1774 -0.0009262659720813352 0.00045154796902677425 0 0 0 -1.8779579264880837e-07 +5107 -0.0010447103725841607 0.00020820708877603548 0 0 0 -1.675898353106184e-05 +9716 -0.0008291801257774727 0.0005556216921986792 0 0 0 0.00019561381253810144 +1867 -0.0013770705302285364 0.0005889288700129371 0 0 0 -1.1718085290103005e-05 +1893 -0.0007377500340129552 -0.00011751449125090233 0 0 0 -7.575484193883887e-05 +9808 -0.0012808193392261644 0.0005929896361509001 0 0 0 4.3916651469754496e-05 +1912 -0.0008359661049102273 -0.00010714646791612548 0 0 0 -5.351671330223778e-05 +1933 -0.0010115520586821297 -0.0004284656888440355 0 0 0 1.4097538743870466e-05 +1934 -0.0014087990145337517 0.0005998696312594614 0 0 0 3.883048677602458e-06 +1309 -0.0011145581551583184 -0.0006100951510150208 0 0 0 1.7908946212730884e-07 +342 -0.000995708902703014 -0.0003280598902758959 0 0 0 -3.0486417366860456e-05 +2020 -0.000691293289190221 -2.553858320472979e-05 0 0 0 -6.349520754052964e-05 +2034 -0.0013693998882588173 0.00021605113013304243 0 0 0 -2.6409414050074162e-05 +6823 -0.001010983092043119 0.00016369240957159992 0 0 0 -9.344755100099783e-06 +9814 -0.0007953670262281146 0.00027691467518869457 0 0 0 -7.496911768921903e-05 +2102 -0.0011428092016011325 -0.0006633488882803421 0 0 0 2.693237443378539e-05 +9878 -0.0007912078936575785 -0.0006971119373901062 0 0 0 3.640521424258665e-05 +2149 -0.0010720666387099718 -0.0003541435046556959 0 0 0 -7.153114116944133e-06 +2174 -0.0006291157644199211 -9.842638376505761e-05 0 0 0 -1.8576917479139848e-05 +2185 -0.0013581258243572781 0.0004704376442677888 0 0 0 1.5217504521121617e-05 +9001 -0.0009740050197936527 2.3654601074001692e-05 0 0 0 -5.362356566854172e-05 +2229 -0.001212114656902197 0.0004018202638339309 0 0 0 6.752147656563885e-05 +3504 -0.000983729976298962 0.00024684410836900894 0 0 0 6.161638336885688e-05 +9761 -0.0010677323332489897 -0.0004339580795986633 0 0 0 -3.767978407301423e-05 +2237 -0.001028366691652043 0.00013209288112068043 0 0 0 8.279441351273199e-06 +2246 -0.0010551743098632265 0.0002610193346725578 0 0 0 5.559096098387102e-05 +5110 -0.0009950221642259342 -0.0005184691034534213 0 0 0 -4.8897572199327006e-05 +2265 -0.001325927861559419 0.00047511113037457584 0 0 0 -2.740239501642883e-05 +2266 -0.0006779442772583579 7.277398636076005e-05 0 0 0 -3.106885672153096e-05 +2330 -0.0013367171496623464 0.0005978655739637881 0 0 0 3.879769122928103e-06 +2351 -0.0007711455046063238 -0.0001472236400235244 0 0 0 -2.333427278353901e-05 +2424 -0.0010189638610835726 0.00022240454977626062 0 0 0 1.455321881765294e-05 +2492 -0.0014108305267219279 0.00015102719644583502 0 0 0 6.201834261399249e-05 +2520 -0.0010403161310647538 -0.00029533544204504426 0 0 0 -8.037311212098366e-06 +2535 -0.0009203457558687049 -0.00048110734804170926 0 0 0 -3.5610129338395e-05 +1761 -0.0009434584487748141 0.0001959192960324878 0 0 0 -1.1770147359107451e-05 +6627 -0.00033594809541284405 -2.250537367852348e-05 0 0 0 -0.00010854176760967162 +9572 -0.0009897422865949267 -0.0005531489616841555 0 0 0 -9.871513238478038e-05 +9596 -0.0014845726174902694 -0.0010275212759174618 0 0 0 0.001003943653524795 +2682 -0.0011883479188890245 0.00016012623375108787 0 0 0 -4.092449737697874e-06 +5746 -0.0010839865833475414 -0.00013729939105782803 0 0 0 3.193131533070426e-05 +2766 -0.0008079276128492124 4.240831404087754e-05 0 0 0 -2.998477101103467e-05 +2794 -0.00124973160096003 0.00040744387076593024 0 0 0 -2.863703908686015e-05 +2801 -0.0005944835942950117 3.763872304718991e-05 0 0 0 -7.818233432906593e-05 +2839 -0.00103928000158547 -0.00047906909994178064 0 0 0 -0.0001212264697087758 +2816 -0.0009810244417744127 1.3109461559937425e-05 0 0 0 4.021393345142085e-05 +2852 -0.0007931809255094238 0.0005050399593576107 0 0 0 -6.27255045641201e-05 +2891 -0.001010847601031585 -4.436852602295268e-05 0 0 0 -1.4212905817435982e-05 +2917 -0.000405133648425455 -0.0001697994865159486 0 0 0 -1.7898256110664252e-05 +2199 -0.0010065804805280013 0.00011506492194804355 0 0 0 -2.9093094299362973e-05 +3003 -0.0005913825540417457 1.4810618042317857e-05 0 0 0 4.295950712811043e-07 +3037 -0.0011504559886166836 -0.0005683061077787536 0 0 0 -0.00014416611164065813 +8664 -0.0011054141286077842 -0.0005457071875521679 0 0 0 -2.4877693172228447e-05 +9189 -0.0012733414275343065 6.765620506761625e-05 0 0 0 7.24609631984226e-05 +6008 -0.0010248052457701932 0.00021619987532861106 0 0 0 0.00010510706900990839 +5472 -0.0009435058299047989 0.000177098971985264 0 0 0 -2.8228796104742326e-06 +3117 -0.0005852494716740884 -9.74064991833975e-05 0 0 0 -2.287712142860645e-05 +3133 -0.0010374288473124927 0.0005268506611740964 0 0 0 1.5468956089858808e-05 +3155 -0.0011355800391683244 0.0002974390159245239 0 0 0 -4.378708816785651e-05 +4586 -0.0011475777708395535 -0.0006513912889776392 0 0 0 -4.343813601166367e-05 +3140 -0.0008642601108118462 -0.00037202329215720655 0 0 0 -2.65982189190522e-05 +4609 -0.001030466632460203 0.00018483148590536753 0 0 0 3.706297663292223e-06 +9795 -0.0018516799705771486 -0.0008863539213598711 0 0 0 -0.002293019666018331 +3407 -0.0010734028061452608 5.653091438898577e-05 0 0 0 -3.0091994947104817e-05 +3421 -0.0009612996889954839 -0.0004763924830965781 0 0 0 -1.5052020411682206e-05 +3452 -0.0011807109407431418 0.00014609649860469493 0 0 0 2.808468212115154e-05 +3486 -0.000979722102233529 9.216912028457098e-05 0 0 0 -3.181194791269409e-05 +3490 -0.001115125057834113 -0.0005690988953418875 0 0 0 -2.901755718046034e-05 +3509 -0.0007414156908215108 0.00010766004163695111 0 0 0 -6.655509564051638e-05 +8076 -0.001042733216888999 -0.00010085541880039921 0 0 0 -0.00012413628456490325 +3526 -0.00045496688293184716 -4.781743045179107e-05 0 0 0 -0.00011249588946220455 +407 -0.0010286335220628258 0.00018508191949197236 0 0 0 -1.9962465731735597e-05 +3552 -0.0013734072065609022 0.0005133321955643949 0 0 0 -2.1120417767324655e-05 +3564 -0.0012559046164561396 1.4286371856051876e-05 0 0 0 -8.586684284883053e-05 +3575 -0.0009647903237455477 1.7253449789602108e-05 0 0 0 -7.727815553748957e-05 +3588 -0.0013080708311301744 0.0005547254346234752 0 0 0 -4.8963858384586804e-05 +3599 -0.0013559879245267385 0.0004156669728778885 0 0 0 -2.2867394052675167e-05 +3637 -0.0004392741340743697 -0.0001557996347786733 0 0 0 -2.7506251614565857e-05 +3647 -0.001393800559183281 0.000459575941991307 0 0 0 -1.3013918855624806e-05 +9549 -0.0014493330901797392 3.400595867300463e-05 0 0 0 -0.0003710182129581548 +3701 -0.0010470929570486932 -0.0004382481253174893 0 0 0 -5.8759240509226566e-05 +3735 -0.001188050928400021 7.459430066229259e-05 0 0 0 3.214798496615425e-05 +3755 -0.001219436013464796 0.00012455417107298824 0 0 0 -1.7959124998192483e-05 +3758 -0.0011962688231681644 -0.0004116690109945014 0 0 0 3.752746588843528e-05 +8949 -0.0013315415549152681 0.0004919019905722002 0 0 0 -5.5494295805939043e-05 +3787 -0.0010572217334480767 0.0004503754975648354 0 0 0 -9.734811542492656e-05 +8404 -0.0010540643653805487 0.0002599441304254663 0 0 0 -5.2539472085995756e-05 +7651 -0.000986651175286661 0.0002628831404665836 0 0 0 -4.319525891374751e-05 +3896 -0.0011413090338739226 -9.560331398480326e-05 0 0 0 -0.00012592038563914327 +3907 -0.001304106644779701 0.0005184475335038343 0 0 0 -1.4762574405544702e-05 +3918 -0.0008382230633287282 0.0003769792981867061 0 0 0 2.8217874771179136e-05 +992 -0.000839346326566518 -0.00015432885003724433 0 0 0 8.971673232412986e-05 +3985 -0.0009212293258203429 -4.847814546111395e-05 0 0 0 7.356869309925999e-05 +4165 -0.0006359509137941108 -0.0038726607427572316 0 0 0 -0.0011159735021457357 +4173 -0.0008902937034342343 -0.0004467649925779594 0 0 0 -7.307492932015723e-05 +8169 -0.0008683965444294683 9.329226187347003e-05 0 0 0 -2.8395045846871118e-05 +4242 -0.0009793302494207196 -0.0004360891503421145 0 0 0 6.483568017538174e-05 +4256 -0.0009751974234060248 0.0005503485974628548 0 0 0 -4.475826165418278e-05 +362 -0.0009447555316917683 0.00017360232511577425 0 0 0 1.5296692178103212e-05 +4295 -0.0013355489476194404 0.00021772102528899945 0 0 0 -8.217645851629807e-05 +4296 -0.001111909444136753 -0.0002940853372948355 0 0 0 -2.235942107818431e-05 +4308 -0.001182641995150407 -6.374216762915041e-06 0 0 0 -0.00010723204875483454 +4309 -0.0010154403428102574 -0.0006737839667366322 0 0 0 -0.00025794202443884374 +1306 -0.0010884107319352198 9.457198739284854e-05 0 0 0 -9.444976369102585e-07 +75 -0.001043216656938662 0.00026823150666349893 0 0 0 5.245287420461813e-06 +4412 -0.00098261616440392 0.0002118503901581229 0 0 0 1.1602951679446354e-05 +4473 -0.0010550731841105247 -0.0005427045447650582 0 0 0 -5.258221504602461e-05 +4475 -0.0010419448388500428 -3.754858626824956e-05 0 0 0 2.2683554603048964e-05 +4515 -0.00038716657946070976 0.0005806303873735367 0 0 0 -0.0002760268228013765 +4557 -0.0011491762125530284 6.176860109988923e-05 0 0 0 -3.85345442333235e-05 +6850 -0.0012287273280061652 0.00020788907528139288 0 0 0 -6.218470641884474e-05 +6042 -0.0013751012428975277 0.0006106520575983986 0 0 0 2.420266394843293e-06 +4592 -0.000877058639763377 0.0001948361880210983 0 0 0 -4.262771789505742e-05 +4700 -0.0012114757206522595 0.00013554161929544195 0 0 0 -0.00010073003143144757 +4701 -0.0007614898267580026 5.559762709335923e-05 0 0 0 -6.505158456522832e-05 +4736 -0.0013654436895969909 0.00045986840323049505 0 0 0 -5.43107289790413e-05 +4741 -0.0013717423378957093 0.0003718746450400859 0 0 0 -3.6672095397936957e-05 +4750 -0.0010326663245537556 0.0002294996757495752 0 0 0 1.4515669084880156e-05 +4843 -0.0012698178894312857 0.00043001981389102534 0 0 0 -6.119372173792808e-05 +4864 -0.0010817070530095268 -0.00024158132578390543 0 0 0 3.230162713968141e-06 +4900 -0.0013402334841031687 0.00022272746631285252 0 0 0 -4.04799512860082e-05 +4932 -0.0009423028561283439 -0.0002635803190272505 0 0 0 1.6565152196445366e-05 +4959 -0.0013710999851830818 0.0005761860940071999 0 0 0 1.2816645974415081e-05 +5224 -0.0014413528631875639 0.0006131434423719057 0 0 0 3.969237994824319e-05 +5009 -0.001064898945308371 -0.0002481719947760629 0 0 0 -1.1616143516210133e-05 +5013 -0.001040767108658176 0.00046892710259035944 0 0 0 -3.8006506617410676e-05 +5040 -0.0007611667411463923 0.00042331920701818793 0 0 0 -1.7552124223736822e-06 +5128 -0.0008048311800425404 0.0004669627802792765 0 0 0 5.594092619105205e-06 +9651 -0.0006246435030251319 0.00032239480480651287 0 0 0 -7.172885959998597e-05 +8005 -0.0012834464607171879 0.0005820115725601161 0 0 0 -9.346534842080877e-05 +7096 -0.0007738713370932893 -0.00043259343662871457 0 0 0 -0.00013223606663340557 +5201 -0.0013855710473556922 0.0004965470716864913 0 0 0 -3.459800355906159e-05 +9269 -0.0006171204056975282 -4.985151634391587e-05 0 0 0 -4.4152799831511034e-05 +5250 -0.0010604709717356095 -0.0006349023817577929 0 0 0 6.691545890173053e-05 +5267 -0.0012849427223802184 0.00039381724766349244 0 0 0 4.523558088210586e-05 +9941 -0.0010784124692660214 -0.0006039879078989454 0 0 0 4.556713856180574e-05 +5325 -0.0012714133163814958 0.00044258085836010796 0 0 0 -3.228268578686452e-05 +5334 -0.00138364831183745 0.0005945515756073752 0 0 0 -1.9162916853144936e-06 +5369 -0.0007251084157475773 0.00025247538210733834 0 0 0 -3.436637767727755e-05 +5450 -0.0012785076474155694 0.00043896364635171207 0 0 0 0.0001246132517044183 +5481 -0.0012389545836291164 0.0002958752995702192 0 0 0 -4.1298670452829705e-05 +8382 -0.0008232748335495004 -0.00035393823292142015 0 0 0 -0.00043307574853942846 +1712 -0.0008999965686511294 0.00016370454008796537 0 0 0 1.469799763420103e-05 +968 -0.0010469188861040625 0.0001971489544228493 0 0 0 -1.539019190903606e-05 +5553 -0.001040154984052283 4.0707436865859584e-05 0 0 0 -2.822399248094137e-07 +5574 -0.0009365281627827443 -0.00033144183377692584 0 0 0 -3.444032933265099e-05 +5602 -0.0010031430707105426 0.00031337744416527654 0 0 0 -0.0001110292908625829 +5614 -0.0014237129660751747 -8.518222981803537e-05 0 0 0 0.0002819864548719597 +5628 -0.0013796196338415306 0.0004285774515503764 0 0 0 -1.4355726972126512e-05 +5634 -0.0006299829416730778 0.0003106129677627603 0 0 0 -0.00015003909863069327 +5690 -0.0009328930928262022 0.0001535601046851579 0 0 0 7.437862785770053e-06 +3162 -0.0008583498699358591 8.974580465340734e-05 0 0 0 -2.9546280540786553e-05 +5705 -0.0010479961419029155 0.00024505234537363843 0 0 0 -1.7035410934304195e-05 +5720 -0.0011083145804515603 7.499655938373784e-05 0 0 0 6.749491058877103e-07 +988 -0.0010215157918797605 0.0001472538278253174 0 0 0 -1.241935618551963e-05 +67 -0.0008658656775855266 1.857993507037469e-05 0 0 0 -2.2029714195245447e-06 +4150 -0.0010477070467506818 -0.000629311575145681 0 0 0 -0.0001686399219997062 +4711 -0.0010466457724195484 0.0002156513529944455 0 0 0 -2.780097045998911e-05 +5775 -0.00113647271031931 -0.0005742164034027112 0 0 0 -2.2700132508568343e-05 +5790 -0.0005604182318045618 -6.454490108964105e-05 0 0 0 -6.872627432054857e-05 +5823 -0.0010485701818130368 -0.00047392300105225096 0 0 0 4.0317862480441504e-05 +5840 -0.0013879378802410106 0.0005876507787770626 0 0 0 -1.0721267892175973e-05 +5874 -0.001163203352045269 -2.5108049860934084e-05 0 0 0 5.6776217592972835e-05 +5916 -0.0007617994981678311 0.0003231291959065147 0 0 0 -7.5282850988449e-05 +5919 -0.0012968158873421338 0.00010571441758233962 0 0 0 -4.2236548170907985e-05 +5926 -0.0008487106539064878 -9.583569867588008e-05 0 0 0 -3.447065737935651e-05 +5997 -0.0009670336857954857 0.00032472623416321064 0 0 0 3.685657179158856e-05 +6007 -0.001022984040802033 0.00025636360769510134 0 0 0 -4.5803059544674043e-05 +6013 -0.0009922409759551146 0.0004370840453080131 0 0 0 -2.262312725750113e-05 +6359 -0.0009278947366571719 0.00019882989071248018 0 0 0 -3.642418252253673e-05 +6056 -0.0008209067899271798 0.00047414654460182387 0 0 0 -3.186877888571039e-05 +6104 -0.0014089759776342232 0.0004992943090449648 0 0 0 -3.5464220917501165e-06 +9921 -0.0012532477056829046 0.0003453088846496615 0 0 0 0.00010623367143627313 +6142 -0.0009465302801502978 0.00020505158454257915 0 0 0 8.833485728739233e-06 +3566 -0.0004602934474678376 -0.0005302148754011969 0 0 0 1.7686758227241918e-05 +6175 -0.0011600875379107057 -0.0006254078806193997 0 0 0 2.00588919105726e-05 +6198 -0.0013016603192791212 0.0004691769900114473 0 0 0 -2.6775089298746146e-05 +6237 -0.00210532271401223 -0.000968928800925018 0 0 0 0.0012649799990843004 +6239 -0.0010326020203841857 -0.0005792601116744251 0 0 0 -0.00023773999297568163 +6268 -0.0009899066605151023 0.00032432488442562846 0 0 0 -2.6057274275319685e-05 +6280 -0.0013548428413736064 0.0005000310429074372 0 0 0 1.3003555373861871e-05 +6324 -0.0009330803505427886 -7.999395676471578e-05 0 0 0 0.00020380651402199322 +5086 -0.0002567432351355375 -0.00040519719466287994 0 0 0 4.16181804430627e-06 +6338 -0.001062193715328559 -0.0003582911930551957 0 0 0 -8.386453256061997e-05 +6355 -0.0012497982318129032 0.00037339670841821153 0 0 0 -5.146552188170215e-05 +9274 -0.001134975102525682 5.9350633002180796e-05 0 0 0 -4.8197329542615696e-05 +6409 -0.0013048483021712747 0.00047760398584352444 0 0 0 2.2901841028752923e-05 +3128 -0.00046305365899662187 -0.0005942162995111782 0 0 0 -7.461164258698881e-05 +8839 -0.0006091783445097893 0.00020981859774982844 0 0 0 -0.00020242993429976406 +6470 -0.001142221074691432 -0.0001859626443670326 0 0 0 3.7264851940753405e-05 +9107 -0.0008431609478312632 0.00030349879028321444 0 0 0 -1.2358651860983629e-05 +6482 -0.0009608350540183568 -0.00045569743968779553 0 0 0 -8.097759496486409e-05 +6484 -0.001443230951632984 5.023682719481915e-06 0 0 0 0.0002725600916732352 +6509 -0.0009564693108313148 0.00022090032640726095 0 0 0 1.4922606033315317e-06 +9046 -0.0010897411562545928 -0.0006960588805790235 0 0 0 -0.0001285869384252466 +9535 -0.0013530465067207475 0.0005640822154004589 0 0 0 -1.7978886751573042e-05 +5082 -0.0009817589156080897 0.00020114137592716066 0 0 0 2.0977767803348704e-05 +6572 -0.0010404087094700808 -0.000499693949197771 0 0 0 7.388420900801417e-05 +6612 -0.0007104099643808529 -0.00027900113748203636 0 0 0 -0.00024924908604376564 +1233 -0.0008932572429092386 0.00017635233873598868 0 0 0 -1.0343310586830528e-05 +6633 -0.0010342823987653526 -0.00026684235246050934 0 0 0 -5.208545628631671e-05 +8722 -0.0012481354122412158 0.00039395093955153706 0 0 0 -6.4262785064365925e-06 +6653 -0.0010887266895579573 -0.0005676931482426215 0 0 0 -3.3394818251727286e-05 +9665 -0.0010547756969126708 0.0001987312572005659 0 0 0 3.002929054033303e-05 +6675 -0.0010200203477368059 0.0003334355700958869 0 0 0 -2.2591382537377654e-05 +1795 -0.0010490082283958937 -4.891998982145437e-05 0 0 0 -5.4699679614737424e-05 +4828 -0.0009094587493344812 0.0001204596799017635 0 0 0 2.512117167152775e-05 +9742 -0.0011978832661024715 0.000320422438315148 0 0 0 0.0002784063446532124 +6742 -0.001043680122246867 -0.00040630999467314625 0 0 0 9.419636575554612e-05 +6751 -0.00045416294244429815 -0.00017121155171769185 0 0 0 2.7015237030970543e-05 +6781 -0.0009792971000337906 -0.0005011812169758555 0 0 0 -6.407682934928417e-05 +2921 -0.0011441012300314247 0.0005639982674188203 0 0 0 1.698748177482473e-05 +9877 -0.0011788159103937551 9.159295397134952e-05 0 0 0 -6.925877667440077e-05 +6536 -0.0010457966751795107 -0.00044026859237594724 0 0 0 -4.007590958582001e-05 +2515 -0.001183311212737415 7.2471830003192e-05 0 0 0 5.288408415576706e-05 +7474 -0.00029950502948650177 -0.0004919948060362983 0 0 0 -2.7760106381346317e-06 +6971 -0.0010744534805561194 -0.0006295314635068125 0 0 0 -1.0147992832087818e-05 +6998 -0.001097690013812013 0.0005631683584195035 0 0 0 -9.570096665116707e-05 +7098 -0.001256880460480298 0.00047547970133717465 0 0 0 -1.7045251293063002e-05 +7105 -0.0012371872667119946 0.00036769957895315634 0 0 0 2.9633659314663384e-05 +7151 -0.0013629502380428545 0.0005438325995852673 0 0 0 -1.83675546469545e-05 +5820 -0.0009220673330085974 0.00010319841176209992 0 0 0 5.21969837573946e-05 +2116 -0.0008637287042879568 0.00017080914805245575 0 0 0 9.898644007389265e-06 +7216 -0.0010358324572192945 0.0002247209783073251 0 0 0 7.766445121743627e-07 +7245 -0.0009161568335177406 -4.410309297076366e-05 0 0 0 -0.00014364075970404428 +7507 -0.001001533250844457 0.00020865321294165692 0 0 0 2.8366264508110804e-05 +7330 -0.0011456867097577774 0.00020064739534263494 0 0 0 -0.00013949650154403126 +5150 -0.0008885254045278237 0.00012778716029158862 0 0 0 3.6912313533017476e-05 +7403 -0.0012869122393067102 0.00046643773606705794 0 0 0 5.2529961581194666e-06 +7470 -0.00127916635176112 0.0003043608642017404 0 0 0 5.227645589347025e-05 +7502 -0.001265127105100231 0.00020303079413310505 0 0 0 1.2387439000362817e-05 +7616 -0.0010128789323422048 0.00020989695204334167 0 0 0 1.5753998302841983e-05 +2233 -0.0008648087482254103 -0.0007128587865584339 0 0 0 -4.9250525428294885e-05 +7550 -0.0007670516932522385 0.00023212408291324528 0 0 0 -7.854468044105578e-05 +1142 -0.0009986508286095946 0.0001626749493967696 0 0 0 3.095685863199401e-05 +8464 -0.0010670070677167496 3.963681450583143e-05 0 0 0 6.211208631668905e-06 +7587 -0.0007129486217917608 0.0001919052663121039 0 0 0 0.00045825805912354635 +7599 -0.001055563236496881 -3.744756369324841e-05 0 0 0 8.994344907758054e-05 +7618 -0.0010999126547450075 0.00046087715649036906 0 0 0 8.494351988376228e-06 +7769 -0.003567032634741619 0.0015808338061883338 0 0 0 0.004253910105126188 +8077 -0.0010351395543895664 0.000175190691812742 0 0 0 3.927308743080374e-06 +7841 -0.000993052274357991 0.0004730257058531205 0 0 0 -8.364056339273641e-05 +7859 -0.0009968317073416066 -6.776559025911231e-05 0 0 0 6.280496593125836e-05 +7865 -0.0013209542918813484 0.0001238486894506445 0 0 0 -2.550013566389694e-06 +7866 -0.001238735525919206 0.0003569903752686123 0 0 0 0.00010576489635585198 +7880 -0.0011206095345190304 0.0005773947606492357 0 0 0 -3.066279480951869e-05 +7885 -0.0009356460215896791 0.00020325998379364208 0 0 0 -1.7803294458208226e-05 +7961 -0.0011331689487777401 -0.0006715418490313368 0 0 0 -8.899673560131375e-05 +6187 -0.0009621245006511484 0.00020817254022069846 0 0 0 6.874419306361971e-06 +7200 -0.0008760872712509191 0.00012766667775732235 0 0 0 -2.20377891586563e-05 +8071 -0.0010546517281548587 0.00040917672137703875 0 0 0 4.0067320395630234e-05 +6148 -0.0011346622660460793 -0.0006767476381625165 0 0 0 -4.367516101613288e-05 +6950 -0.0014042639464351978 0.0006000677118277525 0 0 0 -2.005715352699511e-05 +3229 -0.0009277553513460479 0.00015162238275234698 0 0 0 -6.651733000204652e-06 +5854 -0.0009159938668490916 0.00015112453375079303 0 0 0 1.054857734238909e-05 +6667 -0.0008419738992533809 -0.00034028503722962424 0 0 0 0.0002862329318023876 +9370 -0.0008569645578854149 -8.471628423293434e-05 0 0 0 -2.6304936221872123e-05 +9084 -0.0012951128559107721 8.264547680787825e-05 0 0 0 -4.043299888609902e-05 +9618 -0.0009097078160535308 0.000179382370394683 0 0 0 6.666790634005839e-06 +8248 -0.0005667709595568003 -7.972464871469905e-05 0 0 0 -2.5341886014665786e-05 +9762 -0.0008967133784368852 -0.000583378360515487 0 0 0 -0.00039338299867038294 +8337 -0.0010798540378010217 -0.004497175199347589 0 0 0 0.004287690733642305 +9184 -0.0006110942219998905 2.9167016249578943e-05 0 0 0 1.0070905807775127e-05 +8358 -0.0013562632016660523 0.00036416982830529134 0 0 0 4.351233647659468e-05 +8381 -0.0005142713890869193 -0.00012106031890513743 0 0 0 5.131999445387383e-05 +1561 -0.0013263411720228207 0.0003668354808177635 0 0 0 -9.089732816578053e-06 +8386 -0.001369539387544941 0.0005772013237404369 0 0 0 -4.1100718796278544e-05 +8392 -0.0011651488723094313 -0.0005673807934721862 0 0 0 0.00019928081033841692 +8418 -0.0011409813151645474 1.2403965089448253e-06 0 0 0 -7.431870805267932e-05 +6208 -0.0008660324831662348 -0.00026221669800809036 0 0 0 0.00032418659406359233 +9483 -0.0009966184041404506 0.00016679520305090944 0 0 0 1.7892264071939846e-05 +8765 -0.0007487137451094 0.00031274997468871344 0 0 0 -8.703171307399274e-06 +9037 -0.0011896084344408043 0.00014401146796366626 0 0 0 -0.00021898643912301357 +8517 -0.0012765820305596382 0.00028809418612304777 0 0 0 -6.364714465501878e-06 +8539 -0.0012895177885609741 0.0004996896501795892 0 0 0 -1.8305799184582856e-05 +7360 -0.002037903990388009 -0.0007227424571090754 0 0 0 0.0007167871516987743 +8558 -0.0012400422284127718 -0.00017736646044289042 0 0 0 -2.3233652499379343e-05 +8574 -0.0006673254424565036 -0.0009462737486825492 0 0 0 -4.560256332930433e-05 +8627 -0.0034046720643677946 -0.000762821675645749 0 0 0 -0.0036136007849953047 +9465 -0.001131847046278324 -0.0003890373638549746 0 0 0 7.96734272568808e-05 +8632 -0.0011173309505806107 0.00010173989369772933 0 0 0 1.6054844477988215e-05 +5131 -0.001119221447925467 -0.0005990692274053262 0 0 0 -2.8048342782390864e-05 +3824 -0.0007829909208902664 -0.000520592083705975 0 0 0 -5.102161055786898e-05 +8165 -0.001085972112779275 7.947207783818279e-05 0 0 0 7.67854329432032e-05 +8668 -0.0011322977089746461 -0.0002599947177167567 0 0 0 4.829212252944448e-05 +8679 -0.0011414351219447521 9.532414403996351e-05 0 0 0 -9.73894647669391e-06 +8714 -0.0010406560973773586 -0.00037923326741732844 0 0 0 1.65816400084952e-05 +5701 -0.0009271690904041339 0.00016359386043164603 0 0 0 2.52838609278567e-05 +5175 -0.0008138196366132594 -0.0001245882968805323 0 0 0 -0.00011990448597305236 +812 -0.0008136999002096582 -0.00032793352272391974 0 0 0 -0.00011465393762998146 +6366 -0.0009225928433018489 0.00012281633743967574 0 0 0 2.3512139399119615e-05 +2359 -0.000851845164590352 0.00013670406898960903 0 0 0 -1.5656583914975637e-05 +5892 -0.0009292154524757727 0.00010987499809583548 0 0 0 -4.494971590096285e-06 +4914 -0.0008170718336393827 -0.0002694197948090762 0 0 0 4.855984716083199e-05 +2232 -0.0013962668408131758 0.0006100496749283238 0 0 0 2.4429236673886335e-06 +6849 -0.0009307674486236736 0.00014548193739797815 0 0 0 -3.382403357989851e-05 +6389 -0.0008276884913987117 -0.0006715424559836795 0 0 0 -0.00017229263836352125 +7592 -0.0008829184044931385 0.00010320778283078764 0 0 0 7.251548574276341e-05 +72 -0.0009328033481941555 0.00016169037482396788 0 0 0 5.611202530371956e-06 +6095 -0.0009074545749811463 0.00012699997222705476 0 0 0 3.797079172498021e-07 +4230 -0.0003945759264238711 0.000354641717450242 0 0 0 -0.000203591873846727 +2606 -0.0008299614938439482 0.00044376074287287397 0 0 0 -2.3080980932453262e-05 +801 -0.0008849997736873634 0.00011181647550225466 0 0 0 -9.806674088218455e-06 +4964 -0.0007701363964966764 0.0004493582278037278 0 0 0 -1.1639819837550187e-05 +6706 -0.000627510244325849 0.00037107718739488817 0 0 0 -0.0002045233207024528 +8919 -0.0008669103943182013 0.0001238206988024208 0 0 0 3.0004565505708964e-05 +5744 -0.00035081420995634844 -0.00019682849701139167 0 0 0 4.641181980210418e-06 +1412 -0.0008667102067001524 -0.00031258100964681994 0 0 0 -0.00021630116013899762 +7166 -0.0012295480431946774 0.0004821607704207658 0 0 0 0.0004508869875806334 +8125 -0.0008814707706954985 9.472619375360002e-05 0 0 0 -1.6727383622794183e-05 +8441 -0.0002449245374533217 -0.0004064470171835513 0 0 0 -5.438234289347048e-05 +6976 -0.00026782590492296373 -0.0003596810748548633 0 0 0 -7.725564834869343e-06 +6337 -0.0010501585618178401 3.1637071442245886e-05 0 0 0 0.0005189063800513128 +7189 -0.0010027915591139453 0.00023723368847990806 0 0 0 -2.1267115444176427e-05 +2680 -0.00030891216853277394 -0.00020457606529057616 0 0 0 -4.82731205087499e-05 +6160 -0.0007557869392639718 -0.00015627695707974944 0 0 0 -2.465884924693401e-05 +535 -0.0008767474296707425 0.00012151744175138143 0 0 0 1.245320689560073e-05 +8425 -0.0007512233785204506 0.0005405466387555643 0 0 0 -0.0001045579395697344 diff --git a/examples/multi/in.colloid b/examples/multi/in.colloid new file mode 100644 index 0000000000..9f9883f61a --- /dev/null +++ b/examples/multi/in.colloid @@ -0,0 +1,67 @@ +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.1 +region box block 0 60 0 60 -0.5 0.5 +create_box 5 box +create_atoms 1 box + +#Roughly equally partition atoms between types 1-4 +set group all type/fraction 2 0.500 23984 +set group all type/fraction 3 0.333 43684 +set group all type/fraction 4 0.250 87811 + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 60.0 60.0 0.0 30.0 units box +region sphere2 sphere 130.0 130.0 0.0 30.0 units box +delete_atoms region sphere1 +delete_atoms region sphere2 +create_atoms 5 single 60.0 60.0 0.0 units box +create_atoms 5 single 130.0 130.0 0.0 units box + +set type 1 mass 400 +set type 2 mass 1 + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/type 2 1*4 5 +comm_modify mode multi reduce/multi #multi/old + +# colloid potential + +pair_style colloid 20.0 +pair_coeff * * 144.0 1.0 0.0 0.0 3.0 +pair_coeff 1 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 2 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 3 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 4 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 5 5 39.5 1.0 20.0 20.0 30.0 + + + +fix 1 all npt temp 2.0 2.0 1.0 iso 0.0 1.0 10.0 drag 1.0 & + mtk no pchain 0 tchain 1 +fix 2 all enforce2d + +#dump 1 all atom 1000 dump.colloid + +#dump 2 all image 1000 image.*.jpg type type & +# zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type & +# zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 100 + +timestep 0.005 + +run 2000 diff --git a/examples/multi/in.granular b/examples/multi/in.granular new file mode 100644 index 0000000000..468d0dcbf1 --- /dev/null +++ b/examples/multi/in.granular @@ -0,0 +1,50 @@ +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.5 +region box block 0 60 0 60 -0.5 0.5 +create_box 2 box +create_atoms 1 box +change_box all triclinic + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 20.0 20.0 0.0 10.0 units box +region sphere2 sphere 60.0 60.0 0.0 10.0 units box +delete_atoms region sphere1 +delete_atoms region sphere2 +create_atoms 2 single 20.0 20.0 0.0 units box +create_atoms 2 single 60.0 60.0 0.0 units box + +set type 2 mass 400 +set type 1 mass 1 +set type 2 diameter 20 +set type 1 diameter 1 + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/interval 2 1 20 +comm_modify mode multi vel yes reduce/multi #multi/old + +# granular potential + +pair_style granular +pair_coeff * * hooke 1.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +fix 1 all nph/sphere iso 0.0 1.0 10.0 drag 1.0 +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-3 + +#dump 1 all custom 1000 dump.granular id x y z radius + +thermo_style custom step temp epair etotal press vol +thermo 100 + +timestep 0.005 + +run 2000 diff --git a/examples/multi/in.powerlaw b/examples/multi/in.powerlaw new file mode 100644 index 0000000000..b69e6a56a3 --- /dev/null +++ b/examples/multi/in.powerlaw @@ -0,0 +1,33 @@ +# Shear power-law distributed granular particles + +units lj +atom_style sphere +dimension 2 +read_data data.powerlaw +change_box all triclinic + +# multi neighbor and comm for efficiency + +neighbor 1 multi +neigh_modify delay 0 collection/interval 6 1.5 3 10 30 100 200 +comm_modify mode multi vel yes reduce/multi + +# granular potential + +pair_style granular +pair_coeff * * hooke 20.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +# fixes + +fix 1 all nve/sphere +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-4 + +# dump 1 all custom 20000 dump.granular id x y z radius + +thermo_style custom step temp epair etotal press vol pxy +thermo 100 + +timestep 0.005 + +run 1000 diff --git a/examples/multi/log.30Nov20.colloid.intel.1 b/examples/multi/log.30Nov20.colloid.intel.1 new file mode 100644 index 0000000000..5dcb8c3bf1 --- /dev/null +++ b/examples/multi/log.30Nov20.colloid.intel.1 @@ -0,0 +1,183 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.1 +Lattice spacing in x,y,z = 3.1622777 3.1622777 3.1622777 +region box block 0 60 0 60 -0.5 0.5 +create_box 5 box +Created orthogonal box = (0.0000000 0.0000000 -1.5811388) to (189.73666 189.73666 1.5811388) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds + +#Roughly equally partition atoms between types 1-4 +set group all type/fraction 2 0.500 23984 +Setting atom values ... + 1768 settings made for type/fraction +set group all type/fraction 3 0.333 43684 +Setting atom values ... + 1255 settings made for type/fraction +set group all type/fraction 4 0.250 87811 +Setting atom values ... + 927 settings made for type/fraction + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 60.0 60.0 0.0 30.0 units box +region sphere2 sphere 130.0 130.0 0.0 30.0 units box +delete_atoms region sphere1 +Deleted 289 atoms, new total = 3311 +delete_atoms region sphere2 +Deleted 287 atoms, new total = 3024 +create_atoms 5 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 5 single 130.0 130.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 1 mass 400 +Setting atom values ... + 753 settings made for mass +set type 2 mass 1 +Setting atom values ... + 722 settings made for mass + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/type 2 1*4 5 +comm_modify mode multi reduce/multi #multi/old + +# colloid potential + +pair_style colloid 20.0 +pair_coeff * * 144.0 1.0 0.0 0.0 3.0 +pair_coeff 1 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 2 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 3 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 4 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 5 5 39.5 1.0 20.0 20.0 30.0 + + + +fix 1 all npt temp 2.0 2.0 1.0 iso 0.0 1.0 10.0 drag 1.0 mtk no pchain 0 tchain 1 +fix 2 all enforce2d + +#dump 1 all atom 1000 dump.colloid + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 31 + ghost atom cutoff = 31 + binsize = 2, bins = 95 95 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair colloid, perpetual + attributes: half, newton on + pair build: half/multi/newton + stencil: half/multi/2d + bin: multi +Per MPI rank memory allocation (min/avg/max) = 4.385 | 4.385 | 4.385 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395241 0.121 36000 + 1000 1.8856066 -0.15771717 1.7272663 0.13840578 42574.399 + 2000 1.8589993 -0.11434676 1.7440382 0.097157151 58590.69 + 3000 1.8984314 -0.093445816 1.8043582 0.07444246 77824.12 + 4000 1.9603204 -0.07451891 1.8851536 0.066010381 90951.299 + 5000 2.0298924 -0.073898174 1.9553234 0.075791214 90146.92 + 6000 2.0797015 -0.086800285 1.992214 0.082095164 78182.702 + 7000 2.0867886 -0.10960963 1.9764893 0.10103655 63990.386 + 8000 2.0803886 -0.12736298 1.9523381 0.12561727 52648.372 + 9000 2.0605661 -0.14572043 1.9141648 0.15154081 44589.764 + 10000 2.0636909 -0.18556771 1.8774412 0.1604707 38996.941 + 11000 2.0498344 -0.20303461 1.8461224 0.18295046 34927.993 + 12000 2.0466611 -0.2217963 1.8241884 0.23031182 31760.363 + 13000 2.0441824 -0.24716826 1.7963386 0.22167931 29178.226 + 14000 2.047513 -0.26988172 1.7769547 0.24070752 26991.372 + 15000 2.0154283 -0.26144354 1.7533187 0.27587713 25247.715 + 16000 2.0160849 -0.28106984 1.7343488 0.32297139 23703.607 + 17000 2.0184729 -0.31071368 1.7070922 0.29815613 22300.6 + 18000 2.0237288 -0.33944941 1.6836106 0.3262795 21098.856 + 19000 2.0329827 -0.35438937 1.6779215 0.33691952 19989.867 + 20000 2.021113 -0.37316841 1.6472766 0.39687648 18978.666 + 21000 2.0352439 -0.40857976 1.6259915 0.38632613 18146.277 + 22000 2.0158566 -0.41271329 1.6024771 0.41480502 17409.593 + 23000 2.0170409 -0.42611776 1.5902566 0.40446612 16748.968 + 24000 2.0108878 -0.43899286 1.5712304 0.42075035 16086.941 + 25000 2.0218394 -0.47012156 1.5510497 0.46655183 15460.154 + 26000 2.0100713 -0.47985916 1.5295479 0.45575323 15013.774 + 27000 2.0251738 -0.5016665 1.5228381 0.50151992 14591.521 + 28000 2.0062966 -0.50284394 1.5027897 0.5462034 14135.093 + 29000 2.0146666 -0.53126035 1.4827405 0.60379062 13725.945 + 30000 2.0036455 -0.53246643 1.4705169 0.56784088 13417.305 + 31000 2.0127662 -0.54487777 1.4672233 0.6427741 13139.392 + 32000 2.0221816 -0.5625554 1.4589579 0.60695012 12779.609 + 33000 2.024983 -0.59515221 1.4291616 0.60005385 12584.572 + 34000 2.0184045 -0.59033569 1.4274018 0.62519753 12355.49 + 35000 2.0155635 -0.61190466 1.4029927 0.71044196 12106.819 + 36000 2.0252503 -0.61581601 1.408765 0.68805882 11728.608 + 37000 2.0112487 -0.64540754 1.3651765 0.66981639 11475.772 + 38000 2.0147475 -0.64161981 1.3724619 0.71130901 11285.511 + 39000 2.0213092 -0.67174661 1.3488946 0.6969697 11044.647 + 40000 2.0178739 -0.67924699 1.3379601 0.77309897 10824.198 + 41000 1.9952353 -0.67490899 1.3196669 0.76592358 10646.649 + 42000 2.002415 -0.70533555 1.2964178 0.81084741 10519.804 + 43000 2.0211625 -0.71370366 1.3067909 0.77355048 10434.893 + 44000 2.0252106 -0.72635544 1.2981859 0.83770143 10132.262 + 45000 2.0126446 -0.75197714 1.2600024 0.88927993 9946.7842 + 46000 2.0431159 -0.78445975 1.257981 0.84492327 9869.8151 + 47000 2.0199724 -0.76967899 1.2496259 0.90977181 9653.4334 + 48000 2.0109636 -0.78968551 1.2206135 0.89458323 9496.7246 + 49000 2.0131059 -0.79687252 1.2155681 0.91239613 9418.3093 + 50000 2.0073361 -0.79981468 1.206858 0.98524334 9289.4715 +Loop time of 19.7532 on 1 procs for 50000 steps with 3026 atoms + +Performance: 1093493.133 tau/day, 2531.234 timesteps/s +100.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 10.789 | 10.789 | 10.789 | 0.0 | 54.62 +Neigh | 2.6848 | 2.6848 | 2.6848 | 0.0 | 13.59 +Comm | 0.53244 | 0.53244 | 0.53244 | 0.0 | 2.70 +Output | 0.0010482 | 0.0010482 | 0.0010482 | 0.0 | 0.01 +Modify | 4.9599 | 4.9599 | 4.9599 | 0.0 | 25.11 +Other | | 0.7856 | | | 3.98 + +Nlocal: 3026.00 ave 3026 max 3026 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 584.000 ave 584 max 584 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 25892.0 ave 25892 max 25892 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 25892 +Ave neighs/atom = 8.5565102 +Neighbor list builds = 4330 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:19 diff --git a/examples/multi/log.30Nov20.colloid.intel.4 b/examples/multi/log.30Nov20.colloid.intel.4 new file mode 100644 index 0000000000..906400df66 --- /dev/null +++ b/examples/multi/log.30Nov20.colloid.intel.4 @@ -0,0 +1,183 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.1 +Lattice spacing in x,y,z = 3.1622777 3.1622777 3.1622777 +region box block 0 60 0 60 -0.5 0.5 +create_box 5 box +Created orthogonal box = (0.0000000 0.0000000 -1.5811388) to (189.73666 189.73666 1.5811388) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds + +#Roughly equally partition atoms between types 1-4 +set group all type/fraction 2 0.500 23984 +Setting atom values ... + 1768 settings made for type/fraction +set group all type/fraction 3 0.333 43684 +Setting atom values ... + 1255 settings made for type/fraction +set group all type/fraction 4 0.250 87811 +Setting atom values ... + 927 settings made for type/fraction + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 60.0 60.0 0.0 30.0 units box +region sphere2 sphere 130.0 130.0 0.0 30.0 units box +delete_atoms region sphere1 +Deleted 289 atoms, new total = 3311 +delete_atoms region sphere2 +Deleted 287 atoms, new total = 3024 +create_atoms 5 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 5 single 130.0 130.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 1 mass 400 +Setting atom values ... + 753 settings made for mass +set type 2 mass 1 +Setting atom values ... + 722 settings made for mass + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/type 2 1*4 5 +comm_modify mode multi reduce/multi #multi/old + +# colloid potential + +pair_style colloid 20.0 +pair_coeff * * 144.0 1.0 0.0 0.0 3.0 +pair_coeff 1 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 2 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 3 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 4 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 5 5 39.5 1.0 20.0 20.0 30.0 + + + +fix 1 all npt temp 2.0 2.0 1.0 iso 0.0 1.0 10.0 drag 1.0 mtk no pchain 0 tchain 1 +fix 2 all enforce2d + +#dump 1 all atom 1000 dump.colloid + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 31 + ghost atom cutoff = 31 + binsize = 2, bins = 95 95 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair colloid, perpetual + attributes: half, newton on + pair build: half/multi/newton + stencil: half/multi/2d + bin: multi +Per MPI rank memory allocation (min/avg/max) = 4.327 | 4.329 | 4.330 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395241 0.121 36000 + 1000 1.8856066 -0.15771717 1.7272663 0.13840578 42574.399 + 2000 1.8590154 -0.11436231 1.7440387 0.097150798 58590.688 + 3000 1.8956738 -0.090814176 1.8042332 0.075557943 77825.289 + 4000 1.9570462 -0.072505537 1.8838939 0.072824365 90931.708 + 5000 2.0376745 -0.083247829 1.9537533 0.068496975 90055.295 + 6000 2.0744887 -0.085395371 1.9884077 0.0821927 78070.648 + 7000 2.1002183 -0.11654617 1.9829781 0.10523249 63934.448 + 8000 2.0818325 -0.13271654 1.948428 0.11909162 52636.484 + 9000 2.0693987 -0.16404154 1.9046733 0.14702552 44539.609 + 10000 2.0667772 -0.19779488 1.8682993 0.17245383 38822.542 + 11000 2.0640582 -0.22114917 1.842227 0.18083079 34788.927 + 12000 2.0308462 -0.20353105 1.8266441 0.20640739 31706.009 + 13000 2.0395895 -0.24217765 1.7967378 0.21832952 29152.654 + 14000 2.030848 -0.2586169 1.77156 0.26577748 27068.89 + 15000 2.0222966 -0.27554585 1.7460825 0.2777169 25272.786 + 16000 2.0398867 -0.31547563 1.723737 0.27763622 23666.792 + 17000 2.03026 -0.32453791 1.7050512 0.28099246 22272.809 + 18000 2.0345512 -0.35026242 1.6836164 0.36600779 21023.172 + 19000 2.0242864 -0.35813231 1.6654851 0.33415432 19941.244 + 20000 2.0132465 -0.36563904 1.6469422 0.403365 18979.884 + 21000 2.0280384 -0.4075867 1.6197815 0.37205362 18152.487 + 22000 2.0206494 -0.40600336 1.6139782 0.42704594 17370.812 + 23000 2.0395761 -0.45083258 1.5880695 0.40276343 16700.427 + 24000 2.017203 -0.44930293 1.5672335 0.43867313 16161.79 + 25000 2.0191846 -0.4672218 1.5512955 0.47031215 15622.756 + 26000 2.0131624 -0.46436088 1.5481363 0.51717944 15141.645 + 27000 2.0322461 -0.50659994 1.5249745 0.49218933 14627.657 + 28000 2.0169304 -0.50555565 1.5107082 0.55547935 14186.079 + 29000 2.024656 -0.52258414 1.5014028 0.59125812 13759.99 + 30000 2.0153725 -0.53585947 1.478847 0.57235811 13384.355 + 31000 2.0163261 -0.56383766 1.4518221 0.58232057 13098.196 + 32000 2.0109673 -0.56784395 1.4424588 0.58282178 12831.934 + 33000 2.0099169 -0.57625621 1.4329964 0.65139601 12479.442 + 34000 2.0238152 -0.60189607 1.4212503 0.62659152 12210.628 + 35000 2.0359989 -0.62654733 1.4087787 0.67574446 11972.725 + 36000 2.0222689 -0.62880837 1.3927923 0.66602146 11690.049 + 37000 1.9982569 -0.62746376 1.3701328 0.71326589 11433.825 + 38000 1.9969836 -0.63975181 1.3565719 0.72799891 11285.497 + 39000 2.0071087 -0.65781805 1.3486274 0.79121297 11107.469 + 40000 2.0243046 -0.6881221 1.3355135 0.77519099 10943.846 + 41000 2.0351657 -0.70309175 1.3314014 0.68815156 10742.515 + 42000 2.0224788 -0.70975664 1.3120538 0.80484619 10505.657 + 43000 2.0123135 -0.70818545 1.3034631 0.84204556 10353.024 + 44000 1.999883 -0.70981202 1.2894101 0.94070546 10212.224 + 45000 2.0127291 -0.73338075 1.2786832 0.82095205 10109.959 + 46000 2.0109037 -0.75130029 1.2589389 0.88538358 9953.4822 + 47000 1.9879175 -0.73152019 1.2557404 0.92089629 9832.892 + 48000 2.0108204 -0.76655178 1.2436041 0.95379465 9633.6453 + 49000 1.9868193 -0.76613798 1.2200247 0.88790224 9504.2918 + 50000 2.0141467 -0.80029827 1.2131829 1.0064263 9346.3268 +Loop time of 6.98615 on 4 procs for 50000 steps with 3026 atoms + +Performance: 3091831.080 tau/day, 7157.016 timesteps/s +99.8% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.2795 | 2.5856 | 2.9414 | 17.4 | 37.01 +Neigh | 0.62273 | 0.70156 | 0.76736 | 7.4 | 10.04 +Comm | 1.0765 | 1.4945 | 1.8884 | 28.6 | 21.39 +Output | 0.00076496 | 0.0008953 | 0.0012832 | 0.0 | 0.01 +Modify | 1.718 | 1.7755 | 1.827 | 3.7 | 25.41 +Other | | 0.4281 | | | 6.13 + +Nlocal: 756.500 ave 839 max 673 min +Histogram: 1 0 1 0 0 0 0 1 0 1 +Nghost: 292.500 ave 307 max 282 min +Histogram: 2 0 0 0 0 0 1 0 0 1 +Neighs: 6435.25 ave 7367 max 5493 min +Histogram: 1 0 0 1 0 0 1 0 0 1 + +Total # of neighbors = 25741 +Ave neighs/atom = 8.5066094 +Neighbor list builds = 4335 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:07 diff --git a/examples/multi/log.30Nov20.colloid.old.intel.1 b/examples/multi/log.30Nov20.colloid.old.intel.1 new file mode 100644 index 0000000000..70c7db2afd --- /dev/null +++ b/examples/multi/log.30Nov20.colloid.old.intel.1 @@ -0,0 +1,183 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.1 +Lattice spacing in x,y,z = 3.1622777 3.1622777 3.1622777 +region box block 0 60 0 60 -0.5 0.5 +create_box 5 box +Created orthogonal box = (0.0000000 0.0000000 -1.5811388) to (189.73666 189.73666 1.5811388) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds + +#Roughly equally partition atoms between types 1-4 +set group all type/fraction 2 0.500 23984 +Setting atom values ... + 1768 settings made for type/fraction +set group all type/fraction 3 0.333 43684 +Setting atom values ... + 1255 settings made for type/fraction +set group all type/fraction 4 0.250 87811 +Setting atom values ... + 927 settings made for type/fraction + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 60.0 60.0 0.0 30.0 units box +region sphere2 sphere 130.0 130.0 0.0 30.0 units box +delete_atoms region sphere1 +Deleted 289 atoms, new total = 3311 +delete_atoms region sphere2 +Deleted 287 atoms, new total = 3024 +create_atoms 5 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 5 single 130.0 130.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 1 mass 400 +Setting atom values ... + 753 settings made for mass +set type 2 mass 1 +Setting atom values ... + 722 settings made for mass + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi/old #multi +neigh_modify delay 0 #multi/custom 2 1*4 5 +comm_modify mode multi/old #multi multi/reduce + +# colloid potential + +pair_style colloid 20.0 +pair_coeff * * 144.0 1.0 0.0 0.0 3.0 +pair_coeff 1 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 2 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 3 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 4 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 5 5 39.5 1.0 20.0 20.0 30.0 + + + +fix 1 all npt temp 2.0 2.0 1.0 iso 0.0 1.0 10.0 drag 1.0 mtk no pchain 0 tchain 1 +fix 2 all enforce2d + +#dump 1 all atom 1000 dump.colloid + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 31 + ghost atom cutoff = 31 + binsize = 2, bins = 95 95 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair colloid, perpetual + attributes: half, newton on + pair build: half/multi/old/newton + stencil: half/multi/old/2d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.496 | 4.496 | 4.496 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395241 0.121 36000 + 1000 1.8856066 -0.15771717 1.7272663 0.13840578 42574.399 + 2000 1.8589993 -0.11434676 1.7440382 0.097157151 58590.69 + 3000 1.8984314 -0.093445816 1.8043582 0.07444246 77824.12 + 4000 1.9603204 -0.07451891 1.8851536 0.066010381 90951.299 + 5000 2.0298924 -0.073898174 1.9553234 0.075791214 90146.92 + 6000 2.0797015 -0.086800284 1.992214 0.082095164 78182.702 + 7000 2.086794 -0.10961479 1.9764895 0.10103993 63990.387 + 8000 2.082863 -0.12779588 1.9543788 0.12672452 52629.802 + 9000 2.0718275 -0.15189022 1.9192526 0.14728063 44541.722 + 10000 2.0603856 -0.18054161 1.8791631 0.16715133 38940.135 + 11000 2.046791 -0.20458359 1.841531 0.19532742 34907.116 + 12000 2.0406846 -0.2252868 1.8147234 0.2036178 31740.208 + 13000 2.0369763 -0.23721632 1.7990869 0.25542564 29079.901 + 14000 2.0376121 -0.26282517 1.7741135 0.24722118 26947.344 + 15000 2.0312772 -0.2851101 1.7454959 0.2801199 25180.963 + 16000 2.0080448 -0.28992973 1.7174515 0.30099318 23723.043 + 17000 2.0234993 -0.30440169 1.7184289 0.3193226 22342.977 + 18000 2.0216103 -0.32036933 1.7005729 0.3460322 21068.99 + 19000 2.0493952 -0.37711533 1.6716026 0.33804972 20013.325 + 20000 2.0307894 -0.38462795 1.6454903 0.37041981 19092.745 + 21000 2.0328577 -0.39442652 1.6377594 0.36327057 18260.298 + 22000 2.0325613 -0.40481002 1.6270796 0.42756691 17447.199 + 23000 2.0199358 -0.42175719 1.5975111 0.40948041 16768.71 + 24000 2.0149952 -0.43618764 1.5781417 0.45406069 16187.334 + 25000 2.0153221 -0.45884172 1.5558143 0.52717203 15605.577 + 26000 2.0099026 -0.47080566 1.5384327 0.49181459 15088.041 + 27000 2.0128537 -0.49799999 1.5141885 0.53907465 14590.392 + 28000 2.0287266 -0.53112525 1.4969309 0.59750714 14208.419 + 29000 2.0143609 -0.53175704 1.4819381 0.56118773 13840.642 + 30000 2.0235262 -0.53923416 1.4836234 0.52579997 13500.15 + 31000 2.0390444 -0.57976823 1.4586023 0.5760349 13082.091 + 32000 2.018046 -0.57797686 1.4394022 0.59127933 12761.726 + 33000 2.0059068 -0.57185148 1.4333925 0.58992758 12473.866 + 34000 1.9828456 -0.57147221 1.4107181 0.77593228 12208.869 + 35000 1.9900097 -0.58349168 1.4058604 0.681968 11937.285 + 36000 2.0271405 -0.64374859 1.382722 0.63152587 11675.264 + 37000 2.0032809 -0.63520712 1.3674117 0.71639384 11440.274 + 38000 2.0000566 -0.63941617 1.3599795 0.74099652 11235.252 + 39000 1.9872705 -0.64765522 1.3389586 0.7575743 11080.857 + 40000 2.0224403 -0.6795645 1.3422075 0.82918546 10861.905 + 41000 2.0137595 -0.69863075 1.3144633 0.80397759 10712.981 + 42000 1.9950915 -0.68892531 1.3055069 0.77631365 10632.931 + 43000 2.0080851 -0.70534369 1.3020778 0.82408436 10408.82 + 44000 2.0239806 -0.73189482 1.2914169 0.83228695 10227.18 + 45000 2.0019542 -0.72613202 1.2751606 0.9145618 10044.013 + 46000 2.0173095 -0.75370218 1.2629407 0.99791312 9837.9611 + 47000 1.9921201 -0.75875076 1.232711 1.0047839 9711.2083 + 48000 2.0283587 -0.79063641 1.237052 0.83617499 9610.9933 + 49000 2.0051919 -0.79078067 1.2137485 0.95651813 9411.7165 + 50000 2.0140985 -0.81796958 1.1954634 0.93791038 9296.069 +Loop time of 28.5339 on 1 procs for 50000 steps with 3026 atoms + +Performance: 756994.490 tau/day, 1752.302 timesteps/s +100.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 10.918 | 10.918 | 10.918 | 0.0 | 38.26 +Neigh | 10.375 | 10.375 | 10.375 | 0.0 | 36.36 +Comm | 1.2856 | 1.2856 | 1.2856 | 0.0 | 4.51 +Output | 0.0010955 | 0.0010955 | 0.0010955 | 0.0 | 0.00 +Modify | 5.0132 | 5.0132 | 5.0132 | 0.0 | 17.57 +Other | | 0.9412 | | | 3.30 + +Nlocal: 3026.00 ave 3026 max 3026 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 2292.00 ave 2292 max 2292 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 25767.0 ave 25767 max 25767 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 25767 +Ave neighs/atom = 8.5152016 +Neighbor list builds = 4332 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:28 diff --git a/examples/multi/log.30Nov20.colloid.old.intel.4 b/examples/multi/log.30Nov20.colloid.old.intel.4 new file mode 100644 index 0000000000..6d159d9405 --- /dev/null +++ b/examples/multi/log.30Nov20.colloid.old.intel.4 @@ -0,0 +1,183 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.1 +Lattice spacing in x,y,z = 3.1622777 3.1622777 3.1622777 +region box block 0 60 0 60 -0.5 0.5 +create_box 5 box +Created orthogonal box = (0.0000000 0.0000000 -1.5811388) to (189.73666 189.73666 1.5811388) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds + +#Roughly equally partition atoms between types 1-4 +set group all type/fraction 2 0.500 23984 +Setting atom values ... + 1768 settings made for type/fraction +set group all type/fraction 3 0.333 43684 +Setting atom values ... + 1255 settings made for type/fraction +set group all type/fraction 4 0.250 87811 +Setting atom values ... + 927 settings made for type/fraction + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 60.0 60.0 0.0 30.0 units box +region sphere2 sphere 130.0 130.0 0.0 30.0 units box +delete_atoms region sphere1 +Deleted 289 atoms, new total = 3311 +delete_atoms region sphere2 +Deleted 287 atoms, new total = 3024 +create_atoms 5 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 5 single 130.0 130.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 1 mass 400 +Setting atom values ... + 753 settings made for mass +set type 2 mass 1 +Setting atom values ... + 722 settings made for mass + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi/old #multi +neigh_modify delay 0 #multi/custom 2 1*4 5 +comm_modify mode multi/old #multi multi/reduce + +# colloid potential + +pair_style colloid 20.0 +pair_coeff * * 144.0 1.0 0.0 0.0 3.0 +pair_coeff 1 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 2 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 3 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 4 5 75.4 1.0 0.0 20.0 14.0 +pair_coeff 5 5 39.5 1.0 20.0 20.0 30.0 + + + +fix 1 all npt temp 2.0 2.0 1.0 iso 0.0 1.0 10.0 drag 1.0 mtk no pchain 0 tchain 1 +fix 2 all enforce2d + +#dump 1 all atom 1000 dump.colloid + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 31 + ghost atom cutoff = 31 + binsize = 2, bins = 95 95 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair colloid, perpetual + attributes: half, newton on + pair build: half/multi/old/newton + stencil: half/multi/old/2d + bin: standard +Per MPI rank memory allocation (min/avg/max) = 4.404 | 4.406 | 4.410 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395241 0.121 36000 + 1000 1.8856066 -0.15771717 1.7272663 0.13840578 42574.399 + 2000 1.8590154 -0.11436231 1.7440387 0.097150798 58590.688 + 3000 1.8956738 -0.090814168 1.8042332 0.075557943 77825.289 + 4000 1.9567884 -0.072243657 1.8838981 0.072836007 90931.521 + 5000 2.0386455 -0.084279096 1.9536927 0.06867562 90054.581 + 6000 2.0816461 -0.093158646 1.9877995 0.082802397 78084.994 + 7000 2.0854943 -0.10553618 1.979269 0.10230351 63886.068 + 8000 2.0923948 -0.14072173 1.9509816 0.11775174 52590.899 + 9000 2.0687841 -0.15957251 1.9085279 0.14963059 44575.69 + 10000 2.0607467 -0.18970216 1.8703636 0.17210861 39016.271 + 11000 2.0538523 -0.20866031 1.8445133 0.18554787 34992.223 + 12000 2.0408745 -0.22276635 1.8174337 0.21228473 31794.869 + 13000 2.0366678 -0.24217764 1.7938171 0.22999314 29186.441 + 14000 2.0470314 -0.26923854 1.7771164 0.2576977 26941.432 + 15000 2.0262458 -0.27296827 1.7526079 0.25960813 25184.491 + 16000 2.0410096 -0.30940081 1.7309343 0.27842776 23619.633 + 17000 2.027379 -0.32411477 1.7025943 0.32102949 22231.582 + 18000 2.0338405 -0.34468182 1.6884866 0.3306203 21028.933 + 19000 2.032206 -0.36558904 1.6659454 0.33926726 19958.945 + 20000 2.0347643 -0.3915229 1.642569 0.33718716 19054.271 + 21000 2.0242901 -0.38913219 1.634489 0.38062225 18190.934 + 22000 2.0207557 -0.41078199 1.6093059 0.40143768 17422.03 + 23000 2.0069068 -0.42062708 1.5856165 0.40146954 16717.999 + 24000 2.0300595 -0.4536262 1.5757624 0.49229743 16097.323 + 25000 2.0347548 -0.47655047 1.5575319 0.46787969 15564.848 + 26000 2.0180789 -0.46537586 1.5520362 0.48541997 15072.597 + 27000 2.0150506 -0.4886202 1.5257645 0.53829749 14621.24 + 28000 2.0175464 -0.50951413 1.5073655 0.50140171 14253.441 + 29000 2.0186127 -0.53911975 1.4788258 0.52955802 13930.266 + 30000 2.0006844 -0.52621334 1.4738099 0.60130639 13650.051 + 31000 2.0179614 -0.54573939 1.4715551 0.58747508 13285.903 + 32000 2.0333208 -0.57431851 1.4583303 0.62631039 12894.077 + 33000 2.0017273 -0.57778326 1.4232825 0.61159622 12595.987 + 34000 2.0063025 -0.58192939 1.4237101 0.66174764 12316.964 + 35000 2.0174782 -0.60591394 1.4108976 0.63571024 12063.433 + 36000 2.025112 -0.64319133 1.3812514 0.62829458 11930.246 + 37000 2.0431268 -0.64342323 1.3990283 0.68038546 11651.664 + 38000 2.0064271 -0.63716263 1.3686014 0.72167175 11345.421 + 39000 2.0284014 -0.67236471 1.3553663 0.68693225 11062.293 + 40000 2.0181711 -0.6962559 1.3212483 0.76033095 10864.176 + 41000 1.9908152 -0.66607906 1.3240783 0.90250403 10812.599 + 42000 2.0007084 -0.68853623 1.311511 0.88096905 10627.922 + 43000 1.998883 -0.69053805 1.3076844 0.81765345 10469.928 + 44000 2.0197069 -0.72507021 1.2939693 0.87004916 10194.954 + 45000 2.0112835 -0.72638581 1.284233 0.99236207 9968.2662 + 46000 2.0195002 -0.75152677 1.2673061 0.92706763 9751.1162 + 47000 1.983694 -0.75006702 1.2329714 0.8945741 9652.1453 + 48000 1.9977505 -0.77207122 1.225019 0.92107083 9647.1543 + 49000 2.0000901 -0.76254934 1.2368798 1.0320945 9536.2823 + 50000 2.0150929 -0.80463979 1.2097872 0.99556424 9324.0277 +Loop time of 10.7578 on 4 procs for 50000 steps with 3026 atoms + +Performance: 2007847.166 tau/day, 4647.794 timesteps/s +98.2% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 2.3814 | 2.6878 | 2.9507 | 15.2 | 24.98 +Neigh | 2.3959 | 2.6615 | 2.9677 | 16.2 | 24.74 +Comm | 2.4113 | 2.9894 | 3.5621 | 29.6 | 27.79 +Output | 0.00077024 | 0.00091029 | 0.0012971 | 0.0 | 0.01 +Modify | 1.7966 | 1.8497 | 1.907 | 3.8 | 17.19 +Other | | 0.5686 | | | 5.29 + +Nlocal: 756.500 ave 838 max 693 min +Histogram: 2 0 0 0 0 0 0 1 0 1 +Nghost: 1282.50 ave 1333 max 1216 min +Histogram: 1 0 0 0 1 0 0 0 1 1 +Neighs: 6426.25 ave 7350 max 5786 min +Histogram: 2 0 0 0 0 1 0 0 0 1 + +Total # of neighbors = 25705 +Ave neighs/atom = 8.4947125 +Neighbor list builds = 4326 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:10 diff --git a/examples/multi/log.30Nov20.granular.intel.1 b/examples/multi/log.30Nov20.granular.intel.1 new file mode 100644 index 0000000000..06d02b8531 --- /dev/null +++ b/examples/multi/log.30Nov20.granular.intel.1 @@ -0,0 +1,175 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.5 +Lattice spacing in x,y,z = 1.4142136 1.4142136 1.4142136 +region box block 0 60 0 60 -0.5 0.5 +create_box 2 box +Created orthogonal box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds +change_box all triclinic +Changing box ... + triclinic box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) with tilt (0.0000000 0.0000000 0.0000000) + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 20.0 20.0 0.0 10.0 units box +region sphere2 sphere 60.0 60.0 0.0 10.0 units box +delete_atoms region sphere1 +Deleted 154 atoms, new total = 3446 +delete_atoms region sphere2 +Deleted 158 atoms, new total = 3288 +create_atoms 2 single 20.0 20.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 2 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 2 mass 400 +Setting atom values ... + 2 settings made for mass +set type 1 mass 1 +Setting atom values ... + 3288 settings made for mass +set type 2 diameter 20 +Setting atom values ... + 2 settings made for diameter +set type 1 diameter 1 +Setting atom values ... + 3288 settings made for diameter + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/interval 2 1 20 +comm_modify mode multi vel yes reduce/multi #multi/old + +# colloid potential + +pair_style granular +pair_coeff * * hooke 1.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +fix 1 all nph/sphere iso 0.0 1.0 10.0 drag 1.0 +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-3 + +#dump 1 all custom 1000 dump.granular id x y z radius + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 21 + ghost atom cutoff = 21 + binsize = 1, bins = 85 85 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/newton/tri + stencil: half/multi/2d/tri + bin: multi +Per MPI rank memory allocation (min/avg/max) = 10.29 | 10.29 | 10.29 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395623 0.66837658 7200 + 1000 0.32604952 0 0.32595042 0.17341597 7862.5013 + 2000 0.12631038 0 0.12627198 0.069126477 8216.6956 + 3000 0.069351715 0 0.069330635 0.040799593 8344.1931 + 4000 0.045023755 0 0.04501007 0.029184795 8239.1832 + 5000 0.032735149 0 0.0327252 0.025640841 7943.5691 + 6000 0.026205227 0 0.026197262 0.021206924 7617.6672 + 7000 0.02165475 0 0.021648168 0.018789365 7255.2897 + 8000 0.018299317 0 0.018293755 0.019272158 6887.3386 + 9000 0.016283763 0 0.016278813 0.020434892 6524.0274 + 10000 0.015148918 0 0.015144313 0.021650465 6168.4941 + 11000 0.014180465 0 0.014176155 0.022320009 5823.98 + 12000 0.013505744 0 0.013501639 0.023978674 5492.4853 + 13000 0.013009585 0 0.01300563 0.024391329 5175.7455 + 14000 0.012494373 0 0.012490576 0.027331543 4874.3212 + 15000 0.012057669 0 0.012054004 0.030561239 4589.518 + 16000 0.011510988 0 0.01150749 0.034613772 4321.1694 + 17000 0.011198594 0 0.01119519 0.042263536 4070.0115 + 18000 0.010978603 0 0.010975266 0.053637275 3836.0304 + 19000 0.010768789 0 0.010765516 0.069472547 3619.75 + 20000 0.0102256 0 0.010222492 0.085332898 3420.2738 + 21000 0.0089630315 0 0.0089603072 0.11199196 3236.9821 + 22000 0.006565581 0 0.0065635854 0.14807426 3071.3012 + 23000 0.0050916998 0 0.0050901522 0.1903446 2923.4162 + 24000 0.0040345997 0 0.0040333734 0.237983 2792.2658 + 25000 0.0032995328 0 0.0032985299 0.29120001 2677.7475 + 26000 0.0024157863 0 0.002415052 0.33851944 2578.4972 + 27000 0.0020664445 0 0.0020658164 0.37561848 2491.0264 + 28000 0.0017843883 0 0.0017838459 0.41119961 2412.3871 + 29000 0.0011813262 0 0.0011809672 0.44749341 2341.7208 + 30000 0.00063084711 0 0.00063065536 0.4879202 2279.0452 + 31000 0.00056027405 0 0.00056010376 0.52932126 2224.9456 + 32000 0.00053304715 0 0.00053288513 0.56822504 2179.1224 + 33000 0.00052245707 0 0.00052229826 0.60025509 2140.5345 + 34000 0.00073726189 0 0.0007370378 0.62001489 2106.3045 + 35000 0.00075804791 0 0.0007578175 0.6359631 2072.525 + 36000 0.00052579203 0 0.00052563222 0.65678516 2038.1907 + 37000 0.00036977909 0 0.0003696667 0.68784389 2005.5831 + 38000 0.00036252798 0 0.00036241779 0.72116044 1977.7441 + 39000 0.00036254566 0 0.00036243547 0.74720837 1954.9127 + 40000 0.00036237175 0 0.00036226161 0.76605408 1934.6006 + 41000 0.00032453104 0 0.00032443239 0.78424188 1914.1939 + 42000 0.00025394755 0 0.00025387036 0.80529272 1893.064 + 43000 0.00021067821 0 0.00021061418 0.82962095 1872.365 + 44000 0.00017927684 0 0.00017922235 0.85522899 1853.531 + 45000 0.0001464225 0 0.000146378 0.87925998 1837.2423 + 46000 0.00012922979 0 0.00012919051 0.8986549 1822.9227 + 47000 0.0001643557 0 0.00016430575 0.91743602 1809.0605 + 48000 0.00020154753 0 0.00020148627 0.93686779 1794.9227 + 49000 0.00017742528 0 0.00017737135 0.94988773 1780.3811 + 50000 0.00015150521 0 0.00015145916 0.97929588 1764.7507 +Loop time of 54.9135 on 1 procs for 50000 steps with 3290 atoms + +Performance: 393345.914 tau/day, 910.523 timesteps/s +100.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 44.691 | 44.691 | 44.691 | 0.0 | 81.38 +Neigh | 0.21653 | 0.21653 | 0.21653 | 0.0 | 0.39 +Comm | 0.75388 | 0.75388 | 0.75388 | 0.0 | 1.37 +Output | 0.0011999 | 0.0011999 | 0.0011999 | 0.0 | 0.00 +Modify | 8.4718 | 8.4718 | 8.4718 | 0.0 | 15.43 +Other | | 0.7794 | | | 1.42 + +Nlocal: 3290.00 ave 3290 max 3290 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 525.000 ave 525 max 525 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 26732.0 ave 26732 max 26732 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 26732 +Ave neighs/atom = 8.1252280 +Neighbor list builds = 342 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:54 diff --git a/examples/multi/log.30Nov20.granular.intel.4 b/examples/multi/log.30Nov20.granular.intel.4 new file mode 100644 index 0000000000..3aa05d79c7 --- /dev/null +++ b/examples/multi/log.30Nov20.granular.intel.4 @@ -0,0 +1,175 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.5 +Lattice spacing in x,y,z = 1.4142136 1.4142136 1.4142136 +region box block 0 60 0 60 -0.5 0.5 +create_box 2 box +Created orthogonal box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds +change_box all triclinic +Changing box ... + triclinic box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) with tilt (0.0000000 0.0000000 0.0000000) + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 20.0 20.0 0.0 10.0 units box +region sphere2 sphere 60.0 60.0 0.0 10.0 units box +delete_atoms region sphere1 +Deleted 154 atoms, new total = 3446 +delete_atoms region sphere2 +Deleted 158 atoms, new total = 3288 +create_atoms 2 single 20.0 20.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 2 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 2 mass 400 +Setting atom values ... + 2 settings made for mass +set type 1 mass 1 +Setting atom values ... + 3288 settings made for mass +set type 2 diameter 20 +Setting atom values ... + 2 settings made for diameter +set type 1 diameter 1 +Setting atom values ... + 3288 settings made for diameter + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi #multi/old +neigh_modify delay 0 collection/interval 2 1 20 +comm_modify mode multi vel yes reduce/multi #multi/old + +# colloid potential + +pair_style granular +pair_coeff * * hooke 1.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +fix 1 all nph/sphere iso 0.0 1.0 10.0 drag 1.0 +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-3 + +#dump 1 all custom 1000 dump.granular id x y z radius + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 21 + ghost atom cutoff = 21 + binsize = 1, bins = 85 85 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/newton/tri + stencil: half/multi/2d/tri + bin: multi +Per MPI rank memory allocation (min/avg/max) = 10.09 | 10.10 | 10.10 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395623 0.66837658 7200 + 1000 0.32605303 0 0.32595393 0.17341558 7862.5037 + 2000 0.12631567 0 0.12627728 0.069188881 8216.7174 + 3000 0.069373812 0 0.069352726 0.040740832 8344.2982 + 4000 0.045084633 0 0.045070929 0.029328609 8239.3656 + 5000 0.032681746 0 0.032671813 0.025416741 7943.7831 + 6000 0.026301239 0 0.026293245 0.021418793 7617.8426 + 7000 0.021666723 0 0.021660138 0.018961011 7255.9338 + 8000 0.018141337 0 0.018135823 0.019306113 6887.4963 + 9000 0.015922309 0 0.015917469 0.020033398 6524.016 + 10000 0.014744547 0 0.014740066 0.020959503 6168.1945 + 11000 0.013872852 0 0.013868636 0.021708943 5823.3153 + 12000 0.013321594 0 0.013317545 0.02332141 5491.4979 + 13000 0.01269964 0 0.012695779 0.024796428 5174.6263 + 14000 0.01227055 0 0.012266821 0.027785072 4873.4516 + 15000 0.012120508 0 0.012116824 0.029656636 4588.8603 + 16000 0.011612027 0 0.011608498 0.034695109 4320.4674 + 17000 0.011216697 0 0.011213288 0.042746966 4069.4275 + 18000 0.010950166 0 0.010946838 0.053528994 3835.5439 + 19000 0.010887635 0 0.010884325 0.069684492 3619.562 + 20000 0.010563449 0 0.010560238 0.08654561 3420.2636 + 21000 0.0092336323 0 0.0092308257 0.11286068 3237.1408 + 22000 0.006929086 0 0.0069269799 0.15018917 3072.0438 + 23000 0.0052239156 0 0.0052223277 0.19067193 2924.441 + 24000 0.0044210081 0 0.0044196644 0.23908686 2793.2426 + 25000 0.0034916086 0 0.0034905473 0.29112824 2678.7912 + 26000 0.002549072 0 0.0025482972 0.33567824 2579.3738 + 27000 0.0020890726 0 0.0020884377 0.37328514 2491.0502 + 28000 0.001772982 0 0.0017724431 0.41079958 2411.9111 + 29000 0.001127719 0 0.0011273762 0.44752241 2341.1888 + 30000 0.00053266563 0 0.00053250373 0.48791815 2278.5611 + 31000 0.00050278646 0 0.00050263364 0.52896525 2224.5328 + 32000 0.00051880956 0 0.00051865187 0.56884574 2178.6674 + 33000 0.00054908167 0 0.00054891477 0.6016387 2140.3696 + 34000 0.00075213884 0 0.00075191023 0.62070188 2106.6504 + 35000 0.00081295162 0 0.00081270452 0.63492031 2073.0077 + 36000 0.00056699821 0 0.00056682587 0.65608409 2038.3251 + 37000 0.0003540723 0 0.00035396468 0.68803919 2005.497 + 38000 0.00031139738 0 0.00031130273 0.72103717 1977.7345 + 39000 0.00034087822 0 0.00034077461 0.74697975 1954.8979 + 40000 0.00035452426 0 0.0003544165 0.76682035 1934.5695 + 41000 0.00030882258 0 0.00030872871 0.78390763 1914.3326 + 42000 0.00025492799 0 0.00025485051 0.80439795 1893.1474 + 43000 0.00021545017 0 0.00021538468 0.82803644 1872.073 + 44000 0.00017293257 0 0.00017288 0.85436769 1852.6548 + 45000 0.00014097725 0 0.0001409344 0.8796181 1836.0087 + 46000 0.0001139199 0 0.00011388527 0.90006173 1821.7977 + 47000 0.00012678598 0 0.00012674745 0.90876359 1808.4913 + 48000 0.00013796773 0 0.00013792579 0.93661523 1793.8082 + 49000 0.00014723144 0 0.00014718669 0.95869417 1779.1875 + 50000 0.00013610653 0 0.00013606516 0.97777198 1765.3247 +Loop time of 17.7405 on 4 procs for 50000 steps with 3290 atoms + +Performance: 1217551.996 tau/day, 2818.407 timesteps/s +100.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 6.6629 | 9.6168 | 12.444 | 76.6 | 54.21 +Neigh | 0.049771 | 0.055182 | 0.06133 | 2.0 | 0.31 +Comm | 1.7883 | 4.6306 | 7.6179 | 111.5 | 26.10 +Output | 0.00085342 | 0.0010606 | 0.0015425 | 0.9 | 0.01 +Modify | 2.7244 | 2.895 | 3.0436 | 8.2 | 16.32 +Other | | 0.5419 | | | 3.05 + +Nlocal: 822.500 ave 897 max 779 min +Histogram: 1 1 0 1 0 0 0 0 0 1 +Nghost: 190.500 ave 211 max 179 min +Histogram: 2 0 0 1 0 0 0 0 0 1 +Neighs: 6665.75 ave 7329 max 6104 min +Histogram: 1 0 0 1 1 0 0 0 0 1 + +Total # of neighbors = 26663 +Ave neighs/atom = 8.1042553 +Neighbor list builds = 342 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:17 diff --git a/examples/multi/log.30Nov20.granular.old.intel.1 b/examples/multi/log.30Nov20.granular.old.intel.1 new file mode 100644 index 0000000000..f928621824 --- /dev/null +++ b/examples/multi/log.30Nov20.granular.old.intel.1 @@ -0,0 +1,175 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.5 +Lattice spacing in x,y,z = 1.4142136 1.4142136 1.4142136 +region box block 0 60 0 60 -0.5 0.5 +create_box 2 box +Created orthogonal box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) + 1 by 1 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.001 seconds +change_box all triclinic +Changing box ... + triclinic box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) with tilt (0.0000000 0.0000000 0.0000000) + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 20.0 20.0 0.0 10.0 units box +region sphere2 sphere 60.0 60.0 0.0 10.0 units box +delete_atoms region sphere1 +Deleted 154 atoms, new total = 3446 +delete_atoms region sphere2 +Deleted 158 atoms, new total = 3288 +create_atoms 2 single 20.0 20.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 2 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 2 mass 400 +Setting atom values ... + 2 settings made for mass +set type 1 mass 1 +Setting atom values ... + 3288 settings made for mass +set type 2 diameter 20 +Setting atom values ... + 2 settings made for diameter +set type 1 diameter 1 +Setting atom values ... + 3288 settings made for diameter + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi/old #multi +neigh_modify delay 0 #collection/interval 2 1 20 +comm_modify mode multi/old vel yes #reduce/multi + +# colloid potential + +pair_style granular +pair_coeff * * hooke 1.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +fix 1 all nph/sphere iso 0.0 1.0 10.0 drag 1.0 +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-3 + +#dump 1 all custom 1000 dump.granular id x y z radius + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 21 + ghost atom cutoff = 21 + binsize = 1, bins = 85 85 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/old/newton/tri + stencil: half/multi/old/2d/tri + bin: standard +Per MPI rank memory allocation (min/avg/max) = 10.38 | 10.38 | 10.38 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395623 0.66837658 7200 + 1000 0.32273428 0 0.32263619 0.17174972 7859.8897 + 2000 0.12441598 0 0.12437817 0.067078155 8212.9946 + 3000 0.067389284 0 0.067368801 0.040425551 8336.7112 + 4000 0.044312733 0 0.044299264 0.028220228 8229.0658 + 5000 0.032702163 0 0.032692223 0.024302012 7931.1298 + 6000 0.025856 0 0.025848141 0.021241317 7603.5534 + 7000 0.021437473 0 0.021430957 0.019285494 7243.5757 + 8000 0.018129567 0 0.018124057 0.020738727 6877.4816 + 9000 0.016370159 0 0.016365184 0.020261904 6515.3445 + 10000 0.01500918 0 0.015004618 0.020551803 6160.4475 + 11000 0.014156551 0 0.014152248 0.021324815 5815.4665 + 12000 0.013725406 0 0.013721235 0.021159958 5483.6304 + 13000 0.013215746 0 0.013211729 0.021685712 5165.4758 + 14000 0.012398153 0 0.012394384 0.024155434 4862.8657 + 15000 0.011842796 0 0.011839196 0.028503991 4577.9008 + 16000 0.011433182 0 0.011429706 0.033564839 4309.8792 + 17000 0.011166574 0 0.01116318 0.040592677 4058.9964 + 18000 0.01100067 0 0.010997326 0.04899206 3825.155 + 19000 0.010224474 0 0.010221366 0.063670337 3607.6577 + 20000 0.0091360558 0 0.0091332789 0.088230111 3408.5658 + 21000 0.0077336471 0 0.0077312964 0.11769368 3227.7002 + 22000 0.0060202357 0 0.0060184059 0.15272492 3064.3986 + 23000 0.0046705738 0 0.0046691542 0.19450723 2918.0014 + 24000 0.0040248311 0 0.0040236078 0.24161743 2788.4113 + 25000 0.0032075267 0 0.0032065518 0.28976925 2674.5604 + 26000 0.0021358008 0 0.0021351516 0.33635615 2574.9564 + 27000 0.0016902771 0 0.0016897633 0.37624261 2487.2379 + 28000 0.0014038216 0 0.0014033949 0.41492061 2409.2461 + 29000 0.00090262588 0 0.00090235152 0.45392924 2340.0308 + 30000 0.00049466445 0 0.0004945141 0.49295063 2279.2316 + 31000 0.00056998139 0 0.00056980814 0.53299532 2226.5683 + 32000 0.00057327032 0 0.00057309607 0.56856551 2181.7093 + 33000 0.00044845449 0 0.00044831818 0.59623461 2142.7574 + 34000 0.00059840346 0 0.00059822157 0.61758978 2107.1254 + 35000 0.00075311121 0 0.0007528823 0.63756791 2072.7217 + 36000 0.00053773653 0 0.00053757309 0.66026022 2039.1654 + 37000 0.00030439696 0 0.00030430444 0.69059127 2007.7901 + 38000 0.00034435616 0 0.00034425149 0.72166346 1980.7136 + 39000 0.00039692535 0 0.0003968047 0.7468036 1957.9531 + 40000 0.0003542502 0 0.00035414252 0.76604173 1937.3834 + 41000 0.0003094667 0 0.00030937263 0.78323183 1916.7027 + 42000 0.00027258976 0 0.0002725069 0.80315572 1895.0714 + 43000 0.00020659987 0 0.00020653707 0.82746098 1873.5408 + 44000 0.00016023865 0 0.00016018994 0.85418945 1853.8677 + 45000 0.00016112731 0 0.00016107833 0.87913874 1837.1144 + 46000 0.00016131366 0 0.00016126463 0.89921653 1822.7355 + 47000 0.00015754747 0 0.00015749958 0.91653641 1809.0285 + 48000 0.00017794764 0 0.00017789356 0.93582953 1794.7043 + 49000 0.00018879338 0 0.000188736 0.95775166 1780.0323 + 50000 0.00017781117 0 0.00017775712 0.97893641 1765.9442 +Loop time of 74.6636 on 1 procs for 50000 steps with 3290 atoms + +Performance: 289297.713 tau/day, 669.671 timesteps/s +100.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 56.696 | 56.696 | 56.696 | 0.0 | 75.93 +Neigh | 2.2232 | 2.2232 | 2.2232 | 0.0 | 2.98 +Comm | 6.1867 | 6.1867 | 6.1867 | 0.0 | 8.29 +Output | 0.0012016 | 0.0012016 | 0.0012016 | 0.0 | 0.00 +Modify | 8.432 | 8.432 | 8.432 | 0.0 | 11.29 +Other | | 1.125 | | | 1.51 + +Nlocal: 3290.00 ave 3290 max 3290 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 6295.00 ave 6295 max 6295 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 53729.0 ave 53729 max 53729 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 53729 +Ave neighs/atom = 16.331003 +Neighbor list builds = 348 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:01:14 diff --git a/examples/multi/log.30Nov20.granular.old.intel.4 b/examples/multi/log.30Nov20.granular.old.intel.4 new file mode 100644 index 0000000000..507de22119 --- /dev/null +++ b/examples/multi/log.30Nov20.granular.old.intel.4 @@ -0,0 +1,175 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Big colloid particles and small LJ particles + +units lj +atom_style sphere +dimension 2 + +lattice sq 0.5 +Lattice spacing in x,y,z = 1.4142136 1.4142136 1.4142136 +region box block 0 60 0 60 -0.5 0.5 +create_box 2 box +Created orthogonal box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) + 2 by 2 by 1 MPI processor grid +create_atoms 1 box +Created 3600 atoms + create_atoms CPU = 0.063 seconds +change_box all triclinic +Changing box ... + triclinic box = (0.0000000 0.0000000 -0.70710678) to (84.852814 84.852814 0.70710678) with tilt (0.0000000 0.0000000 0.0000000) + +# remove two spheres of small particles and add large particles in the voids +region sphere1 sphere 20.0 20.0 0.0 10.0 units box +region sphere2 sphere 60.0 60.0 0.0 10.0 units box +delete_atoms region sphere1 +Deleted 154 atoms, new total = 3446 +delete_atoms region sphere2 +Deleted 158 atoms, new total = 3288 +create_atoms 2 single 20.0 20.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds +create_atoms 2 single 60.0 60.0 0.0 units box +Created 1 atoms + create_atoms CPU = 0.000 seconds + +set type 2 mass 400 +Setting atom values ... + 2 settings made for mass +set type 1 mass 1 +Setting atom values ... + 3288 settings made for mass +set type 2 diameter 20 +Setting atom values ... + 2 settings made for diameter +set type 1 diameter 1 +Setting atom values ... + 3288 settings made for diameter + +velocity all create 1.44 87287 loop geom + +# multi neighbor and comm for efficiency + +neighbor 1 multi/old #multi +neigh_modify delay 0 #collection/interval 2 1 20 +comm_modify mode multi/old vel yes #reduce/multi + +# colloid potential + +pair_style granular +pair_coeff * * hooke 1.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +fix 1 all nph/sphere iso 0.0 1.0 10.0 drag 1.0 +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-3 + +#dump 1 all custom 1000 dump.granular id x y z radius + +#dump 2 all image 1000 image.*.jpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 2 pad 5 adiam 1 5.0 adiam 2 1.5 + +#dump 3 all movie 1000 movie.mpg type type # zoom 1.5 center d 0.5 0.5 0.5 +#dump_modify 3 pad 5 adiam 1 5.0 adiam 2 1.5 + +thermo_style custom step temp epair etotal press vol +thermo 1000 + +timestep 0.005 + +run 50000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 21 + ghost atom cutoff = 21 + binsize = 1, bins = 85 85 2 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/old/newton/tri + stencil: half/multi/old/2d/tri + bin: standard +Per MPI rank memory allocation (min/avg/max) = 10.20 | 10.20 | 10.20 Mbytes +Step Temp E_pair TotEng Press Volume + 0 1.44 0 1.4395623 0.66837658 7200 + 1000 0.32273428 0 0.32263619 0.17174972 7859.8897 + 2000 0.12441598 0 0.12437817 0.067078155 8212.9946 + 3000 0.067389284 0 0.067368801 0.040425551 8336.7112 + 4000 0.044312733 0 0.044299264 0.028220228 8229.0658 + 5000 0.032702163 0 0.032692223 0.024302012 7931.1298 + 6000 0.025856 0 0.025848141 0.021241317 7603.5534 + 7000 0.021437473 0 0.021430957 0.019285494 7243.5757 + 8000 0.018129567 0 0.018124057 0.020738727 6877.4816 + 9000 0.01637016 0 0.016365184 0.020261904 6515.3445 + 10000 0.01500918 0 0.015004618 0.020551803 6160.4475 + 11000 0.014156553 0 0.01415225 0.021324818 5815.4665 + 12000 0.013725412 0 0.01372124 0.021159958 5483.6304 + 13000 0.013215733 0 0.013211716 0.021685624 5165.4758 + 14000 0.012398179 0 0.012394411 0.024155572 4862.8657 + 15000 0.01184269 0 0.01183909 0.028504106 4577.901 + 16000 0.01143291 0 0.011429435 0.033564204 4309.88 + 17000 0.011166204 0 0.01116281 0.040588854 4058.9972 + 18000 0.011000875 0 0.010997532 0.048998904 3825.1569 + 19000 0.010225905 0 0.010222797 0.063669588 3607.6622 + 20000 0.0091390255 0 0.0091362477 0.088165402 3408.567 + 21000 0.0077382041 0 0.0077358521 0.11770474 3227.6936 + 22000 0.00601731 0 0.0060154811 0.15261994 3064.3873 + 23000 0.0046667591 0 0.0046653407 0.19453819 2917.9782 + 24000 0.0040425749 0 0.0040413461 0.24145833 2788.3897 + 25000 0.0031933217 0 0.0031923511 0.28989713 2674.5164 + 26000 0.0021138997 0 0.0021132571 0.33598673 2574.9312 + 27000 0.001700508 0 0.0016999912 0.37665013 2487.1626 + 28000 0.0014434246 0 0.0014429859 0.41572163 2409.327 + 29000 0.00089885063 0 0.00089857742 0.453431 2340.2313 + 30000 0.00048556478 0 0.00048541719 0.49176025 2279.2155 + 31000 0.00058130972 0 0.00058113303 0.53236818 2226.2349 + 32000 0.00057749847 0 0.00057732294 0.5691506 2181.2738 + 33000 0.00044719326 0 0.00044705733 0.59696179 2142.571 + 34000 0.00060924828 0 0.0006090631 0.61735036 2107.1282 + 35000 0.00077419805 0 0.00077396273 0.63696098 2072.6008 + 36000 0.00055752003 0 0.00055735057 0.65981842 2038.8242 + 37000 0.00031402452 0 0.00031392907 0.69018949 2007.3235 + 38000 0.00034969879 0 0.0003495925 0.72155053 1980.1706 + 39000 0.00041434197 0 0.00041421603 0.74680715 1957.3838 + 40000 0.00037229243 0 0.00037217927 0.76581686 1936.8034 + 41000 0.00031028842 0 0.00031019411 0.78321059 1916.1108 + 42000 0.00026623668 0 0.00026615575 0.80267329 1894.4649 + 43000 0.00020543723 0 0.00020537479 0.82714001 1872.7672 + 44000 0.0001563321 0 0.00015628458 0.85496396 1853.0284 + 45000 0.00014981713 0 0.00014977159 0.87924842 1836.4755 + 46000 0.00015641585 0 0.00015636831 0.89896936 1822.1989 + 47000 0.00016004701 0 0.00015999837 0.91661933 1808.4606 + 48000 0.00017437702 0 0.00017432402 0.93565475 1794.1258 + 49000 0.00018645903 0 0.00018640235 0.95733183 1779.4032 + 50000 0.00018469122 0 0.00018463508 0.96446925 1765.1534 +Loop time of 30.1448 on 4 procs for 50000 steps with 3290 atoms + +Performance: 716540.413 tau/day, 1658.658 timesteps/s +90.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 8.7565 | 12.704 | 16.036 | 89.8 | 42.14 +Neigh | 0.4494 | 0.56436 | 0.66263 | 11.8 | 1.87 +Comm | 9.5962 | 12.989 | 17.006 | 90.8 | 43.09 +Output | 0.00088467 | 0.0011022 | 0.0015811 | 0.9 | 0.00 +Modify | 2.9732 | 3.0944 | 3.2463 | 7.0 | 10.27 +Other | | 0.7918 | | | 2.63 + +Nlocal: 822.500 ave 859 max 785 min +Histogram: 1 0 1 0 0 0 0 0 1 1 +Nghost: 3049.75 ave 3089 max 2999 min +Histogram: 1 0 0 1 0 0 0 0 0 2 +Neighs: 13440.5 ave 14459 max 11964 min +Histogram: 1 0 0 0 0 1 0 0 1 1 + +Total # of neighbors = 53762 +Ave neighs/atom = 16.341033 +Neighbor list builds = 348 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:00:30 diff --git a/examples/multi/log.30Nov20.powerlaw.intel.1 b/examples/multi/log.30Nov20.powerlaw.intel.1 new file mode 100644 index 0000000000..d0ed6e2685 --- /dev/null +++ b/examples/multi/log.30Nov20.powerlaw.intel.1 @@ -0,0 +1,291 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Shear power-law distributed granular particles + +units lj +atom_style sphere +dimension 2 +read_data data.powerlaw +Reading data file ... + triclinic box = (9.9514336 9.9514336 0.0000000) to (331.81396 331.81396 1.0000000) with tilt (0.0000000 0.0000000 0.0000000) + 1 by 1 by 1 MPI processor grid + reading atoms ... + 10000 atoms + reading velocities ... + 10000 velocities + read_data CPU = 0.027 seconds +change_box all triclinic +Changing box ... + triclinic box = (9.9514336 9.9514336 0.0000000) to (331.81396 331.81396 1.0000000) with tilt (0.0000000 0.0000000 0.0000000) + +# multi neighbor and comm for efficiency + +neighbor 1 multi +neigh_modify delay 0 collection/interval 6 1.5 3 10 30 100 200 +comm_modify mode multi vel yes reduce/multi + +# granular potential + +pair_style granular +pair_coeff * * hooke 20.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +# fixes + +fix 1 all nve/sphere +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-4 + +# dump 1 all custom 20000 dump.granular id x y z radius + +thermo_style custom step temp epair etotal press vol pxy +thermo 1000 + +timestep 0.005 + +run 200000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 164.7888 + ghost atom cutoff = 164.7888 + binsize = 82.3944, bins = 4 4 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/newton/tri + stencil: half/multi/2d/tri + bin: multi +Per MPI rank memory allocation (min/avg/max) = 14.77 | 14.77 | 14.77 Mbytes +Step Temp E_pair TotEng Press Volume Pxy + 0 4.9204851e-05 0 4.9199931e-05 0.61204991 103595.49 -0.00083309917 + 1000 0.00038076464 0 0.00038072657 0.58694623 103595.49 -0.0066712806 + 2000 0.00027986478 0 0.00027983679 0.5845274 103595.49 -0.008880933 + 3000 0.00022105227 0 0.00022103017 0.58295464 103595.49 -0.011327442 + 4000 0.00020888366 0 0.00020886277 0.5826542 103595.49 -0.014147424 + 5000 0.00019912663 0 0.00019910672 0.58175837 103595.49 -0.015685634 + 6000 0.0001989441 0 0.00019892421 0.58170841 103595.49 -0.017379973 + 7000 0.00019307783 0 0.00019305852 0.58133913 103595.49 -0.019556709 + 8000 0.00018132444 0 0.00018130631 0.58134077 103595.49 -0.021609399 + 9000 0.00017909088 0 0.00017907297 0.58117179 103595.49 -0.023603514 + 10000 0.00018391928 0 0.00018390089 0.58070675 103595.49 -0.026026784 + 11000 0.00018985439 0 0.00018983541 0.58006086 103595.49 -0.028574238 + 12000 0.00018903569 0 0.00018901678 0.5794232 103595.49 -0.031151884 + 13000 0.00019070382 0 0.00019068475 0.57890243 103595.49 -0.033469404 + 14000 0.00019371625 0 0.00019369688 0.5787389 103595.49 -0.035646526 + 15000 0.00019833475 0 0.00019831492 0.57883166 103595.49 -0.037709788 + 16000 0.0002011729 0 0.00020115278 0.57875606 103595.49 -0.039452453 + 17000 0.00020285197 0 0.00020283169 0.5786311 103595.49 -0.040960671 + 18000 0.00020319174 0 0.00020317142 0.57842387 103595.49 -0.042257072 + 19000 0.00020290253 0 0.00020288224 0.57795042 103595.49 -0.043364149 + 20000 0.00020509848 0 0.00020507797 0.5771478 103595.49 -0.044392259 + 21000 0.00021803258 0 0.00021801078 0.57569003 103595.49 -0.044749043 + 22000 0.00020751217 0 0.00020749141 0.57477071 103595.49 -0.045719593 + 23000 0.00022053275 0 0.0002205107 0.57409228 103595.49 -0.047332146 + 24000 0.00022689646 0 0.00022687377 0.57325004 103595.49 -0.04871759 + 25000 0.00025224804 0 0.00025222282 0.57283712 103595.49 -0.050254871 + 26000 0.00025343198 0 0.00025340664 0.57238659 103595.49 -0.051604284 + 27000 0.00026689801 0 0.00026687132 0.57221042 103595.49 -0.052915257 + 28000 0.00027867954 0 0.00027865167 0.57197974 103595.49 -0.053832129 + 29000 0.00028697929 0 0.00028695059 0.57177264 103595.49 -0.054693121 + 30000 0.00028857612 0 0.00028854727 0.57145453 103595.49 -0.055559611 + 31000 0.00029228405 0 0.00029225482 0.5711044 103595.49 -0.056492699 + 32000 0.00029648627 0 0.00029645663 0.57060211 103595.49 -0.05729896 + 33000 0.00030524162 0 0.00030521109 0.57002519 103595.49 -0.058201322 + 34000 0.00031725644 0 0.00031722472 0.56920654 103595.49 -0.059128438 + 35000 0.00032273791 0 0.00032270564 0.56844677 103595.49 -0.060009671 + 36000 0.00033013013 0 0.00033009712 0.56795943 103595.49 -0.061074282 + 37000 0.00033942153 0 0.00033938759 0.56749208 103595.49 -0.062058531 + 38000 0.00035141528 0 0.00035138014 0.56682741 103595.49 -0.062953956 + 39000 0.00036126777 0 0.00036123164 0.56655193 103595.49 -0.063757684 + 40000 0.00037765934 0 0.00037762157 0.5661991 103595.49 -0.064535541 + 41000 0.00040834365 0 0.00040830281 0.56554085 103595.49 -0.064688281 + 42000 0.00042857233 0 0.00042852948 0.56474014 103595.49 -0.065262664 + 43000 0.00042692021 0 0.00042687752 0.56362013 103595.49 -0.065276794 + 44000 0.00040298912 0 0.00040294882 0.5631005 103595.49 -0.065626396 + 45000 0.00040947381 0 0.00040943286 0.56291946 103595.49 -0.066167734 + 46000 0.00040202686 0 0.00040198666 0.56273846 103595.49 -0.066543782 + 47000 0.00038914356 0 0.00038910465 0.56265937 103595.49 -0.067359923 + 48000 0.00038429737 0 0.00038425894 0.56274908 103595.49 -0.068231096 + 49000 0.00036912968 0 0.00036909277 0.56261623 103595.49 -0.068791569 + 50000 0.00035203094 0 0.00035199574 0.56257856 103595.49 -0.069298217 + 51000 0.00034403223 0 0.00034399783 0.56236537 103595.49 -0.070273225 + 52000 0.00034132431 0 0.00034129018 0.56220555 103595.49 -0.071740344 + 53000 0.000335692 0 0.00033565843 0.56194913 103595.49 -0.072834415 + 54000 0.00033048196 0 0.00033044891 0.56231491 103595.49 -0.073996938 + 55000 0.00032751145 0 0.00032747869 0.56225025 103595.49 -0.07506664 + 56000 0.00032696951 0 0.00032693682 0.56285506 103595.49 -0.076445354 + 57000 0.00033158698 0 0.00033155382 0.56354729 103595.49 -0.077682996 + 58000 0.00034300009 0 0.00034296579 0.56416964 103595.49 -0.078836604 + 59000 0.00034340257 0 0.00034336823 0.56490867 103595.49 -0.079658197 + 60000 0.00034736137 0 0.00034732663 0.56519398 103595.49 -0.080570223 + 61000 0.00034984523 0 0.00034981025 0.5651693 103595.49 -0.081115325 + 62000 0.00034995431 0 0.00034991932 0.56534549 103595.49 -0.081486038 + 63000 0.00033854269 0 0.00033850883 0.56582558 103595.49 -0.081892374 + 64000 0.00032621515 0 0.00032618253 0.5658388 103595.49 -0.082786608 + 65000 0.00031773942 0 0.00031770764 0.56576287 103595.49 -0.083706189 + 66000 0.00031772736 0 0.00031769558 0.56548117 103595.49 -0.084236463 + 67000 0.0003148631 0 0.00031483161 0.56483795 103595.49 -0.084506082 + 68000 0.00030359752 0 0.00030356716 0.56446443 103595.49 -0.084985509 + 69000 0.00030395128 0 0.00030392088 0.56437593 103595.49 -0.085548157 + 70000 0.00032811658 0 0.00032808376 0.56372411 103595.49 -0.085304154 + 71000 0.00035494531 0 0.00035490981 0.56326137 103595.49 -0.085047806 + 72000 0.0003253841 0 0.00032535156 0.56244462 103595.49 -0.085693663 + 73000 0.00032328895 0 0.00032325662 0.5629287 103595.49 -0.086119464 + 74000 0.00032650113 0 0.00032646848 0.56306166 103595.49 -0.087182721 + 75000 0.00034303222 0 0.00034299792 0.56219559 103595.49 -0.086604025 + 76000 0.00033786129 0 0.0003378275 0.56188071 103595.49 -0.086852177 + 77000 0.00033559735 0 0.00033556379 0.5619155 103595.49 -0.08689764 + 78000 0.00032579863 0 0.00032576605 0.56177059 103595.49 -0.087109469 + 79000 0.00031610815 0 0.00031607654 0.56160391 103595.49 -0.087250861 + 80000 0.00031246546 0 0.00031243422 0.56181676 103595.49 -0.087117648 + 81000 0.00029392131 0 0.00029389192 0.56205441 103595.49 -0.087601617 + 82000 0.00029624453 0 0.00029621491 0.56285229 103595.49 -0.08824145 + 83000 0.00030538821 0 0.00030535767 0.5627754 103595.49 -0.088318188 + 84000 0.00029587833 0 0.00029584874 0.56267246 103595.49 -0.08930338 + 85000 0.00030551128 0 0.00030548073 0.56251282 103595.49 -0.0897211 + 86000 0.00030000969 0 0.00029997969 0.56249642 103595.49 -0.089920789 + 87000 0.00030211667 0 0.00030208646 0.56256648 103595.49 -0.090315024 + 88000 0.00030524995 0 0.00030521943 0.5623007 103595.49 -0.090706456 + 89000 0.00031961257 0 0.00031958061 0.56210244 103595.49 -0.090852204 + 90000 0.0003195337 0 0.00031950175 0.56207472 103595.49 -0.090879606 + 91000 0.00033860446 0 0.0003385706 0.56197196 103595.49 -0.090891252 + 92000 0.0003327551 0 0.00033272183 0.56172473 103595.49 -0.090725694 + 93000 0.00032983619 0 0.00032980321 0.5619443 103595.49 -0.090626404 + 94000 0.00034024354 0 0.00034020952 0.56150371 103595.49 -0.090769983 + 95000 0.00033201405 0 0.00033198084 0.56145998 103595.49 -0.09102312 + 96000 0.00032851608 0 0.00032848323 0.56201045 103595.49 -0.09152522 + 97000 0.0003353172 0 0.00033528367 0.56256203 103595.49 -0.092443634 + 98000 0.00033453146 0 0.00033449801 0.5632537 103595.49 -0.093069693 + 99000 0.00034432742 0 0.00034429299 0.56355465 103595.49 -0.093332298 + 100000 0.00035299312 0 0.00035295782 0.56420115 103595.49 -0.093871701 + 101000 0.00042149444 0 0.00042145229 0.56424332 103595.49 -0.094001873 + 102000 0.0004580706 0 0.0004580248 0.56378535 103595.49 -0.093786943 + 103000 0.00046113464 0 0.00046108853 0.56428549 103595.49 -0.093463429 + 104000 0.00047583409 0 0.00047578651 0.5645355 103595.49 -0.093225615 + 105000 0.00048367276 0 0.00048362439 0.56469488 103595.49 -0.092935582 + 106000 0.00046931008 0 0.00046926315 0.56464923 103595.49 -0.09282958 + 107000 0.00046460766 0 0.00046456119 0.56502528 103595.49 -0.093077749 + 108000 0.00046398187 0 0.00046393547 0.56532911 103595.49 -0.09321949 + 109000 0.00047530523 0 0.0004752577 0.56561281 103595.49 -0.093217991 + 110000 0.00048531886 0 0.00048527033 0.56549262 103595.49 -0.092956034 + 111000 0.00049659003 0 0.00049654038 0.56507505 103595.49 -0.092554122 + 112000 0.00050113619 0 0.00050108607 0.56528891 103595.49 -0.092227508 + 113000 0.0005138896 0 0.00051383821 0.56550655 103595.49 -0.092096556 + 114000 0.00052560295 0 0.00052555039 0.56567551 103595.49 -0.09181586 + 115000 0.00054349317 0 0.00054343882 0.56530917 103595.49 -0.090961623 + 116000 0.00056022902 0 0.00056017299 0.56482302 103595.49 -0.090810658 + 117000 0.00055876064 0 0.00055870476 0.56488791 103595.49 -0.090329656 + 118000 0.00056191427 0 0.00056185808 0.56461166 103595.49 -0.090161067 + 119000 0.0005488829 0 0.00054882801 0.56437975 103595.49 -0.090328459 + 120000 0.00054084712 0 0.00054079303 0.564481 103595.49 -0.090602791 + 121000 0.00053717105 0 0.00053711733 0.56481743 103595.49 -0.090309102 + 122000 0.00053834163 0 0.00053828779 0.56385259 103595.49 -0.090433254 + 123000 0.00053319394 0 0.00053314062 0.56335613 103595.49 -0.090723928 + 124000 0.00053127439 0 0.00053122127 0.5631684 103595.49 -0.091178253 + 125000 0.00053624623 0 0.00053619261 0.56387166 103595.49 -0.091701174 + 126000 0.0005253773 0 0.00052532476 0.5639006 103595.49 -0.092033098 + 127000 0.00052459276 0 0.0005245403 0.56361298 103595.49 -0.092219098 + 128000 0.00054030806 0 0.00054025403 0.56307203 103595.49 -0.092196938 + 129000 0.00055474894 0 0.00055469346 0.5622815 103595.49 -0.09178309 + 130000 0.00057391115 0 0.00057385376 0.56244981 103595.49 -0.09170211 + 131000 0.00058650769 0 0.00058644904 0.56195859 103595.49 -0.090649841 + 132000 0.00058529163 0 0.0005852331 0.56162943 103595.49 -0.090167101 + 133000 0.00062544817 0 0.00062538563 0.5594761 103595.49 -0.088989624 + 134000 0.00063457749 0 0.00063451403 0.55917757 103595.49 -0.089702278 + 135000 0.00065371789 0 0.00065365252 0.55885043 103595.49 -0.090030252 + 136000 0.00070050714 0 0.00070043709 0.55854751 103595.49 -0.08960124 + 137000 0.0006750775 0 0.00067501 0.55809563 103595.49 -0.090252473 + 138000 0.00068827043 0 0.0006882016 0.55806674 103595.49 -0.090238994 + 139000 0.00069748073 0 0.00069741098 0.55734587 103595.49 -0.090118549 + 140000 0.00071065284 0 0.00071058177 0.55711669 103595.49 -0.090336074 + 141000 0.00070994204 0 0.00070987104 0.55638115 103595.49 -0.089917062 + 142000 0.00071514386 0 0.00071507235 0.55614391 103595.49 -0.090392071 + 143000 0.00071334667 0 0.00071327533 0.55640687 103595.49 -0.091256718 + 144000 0.00069553102 0 0.00069546147 0.55705702 103595.49 -0.091761396 + 145000 0.00068849503 0 0.00068842618 0.55692035 103595.49 -0.091895738 + 146000 0.00068407816 0 0.00068400975 0.55660026 103595.49 -0.092191588 + 147000 0.00069521557 0 0.00069514605 0.55556456 103595.49 -0.092354739 + 148000 0.00068349281 0 0.00068342446 0.55537498 103595.49 -0.092914636 + 149000 0.00067959644 0 0.00067952848 0.55537695 103595.49 -0.093738463 + 150000 0.00067100566 0 0.00067093856 0.55544851 103595.49 -0.094104003 + 151000 0.00068044722 0 0.00068037917 0.5554655 103595.49 -0.094943239 + 152000 0.00068109012 0 0.00068102201 0.55585405 103595.49 -0.095355111 + 153000 0.00068666181 0 0.00068659314 0.55501583 103595.49 -0.095234652 + 154000 0.00068283406 0 0.00068276578 0.55644996 103595.49 -0.095902623 + 155000 0.00069836346 0 0.00069829363 0.55747472 103595.49 -0.096978444 + 156000 0.00072807264 0 0.00072799984 0.55807332 103595.49 -0.097415305 + 157000 0.00077300609 0 0.00077292879 0.55871196 103595.49 -0.098034508 + 158000 0.00081631408 0 0.00081623245 0.558479 103595.49 -0.09825722 + 159000 0.00079291984 0 0.00079284054 0.55784788 103595.49 -0.097758094 + 160000 0.0008203256 0 0.00082024357 0.55700259 103595.49 -0.097519328 + 161000 0.00081471235 0 0.00081463087 0.556622 103595.49 -0.097787992 + 162000 0.00080692462 0 0.00080684393 0.5566795 103595.49 -0.097210216 + 163000 0.00081149678 0 0.00081141564 0.55596697 103595.49 -0.097517476 + 164000 0.00081577795 0 0.00081569637 0.55569684 103595.49 -0.096908869 + 165000 0.00084604988 0 0.00084596528 0.55492052 103595.49 -0.095481627 + 166000 0.00082198923 0 0.00082190703 0.5552628 103595.49 -0.09477531 + 167000 0.00084903108 0 0.00084894618 0.55477991 103595.49 -0.094758799 + 168000 0.00081613582 0 0.00081605421 0.55508416 103595.49 -0.094804088 + 169000 0.00083341061 0 0.00083332727 0.55476794 103595.49 -0.094519882 + 170000 0.00077835092 0 0.00077827308 0.55516626 103595.49 -0.094843673 + 171000 0.00074843733 0 0.00074836249 0.55417469 103595.49 -0.094731356 + 172000 0.0007425125 0 0.00074243825 0.55431854 103595.49 -0.095174333 + 173000 0.00074144093 0 0.00074136678 0.55429464 103595.49 -0.094982598 + 174000 0.00072375323 0 0.00072368086 0.55421045 103595.49 -0.09489531 + 175000 0.0007270779 0 0.00072700519 0.55413607 103595.49 -0.094197685 + 176000 0.00071114682 0 0.00071107571 0.55342226 103595.49 -0.093083865 + 177000 0.00069325125 0 0.00069318193 0.55441386 103595.49 -0.093289572 + 178000 0.00067686202 0 0.00067679434 0.55504892 103595.49 -0.093512587 + 179000 0.00068326039 0 0.00068319206 0.55519365 103595.49 -0.093974329 + 180000 0.00075070045 0 0.00075062538 0.55415541 103595.49 -0.09327459 + 181000 0.00077670344 0 0.00077662577 0.55328725 103595.49 -0.092373689 + 182000 0.00077422781 0 0.00077415038 0.553131 103595.49 -0.092353979 + 183000 0.00080250542 0 0.00080242517 0.5519122 103595.49 -0.091897169 + 184000 0.00081235214 0 0.00081227091 0.55172769 103595.49 -0.091906209 + 185000 0.00078879443 0 0.00078871555 0.55145488 103595.49 -0.091198506 + 186000 0.00078497746 0 0.00078489896 0.55202944 103595.49 -0.091674987 + 187000 0.00079483049 0 0.000794751 0.55278073 103595.49 -0.092508295 + 188000 0.00079056756 0 0.0007904885 0.55362903 103595.49 -0.092801369 + 189000 0.00079162262 0 0.00079154346 0.55429061 103595.49 -0.092964781 + 190000 0.00078121133 0 0.00078113321 0.55386716 103595.49 -0.092689851 + 191000 0.00076574893 0 0.00076567235 0.5546533 103595.49 -0.093414672 + 192000 0.00076215201 0 0.0007620758 0.55503049 103595.49 -0.093986391 + 193000 0.00075652635 0 0.0007564507 0.55477696 103595.49 -0.094417347 + 194000 0.00075725781 0 0.00075718208 0.55457687 103595.49 -0.094241721 + 195000 0.0007434693 0 0.00074339496 0.55471575 103595.49 -0.094102015 + 196000 0.00073792493 0 0.00073785114 0.55463671 103595.49 -0.094452279 + 197000 0.00074673445 0 0.00074665978 0.55459327 103595.49 -0.09463863 + 198000 0.00072734835 0 0.00072727561 0.55514628 103595.49 -0.094622434 + 199000 0.00071846919 0 0.00071839734 0.55501969 103595.49 -0.094414887 + 200000 0.00072384651 0 0.00072377412 0.55533335 103595.49 -0.094159469 +Loop time of 443.321 on 1 procs for 200000 steps with 10000 atoms + +Performance: 194892.839 tau/day, 451.141 timesteps/s +100.0% CPU use with 1 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 362.28 | 362.28 | 362.28 | 0.0 | 81.72 +Neigh | 1.737 | 1.737 | 1.737 | 0.0 | 0.39 +Comm | 5.0082 | 5.0082 | 5.0082 | 0.0 | 1.13 +Output | 0.01774 | 0.01774 | 0.01774 | 0.0 | 0.00 +Modify | 64.992 | 64.992 | 64.992 | 0.0 | 14.66 +Other | | 9.286 | | | 2.09 + +Nlocal: 10000.0 ave 10000 max 10000 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Nghost: 487.000 ave 487 max 487 min +Histogram: 1 0 0 0 0 0 0 0 0 0 +Neighs: 34427.0 ave 34427 max 34427 min +Histogram: 1 0 0 0 0 0 0 0 0 0 + +Total # of neighbors = 34427 +Ave neighs/atom = 3.4427000 +Neighbor list builds = 244 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:07:23 diff --git a/examples/multi/log.30Nov20.powerlaw.intel.4 b/examples/multi/log.30Nov20.powerlaw.intel.4 new file mode 100644 index 0000000000..109b4582db --- /dev/null +++ b/examples/multi/log.30Nov20.powerlaw.intel.4 @@ -0,0 +1,291 @@ +LAMMPS (24 Dec 2020) +OMP_NUM_THREADS environment is not set. Defaulting to 1 thread. (../comm.cpp:97) + using 1 OpenMP thread(s) per MPI task +# Shear power-law distributed granular particles + +units lj +atom_style sphere +dimension 2 +read_data data.powerlaw +Reading data file ... + triclinic box = (9.9514336 9.9514336 0.0000000) to (331.81396 331.81396 1.0000000) with tilt (0.0000000 0.0000000 0.0000000) + 2 by 2 by 1 MPI processor grid + reading atoms ... + 10000 atoms + reading velocities ... + 10000 velocities + read_data CPU = 0.114 seconds +change_box all triclinic +Changing box ... + triclinic box = (9.9514336 9.9514336 0.0000000) to (331.81396 331.81396 1.0000000) with tilt (0.0000000 0.0000000 0.0000000) + +# multi neighbor and comm for efficiency + +neighbor 1 multi +neigh_modify delay 0 collection/interval 6 1.5 3 10 30 100 200 +comm_modify mode multi vel yes reduce/multi + +# granular potential + +pair_style granular +pair_coeff * * hooke 20.0 0.5 tangential linear_history 1.0 0.5 0.1 damping mass_velocity + +# fixes + +fix 1 all nve/sphere +fix 2 all enforce2d +fix 3 all deform 1 xy erate 1e-4 + +# dump 1 all custom 20000 dump.granular id x y z radius + +thermo_style custom step temp epair etotal press vol pxy +thermo 1000 + +timestep 0.005 + +run 200000 +Neighbor list info ... + update every 1 steps, delay 0 steps, check yes + max neighbors/atom: 2000, page size: 100000 + master list distance cutoff = 164.7888 + ghost atom cutoff = 164.7888 + binsize = 82.3944, bins = 4 4 1 + 1 neighbor lists, perpetual/occasional/extra = 1 0 0 + (1) pair granular, perpetual + attributes: half, newton on, size, history + pair build: half/size/multi/newton/tri + stencil: half/multi/2d/tri + bin: multi +Per MPI rank memory allocation (min/avg/max) = 12.65 | 12.67 | 12.68 Mbytes +Step Temp E_pair TotEng Press Volume Pxy + 0 4.9204851e-05 0 4.9199931e-05 0.61204991 103595.49 -0.00083309917 + 1000 0.00038076464 0 0.00038072657 0.58694623 103595.49 -0.0066712806 + 2000 0.00027986478 0 0.00027983679 0.5845274 103595.49 -0.008880933 + 3000 0.00022105227 0 0.00022103017 0.58295464 103595.49 -0.011327442 + 4000 0.00020888366 0 0.00020886277 0.5826542 103595.49 -0.014147424 + 5000 0.00019912663 0 0.00019910672 0.58175837 103595.49 -0.015685634 + 6000 0.0001989441 0 0.00019892421 0.58170841 103595.49 -0.017379973 + 7000 0.00019307783 0 0.00019305852 0.58133913 103595.49 -0.019556709 + 8000 0.00018132444 0 0.00018130631 0.58134077 103595.49 -0.021609399 + 9000 0.00017909088 0 0.00017907297 0.58117179 103595.49 -0.023603514 + 10000 0.00018391928 0 0.00018390089 0.58070675 103595.49 -0.026026784 + 11000 0.00018985439 0 0.00018983541 0.58006086 103595.49 -0.028574238 + 12000 0.00018903569 0 0.00018901678 0.5794232 103595.49 -0.031151884 + 13000 0.00019070382 0 0.00019068475 0.57890243 103595.49 -0.033469404 + 14000 0.00019371625 0 0.00019369688 0.5787389 103595.49 -0.035646526 + 15000 0.00019833475 0 0.00019831492 0.57883166 103595.49 -0.037709788 + 16000 0.0002011729 0 0.00020115278 0.57875606 103595.49 -0.039452453 + 17000 0.00020285197 0 0.00020283168 0.5786311 103595.49 -0.040960671 + 18000 0.00020319173 0 0.00020317141 0.57842387 103595.49 -0.042257076 + 19000 0.00020290253 0 0.00020288224 0.57795043 103595.49 -0.043364149 + 20000 0.00020509847 0 0.00020507796 0.57714779 103595.49 -0.04439226 + 21000 0.0002180326 0 0.0002180108 0.57569003 103595.49 -0.044749042 + 22000 0.00020751218 0 0.00020749143 0.57477071 103595.49 -0.045719595 + 23000 0.0002205328 0 0.00022051075 0.57409228 103595.49 -0.047332145 + 24000 0.00022689643 0 0.00022687374 0.57325004 103595.49 -0.048717593 + 25000 0.00025224797 0 0.00025222275 0.57283728 103595.49 -0.050255013 + 26000 0.00025343192 0 0.00025340657 0.5723866 103595.49 -0.051604294 + 27000 0.0002668981 0 0.00026687141 0.57221051 103595.49 -0.052915314 + 28000 0.00027867942 0 0.00027865155 0.57197889 103595.49 -0.053831415 + 29000 0.00028697868 0 0.00028694998 0.57177287 103595.49 -0.054693262 + 30000 0.00028857623 0 0.00028854737 0.5714545 103595.49 -0.055559583 + 31000 0.00029228526 0 0.00029225603 0.57110328 103595.49 -0.056491646 + 32000 0.00029648479 0 0.00029645514 0.57060242 103595.49 -0.057299367 + 33000 0.00030524226 0 0.00030521174 0.57003089 103595.49 -0.058207205 + 34000 0.00031725278 0 0.00031722106 0.56920179 103595.49 -0.059123522 + 35000 0.00032273715 0 0.00032270488 0.56844806 103595.49 -0.06001074 + 36000 0.00033013214 0 0.00033009912 0.56795631 103595.49 -0.06107304 + 37000 0.00033942364 0 0.00033938969 0.56749308 103595.49 -0.062060209 + 38000 0.00035140856 0 0.00035137342 0.56682754 103595.49 -0.062954063 + 39000 0.00036125739 0 0.00036122126 0.56654839 103595.49 -0.063755554 + 40000 0.00037765404 0 0.00037761628 0.56619876 103595.49 -0.064535888 + 41000 0.00040833154 0 0.00040829071 0.56554179 103595.49 -0.064688901 + 42000 0.0004285629 0 0.00042852004 0.56474124 103595.49 -0.06526276 + 43000 0.00042691211 0 0.00042686942 0.56362219 103595.49 -0.065275494 + 44000 0.00040296803 0 0.00040292773 0.56310053 103595.49 -0.065625772 + 45000 0.00040933842 0 0.00040929749 0.56291338 103595.49 -0.066164396 + 46000 0.00040202229 0 0.00040198209 0.56273845 103595.49 -0.066541045 + 47000 0.00038914157 0 0.00038910266 0.562658 103595.49 -0.067357923 + 48000 0.00038428678 0 0.00038424835 0.5627468 103595.49 -0.068230972 + 49000 0.00036912501 0 0.0003690881 0.56261857 103595.49 -0.068794933 + 50000 0.00035203987 0 0.00035200467 0.56258099 103595.49 -0.069290362 + 51000 0.00034400774 0 0.00034397334 0.56237066 103595.49 -0.070274303 + 52000 0.00034126666 0 0.00034123253 0.56221436 103595.49 -0.071744779 + 53000 0.00033563205 0 0.00033559849 0.56195218 103595.49 -0.072836324 + 54000 0.0003304406 0 0.00033040756 0.5623187 103595.49 -0.073999087 + 55000 0.00032742828 0 0.00032739553 0.56225383 103595.49 -0.075066978 + 56000 0.00032696921 0 0.00032693651 0.56285643 103595.49 -0.076445225 + 57000 0.0003316388 0 0.00033160564 0.56354513 103595.49 -0.077683955 + 58000 0.00034325202 0 0.0003432177 0.56416895 103595.49 -0.078839054 + 59000 0.0003433584 0 0.00034332406 0.56490343 103595.49 -0.079658776 + 60000 0.00034732721 0 0.00034729247 0.5651932 103595.49 -0.080573609 + 61000 0.00034978913 0 0.00034975415 0.56517379 103595.49 -0.081109788 + 62000 0.00034995232 0 0.00034991733 0.56534537 103595.49 -0.081491908 + 63000 0.00033854315 0 0.00033850929 0.56582246 103595.49 -0.081894953 + 64000 0.0003260452 0 0.00032601259 0.56583259 103595.49 -0.082790811 + 65000 0.00031763096 0 0.0003175992 0.56576947 103595.49 -0.083707224 + 66000 0.00031761371 0 0.00031758194 0.56548785 103595.49 -0.084243042 + 67000 0.00031503681 0 0.0003150053 0.56483862 103595.49 -0.08451056 + 68000 0.0003036386 0 0.00030360824 0.56444755 103595.49 -0.084967521 + 69000 0.00030398979 0 0.00030395939 0.56436362 103595.49 -0.085541879 + 70000 0.0003281569 0 0.00032812409 0.56372598 103595.49 -0.085287975 + 71000 0.00035614631 0 0.0003561107 0.56322133 103595.49 -0.084970215 + 72000 0.00032709207 0 0.00032705936 0.56231837 103595.49 -0.085540239 + 73000 0.00032545048 0 0.00032541793 0.56278947 103595.49 -0.085940822 + 74000 0.00033285331 0 0.00033282002 0.56288405 103595.49 -0.08695227 + 75000 0.00034622589 0 0.00034619127 0.56198219 103595.49 -0.086349357 + 76000 0.00033654825 0 0.0003365146 0.56183659 103595.49 -0.086892729 + 77000 0.00033550364 0 0.00033547009 0.56197292 103595.49 -0.087018641 + 78000 0.00032680247 0 0.00032676979 0.56183307 103595.49 -0.087097072 + 79000 0.00031624495 0 0.00031621333 0.56161689 103595.49 -0.087358849 + 80000 0.0003124879 0 0.00031245665 0.5618608 103595.49 -0.087165611 + 81000 0.00029451552 0 0.00029448606 0.56211081 103595.49 -0.087652479 + 82000 0.00029588468 0 0.00029585509 0.5628096 103595.49 -0.08832193 + 83000 0.00030483225 0 0.00030480177 0.56261673 103595.49 -0.088586937 + 84000 0.00029556003 0 0.00029553047 0.56272654 103595.49 -0.089434209 + 85000 0.00030506369 0 0.00030503319 0.5627918 103595.49 -0.089830152 + 86000 0.00030015302 0 0.00030012301 0.56240656 103595.49 -0.090100219 + 87000 0.00030322942 0 0.0003031991 0.56243997 103595.49 -0.090327187 + 88000 0.00030569181 0 0.00030566124 0.56236256 103595.49 -0.090734148 + 89000 0.00031220625 0 0.00031217503 0.5621542 103595.49 -0.090898044 + 90000 0.00032214966 0 0.00032211744 0.56209534 103595.49 -0.090909986 + 91000 0.00033884101 0 0.00033880712 0.56191673 103595.49 -0.090818046 + 92000 0.00033260559 0 0.00033257233 0.56172194 103595.49 -0.090647169 + 93000 0.00032732547 0 0.00032729274 0.5619652 103595.49 -0.090575176 + 94000 0.00033817734 0 0.00033814352 0.56155436 103595.49 -0.090700379 + 95000 0.00033009649 0 0.00033006348 0.56147407 103595.49 -0.090940641 + 96000 0.00032882782 0 0.00032879494 0.56191577 103595.49 -0.091469188 + 97000 0.00032856078 0 0.00032852793 0.56271585 103595.49 -0.092256803 + 98000 0.00033030749 0 0.00033027446 0.56340097 103595.49 -0.093188128 + 99000 0.00033611507 0 0.00033608146 0.56375754 103595.49 -0.093539699 + 100000 0.00034990568 0 0.00034987069 0.56450225 103595.49 -0.093951624 + 101000 0.00044441478 0 0.00044437034 0.56437908 103595.49 -0.094161976 + 102000 0.00045403284 0 0.00045398743 0.56433013 103595.49 -0.093900071 + 103000 0.00045412317 0 0.00045407776 0.56468095 103595.49 -0.093670567 + 104000 0.00046494637 0 0.00046489988 0.56478442 103595.49 -0.093397211 + 105000 0.00047962271 0 0.00047957475 0.56482329 103595.49 -0.093141318 + 106000 0.00046840864 0 0.0004683618 0.56494359 103595.49 -0.092994704 + 107000 0.00046432422 0 0.00046427779 0.56543377 103595.49 -0.093135897 + 108000 0.0004655443 0 0.00046549774 0.5656898 103595.49 -0.093383926 + 109000 0.0004863785 0 0.00048632986 0.5657434 103595.49 -0.093328929 + 110000 0.00048804324 0 0.00048799443 0.5656147 103595.49 -0.09302382 + 111000 0.00050352097 0 0.00050347062 0.56529279 103595.49 -0.092461373 + 112000 0.00050474509 0 0.00050469461 0.56537494 103595.49 -0.092212501 + 113000 0.0005125299 0 0.00051247865 0.56547326 103595.49 -0.092304578 + 114000 0.00052700168 0 0.00052694898 0.56568076 103595.49 -0.092013613 + 115000 0.00054217865 0 0.00054212444 0.56526328 103595.49 -0.091011537 + 116000 0.00055122699 0 0.00055117186 0.56489606 103595.49 -0.090688925 + 117000 0.00055802701 0 0.00055797121 0.56458767 103595.49 -0.090385903 + 118000 0.00055416633 0 0.00055411091 0.56433528 103595.49 -0.090454192 + 119000 0.00055519395 0 0.00055513843 0.56411926 103595.49 -0.090495063 + 120000 0.0005535194 0 0.00055346405 0.56424847 103595.49 -0.090915789 + 121000 0.00054781097 0 0.00054775619 0.56443756 103595.49 -0.090687173 + 122000 0.00054528815 0 0.00054523362 0.56401103 103595.49 -0.090443168 + 123000 0.0005456223 0 0.00054556773 0.56376875 103595.49 -0.090277114 + 124000 0.00054080131 0 0.00054074723 0.563306 103595.49 -0.091297668 + 125000 0.00054597 0 0.0005459154 0.56387718 103595.49 -0.091522394 + 126000 0.000544669 0 0.00054461453 0.56318185 103595.49 -0.091100523 + 127000 0.00054592361 0 0.00054586902 0.56328758 103595.49 -0.091299714 + 128000 0.00056246325 0 0.000562407 0.56296852 103595.49 -0.091491356 + 129000 0.00057655488 0 0.00057649723 0.56242057 103595.49 -0.091474584 + 130000 0.00060363901 0 0.00060357864 0.56182729 103595.49 -0.091367782 + 131000 0.00060590757 0 0.00060584698 0.56115572 103595.49 -0.090594163 + 132000 0.00061689139 0 0.0006168297 0.56029248 103595.49 -0.089857939 + 133000 0.00063288773 0 0.00063282444 0.55971427 103595.49 -0.08954619 + 134000 0.00064153654 0 0.00064147238 0.55929877 103595.49 -0.089860563 + 135000 0.00065473169 0 0.00065466622 0.5590797 103595.49 -0.089932375 + 136000 0.0006814182 0 0.00068135006 0.55797116 103595.49 -0.08929097 + 137000 0.00068344911 0 0.00068338077 0.55796657 103595.49 -0.089644888 + 138000 0.00071510067 0 0.00071502916 0.55752379 103595.49 -0.089734088 + 139000 0.00074772787 0 0.0007476531 0.55740054 103595.49 -0.089968295 + 140000 0.00072706311 0 0.0007269904 0.55659113 103595.49 -0.090370844 + 141000 0.0007179286 0 0.00071785681 0.55659012 103595.49 -0.089976688 + 142000 0.00072587657 0 0.00072580399 0.55589037 103595.49 -0.090532153 + 143000 0.00074470967 0 0.0007446352 0.55553128 103595.49 -0.091019969 + 144000 0.00071737422 0 0.00071730248 0.55555994 103595.49 -0.090926005 + 145000 0.00070363824 0 0.00070356787 0.55548936 103595.49 -0.0912353 + 146000 0.00069604487 0 0.00069597527 0.55540516 103595.49 -0.091656715 + 147000 0.00070047196 0 0.00070040191 0.55466746 103595.49 -0.092101291 + 148000 0.00069764904 0 0.00069757927 0.55460283 103595.49 -0.092334573 + 149000 0.00068884707 0 0.00068877819 0.55462796 103595.49 -0.0928736 + 150000 0.00067704593 0 0.00067697823 0.55520015 103595.49 -0.093512131 + 151000 0.00067702275 0 0.00067695505 0.55530068 103595.49 -0.094127311 + 152000 0.000690717 0 0.00069064792 0.55432538 103595.49 -0.094248615 + 153000 0.00067758953 0 0.00067752177 0.55460446 103595.49 -0.094839924 + 154000 0.00067748542 0 0.00067741767 0.55532529 103595.49 -0.095832411 + 155000 0.00068723442 0 0.0006871657 0.55637763 103595.49 -0.096838207 + 156000 0.00071590663 0 0.00071583504 0.5569485 103595.49 -0.097686166 + 157000 0.00078378647 0 0.0007837081 0.55755381 103595.49 -0.097968527 + 158000 0.00080144334 0 0.00080136319 0.55741023 103595.49 -0.098119361 + 159000 0.00079183165 0 0.00079175247 0.55756142 103595.49 -0.097925888 + 160000 0.00081212358 0 0.00081204237 0.55669124 103595.49 -0.098171108 + 161000 0.00082903843 0 0.00082895553 0.55608918 103595.49 -0.097827206 + 162000 0.00084257416 0 0.0008424899 0.5560239 103595.49 -0.096775743 + 163000 0.00086279615 0 0.00086270987 0.55550215 103595.49 -0.095981927 + 164000 0.00092139657 0 0.00092130443 0.55395137 103595.49 -0.095215338 + 165000 0.00095519936 0 0.00095510384 0.55376787 103595.49 -0.0945666 + 166000 0.00092201276 0 0.00092192056 0.55373794 103595.49 -0.093531233 + 167000 0.0008525194 0 0.00085243415 0.55375862 103595.49 -0.09389901 + 168000 0.00081977785 0 0.00081969587 0.5536646 103595.49 -0.093829746 + 169000 0.00079692467 0 0.00079684497 0.55416599 103595.49 -0.094433271 + 170000 0.00077787798 0 0.0007778002 0.55416629 103595.49 -0.095043413 + 171000 0.0007651362 0 0.00076505969 0.55418872 103595.49 -0.095212376 + 172000 0.00074631438 0 0.00074623975 0.55403881 103595.49 -0.095463949 + 173000 0.00074431288 0 0.00074423845 0.55415801 103595.49 -0.095319615 + 174000 0.00073924649 0 0.00073917257 0.55373682 103595.49 -0.094724272 + 175000 0.00070973165 0 0.00070966068 0.55393569 103595.49 -0.094201112 + 176000 0.00069820766 0 0.00069813784 0.55341229 103595.49 -0.093530469 + 177000 0.00070922657 0 0.00070915564 0.55282781 103595.49 -0.093282587 + 178000 0.00073688566 0 0.00073681197 0.55223248 103595.49 -0.092190554 + 179000 0.00072455886 0 0.0007244864 0.55244288 103595.49 -0.09182393 + 180000 0.00071894558 0 0.00071887369 0.55281517 103595.49 -0.092177032 + 181000 0.00071752475 0 0.000717453 0.55297293 103595.49 -0.09230934 + 182000 0.00072247421 0 0.00072240196 0.55287294 103595.49 -0.092465908 + 183000 0.00070596821 0 0.00070589761 0.5526242 103595.49 -0.092013313 + 184000 0.00072460909 0 0.00072453663 0.55230817 103595.49 -0.092211243 + 185000 0.00072499917 0 0.00072492667 0.55273387 103595.49 -0.092920761 + 186000 0.00072852698 0 0.00072845413 0.55358929 103595.49 -0.093428623 + 187000 0.00072515668 0 0.00072508417 0.55336733 103595.49 -0.093440126 + 188000 0.00071355728 0 0.00071348593 0.55408468 103595.49 -0.094819333 + 189000 0.00071703212 0 0.00071696042 0.55424355 103595.49 -0.096198144 + 190000 0.00071808849 0 0.00071801668 0.55504118 103595.49 -0.097199842 + 191000 0.00072458142 0 0.00072450896 0.55493515 103595.49 -0.097564772 + 192000 0.00071472504 0 0.00071465357 0.55572657 103595.49 -0.097663072 + 193000 0.00070803966 0 0.00070796886 0.55546116 103595.49 -0.097306162 + 194000 0.00068236077 0 0.00068229254 0.55581155 103595.49 -0.097141594 + 195000 0.00067304613 0 0.00067297882 0.55559507 103595.49 -0.096646489 + 196000 0.00066680808 0 0.0006667414 0.55512029 103595.49 -0.096241456 + 197000 0.00065829161 0 0.00065822578 0.55545375 103595.49 -0.095808778 + 198000 0.0006617611 0 0.00066169492 0.55551074 103595.49 -0.095423531 + 199000 0.00066805655 0 0.00066798975 0.55581298 103595.49 -0.095287337 + 200000 0.00067263902 0 0.00067257175 0.55601669 103595.49 -0.095551006 +Loop time of 145.127 on 4 procs for 200000 steps with 10000 atoms + +Performance: 595339.507 tau/day, 1378.101 timesteps/s +100.0% CPU use with 4 MPI tasks x 1 OpenMP threads + +MPI task timing breakdown: +Section | min time | avg time | max time |%varavg| %total +--------------------------------------------------------------- +Pair | 57.89 | 91.946 | 113.82 | 229.7 | 63.36 +Neigh | 0.34276 | 0.48607 | 0.56708 | 13.1 | 0.33 +Comm | 6.569 | 28.916 | 63.505 | 417.0 | 19.92 +Output | 0.0087178 | 0.011935 | 0.01563 | 2.3 | 0.01 +Modify | 10.432 | 16.495 | 20.378 | 97.7 | 11.37 +Other | | 7.272 | | | 5.01 + +Nlocal: 2500.00 ave 2990 max 1652 min +Histogram: 1 0 0 0 0 1 0 0 0 2 +Nghost: 228.000 ave 254 max 198 min +Histogram: 1 0 1 0 0 0 0 0 0 2 +Neighs: 8611.25 ave 10364 max 5676 min +Histogram: 1 0 0 0 0 1 0 0 0 2 + +Total # of neighbors = 34445 +Ave neighs/atom = 3.4445000 +Neighbor list builds = 241 +Dangerous builds = 0 + +Please see the log.cite file for references relevant to this simulation + +Total wall time: 0:02:25 diff --git a/examples/python/in.fix_python_invoke_neighlist b/examples/python/in.fix_python_invoke_neighlist index af0399ae1f..f45a92c510 100644 --- a/examples/python/in.fix_python_invoke_neighlist +++ b/examples/python/in.fix_python_invoke_neighlist @@ -33,7 +33,7 @@ def post_force_callback(lmp, v): print(pid_prefix, "### POST_FORCE ###", t) #mylist = L.numpy.get_neighlist(0) - idx = L.find_pair_neighlist("lj/cut", request=0) + idx = L.find_pair_neighlist("lj/cut", reqid=0) mylist = L.numpy.get_neighlist(idx) print(pid_prefix, mylist) nlocal = L.extract_global("nlocal") diff --git a/examples/python/py_nve.py b/examples/python/py_nve.py index 9ff7c0978b..740668b850 100644 --- a/examples/python/py_nve.py +++ b/examples/python/py_nve.py @@ -1,7 +1,5 @@ from __future__ import print_function -from lammps import lammps, LAMMPS_INT, LAMMPS_DOUBLE -import ctypes -import traceback +from lammps import lammps import numpy as np class LAMMPSFix(object): @@ -80,36 +78,30 @@ class NVE_Opt(LAMMPSFixMove): self.ntypes = self.lmp.extract_global("ntypes") self.dtv = dt self.dtf = 0.5 * dt * ftm2v - self.mass = self.lmp.numpy.extract_atom("mass") def initial_integrate(self, vflag): - nlocal = self.lmp.extract_global("nlocal") + mass = self.lmp.numpy.extract_atom("mass") atype = self.lmp.numpy.extract_atom("type") x = self.lmp.numpy.extract_atom("x") v = self.lmp.numpy.extract_atom("v") f = self.lmp.numpy.extract_atom("f") dtf = self.dtf dtv = self.dtv - mass = self.mass dtfm = dtf / np.take(mass, atype) - dtfm.reshape((nlocal, 1)) for d in range(x.shape[1]): - v[:,d] += dtfm[:,0] * f[:,d] + v[:,d] += dtfm * f[:,d] x[:,d] += dtv * v[:,d] def final_integrate(self): - nlocal = self.lmp.extract_global("nlocal") mass = self.lmp.numpy.extract_atom("mass") atype = self.lmp.numpy.extract_atom("type") v = self.lmp.numpy.extract_atom("v") f = self.lmp.numpy.extract_atom("f") dtf = self.dtf - mass = self.mass dtfm = dtf / np.take(mass, atype) - dtfm.reshape((nlocal, 1)) for d in range(v.shape[1]): - v[:,d] += dtfm[:,0] * f[:,d] + v[:,d] += dtfm * f[:,d] diff --git a/examples/srd/in.srd.mixture b/examples/srd/in.srd.mixture index ff6e6f5b72..6a0100d800 100644 --- a/examples/srd/in.srd.mixture +++ b/examples/srd/in.srd.mixture @@ -62,7 +62,7 @@ delete_atoms overlap 0.5 small big reset_timestep 0 -neighbor 0.3 bin +neighbor 0.3 multi neigh_modify delay 0 every 1 check yes comm_modify mode multi group big vel yes diff --git a/lib/atc/LammpsInterface.cpp b/lib/atc/LammpsInterface.cpp index 5727af1904..b123331ee7 100644 --- a/lib/atc/LammpsInterface.cpp +++ b/lib/atc/LammpsInterface.cpp @@ -26,6 +26,7 @@ #include "bond.h" // bond potentials #include "comm.h" // #include "fix.h" +#include "utils.h" // ATC includes #include "ATC_Error.h" @@ -47,6 +48,7 @@ using std::pair; using std::string; using std::set; using LAMMPS_NS::bigint; +using LAMMPS_NS::utils::read_lines_from_file; namespace ATC { @@ -236,7 +238,7 @@ std::string LammpsInterface::read_file(std::string filename) const std::stringstream s; bool eof = false; while ( ! eof) { - eof = lammps_->comm->read_lines_from_file(fp,1,MAXLINE,buffer); + eof = read_lines_from_file(fp,1,MAXLINE,buffer,comm_rank(),lammps_->world); s << buffer; } fclose(fp); diff --git a/lib/gpu/geryon/nvd_device.h b/lib/gpu/geryon/nvd_device.h index 87d5faaf48..52b2ed478e 100644 --- a/lib/gpu/geryon/nvd_device.h +++ b/lib/gpu/geryon/nvd_device.h @@ -24,10 +24,6 @@ #ifndef NVD_DEVICE #define NVD_DEVICE -// workaround after GPU package Feb2021 update -// todo: make new neighbor code work with CUDA -#define LAL_USE_OLD_NEIGHBOR - #include #include #include diff --git a/lib/gpu/geryon/nvd_kernel.h b/lib/gpu/geryon/nvd_kernel.h index c31b8cdf9b..798b12e53c 100644 --- a/lib/gpu/geryon/nvd_kernel.h +++ b/lib/gpu/geryon/nvd_kernel.h @@ -108,17 +108,14 @@ class UCL_Program { std::cerr << log << std::endl << "----------------------------------------------------------\n\n"; #endif - if (foutput != NULL) { - fprintf(foutput,"\n\n"); - fprintf(foutput, - "----------------------------------------------------------\n"); - fprintf(foutput," UCL Error: Error compiling PTX Program...\n"); - fprintf(foutput, - "----------------------------------------------------------\n"); - fprintf(foutput,"%s\n",log); - fprintf(foutput, - "----------------------------------------------------------\n"); - fprintf(foutput,"\n\n"); + if (foutput != nullptr) { + fprintf(foutput,"\n\n"); + fprintf(foutput, "----------------------------------------------------------\n"); + fprintf(foutput, " UCL Error: Error compiling PTX Program...\n"); + fprintf(foutput, "----------------------------------------------------------\n"); + fprintf(foutput, "%s\n",log->c_str()); + fprintf(foutput, "----------------------------------------------------------\n"); + fprintf(foutput,"\n\n"); } return UCL_COMPILE_ERROR; } diff --git a/lib/gpu/geryon/ocl_device.h b/lib/gpu/geryon/ocl_device.h index 4e9e42a3cf..a8e5020f00 100644 --- a/lib/gpu/geryon/ocl_device.h +++ b/lib/gpu/geryon/ocl_device.h @@ -29,7 +29,7 @@ #include #ifndef CL_TARGET_OPENCL_VERSION -#define CL_TARGET_OPENCL_VERSION 210 +#define CL_TARGET_OPENCL_VERSION 300 #endif #ifdef __APPLE__ diff --git a/lib/gpu/geryon/ocl_macros.h b/lib/gpu/geryon/ocl_macros.h index 0e9ce78389..5e5a190ede 100644 --- a/lib/gpu/geryon/ocl_macros.h +++ b/lib/gpu/geryon/ocl_macros.h @@ -5,7 +5,7 @@ #include #ifndef CL_TARGET_OPENCL_VERSION -#define CL_TARGET_OPENCL_VERSION 210 +#define CL_TARGET_OPENCL_VERSION 300 #endif #ifdef __APPLE__ diff --git a/lib/gpu/lal_device.cpp b/lib/gpu/lal_device.cpp index b42aa8e21d..e2b5b9cdb5 100644 --- a/lib/gpu/lal_device.cpp +++ b/lib/gpu/lal_device.cpp @@ -18,6 +18,7 @@ #include #include #include +#include #if (LAL_USE_OMP == 1) #include #endif @@ -777,6 +778,7 @@ void DeviceT::output_times(UCL_Timer &time_pair, Answer &ans, #ifdef USE_OPENCL // Workaround for timing issue on Intel OpenCL if (times[3] > 80e6) times[3]=0.0; + if (times[5] > 80e6) times[5]=0.0; #endif if (replica_me()==0) @@ -1025,6 +1027,22 @@ Device global_device; } using namespace LAMMPS_AL; + +bool lmp_has_gpu_device() +{ + UCL_Device gpu; + return (gpu.num_platforms() > 0); +} + +std::string lmp_gpu_device_info() +{ + std::ostringstream out; + UCL_Device gpu; + if (gpu.num_platforms() > 0) + gpu.print_all(out); + return out.str(); +} + int lmp_init_device(MPI_Comm world, MPI_Comm replica, const int ngpu, const int first_gpu_id, const int gpu_mode, const double particle_split, const int t_per_atom, diff --git a/lib/gpu/lal_eam.cu b/lib/gpu/lal_eam.cu index 3955f3cc8a..0003f76716 100644 --- a/lib/gpu/lal_eam.cu +++ b/lib/gpu/lal_eam.cu @@ -225,7 +225,7 @@ __kernel void k_energy(const __global numtyp4 *restrict x_, const numtyp rdr, const numtyp rdrho, const numtyp rhomax, const int nrho, const int nr, const int t_per_atom) { - int tid, ii, offset, i, itype; + int tid, ii, offset, i, itype, tfrho; atom_info(t_per_atom,ii,tid,offset); int n_stride; @@ -242,6 +242,7 @@ __kernel void k_energy(const __global numtyp4 *restrict x_, numtyp4 ix; fetch4(ix,i,pos_tex); //x_[i]; itype=ix.w; + tfrho=type2frho[itype]; for ( ; nbor +namespace LAMMPS_AL { +#define LJSMOOTHT LJSMOOTH + +extern Device device; + +template +LJSMOOTHT::LJSMOOTH() : BaseAtomic(), _allocated(false) { +} + +template +LJSMOOTHT::~LJSMOOTH() { + clear(); +} + +template +int LJSMOOTHT::bytes_per_atom(const int max_nbors) const { + return this->bytes_per_atom_atomic(max_nbors); +} + +template +int LJSMOOTHT::init(const int ntypes, + double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, + double *host_special_lj, const int nlocal, + const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *_screen, + double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, double **host_ljsw3, + double **host_ljsw4, + double **cut_inner, double **cut_inner_sq) { + const int max_shared_types=this->device->max_shared_types(); + + int onetype=0; + #ifdef USE_OPENCL + if (maxspecial==0) + for (int i=1; i0) { + if (onetype>0) + onetype=-1; + else if (onetype==0) + onetype=i*max_shared_types+j; + } + if (onetype<0) onetype=0; + #endif + + int success; + success=this->init_atomic(nlocal,nall,max_nbors,maxspecial,cell_size,gpu_split, + _screen,lj_smooth,"k_lj_smooth",onetype); + if (success!=0) + return success; + + // If atom type constants fit in shared memory use fast kernel + int lj_types=ntypes; + shared_types=false; + if (lj_types<=max_shared_types && this->_block_size>=max_shared_types) { + lj_types=max_shared_types; + shared_types=true; + } + _lj_types=lj_types; + + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(lj_types*lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; iucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj1,host_write,host_lj1,host_lj2, + host_cutsq, cut_inner_sq); + + lj3.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,lj3,host_write,host_lj3,host_lj4, + host_offset); + + ljsw.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack4(ntypes,lj_types,ljsw,host_write,host_ljsw1,host_ljsw2, + host_ljsw3,host_ljsw4); + + ljsw0.alloc(lj_types*lj_types,*(this->ucl_device),UCL_READ_ONLY); + this->atom->type_pack2(ntypes,lj_types,ljsw0,host_write,host_ljsw0,cut_inner); + + UCL_H_Vec dview; + sp_lj.alloc(4,*(this->ucl_device),UCL_READ_ONLY); + dview.view(host_special_lj,4,*(this->ucl_device)); + ucl_copy(sp_lj,dview,false); + + _allocated=true; + this->_max_bytes=lj1.row_bytes()+lj3.row_bytes()+ljsw.row_bytes()+ljsw0.row_bytes()+sp_lj.row_bytes(); + return 0; +} + +template +void LJSMOOTHT::reinit(const int ntypes, double **host_cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, + double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, double **host_ljsw3, + double **host_ljsw4, + double **cut_inner, double **cut_inner_sq) { + // Allocate a host write buffer for data initialization + UCL_H_Vec host_write(_lj_types*_lj_types*32,*(this->ucl_device), + UCL_WRITE_ONLY); + + for (int i=0; i<_lj_types*_lj_types; i++) + host_write[i]=0.0; + + this->atom->type_pack4(ntypes,_lj_types,lj1,host_write,host_lj1,host_lj2, + host_cutsq,cut_inner_sq); + this->atom->type_pack4(ntypes,_lj_types,lj3,host_write,host_lj3,host_lj4, + host_offset); + this->atom->type_pack4(ntypes,_lj_types,ljsw,host_write,host_ljsw1,host_ljsw2, + host_ljsw3,host_ljsw4); + this->atom->type_pack2(ntypes,_lj_types,ljsw0,host_write,host_ljsw0,cut_inner); +} + +template +void LJSMOOTHT::clear() { + if (!_allocated) + return; + _allocated=false; + + lj1.clear(); + lj3.clear(); + ljsw.clear(); + ljsw0.clear(); + sp_lj.clear(); + this->clear_atomic(); +} + +template +double LJSMOOTHT::host_memory_usage() const { + return this->host_memory_usage_atomic()+sizeof(LJSMOOTH); +} + +// --------------------------------------------------------------------------- +// Calculate energies, forces, and torques +// --------------------------------------------------------------------------- +template +int LJSMOOTHT::loop(const int eflag, const int vflag) { + // Compute the block size and grid size to keep all cores busy + const int BX=this->block_size(); + + int GX=static_cast(ceil(static_cast(this->ans->inum())/ + (BX/this->_threads_per_atom))); + + int ainum=this->ans->inum(); + int nbor_pitch=this->nbor->nbor_pitch(); + this->time_pair.start(); + if (shared_types) { + this->k_pair_sel->set_size(GX,BX); + this->k_pair_sel->run(&this->atom->x, &lj1, &lj3, &ljsw, &ljsw0, &sp_lj, + &this->nbor->dev_nbor, &this->_nbor_data->begin(), + &this->ans->force, &this->ans->engv, &eflag, + &vflag, &ainum, &nbor_pitch, + &this->_threads_per_atom); + } else { + this->k_pair.set_size(GX,BX); + this->k_pair.run(&this->atom->x, &lj1, &lj3, &ljsw, &ljsw0, &_lj_types, &sp_lj, + &this->nbor->dev_nbor, &this->_nbor_data->begin(), + &this->ans->force, &this->ans->engv, &eflag, &vflag, + &ainum, &nbor_pitch, &this->_threads_per_atom); + } + this->time_pair.stop(); + return GX; +} + +template class LJSMOOTH; +} diff --git a/lib/gpu/lal_lj_smooth.cu b/lib/gpu/lal_lj_smooth.cu new file mode 100644 index 0000000000..d4a99ed3a7 --- /dev/null +++ b/lib/gpu/lal_lj_smooth.cu @@ -0,0 +1,259 @@ +// ************************************************************************** +// lj_smooth.cu +// ------------------- +// Gurgen Melikyan (HSE University) +// +// Device code for acceleration of the lj/smooth pair style +// +// __________________________________________________________________________ +// This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) +// __________________________________________________________________________ +// +// begin : +// email : gkmeliyan@edu.hse.ru +// *************************************************************************** + +#if defined(NV_KERNEL) || defined(USE_HIP) +#include "lal_aux_fun1.h" +#ifndef _DOUBLE_DOUBLE +_texture( pos_tex,float4); +#else +_texture_2d( pos_tex,int4); +#endif +#else +#define pos_tex x_ +#endif + +__kernel void k_lj_smooth(const __global numtyp4 *restrict x_, + const __global numtyp4 *restrict lj1, + const __global numtyp4 *restrict lj3, + const __global numtyp4 *restrict ljsw, + const __global numtyp2 *restrict ljsw0, + const int lj_types, + const __global numtyp *restrict sp_lj, + const __global int * dev_nbor, + const __global int * dev_packed, + __global acctyp4 *restrict ans, + __global acctyp *restrict engv, + const int eflag, const int vflag, const int inum, + const int nbor_pitch, const int t_per_atom) { + int tid, ii, offset; + atom_info(t_per_atom,ii,tid,offset); + + int n_stride; + local_allocate_store_pair(); + + acctyp4 f; + f.x=(acctyp)0; f.y=(acctyp)0; f.z=(acctyp)0; + acctyp energy, virial[6]; + if (EVFLAG) { + energy=(acctyp)0; + for (int i=0; i<6; i++) virial[i]=(acctyp)0; + } + + if (ii +class LJSMOOTH : public BaseAtomic { + public: + LJSMOOTH(); + ~LJSMOOTH(); + + /// Clear any previous data and set up for a new LAMMPS run + /** \param max_nbors initial number of rows in the neighbor matrix + * \param cell_size cutoff + skin + * \param gpu_split fraction of particles handled by device + * + * Returns: + * - 0 if successful + * - -1 if fix gpu not found + * - -3 if there is an out of memory error + * - -4 if the GPU library was not compiled for GPU + * - -5 Double precision is not supported on card **/ + int init(const int ntypes, double **host_cutsq, + double **host_lj1, double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, double *host_special_lj, + const int nlocal, const int nall, const int max_nbors, + const int maxspecial, const double cell_size, + const double gpu_split, FILE *screen, + double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, + double **host_ljsw3, double **host_ljsw4, + double **cut_inner, double **cut_inner_sq); + + /// Send updated coeffs from host to device (to be compatible with fix adapt) + void reinit(const int ntypes, double **host_cutsq, + double **host_lj1, double **host_lj2, double **host_lj3, + double **host_lj4, double **host_offset, + double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, + double **host_ljsw3, double **host_ljsw4, + double **cut_inner, double **cut_inner_sq); + + /// Clear all host and device data + /** \note This is called at the beginning of the init() routine **/ + void clear(); + + /// Returns memory usage on device per atom + int bytes_per_atom(const int max_nbors) const; + + /// Total host memory used by library for pair style + double host_memory_usage() const; + + // --------------------------- TYPE DATA -------------------------- + + /// lj1.x = lj1, lj1.y = lj2, lj1.z = cutsq, lj1.w = cut_inner_sq + UCL_D_Vec lj1; + /// lj3.x = lj3, lj3.y = lj4, lj3.z = offset + UCL_D_Vec lj3; + /// ljsw.x = ljsw1, ljsw.y = ljsw2, ljsw.z = ljsw3, ljsw.w = ljsw4 + UCL_D_Vec ljsw; + /// ljsw0.x = ljsw0 ljsw0.y = cut_inner + UCL_D_Vec ljsw0; + /// Special LJ values + UCL_D_Vec sp_lj; + + /// If atom type constants fit in shared memory, use fast kernels + bool shared_types; + + /// Number of atom types + int _lj_types; + + private: + bool _allocated; + int loop(const int _eflag, const int _vflag); +}; + +} + +#endif diff --git a/lib/gpu/lal_lj_smooth_ext.cpp b/lib/gpu/lal_lj_smooth_ext.cpp new file mode 100644 index 0000000000..48dad74071 --- /dev/null +++ b/lib/gpu/lal_lj_smooth_ext.cpp @@ -0,0 +1,144 @@ +/*************************************************************************** + lj_smooth_ext.cpp + ------------------- + Gurgen Melikyan (HSE University) + + Functions for LAMMPS access to lj/smooth acceleration routines. + + __________________________________________________________________________ + This file is part of the LAMMPS Accelerator Library (LAMMPS_AL) + __________________________________________________________________________ + + begin : + email : gkmeliyan@edu.hse.ru + ***************************************************************************/ + +#include +#include +#include + +#include "lal_lj_smooth.h" + +using namespace std; +using namespace LAMMPS_AL; + +static LJSMOOTH LJSMTMF; + +// --------------------------------------------------------------------------- +// Allocate memory on host and device and copy constants to device +// --------------------------------------------------------------------------- +int ljsmt_gpu_init(const int ntypes, double **cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **offset, double *special_lj, const int inum, + const int nall, const int max_nbors, const int maxspecial, + const double cell_size, int &gpu_mode, FILE *screen, + double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, double **host_ljsw3, + double **host_ljsw4, double **cut_inner, double **cut_inner_sq) { + LJSMTMF.clear(); + gpu_mode=LJSMTMF.device->gpu_mode(); + double gpu_split=LJSMTMF.device->particle_split(); + int first_gpu=LJSMTMF.device->first_device(); + int last_gpu=LJSMTMF.device->last_device(); + int world_me=LJSMTMF.device->world_me(); + int gpu_rank=LJSMTMF.device->gpu_rank(); + int procs_per_gpu=LJSMTMF.device->procs_per_gpu(); + + LJSMTMF.device->init_message(screen,"lj/smooth",first_gpu,last_gpu); + + bool message=false; + if (LJSMTMF.device->replica_me()==0 && screen) + message=true; + + if (message) { + fprintf(screen,"Initializing Device and compiling on process 0..."); + fflush(screen); + } + + int init_ok=0; + if (world_me==0) + init_ok=LJSMTMF.init(ntypes, cutsq, host_lj1, host_lj2, host_lj3, + host_lj4, offset, special_lj, inum, nall, max_nbors, + maxspecial, cell_size, gpu_split, screen, + host_ljsw0, host_ljsw1, host_ljsw2, host_ljsw3, host_ljsw4, cut_inner, cut_inner_sq); + + LJSMTMF.device->world_barrier(); + if (message) + fprintf(screen,"Done.\n"); + + for (int i=0; igpu_barrier(); + if (message) + fprintf(screen,"Done.\n"); + } + if (message) + fprintf(screen,"\n"); + + if (init_ok==0) + LJSMTMF.estimate_gpu_overhead(); + return init_ok; +} + +// --------------------------------------------------------------------------- +// Copy updated coeffs from host to device +// --------------------------------------------------------------------------- +void ljsmt_gpu_reinit(const int ntypes, double **cutsq, double **host_lj1, + double **host_lj2, double **host_lj3, double **host_lj4, + double **offset, double **host_ljsw0, double **host_ljsw1, double **host_ljsw2, double **host_ljsw3, + double **host_ljsw4, double **cut_inner, double **cut_inner_sq) { + int world_me=LJSMTMF.device->world_me(); + int gpu_rank=LJSMTMF.device->gpu_rank(); + int procs_per_gpu=LJSMTMF.device->procs_per_gpu(); + + if (world_me==0) + LJSMTMF.reinit(ntypes, cutsq, host_lj1, host_lj2, host_lj3, host_lj4, offset, host_ljsw0, host_ljsw1, host_ljsw2, host_ljsw3, host_ljsw4, cut_inner, cut_inner_sq); + LJSMTMF.device->world_barrier(); + + for (int i=0; igpu_barrier(); + } +} + +void ljsmt_gpu_clear() { + LJSMTMF.clear(); +} + +int ** ljsmt_gpu_compute_n(const int ago, const int inum_full, + const int nall, double **host_x, int *host_type, + double *sublo, double *subhi, tagint *tag, int **nspecial, + tagint **special, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + int **ilist, int **jnum, const double cpu_time, + bool &success) { + return LJSMTMF.compute(ago, inum_full, nall, host_x, host_type, sublo, + subhi, tag, nspecial, special, eflag, vflag, eatom, + vatom, host_start, ilist, jnum, cpu_time, success); +} + +void ljsmt_gpu_compute(const int ago, const int inum_full, const int nall, + double **host_x, int *host_type, int *ilist, int *numj, + int **firstneigh, const bool eflag, const bool vflag, + const bool eatom, const bool vatom, int &host_start, + const double cpu_time, bool &success) { + LJSMTMF.compute(ago,inum_full,nall,host_x,host_type,ilist,numj, + firstneigh,eflag,vflag,eatom,vatom,host_start,cpu_time,success); +} + +double ljsmt_gpu_bytes() { + return LJSMTMF.host_memory_usage(); +} diff --git a/lib/gpu/lal_neighbor_gpu.cu b/lib/gpu/lal_neighbor_gpu.cu index b6db97f68a..62c93e6cf1 100644 --- a/lib/gpu/lal_neighbor_gpu.cu +++ b/lib/gpu/lal_neighbor_gpu.cu @@ -115,7 +115,7 @@ __kernel void kernel_calc_cell_counts(const unsigned *restrict cell_id, #define tagint int #endif #ifdef LAMMPS_BIGBIG -#define tagint long long int +#define tagint long #endif #ifdef LAMMPS_SMALLSMALL #define tagint int diff --git a/lib/kokkos/CHANGELOG.md b/lib/kokkos/CHANGELOG.md index c759181aa2..3ce38c37d8 100644 --- a/lib/kokkos/CHANGELOG.md +++ b/lib/kokkos/CHANGELOG.md @@ -1,5 +1,168 @@ # Change Log +## [3.4.00](https://github.com/kokkos/kokkos/tree/3.4.00) (2021-04-25) +[Full Changelog](https://github.com/kokkos/kokkos/compare/3.3.01...3.4.00) + +**Highlights:** +- SYCL Backend Almost Feature Complete +- OpenMPTarget Backend Almost Feature Complete +- Performance Improvements for HIP backend +- Require CMake 3.16 or newer +- Tool Callback Interface Enhancements +- cmath wrapper functions available now in Kokkos::Experimental + +**Features:** +- Implement parallel_scan with ThreadVectorRange and Reducer [\#3861](https://github.com/kokkos/kokkos/pull/3861) +- Implement SYCL Random [\#3849](https://github.com/kokkos/kokkos/pull/3849) +- OpenMPTarget: Adding Implementation for nested reducers [\#3845](https://github.com/kokkos/kokkos/pull/3845) +- Implement UniqueToken for SYCL [\#3833](https://github.com/kokkos/kokkos/pull/3833) +- OpenMPTarget: UniqueToken::Global implementation [\#3823](https://github.com/kokkos/kokkos/pull/3823) +- DualView sync's on ExecutionSpaces [\#3822](https://github.com/kokkos/kokkos/pull/3822) +- SYCL outer TeamPolicy parallel_reduce [\#3818](https://github.com/kokkos/kokkos/pull/3818) +- SYCL TeamPolicy::team_scan [\#3815](https://github.com/kokkos/kokkos/pull/3815) +- SYCL MDRangePolicy parallel_reduce [\#3801](https://github.com/kokkos/kokkos/pull/3801) +- Enable use of execution space instances in ScatterView [\#3786](https://github.com/kokkos/kokkos/pull/3786) +- SYCL TeamPolicy nested parallel_reduce [\#3783](https://github.com/kokkos/kokkos/pull/3783) +- OpenMPTarget: MDRange with TagType for parallel_for [\#3781](https://github.com/kokkos/kokkos/pull/3781) +- Adding OpenMPTarget parallel_scan [\#3655](https://github.com/kokkos/kokkos/pull/3655) +- SYCL basic TeamPolicy [\#3654](https://github.com/kokkos/kokkos/pull/3654) +- OpenMPTarget: scratch memory implementation [\#3611](https://github.com/kokkos/kokkos/pull/3611) + +**Implemented enhancements Backends and Archs:** +- SYCL choose a specific GPU [\#3918](https://github.com/kokkos/kokkos/pull/3918) +- [HIP] Lock access to scratch memory when using Teams [\#3916](https://github.com/kokkos/kokkos/pull/3916) +- [HIP] fix multithreaded access to get_next_driver [\#3908](https://github.com/kokkos/kokkos/pull/3908) +- Forward declare HIPHostPinnedSpace and SYCLSharedUSMSpace [\#3902](https://github.com/kokkos/kokkos/pull/3902) +- Let SYCL USMObjectMem use SharedAllocationRecord [\#3898](https://github.com/kokkos/kokkos/pull/3898) +- Implement clock_tic for SYCL [\#3893](https://github.com/kokkos/kokkos/pull/3893) +- Don't use a static variable in HIPInternal::scratch_space [\#3866](https://github.com/kokkos/kokkos/pull/3866)(https://github.com/kokkos/kokkos/pull/3866) +- Reuse memory for SYCL parallel_reduce [\#3873](https://github.com/kokkos/kokkos/pull/3873) +- Update SYCL compiler in CI [\#3826](https://github.com/kokkos/kokkos/pull/3826) +- Introduce HostSharedPtr to manage m_space_instance for Cuda/HIP/SYCL [\#3824](https://github.com/kokkos/kokkos/pull/3824) +- [HIP] Use shuffle for range reduction [\#3811](https://github.com/kokkos/kokkos/pull/3811) +- OpenMPTarget: Changes to the hierarchical parallelism [\#3808](https://github.com/kokkos/kokkos/pull/3808) +- Remove ExtendedReferenceWrapper for SYCL parallel_reduce [\#3802](https://github.com/kokkos/kokkos/pull/3802) +- Eliminate sycl_indirect_launch [\#3777](https://github.com/kokkos/kokkos/pull/3777) +- OpenMPTarget: scratch implementation for parallel_reduce [\#3776](https://github.com/kokkos/kokkos/pull/3776) +- Allow initializing SYCL execution space from sycl::queue and SYCL::impl_static_fence [\#3767](https://github.com/kokkos/kokkos/pull/3767) +- SYCL TeamPolicy scratch memory alternative [\#3763](https://github.com/kokkos/kokkos/pull/3763) +- Alternative implementation for SYCL TeamPolicy [\#3759](https://github.com/kokkos/kokkos/pull/3759) +- Unify handling of synchronous errors in SYCL [\#3754](https://github.com/kokkos/kokkos/pull/3754) +- core/Cuda: Half_t updates for cgsolve [\#3746](https://github.com/kokkos/kokkos/pull/3746) +- Unify HIPParallelLaunch structures [\#3733](https://github.com/kokkos/kokkos/pull/3733) +- Improve performance for SYCL parallel_reduce [\#3732](https://github.com/kokkos/kokkos/pull/3732) +- Use consistent types in Kokkos_OpenMPTarget_Parallel.hpp [\#3703](https://github.com/kokkos/kokkos/pull/3703) +- Implement non-blocking kernel launches for HIP backend [\#3697](https://github.com/kokkos/kokkos/pull/3697) +- Change SYCLInternal::m_queue std::unique_ptr -> std::optional [\#3677](https://github.com/kokkos/kokkos/pull/3677) +- Use alternative SYCL parallel_reduce implementation [\#3671](https://github.com/kokkos/kokkos/pull/3671) +- Use runtime values in KokkosExp_MDRangePolicy.hpp [\#3626](https://github.com/kokkos/kokkos/pull/3626) +- Clean up AnalyzePolicy [\#3564](https://github.com/kokkos/kokkos/pull/3564) +- Changes for indirect launch of SYCL parallel reduce [\#3511](https://github.com/kokkos/kokkos/pull/3511) + +**Implemented enhancements BuildSystem:** +- Also require C++14 when building gtest [\#3912](https://github.com/kokkos/kokkos/pull/3912) +- Fix compiling SYCL with OpenMP [\#3874](https://github.com/kokkos/kokkos/pull/3874) +- Require C++17 for SYCL (at configuration time) [\#3869](https://github.com/kokkos/kokkos/pull/3869) +- Add COMPILE_DEFINITIONS argument to kokkos_create_imported_tpl [\#3862](https://github.com/kokkos/kokkos/pull/3862) +- Do not pass arch flags to the linker with no rdc [\#3846](https://github.com/kokkos/kokkos/pull/3846) +- Try compiling C++14 check with C++14 support and print error message [\#3843](https://github.com/kokkos/kokkos/pull/3843) +- Enable HIP with Cray Clang [\#3842](https://github.com/kokkos/kokkos/pull/3842) +- Add an option to disable header self containment tests [\#3834](https://github.com/kokkos/kokkos/pull/3834) +- CMake check for C++14 [\#3809](https://github.com/kokkos/kokkos/pull/3809) +- Prefer -std=* over --std=* [\#3779](https://github.com/kokkos/kokkos/pull/3779) +- Kokkos launch compiler updates [\#3778](https://github.com/kokkos/kokkos/pull/3778) +- Updated comments and enabled no-op for kokkos_launch_compiler [\#3774](https://github.com/kokkos/kokkos/pull/3774) +- Apple's Clang not correctly recognised [\#3772](https://github.com/kokkos/kokkos/pull/3772) +- kokkos_launch_compiler + CUDA auto-detect arch [\#3770](https://github.com/kokkos/kokkos/pull/3770) +- Add Spack test support for Kokkos [\#3753](https://github.com/kokkos/kokkos/pull/3753) +- Split SYCL tests for aot compilation [\#3741](https://github.com/kokkos/kokkos/pull/3741) +- Use consistent OpenMP flag for IntelClang [\#3735](https://github.com/kokkos/kokkos/pull/3735) +- Add support for -Wno-deprecated-gpu-targets [\#3722](https://github.com/kokkos/kokkos/pull/3722) +- Add configuration to target CUDA compute capability 8.6 [\#3713](https://github.com/kokkos/kokkos/pull/3713) +- Added VERSION and SOVERSION to KOKKOS_INTERNAL_ADD_LIBRARY [\#3706](https://github.com/kokkos/kokkos/pull/3706) +- Add fast-math to known NVCC flags [\#3699](https://github.com/kokkos/kokkos/pull/3699) +- Add MI-100 arch string [\#3698](https://github.com/kokkos/kokkos/pull/3698) +- Require CMake >=3.16 [\#3679](https://github.com/kokkos/kokkos/pull/3679) +- KokkosCI.cmake, KokkosCTest.cmake.in, CTestConfig.cmake.in + CI updates [\#2844](https://github.com/kokkos/kokkos/pull/2844) + +**Implemented enhancements Tools:** +- Improve readability of the callback invocation in profiling [\#3860](https://github.com/kokkos/kokkos/pull/3860) +- V1.1 Tools Interface: incremental, action-based [\#3812](https://github.com/kokkos/kokkos/pull/3812) +- Enable launch latency simulations [\#3721](https://github.com/kokkos/kokkos/pull/3721) +- Added metadata callback to tools interface [\#3711](https://github.com/kokkos/kokkos/pull/3711) +- MDRange Tile Size Tuning [\#3688](https://github.com/kokkos/kokkos/pull/3688) +- Added support for command-line args for kokkos-tools [\#3627](https://github.com/kokkos/kokkos/pull/3627) +- Query max tile sizes for an MDRangePolicy, and set tile sizes on an existing policy [\#3481](https://github.com/kokkos/kokkos/pull/3481) + +**Implemented enhancements Other:** +- Try detecting ndevices in get_gpu [\#3921](https://github.com/kokkos/kokkos/pull/3921) +- Use strcmp to compare names() [\#3909](https://github.com/kokkos/kokkos/pull/3909) +- Add execution space arguments for constructor overloads that might allocate a new underlying View [\#3904](https://github.com/kokkos/kokkos/pull/3904) +- Prefix labels in internal use of kokkos_malloc [\#3891](https://github.com/kokkos/kokkos/pull/3891) +- Prefix labels for internal uses of SharedAllocationRecord [\#3890](https://github.com/kokkos/kokkos/pull/3890) +- Add missing hypot math function [\#3880](https://github.com/kokkos/kokkos/pull/3880) +- Unify algorithm unit tests to avoid code duplication [\#3851](https://github.com/kokkos/kokkos/pull/3851) +- DualView.template view() better matches for Devices in UVMSpace cases [\#3857](https://github.com/kokkos/kokkos/pull/3857) +- More extensive disentangling of Policy Traits [\#3829](https://github.com/kokkos/kokkos/pull/3829) +- Replaced nanosleep and sched_yield with STL routines [\#3825](https://github.com/kokkos/kokkos/pull/3825) +- Constructing Atomic Subviews [\#3810](https://github.com/kokkos/kokkos/pull/3810) +- Metadata Declaration in Core [\#3729](https://github.com/kokkos/kokkos/pull/3729) +- Allow using tagged final functor in parallel_reduce [\#3714](https://github.com/kokkos/kokkos/pull/3714) +- Major duplicate code removal in SharedAllocationRecord specializations [\#3658](https://github.com/kokkos/kokkos/pull/3658) + +**Fixed bugs:** +- Provide forward declarations in Kokkos_ViewLayoutTiled.hpp for XL [\#3911](https://github.com/kokkos/kokkos/pull/3911) +- Fixup absolute value of floating points in Kokkos complex [\#3882](https://github.com/kokkos/kokkos/pull/3882) +- Address intel 17 ICE [\#3881](https://github.com/kokkos/kokkos/pull/3881) +- Add missing pow(Kokkos::complex) overloads [\#3868](https://github.com/kokkos/kokkos/pull/3868) +- Fix bug {pow, log}(Kokkos::complex) [\#3866](https://github.com/kokkos/kokkos/pull/3866)(https://github.com/kokkos/kokkos/pull/3866) +- Cleanup writing to output streams in Cuda [\#3859](https://github.com/kokkos/kokkos/pull/3859) +- Fixup cache CUDA fallback execution space instance used by DualView::sync [\#3856](https://github.com/kokkos/kokkos/pull/3856) +- Fix cmake warning with pthread [\#3854](https://github.com/kokkos/kokkos/pull/3854) +- Fix typo FOUND_CUDA_{DRIVVER -> DRIVER} [\#3852](https://github.com/kokkos/kokkos/pull/3852) +- Fix bug in SYCL team_reduce [\#3848](https://github.com/kokkos/kokkos/pull/3848) +- Atrocious bug in MDRange tuning [\#3803](https://github.com/kokkos/kokkos/pull/3803) +- Fix compiling SYCL with Kokkos_ENABLE_TUNING=ON [\#3800](https://github.com/kokkos/kokkos/pull/3800) +- Fixed command line parsing bug [\#3797](https://github.com/kokkos/kokkos/pull/3797) +- Workaround race condition in SYCL parallel_reduce [\#3782](https://github.com/kokkos/kokkos/pull/3782) +- Fix Atomic{Min,Max} for Kepler30 [\#3780](https://github.com/kokkos/kokkos/pull/3780) +- Fix SYCL typo [\#3755](https://github.com/kokkos/kokkos/pull/3755) +- Fixed Kokkos_install_additional_files macro [\#3752](https://github.com/kokkos/kokkos/pull/3752) +- Fix a typo for Kokkos_ARCH_A64FX [\#3751](https://github.com/kokkos/kokkos/pull/3751) +- OpenMPTarget: fixes and workarounds to work with "Release" build type [\#3748](https://github.com/kokkos/kokkos/pull/3748) +- Fix parsing bug for number of devices command line argument [\#3724](https://github.com/kokkos/kokkos/pull/3724) +- Avoid more warnings with clang and C++20 [\#3719](https://github.com/kokkos/kokkos/pull/3719) +- Fix gcc-10.1 C++20 warnings [\#3718](https://github.com/kokkos/kokkos/pull/3718) +- Fix cuda cache config not being set correct [\#3712](https://github.com/kokkos/kokkos/pull/3712) +- Fix dualview deepcopy perftools [\#3701](https://github.com/kokkos/kokkos/pull/3701) +- use drand instead of frand in drand [\#3696](https://github.com/kokkos/kokkos/pull/3696) + +**Incompatibilities:** +- Remove unimplemented member functions of SYCLDevice [\#3919](https://github.com/kokkos/kokkos/pull/3919) +- Replace cl::sycl [\#3896](https://github.com/kokkos/kokkos/pull/3896) +- Get rid of SYCL workaround in Kokkos_Complex.hpp [\#3884](https://github.com/kokkos/kokkos/pull/3884) +- Replace most uses of if_c [\#3883](https://github.com/kokkos/kokkos/pull/3883) +- Remove Impl::enable_if_type [\#3863](https://github.com/kokkos/kokkos/pull/3863) +- Remove HostBarrier test [\#3847](https://github.com/kokkos/kokkos/pull/3847) +- Avoid (void) interface [\#3836](https://github.com/kokkos/kokkos/pull/3836) +- Remove VerifyExecutionCanAccessMemorySpace [\#3813](https://github.com/kokkos/kokkos/pull/3813) +- Avoid duplicated code in ScratchMemorySpace [\#3793](https://github.com/kokkos/kokkos/pull/3793) +- Remove superfluous FunctorFinal specialization [\#3788](https://github.com/kokkos/kokkos/pull/3788) +- Rename cl::sycl -> sycl in Kokkos_MathematicalFunctions.hpp [\#3678](https://github.com/kokkos/kokkos/pull/3678) +- Remove integer_sequence backward compatibility implementation [\#3533](https://github.com/kokkos/kokkos/pull/3533) + +**Enabled tests:** +- Fixup re-enable core performance tests [\#3903](https://github.com/kokkos/kokkos/pull/3903) +- Enable more SYCL tests [\#3900](https://github.com/kokkos/kokkos/pull/3900) +- Restrict MDRange Policy tests for Intel GPUs [\#3853](https://github.com/kokkos/kokkos/pull/3853) +- Disable death tests for rawhide [\#3844](https://github.com/kokkos/kokkos/pull/3844) +- OpenMPTarget: Block unit tests that do not pass with the nvidia compiler [\#3839](https://github.com/kokkos/kokkos/pull/3839) +- Enable Bitset container test for SYCL [\#3830](https://github.com/kokkos/kokkos/pull/3830) +- Enable some more SYCL tests [\#3744](https://github.com/kokkos/kokkos/pull/3744) +- Enable SYCL atomic tests [\#3742](https://github.com/kokkos/kokkos/pull/3742) +- Enable more SYCL perf_tests [\#3692](https://github.com/kokkos/kokkos/pull/3692) +- Enable examples for SYCL [\#3691](https://github.com/kokkos/kokkos/pull/3691) + ## [3.3.01](https://github.com/kokkos/kokkos/tree/3.3.01) (2021-01-06) [Full Changelog](https://github.com/kokkos/kokkos/compare/3.3.00...3.3.01) diff --git a/lib/kokkos/CMakeLists.txt b/lib/kokkos/CMakeLists.txt index 7bc3c77256..6fc1bf7d2f 100644 --- a/lib/kokkos/CMakeLists.txt +++ b/lib/kokkos/CMakeLists.txt @@ -72,7 +72,7 @@ ENDFUNCTION() LIST(APPEND CMAKE_MODULE_PATH cmake/Modules) IF(NOT KOKKOS_HAS_TRILINOS) - cmake_minimum_required(VERSION 3.10 FATAL_ERROR) + cmake_minimum_required(VERSION 3.16 FATAL_ERROR) set(CMAKE_DISABLE_SOURCE_CHANGES ON) set(CMAKE_DISABLE_IN_SOURCE_BUILD ON) IF (Spack_WORKAROUND) @@ -111,27 +111,25 @@ ENDIF() set(Kokkos_VERSION_MAJOR 3) -set(Kokkos_VERSION_MINOR 3) -set(Kokkos_VERSION_PATCH 1) +set(Kokkos_VERSION_MINOR 4) +set(Kokkos_VERSION_PATCH 00) set(Kokkos_VERSION "${Kokkos_VERSION_MAJOR}.${Kokkos_VERSION_MINOR}.${Kokkos_VERSION_PATCH}") math(EXPR KOKKOS_VERSION "${Kokkos_VERSION_MAJOR} * 10000 + ${Kokkos_VERSION_MINOR} * 100 + ${Kokkos_VERSION_PATCH}") -IF(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - MESSAGE(STATUS "Setting policy CMP0074 to use _ROOT variables") - CMAKE_POLICY(SET CMP0074 NEW) -ENDIF() +MESSAGE(STATUS "Setting policy CMP0074 to use _ROOT variables") +CMAKE_POLICY(SET CMP0074 NEW) # Load either the real TriBITS or a TriBITS wrapper # for certain utility functions that are universal (like GLOBAL_SET) INCLUDE(${KOKKOS_SRC_PATH}/cmake/fake_tribits.cmake) -IF (Kokkos_ENABLE_CUDA AND ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.14.0") - #If we are building CUDA, we have tricked CMake because we declare a CXX project - #If the default C++ standard for a given compiler matches the requested - #standard, then CMake just omits the -std flag in later versions of CMake - #This breaks CUDA compilation (CUDA compiler can have a different default - #-std then the underlying host compiler by itself). Setting this variable - #forces CMake to always add the -std flag even if it thinks it doesn't need it +IF (Kokkos_ENABLE_CUDA) + # If we are building CUDA, we have tricked CMake because we declare a CXX project + # If the default C++ standard for a given compiler matches the requested + # standard, then CMake just omits the -std flag in later versions of CMake + # This breaks CUDA compilation (CUDA compiler can have a different default + # -std then the underlying host compiler by itself). Setting this variable + # forces CMake to always add the -std flag even if it thinks it doesn't need it GLOBAL_SET(CMAKE_CXX_STANDARD_DEFAULT 98) ENDIF() @@ -139,15 +137,19 @@ ENDIF() # I really wish these were regular variables # but scoping issues can make it difficult GLOBAL_SET(KOKKOS_COMPILE_OPTIONS) -GLOBAL_SET(KOKKOS_LINK_OPTIONS -DKOKKOS_DEPENDENCE) +GLOBAL_SET(KOKKOS_LINK_OPTIONS) GLOBAL_SET(KOKKOS_CUDA_OPTIONS) GLOBAL_SET(KOKKOS_CUDAFE_OPTIONS) GLOBAL_SET(KOKKOS_XCOMPILER_OPTIONS) # We need to append text here for making sure TPLs # we import are available for an installed Kokkos GLOBAL_SET(KOKKOS_TPL_EXPORTS) -# this could probably be scoped to project +# KOKKOS_DEPENDENCE is used by kokkos_launch_compiler GLOBAL_SET(KOKKOS_COMPILE_DEFINITIONS KOKKOS_DEPENDENCE) +# MSVC never goes through kokkos_launch_compiler +IF(NOT MSVC) + GLOBAL_APPEND(KOKKOS_LINK_OPTIONS -DKOKKOS_DEPENDENCE) +ENDIF() # Include a set of Kokkos-specific wrapper functions that # will either call raw CMake or TriBITS diff --git a/lib/kokkos/Makefile.kokkos b/lib/kokkos/Makefile.kokkos index 061b7a46ee..aa97f99b75 100644 --- a/lib/kokkos/Makefile.kokkos +++ b/lib/kokkos/Makefile.kokkos @@ -11,8 +11,8 @@ CXXFLAGS += $(SHFLAGS) endif KOKKOS_VERSION_MAJOR = 3 -KOKKOS_VERSION_MINOR = 3 -KOKKOS_VERSION_PATCH = 1 +KOKKOS_VERSION_MINOR = 4 +KOKKOS_VERSION_PATCH = 00 KOKKOS_VERSION = $(shell echo $(KOKKOS_VERSION_MAJOR)*10000+$(KOKKOS_VERSION_MINOR)*100+$(KOKKOS_VERSION_PATCH) | bc) # Options: Cuda,HIP,OpenMP,Pthread,Serial @@ -20,7 +20,7 @@ KOKKOS_DEVICES ?= "OpenMP" #KOKKOS_DEVICES ?= "Pthread" # Options: # Intel: KNC,KNL,SNB,HSW,BDW,SKX -# NVIDIA: Kepler,Kepler30,Kepler32,Kepler35,Kepler37,Maxwell,Maxwell50,Maxwell52,Maxwell53,Pascal60,Pascal61,Volta70,Volta72,Turing75,Ampere80 +# NVIDIA: Kepler,Kepler30,Kepler32,Kepler35,Kepler37,Maxwell,Maxwell50,Maxwell52,Maxwell53,Pascal60,Pascal61,Volta70,Volta72,Turing75,Ampere80,Ampere86 # ARM: ARMv80,ARMv81,ARMv8-ThunderX,ARMv8-TX2,A64FX # IBM: BGQ,Power7,Power8,Power9 # AMD-GPUS: Vega900,Vega906,Vega908 @@ -164,17 +164,17 @@ KOKKOS_INTERNAL_OS_DARWIN := $(call kokkos_has_string,$(KOKKOS_OS),Darwin) KOKKOS_CXX_VERSION := $(strip $(shell $(CXX) --version 2>&1)) KOKKOS_INTERNAL_COMPILER_INTEL := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),Intel Corporation) KOKKOS_INTERNAL_COMPILER_PGI := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),PGI) -KOKKOS_INTERNAL_COMPILER_XL := $(strip $(shell $(CXX) -qversion 2>&1 | grep XL | wc -l)) -KOKKOS_INTERNAL_COMPILER_CRAY := $(strip $(shell $(CXX) -craype-verbose 2>&1 | grep "CC-" | wc -l)) -KOKKOS_INTERNAL_COMPILER_NVCC := $(strip $(shell echo "$(shell export OMPI_CXX=$(OMPI_CXX); export MPICH_CXX=$(MPICH_CXX); $(CXX) --version 2>&1 | grep nvcc | wc -l)>0" | bc)) +KOKKOS_INTERNAL_COMPILER_XL := $(strip $(shell $(CXX) -qversion 2>&1 | grep -c XL)) +KOKKOS_INTERNAL_COMPILER_CRAY := $(strip $(shell $(CXX) -craype-verbose 2>&1 | grep -c "CC-")) +KOKKOS_INTERNAL_COMPILER_NVCC := $(strip $(shell echo "$(shell export OMPI_CXX=$(OMPI_CXX); export MPICH_CXX=$(MPICH_CXX); $(CXX) --version 2>&1 | grep -c nvcc)>0" | bc)) KOKKOS_INTERNAL_COMPILER_CLANG := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),clang) -KOKKOS_INTERNAL_COMPILER_APPLE_CLANG := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),Apple LLVM) +KOKKOS_INTERNAL_COMPILER_APPLE_CLANG := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),Apple clang) KOKKOS_INTERNAL_COMPILER_HCC := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),HCC) KOKKOS_INTERNAL_COMPILER_GCC := $(call kokkos_has_string,$(KOKKOS_CXX_VERSION),GCC) # Check Host Compiler if using NVCC through nvcc_wrapper ifeq ($(KOKKOS_INTERNAL_COMPILER_NVCC), 1) - KOKKOS_INTERNAL_COMPILER_NVCC_WRAPPER := $(strip $(shell echo $(CXX) | grep nvcc_wrapper | wc -l)) + KOKKOS_INTERNAL_COMPILER_NVCC_WRAPPER := $(strip $(shell echo $(CXX) | grep -c nvcc_wrapper)) ifeq ($(KOKKOS_INTERNAL_COMPILER_NVCC_WRAPPER), 1) KOKKOS_CXX_HOST_VERSION := $(strip $(shell $(CXX) $(CXXFLAGS) --host-version 2>&1)) @@ -297,11 +297,11 @@ else #KOKKOS_INTERNAL_CXX1Z_FLAG := -hstd=c++1z #KOKKOS_INTERNAL_CXX2A_FLAG := -hstd=c++2a else - KOKKOS_INTERNAL_CXX14_FLAG := --std=c++14 - KOKKOS_INTERNAL_CXX1Y_FLAG := --std=c++1y - KOKKOS_INTERNAL_CXX17_FLAG := --std=c++17 - KOKKOS_INTERNAL_CXX1Z_FLAG := --std=c++1z - KOKKOS_INTERNAL_CXX2A_FLAG := --std=c++2a + KOKKOS_INTERNAL_CXX14_FLAG := -std=c++14 + KOKKOS_INTERNAL_CXX1Y_FLAG := -std=c++1y + KOKKOS_INTERNAL_CXX17_FLAG := -std=c++17 + KOKKOS_INTERNAL_CXX1Z_FLAG := -std=c++1z + KOKKOS_INTERNAL_CXX2A_FLAG := -std=c++2a endif endif endif @@ -332,6 +332,7 @@ KOKKOS_INTERNAL_USE_ARCH_VOLTA70 := $(call kokkos_has_string,$(KOKKOS_ARCH),Volt KOKKOS_INTERNAL_USE_ARCH_VOLTA72 := $(call kokkos_has_string,$(KOKKOS_ARCH),Volta72) KOKKOS_INTERNAL_USE_ARCH_TURING75 := $(call kokkos_has_string,$(KOKKOS_ARCH),Turing75) KOKKOS_INTERNAL_USE_ARCH_AMPERE80 := $(call kokkos_has_string,$(KOKKOS_ARCH),Ampere80) +KOKKOS_INTERNAL_USE_ARCH_AMPERE86 := $(call kokkos_has_string,$(KOKKOS_ARCH),Ampere86) KOKKOS_INTERNAL_USE_ARCH_NVIDIA := $(shell expr $(KOKKOS_INTERNAL_USE_ARCH_KEPLER30) \ + $(KOKKOS_INTERNAL_USE_ARCH_KEPLER32) \ + $(KOKKOS_INTERNAL_USE_ARCH_KEPLER35) \ @@ -344,7 +345,8 @@ KOKKOS_INTERNAL_USE_ARCH_NVIDIA := $(shell expr $(KOKKOS_INTERNAL_USE_ARCH_KEPLE + $(KOKKOS_INTERNAL_USE_ARCH_VOLTA70) \ + $(KOKKOS_INTERNAL_USE_ARCH_VOLTA72) \ + $(KOKKOS_INTERNAL_USE_ARCH_TURING75) \ - + $(KOKKOS_INTERNAL_USE_ARCH_AMPERE80)) + + $(KOKKOS_INTERNAL_USE_ARCH_AMPERE80) \ + + $(KOKKOS_INTERNAL_USE_ARCH_AMPERE86)) #SEK: This seems like a bug to me ifeq ($(KOKKOS_INTERNAL_USE_ARCH_NVIDIA), 0) @@ -585,10 +587,10 @@ ifeq ($(KOKKOS_INTERNAL_ENABLE_PROFILING_LOAD_PRINT), 1) endif ifeq ($(KOKKOS_INTERNAL_ENABLE_TUNING), 1) - tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_TUNING") + tmp := $(call kokkos_append_header,"$H""define KOKKOS_ENABLE_TUNING") endif -tmp := $(call kokkos_append_header,"\#define KOKKOS_ENABLE_LIBDL") +tmp := $(call kokkos_append_header,"$H""define KOKKOS_ENABLE_LIBDL") ifeq ($(KOKKOS_INTERNAL_USE_HWLOC), 1) ifneq ($(KOKKOS_CMAKE), yes) @@ -752,6 +754,14 @@ ifeq ($(KOKKOS_INTERNAL_USE_ARCH_A64FX), 1) KOKKOS_CXXFLAGS += -march=armv8.2-a+sve KOKKOS_LDFLAGS += -march=armv8.2-a+sve + ifeq ($(KOKKOS_INTERNAL_COMPILER_CLANG), 1) + KOKKOS_CXXFLAGS += -msve-vector-bits=512 + KOKKOS_LDFLAGS += -msve-vector-bits=512 + endif + ifeq ($(KOKKOS_INTERNAL_COMPILER_GCC), 1) + KOKKOS_CXXFLAGS += -msve-vector-bits=512 + KOKKOS_LDFLAGS += -msve-vector-bits=512 + endif endif ifeq ($(KOKKOS_INTERNAL_USE_ARCH_ZEN), 1) @@ -1100,6 +1110,11 @@ ifeq ($(KOKKOS_INTERNAL_USE_CUDA_ARCH), 1) tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_AMPERE80") KOKKOS_INTERNAL_CUDA_ARCH_FLAG := $(KOKKOS_INTERNAL_CUDA_ARCH_FLAG)=sm_80 endif + ifeq ($(KOKKOS_INTERNAL_USE_ARCH_AMPERE86), 1) + tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_AMPERE") + tmp := $(call kokkos_append_header,"$H""define KOKKOS_ARCH_AMPERE86") + KOKKOS_INTERNAL_CUDA_ARCH_FLAG := $(KOKKOS_INTERNAL_CUDA_ARCH_FLAG)=sm_86 + endif ifneq ($(KOKKOS_INTERNAL_USE_ARCH_NVIDIA), 0) KOKKOS_CXXFLAGS += $(KOKKOS_INTERNAL_CUDA_ARCH_FLAG) @@ -1159,7 +1174,7 @@ endif KOKKOS_INTERNAL_LS_CONFIG := $(shell ls KokkosCore_config.h 2>&1) ifeq ($(KOKKOS_INTERNAL_LS_CONFIG), KokkosCore_config.h) - KOKKOS_INTERNAL_NEW_CONFIG := $(strip $(shell diff KokkosCore_config.h KokkosCore_config.tmp | grep define | wc -l)) + KOKKOS_INTERNAL_NEW_CONFIG := $(strip $(shell diff KokkosCore_config.h KokkosCore_config.tmp | grep -c define)) else KOKKOS_INTERNAL_NEW_CONFIG := 1 endif @@ -1181,41 +1196,41 @@ tmp := $(call kokkos_update_config_header, KOKKOS_SETUP_HPP_, "KokkosCore_Config tmp := $(call kokkos_update_config_header, KOKKOS_DECLARE_HPP_, "KokkosCore_Config_DeclareBackend.tmp", "KokkosCore_Config_DeclareBackend.hpp") tmp := $(call kokkos_update_config_header, KOKKOS_POST_INCLUDE_HPP_, "KokkosCore_Config_PostInclude.tmp", "KokkosCore_Config_PostInclude.hpp") ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_SetupBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_SetupBackend.hpp") ifeq ($(KOKKOS_INTERNAL_CUDA_USE_UVM), 1) else endif endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMPTARGET), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_HIP), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_SetupBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_SetupBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMP), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_PTHREADS), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_HPX), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif ifeq ($(KOKKOS_INTERNAL_USE_MEMKIND), 1) - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_FwdBackend.hpp") - tmp := $(call kokkos_append_config_header,"\#include ","KokkosCore_Config_DeclareBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_FwdBackend.hpp") + tmp := $(call kokkos_append_config_header,"$H""include ","KokkosCore_Config_DeclareBackend.hpp") endif KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/*.hpp) KOKKOS_HEADERS += $(wildcard $(KOKKOS_PATH)/core/src/impl/*.hpp) @@ -1334,7 +1349,7 @@ ifneq ($(KOKKOS_INTERNAL_USE_SERIAL), 1) endif # With Cygwin functions such as fdopen and fileno are not defined -# when strict ansi is enabled. strict ansi gets enabled with --std=c++14 +# when strict ansi is enabled. strict ansi gets enabled with -std=c++14 # though. So we hard undefine it here. Not sure if that has any bad side effects # This is needed for gtest actually, not for Kokkos itself! ifeq ($(KOKKOS_INTERNAL_OS_CYGWIN), 1) diff --git a/lib/kokkos/Makefile.targets b/lib/kokkos/Makefile.targets index 5a03f7d17e..cf9fc24242 100644 --- a/lib/kokkos/Makefile.targets +++ b/lib/kokkos/Makefile.targets @@ -36,6 +36,8 @@ Kokkos_MemorySpace.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/impl/Kokkos_ $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/impl/Kokkos_MemorySpace.cpp Kokkos_HostSpace_deepcopy.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/impl/Kokkos_HostSpace_deepcopy.cpp $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/impl/Kokkos_HostSpace_deepcopy.cpp +Kokkos_NumericTraits.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/impl/Kokkos_NumericTraits.cpp + $(CXX) $(KOKKOS_CPPFLAGS) $(KOKKOS_CXXFLAGS) $(CXXFLAGS) -c $(KOKKOS_PATH)/core/src/impl/Kokkos_NumericTraits.cpp ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) Kokkos_Cuda_Instance.o: $(KOKKOS_CPP_DEPENDS) $(KOKKOS_PATH)/core/src/Cuda/Kokkos_Cuda_Instance.cpp diff --git a/lib/kokkos/algorithms/src/Kokkos_Random.hpp b/lib/kokkos/algorithms/src/Kokkos_Random.hpp index 69d6cf8f35..904cf5ccb9 100644 --- a/lib/kokkos/algorithms/src/Kokkos_Random.hpp +++ b/lib/kokkos/algorithms/src/Kokkos_Random.hpp @@ -668,6 +668,25 @@ struct Random_UniqueIndex { }; #endif +#ifdef KOKKOS_ENABLE_SYCL +template <> +struct Random_UniqueIndex { + using locks_view_type = View; + KOKKOS_FUNCTION + static int get_state_idx(const locks_view_type& locks_) { +#ifdef KOKKOS_ARCH_INTEL_GEN + int i = Kokkos::Impl::clock_tic() % locks_.extent(0); +#else + int i = 0; +#endif + while (Kokkos::atomic_compare_exchange(&locks_(i), 0, 1)) { + i = (i + 1) % static_cast(locks_.extent(0)); + } + return i; + } +}; +#endif + } // namespace Impl template @@ -1028,7 +1047,7 @@ class Random_XorShift1024 { KOKKOS_INLINE_FUNCTION double drand(const double& start, const double& end) { - return frand(end - start) + start; + return drand(end - start) + start; } // Marsaglia polar method for drawing a standard normal distributed random diff --git a/lib/kokkos/algorithms/unit_tests/CMakeLists.txt b/lib/kokkos/algorithms/unit_tests/CMakeLists.txt index 819c9e54ba..9109837985 100644 --- a/lib/kokkos/algorithms/unit_tests/CMakeLists.txt +++ b/lib/kokkos/algorithms/unit_tests/CMakeLists.txt @@ -3,6 +3,7 @@ KOKKOS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) KOKKOS_INCLUDE_DIRECTORIES(REQUIRED_DURING_INSTALLATION_TESTING ${CMAKE_CURRENT_SOURCE_DIR}) KOKKOS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../src ) +KOKKOS_INCLUDE_DIRECTORIES(${KOKKOS_SOURCE_DIR}/core/unit_test/category_files) SET(GTEST_SOURCE_DIR ${${PARENT_PACKAGE_NAME}_SOURCE_DIR}/tpls/gtest) @@ -25,7 +26,7 @@ KOKKOS_ADD_TEST_LIBRARY( TARGET_COMPILE_DEFINITIONS(kokkosalgorithms_gtest PUBLIC GTEST_HAS_TR1_TUPLE=0 GTEST_HAS_PTHREAD=0) IF((NOT (Kokkos_ENABLE_CUDA AND WIN32)) AND (NOT ("${KOKKOS_CXX_COMPILER_ID}" STREQUAL "Fujitsu"))) -TARGET_COMPILE_FEATURES(kokkosalgorithms_gtest PUBLIC cxx_std_11) + TARGET_COMPILE_FEATURES(kokkosalgorithms_gtest PUBLIC cxx_std_14) ENDIF() # Suppress clang-tidy diagnostics on code that we do not have control over @@ -33,51 +34,42 @@ IF(CMAKE_CXX_CLANG_TIDY) SET_TARGET_PROPERTIES(kokkosalgorithms_gtest PROPERTIES CXX_CLANG_TIDY "") ENDIF() -SET(SOURCES - UnitTestMain.cpp -) +SET(ALGORITHM UnitTestMain.cpp) IF(Kokkos_ENABLE_OPENMP) - LIST( APPEND SOURCES - TestOpenMP.cpp + LIST(APPEND ALGORITHM_SOURCES TestOpenMP_Sort1D.cpp TestOpenMP_Sort3D.cpp TestOpenMP_SortDynamicView.cpp - TestOpenMP_Random.cpp ) ENDIF() -IF(Kokkos_ENABLE_HIP) - LIST( APPEND SOURCES - TestHIP.cpp - ) -ENDIF() +foreach(Tag Threads;Serial;OpenMP;Cuda;HPX;HIP;SYCL) + # Because there is always an exception to the rule + if(Tag STREQUAL "Threads") + set(DEVICE "PTHREAD") + else() + string(TOUPPER ${Tag} DEVICE) + endif() -IF(Kokkos_ENABLE_CUDA) - LIST( APPEND SOURCES - TestCuda.cpp - ) -ENDIF() - -IF(Kokkos_ENABLE_HPX) - LIST( APPEND SOURCES - TestHPX.cpp - ) -ENDIF() - -IF(Kokkos_ENABLE_SERIAL) - LIST( APPEND SOURCES - TestSerial.cpp - ) -ENDIF() - -IF(Kokkos_ENABLE_PTHREAD) - LIST( APPEND SOURCES - TestThreads.cpp - ) -ENDIF() + if(Kokkos_ENABLE_${DEVICE}) + set(dir ${CMAKE_CURRENT_BINARY_DIR}) + set(file ${dir}/Test${Tag}.cpp) + # Write to a temporary intermediate file and call configure_file to avoid + # updating timestamps triggering unnecessary rebuilds on subsequent cmake runs. + file(WRITE ${dir}/dummy.cpp + "#include \n" + "#include \n" + "#include \n" + ) + configure_file(${dir}/dummy.cpp ${file}) + list(APPEND ALGORITHM_SOURCES ${file}) + endif() +endforeach() KOKKOS_ADD_EXECUTABLE_AND_TEST( UnitTest - SOURCES ${SOURCES} + SOURCES + UnitTestMain.cpp + ${ALGORITHM_SOURCES} ) diff --git a/lib/kokkos/algorithms/unit_tests/Makefile b/lib/kokkos/algorithms/unit_tests/Makefile index c112d7c6fc..dd0aa87de0 100644 --- a/lib/kokkos/algorithms/unit_tests/Makefile +++ b/lib/kokkos/algorithms/unit_tests/Makefile @@ -20,11 +20,19 @@ override LDFLAGS += -lpthread include $(KOKKOS_PATH)/Makefile.kokkos -KOKKOS_CXXFLAGS += -I$(GTEST_PATH) -I${KOKKOS_PATH}/algorithms/unit_tests +KOKKOS_CXXFLAGS += -I$(GTEST_PATH) -I${KOKKOS_PATH}/algorithms/unit_tests -I${KOKKOS_PATH}/core/unit_test/category_files TEST_TARGETS = TARGETS = +tmp := $(foreach device, $(KOKKOS_DEVICELIST), \ + $(if $(filter Test$(device).cpp, $(shell ls Test$(device).cpp 2>/dev/null)),,\ + $(shell echo "\#include " > Test$(device).cpp); \ + $(shell echo "\#include " >> Test$(device).cpp); \ + $(shell echo "\#include " >> Test$(device).cpp); \ + ) \ +) + ifeq ($(KOKKOS_INTERNAL_USE_CUDA), 1) OBJ_CUDA = TestCuda.o UnitTestMain.o gtest-all.o TARGETS += KokkosAlgorithms_UnitTest_Cuda @@ -44,7 +52,7 @@ ifeq ($(KOKKOS_INTERNAL_USE_PTHREADS), 1) endif ifeq ($(KOKKOS_INTERNAL_USE_OPENMP), 1) - OBJ_OPENMP = TestOpenMP.o TestOpenMP_Random.o TestOpenMP_Sort1D.o TestOpenMP_Sort3D.o TestOpenMP_SortDynamicView.o UnitTestMain.o gtest-all.o + OBJ_OPENMP = TestOpenMP.o TestOpenMP_Sort1D.o TestOpenMP_Sort3D.o TestOpenMP_SortDynamicView.o UnitTestMain.o gtest-all.o TARGETS += KokkosAlgorithms_UnitTest_OpenMP TEST_TARGETS += test-openmp endif diff --git a/lib/kokkos/algorithms/unit_tests/TestOpenMP_Sort1D.cpp b/lib/kokkos/algorithms/unit_tests/TestOpenMP_Sort1D.cpp index a9b2010ad0..4a5839f0c8 100644 --- a/lib/kokkos/algorithms/unit_tests/TestOpenMP_Sort1D.cpp +++ b/lib/kokkos/algorithms/unit_tests/TestOpenMP_Sort1D.cpp @@ -59,6 +59,8 @@ TEST(openmp, SortUnsigned1D) { Impl::test_1D_sort(171); } +TEST(openmp, SortIssue1160) { Impl::test_issue_1160_sort(); } + } // namespace Test #else void KOKKOS_ALGORITHMS_UNITTESTS_TESTOPENMP_PREVENT_LINK_ERROR() {} diff --git a/lib/kokkos/algorithms/unit_tests/TestRandom.hpp b/lib/kokkos/algorithms/unit_tests/TestRandom.hpp index caba92c152..1f14875096 100644 --- a/lib/kokkos/algorithms/unit_tests/TestRandom.hpp +++ b/lib/kokkos/algorithms/unit_tests/TestRandom.hpp @@ -491,6 +491,34 @@ void test_random(unsigned int num_draws) { } } // namespace Impl +template +void test_random_xorshift64() { +#if defined(KOKKOS_ENABLE_SYCL) || defined(KOKKOS_ENABLE_CUDA) || \ + defined(KOKKOS_ENABLE_HIP) + const int num_draws = 132141141; +#else // SERIAL, HPX, OPENMP + const int num_draws = 10240000; +#endif + Impl::test_random>(num_draws); + Impl::test_random>>( + num_draws); +} + +template +void test_random_xorshift1024() { +#if defined(KOKKOS_ENABLE_SYCL) || defined(KOKKOS_ENABLE_CUDA) || \ + defined(KOKKOS_ENABLE_HIP) + const int num_draws = 52428813; +#else // SERIAL, HPX, OPENMP + const int num_draws = 10130144; +#endif + Impl::test_random>( + num_draws); + Impl::test_random>>( + num_draws); +} } // namespace Test #endif // KOKKOS_TEST_UNORDERED_MAP_HPP diff --git a/lib/kokkos/algorithms/unit_tests/TestRandomCommon.hpp b/lib/kokkos/algorithms/unit_tests/TestRandomCommon.hpp new file mode 100644 index 0000000000..c6d3b59ae1 --- /dev/null +++ b/lib/kokkos/algorithms/unit_tests/TestRandomCommon.hpp @@ -0,0 +1,60 @@ +/* +//@HEADER +// ************************************************************************ +// +// Kokkos v. 3.0 +// Copyright (2020) National Technology & Engineering +// Solutions of Sandia, LLC (NTESS). +// +// Under the terms of Contract DE-NA0003525 with NTESS, +// the U.S. Government retains certain rights in this software. +// +// 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 Corporation nor the names of the +// contributors may be used to endorse or promote products derived from +// this software without specific prior written permission. +// +// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE +// 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. +// +// Questions? Contact Christian R. Trott (crtrott@sandia.gov) +// +// ************************************************************************ +//@HEADER +*/ + +#ifndef KOKKOS_ALGORITHMS_UNITTESTS_TESTRANDOM_COMMON_HPP +#define KOKKOS_ALGORITHMS_UNITTESTS_TESTRANDOM_COMMON_HPP + +#include + +namespace Test { + +TEST(TEST_CATEGORY, Random_XorShift64) { + test_random_xorshift64(); +} +TEST(TEST_CATEGORY, Random_XorShift1024_0) { + test_random_xorshift1024(); +} +} // namespace Test + +#endif diff --git a/lib/kokkos/containers/unit_tests/TestHIP_Category.hpp b/lib/kokkos/algorithms/unit_tests/TestSortCommon.hpp similarity index 88% rename from lib/kokkos/containers/unit_tests/TestHIP_Category.hpp rename to lib/kokkos/algorithms/unit_tests/TestSortCommon.hpp index c2d60d1814..56657b6574 100644 --- a/lib/kokkos/containers/unit_tests/TestHIP_Category.hpp +++ b/lib/kokkos/algorithms/unit_tests/TestSortCommon.hpp @@ -42,10 +42,14 @@ //@HEADER */ -#ifndef KOKKOS_TEST_HIP_HPP -#define KOKKOS_TEST_HIP_HPP +#ifndef KOKKOS_ALGORITHMS_UNITTESTS_TESTSORT_COMMON_HPP +#define KOKKOS_ALGORITHMS_UNITTESTS_TESTSORT_COMMON_HPP -#define TEST_CATEGORY hip -#define TEST_EXECSPACE Kokkos::Experimental::HIP +#include +namespace Test { +TEST(TEST_CATEGORY, SortUnsigned) { + Impl::test_sort(171); +} +} // namespace Test #endif diff --git a/lib/kokkos/appveyor.yml b/lib/kokkos/appveyor.yml index c40bf066b7..e8763c0b66 100644 --- a/lib/kokkos/appveyor.yml +++ b/lib/kokkos/appveyor.yml @@ -3,8 +3,4 @@ image: clone_folder: c:\projects\source build_script: - cmd: >- - mkdir build && - cd build && - cmake c:\projects\source -DKokkos_ENABLE_TESTS=ON && - cmake --build . --target install && - ctest -C Debug -V + cmake c:\projects\source -DKokkos_ENABLE_TESTS=ON -DCMAKE_CXX_FLAGS="/W0 /EHsc /d1reportClassLayoutChanges" -DCTEST_ARGS="-C Debug -V --output-on-failure" -DBUILD_NAME=MSVC-2019 -DBUILD_TYPE=Debug -DSITE=AppVeyor -DTARGET=install -P cmake/KokkosCI.cmake diff --git a/lib/kokkos/bin/kokkos_launch_compiler b/lib/kokkos/bin/kokkos_launch_compiler index 1fbebf648f..d929d24f1d 100755 --- a/lib/kokkos/bin/kokkos_launch_compiler +++ b/lib/kokkos/bin/kokkos_launch_compiler @@ -13,6 +13,17 @@ # $1 are 'ar', 'cmake', etc. during the linking phase # +# emit a message about the underlying command executed +: ${DEBUG:=0} +: ${KOKKOS_DEBUG_LAUNCH_COMPILER:=${DEBUG}} + +debug-message() +{ + if [ "${KOKKOS_DEBUG_LAUNCH_COMPILER}" -ne 0 ]; then + echo -e "##### $(basename ${BASH_SOURCE[0]}) executing: \"$@\"... #####" + fi +} + # check the arguments for the KOKKOS_DEPENDENCE compiler definition KOKKOS_DEPENDENCE=0 for i in ${@} @@ -23,16 +34,30 @@ do fi done -# if C++ is not passed, someone is probably trying to invoke it directly +# if Kokkos compiler is not passed, someone is probably trying to invoke it directly if [ -z "${1}" ]; then - echo -e "\n${BASH_SOURCE[0]} was invoked without the C++ compiler as the first argument." + echo -e "\n${BASH_SOURCE[0]} was invoked without the Kokkos compiler as the first argument." echo "This script is not indended to be directly invoked by any mechanism other" - echo -e "than through a RULE_LAUNCH_COMPILE or RULE_LAUNCH_LINK property set in CMake\n" + echo -e "than through a RULE_LAUNCH_COMPILE or RULE_LAUNCH_LINK property set in CMake.\n" + exit 1 +fi + +# if Kokkos compiler is not passed, someone is probably trying to invoke it directly +if [ -z "${2}" ]; then + echo -e "\n${BASH_SOURCE[0]} was invoked without the C++ compiler as the second argument." + echo "This script is not indended to be directly invoked by any mechanism other" + echo -e "than through a RULE_LAUNCH_COMPILE or RULE_LAUNCH_LINK property set in CMake.\n" exit 1 fi # if there aren't two args, this isn't necessarily invalid, just a bit strange -if [ -z "${2}" ]; then exit 0; fi +if [ -z "${3}" ]; then exit 0; fi + +# store the Kokkos compiler +KOKKOS_COMPILER=${1} + +# remove the Kokkos compiler from the arguments +shift # store the expected C++ compiler CXX_COMPILER=${1} @@ -40,48 +65,57 @@ CXX_COMPILER=${1} # remove the expected C++ compiler from the arguments shift -# after the above shift, $1 is now the exe for the compile or link command, e.g. -# kokkos_launch_compiler g++ gcc -c file.c -o file.o +# NOTE: in below, ${KOKKOS_COMPILER} is usually nvcc_wrapper +# +# after the above shifts, $1 is now the exe for the compile or link command, e.g. +# kokkos_launch_compiler ${KOKKOS_COMPILER} g++ gcc -c file.c -o file.o # becomes: # kokkos_launch_compiler gcc -c file.c -o file.o -# Check to see if the executable is the C++ compiler and if it is not, then +# We check to see if the executable is the C++ compiler and if it is not, then # just execute the command. # # Summary: -# kokkos_launch_compiler g++ gcc -c file.c -o file.o +# kokkos_launch_compiler ${KOKKOS_COMPILER} g++ gcc -c file.c -o file.o # results in this command being executed: # gcc -c file.c -o file.o # and -# kokkos_launch_compiler g++ g++ -c file.cpp -o file.o +# kokkos_launch_compiler ${KOKKOS_COMPILER} g++ g++ -c file.cpp -o file.o # results in this command being executed: -# nvcc_wrapper -c file.cpp -o file.o +# ${KOKKOS_COMPILER} -c file.cpp -o file.o if [[ "${KOKKOS_DEPENDENCE}" -eq "0" || "${CXX_COMPILER}" != "${1}" ]]; then - # the command does not depend on Kokkos so just execute the command w/o re-directing to nvcc_wrapper + debug-message $@ + # the command does not depend on Kokkos so just execute the command w/o re-directing to ${KOKKOS_COMPILER} eval $@ else - # the executable is the C++ compiler, so we need to re-direct to nvcc_wrapper - - # find the nvcc_wrapper from the same build/install - NVCC_WRAPPER="$(dirname ${BASH_SOURCE[0]})/nvcc_wrapper" - - if [ -z "${NVCC_WRAPPER}" ]; then - echo -e "\nError: nvcc_wrapper not found in $(dirname ${BASH_SOURCE[0]}).\n" + # the executable is the C++ compiler, so we need to re-direct to ${KOKKOS_COMPILER} + if [ ! -f "${KOKKOS_COMPILER}" ]; then + echo -e "\nError: the compiler redirect for Kokkos was not found at ${KOKKOS_COMPILER}\n" exit 1 fi - # set default nvcc wrapper compiler if not specified - : ${NVCC_WRAPPER_DEFAULT_COMPILER:=${CXX_COMPILER}} - export NVCC_WRAPPER_DEFAULT_COMPILER + # find the nvcc_wrapper from the same build/install + NVCC_WRAPPER="$(dirname ${BASH_SOURCE[0]})/nvcc_wrapper" + if [ "${KOKKOS_COMPILER}" = "${NVCC_WRAPPER}" ]; then + # this should only be valid in the install tree -- it will be set to CMAKE_CXX_COMPILER used using Kokkos installation + if [ -z $(echo "@NVCC_WRAPPER_DEFAULT_COMPILER@" | grep 'NVCC_WRAPPER_DEFAULT_COMPILER') ]; then + : ${NVCC_WRAPPER_DEFAULT_COMPILER:="@NVCC_WRAPPER_DEFAULT_COMPILER@"} + fi - # calling itself will cause an infinitely long build - if [ "${NVCC_WRAPPER}" = "${NVCC_WRAPPER_DEFAULT_COMPILER}" ]; then - echo -e "\nError: NVCC_WRAPPER == NVCC_WRAPPER_DEFAULT_COMPILER. Terminating to avoid infinite loop!\n" - exit 1 + # set default nvcc wrapper compiler if not specified + : ${NVCC_WRAPPER_DEFAULT_COMPILER:=${CXX_COMPILER}} + export NVCC_WRAPPER_DEFAULT_COMPILER + + # nvcc_wrapper calling itself will cause an infinitely long build + if [ "${NVCC_WRAPPER}" = "${NVCC_WRAPPER_DEFAULT_COMPILER}" ]; then + echo -e "\nError: NVCC_WRAPPER == NVCC_WRAPPER_DEFAULT_COMPILER. Terminating to avoid infinite loop!\n" + exit 1 + fi fi # discard the compiler from the command shift - # execute nvcc_wrapper - ${NVCC_WRAPPER} $@ + debug-message ${KOKKOS_COMPILER} $@ + # execute ${KOKKOS_COMPILER} (again, usually nvcc_wrapper) + ${KOKKOS_COMPILER} $@ fi diff --git a/lib/kokkos/bin/nvcc_wrapper b/lib/kokkos/bin/nvcc_wrapper index 4ecf4c66d5..5556e888e3 100755 --- a/lib/kokkos/bin/nvcc_wrapper +++ b/lib/kokkos/bin/nvcc_wrapper @@ -191,11 +191,11 @@ do shift ;; #Handle known nvcc args - --dryrun|--verbose|--keep|--keep-dir*|-G|--relocatable-device-code*|-lineinfo|-expt-extended-lambda|-expt-relaxed-constexpr|--resource-usage|-Xptxas*|--fmad*|--Wext-lambda-captures-this|-Wext-lambda-captures-this) + --dryrun|--verbose|--keep|--keep-dir*|-G|--relocatable-device-code*|-lineinfo|-expt-extended-lambda|-expt-relaxed-constexpr|--resource-usage|-Xptxas*|--fmad*|--use_fast_math|--Wext-lambda-captures-this|-Wext-lambda-captures-this) cuda_args="$cuda_args $1" ;; #Handle more known nvcc args - --expt-extended-lambda|--expt-relaxed-constexpr) + --expt-extended-lambda|--expt-relaxed-constexpr|--Wno-deprecated-gpu-targets|-Wno-deprecated-gpu-targets) cuda_args="$cuda_args $1" ;; #Handle known nvcc args that have an argument diff --git a/lib/kokkos/cmake/CTestConfig.cmake.in b/lib/kokkos/cmake/CTestConfig.cmake.in new file mode 100644 index 0000000000..1f82c0d64d --- /dev/null +++ b/lib/kokkos/cmake/CTestConfig.cmake.in @@ -0,0 +1,91 @@ +#----------------------------------------------------------------------------------------# +# +# CTestConfig.cmake template for Kokkos +# +#----------------------------------------------------------------------------------------# + +# +# dash-board related +# +set(CTEST_PROJECT_NAME "Kokkos") +set(CTEST_NIGHTLY_START_TIME "01:00:00 UTC") +set(CTEST_DROP_METHOD "https") +set(CTEST_DROP_SITE "cdash.nersc.gov") +set(CTEST_DROP_LOCATION "/submit.php?project=${CTEST_PROJECT_NAME}") +set(CTEST_CDASH_VERSION "1.6") +set(CTEST_CDASH_QUERY_VERSION TRUE) +set(CTEST_SUBMIT_RETRY_COUNT "1") +set(CTEST_SUBMIT_RETRY_DELAY "30") + +# +# configure/build related +# +set(CTEST_BUILD_NAME "@BUILD_NAME@") +set(CTEST_MODEL "@MODEL@") +set(CTEST_SITE "@SITE@") +set(CTEST_CONFIGURATION_TYPE "@BUILD_TYPE@") +set(CTEST_SOURCE_DIRECTORY "@SOURCE_REALDIR@") +set(CTEST_BINARY_DIRECTORY "@BINARY_REALDIR@") + +# +# configure/build related +# +set(CTEST_UPDATE_TYPE "git") +set(CTEST_UPDATE_VERSION_ONLY ON) +# set(CTEST_GENERATOR "") +# set(CTEST_GENERATOR_PLATFORM "") + +# +# testing related +# +set(CTEST_TIMEOUT "7200") +set(CTEST_TEST_TIMEOUT "7200") +set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS "100") +set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS "100") +set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE "1048576") + +# +# coverage related +# +set(CTEST_CUSTOM_COVERAGE_EXCLUDE ".*tpls/.*;/usr/.*;.*unit_test/.*;.*unit_tests/.*;.*perf_test/.*") + +# +# commands +# +if(NOT "@CHECKOUT_COMMAND@" STREQUAL "") + set(CTEST_CHECKOUT_COMMAND "@CHECKOUT_COMMAND@") +endif() +set(CTEST_UPDATE_COMMAND "@GIT_EXECUTABLE@") +set(CTEST_CONFIGURE_COMMAND "@CMAKE_COMMAND@ -DCMAKE_BUILD_TYPE=@BUILD_TYPE@ -DKokkos_ENABLE_TESTS=ON @CONFIG_ARGS@ @SOURCE_REALDIR@") +set(CTEST_BUILD_COMMAND "@CMAKE_COMMAND@ --build @BINARY_REALDIR@ --target @TARGET@") +if(NOT WIN32) + set(CTEST_BUILD_COMMAND "${CTEST_BUILD_COMMAND} -- -j@BUILD_JOBS@") +endif() +set(CTEST_COVERAGE_COMMAND "gcov") +set(CTEST_MEMORYCHECK_COMMAND "valgrind") +set(CTEST_GIT_COMMAND "@GIT_EXECUTABLE@") + +# +# various configs +# +set(APPEND_VALUE @APPEND@) +if(APPEND_VALUE) + set(APPEND_CTEST APPEND) +endif() + +macro(SET_TEST_PROP VAR) + if(NOT "${ARGS}" STREQUAL "") + set(${VAR}_CTEST ${VAR} ${ARGN}) + endif() +endmacro() + +set_test_prop(START @START@) +set_test_prop(END @END@) +set_test_prop(STRIDE @STRIDE@) +set_test_prop(INCLUDE @INCLUDE@) +set_test_prop(EXCLUDE @EXCLUDE@) +set_test_prop(INCLUDE_LABEL @INCLUDE_LABEL@) +set_test_prop(EXCLUDE_LABEL @EXCLUDE_LABEL@) +set_test_prop(PARALLEL_LEVEL @PARALLEL_LEVEL@) +set_test_prop(STOP_TIME @STOP_TIME@) +set_test_prop(COVERAGE_LABELS @LABELS@) diff --git a/lib/kokkos/cmake/KokkosCI.cmake b/lib/kokkos/cmake/KokkosCI.cmake new file mode 100644 index 0000000000..e8c9af37ad --- /dev/null +++ b/lib/kokkos/cmake/KokkosCI.cmake @@ -0,0 +1,350 @@ +cmake_minimum_required(VERSION 3.16 FATAL_ERROR) + +message(STATUS "") + +get_cmake_property(_cached_vars CACHE_VARIABLES) +set(KOKKOS_CMAKE_ARGS) +set(EXCLUDED_VARIABLES "CMAKE_COMMAND" "CMAKE_CPACK_COMMAND" "CMAKE_CTEST_COMMAND" "CMAKE_ROOT" + "CTEST_ARGS" "BUILD_NAME" "CMAKE_CXX_FLAGS" "CMAKE_BUILD_TYPE") +list(SORT _cached_vars) +foreach(_var ${_cached_vars}) + if(NOT "${_var}" IN_LIST EXCLUDED_VARIABLES) + list(APPEND KOKKOS_CMAKE_ARGS ${_var}) + if("${_var}" STREQUAL "CMAKE_BUILD_TYPE") + set(BUILD_TYPE "${CMAKE_BUILD_TYPE}") + endif() + endif() +endforeach() + + +#----------------------------------------------------------------------------------------# +# +# Macros and variables +# +#----------------------------------------------------------------------------------------# + +macro(CHECK_REQUIRED VAR) + if(NOT DEFINED ${VAR}) + message(FATAL_ERROR "Error! Variable '${VAR}' must be defined") + endif() +endmacro() + +# require the build name variable +CHECK_REQUIRED(BUILD_NAME) + +# uses all args +macro(SET_DEFAULT VAR) + if(NOT DEFINED ${VAR}) + set(${VAR} ${ARGN}) + endif() + # remove these ctest configuration variables from the defines + # passed to the Kokkos configuration + if("${VAR}" IN_LIST KOKKOS_CMAKE_ARGS) + list(REMOVE_ITEM KOKKOS_CMAKE_ARGS "${VAR}") + endif() +endmacro() + +# uses first arg -- useful for selecting via priority from multiple +# potentially defined variables, e.g.: +# +# set_default_arg1(BUILD_NAME ${TRAVIS_BUILD_NAME} ${BUILD_NAME}) +# +macro(SET_DEFAULT_ARG1 VAR) + if(NOT DEFINED ${VAR}) + foreach(_ARG ${ARGN}) + if(NOT "${_ARG}" STREQUAL "") + set(${VAR} ${_ARG}) + break() + endif() + endforeach() + endif() + # remove these ctest configuration variables from the defines + # passed to the Kokkos configuration + if("${VAR}" IN_LIST KOKKOS_CMAKE_ARGS) + list(REMOVE_ITEM KOKKOS_CMAKE_ARGS "${VAR}") + endif() +endmacro() + +# determine the default working directory +if(NOT "$ENV{WORKSPACE}" STREQUAL "") + set(WORKING_DIR "$ENV{WORKSPACE}") +else() + get_filename_component(WORKING_DIR ${CMAKE_CURRENT_LIST_DIR} DIRECTORY) +endif() + +# determine the hostname +execute_process(COMMAND hostname + OUTPUT_VARIABLE HOSTNAME + OUTPUT_STRIP_TRAILING_WHITESPACE) + +SET_DEFAULT(HOSTNAME "$ENV{HOSTNAME}") + +# get the number of processors +include(ProcessorCount) +ProcessorCount(NUM_PROCESSORS) + +# find git +find_package(Git QUIET) +if(NOT GIT_EXECUTABLE) + unset(GIT_EXECUTABLE CACHE) + unset(GIT_EXECUTABLE) +endif() + +function(EXECUTE_GIT_COMMAND VAR) + set(${VAR} "" PARENT_SCOPE) + execute_process(COMMAND ${GIT_EXECUTABLE} ${ARGN} + OUTPUT_VARIABLE VAL + RESULT_VARIABLE RET + OUTPUT_STRIP_TRAILING_WHITESPACE + WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR} + ERROR_QUIET) + string(REPLACE ";" " " _CMD "${GIT_EXECUTABLE} ${ARGN}") + set(LAST_GIT_COMMAND "${_CMD}" PARENT_SCOPE) + if(RET EQUAL 0) + set(${VAR} "${VAL}" PARENT_SCOPE) + endif() +endfunction() + +# just gets the git branch name if available +function(GET_GIT_BRANCH_NAME VAR) + execute_git_command(GIT_BRANCH branch --show-current) + set(_INVALID "%D" "HEAD") + if(NOT GIT_BRANCH OR "${GIT_BRANCH}" IN_LIST _INVALID) + execute_git_command(GIT_BRANCH show -s --format=%D) + if(NOT GIT_BRANCH OR "${GIT_BRANCH}" IN_LIST _INVALID) + execute_git_command(GIT_BRANCH --describe all) + endif() + endif() + # + if(GIT_BRANCH) + string(REPLACE " " ";" _DESC "${GIT_BRANCH}") + # just set it to last one via loop instead of wonky cmake index manip + foreach(_ITR ${_DESC}) + set(GIT_BRANCH "${_ITR}") + endforeach() + set(${VAR} "${GIT_BRANCH}" PARENT_SCOPE) + message(STATUS "GIT BRANCH via '${LAST_GIT_COMMAND}': ${GIT_BRANCH}") + endif() +endfunction() + +# just gets the git branch name if available +function(GET_GIT_AUTHOR_NAME VAR) + execute_git_command(GIT_AUTHOR show -s --format=%an) + if(GIT_AUTHOR) + string(LENGTH "${GIT_AUTHOR}" STRLEN) + # if the build name gets too long, this can cause submission errors + if(STRLEN GREATER 24) + # remove middle initial + string(REGEX REPLACE " [A-Z]\. " " " GIT_AUTHOR "${GIT_AUTHOR}") + # get first and sur name + string(REGEX REPLACE "([A-Za-z]+) ([A-Za-z]+)" "\\1" F_NAME "${GIT_AUTHOR}") + string(REGEX REPLACE "([A-Za-z]+) ([A-Za-z]+)" "\\2" S_NAME "${GIT_AUTHOR}") + if(S_NAME) + set(GIT_AUTHOR "${S_NAME}") + elseif(F_NAME) + set(GIT_AUTHOR "${F_NAME}") + endif() + endif() + # remove any spaces, quotes, periods, etc. + string(REGEX REPLACE "[ ',;_\.\"]+" "" GIT_AUTHOR "${GIT_AUTHOR}") + set(${VAR} "${GIT_AUTHOR}" PARENT_SCOPE) + message(STATUS "GIT AUTHOR via '${LAST_GIT_COMMAND}': ${GIT_AUTHOR}") + endif() +endfunction() + +# get the name of the branch +GET_GIT_BRANCH_NAME(GIT_BRANCH) +# get the name of the author +GET_GIT_AUTHOR_NAME(GIT_AUTHOR) +# author, prefer git method for consistency +SET_DEFAULT_ARG1(AUTHOR ${GIT_AUTHOR} $ENV{GIT_AUTHOR} $ENV{AUTHOR}) +# SLUG == owner_name/repo_name +SET_DEFAULT_ARG1(SLUG $ENV{TRAVIS_PULL_REQUEST_SLUG} $ENV{TRAVIS_REPO_SLUG} $ENV{APPVEYOR_REPO_NAME} $ENV{PULL_REQUEST_SLUG} $ENV{REPO_SLUG}) +# branch name +SET_DEFAULT_ARG1(BRANCH $ENV{TRAVIS_PULL_REQUEST_BRANCH} $ENV{TRAVIS_BRANCH} $ENV{APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH} $ENV{APPVEYOR_REPO_BRANCH} $ENV{GIT_BRANCH} $ENV{BRANCH_NAME} $ENV{BRANCH} ${GIT_BRANCH}) +# pull request number +SET_DEFAULT_ARG1(PULL_REQUEST_NUM $ENV{TRAVIS_PULL_REQUEST} $ENV{CHANGE_ID} $ENV{APPVEYOR_PULL_REQUEST_NUMBER} $ENV{PULL_REQUEST_NUM}) +# get the event type, e.g. push, pull_request, api, cron, etc. +SET_DEFAULT_ARG1(EVENT_TYPE $ENV{TRAVIS_EVENT_TYPE} ${EVENT_TYPE}) + +if("${BRANCH}" STREQUAL "") + message(STATUS "Checked: environment variables for Travis, Appveyor, Jenkins (git plugin), BRANCH_NAME, BRANCH and 'git branch --show-current'") + message(FATAL_ERROR "Error! Git branch could not be determined. Please provide -DBRANCH=") +endif() + +#----------------------------------------------------------------------------------------# +# +# Set default values if not provided on command-line +# +#----------------------------------------------------------------------------------------# + +SET_DEFAULT(SOURCE_DIR "${WORKING_DIR}") # source directory +SET_DEFAULT(BINARY_DIR "${WORKING_DIR}/build") # build directory +SET_DEFAULT(BUILD_TYPE "${CMAKE_BUILD_TYPE}") # Release, Debug, etc. +SET_DEFAULT(MODEL "Continuous") # Continuous, Nightly, or Experimental +SET_DEFAULT(JOBS 1) # number of parallel ctests +SET_DEFAULT(CTEST_COMMAND "${CMAKE_CTEST_COMMAND}") # just in case +SET_DEFAULT(CTEST_ARGS "-V --output-on-failure") # extra arguments when ctest is called +SET_DEFAULT(GIT_EXECUTABLE "git") # ctest_update +SET_DEFAULT(TARGET "all") # build target +SET_DEFAULT_ARG1(SITE "$ENV{SITE}" + "${HOSTNAME}") # update site +SET_DEFAULT_ARG1(BUILD_JOBS "$ENV{BUILD_JOBS}" + "${NUM_PROCESSORS}") # number of parallel compile jobs +# +# The variable below correspond to ctest arguments, i.e. START,END,STRIDE are +# '-I START,END,STRIDE' +# +SET_DEFAULT(START "") +SET_DEFAULT(END "") +SET_DEFAULT(STRIDE "") +SET_DEFAULT(INCLUDE "") +SET_DEFAULT(EXCLUDE "") +SET_DEFAULT(INCLUDE_LABEL "") +SET_DEFAULT(EXCLUDE_LABEL "") +SET_DEFAULT(PARALLEL_LEVEL "") +SET_DEFAULT(STOP_TIME "") +SET_DEFAULT(LABELS "") +SET_DEFAULT(NOTES "") + +# default static build tag for Nightly +set(BUILD_TAG "${BRANCH}") + +if(NOT BUILD_TYPE) + # default for kokkos if not specified + set(BUILD_TYPE "RelWithDebInfo") +endif() + +# generate dynamic name if continuous or experimental model +if(NOT "${MODEL}" STREQUAL "Nightly") + if(EVENT_TYPE AND PULL_REQUEST_NUM) + # e.g. pull_request/123 + if(AUTHOR) + set(BUILD_TAG "${AUTHOR}/${EVENT_TYPE}/${PULL_REQUEST_NUM}") + else() + set(BUILD_TAG "${EVENT_TYPE}/${PULL_REQUEST_NUM}") + endif() + elseif(SLUG) + # e.g. owner_name/repo_name + set(BUILD_TAG "${SLUG}") + elseif(AUTHOR) + set(BUILD_TAG "${AUTHOR}/${BRANCH}") + endif() + if(EVENT_TYPE AND NOT PULL_REQUEST_NUM) + set(BUILD_TAG "${BUILD_TAG}-${EVENT_TYPE}") + endif() +endif() + +# unnecessary +string(REPLACE "/remotes/" "/" BUILD_TAG "${BUILD_TAG}") +string(REPLACE "/origin/" "/" BUILD_TAG "${BUILD_TAG}") + +message(STATUS "BUILD_TAG: ${BUILD_TAG}") + +set(BUILD_NAME "[${BUILD_TAG}] [${BUILD_NAME}-${BUILD_TYPE}]") + +# colons in build name create extra (empty) entries in CDash +string(REPLACE ":" "-" BUILD_NAME "${BUILD_NAME}") +# unnecessary info +string(REPLACE "/merge]" "]" BUILD_NAME "${BUILD_NAME}") +# consistency +string(REPLACE "/pr/" "/pull/" BUILD_NAME "${BUILD_NAME}") +string(REPLACE "pull_request/" "pull/" BUILD_NAME "${BUILD_NAME}") +# miscellaneous from missing fields +string(REPLACE "--" "-" BUILD_NAME "${BUILD_NAME}") +string(REPLACE "-]" "]" BUILD_NAME "${BUILD_NAME}") + +# check binary directory +if(EXISTS ${BINARY_DIR}) + if(NOT IS_DIRECTORY "${BINARY_DIR}") + message(FATAL_ERROR "Error! '${BINARY_DIR}' already exists and is not a directory!") + endif() + file(GLOB BINARY_DIR_FILES "${BINARY_DIR}/*") + if(NOT "${BINARY_DIR_FILES}" STREQUAL "") + message(FATAL_ERROR "Error! '${BINARY_DIR}' already exists and is not empty!") + endif() +endif() + +get_filename_component(SOURCE_REALDIR ${SOURCE_DIR} REALPATH) +get_filename_component(BINARY_REALDIR ${BINARY_DIR} REALPATH) + +#----------------------------------------------------------------------------------------# +# +# Generate the CTestConfig.cmake +# +#----------------------------------------------------------------------------------------# + +set(CONFIG_ARGS) +foreach(_ARG ${KOKKOS_CMAKE_ARGS}) + if(NOT "${${_ARG}}" STREQUAL "") + get_property(_ARG_TYPE CACHE ${_ARG} PROPERTY TYPE) + if("${_ARG_TYPE}" STREQUAL "UNINITIALIZED") + if("${${_ARG}}" STREQUAL "ON" OR "${${_ARG}}" STREQUAL "OFF") + set(_ARG_TYPE "BOOL") + elseif(EXISTS "${${_ARG}}" AND NOT IS_DIRECTORY "${${_ARG}}") + set(_ARG_TYPE "FILEPATH") + elseif(EXISTS "${${_ARG}}" AND IS_DIRECTORY "${${_ARG}}") + set(_ARG_TYPE "PATH") + elseif(NOT "${${_ARG}}" STREQUAL "") + set(_ARG_TYPE "STRING") + endif() + endif() + set(CONFIG_ARGS "${CONFIG_ARGS}set(${_ARG} \"${${_ARG}}\" CACHE ${_ARG_TYPE} \"\")\n") + endif() +endforeach() + +file(WRITE ${BINARY_REALDIR}/initial-cache.cmake +" +set(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS}\" CACHE STRING \"\") +${CONFIG_ARGS} +") + +file(READ ${BINARY_REALDIR}/initial-cache.cmake _CACHE_INFO) +message(STATUS "Initial cache:\n${_CACHE_INFO}") + +# initialize the cache +set(CONFIG_ARGS "-C ${BINARY_REALDIR}/initial-cache.cmake") + + +# generate the CTestConfig.cmake +configure_file( + ${CMAKE_CURRENT_LIST_DIR}/CTestConfig.cmake.in + ${BINARY_REALDIR}/CTestConfig.cmake + @ONLY) + +# copy/generate the dashboard script +configure_file( + ${CMAKE_CURRENT_LIST_DIR}/KokkosCTest.cmake.in + ${BINARY_REALDIR}/KokkosCTest.cmake + @ONLY) + +# custom CTest settings go in ${BINARY_DIR}/CTestCustom.cmake +execute_process( + COMMAND ${CMAKE_COMMAND} -E touch CTestCustom.cmake + WORKING_DIRECTORY ${BINARY_REALDIR} + ) + +#----------------------------------------------------------------------------------------# +# +# Execute CTest +# +#----------------------------------------------------------------------------------------# + +message(STATUS "") +message(STATUS "BUILD_NAME: ${BUILD_NAME}") +message(STATUS "Executing '${CTEST_COMMAND} -S KokkosCTest.cmake ${CTEST_ARGS}'...") +message(STATUS "") + +# e.g. -DCTEST_ARGS="--output-on-failure -VV" should really be -DCTEST_ARGS="--output-on-failure;-VV" +string(REPLACE " " ";" CTEST_ARGS "${CTEST_ARGS}") + +execute_process( + COMMAND ${CTEST_COMMAND} -S KokkosCTest.cmake ${CTEST_ARGS} + RESULT_VARIABLE RET + WORKING_DIRECTORY ${BINARY_REALDIR} + ) + +# ensure that any non-zero result variable gets propagated +if(NOT RET EQUAL 0) + message(FATAL_ERROR "CTest return non-zero exit code: ${RET}") +endif() diff --git a/lib/kokkos/cmake/KokkosCTest.cmake.in b/lib/kokkos/cmake/KokkosCTest.cmake.in new file mode 100644 index 0000000000..b6917f3cc1 --- /dev/null +++ b/lib/kokkos/cmake/KokkosCTest.cmake.in @@ -0,0 +1,261 @@ +cmake_minimum_required(VERSION 3.16 FATAL_ERROR) + +if(EXISTS "${CMAKE_CURRENT_LIST_DIR}/CTestConfig.cmake") + include("${CMAKE_CURRENT_LIST_DIR}/CTestConfig.cmake") +endif() + +include(ProcessorCount) +ProcessorCount(CTEST_PROCESSOR_COUNT) + +cmake_policy(SET CMP0009 NEW) +cmake_policy(SET CMP0011 NEW) + +# ---------------------------------------------------------------------------- # +# -- Commands +# ---------------------------------------------------------------------------- # +find_program(CTEST_CMAKE_COMMAND NAMES cmake) +find_program(CTEST_UNAME_COMMAND NAMES uname) + +find_program(CTEST_BZR_COMMAND NAMES bzr) +find_program(CTEST_CVS_COMMAND NAMES cvs) +find_program(CTEST_GIT_COMMAND NAMES git) +find_program(CTEST_HG_COMMAND NAMES hg) +find_program(CTEST_P4_COMMAND NAMES p4) +find_program(CTEST_SVN_COMMAND NAMES svn) + +find_program(VALGRIND_COMMAND NAMES valgrind) +find_program(GCOV_COMMAND NAMES gcov) +find_program(LCOV_COMMAND NAMES llvm-cov) +find_program(MEMORYCHECK_COMMAND NAMES valgrind ) + +set(MEMORYCHECK_TYPE Valgrind) +# set(MEMORYCHECK_TYPE Purify) +# set(MEMORYCHECK_TYPE BoundsChecker) +# set(MEMORYCHECK_TYPE ThreadSanitizer) +# set(MEMORYCHECK_TYPE AddressSanitizer) +# set(MEMORYCHECK_TYPE LeakSanitizer) +# set(MEMORYCHECK_TYPE MemorySanitizer) +# set(MEMORYCHECK_TYPE UndefinedBehaviorSanitizer) +set(MEMORYCHECK_COMMAND_OPTIONS "--trace-children=yes --leak-check=full") + +# ---------------------------------------------------------------------------- # +# -- Settings +# ---------------------------------------------------------------------------- # +## -- Process timeout in seconds +set(CTEST_TIMEOUT "7200") +## -- Set output to English +set(ENV{LC_MESSAGES} "en_EN" ) + + +# ---------------------------------------------------------------------------- # +# -- Copy ctest configuration file +# ---------------------------------------------------------------------------- # +macro(COPY_CTEST_CONFIG_FILES) + + foreach(_FILE CTestConfig.cmake CTestCustom.cmake) + + # if current directory is not binary or source directory + if(NOT "${CMAKE_CURRENT_LIST_DIR}" STREQUAL "${CTEST_BINARY_DIRECTORY}" AND + NOT "${CTEST_SOURCE_DIRECTORY}" STREQUAL "${CTEST_BINARY_DIRECTORY}") + + # if file exists in current directory + if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/${_FILE}) + configure_file(${CMAKE_CURRENT_LIST_DIR}/${_FILE} + ${CTEST_BINARY_DIRECTORY}/${_FILE} COPYONLY) + endif() + + # if source and binary differ + elseif(NOT "${CTEST_SOURCE_DIRECTORY}" STREQUAL "${CTEST_BINARY_DIRECTORY}") + + # if file exists in source directory but not in binary directory + if(EXISTS ${CTEST_SOURCE_DIRECTORY}/${_FILE} AND + NOT EXISTS ${CTEST_BINARY_DIRECTORY}/${_FILE}) + configure_file(${CTEST_SOURCE_DIRECTORY}/${_FILE} + ${CTEST_BINARY_DIRECTORY}/${_FILE} COPYONLY) + endif() + + endif() + endforeach() + +endmacro() + +ctest_read_custom_files("${CMAKE_CURRENT_LIST_DIR}") + +message(STATUS "CTEST_MODEL: ${CTEST_MODEL}") + +#-------------------------------------------------------------------------# +# Start +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running START_CTEST stage...") +message(STATUS "") + +ctest_start(${CTEST_MODEL} TRACK ${CTEST_MODEL} ${APPEND_CTEST} + ${CTEST_SOURCE_DIRECTORY} ${CTEST_BINARY_DIRECTORY}) + + +#-------------------------------------------------------------------------# +# Config +# +copy_ctest_config_files() +ctest_read_custom_files("${CTEST_BINARY_DIRECTORY}") + + +#-------------------------------------------------------------------------# +# Update +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_UPDATE stage...") +message(STATUS "") + +ctest_update(SOURCE "${CTEST_SOURCE_DIRECTORY}" + RETURN_VALUE up_ret) + + +#-------------------------------------------------------------------------# +# Configure +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_CONFIGURE stage...") +message(STATUS "") + +ctest_configure(BUILD "${CTEST_BINARY_DIRECTORY}" + SOURCE ${CTEST_SOURCE_DIRECTORY} + ${APPEND_CTEST} + OPTIONS "${CTEST_CONFIGURE_OPTIONS}" + RETURN_VALUE config_ret) + + +#-------------------------------------------------------------------------# +# Echo configure log bc Damien wants to delay merging this PR for eternity +# +file(GLOB _configure_log "${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastConfigure*.log") +# should only have one but loop just for safety +foreach(_LOG ${_configure_log}) + file(READ ${_LOG} _LOG_MESSAGE) + message(STATUS "Configure Log: ${_LOG}") + message(STATUS "\n${_LOG_MESSAGE}\n") +endforeach() + + +#-------------------------------------------------------------------------# +# Build +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_BUILD stage...") +message(STATUS "") + +ctest_build(BUILD "${CTEST_BINARY_DIRECTORY}" + ${APPEND_CTEST} + RETURN_VALUE build_ret) + + +#-------------------------------------------------------------------------# +# Echo build log bc Damien wants to delay merging this PR for eternity +# +file(GLOB _build_log "${CTEST_BINARY_DIRECTORY}/Testing/Temporary/LastBuild*.log") +# should only have one but loop just for safety +foreach(_LOG ${_build_log}) + file(READ ${_LOG} _LOG_MESSAGE) + message(STATUS "Build Log: ${_LOG}") + message(STATUS "\n${_LOG_MESSAGE}\n") +endforeach() + + +#-------------------------------------------------------------------------# +# Test +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_TEST stage...") +message(STATUS "") + +ctest_test(RETURN_VALUE test_ret + ${APPEND_CTEST} + ${START_CTEST} + ${END_CTEST} + ${STRIDE_CTEST} + ${INCLUDE_CTEST} + ${EXCLUDE_CTEST} + ${INCLUDE_LABEL_CTEST} + ${EXCLUDE_LABEL_CTEST} + ${PARALLEL_LEVEL_CTEST} + ${STOP_TIME_CTEST} + SCHEDULE_RANDOM OFF) + + +#-------------------------------------------------------------------------# +# Coverage +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_COVERAGE stage...") +message(STATUS "") + +execute_process(COMMAND ${CTEST_COVERAGE_COMMAND} ${CTEST_COVERAGE_EXTRA_FLAGS} + WORKING_DIRECTORY ${CTEST_BINARY_DIRECTORY} + ERROR_QUIET) + +ctest_coverage(${APPEND_CTEST} + ${CTEST_COVERAGE_LABELS} + RETURN_VALUE cov_ret) + + +#-------------------------------------------------------------------------# +# MemCheck +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_MEMCHECK stage...") +message(STATUS "") + +ctest_memcheck(RETURN_VALUE mem_ret + ${APPEND_CTEST} + ${START_CTEST} + ${END_CTEST} + ${STRIDE_CTEST} + ${INCLUDE_CTEST} + ${EXCLUDE_CTEST} + ${INCLUDE_LABEL_CTEST} + ${EXCLUDE_LABEL_CTEST} + ${PARALLEL_LEVEL_CTEST}) + + +#-------------------------------------------------------------------------# +# Submit +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Running CTEST_SUBMIT stage...") +message(STATUS "") + +file(GLOB_RECURSE NOTE_FILES "${CTEST_BINARY_DIRECTORY}/*CTestNotes.cmake") +foreach(_FILE ${NOTE_FILES}) + message(STATUS "Including CTest notes files: \"${_FILE}\"...") + include("${_FILE}") +endforeach() + +# capture submit error so it doesn't fail because of a submission error +ctest_submit(RETURN_VALUE submit_ret + RETRY_COUNT 2 + RETRY_DELAY 10 + CAPTURE_CMAKE_ERROR submit_err) + +#-------------------------------------------------------------------------# +# Submit +# +message(STATUS "") +message(STATUS "[${CTEST_BUILD_NAME}] Finished ${CTEST_MODEL} Stages (${STAGES})") +message(STATUS "") + + +#-------------------------------------------------------------------------# +# Non-zero exit codes for important errors +# +if(NOT config_ret EQUAL 0) + message(FATAL_ERROR "Error during configuration! Exit code: ${config_ret}") +endif() + +if(NOT build_ret EQUAL 0) + message(FATAL_ERROR "Error during build! Exit code: ${build_ret}") +endif() + +if(NOT test_ret EQUAL 0) + message(FATAL_ERROR "Error during testing! Exit code: ${test_ret}") +endif() diff --git a/lib/kokkos/cmake/KokkosConfig.cmake.in b/lib/kokkos/cmake/KokkosConfig.cmake.in index 9fbd22ee5c..44a8fcd9c3 100644 --- a/lib/kokkos/cmake/KokkosConfig.cmake.in +++ b/lib/kokkos/cmake/KokkosConfig.cmake.in @@ -19,17 +19,44 @@ INCLUDE("${Kokkos_CMAKE_DIR}/KokkosTargets.cmake") INCLUDE("${Kokkos_CMAKE_DIR}/KokkosConfigCommon.cmake") UNSET(Kokkos_CMAKE_DIR) -# if CUDA was enabled and separable compilation was specified, e.g. -# find_package(Kokkos COMPONENTS separable_compilation) -# then we set the RULE_LAUNCH_COMPILE and RULE_LAUNCH_LINK -IF(@Kokkos_ENABLE_CUDA@ AND NOT "separable_compilation" IN_LIST Kokkos_FIND_COMPONENTS) +# check for conflicts +IF("launch_compiler" IN_LIST Kokkos_FIND_COMPONENTS AND + "separable_compilation" IN_LIST Kokkos_FIND_COMPONENTS) + MESSAGE(STATUS "'launch_compiler' implies global redirection of targets depending on Kokkos to appropriate compiler.") + MESSAGE(STATUS "'separable_compilation' implies explicitly defining where redirection occurs via 'kokkos_compilation(PROJECT|TARGET|SOURCE|DIRECTORY ...)'") + MESSAGE(FATAL_ERROR "Conflicting COMPONENTS: 'launch_compiler' and 'separable_compilation'") +ENDIF() + +IF("launch_compiler" IN_LIST Kokkos_FIND_COMPONENTS) + # + # if find_package(Kokkos COMPONENTS launch_compiler) then rely on the + # RULE_LAUNCH_COMPILE and RULE_LAUNCH_LINK to always redirect to the + # appropriate compiler for Kokkos + # + + MESSAGE(STATUS "kokkos_launch_compiler is enabled globally. C++ compiler commands with -DKOKKOS_DEPENDENCE will be redirected to the appropriate compiler for Kokkos") + kokkos_compilation( + GLOBAL + CHECK_CUDA_COMPILES) + +ELSEIF(@Kokkos_ENABLE_CUDA@ AND NOT "separable_compilation" IN_LIST Kokkos_FIND_COMPONENTS) + # + # if CUDA was enabled, separable compilation was not specified, and current compiler + # cannot compile CUDA, then set the RULE_LAUNCH_COMPILE and RULE_LAUNCH_LINK globally and + # kokkos_launch_compiler will re-direct to the compiler used to compile CUDA code during installation. + # kokkos_launch_compiler will re-direct if ${CMAKE_CXX_COMPILER} and -DKOKKOS_DEPENDENCE is present, + # otherwise, the original command will be executed + # + # run test to see if CMAKE_CXX_COMPILER=nvcc_wrapper kokkos_compiler_is_nvcc(IS_NVCC ${CMAKE_CXX_COMPILER}) - # if not nvcc_wrapper, use RULE_LAUNCH_COMPILE and RULE_LAUNCH_LINK - IF(NOT IS_NVCC AND NOT CMAKE_CXX_COMPILER_ID STREQUAL Clang AND - (NOT DEFINED Kokkos_LAUNCH_COMPILER OR Kokkos_LAUNCH_COMPILER)) - MESSAGE(STATUS "kokkos_launch_compiler is enabled globally. C++ compiler commands with -DKOKKOS_DEPENDENCE will be redirected to nvcc_wrapper") + + # if not nvcc_wrapper and Kokkos_LAUNCH_COMPILER was not set to OFF + IF(NOT IS_NVCC AND (NOT DEFINED Kokkos_LAUNCH_COMPILER OR Kokkos_LAUNCH_COMPILER)) + MESSAGE(STATUS "kokkos_launch_compiler is enabled globally. C++ compiler commands with -DKOKKOS_DEPENDENCE will be redirected to the appropriate compiler for Kokkos") kokkos_compilation(GLOBAL) ENDIF() - UNSET(IS_NVCC) # be mindful of the environment, pollution is bad + + # be mindful of the environment, pollution is bad + UNSET(IS_NVCC) ENDIF() diff --git a/lib/kokkos/cmake/KokkosConfigCommon.cmake.in b/lib/kokkos/cmake/KokkosConfigCommon.cmake.in index 42c755c215..ab93e65afe 100644 --- a/lib/kokkos/cmake/KokkosConfigCommon.cmake.in +++ b/lib/kokkos/cmake/KokkosConfigCommon.cmake.in @@ -3,6 +3,7 @@ SET(Kokkos_OPTIONS @KOKKOS_ENABLED_OPTIONS@) SET(Kokkos_TPLS @KOKKOS_ENABLED_TPLS@) SET(Kokkos_ARCH @KOKKOS_ENABLED_ARCH_LIST@) SET(Kokkos_CXX_COMPILER "@CMAKE_CXX_COMPILER@") +SET(Kokkos_CXX_COMPILER_ID "@KOKKOS_CXX_COMPILER_ID@") # These are needed by KokkosKernels FOREACH(DEV ${Kokkos_DEVICES}) @@ -13,13 +14,13 @@ IF(NOT Kokkos_FIND_QUIETLY) MESSAGE(STATUS "Enabled Kokkos devices: ${Kokkos_DEVICES}") ENDIF() -IF (Kokkos_ENABLE_CUDA AND ${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.14.0") - #If we are building CUDA, we have tricked CMake because we declare a CXX project - #If the default C++ standard for a given compiler matches the requested - #standard, then CMake just omits the -std flag in later versions of CMake - #This breaks CUDA compilation (CUDA compiler can have a different default - #-std then the underlying host compiler by itself). Setting this variable - #forces CMake to always add the -std flag even if it thinks it doesn't need it +IF (Kokkos_ENABLE_CUDA) + # If we are building CUDA, we have tricked CMake because we declare a CXX project + # If the default C++ standard for a given compiler matches the requested + # standard, then CMake just omits the -std flag in later versions of CMake + # This breaks CUDA compilation (CUDA compiler can have a different default + # -std then the underlying host compiler by itself). Setting this variable + # forces CMake to always add the -std flag even if it thinks it doesn't need it SET(CMAKE_CXX_STANDARD_DEFAULT 98 CACHE INTERNAL "" FORCE) ENDIF() @@ -90,52 +91,6 @@ function(kokkos_check) endif() endfunction() -# this function is provided to easily select which files use nvcc_wrapper: -# -# GLOBAL --> all files -# TARGET --> all files in a target -# SOURCE --> specific source files -# DIRECTORY --> all files in directory -# PROJECT --> all files/targets in a project/subproject -# -FUNCTION(kokkos_compilation) - CMAKE_PARSE_ARGUMENTS(COMP "GLOBAL;PROJECT" "" "DIRECTORY;TARGET;SOURCE" ${ARGN}) - - # search relative first and then absolute - SET(_HINTS "${CMAKE_CURRENT_LIST_DIR}/../.." "@CMAKE_INSTALL_PREFIX@") - - # find kokkos_launch_compiler - FIND_PROGRAM(Kokkos_COMPILE_LAUNCHER - NAMES kokkos_launch_compiler - HINTS ${_HINTS} - PATHS ${_HINTS} - PATH_SUFFIXES bin) - - IF(NOT Kokkos_COMPILE_LAUNCHER) - MESSAGE(FATAL_ERROR "Kokkos could not find 'kokkos_launch_compiler'. Please set '-DKokkos_COMPILE_LAUNCHER=/path/to/launcher'") - ENDIF() - - IF(COMP_GLOBAL) - # if global, don't bother setting others - SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - ELSE() - FOREACH(_TYPE PROJECT DIRECTORY TARGET SOURCE) - # make project/subproject scoping easy, e.g. KokkosCompilation(PROJECT) after project(...) - IF("${_TYPE}" STREQUAL "PROJECT" AND COMP_${_TYPE}) - LIST(APPEND COMP_DIRECTORY ${PROJECT_SOURCE_DIR}) - UNSET(COMP_${_TYPE}) - ENDIF() - # set the properties if defined - IF(COMP_${_TYPE}) - # MESSAGE(STATUS "Using nvcc_wrapper :: ${_TYPE} :: ${COMP_${_TYPE}}") - SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - ENDIF() - ENDFOREACH() - ENDIF() -ENDFUNCTION() - # A test to check whether a downstream project set the C++ compiler to NVCC or not # this is called only when Kokkos was installed with Kokkos_ENABLE_CUDA=ON FUNCTION(kokkos_compiler_is_nvcc VAR COMPILER) @@ -159,3 +114,161 @@ FUNCTION(kokkos_compiler_is_nvcc VAR COMPILER) ENDIF() ENDFUNCTION() +# this function checks whether the current CXX compiler supports building CUDA +FUNCTION(kokkos_cxx_compiler_cuda_test _VAR _COMPILER) + + FILE(WRITE ${PROJECT_BINARY_DIR}/compile_tests/compiles_cuda.cu +" +#include +#include + +__global__ +void kernel(int sz, double* data) +{ + int _beg = blockIdx.x * blockDim.x + threadIdx.x; + for(int i = _beg; i < sz; ++i) + data[i] += static_cast(i); +} + +int main() +{ + double* data = NULL; + int blocks = 64; + int grids = 64; + int ret = cudaMalloc(&data, blocks * grids * sizeof(double)); + if(ret != cudaSuccess) + return EXIT_FAILURE; + kernel<<>>(blocks * grids, data); + cudaDeviceSynchronize(); + return EXIT_SUCCESS; +} +") + + # save the command for debugging + SET(_COMMANDS "${_COMPILER} ${ARGN} -c ${PROJECT_BINARY_DIR}/compile_tests/compiles_cuda.cu") + + # use execute_process instead of try compile because we want to set custom compiler + EXECUTE_PROCESS(COMMAND ${_COMPILER} ${ARGN} -c ${PROJECT_BINARY_DIR}/compile_tests/compiles_cuda.cu + RESULT_VARIABLE _RET + WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/compile_tests + TIMEOUT 15 + OUTPUT_QUIET + ERROR_QUIET) + + IF(NOT _RET EQUAL 0) + # save the command for debugging + SET(_COMMANDS "${_COMMAND}\n${_COMPILER} --cuda-gpu-arch=sm_35 ${ARGN} -c ${PROJECT_BINARY_DIR}/compile_tests/compiles_cuda.cu") + # try the compile test again with clang arguments + EXECUTE_PROCESS(COMMAND ${_COMPILER} --cuda-gpu-arch=sm_35 -c ${PROJECT_BINARY_DIR}/compile_tests/compiles_cuda.cu + RESULT_VARIABLE _RET + WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/compile_tests + TIMEOUT 15 + OUTPUT_QUIET + ERROR_QUIET) + ENDIF() + + SET(${_VAR}_COMMANDS "${_COMMANDS}" PARENT_SCOPE) + SET(${_VAR} ${_RET} PARENT_SCOPE) +ENDFUNCTION() + +# this function is provided to easily select which files use the same compiler as Kokkos +# when it was installed (or nvcc_wrapper): +# +# GLOBAL --> all files +# TARGET --> all files in a target +# SOURCE --> specific source files +# DIRECTORY --> all files in directory +# PROJECT --> all files/targets in a project/subproject +# +# Use the COMPILER argument to specify a compiler, if needed. By default, it will +# set the values to ${Kokkos_CXX_COMPILER} unless Kokkos_ENABLE_CUDA=ON and +# Kokkos_CXX_COMPILER_ID is NVIDIA, then it will set it to nvcc_wrapper +# +# Use CHECK_CUDA_COMPILES to run a check when CUDA is enabled +# +FUNCTION(kokkos_compilation) + CMAKE_PARSE_ARGUMENTS(COMP + "GLOBAL;PROJECT;CHECK_CUDA_COMPILES" + "COMPILER" + "DIRECTORY;TARGET;SOURCE;COMMAND_PREFIX" + ${ARGN}) + + # if built w/o CUDA support, we want to basically make this a no-op + SET(_Kokkos_ENABLE_CUDA @Kokkos_ENABLE_CUDA@) + + # search relative first and then absolute + SET(_HINTS "${CMAKE_CURRENT_LIST_DIR}/../.." "@CMAKE_INSTALL_PREFIX@") + + # find kokkos_launch_compiler + FIND_PROGRAM(Kokkos_COMPILE_LAUNCHER + NAMES kokkos_launch_compiler + HINTS ${_HINTS} + PATHS ${_HINTS} + PATH_SUFFIXES bin) + + IF(NOT Kokkos_COMPILE_LAUNCHER) + MESSAGE(FATAL_ERROR "Kokkos could not find 'kokkos_launch_compiler'. Please set '-DKokkos_COMPILE_LAUNCHER=/path/to/launcher'") + ENDIF() + + # if COMPILER was not specified, assume Kokkos_CXX_COMPILER + IF(NOT COMP_COMPILER) + SET(COMP_COMPILER ${Kokkos_CXX_COMPILER}) + IF(_Kokkos_ENABLE_CUDA AND Kokkos_CXX_COMPILER_ID STREQUAL NVIDIA) + # find nvcc_wrapper + FIND_PROGRAM(Kokkos_NVCC_WRAPPER + NAMES nvcc_wrapper + HINTS ${_HINTS} + PATHS ${_HINTS} + PATH_SUFFIXES bin) + # fatal if we can't nvcc_wrapper + IF(NOT Kokkos_NVCC_WRAPPER) + MESSAGE(FATAL_ERROR "Kokkos could not find nvcc_wrapper. Please set '-DKokkos_NVCC_WRAPPER=/path/to/nvcc_wrapper'") + ENDIF() + SET(COMP_COMPILER ${Kokkos_NVCC_WRAPPER}) + ENDIF() + ENDIF() + + # check that the original compiler still exists! + IF(NOT EXISTS ${COMP_COMPILER}) + MESSAGE(FATAL_ERROR "Kokkos could not find original compiler: '${COMP_COMPILER}'") + ENDIF() + + # try to ensure that compiling cuda code works! + IF(_Kokkos_ENABLE_CUDA AND COMP_CHECK_CUDA_COMPILES) + + # this may fail if kokkos_compiler launcher was used during install + kokkos_cxx_compiler_cuda_test(_COMPILES_CUDA + ${Kokkos_COMPILE_LAUNCHER} ${COMP_COMPILER} ${CMAKE_CXX_COMPILER}) + + # if above failed, throw an error + IF(NOT _COMPILES_CUDA) + MESSAGE(FATAL_ERROR "kokkos_cxx_compiler_cuda_test failed! Test commands:\n${_COMPILES_CUDA_COMMANDS}") + ENDIF() + ENDIF() + + IF(COMP_COMMAND_PREFIX) + SET(_PREFIX "${COMP_COMMAND_PREFIX}") + STRING(REPLACE ";" " " _PREFIX "${COMP_COMMAND_PREFIX}") + SET(Kokkos_COMPILER_LAUNCHER "${_PREFIX} ${Kokkos_COMPILE_LAUNCHER}") + ENDIF() + + IF(COMP_GLOBAL) + # if global, don't bother setting others + SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${COMP_COMPILER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${COMP_COMPILER} ${CMAKE_CXX_COMPILER}") + ELSE() + FOREACH(_TYPE PROJECT DIRECTORY TARGET SOURCE) + # make project/subproject scoping easy, e.g. KokkosCompilation(PROJECT) after project(...) + IF("${_TYPE}" STREQUAL "PROJECT" AND COMP_${_TYPE}) + LIST(APPEND COMP_DIRECTORY ${PROJECT_SOURCE_DIR}) + UNSET(COMP_${_TYPE}) + ENDIF() + # set the properties if defined + IF(COMP_${_TYPE}) + # MESSAGE(STATUS "Using ${COMP_COMPILER} :: ${_TYPE} :: ${COMP_${_TYPE}}") + SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${COMP_COMPILER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${COMP_COMPILER} ${CMAKE_CXX_COMPILER}") + ENDIF() + ENDFOREACH() + ENDIF() +ENDFUNCTION() diff --git a/lib/kokkos/cmake/KokkosCore_config.h.in b/lib/kokkos/cmake/KokkosCore_config.h.in index 0259fe69d5..fbfae3711e 100644 --- a/lib/kokkos/cmake/KokkosCore_config.h.in +++ b/lib/kokkos/cmake/KokkosCore_config.h.in @@ -78,6 +78,7 @@ #cmakedefine KOKKOS_ARCH_POWER7 #cmakedefine KOKKOS_ARCH_POWER8 #cmakedefine KOKKOS_ARCH_POWER9 +#cmakedefine KOKKOS_ARCH_INTEL_GEN #cmakedefine KOKKOS_ARCH_KEPLER #cmakedefine KOKKOS_ARCH_KEPLER30 #cmakedefine KOKKOS_ARCH_KEPLER32 @@ -95,5 +96,8 @@ #cmakedefine KOKKOS_ARCH_VOLTA72 #cmakedefine KOKKOS_ARCH_TURING75 #cmakedefine KOKKOS_ARCH_AMPERE80 +#cmakedefine KOKKOS_ARCH_AMPERE86 #cmakedefine KOKKOS_ARCH_AMD_ZEN #cmakedefine KOKKOS_ARCH_AMD_ZEN2 + +#cmakedefine KOKKOS_IMPL_DISABLE_SYCL_DEVICE_PRINTF diff --git a/lib/kokkos/cmake/Modules/CudaToolkit.cmake b/lib/kokkos/cmake/Modules/CudaToolkit.cmake index d620a71d36..eda5541f7c 100644 --- a/lib/kokkos/cmake/Modules/CudaToolkit.cmake +++ b/lib/kokkos/cmake/Modules/CudaToolkit.cmake @@ -481,76 +481,6 @@ if(CMAKE_CUDA_COMPILER_LOADED AND NOT CUDAToolkit_BIN_DIR AND CMAKE_CUDA_COMPILE unset(cuda_dir) endif() -IF(CMAKE_VERSION VERSION_LESS "3.12.0") - function(import_target_link_libraries target) - cmake_parse_arguments(HACK - "SYSTEM;INTERFACE;PUBLIC" - "" - "" - ${ARGN} - ) - get_target_property(LIBS ${target} INTERFACE_LINK_LIBRARIES) - if (LIBS) - list(APPEND LIBS ${HACK_UNPARSED_ARGUMENTS}) - else() - set(LIBS ${HACK_UNPARSED_ARGUMENTS}) - endif() - set_target_properties(${target} PROPERTIES - INTERFACE_LINK_LIBRARIES "${LIBS}") - endfunction() -ELSE() - function(import_target_link_libraries) - target_link_libraries(${ARGN}) - endfunction() -ENDIF() - -IF(CMAKE_VERSION VERSION_LESS "3.13.0") - function(import_target_link_directories target) - cmake_parse_arguments(HACK - "SYSTEM;INTERFACE;PUBLIC" - "" - "" - ${ARGN} - ) - get_target_property(LINK_LIBS ${target} INTERFACE_LINK_LIBRARIES) - if (LINK_LIBS) #could be not-found - set(LINK_LIBS_LIST ${LINK_LIBS}) - endif() - foreach(LIB ${HACK_UNPARSED_ARGUMENTS}) - list(APPEND LINK_LIBS_LIST -L${LIB}) - endforeach() - set_target_properties(${target} PROPERTIES - INTERFACE_LINK_LIBRARIES "${LINK_LIBS_LIST}") - endfunction() -ELSE() - function(import_target_link_directories) - target_link_directories(${ARGN}) - endfunction() -ENDIF() - -IF(CMAKE_VERSION VERSION_LESS "3.12.0") - function(import_target_include_directories target) - cmake_parse_arguments(HACK - "SYSTEM;INTERFACE;PUBLIC" - "" - "" - ${ARGN} - ) - get_target_property(INLUDE_DIRS ${target} INTERFACE_INCLUDE_DIRECTORIES) - if (INCLUDE_DIRS) - list(APPEND INCLUDE_DIRS ${HACK_UNPARSED_ARGUMENTS}) - else() - set(INCLUDE_DIRS ${HACK_UNPARSED_ARGUMENTS}) - endif() - set_target_properties(${target} PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES "${INCLUDE_DIRS}") - endfunction() -ELSE() - function(import_target_include_directories) - target_include_directories(${ARGN}) - endfunction() -ENDIF() - # Try language- or user-provided path first. if(CUDAToolkit_BIN_DIR) find_program(CUDAToolkit_NVCC_EXECUTABLE @@ -854,11 +784,11 @@ if(CUDAToolkit_FOUND) if (NOT TARGET CUDA::${lib_name} AND CUDA_${lib_name}_LIBRARY) add_library(CUDA::${lib_name} IMPORTED INTERFACE) - import_target_include_directories(CUDA::${lib_name} SYSTEM INTERFACE "${CUDAToolkit_INCLUDE_DIRS}") - import_target_link_libraries(CUDA::${lib_name} INTERFACE "${CUDA_${lib_name}_LIBRARY}") + target_include_directories(CUDA::${lib_name} SYSTEM INTERFACE "${CUDAToolkit_INCLUDE_DIRS}") + target_link_libraries(CUDA::${lib_name} INTERFACE "${CUDA_${lib_name}_LIBRARY}") foreach(dep ${arg_DEPS}) if(TARGET CUDA::${dep}) - import_target_link_libraries(CUDA::${lib_name} INTERFACE CUDA::${dep}) + target_link_libraries(CUDA::${lib_name} INTERFACE CUDA::${dep}) endif() endforeach() endif() @@ -866,8 +796,8 @@ if(CUDAToolkit_FOUND) if(NOT TARGET CUDA::toolkit) add_library(CUDA::toolkit IMPORTED INTERFACE) - import_target_include_directories(CUDA::toolkit SYSTEM INTERFACE "${CUDAToolkit_INCLUDE_DIRS}") - import_target_link_directories(CUDA::toolkit INTERFACE "${CUDAToolkit_LIBRARY_DIR}") + target_include_directories(CUDA::toolkit SYSTEM INTERFACE "${CUDAToolkit_INCLUDE_DIRS}") + target_link_directories(CUDA::toolkit INTERFACE "${CUDAToolkit_LIBRARY_DIR}") endif() _CUDAToolkit_find_and_add_import_lib(cuda_driver ALT cuda) @@ -882,11 +812,11 @@ if(CUDAToolkit_FOUND) AND TARGET CUDA::cudart_static) add_library(CUDA::cudart_static_deps IMPORTED INTERFACE) - import_target_link_libraries(CUDA::cudart_static INTERFACE CUDA::cudart_static_deps) + target_link_libraries(CUDA::cudart_static INTERFACE CUDA::cudart_static_deps) if(UNIX AND (CMAKE_C_COMPILER OR CMAKE_CXX_COMPILER)) find_package(Threads REQUIRED) - import_target_link_libraries(CUDA::cudart_static_deps INTERFACE Threads::Threads ${CMAKE_DL_LIBS}) + target_link_libraries(CUDA::cudart_static_deps INTERFACE Threads::Threads ${CMAKE_DL_LIBS}) endif() if(UNIX AND NOT APPLE) @@ -896,7 +826,7 @@ if(CUDAToolkit_FOUND) if(NOT CUDAToolkit_rt_LIBRARY) message(WARNING "Could not find librt library, needed by CUDA::cudart_static") else() - import_target_link_libraries(CUDA::cudart_static_deps INTERFACE ${CUDAToolkit_rt_LIBRARY}) + target_link_libraries(CUDA::cudart_static_deps INTERFACE ${CUDAToolkit_rt_LIBRARY}) endif() endif() endif() diff --git a/lib/kokkos/cmake/Modules/FindTPLCUDA.cmake b/lib/kokkos/cmake/Modules/FindTPLCUDA.cmake index a1072a60c6..8d58d96415 100644 --- a/lib/kokkos/cmake/Modules/FindTPLCUDA.cmake +++ b/lib/kokkos/cmake/Modules/FindTPLCUDA.cmake @@ -25,7 +25,7 @@ IF (TARGET CUDA::cuda_driver) SET(FOUND_CUDA_DRIVER TRUE) KOKKOS_EXPORT_IMPORTED_TPL(CUDA::cuda_driver) ELSE() - SET(FOUND_CUDA_DRIVVER FALSE) + SET(FOUND_CUDA_DRIVER FALSE) ENDIF() include(FindPackageHandleStandardArgs) diff --git a/lib/kokkos/cmake/Modules/FindTPLPTHREAD.cmake b/lib/kokkos/cmake/Modules/FindTPLPTHREAD.cmake index 1d154e29af..a743fca0e4 100644 --- a/lib/kokkos/cmake/Modules/FindTPLPTHREAD.cmake +++ b/lib/kokkos/cmake/Modules/FindTPLPTHREAD.cmake @@ -10,7 +10,7 @@ TRY_COMPILE(KOKKOS_HAS_PTHREAD_ARG # ${CMAKE_CXX${KOKKOS_CXX_STANDARD}_STANDARD_COMPILE_OPTION} INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS(PTHREAD DEFAULT_MSG KOKKOS_HAS_PTHREAD_ARG) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(TPLPTHREAD DEFAULT_MSG KOKKOS_HAS_PTHREAD_ARG) #Only create the TPL if we succeed IF (KOKKOS_HAS_PTHREAD_ARG) KOKKOS_CREATE_IMPORTED_TPL(PTHREAD diff --git a/lib/kokkos/cmake/Modules/FindTPLROCM.cmake b/lib/kokkos/cmake/Modules/FindTPLROCM.cmake new file mode 100644 index 0000000000..512ad6ceb2 --- /dev/null +++ b/lib/kokkos/cmake/Modules/FindTPLROCM.cmake @@ -0,0 +1,11 @@ +include(FindPackageHandleStandardArgs) + +FIND_LIBRARY(AMD_HIP_LIBRARY amdhip64 PATHS ENV ROCM_PATH PATH_SUFFIXES lib) +FIND_LIBRARY(HSA_RUNTIME_LIBRARY hsa-runtime64 PATHS ENV ROCM_PATH PATH_SUFFIXES lib) + +find_package_handle_standard_args(TPLROCM DEFAULT_MSG AMD_HIP_LIBRARY HSA_RUNTIME_LIBRARY) + +kokkos_create_imported_tpl(ROCM INTERFACE + LINK_LIBRARIES ${HSA_RUNTIME_LIBRARY} ${AMD_HIP_LIBRARY} + COMPILE_DEFINITIONS __HIP_ROCclr__ +) diff --git a/lib/kokkos/cmake/compile_tests/cplusplus14.cpp b/lib/kokkos/cmake/compile_tests/cplusplus14.cpp new file mode 100644 index 0000000000..52ec9885ec --- /dev/null +++ b/lib/kokkos/cmake/compile_tests/cplusplus14.cpp @@ -0,0 +1,8 @@ +#include + +int main() { + // _t versions of type traits were added in C++14 + std::remove_cv_t i = 0; + + return i; +} diff --git a/lib/kokkos/cmake/compile_tests/cuda_compute_capability.cc b/lib/kokkos/cmake/compile_tests/cuda_compute_capability.cc index 48c01c070c..a26ac5af4b 100644 --- a/lib/kokkos/cmake/compile_tests/cuda_compute_capability.cc +++ b/lib/kokkos/cmake/compile_tests/cuda_compute_capability.cc @@ -72,6 +72,7 @@ int main() { case 72: std::cout << "Set -DKokkos_ARCH_VOLTA72=ON ." << std::endl; break; case 75: std::cout << "Set -DKokkos_ARCH_TURING75=ON ." << std::endl; break; case 80: std::cout << "Set -DKokkos_ARCH_AMPERE80=ON ." << std::endl; break; + case 86: std::cout << "Set -DKokkos_ARCH_AMPERE86=ON ." << std::endl; break; default: std::cout << "Compute capability " << compute_capability << " is not supported" << std::endl; diff --git a/lib/kokkos/cmake/compile_tests/pthread.cpp b/lib/kokkos/cmake/compile_tests/pthread.cpp index 92310da029..3f83bf6a5f 100644 --- a/lib/kokkos/cmake/compile_tests/pthread.cpp +++ b/lib/kokkos/cmake/compile_tests/pthread.cpp @@ -2,7 +2,7 @@ void* kokkos_test(void* args) { return args; } -int main(void) { +int main() { pthread_t thread; /* Use NULL to avoid C++11. Some compilers do not have C++11 by default. Forcing C++11 diff --git a/lib/kokkos/cmake/fake_tribits.cmake b/lib/kokkos/cmake/fake_tribits.cmake index 2e82a46235..fbd6745a60 100644 --- a/lib/kokkos/cmake/fake_tribits.cmake +++ b/lib/kokkos/cmake/fake_tribits.cmake @@ -81,10 +81,16 @@ ENDMACRO() FUNCTION(KOKKOS_ADD_TEST) if (KOKKOS_HAS_TRILINOS) CMAKE_PARSE_ARGUMENTS(TEST - "" + "SKIP_TRIBITS" "EXE;NAME;TOOL" "ARGS" ${ARGN}) + + IF(TEST_SKIP_TRIBITS) + MESSAGE(STATUS "Skipping test ${TEST_NAME} in TriBits") + RETURN() + ENDIF() + IF(TEST_EXE) SET(EXE_ROOT ${TEST_EXE}) ELSE() @@ -119,11 +125,10 @@ FUNCTION(KOKKOS_ADD_TEST) endif() else() CMAKE_PARSE_ARGUMENTS(TEST - "WILL_FAIL" + "WILL_FAIL;SKIP_TRIBITS" "FAIL_REGULAR_EXPRESSION;PASS_REGULAR_EXPRESSION;EXE;NAME;TOOL" "CATEGORIES;ARGS" ${ARGN}) - SET(TESTS_ADDED) # To match Tribits, we should always be receiving # the root names of exes/libs IF(TEST_EXE) @@ -135,48 +140,27 @@ FUNCTION(KOKKOS_ADD_TEST) # These should be the full target name SET(TEST_NAME ${PACKAGE_NAME}_${TEST_NAME}) SET(EXE ${PACKAGE_NAME}_${EXE_ROOT}) - IF (TEST_ARGS) - SET(TEST_NUMBER 0) - FOREACH (ARG_STR ${TEST_ARGS}) - # This is passed as a single string blob to match TriBITS behavior - # We need this to be turned into a list - STRING(REPLACE " " ";" ARG_STR_LIST ${ARG_STR}) - IF(WIN32) - ADD_TEST(NAME ${TEST_NAME}${TEST_NUMBER} WORKING_DIRECTORY ${LIBRARY_OUTPUT_PATH} - COMMAND ${EXE}${CMAKE_EXECUTABLE_SUFFIX} ${ARG_STR_LIST}) - ELSE() - ADD_TEST(NAME ${TEST_NAME}${TEST_NUMBER} COMMAND ${EXE} ${ARG_STR_LIST}) - ENDIF() - LIST(APPEND TESTS_ADDED "${TEST_NAME}${TEST_NUMBER}") - MATH(EXPR TEST_NUMBER "${TEST_NUMBER} + 1") - ENDFOREACH() + IF(WIN32) + ADD_TEST(NAME ${TEST_NAME} WORKING_DIRECTORY ${LIBRARY_OUTPUT_PATH} + COMMAND ${EXE}${CMAKE_EXECUTABLE_SUFFIX} ${TEST_ARGS}) ELSE() - IF(WIN32) - ADD_TEST(NAME ${TEST_NAME} WORKING_DIRECTORY ${LIBRARY_OUTPUT_PATH} - COMMAND ${EXE}${CMAKE_EXECUTABLE_SUFFIX}) - ELSE() - ADD_TEST(NAME ${TEST_NAME} COMMAND ${EXE}) - ENDIF() - LIST(APPEND TESTS_ADDED "${TEST_NAME}") + ADD_TEST(NAME ${TEST_NAME} COMMAND ${EXE} ${TEST_ARGS}) + ENDIF() + IF(TEST_WILL_FAIL) + SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES WILL_FAIL ${TEST_WILL_FAIL}) + ENDIF() + IF(TEST_FAIL_REGULAR_EXPRESSION) + SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES FAIL_REGULAR_EXPRESSION ${TEST_FAIL_REGULAR_EXPRESSION}) + ENDIF() + IF(TEST_PASS_REGULAR_EXPRESSION) + SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES PASS_REGULAR_EXPRESSION ${TEST_PASS_REGULAR_EXPRESSION}) + ENDIF() + IF(TEST_TOOL) + ADD_DEPENDENCIES(${EXE} ${TEST_TOOL}) #make sure the exe has to build the tool + SET_PROPERTY(TEST ${TEST_NAME} APPEND_STRING PROPERTY ENVIRONMENT "KOKKOS_PROFILE_LIBRARY=$") ENDIF() - - FOREACH(TEST_NAME ${TESTS_ADDED}) - IF(TEST_WILL_FAIL) - SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES WILL_FAIL ${TEST_WILL_FAIL}) - ENDIF() - IF(TEST_FAIL_REGULAR_EXPRESSION) - SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES FAIL_REGULAR_EXPRESSION ${TEST_FAIL_REGULAR_EXPRESSION}) - ENDIF() - IF(TEST_PASS_REGULAR_EXPRESSION) - SET_TESTS_PROPERTIES(${TEST_NAME} PROPERTIES PASS_REGULAR_EXPRESSION ${TEST_PASS_REGULAR_EXPRESSION}) - ENDIF() - if(TEST_TOOL) - add_dependencies(${EXE} ${TEST_TOOL}) #make sure the exe has to build the tool - set_property(TEST ${TEST_NAME} APPEND_STRING PROPERTY ENVIRONMENT "KOKKOS_PROFILE_LIBRARY=$") - endif() - ENDFOREACH() VERIFY_EMPTY(KOKKOS_ADD_TEST ${TEST_UNPARSED_ARGUMENTS}) - endif() + ENDIF() ENDFUNCTION() FUNCTION(KOKKOS_ADD_ADVANCED_TEST) @@ -326,14 +310,6 @@ ENDIF() ENDFUNCTION() -FUNCTION(KOKKOS_TARGET_COMPILE_DEFINITIONS) - IF (KOKKOS_HAS_TRILINOS) - TARGET_COMPILE_DEFINITIONS(${TARGET} ${ARGN}) - ELSE() - TARGET_COMPILE_DEFINITIONS(${TARGET} ${ARGN}) - ENDIF() -ENDFUNCTION() - FUNCTION(KOKKOS_INCLUDE_DIRECTORIES) IF(KOKKOS_HAS_TRILINOS) TRIBITS_INCLUDE_DIRECTORIES(${ARGN}) @@ -350,10 +326,6 @@ ENDIF() ENDFUNCTION() -MACRO(KOKKOS_ADD_COMPILE_OPTIONS) -ADD_COMPILE_OPTIONS(${ARGN}) -ENDMACRO() - MACRO(PRINTALL match) get_cmake_property(_variableNames VARIABLES) list (SORT _variableNames) @@ -376,4 +348,3 @@ FUNCTION(GLOBAL_APPEND VARNAME) LIST(APPEND TEMP ${ARGN}) GLOBAL_SET(${VARNAME} ${TEMP}) ENDFUNCTION() - diff --git a/lib/kokkos/cmake/kokkos_arch.cmake b/lib/kokkos/cmake/kokkos_arch.cmake index 53aaf7dccf..ec18e70a36 100644 --- a/lib/kokkos/cmake/kokkos_arch.cmake +++ b/lib/kokkos/cmake/kokkos_arch.cmake @@ -35,7 +35,7 @@ KOKKOS_ARCH_OPTION(ARMV80 HOST "ARMv8.0 Compatible CPU") KOKKOS_ARCH_OPTION(ARMV81 HOST "ARMv8.1 Compatible CPU") KOKKOS_ARCH_OPTION(ARMV8_THUNDERX HOST "ARMv8 Cavium ThunderX CPU") KOKKOS_ARCH_OPTION(ARMV8_THUNDERX2 HOST "ARMv8 Cavium ThunderX2 CPU") -KOKKOS_ARCH_OPTION(A64FX HOST "ARMv8.2 with SVE Suport") +KOKKOS_ARCH_OPTION(A64FX HOST "ARMv8.2 with SVE Support") KOKKOS_ARCH_OPTION(WSM HOST "Intel Westmere CPU") KOKKOS_ARCH_OPTION(SNB HOST "Intel Sandy/Ivy Bridge CPUs") KOKKOS_ARCH_OPTION(HSW HOST "Intel Haswell CPUs") @@ -60,11 +60,12 @@ KOKKOS_ARCH_OPTION(VOLTA70 GPU "NVIDIA Volta generation CC 7.0") KOKKOS_ARCH_OPTION(VOLTA72 GPU "NVIDIA Volta generation CC 7.2") KOKKOS_ARCH_OPTION(TURING75 GPU "NVIDIA Turing generation CC 7.5") KOKKOS_ARCH_OPTION(AMPERE80 GPU "NVIDIA Ampere generation CC 8.0") +KOKKOS_ARCH_OPTION(AMPERE86 GPU "NVIDIA Ampere generation CC 8.6") KOKKOS_ARCH_OPTION(ZEN HOST "AMD Zen architecture") KOKKOS_ARCH_OPTION(ZEN2 HOST "AMD Zen2 architecture") KOKKOS_ARCH_OPTION(VEGA900 GPU "AMD GPU MI25 GFX900") KOKKOS_ARCH_OPTION(VEGA906 GPU "AMD GPU MI50/MI60 GFX906") -KOKKOS_ARCH_OPTION(VEGA908 GPU "AMD GPU") +KOKKOS_ARCH_OPTION(VEGA908 GPU "AMD GPU MI100 GFX908") KOKKOS_ARCH_OPTION(INTEL_GEN GPU "Intel GPUs Gen9+") @@ -141,8 +142,16 @@ ENDIF() #------------------------------- KOKKOS_HIP_OPTIONS --------------------------- #clear anything that might be in the cache GLOBAL_SET(KOKKOS_AMDGPU_OPTIONS) -IF(KOKKOS_CXX_COMPILER_ID STREQUAL HIP) - SET(AMDGPU_ARCH_FLAG "--amdgpu-target") +IF(KOKKOS_ENABLE_HIP) + IF(KOKKOS_CXX_COMPILER_ID STREQUAL HIPCC) + SET(AMDGPU_ARCH_FLAG "--amdgpu-target") + ELSE() + SET(AMDGPU_ARCH_FLAG "--offload-arch") + GLOBAL_APPEND(KOKKOS_AMDGPU_OPTIONS -x hip) + IF(DEFINED ENV{ROCM_PATH}) + GLOBAL_APPEND(KOKKOS_AMDGPU_OPTIONS --rocm-path=$ENV{ROCM_PATH}) + ENDIF() + ENDIF() ENDIF() @@ -183,6 +192,8 @@ ENDIF() IF (KOKKOS_ARCH_A64FX) COMPILER_SPECIFIC_FLAGS( DEFAULT -march=armv8.2-a+sve + Clang -march=armv8.2-a+sve -msve-vector-bits=512 + GCC -march=armv8.2-a+sve -msve-vector-bits=512 ) ENDIF() @@ -309,7 +320,7 @@ IF (KOKKOS_ARCH_POWER8 OR KOKKOS_ARCH_POWER9) SET(KOKKOS_USE_ISA_POWERPCLE ON) ENDIF() -IF (Kokkos_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE) +IF (KOKKOS_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE) COMPILER_SPECIFIC_FLAGS( Clang -fcuda-rdc NVIDIA --relocatable-device-code=true @@ -333,8 +344,8 @@ ENDIF() #Right now we cannot get the compiler ID when cross-compiling, so just check #that HIP is enabled -IF (Kokkos_ENABLE_HIP) - IF (Kokkos_ENABLE_HIP_RELOCATABLE_DEVICE_CODE) +IF (KOKKOS_ENABLE_HIP) + IF (KOKKOS_ENABLE_HIP_RELOCATABLE_DEVICE_CODE) COMPILER_SPECIFIC_FLAGS( DEFAULT -fgpu-rdc ) @@ -345,8 +356,7 @@ IF (Kokkos_ENABLE_HIP) ENDIF() ENDIF() - -IF (Kokkos_ENABLE_SYCL) +IF (KOKKOS_ENABLE_SYCL) COMPILER_SPECIFIC_FLAGS( DEFAULT -fsycl ) @@ -363,7 +373,7 @@ FUNCTION(CHECK_CUDA_ARCH ARCH FLAG) MESSAGE(FATAL_ERROR "Multiple GPU architectures given! Already have ${CUDA_ARCH_ALREADY_SPECIFIED}, but trying to add ${ARCH}. If you are re-running CMake, try clearing the cache and running again.") ENDIF() SET(CUDA_ARCH_ALREADY_SPECIFIED ${ARCH} PARENT_SCOPE) - IF (NOT KOKKOS_ENABLE_CUDA AND NOT KOKKOS_ENABLE_OPENMPTARGET) + IF (NOT KOKKOS_ENABLE_CUDA AND NOT KOKKOS_ENABLE_OPENMPTARGET AND NOT KOKKOS_ENABLE_SYCL) MESSAGE(WARNING "Given CUDA arch ${ARCH}, but Kokkos_ENABLE_CUDA and Kokkos_ENABLE_OPENMPTARGET are OFF. Option will be ignored.") UNSET(KOKKOS_ARCH_${ARCH} PARENT_SCOPE) ELSE() @@ -396,6 +406,7 @@ CHECK_CUDA_ARCH(VOLTA70 sm_70) CHECK_CUDA_ARCH(VOLTA72 sm_72) CHECK_CUDA_ARCH(TURING75 sm_75) CHECK_CUDA_ARCH(AMPERE80 sm_80) +CHECK_CUDA_ARCH(AMPERE86 sm_86) SET(AMDGPU_ARCH_ALREADY_SPECIFIED "") FUNCTION(CHECK_AMDGPU_ARCH ARCH FLAG) @@ -405,12 +416,12 @@ FUNCTION(CHECK_AMDGPU_ARCH ARCH FLAG) ENDIF() SET(AMDGPU_ARCH_ALREADY_SPECIFIED ${ARCH} PARENT_SCOPE) IF (NOT KOKKOS_ENABLE_HIP AND NOT KOKKOS_ENABLE_OPENMPTARGET) - MESSAGE(WARNING "Given HIP arch ${ARCH}, but Kokkos_ENABLE_AMDGPU and Kokkos_ENABLE_OPENMPTARGET are OFF. Option will be ignored.") + MESSAGE(WARNING "Given AMD GPU architecture ${ARCH}, but Kokkos_ENABLE_HIP and Kokkos_ENABLE_OPENMPTARGET are OFF. Option will be ignored.") UNSET(KOKKOS_ARCH_${ARCH} PARENT_SCOPE) ELSE() SET(KOKKOS_AMDGPU_ARCH_FLAG ${FLAG} PARENT_SCOPE) GLOBAL_APPEND(KOKKOS_AMDGPU_OPTIONS "${AMDGPU_ARCH_FLAG}=${FLAG}") - IF(KOKKOS_ENABLE_HIP) + IF(KOKKOS_ENABLE_HIP_RELOCATABLE_DEVICE_CODE) GLOBAL_APPEND(KOKKOS_LINK_OPTIONS "${AMDGPU_ARCH_FLAG}=${FLAG}") ENDIF() ENDIF() @@ -451,6 +462,24 @@ IF (KOKKOS_ENABLE_OPENMPTARGET) ENDIF() ENDIF() +IF (KOKKOS_ENABLE_SYCL) + IF(CUDA_ARCH_ALREADY_SPECIFIED) + IF(KOKKOS_ENABLE_UNSUPPORTED_ARCHS) + COMPILER_SPECIFIC_FLAGS( + DEFAULT -fsycl-targets=nvptx64-nvidia-cuda-sycldevice + ) + # FIXME_SYCL The CUDA backend doesn't support printf yet. + GLOBAL_SET(KOKKOS_IMPL_DISABLE_SYCL_DEVICE_PRINTF ON) + ELSE() + MESSAGE(SEND_ERROR "Setting a CUDA architecture for SYCL is only allowed with Kokkos_ENABLE_UNSUPPORTED_ARCHS=ON!") + ENDIF() + ELSEIF(KOKKOS_ARCH_INTEL_GEN) + COMPILER_SPECIFIC_FLAGS( + DEFAULT -fsycl-targets=spir64_gen-unknown-unknown-sycldevice -Xsycl-target-backend "-device skl" + ) + ENDIF() +ENDIF() + IF(KOKKOS_ENABLE_CUDA AND NOT CUDA_ARCH_ALREADY_SPECIFIED) # Try to autodetect the CUDA Compute Capability by asking the device SET(_BINARY_TEST_DIR ${CMAKE_CURRENT_BINARY_DIR}/cmake/compile_tests/CUDAComputeCapabilityWorkdir) @@ -464,6 +493,43 @@ IF(KOKKOS_ENABLE_CUDA AND NOT CUDA_ARCH_ALREADY_SPECIFIED) ${CMAKE_CURRENT_SOURCE_DIR}/cmake/compile_tests/cuda_compute_capability.cc COMPILE_DEFINITIONS -DSM_ONLY RUN_OUTPUT_VARIABLE _CUDA_COMPUTE_CAPABILITY) + + # if user is using kokkos_compiler_launcher, above will fail. + IF(NOT _COMPILE_RESULT OR NOT _RESULT EQUAL 0) + # check to see if CUDA is not already enabled (may happen when Kokkos is subproject) + GET_PROPERTY(_ENABLED_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) + # language has to be fully enabled, just checking for CMAKE_CUDA_COMPILER isn't enough + IF(NOT "CUDA" IN_LIST _ENABLED_LANGUAGES) + # make sure the user knows that we aren't using CUDA compiler for anything else + MESSAGE(STATUS "CUDA auto-detection of architecture failed with ${CMAKE_CXX_COMPILER}. Enabling CUDA language ONLY to auto-detect architecture...") + INCLUDE(CheckLanguage) + CHECK_LANGUAGE(CUDA) + IF(CMAKE_CUDA_COMPILER) + ENABLE_LANGUAGE(CUDA) + ELSE() + MESSAGE(STATUS "CUDA language could not be enabled") + ENDIF() + ENDIF() + + # if CUDA was enabled, this will be defined + IF(CMAKE_CUDA_COMPILER) + # copy our test to .cu so cmake compiles as CUDA + CONFIGURE_FILE( + ${PROJECT_SOURCE_DIR}/cmake/compile_tests/cuda_compute_capability.cc + ${PROJECT_BINARY_DIR}/compile_tests/cuda_compute_capability.cu + COPYONLY + ) + # run test again + TRY_RUN( + _RESULT + _COMPILE_RESULT + ${_BINARY_TEST_DIR} + ${PROJECT_BINARY_DIR}/compile_tests/cuda_compute_capability.cu + COMPILE_DEFINITIONS -DSM_ONLY + RUN_OUTPUT_VARIABLE _CUDA_COMPUTE_CAPABILITY) + ENDIF() + ENDIF() + LIST(FIND KOKKOS_CUDA_ARCH_FLAGS sm_${_CUDA_COMPUTE_CAPABILITY} FLAG_INDEX) IF(_COMPILE_RESULT AND _RESULT EQUAL 0 AND NOT FLAG_INDEX EQUAL -1) MESSAGE(STATUS "Detected CUDA Compute Capability ${_CUDA_COMPUTE_CAPABILITY}") @@ -500,7 +566,7 @@ IF (KOKKOS_ENABLE_CUDA) SET(KOKKOS_ARCH_VOLTA ON) ENDIF() - IF (KOKKOS_ARCH_AMPERE80) + IF (KOKKOS_ARCH_AMPERE80 OR KOKKOS_ARCH_AMPERE86) SET(KOKKOS_ARCH_AMPERE ON) ENDIF() ENDIF() diff --git a/lib/kokkos/cmake/kokkos_compiler_id.cmake b/lib/kokkos/cmake/kokkos_compiler_id.cmake index e6600161f9..4434d6928f 100644 --- a/lib/kokkos/cmake/kokkos_compiler_id.cmake +++ b/lib/kokkos/cmake/kokkos_compiler_id.cmake @@ -27,6 +27,12 @@ IF(Kokkos_ENABLE_CUDA) PATHS ${PROJECT_SOURCE_DIR} PATH_SUFFIXES bin) + FIND_PROGRAM(Kokkos_NVCC_WRAPPER + NAMES nvcc_wrapper + HINTS ${PROJECT_SOURCE_DIR} + PATHS ${PROJECT_SOURCE_DIR} + PATH_SUFFIXES bin) + # check if compiler was set to nvcc_wrapper kokkos_internal_have_compiler_nvcc(${CMAKE_CXX_COMPILER}) # if launcher was found and nvcc_wrapper was not specified as @@ -37,7 +43,7 @@ IF(Kokkos_ENABLE_CUDA) # if the second argument matches the C++ compiler, it forwards the rest of the # args to nvcc_wrapper kokkos_internal_have_compiler_nvcc( - ${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER} -DKOKKOS_DEPENDENCE) + ${Kokkos_COMPILE_LAUNCHER} ${Kokkos_NVCC_WRAPPER} ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER} -DKOKKOS_DEPENDENCE) SET(INTERNAL_USE_COMPILER_LAUNCHER true) ENDIF() ENDIF() @@ -55,32 +61,7 @@ IF(INTERNAL_HAVE_COMPILER_NVCC) SET(KOKKOS_CXX_COMPILER_VERSION ${TEMP_CXX_COMPILER_VERSION} CACHE STRING INTERNAL FORCE) MESSAGE(STATUS "Compiler Version: ${KOKKOS_CXX_COMPILER_VERSION}") IF(INTERNAL_USE_COMPILER_LAUNCHER) - IF(Kokkos_LAUNCH_COMPILER_INFO) - GET_FILENAME_COMPONENT(BASE_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) - # does not have STATUS intentionally - MESSAGE("") - MESSAGE("Kokkos_LAUNCH_COMPILER_INFO (${Kokkos_COMPILE_LAUNCHER}):") - MESSAGE(" - Kokkos + CUDA backend requires the C++ files to be compiled as CUDA code.") - MESSAGE(" - kokkos_launch_compiler permits CMAKE_CXX_COMPILER to be set to a traditional C++ compiler when Kokkos_ENABLE_CUDA=ON") - MESSAGE(" by prefixing all the compile and link commands with the path to the script + CMAKE_CXX_COMPILER (${CMAKE_CXX_COMPILER}).") - MESSAGE(" - If any of the compile or link commands have CMAKE_CXX_COMPILER as the first argument, it replaces CMAKE_CXX_COMPILER with nvcc_wrapper.") - MESSAGE(" - If the compile or link command is not CMAKE_CXX_COMPILER, it just executes the command.") - MESSAGE(" - If using ccache, set CMAKE_CXX_COMPILER to nvcc_wrapper explicitly.") - MESSAGE(" - kokkos_compiler_launcher is available to downstream projects as well.") - MESSAGE(" - If CMAKE_CXX_COMPILER=nvcc_wrapper, all legacy behavior will be preserved during 'find_package(Kokkos)'") - MESSAGE(" - If CMAKE_CXX_COMPILER is not nvcc_wrapper, 'find_package(Kokkos)' will apply 'kokkos_compilation(GLOBAL)' unless separable compilation is enabled") - MESSAGE(" - This can be disabled via '-DKokkos_LAUNCH_COMPILER=OFF'") - MESSAGE(" - Use 'find_package(Kokkos COMPONENTS separable_compilation)' to enable separable compilation") - MESSAGE(" - Separable compilation allows you to control the scope of where the compiler transformation behavior (${BASE_COMPILER_NAME} -> nvcc_wrapper) is applied") - MESSAGE(" - The compiler transformation can be applied on a per-project, per-directory, per-target, and/or per-source-file basis") - MESSAGE(" - 'kokkos_compilation(PROJECT)' will apply the compiler transformation to all targets in a project/subproject") - MESSAGE(" - 'kokkos_compilation(TARGET [...])' will apply the compiler transformation to the specified target(s)") - MESSAGE(" - 'kokkos_compilation(SOURCE [...])' will apply the compiler transformation to the specified source file(s)") - MESSAGE(" - 'kokkos_compilation(DIRECTORY [...])' will apply the compiler transformation to the specified directories") - MESSAGE("") - ELSE() - MESSAGE(STATUS "kokkos_launch_compiler (${Kokkos_COMPILE_LAUNCHER}) is enabled... Set Kokkos_LAUNCH_COMPILER_INFO=ON for more info.") - ENDIF() + MESSAGE(STATUS "kokkos_launch_compiler (${Kokkos_COMPILE_LAUNCHER}) is enabled...") kokkos_compilation(GLOBAL) ENDIF() ENDIF() @@ -92,7 +73,11 @@ IF(Kokkos_ENABLE_HIP) OUTPUT_STRIP_TRAILING_WHITESPACE) STRING(REPLACE "\n" " - " INTERNAL_COMPILER_VERSION_ONE_LINE ${INTERNAL_COMPILER_VERSION} ) - SET(KOKKOS_CXX_COMPILER_ID HIP CACHE STRING INTERNAL FORCE) + + STRING(FIND ${INTERNAL_COMPILER_VERSION_ONE_LINE} "HIP version" INTERNAL_COMPILER_VERSION_CONTAINS_HIP) + IF(INTERNAL_COMPILER_VERSION_CONTAINS_HIP GREATER -1) + SET(KOKKOS_CXX_COMPILER_ID HIPCC CACHE STRING INTERNAL FORCE) + ENDIF() STRING(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" TEMP_CXX_COMPILER_VERSION ${INTERNAL_COMPILER_VERSION_ONE_LINE}) @@ -103,8 +88,7 @@ ENDIF() IF(KOKKOS_CXX_COMPILER_ID STREQUAL Clang) # The Cray compiler reports as Clang to most versions of CMake EXECUTE_PROCESS(COMMAND ${CMAKE_CXX_COMPILER} --version - COMMAND grep Cray - COMMAND wc -l + COMMAND grep -c Cray OUTPUT_VARIABLE INTERNAL_HAVE_CRAY_COMPILER OUTPUT_STRIP_TRAILING_WHITESPACE) IF (INTERNAL_HAVE_CRAY_COMPILER) #not actually Clang @@ -112,8 +96,7 @@ IF(KOKKOS_CXX_COMPILER_ID STREQUAL Clang) ENDIF() # The clang based Intel compiler reports as Clang to most versions of CMake EXECUTE_PROCESS(COMMAND ${CMAKE_CXX_COMPILER} --version - COMMAND grep icpx - COMMAND wc -l + COMMAND grep -c "DPC++\\|icpx" OUTPUT_VARIABLE INTERNAL_HAVE_INTEL_COMPILER OUTPUT_STRIP_TRAILING_WHITESPACE) IF (INTERNAL_HAVE_INTEL_COMPILER) #not actually Clang @@ -174,7 +157,7 @@ ELSEIF(KOKKOS_CXX_COMPILER_ID STREQUAL NVIDIA) MESSAGE(FATAL_ERROR "${KOKKOS_MESSAGE_TEXT}") ENDIF() SET(CMAKE_CXX_EXTENSIONS OFF CACHE BOOL "Kokkos turns off CXX extensions" FORCE) -ELSEIF(KOKKOS_CXX_COMPILER_ID STREQUAL HIP) +ELSEIF(KOKKOS_CXX_COMPILER_ID STREQUAL HIPCC) IF(KOKKOS_CXX_COMPILER_VERSION VERSION_LESS 3.8.0) MESSAGE(FATAL_ERROR "${KOKKOS_MESSAGE_TEXT}") ENDIF() diff --git a/lib/kokkos/cmake/kokkos_corner_cases.cmake b/lib/kokkos/cmake/kokkos_corner_cases.cmake index 3962c4b16e..a84ac2b630 100644 --- a/lib/kokkos/cmake/kokkos_corner_cases.cmake +++ b/lib/kokkos/cmake/kokkos_corner_cases.cmake @@ -49,11 +49,14 @@ ENDIF() IF (KOKKOS_CXX_STANDARD STREQUAL 17) IF (KOKKOS_CXX_COMPILER_ID STREQUAL GNU AND KOKKOS_CXX_COMPILER_VERSION VERSION_LESS 7) - MESSAGE(FATAL_ERROR "You have requested c++17 support for GCC ${KOKKOS_CXX_COMPILER_VERSION}. Although CMake has allowed this and GCC accepts -std=c++1z/c++17, GCC <= 6 does not properly support *this capture. Please reduce the C++ standard to 14 or upgrade the compiler if you do need C++17 support.") + MESSAGE(FATAL_ERROR "You have requested C++17 support for GCC ${KOKKOS_CXX_COMPILER_VERSION}. Although CMake has allowed this and GCC accepts -std=c++1z/c++17, GCC < 7 does not properly support *this capture. Please reduce the C++ standard to 14 or upgrade the compiler if you do need C++17 support.") ENDIF() IF (KOKKOS_CXX_COMPILER_ID STREQUAL NVIDIA AND KOKKOS_CXX_COMPILER_VERSION VERSION_LESS 11) - MESSAGE(FATAL_ERROR "You have requested c++17 support for NVCC ${KOKKOS_CXX_COMPILER_VERSION}. NVCC only supports C++17 from version 11 on. Please reduce the C++ standard to 14 or upgrade the compiler if you need C++17 support.") + MESSAGE(FATAL_ERROR "You have requested C++17 support for NVCC ${KOKKOS_CXX_COMPILER_VERSION}. NVCC only supports C++17 from version 11 on. Please reduce the C++ standard to 14 or upgrade the compiler if you need C++17 support.") + ENDIF() + IF (KOKKOS_CXX_COMPILER_ID STREQUAL NVIDIA AND KOKKOS_ENABLE_CUDA_CONSTEXPR) + MESSAGE(WARNING "You have requested -DKokkos_ENABLE_CUDA_CONSTEXPR=ON with C++17 support for NVCC ${KOKKOS_CXX_COMPILER_VERSION} which is known to trigger compiler bugs. See https://github.com/kokkos/kokkos/issues/3496") ENDIF() ENDIF() diff --git a/lib/kokkos/cmake/kokkos_enable_devices.cmake b/lib/kokkos/cmake/kokkos_enable_devices.cmake index 41ee10a8a0..445dad47ce 100644 --- a/lib/kokkos/cmake/kokkos_enable_devices.cmake +++ b/lib/kokkos/cmake/kokkos_enable_devices.cmake @@ -48,9 +48,6 @@ IF(KOKKOS_ENABLE_OPENMP) IF(KOKKOS_CLANG_IS_CRAY) SET(ClangOpenMPFlag -fopenmp) ENDIF() - IF(KOKKOS_CLANG_IS_INTEL) - SET(ClangOpenMPFlag -fiopenmp) - ENDIF() IF(KOKKOS_COMPILER_CLANG_MSVC) #for clang-cl expression /openmp yields an error, so directly add the specific Clang flag SET(ClangOpenMPFlag /clang:-fopenmp=libomp) @@ -64,6 +61,7 @@ IF(KOKKOS_ENABLE_OPENMP) COMPILER_SPECIFIC_FLAGS( COMPILER_ID KOKKOS_CXX_HOST_COMPILER_ID Clang -Xcompiler ${ClangOpenMPFlag} + IntelClang -Xcompiler -fiopenmp PGI -Xcompiler -mp Cray NO-VALUE-SPECIFIED XL -Xcompiler -qsmp=omp @@ -72,6 +70,7 @@ IF(KOKKOS_ENABLE_OPENMP) ELSE() COMPILER_SPECIFIC_FLAGS( Clang ${ClangOpenMPFlag} + IntelClang -fiopenmp AppleClang -Xpreprocessor -fopenmp PGI -mp Cray NO-VALUE-SPECIFIED @@ -152,3 +151,11 @@ IF (KOKKOS_ENABLE_HIP) ENDIF() KOKKOS_DEVICE_OPTION(SYCL OFF DEVICE "Whether to build SYCL backend") + +## SYCL has extra setup requirements, turn on Kokkos_Setup_SYCL.hpp in macros +IF (KOKKOS_ENABLE_SYCL) + IF(KOKKOS_CXX_STANDARD LESS 17) + MESSAGE(FATAL_ERROR "SYCL backend requires C++17 or newer!") + ENDIF() + LIST(APPEND DEVICE_SETUP_LIST SYCL) +ENDIF() diff --git a/lib/kokkos/cmake/kokkos_enable_options.cmake b/lib/kokkos/cmake/kokkos_enable_options.cmake index 5df498f373..95bce66c7b 100644 --- a/lib/kokkos/cmake/kokkos_enable_options.cmake +++ b/lib/kokkos/cmake/kokkos_enable_options.cmake @@ -48,6 +48,7 @@ KOKKOS_ENABLE_OPTION(COMPILER_WARNINGS OFF "Whether to print all compiler war KOKKOS_ENABLE_OPTION(PROFILING_LOAD_PRINT OFF "Whether to print information about which profiling tools got loaded") KOKKOS_ENABLE_OPTION(TUNING OFF "Whether to create bindings for tuning tools") KOKKOS_ENABLE_OPTION(AGGRESSIVE_VECTORIZATION OFF "Whether to aggressively vectorize loops") +KOKKOS_ENABLE_OPTION(LAUNCH_COMPILER ON "Whether to potentially use the launch compiler") IF (KOKKOS_ENABLE_CUDA) SET(KOKKOS_COMPILER_CUDA_VERSION "${KOKKOS_COMPILER_VERSION_MAJOR}${KOKKOS_COMPILER_VERSION_MINOR}") @@ -68,6 +69,15 @@ ELSE() ENDIF() KOKKOS_ENABLE_OPTION(COMPLEX_ALIGN ${COMPLEX_ALIGN_DEFAULT} "Whether to align Kokkos::complex to 2*alignof(RealType)") +IF (KOKKOS_ENABLE_TESTS) + SET(HEADER_SELF_CONTAINMENT_TESTS_DEFAULT ON) +ELSE() + SET(HEADER_SELF_CONTAINMENT_TESTS_DEFAULT OFF) +ENDIF() +KOKKOS_ENABLE_OPTION(HEADER_SELF_CONTAINMENT_TESTS ${HEADER_SELF_CONTAINMENT_TESTS_DEFAULT} "Enable header self-containment unit tests") +IF (NOT KOKKOS_ENABLE_TESTS AND KOKKOS_ENABLE_HEADER_SELF_CONTAINMENT_TESTS) + MESSAGE(WARNING "Kokkos_ENABLE_HEADER_SELF_CONTAINMENT_TESTS is ON but Kokkos_ENABLE_TESTS is OFF. Option will be ignored.") +ENDIF() IF (KOKKOS_ENABLE_CUDA AND (KOKKOS_CXX_COMPILER_ID STREQUAL Clang)) SET(CUDA_CONSTEXPR_DEFAULT ON) @@ -76,14 +86,14 @@ ELSE() ENDIF() KOKKOS_ENABLE_OPTION(CUDA_CONSTEXPR ${CUDA_CONSTEXPR_DEFAULT} "Whether to activate experimental relaxed constexpr functions") +Kokkos_ENABLE_OPTION(UNSUPPORTED_ARCHS OFF "Whether to allow architectures in backends Kokkos doesn't optimize for") + FUNCTION(check_device_specific_options) CMAKE_PARSE_ARGUMENTS(SOME "" "DEVICE" "OPTIONS" ${ARGN}) IF(NOT KOKKOS_ENABLE_${SOME_DEVICE}) FOREACH(OPTION ${SOME_OPTIONS}) - IF(CMAKE_VERSION VERSION_GREATER_EQUAL 3.14) - IF(NOT DEFINED CACHE{Kokkos_ENABLE_${OPTION}} OR NOT DEFINED CACHE{Kokkos_ENABLE_${SOME_DEVICE}}) - MESSAGE(FATAL_ERROR "Internal logic error: option '${OPTION}' or device '${SOME_DEVICE}' not recognized.") - ENDIF() + IF(NOT DEFINED CACHE{Kokkos_ENABLE_${OPTION}} OR NOT DEFINED CACHE{Kokkos_ENABLE_${SOME_DEVICE}}) + MESSAGE(FATAL_ERROR "Internal logic error: option '${OPTION}' or device '${SOME_DEVICE}' not recognized.") ENDIF() IF(KOKKOS_ENABLE_${OPTION}) MESSAGE(WARNING "Kokkos_ENABLE_${OPTION} is ON but ${SOME_DEVICE} backend is not enabled. Option will be ignored.") diff --git a/lib/kokkos/cmake/kokkos_functions.cmake b/lib/kokkos/cmake/kokkos_functions.cmake index 2b17d648b4..858322394d 100644 --- a/lib/kokkos/cmake/kokkos_functions.cmake +++ b/lib/kokkos/cmake/kokkos_functions.cmake @@ -169,9 +169,7 @@ MACRO(kokkos_export_imported_tpl NAME) ENDIF() SET(TPL_LINK_OPTIONS) - IF(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.13.0") - GET_TARGET_PROPERTY(TPL_LINK_OPTIONS ${NAME} INTERFACE_LINK_OPTIONS) - ENDIF() + GET_TARGET_PROPERTY(TPL_LINK_OPTIONS ${NAME} INTERFACE_LINK_OPTIONS) IF(TPL_LINK_OPTIONS) KOKKOS_APPEND_CONFIG_LINE("INTERFACE_LINK_OPTIONS ${TPL_LINK_OPTIONS}") ENDIF() @@ -230,9 +228,7 @@ MACRO(kokkos_import_tpl NAME) # I have still been getting errors about ROOT variables being ignored # I'm not sure if this is a scope issue - but make sure # the policy is set before we do any find_package calls - IF(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12.0") - CMAKE_POLICY(SET CMP0074 NEW) - ENDIF() + CMAKE_POLICY(SET CMP0074 NEW) IF (KOKKOS_ENABLE_${NAME}) #Tack on a TPL here to make sure we avoid using anyone else's find @@ -314,7 +310,7 @@ MACRO(kokkos_create_imported_tpl NAME) CMAKE_PARSE_ARGUMENTS(TPL "INTERFACE" "LIBRARY" - "LINK_LIBRARIES;INCLUDES;COMPILE_OPTIONS;LINK_OPTIONS" + "LINK_LIBRARIES;INCLUDES;COMPILE_DEFINITIONS;COMPILE_OPTIONS;LINK_OPTIONS" ${ARGN}) @@ -334,6 +330,9 @@ MACRO(kokkos_create_imported_tpl NAME) IF(TPL_INCLUDES) TARGET_INCLUDE_DIRECTORIES(${NAME} INTERFACE ${TPL_INCLUDES}) ENDIF() + IF(TPL_COMPILE_DEFINITIONS) + TARGET_COMPILE_DEFINITIONS(${NAME} INTERFACE ${TPL_COMPILE_DEFINITIONS}) + ENDIF() IF(TPL_COMPILE_OPTIONS) TARGET_COMPILE_OPTIONS(${NAME} INTERFACE ${TPL_COMPILE_OPTIONS}) ENDIF() @@ -355,6 +354,10 @@ MACRO(kokkos_create_imported_tpl NAME) SET_TARGET_PROPERTIES(${NAME} PROPERTIES INTERFACE_INCLUDE_DIRECTORIES "${TPL_INCLUDES}") ENDIF() + IF(TPL_COMPILE_DEFINITIONS) + SET_TARGET_PROPERTIES(${NAME} PROPERTIES + INTERFACE_COMPILE_DEFINITIONS "${TPL_COMPILE_DEFINITIONS}") + ENDIF() IF(TPL_COMPILE_OPTIONS) SET_TARGET_PROPERTIES(${NAME} PROPERTIES INTERFACE_COMPILE_OPTIONS "${TPL_COMPILE_OPTIONS}") @@ -770,7 +773,7 @@ FUNCTION(kokkos_link_tpl TARGET) ENDFUNCTION() FUNCTION(COMPILER_SPECIFIC_OPTIONS_HELPER) - SET(COMPILERS NVIDIA PGI XL DEFAULT Cray Intel Clang AppleClang IntelClang GNU HIP Fujitsu) + SET(COMPILERS NVIDIA PGI XL DEFAULT Cray Intel Clang AppleClang IntelClang GNU HIPCC Fujitsu) CMAKE_PARSE_ARGUMENTS( PARSE "LINK_OPTIONS;COMPILE_OPTIONS;COMPILE_DEFINITIONS;LINK_LIBRARIES" @@ -926,6 +929,9 @@ ENDFUNCTION() # DIRECTORY --> all files in directory # PROJECT --> all files/targets in a project/subproject # +# NOTE: this is VERY DIFFERENT than the version in KokkosConfigCommon.cmake.in. +# This version explicitly uses nvcc_wrapper. +# FUNCTION(kokkos_compilation) # check whether the compiler already supports building CUDA KOKKOS_CXX_COMPILER_CUDA_TEST(Kokkos_CXX_COMPILER_COMPILES_CUDA) @@ -947,10 +953,21 @@ FUNCTION(kokkos_compilation) MESSAGE(FATAL_ERROR "Kokkos could not find 'kokkos_launch_compiler'. Please set '-DKokkos_COMPILE_LAUNCHER=/path/to/launcher'") ENDIF() + # find nvcc_wrapper + FIND_PROGRAM(Kokkos_NVCC_WRAPPER + NAMES nvcc_wrapper + HINTS ${PROJECT_SOURCE_DIR} + PATHS ${PROJECT_SOURCE_DIR} + PATH_SUFFIXES bin) + + IF(NOT Kokkos_COMPILE_LAUNCHER) + MESSAGE(FATAL_ERROR "Kokkos could not find 'nvcc_wrapper'. Please set '-DKokkos_COMPILE_LAUNCHER=/path/to/nvcc_wrapper'") + ENDIF() + IF(COMP_GLOBAL) # if global, don't bother setting others - SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${Kokkos_NVCC_WRAPPER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${Kokkos_NVCC_WRAPPER} ${CMAKE_CXX_COMPILER}") ELSE() FOREACH(_TYPE PROJECT DIRECTORY TARGET SOURCE) # make project/subproject scoping easy, e.g. KokkosCompilation(PROJECT) after project(...) @@ -961,8 +978,8 @@ FUNCTION(kokkos_compilation) # set the properties if defined IF(COMP_${_TYPE}) # MESSAGE(STATUS "Using nvcc_wrapper :: ${_TYPE} :: ${COMP_${_TYPE}}") - SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") - SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_COMPILE "${Kokkos_COMPILE_LAUNCHER} ${Kokkos_NVCC_WRAPPER} ${CMAKE_CXX_COMPILER}") + SET_PROPERTY(${_TYPE} ${COMP_${_TYPE}} PROPERTY RULE_LAUNCH_LINK "${Kokkos_COMPILE_LAUNCHER} ${Kokkos_NVCC_WRAPPER} ${CMAKE_CXX_COMPILER}") ENDIF() ENDFOREACH() ENDIF() diff --git a/lib/kokkos/cmake/kokkos_test_cxx_std.cmake b/lib/kokkos/cmake/kokkos_test_cxx_std.cmake index 1d7da922eb..707fb000af 100644 --- a/lib/kokkos/cmake/kokkos_test_cxx_std.cmake +++ b/lib/kokkos/cmake/kokkos_test_cxx_std.cmake @@ -86,6 +86,19 @@ ELSE() MESSAGE(FATAL_ERROR "Unknown C++ standard ${KOKKOS_CXX_STANDARD} - must be 14, 17, or 20") ENDIF() +# Enforce that we can compile a simple C++14 program + +TRY_COMPILE(CAN_COMPILE_CPP14 + ${KOKKOS_TOP_BUILD_DIR}/corner_cases + ${KOKKOS_SOURCE_DIR}/cmake/compile_tests/cplusplus14.cpp + OUTPUT_VARIABLE ERROR_MESSAGE + CXX_STANDARD 14 +) +if (NOT CAN_COMPILE_CPP14) + UNSET(CAN_COMPILE_CPP14 CACHE) #make sure CMake always re-runs this + MESSAGE(FATAL_ERROR "C++${KOKKOS_CXX_STANDARD}-compliant compiler detected, but unable to compile C++14 or later program. Verify that ${CMAKE_CXX_COMPILER_ID}:${CMAKE_CXX_COMPILER_VERSION} is set up correctly (e.g., check that correct library headers are being used).\nFailing output:\n ${ERROR_MESSAGE}") +ENDIF() +UNSET(CAN_COMPILE_CPP14 CACHE) #make sure CMake always re-runs this # Enforce that extensions are turned off for nvcc_wrapper. diff --git a/lib/kokkos/cmake/kokkos_tpls.cmake b/lib/kokkos/cmake/kokkos_tpls.cmake index b58d3696ea..d8d044c9d7 100644 --- a/lib/kokkos/cmake/kokkos_tpls.cmake +++ b/lib/kokkos/cmake/kokkos_tpls.cmake @@ -1,5 +1,6 @@ KOKKOS_CFG_DEPENDS(TPLS OPTIONS) KOKKOS_CFG_DEPENDS(TPLS DEVICES) +KOKKOS_CFG_DEPENDS(TPLS COMPILER_ID) FUNCTION(KOKKOS_TPL_OPTION PKG DEFAULT) CMAKE_PARSE_ARGUMENTS(PARSED @@ -38,6 +39,12 @@ IF(KOKKOS_ENABLE_MEMKIND) ENDIF() KOKKOS_TPL_OPTION(CUDA ${Kokkos_ENABLE_CUDA} TRIBITS CUDA) KOKKOS_TPL_OPTION(LIBRT Off) +IF(KOKKOS_ENABLE_HIP AND NOT KOKKOS_CXX_COMPILER_ID STREQUAL HIPCC) + SET(ROCM_DEFAULT ON) +ELSE() + SET(ROCM_DEFAULT OFF) +ENDIF() +KOKKOS_TPL_OPTION(ROCM ${ROCM_DEFAULT}) IF (WIN32) SET(LIBDL_DEFAULT Off) @@ -70,6 +77,7 @@ KOKKOS_IMPORT_TPL(LIBRT) KOKKOS_IMPORT_TPL(LIBDL) KOKKOS_IMPORT_TPL(MEMKIND) KOKKOS_IMPORT_TPL(PTHREAD INTERFACE) +KOKKOS_IMPORT_TPL(ROCM INTERFACE) #Convert list to newlines (which CMake doesn't always like in cache variables) STRING(REPLACE ";" "\n" KOKKOS_TPL_EXPORT_TEMP "${KOKKOS_TPL_EXPORTS}") diff --git a/lib/kokkos/cmake/kokkos_tribits.cmake b/lib/kokkos/cmake/kokkos_tribits.cmake index 059fb192f0..afa036066a 100644 --- a/lib/kokkos/cmake/kokkos_tribits.cmake +++ b/lib/kokkos/cmake/kokkos_tribits.cmake @@ -141,39 +141,54 @@ FUNCTION(KOKKOS_ADD_EXECUTABLE ROOT_NAME) ENDFUNCTION() FUNCTION(KOKKOS_ADD_EXECUTABLE_AND_TEST ROOT_NAME) -CMAKE_PARSE_ARGUMENTS(PARSE - "" - "" - "SOURCES;CATEGORIES;ARGS" - ${ARGN}) -VERIFY_EMPTY(KOKKOS_ADD_EXECUTABLE_AND_TEST ${PARSE_UNPARSED_ARGUMENTS}) + CMAKE_PARSE_ARGUMENTS(PARSE + "" + "" + "SOURCES;CATEGORIES;ARGS" + ${ARGN}) + VERIFY_EMPTY(KOKKOS_ADD_EXECUTABLE_AND_TEST ${PARSE_UNPARSED_ARGUMENTS}) -IF (KOKKOS_HAS_TRILINOS) - IF(DEFINED PARSE_ARGS) - STRING(REPLACE ";" " " PARSE_ARGS "${PARSE_ARGS}") - ENDIF() - TRIBITS_ADD_EXECUTABLE_AND_TEST( - ${ROOT_NAME} - SOURCES ${PARSE_SOURCES} - TESTONLYLIBS kokkos_gtest - NUM_MPI_PROCS 1 - COMM serial mpi - ARGS ${PARSE_ARGS} - CATEGORIES ${PARSE_CATEGORIES} - SOURCES ${PARSE_SOURCES} - FAIL_REGULAR_EXPRESSION " FAILED " - ARGS ${PARSE_ARGS} - ) -ELSE() - KOKKOS_ADD_TEST_EXECUTABLE(${ROOT_NAME} - SOURCES ${PARSE_SOURCES} - ) - KOKKOS_ADD_TEST(NAME ${ROOT_NAME} - EXE ${ROOT_NAME} - FAIL_REGULAR_EXPRESSION " FAILED " - ARGS ${PARSE_ARGS} - ) -ENDIF() + IF (KOKKOS_HAS_TRILINOS) + IF(DEFINED PARSE_ARGS) + STRING(REPLACE ";" " " PARSE_ARGS "${PARSE_ARGS}") + ENDIF() + TRIBITS_ADD_EXECUTABLE_AND_TEST( + ${ROOT_NAME} + SOURCES ${PARSE_SOURCES} + TESTONLYLIBS kokkos_gtest + NUM_MPI_PROCS 1 + COMM serial mpi + ARGS ${PARSE_ARGS} + CATEGORIES ${PARSE_CATEGORIES} + SOURCES ${PARSE_SOURCES} + FAIL_REGULAR_EXPRESSION " FAILED " + ARGS ${PARSE_ARGS} + ) + ELSE() + KOKKOS_ADD_TEST_EXECUTABLE(${ROOT_NAME} + SOURCES ${PARSE_SOURCES} + ) + IF (PARSE_ARGS) + SET(TEST_NUMBER 0) + FOREACH (ARG_STR ${PARSE_ARGS}) + # This is passed as a single string blob to match TriBITS behavior + # We need this to be turned into a list + STRING(REPLACE " " ";" ARG_STR_LIST ${ARG_STR}) + LIST(APPEND TEST_NAME "${ROOT_NAME}${TEST_NUMBER}") + MATH(EXPR TEST_NUMBER "${TEST_NUMBER} + 1") + KOKKOS_ADD_TEST(NAME ${TEST_NAME} + EXE ${ROOT_NAME} + FAIL_REGULAR_EXPRESSION " FAILED " + ARGS ${ARG_STR_LIST} + ) + ENDFOREACH() + ELSE() + KOKKOS_ADD_TEST(NAME ${ROOT_NAME} + EXE ${ROOT_NAME} + FAIL_REGULAR_EXPRESSION " FAILED " + ) + ENDIF() + ENDIF() ENDFUNCTION() FUNCTION(KOKKOS_SET_EXE_PROPERTY ROOT_NAME) @@ -301,11 +316,26 @@ ENDMACRO() ## Includes generated header files, scripts such as nvcc_wrapper and hpcbind, ## as well as other files provided through plugins. MACRO(KOKKOS_INSTALL_ADDITIONAL_FILES) - # kokkos_launch_compiler is used by Kokkos to prefix compiler commands so that they forward to nvcc_wrapper + + # kokkos_launch_compiler is used by Kokkos to prefix compiler commands so that they forward to original kokkos compiler + # if nvcc_wrapper was not used as CMAKE_CXX_COMPILER, configure the original compiler into kokkos_launch_compiler + IF(NOT "${CMAKE_CXX_COMPILER}" MATCHES "nvcc_wrapper") + SET(NVCC_WRAPPER_DEFAULT_COMPILER "${CMAKE_CXX_COMPILER}") + ELSE() + IF(NOT "$ENV{NVCC_WRAPPER_DEFAULT_COMPILER}" STREQUAL "") + SET(NVCC_WRAPPER_DEFAULT_COMPILER "$ENV{NVCC_WRAPPER_DEFAULT_COMPILER}") + ENDIF() + ENDIF() + + CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/bin/kokkos_launch_compiler + ${PROJECT_BINARY_DIR}/temp/kokkos_launch_compiler + @ONLY) + INSTALL(PROGRAMS "${CMAKE_CURRENT_SOURCE_DIR}/bin/nvcc_wrapper" "${CMAKE_CURRENT_SOURCE_DIR}/bin/hpcbind" "${CMAKE_CURRENT_SOURCE_DIR}/bin/kokkos_launch_compiler" + "${PROJECT_BINARY_DIR}/temp/kokkos_launch_compiler" DESTINATION ${CMAKE_INSTALL_BINDIR}) INSTALL(FILES "${CMAKE_CURRENT_BINARY_DIR}/KokkosCore_config.h" @@ -313,7 +343,7 @@ MACRO(KOKKOS_INSTALL_ADDITIONAL_FILES) "${CMAKE_CURRENT_BINARY_DIR}/KokkosCore_Config_SetupBackend.hpp" "${CMAKE_CURRENT_BINARY_DIR}/KokkosCore_Config_DeclareBackend.hpp" "${CMAKE_CURRENT_BINARY_DIR}/KokkosCore_Config_PostInclude.hpp" - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) + DESTINATION ${KOKKOS_HEADER_DIR}) ENDMACRO() FUNCTION(KOKKOS_SET_LIBRARY_PROPERTIES LIBRARY_NAME) @@ -330,24 +360,12 @@ FUNCTION(KOKKOS_SET_LIBRARY_PROPERTIES LIBRARY_NAME) ${LIBRARY_NAME} PUBLIC $<$:${KOKKOS_LINK_OPTIONS}> ) - ELSEIF(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.13") + ELSE() #I can use link options #just assume CXX linkage TARGET_LINK_OPTIONS( ${LIBRARY_NAME} PUBLIC ${KOKKOS_LINK_OPTIONS} ) - ELSE() - #assume CXX linkage, we have no good way to check otherwise - IF (PARSE_PLAIN_STYLE) - TARGET_LINK_LIBRARIES( - ${LIBRARY_NAME} ${KOKKOS_LINK_OPTIONS} - ) - ELSE() - #well, have to do it the wrong way for now - TARGET_LINK_LIBRARIES( - ${LIBRARY_NAME} PUBLIC ${KOKKOS_LINK_OPTIONS} - ) - ENDIF() ENDIF() TARGET_COMPILE_OPTIONS( @@ -448,6 +466,13 @@ FUNCTION(KOKKOS_INTERNAL_ADD_LIBRARY LIBRARY_NAME) ${PARSE_SOURCES} ) + IF(PARSE_SHARED OR BUILD_SHARED_LIBS) + SET_TARGET_PROPERTIES(${LIBRARY_NAME} PROPERTIES + VERSION ${Kokkos_VERSION} + SOVERSION ${Kokkos_VERSION_MAJOR}.${Kokkos_VERSION_MINOR} + ) + ENDIF() + KOKKOS_INTERNAL_ADD_LIBRARY_INSTALL(${LIBRARY_NAME}) #In case we are building in-tree, add an alias name diff --git a/lib/kokkos/containers/src/CMakeLists.txt b/lib/kokkos/containers/src/CMakeLists.txt index 7000624b6b..98655896d4 100644 --- a/lib/kokkos/containers/src/CMakeLists.txt +++ b/lib/kokkos/containers/src/CMakeLists.txt @@ -26,8 +26,6 @@ KOKKOS_ADD_LIBRARY( HEADERS ${KOKKOS_CONTAINER_HEADERS} ) -SET_TARGET_PROPERTIES(kokkoscontainers PROPERTIES VERSION ${Kokkos_VERSION}) - KOKKOS_LIB_INCLUDE_DIRECTORIES(kokkoscontainers ${KOKKOS_TOP_BUILD_DIR} ${CMAKE_CURRENT_BINARY_DIR} @@ -36,4 +34,3 @@ KOKKOS_LIB_INCLUDE_DIRECTORIES(kokkoscontainers KOKKOS_LINK_INTERNAL_LIBRARY(kokkoscontainers kokkoscore) #----------------------------------------------------------------------------- - diff --git a/lib/kokkos/containers/src/Kokkos_DualView.hpp b/lib/kokkos/containers/src/Kokkos_DualView.hpp index 689f0eb2ed..45710d1f73 100644 --- a/lib/kokkos/containers/src/Kokkos_DualView.hpp +++ b/lib/kokkos/containers/src/Kokkos_DualView.hpp @@ -91,6 +91,25 @@ namespace Kokkos { * behavior. Please see the documentation of Kokkos::View for * examples. The default suffices for most users. */ + +namespace Impl { + +#ifdef KOKKOS_ENABLE_CUDA + +inline const Kokkos::Cuda& get_cuda_space(const Kokkos::Cuda& in) { return in; } + +inline const Kokkos::Cuda& get_cuda_space() { + return *Kokkos::Impl::cuda_get_deep_copy_space(); +} + +template +inline const Kokkos::Cuda& get_cuda_space(const NonCudaExecSpace&) { + return get_cuda_space(); +} + +#endif // KOKKOS_ENABLE_CUDA + +} // namespace Impl template class DualView : public ViewTraits { @@ -295,6 +314,53 @@ class DualView : public ViewTraits { "DualView constructed with incompatible views"); } } + // does the DualView have only one device + struct impl_dualview_is_single_device { + enum : bool { + value = std::is_same::value + }; + }; + + // does the given device match the device of t_dev? + template + struct impl_device_matches_tdev_device { + enum : bool { + value = std::is_same::value + }; + }; + // does the given device match the device of t_host? + template + struct impl_device_matches_thost_device { + enum : bool { + value = std::is_same::value + }; + }; + + // does the given device match the execution space of t_host? + template + struct impl_device_matches_thost_exec { + enum : bool { + value = std::is_same::value + }; + }; + + // does the given device match the execution space of t_dev? + template + struct impl_device_matches_tdev_exec { + enum : bool { + value = std::is_same::value + }; + }; + + // does the given device's memory space match the memory space of t_dev? + template + struct impl_device_matches_tdev_memory_space { + enum : bool { + value = std::is_same::value + }; + }; //@} //! \name Methods for synchronizing, marking as modified, and getting Views. @@ -302,7 +368,7 @@ class DualView : public ViewTraits { /// \brief Return a View on a specific device \c Device. /// - /// Please don't be afraid of the if_c expression in the return + /// Please don't be afraid of the nested if_c expressions in the return /// value's type. That just tells the method what the return type /// should be: t_dev if the \c Device template parameter matches /// this DualView's device type, else t_host. @@ -323,10 +389,17 @@ class DualView : public ViewTraits { /// typename dual_view_type::t_host hostView = DV.view (); /// \endcode template - KOKKOS_INLINE_FUNCTION const typename Impl::if_c< - std::is_same::value, - t_dev, t_host>::type& + KOKKOS_INLINE_FUNCTION const typename std::conditional_t< + impl_device_matches_tdev_device::value, t_dev, + typename std::conditional_t< + impl_device_matches_thost_device::value, t_host, + typename std::conditional_t< + impl_device_matches_thost_exec::value, t_host, + typename std::conditional_t< + impl_device_matches_tdev_exec::value, t_dev, + typename std::conditional_t< + impl_device_matches_tdev_memory_space::value, + t_dev, t_host> > > > > view() const { constexpr bool device_is_memspace = std::is_same::value; @@ -463,6 +536,7 @@ class DualView : public ViewTraits { true); } } + /// \brief Update data on device or host only if data in the other /// space has been marked as modified. /// @@ -480,12 +554,9 @@ class DualView : public ViewTraits { /// the data in either View. You must manually mark modified data /// as modified, by calling the modify() method with the /// appropriate template parameter. - template - void sync(const typename std::enable_if< - (std::is_same::value) || - (std::is_same::value), - int>::type& = 0) { + // deliberately passing args by cref as they're used multiple times + template + void sync_impl(std::true_type, Args const&... args) { if (modified_flags.data() == nullptr) return; int dev = get_device_side(); @@ -497,12 +568,12 @@ class DualView : public ViewTraits { Kokkos::CudaUVMSpace>::value) { if (d_view.data() == h_view.data()) Kokkos::Impl::cuda_prefetch_pointer( - Kokkos::Cuda(), d_view.data(), + Impl::get_cuda_space(args...), d_view.data(), sizeof(typename t_dev::value_type) * d_view.span(), true); } #endif - deep_copy(d_view, h_view); + deep_copy(args..., d_view, h_view); modified_flags(0) = modified_flags(1) = 0; impl_report_device_sync(); } @@ -514,12 +585,12 @@ class DualView : public ViewTraits { Kokkos::CudaUVMSpace>::value) { if (d_view.data() == h_view.data()) Kokkos::Impl::cuda_prefetch_pointer( - Kokkos::Cuda(), d_view.data(), + Impl::get_cuda_space(args...), d_view.data(), sizeof(typename t_dev::value_type) * d_view.span(), false); } #endif - deep_copy(h_view, d_view); + deep_copy(args..., h_view, d_view); modified_flags(0) = modified_flags(1) = 0; impl_report_host_sync(); } @@ -533,10 +604,26 @@ class DualView : public ViewTraits { template void sync(const typename std::enable_if< - (!std::is_same::value) || + (std::is_same::value) || (std::is_same::value), int>::type& = 0) { + sync_impl(std::true_type{}); + } + + template + void sync(const ExecutionSpace& exec, + const typename std::enable_if< + (std::is_same::value) || + (std::is_same::value), + int>::type& = 0) { + sync_impl(std::true_type{}, exec); + } + + // deliberately passing args by cref as they're used multiple times + template + void sync_impl(std::false_type, Args const&...) { if (modified_flags.data() == nullptr) return; int dev = get_device_side(); @@ -557,7 +644,27 @@ class DualView : public ViewTraits { } } - void sync_host() { + template + void sync(const typename std::enable_if< + (!std::is_same::value) || + (std::is_same::value), + int>::type& = 0) { + sync_impl(std::false_type{}); + } + template + void sync(const ExecutionSpace& exec, + const typename std::enable_if< + (!std::is_same::value) || + (std::is_same::value), + int>::type& = 0) { + sync_impl(std::false_type{}, exec); + } + + // deliberately passing args by cref as they're used multiple times + template + void sync_host_impl(Args const&... args) { if (!std::is_same::value) Impl::throw_runtime_exception( @@ -569,18 +676,26 @@ class DualView : public ViewTraits { Kokkos::CudaUVMSpace>::value) { if (d_view.data() == h_view.data()) Kokkos::Impl::cuda_prefetch_pointer( - Kokkos::Cuda(), d_view.data(), + Impl::get_cuda_space(args...), d_view.data(), sizeof(typename t_dev::value_type) * d_view.span(), false); } #endif - deep_copy(h_view, d_view); + deep_copy(args..., h_view, d_view); modified_flags(1) = modified_flags(0) = 0; impl_report_host_sync(); } } - void sync_device() { + template + void sync_host(const ExecSpace& exec) { + sync_host_impl(exec); + } + void sync_host() { sync_host_impl(); } + + // deliberately passing args by cref as they're used multiple times + template + void sync_device_impl(Args const&... args) { if (!std::is_same::value) Impl::throw_runtime_exception( @@ -592,17 +707,23 @@ class DualView : public ViewTraits { Kokkos::CudaUVMSpace>::value) { if (d_view.data() == h_view.data()) Kokkos::Impl::cuda_prefetch_pointer( - Kokkos::Cuda(), d_view.data(), + Impl::get_cuda_space(args...), d_view.data(), sizeof(typename t_dev::value_type) * d_view.span(), true); } #endif - deep_copy(d_view, h_view); + deep_copy(args..., d_view, h_view); modified_flags(1) = modified_flags(0) = 0; impl_report_device_sync(); } } + template + void sync_device(const ExecSpace& exec) { + sync_device_impl(exec); + } + void sync_device() { sync_device_impl(); } + template bool need_sync() const { if (modified_flags.data() == nullptr) return false; @@ -658,6 +779,7 @@ class DualView : public ViewTraits { template void modify() { if (modified_flags.data() == nullptr) return; + if (impl_dualview_is_single_device::value) return; int dev = get_device_side(); if (dev == 1) { // if Device is the same as DualView's device type @@ -690,6 +812,7 @@ class DualView : public ViewTraits { } inline void modify_host() { + if (impl_dualview_is_single_device::value) return; if (modified_flags.data() != nullptr) { modified_flags(0) = (modified_flags(1) > modified_flags(0) ? modified_flags(1) @@ -710,6 +833,7 @@ class DualView : public ViewTraits { } inline void modify_device() { + if (impl_dualview_is_single_device::value) return; if (modified_flags.data() != nullptr) { modified_flags(1) = (modified_flags(1) > modified_flags(0) ? modified_flags(1) diff --git a/lib/kokkos/containers/src/Kokkos_DynRankView.hpp b/lib/kokkos/containers/src/Kokkos_DynRankView.hpp index c66d7a5f36..c6323fef93 100644 --- a/lib/kokkos/containers/src/Kokkos_DynRankView.hpp +++ b/lib/kokkos/containers/src/Kokkos_DynRankView.hpp @@ -245,13 +245,10 @@ KOKKOS_INLINE_FUNCTION bool dyn_rank_view_verify_operator_bounds( return (size_t(i) < map.extent(R)) && dyn_rank_view_verify_operator_bounds(rank, map, args...); } else if (i != 0) { - // FIXME_SYCL SYCL doesn't allow printf in kernels -#ifndef KOKKOS_ENABLE_SYCL - printf( + KOKKOS_IMPL_DO_NOT_USE_PRINTF( "DynRankView Debug Bounds Checking Error: at rank %u\n Extra " "arguments beyond the rank must be zero \n", R); -#endif return (false) && dyn_rank_view_verify_operator_bounds(rank, map, args...); } else { @@ -575,37 +572,22 @@ class DynRankView : public ViewTraits { (is_layout_left || is_layout_right || is_layout_stride) }; - template ::accessible> - struct verify_space { - KOKKOS_FORCEINLINE_FUNCTION static void check() {} - }; - - template - struct verify_space { - KOKKOS_FORCEINLINE_FUNCTION static void check() { - Kokkos::abort( - "Kokkos::DynRankView ERROR: attempt to access inaccessible memory " - "space"); - }; - }; - // Bounds checking macros #if defined(KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK) // rank of the calling operator - included as first argument in ARG -#define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \ - DynRankView::template verify_space< \ - Kokkos::Impl::ActiveExecutionMemorySpace>::check(); \ - Kokkos::Impl::dyn_rank_view_verify_operator_bounds< \ - typename traits::memory_space> \ +#define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \ + Kokkos::Impl::verify_space::check(); \ + Kokkos::Impl::dyn_rank_view_verify_operator_bounds< \ + typename traits::memory_space> \ ARG; #else -#define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \ - DynRankView::template verify_space< \ - Kokkos::Impl::ActiveExecutionMemorySpace>::check(); +#define KOKKOS_IMPL_VIEW_OPERATOR_VERIFY(ARG) \ + Kokkos::Impl::verify_space::check(); #endif diff --git a/lib/kokkos/containers/src/Kokkos_DynamicView.hpp b/lib/kokkos/containers/src/Kokkos_DynamicView.hpp index 06bd556661..cc949d4c55 100644 --- a/lib/kokkos/containers/src/Kokkos_DynamicView.hpp +++ b/lib/kokkos/containers/src/Kokkos_DynamicView.hpp @@ -76,6 +76,12 @@ struct ChunkArraySpace { using memory_space = typename Kokkos::Experimental::HIPHostPinnedSpace; }; #endif +#ifdef KOKKOS_ENABLE_SYCL +template <> +struct ChunkArraySpace { + using memory_space = typename Kokkos::Experimental::SYCLSharedUSMSpace; +}; +#endif } // end namespace Impl /** \brief Dynamic views are restricted to rank-one and no layout. diff --git a/lib/kokkos/containers/src/Kokkos_OffsetView.hpp b/lib/kokkos/containers/src/Kokkos_OffsetView.hpp index 4fd084338e..0f21a08ba3 100644 --- a/lib/kokkos/containers/src/Kokkos_OffsetView.hpp +++ b/lib/kokkos/containers/src/Kokkos_OffsetView.hpp @@ -377,34 +377,20 @@ class OffsetView : public ViewTraits { std::is_same::value && (is_layout_left || is_layout_right || is_layout_stride); - template ::accessible> - struct verify_space { - KOKKOS_FORCEINLINE_FUNCTION static void check() {} - }; - - template - struct verify_space { - KOKKOS_FORCEINLINE_FUNCTION static void check() { - Kokkos::abort( - "Kokkos::View ERROR: attempt to access inaccessible memory space"); - }; - }; - #if defined(KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK) -#define KOKKOS_IMPL_OFFSETVIEW_OPERATOR_VERIFY(ARG) \ - OffsetView::template verify_space< \ - Kokkos::Impl::ActiveExecutionMemorySpace>::check(); \ - Kokkos::Experimental::Impl::offsetview_verify_operator_bounds< \ - typename traits::memory_space> \ +#define KOKKOS_IMPL_OFFSETVIEW_OPERATOR_VERIFY(ARG) \ + Kokkos::Impl::verify_space::check(); \ + Kokkos::Experimental::Impl::offsetview_verify_operator_bounds< \ + typename traits::memory_space> \ ARG; #else -#define KOKKOS_IMPL_OFFSETVIEW_OPERATOR_VERIFY(ARG) \ - OffsetView::template verify_space< \ - Kokkos::Impl::ActiveExecutionMemorySpace>::check(); +#define KOKKOS_IMPL_OFFSETVIEW_OPERATOR_VERIFY(ARG) \ + Kokkos::Impl::verify_space::check(); #endif public: diff --git a/lib/kokkos/containers/src/Kokkos_ScatterView.hpp b/lib/kokkos/containers/src/Kokkos_ScatterView.hpp index 5e18f5a80e..dcd4cf73e5 100644 --- a/lib/kokkos/containers/src/Kokkos_ScatterView.hpp +++ b/lib/kokkos/containers/src/Kokkos_ScatterView.hpp @@ -649,13 +649,13 @@ struct ReduceDuplicatesBase { size_t stride; size_t start; size_t n; - ReduceDuplicatesBase(ValueType const* src_in, ValueType* dest_in, - size_t stride_in, size_t start_in, size_t n_in, - std::string const& name) + ReduceDuplicatesBase(ExecSpace const& exec_space, ValueType const* src_in, + ValueType* dest_in, size_t stride_in, size_t start_in, + size_t n_in, std::string const& name) : src(src_in), dst(dest_in), stride(stride_in), start(start_in), n(n_in) { parallel_for( std::string("Kokkos::ScatterView::ReduceDuplicates [") + name + "]", - RangePolicy(0, stride), + RangePolicy(exec_space, 0, stride), static_cast(*this)); } }; @@ -667,9 +667,10 @@ template struct ReduceDuplicates : public ReduceDuplicatesBase { using Base = ReduceDuplicatesBase; - ReduceDuplicates(ValueType const* src_in, ValueType* dst_in, size_t stride_in, - size_t start_in, size_t n_in, std::string const& name) - : Base(src_in, dst_in, stride_in, start_in, n_in, name) {} + ReduceDuplicates(ExecSpace const& exec_space, ValueType const* src_in, + ValueType* dst_in, size_t stride_in, size_t start_in, + size_t n_in, std::string const& name) + : Base(exec_space, src_in, dst_in, stride_in, start_in, n_in, name) {} KOKKOS_FORCEINLINE_FUNCTION void operator()(size_t i) const { for (size_t j = Base::start; j < Base::n; ++j) { ScatterValue struct ResetDuplicatesBase { using Derived = ResetDuplicates; ValueType* data; - ResetDuplicatesBase(ValueType* data_in, size_t size_in, - std::string const& name) + ResetDuplicatesBase(ExecSpace const& exec_space, ValueType* data_in, + size_t size_in, std::string const& name) : data(data_in) { parallel_for( std::string("Kokkos::ScatterView::ResetDuplicates [") + name + "]", - RangePolicy(0, size_in), + RangePolicy(exec_space, 0, size_in), static_cast(*this)); } }; @@ -703,8 +704,9 @@ struct ResetDuplicatesBase { template struct ResetDuplicates : public ResetDuplicatesBase { using Base = ResetDuplicatesBase; - ResetDuplicates(ValueType* data_in, size_t size_in, std::string const& name) - : Base(data_in, size_in, name) {} + ResetDuplicates(ExecSpace const& exec_space, ValueType* data_in, + size_t size_in, std::string const& name) + : Base(exec_space, data_in, size_in, name) {} KOKKOS_FORCEINLINE_FUNCTION void operator()(size_t i) const { ScatterValue @@ -713,6 +715,16 @@ struct ResetDuplicates : public ResetDuplicatesBase { } }; +template +void check_scatter_view_allocation_properties_argument( + ViewCtorProp const&) { + static_assert(ViewCtorProp::has_execution_space && + ViewCtorProp::has_label && + ViewCtorProp::initialize, + "Allocation property must have an execution name as well as a " + "label, and must perform the view initialization"); +} + } // namespace Experimental } // namespace Impl } // namespace Kokkos @@ -762,10 +774,26 @@ class ScatterView const& original_view) : internal_view(original_view) {} + template + ScatterView(execution_space const& /* exec_space */, + View const& original_view) + : internal_view(original_view) {} + template ScatterView(std::string const& name, Dims... dims) : internal_view(name, dims...) {} + // This overload allows specifying an execution space instance to be + // used by passing, e.g., Kokkos::view_alloc(exec_space, "label") as + // first argument. + template + ScatterView(::Kokkos::Impl::ViewCtorProp const& arg_prop, Dims... dims) + : internal_view(arg_prop, dims...) { + using ::Kokkos::Impl::Experimental:: + check_scatter_view_allocation_properties_argument; + check_scatter_view_allocation_properties_argument(arg_prop); + } + template KOKKOS_FUNCTION ScatterView( const ScatterView void contribute_into(View const& dest) const { + contribute_into(execution_space(), dest); + } + + template + void contribute_into(execution_space const& exec_space, + View const& dest) const { using dest_type = View; static_assert(std::is_same::value, "ScatterView contribute destination has different layout"); static_assert( - Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< - memory_space, typename dest_type::memory_space>::value, + Kokkos::Impl::SpaceAccessibility< + execution_space, typename dest_type::memory_space>::accessible, "ScatterView contribute destination memory space not accessible"); if (dest.data() == internal_view.data()) return; Kokkos::Impl::Experimental::ReduceDuplicates( - internal_view.data(), dest.data(), 0, 0, 1, internal_view.label()); + exec_space, internal_view.data(), dest.data(), 0, 0, 1, + internal_view.label()); } - void reset() { + void reset(execution_space const& exec_space = execution_space()) { Kokkos::Impl::Experimental::ResetDuplicates( - internal_view.data(), internal_view.size(), internal_view.label()); + exec_space, internal_view.data(), internal_view.size(), + internal_view.label()); } template void reset_except(View const& view) { - if (view.data() != internal_view.data()) reset(); + reset_except(execution_space(), view); + } + + template + void reset_except(const execution_space& exec_space, + View const& view) { + if (view.data() != internal_view.data()) reset(exec_space); } void resize(const size_t n0 = 0, const size_t n1 = 0, const size_t n2 = 0, @@ -928,10 +970,16 @@ class ScatterView ScatterView(View const& original_view) + : ScatterView(execution_space(), original_view) {} + + template + ScatterView(execution_space const& exec_space, + View const& original_view) : unique_token(), internal_view( view_alloc(WithoutInitializing, - std::string("duplicated_") + original_view.label()), + std::string("duplicated_") + original_view.label(), + exec_space), unique_token.size(), original_view.rank_dynamic > 0 ? original_view.extent(0) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, @@ -949,14 +997,32 @@ class ScatterView ScatterView(std::string const& name, Dims... dims) - : internal_view(view_alloc(WithoutInitializing, name), + : ScatterView(view_alloc(execution_space(), name), dims...) {} + + // This overload allows specifying an execution space instance to be + // used by passing, e.g., Kokkos::view_alloc(exec_space, "label") as + // first argument. + template + ScatterView(::Kokkos::Impl::ViewCtorProp const& arg_prop, Dims... dims) + : internal_view(view_alloc(WithoutInitializing, + static_cast<::Kokkos::Impl::ViewCtorProp< + void, std::string> const&>(arg_prop) + .value), unique_token.size(), dims...) { - reset(); + using ::Kokkos::Impl::Experimental:: + check_scatter_view_allocation_properties_argument; + check_scatter_view_allocation_properties_argument(arg_prop); + + auto const exec_space = + static_cast<::Kokkos::Impl::ViewCtorProp const&>( + arg_prop) + .value; + reset(exec_space); } template @@ -984,37 +1050,51 @@ class ScatterView void contribute_into(View const& dest) const { + contribute_into(execution_space(), dest); + } + + template + void contribute_into(execution_space const& exec_space, + View const& dest) const { using dest_type = View; static_assert(std::is_same::value, "ScatterView deep_copy destination has different layout"); static_assert( - Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< - memory_space, typename dest_type::memory_space>::value, + Kokkos::Impl::SpaceAccessibility< + execution_space, typename dest_type::memory_space>::accessible, "ScatterView deep_copy destination memory space not accessible"); bool is_equal = (dest.data() == internal_view.data()); size_t start = is_equal ? 1 : 0; Kokkos::Impl::Experimental::ReduceDuplicates( - internal_view.data(), dest.data(), internal_view.stride(0), start, - internal_view.extent(0), internal_view.label()); + exec_space, internal_view.data(), dest.data(), internal_view.stride(0), + start, internal_view.extent(0), internal_view.label()); } - void reset() { + void reset(execution_space const& exec_space = execution_space()) { Kokkos::Impl::Experimental::ResetDuplicates( - internal_view.data(), internal_view.size(), internal_view.label()); + exec_space, internal_view.data(), internal_view.size(), + internal_view.label()); } + template void reset_except(View const& view) { + reset_except(execution_space(), view); + } + + template + void reset_except(execution_space const& exec_space, + View const& view) { if (view.data() != internal_view.data()) { - reset(); + reset(exec_space); return; } Kokkos::Impl::Experimental::ResetDuplicates( - internal_view.data() + view.size(), internal_view.size() - view.size(), - internal_view.label()); + exec_space, internal_view.data() + view.size(), + internal_view.size() - view.size(), internal_view.label()); } void resize(const size_t n0 = 0, const size_t n1 = 0, const size_t n2 = 0, @@ -1075,7 +1155,13 @@ class ScatterView - ScatterView(View const& original_view) : unique_token() { + ScatterView(View const& original_view) + : ScatterView(execution_space(), original_view) {} + + template + ScatterView(execution_space const& exec_space, + View const& original_view) + : unique_token() { size_t arg_N[8] = {original_view.rank > 0 ? original_view.extent(0) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, original_view.rank > 1 ? original_view.extent(1) @@ -1094,14 +1180,27 @@ class ScatterView - ScatterView(std::string const& name, Dims... dims) { + ScatterView(std::string const& name, Dims... dims) + : ScatterView(view_alloc(execution_space(), name), dims...) {} + + // This overload allows specifying an execution space instance to be + // used by passing, e.g., Kokkos::view_alloc(exec_space, "label") as + // first argument. + template + ScatterView(::Kokkos::Impl::ViewCtorProp const& arg_prop, + Dims... dims) { + using ::Kokkos::Impl::Experimental:: + check_scatter_view_allocation_properties_argument; + check_scatter_view_allocation_properties_argument(arg_prop); + original_view_type original_view; size_t arg_N[8] = {original_view.rank > 0 ? original_view.static_extent(0) : KOKKOS_IMPL_CTOR_DEFAULT_ARG, @@ -1120,10 +1219,20 @@ class ScatterView const&>( + arg_prop) + .value; internal_view = internal_view_type(view_alloc(WithoutInitializing, name), arg_N[0], arg_N[1], arg_N[2], arg_N[3], arg_N[4], arg_N[5], arg_N[6], arg_N[7]); - reset(); + + auto const exec_space = + static_cast<::Kokkos::Impl::ViewCtorProp const&>( + arg_prop) + .value; + reset(exec_space); } template @@ -1166,6 +1275,12 @@ class ScatterView void contribute_into(View const& dest) const { + contribute_into(execution_space(), dest); + } + + template + void contribute_into(execution_space const& exec_space, + View const& dest) const { using dest_type = View; static_assert( std::is_same::value, "ScatterView deep_copy destination has different layout"); static_assert( - Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< - memory_space, typename dest_type::memory_space>::value, + Kokkos::Impl::SpaceAccessibility< + execution_space, typename dest_type::memory_space>::accessible, "ScatterView deep_copy destination memory space not accessible"); auto extent = internal_view.extent(internal_view_type::rank - 1); bool is_equal = (dest.data() == internal_view.data()); size_t start = is_equal ? 1 : 0; Kokkos::Impl::Experimental::ReduceDuplicates( - internal_view.data(), dest.data(), + exec_space, internal_view.data(), dest.data(), internal_view.stride(internal_view_type::rank - 1), start, extent, internal_view.label()); } - void reset() { + void reset(execution_space const& exec_space = execution_space()) { Kokkos::Impl::Experimental::ResetDuplicates( - internal_view.data(), internal_view.size(), internal_view.label()); + exec_space, internal_view.data(), internal_view.size(), + internal_view.label()); } + template void reset_except(View const& view) { + reset_except(execution_space(), view); + } + + template + void reset_except(execution_space const& exec_space, + View const& view) { if (view.data() != internal_view.data()) { - reset(); + reset(exec_space); return; } Kokkos::Impl::Experimental::ResetDuplicates( - internal_view.data() + view.size(), internal_view.size() - view.size(), - internal_view.label()); + exec_space, internal_view.data() + view.size(), + internal_view.size() - view.size(), internal_view.label()); } void resize(const size_t n0 = 0, const size_t n1 = 0, const size_t n2 = 0, @@ -1316,21 +1439,21 @@ template ::array_layout, typename ViewTraits::device_type, Op, - typename Kokkos::Impl::if_c< + std::conditional_t< std::is_same::value, typename Kokkos::Impl::Experimental::DefaultDuplication< typename ViewTraits::execution_space>::type, - Duplication>::type, - typename Kokkos::Impl::if_c< + Duplication>, + std::conditional_t< std::is_same::value, typename Kokkos::Impl::Experimental::DefaultContribution< typename ViewTraits::execution_space, - typename Kokkos::Impl::if_c< + typename std::conditional_t< std::is_same::value, typename Kokkos::Impl::Experimental::DefaultDuplication< typename ViewTraits::execution_space>::type, - Duplication>::type>::type, - Contribution>::type> + Duplication>>::type, + Contribution>> create_scatter_view(View const& original_view) { return original_view; // implicit ScatterView constructor call } @@ -1365,12 +1488,21 @@ create_scatter_view(Op, Duplication, Contribution, namespace Kokkos { namespace Experimental { +template +void contribute( + typename ES::execution_space const& exec_space, View& dest, + Kokkos::Experimental::ScatterView const& src) { + src.contribute_into(exec_space, dest); +} + template void contribute( View& dest, Kokkos::Experimental::ScatterView const& src) { - src.contribute_into(dest); + using execution_space = typename ES::execution_space; + contribute(execution_space{}, dest, src); } } // namespace Experimental diff --git a/lib/kokkos/containers/src/Kokkos_UnorderedMap.hpp b/lib/kokkos/containers/src/Kokkos_UnorderedMap.hpp index d2affda93a..edb0e7261d 100644 --- a/lib/kokkos/containers/src/Kokkos_UnorderedMap.hpp +++ b/lib/kokkos/containers/src/Kokkos_UnorderedMap.hpp @@ -264,26 +264,24 @@ class UnorderedMap { private: enum : size_type { invalid_index = ~static_cast(0) }; - using impl_value_type = - typename Impl::if_c::type; + using impl_value_type = std::conditional_t; - using key_type_view = typename Impl::if_c< + using key_type_view = std::conditional_t< is_insertable_map, View, - View > >::type; + View > >; - using value_type_view = - typename Impl::if_c, - View > >::type; + using value_type_view = std::conditional_t< + is_insertable_map || is_modifiable_map, + View, + View > >; - using size_type_view = typename Impl::if_c< + using size_type_view = std::conditional_t< is_insertable_map, View, - View > >::type; + View > >; using bitset_type = - typename Impl::if_c, - ConstBitset >::type; + std::conditional_t, + ConstBitset >; enum { modified_idx = 0, erasable_idx = 1, failed_insert_idx = 2 }; enum { num_scalars = 3 }; @@ -540,10 +538,7 @@ class UnorderedMap { // Previously claimed an unused entry that was not inserted. // Release this unused entry immediately. if (!m_available_indexes.reset(new_index)) { - // FIXME_SYCL SYCL doesn't allow printf in kernels -#ifndef KOKKOS_ENABLE_SYCL - printf("Unable to free existing\n"); -#endif + KOKKOS_IMPL_DO_NOT_USE_PRINTF("Unable to free existing\n"); } } @@ -659,8 +654,8 @@ class UnorderedMap { /// /// 'const value_type' via Cuda texture fetch must return by value. KOKKOS_FORCEINLINE_FUNCTION - typename Impl::if_c<(is_set || has_const_value), impl_value_type, - impl_value_type &>::type + std::conditional_t<(is_set || has_const_value), impl_value_type, + impl_value_type &> value_at(size_type i) const { return m_values[is_set ? 0 : (i < capacity() ? i : capacity())]; } diff --git a/lib/kokkos/containers/src/impl/Kokkos_Bitset_impl.hpp b/lib/kokkos/containers/src/impl/Kokkos_Bitset_impl.hpp index 6e450598d1..6047e60f3d 100644 --- a/lib/kokkos/containers/src/impl/Kokkos_Bitset_impl.hpp +++ b/lib/kokkos/containers/src/impl/Kokkos_Bitset_impl.hpp @@ -57,10 +57,22 @@ namespace Kokkos { namespace Impl { +KOKKOS_FORCEINLINE_FUNCTION +unsigned rotate_left(unsigned i, int r) { + constexpr int size = static_cast(sizeof(unsigned) * CHAR_BIT); + return r ? ((i << r) | (i >> (size - r))) : i; +} + KOKKOS_FORCEINLINE_FUNCTION unsigned rotate_right(unsigned i, int r) { - enum { size = static_cast(sizeof(unsigned) * CHAR_BIT) }; + constexpr int size = static_cast(sizeof(unsigned) * CHAR_BIT); + // FIXME_SYCL llvm.fshr.i32 missing + // (https://github.com/intel/llvm/issues/3308) +#ifdef __SYCL_DEVICE_ONLY__ + return rotate_left(i, size - r); +#else return r ? ((i >> r) | (i << (size - r))) : i; +#endif } template diff --git a/lib/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.hpp b/lib/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.hpp index b06ab0846c..d7c4a5d1ff 100644 --- a/lib/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.hpp +++ b/lib/kokkos/containers/src/impl/Kokkos_UnorderedMap_impl.hpp @@ -250,8 +250,8 @@ struct UnorderedMapPrint { uint32_t list = m_map.m_hash_lists(i); for (size_type curr = list, ii = 0; curr != invalid_index; curr = m_map.m_next_index[curr], ++ii) { - printf("%d[%d]: %d->%d\n", list, ii, m_map.key_at(curr), - m_map.value_at(curr)); + KOKKOS_IMPL_DO_NOT_USE_PRINTF("%d[%d]: %d->%d\n", list, ii, + m_map.key_at(curr), m_map.value_at(curr)); } } }; diff --git a/lib/kokkos/containers/unit_tests/CMakeLists.txt b/lib/kokkos/containers/unit_tests/CMakeLists.txt index c84c5f6d5e..947d222c27 100644 --- a/lib/kokkos/containers/unit_tests/CMakeLists.txt +++ b/lib/kokkos/containers/unit_tests/CMakeLists.txt @@ -2,6 +2,7 @@ KOKKOS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) KOKKOS_INCLUDE_DIRECTORIES(REQUIRED_DURING_INSTALLATION_TESTING ${CMAKE_CURRENT_SOURCE_DIR}) KOKKOS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../src ) +KOKKOS_INCLUDE_DIRECTORIES(${KOKKOS_SOURCE_DIR}/core/unit_test/category_files) foreach(Tag Threads;Serial;OpenMP;HPX;Cuda;HIP;SYCL) # Because there is always an exception to the rule @@ -41,11 +42,6 @@ foreach(Tag Threads;Serial;OpenMP;HPX;Cuda;HIP;SYCL) configure_file(${dir}/dummy.cpp ${file}) list(APPEND UnitTestSources ${file}) endforeach() - list(REMOVE_ITEM UnitTestSources - ${CMAKE_CURRENT_BINARY_DIR}/sycl/TestSYCL_Bitset.cpp - ${CMAKE_CURRENT_BINARY_DIR}/sycl/TestSYCL_ScatterView.cpp - ${CMAKE_CURRENT_BINARY_DIR}/sycl/TestSYCL_UnorderedMap.cpp - ) KOKKOS_ADD_EXECUTABLE_AND_TEST(UnitTest_${Tag} SOURCES ${UnitTestSources}) endif() endforeach() diff --git a/lib/kokkos/containers/unit_tests/Makefile b/lib/kokkos/containers/unit_tests/Makefile index f42b9b7519..82669fe1ab 100644 --- a/lib/kokkos/containers/unit_tests/Makefile +++ b/lib/kokkos/containers/unit_tests/Makefile @@ -26,7 +26,7 @@ override LDFLAGS += -lpthread include $(KOKKOS_PATH)/Makefile.kokkos -KOKKOS_CXXFLAGS += -I$(GTEST_PATH) -I${KOKKOS_PATH}/containers/unit_tests +KOKKOS_CXXFLAGS += -I$(GTEST_PATH) -I${KOKKOS_PATH}/containers/unit_tests -I${KOKKOS_PATH}/core/unit_test/category_files TEST_TARGETS = TARGETS = diff --git a/lib/kokkos/containers/unit_tests/TestCuda_Category.hpp b/lib/kokkos/containers/unit_tests/TestCuda_Category.hpp deleted file mode 100644 index 50935d7a34..0000000000 --- a/lib/kokkos/containers/unit_tests/TestCuda_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_CUDA_HPP -#define KOKKOS_TEST_CUDA_HPP - -#define TEST_CATEGORY cuda -#define TEST_EXECSPACE Kokkos::Cuda - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestDualView.hpp b/lib/kokkos/containers/unit_tests/TestDualView.hpp index 531caf0f85..3eee85ed10 100644 --- a/lib/kokkos/containers/unit_tests/TestDualView.hpp +++ b/lib/kokkos/containers/unit_tests/TestDualView.hpp @@ -114,6 +114,8 @@ struct test_dualview_combinations { a.template modify(); a.template sync(); + a.template sync( + Kokkos::DefaultExecutionSpace{}); a.h_view(5, 1) = 3; a.h_view(6, 1) = 4; @@ -122,11 +124,15 @@ struct test_dualview_combinations { ViewType b = Kokkos::subview(a, std::pair(6, 9), std::pair(0, 1)); a.template sync(); + a.template sync( + Kokkos::DefaultExecutionSpace{}); b.template modify(); Kokkos::deep_copy(b.d_view, 2); a.template sync(); + a.template sync( + Kokkos::DefaultExecutionSpace{}); Scalar count = 0; for (unsigned int i = 0; i < a.d_view.extent(0); i++) for (unsigned int j = 0; j < a.d_view.extent(1); j++) @@ -180,6 +186,7 @@ struct test_dual_view_deep_copy { } else { a.modify_device(); a.sync_host(); + a.sync_host(Kokkos::DefaultExecutionSpace{}); } // Check device view is initialized as expected @@ -208,6 +215,7 @@ struct test_dual_view_deep_copy { b.template sync(); } else { b.sync_host(); + b.sync_host(Kokkos::DefaultExecutionSpace{}); } // Perform same checks on b as done on a @@ -302,6 +310,7 @@ struct test_dualview_resize { ASSERT_EQ(a.extent(1), m / factor); a.sync_device(); + a.sync_device(Kokkos::DefaultExecutionSpace{}); // Check device view is initialized as expected a_d_sum = 0; @@ -404,19 +413,14 @@ void test_dualview_resize() { Impl::test_dualview_resize(); } -// FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL TEST(TEST_CATEGORY, dualview_combination) { test_dualview_combinations(10, true); } -#endif TEST(TEST_CATEGORY, dualview_alloc) { test_dualview_alloc(10); } -// FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL TEST(TEST_CATEGORY, dualview_combinations_without_init) { test_dualview_combinations(10, false); } @@ -433,8 +437,133 @@ TEST(TEST_CATEGORY, dualview_realloc) { TEST(TEST_CATEGORY, dualview_resize) { test_dualview_resize(); } + +namespace { +/** + * + * The following tests are a response to + * https://github.com/kokkos/kokkos/issues/3850 + * and + * https://github.com/kokkos/kokkos/pull/3857 + * + * DualViews were returning incorrect view types and taking + * inappropriate actions based on the templated view methods. + * + * Specifically, template view methods were always returning + * a device view if the memory space was UVM and a Kokkos::Device was passed. + * Sync/modify methods completely broke down So these tests exist to make sure + * that we keep the semantics of UVM DualViews intact. + */ +// modify if we have other UVM enabled backends +#ifdef KOKKOS_ENABLE_CUDA // OR other UVM builds +#define UVM_ENABLED_BUILD #endif +#ifdef UVM_ENABLED_BUILD +template +struct UVMSpaceFor; +#endif + +#ifdef KOKKOS_ENABLE_CUDA // specific to CUDA +template <> +struct UVMSpaceFor { + using type = Kokkos::CudaUVMSpace; +}; +#endif + +#ifdef UVM_ENABLED_BUILD +template <> +struct UVMSpaceFor { + using type = typename UVMSpaceFor::type; +}; +#else +template +struct UVMSpaceFor { + using type = typename ExecSpace::memory_space; +}; +#endif + +using ExecSpace = Kokkos::DefaultExecutionSpace; +using MemSpace = typename UVMSpaceFor::type; +using DeviceType = Kokkos::Device; + +using DualViewType = Kokkos::DualView; +using d_device = DeviceType; +using h_device = Kokkos::Device< + Kokkos::DefaultHostExecutionSpace, + typename UVMSpaceFor::type>; + +TEST(TEST_CATEGORY, dualview_device_correct_kokkos_device) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + auto v_d = dv.template view(); + using vdt = decltype(v_d); + using vdt_d = vdt::device_type; + using vdt_d_e = vdt_d::execution_space; + ASSERT_STREQ(vdt_d_e::name(), Kokkos::DefaultExecutionSpace::name()); +} +TEST(TEST_CATEGORY, dualview_host_correct_kokkos_device) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + auto v_h = dv.template view(); + using vht = decltype(v_h); + using vht_d = vht::device_type; + using vht_d_e = vht_d::execution_space; + ASSERT_STREQ(vht_d_e::name(), Kokkos::DefaultHostExecutionSpace::name()); +} + +TEST(TEST_CATEGORY, dualview_host_modify_template_device_sync) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + dv.modify_host(); + dv.template sync(); + EXPECT_TRUE(!dv.need_sync_device()); + EXPECT_TRUE(!dv.need_sync_host()); + dv.clear_sync_state(); +} + +TEST(TEST_CATEGORY, dualview_host_modify_template_device_execspace_sync) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + dv.modify_host(); + dv.template sync(); + EXPECT_TRUE(!dv.need_sync_device()); + EXPECT_TRUE(!dv.need_sync_host()); + dv.clear_sync_state(); +} + +TEST(TEST_CATEGORY, dualview_device_modify_template_host_sync) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + dv.modify_device(); + dv.template sync(); + EXPECT_TRUE(!dv.need_sync_device()); + EXPECT_TRUE(!dv.need_sync_host()); + dv.clear_sync_state(); +} +TEST(TEST_CATEGORY, dualview_device_modify_template_host_execspace_sync) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + dv.modify_device(); + dv.template sync(); + EXPECT_TRUE(!dv.need_sync_device()); + EXPECT_TRUE(!dv.need_sync_host()); + dv.clear_sync_state(); +} + +TEST(TEST_CATEGORY, + dualview_template_views_return_correct_executionspace_views) { + DualViewType dv("myView", 100); + dv.clear_sync_state(); + using hvt = decltype(dv.view()); + using dvt = decltype(dv.view()); + ASSERT_STREQ(Kokkos::DefaultExecutionSpace::name(), + dvt::device_type::execution_space::name()); + ASSERT_STREQ(Kokkos::DefaultHostExecutionSpace::name(), + hvt::device_type::execution_space::name()); +} + +} // anonymous namespace } // namespace Test #endif // KOKKOS_TEST_DUALVIEW_HPP diff --git a/lib/kokkos/containers/unit_tests/TestDynamicView.hpp b/lib/kokkos/containers/unit_tests/TestDynamicView.hpp index 4b9f994417..f018793dd6 100644 --- a/lib/kokkos/containers/unit_tests/TestDynamicView.hpp +++ b/lib/kokkos/containers/unit_tests/TestDynamicView.hpp @@ -243,8 +243,6 @@ struct TestDynamicView { } }; -// FIXME_SYCL needs resize_serial -#ifndef KOKKOS_ENABLE_SYCL TEST(TEST_CATEGORY, dynamic_view) { using TestDynView = TestDynamicView; @@ -252,7 +250,6 @@ TEST(TEST_CATEGORY, dynamic_view) { TestDynView::run(100000 + 100 * i); } } -#endif } // namespace Test diff --git a/lib/kokkos/containers/unit_tests/TestHPX_Category.hpp b/lib/kokkos/containers/unit_tests/TestHPX_Category.hpp deleted file mode 100644 index 64fc7c0757..0000000000 --- a/lib/kokkos/containers/unit_tests/TestHPX_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_HPX_HPP -#define KOKKOS_TEST_HPX_HPP - -#define TEST_CATEGORY hpx -#define TEST_EXECSPACE Kokkos::Experimental::HPX - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestOffsetView.hpp b/lib/kokkos/containers/unit_tests/TestOffsetView.hpp index 802813b13b..9ddc226e29 100644 --- a/lib/kokkos/containers/unit_tests/TestOffsetView.hpp +++ b/lib/kokkos/containers/unit_tests/TestOffsetView.hpp @@ -130,8 +130,6 @@ void test_offsetview_construction() { } } - // FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL const int ovmin0 = ov.begin(0); const int ovend0 = ov.end(0); const int ovmin1 = ov.begin(1); @@ -178,7 +176,6 @@ void test_offsetview_construction() { } ASSERT_EQ(OVResult, answer) << "Bad data found in OffsetView"; -#endif #endif { @@ -215,8 +212,6 @@ void test_offsetview_construction() { point3_type{{extent0, extent1, extent2}}); #if defined(KOKKOS_ENABLE_CUDA_LAMBDA) || !defined(KOKKOS_ENABLE_CUDA) - // FIXME_SYCL requires MDRange policy -#ifdef KOKKOS_ENABLE_SYCL int view3DSum = 0; Kokkos::parallel_reduce( rangePolicy3DZero, @@ -239,7 +234,6 @@ void test_offsetview_construction() { ASSERT_EQ(view3DSum, offsetView3DSum) << "construction of OffsetView from View and begins array broken."; -#endif #endif } view_type viewFromOV = ov.view(); @@ -266,8 +260,6 @@ void test_offsetview_construction() { Kokkos::deep_copy(aView, ov); #if defined(KOKKOS_ENABLE_CUDA_LAMBDA) || !defined(KOKKOS_ENABLE_CUDA) - // FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL int sum = 0; Kokkos::parallel_reduce( rangePolicy2D, @@ -277,7 +269,6 @@ void test_offsetview_construction() { sum); ASSERT_EQ(sum, 0) << "deep_copy(view, offsetView) broken."; -#endif #endif } @@ -288,8 +279,6 @@ void test_offsetview_construction() { Kokkos::deep_copy(ov, aView); #if defined(KOKKOS_ENABLE_CUDA_LAMBDA) || !defined(KOKKOS_ENABLE_CUDA) - // FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL int sum = 0; Kokkos::parallel_reduce( rangePolicy2D, @@ -299,7 +288,6 @@ void test_offsetview_construction() { sum); ASSERT_EQ(sum, 0) << "deep_copy(offsetView, view) broken."; -#endif #endif } } @@ -471,8 +459,6 @@ void test_offsetview_subview() { ASSERT_EQ(offsetSubview.end(1), 9); #if defined(KOKKOS_ENABLE_CUDA_LAMBDA) || !defined(KOKKOS_ENABLE_CUDA) - // FIXME_SYCL requires MDRange policy -#ifndef KOKKOS_ENABLE_SYCL using range_type = Kokkos::MDRangePolicy, Kokkos::IndexType >; using point_type = typename range_type::point_type; @@ -498,7 +484,6 @@ void test_offsetview_subview() { sum); ASSERT_EQ(sum, 6 * (e0 - b0) * (e1 - b1)); -#endif #endif } @@ -701,12 +686,9 @@ void test_offsetview_offsets_rank3() { } #endif -// FIXME_SYCL needs MDRangePolicy -#ifndef KOKKOS_ENABLE_SYCL TEST(TEST_CATEGORY, offsetview_construction) { test_offsetview_construction(); } -#endif TEST(TEST_CATEGORY, offsetview_unmanaged_construction) { test_offsetview_unmanaged_construction(); diff --git a/lib/kokkos/containers/unit_tests/TestOpenMP_Category.hpp b/lib/kokkos/containers/unit_tests/TestOpenMP_Category.hpp deleted file mode 100644 index a0169d1702..0000000000 --- a/lib/kokkos/containers/unit_tests/TestOpenMP_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_OPENMP_HPP -#define KOKKOS_TEST_OPENMP_HPP - -#define TEST_CATEGORY openmp -#define TEST_EXECSPACE Kokkos::OpenMP - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestSYCL_Category.hpp b/lib/kokkos/containers/unit_tests/TestSYCL_Category.hpp deleted file mode 100644 index 51fd3fc911..0000000000 --- a/lib/kokkos/containers/unit_tests/TestSYCL_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_SYCL_HPP -#define KOKKOS_TEST_SYCL_HPP - -#define TEST_CATEGORY sycl -#define TEST_EXECSPACE Kokkos::Experimental::SYCL - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestScatterView.hpp b/lib/kokkos/containers/unit_tests/TestScatterView.hpp index 3a3cb607a6..fdbce2d492 100644 --- a/lib/kokkos/containers/unit_tests/TestScatterView.hpp +++ b/lib/kokkos/containers/unit_tests/TestScatterView.hpp @@ -437,6 +437,10 @@ struct test_scatter_view_config { Contribution, Op, NumberType>::orig_view_type; + void compile_constructor() { + auto sv = scatter_view_def(Kokkos::view_alloc(DeviceType{}, "label"), 10); + } + void run_test(int n) { // test allocation { diff --git a/lib/kokkos/containers/unit_tests/TestSerial_Category.hpp b/lib/kokkos/containers/unit_tests/TestSerial_Category.hpp deleted file mode 100644 index 2aa09a315a..0000000000 --- a/lib/kokkos/containers/unit_tests/TestSerial_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_SERIAL_HPP -#define KOKKOS_TEST_SERIAL_HPP - -#define TEST_CATEGORY serial -#define TEST_EXECSPACE Kokkos::Serial - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestStaticCrsGraph.hpp b/lib/kokkos/containers/unit_tests/TestStaticCrsGraph.hpp index 8bb267ce5d..a9a178f95e 100644 --- a/lib/kokkos/containers/unit_tests/TestStaticCrsGraph.hpp +++ b/lib/kokkos/containers/unit_tests/TestStaticCrsGraph.hpp @@ -285,10 +285,7 @@ void run_test_graph4() { TEST(TEST_CATEGORY, staticcrsgraph) { TestStaticCrsGraph::run_test_graph(); - // FIXME_SYCL requires MDRangePolicy -#ifndef KOKKOS_ENABLE_SYCL TestStaticCrsGraph::run_test_graph2(); -#endif TestStaticCrsGraph::run_test_graph3(1, 0); TestStaticCrsGraph::run_test_graph3(1, 1000); TestStaticCrsGraph::run_test_graph3(1, 10000); diff --git a/lib/kokkos/containers/unit_tests/TestThreads_Category.hpp b/lib/kokkos/containers/unit_tests/TestThreads_Category.hpp deleted file mode 100644 index 74a2b0da36..0000000000 --- a/lib/kokkos/containers/unit_tests/TestThreads_Category.hpp +++ /dev/null @@ -1,51 +0,0 @@ -/* -//@HEADER -// ************************************************************************ -// -// Kokkos v. 3.0 -// Copyright (2020) National Technology & Engineering -// Solutions of Sandia, LLC (NTESS). -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// 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 Corporation nor the names of the -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY NTESS "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 NTESS OR THE -// 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. -// -// Questions? Contact Christian R. Trott (crtrott@sandia.gov) -// -// ************************************************************************ -//@HEADER -*/ - -#ifndef KOKKOS_TEST_THREADS_HPP -#define KOKKOS_TEST_THREADS_HPP - -#define TEST_CATEGORY threads -#define TEST_EXECSPACE Kokkos::Threads - -#endif diff --git a/lib/kokkos/containers/unit_tests/TestUnorderedMap.hpp b/lib/kokkos/containers/unit_tests/TestUnorderedMap.hpp index d39e0061c7..4413cfbc80 100644 --- a/lib/kokkos/containers/unit_tests/TestUnorderedMap.hpp +++ b/lib/kokkos/containers/unit_tests/TestUnorderedMap.hpp @@ -163,7 +163,8 @@ struct TestFind { KOKKOS_INLINE_FUNCTION void operator()(typename execution_space::size_type i, value_type &errors) const { - const bool expect_to_find_i = (i < m_max_key); + const bool expect_to_find_i = + (i < typename execution_space::size_type(m_max_key)); const bool exists = m_map.exists(i); @@ -293,10 +294,11 @@ void test_deep_copy(uint32_t num_nodes) { } } -// FIXME_HIP wrong result in CI but works locally -#ifndef KOKKOS_ENABLE_HIP +// FIXME_SYCL wrong results on Nvidia GPUs but correct on Host and Intel GPUs +// FIXME_HIP // WORKAROUND MSVC -#ifndef _WIN32 +#if !(defined(KOKKOS_ENABLE_HIP) && (HIP_VERSION < 401)) && \ + !defined(_WIN32) && !defined(KOKKOS_ENABLE_SYCL) TEST(TEST_CATEGORY, UnorderedMap_insert) { for (int i = 0; i < 500; ++i) { test_insert(100000, 90000, 100, true); @@ -304,7 +306,6 @@ TEST(TEST_CATEGORY, UnorderedMap_insert) { } } #endif -#endif TEST(TEST_CATEGORY, UnorderedMap_failed_insert) { for (int i = 0; i < 1000; ++i) test_failed_insert(10000); diff --git a/lib/kokkos/core/perf_test/CMakeLists.txt b/lib/kokkos/core/perf_test/CMakeLists.txt index b7b817c910..9ff4b6006d 100644 --- a/lib/kokkos/core/perf_test/CMakeLists.txt +++ b/lib/kokkos/core/perf_test/CMakeLists.txt @@ -9,6 +9,14 @@ # that in TriBITS KokkosAlgorithms can be disabled... #INCLUDE_DIRECTORIES("${CMAKE_CURRENT_SOURCE_DIR}/../../algorithms/src") +# FIXME_OPENMPTARGET - the NVIDIA HPC compiler nvc++ in the OpenMPTarget backend does not pass the perf_tests. +IF (KOKKOS_ENABLE_OPENMPTARGET + AND (KOKKOS_CXX_COMPILER_ID STREQUAL PGI + OR KOKKOS_CXX_COMPILER_ID STREQUAL NVHPC)) + RETURN() +ENDIF() + + SET(SOURCES PerfTestMain.cpp PerfTestGramSchmidt.cpp @@ -68,8 +76,7 @@ KOKKOS_INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR}) KOKKOS_INCLUDE_DIRECTORIES(REQUIRED_DURING_INSTALLATION_TESTING ${CMAKE_CURRENT_SOURCE_DIR}) # This test currently times out for MSVC -# FIXME_SYCL these tests don't compile yet (require parallel_for). -IF(NOT KOKKOS_CXX_COMPILER_ID STREQUAL "MSVC" AND NOT Kokkos_ENABLE_SYCL) +IF(NOT KOKKOS_CXX_COMPILER_ID STREQUAL "MSVC") KOKKOS_ADD_EXECUTABLE_AND_TEST( PerfTestExec SOURCES ${SOURCES} @@ -77,13 +84,11 @@ IF(NOT KOKKOS_CXX_COMPILER_ID STREQUAL "MSVC" AND NOT Kokkos_ENABLE_SYCL) ) ENDIF() -# FIXME_SYCL -IF(NOT Kokkos_ENABLE_SYCL) - KOKKOS_ADD_EXECUTABLE_AND_TEST( - PerformanceTest_Atomic - SOURCES test_atomic.cpp - CATEGORIES PERFORMANCE - ) +KOKKOS_ADD_EXECUTABLE_AND_TEST( + PerformanceTest_Atomic + SOURCES test_atomic.cpp + CATEGORIES PERFORMANCE +) IF(NOT KOKKOS_ENABLE_CUDA OR KOKKOS_ENABLE_CUDA_LAMBDA) KOKKOS_ADD_EXECUTABLE_AND_TEST( @@ -98,7 +103,6 @@ KOKKOS_ADD_EXECUTABLE_AND_TEST( SOURCES test_mempool.cpp CATEGORIES PERFORMANCE ) -ENDIF() IF(NOT Kokkos_ENABLE_OPENMPTARGET) # FIXME OPENMPTARGET needs tasking diff --git a/lib/kokkos/core/perf_test/PerfTestGramSchmidt.cpp b/lib/kokkos/core/perf_test/PerfTestGramSchmidt.cpp index 70186283c1..dee21fd7a5 100644 --- a/lib/kokkos/core/perf_test/PerfTestGramSchmidt.cpp +++ b/lib/kokkos/core/perf_test/PerfTestGramSchmidt.cpp @@ -69,7 +69,7 @@ struct InvNorm2 : public Kokkos::DotSingle { KOKKOS_INLINE_FUNCTION void final(value_type& result) const { - result = std::sqrt(result); + result = Kokkos::Experimental::sqrt(result); Rjj() = result; inv() = (0 < result) ? 1.0 / result : 0; } @@ -145,7 +145,7 @@ struct ModifiedGramSchmidt { // Q(:,j) *= ( 1 / R(j,j) ); => Q(:,j) *= tmp ; Kokkos::scale(tmp, Qj); - for (size_t k = j + 1; k < count; ++k) { + for (size_type k = j + 1; k < count; ++k) { const vector_type Qk = Kokkos::subview(Q_, Kokkos::ALL(), k); const value_view Rjk = Kokkos::subview(R_, j, k); @@ -165,7 +165,7 @@ struct ModifiedGramSchmidt { //-------------------------------------------------------------------------- - static double test(const size_t length, const size_t count, + static double test(const size_type length, const size_type count, const size_t iter = 1) { multivector_type Q_("Q", length, count); multivector_type R_("R", count, count); diff --git a/lib/kokkos/core/src/CMakeLists.txt b/lib/kokkos/core/src/CMakeLists.txt index e0590a78a4..2ab0989805 100644 --- a/lib/kokkos/core/src/CMakeLists.txt +++ b/lib/kokkos/core/src/CMakeLists.txt @@ -72,8 +72,6 @@ KOKKOS_ADD_LIBRARY( ADD_BUILD_OPTIONS # core should be given all the necessary compiler/linker flags ) -SET_TARGET_PROPERTIES(kokkoscore PROPERTIES VERSION ${Kokkos_VERSION}) - KOKKOS_LIB_INCLUDE_DIRECTORIES(kokkoscore ${KOKKOS_TOP_BUILD_DIR} ${CMAKE_CURRENT_BINARY_DIR} @@ -87,3 +85,4 @@ KOKKOS_LINK_TPL(kokkoscore PUBLIC HPX) KOKKOS_LINK_TPL(kokkoscore PUBLIC LIBDL) KOKKOS_LINK_TPL(kokkoscore PUBLIC LIBRT) KOKKOS_LINK_TPL(kokkoscore PUBLIC PTHREAD) +KOKKOS_LINK_TPL(kokkoscore PUBLIC ROCM) diff --git a/lib/kokkos/core/src/Cuda/Kokkos_CudaSpace.cpp b/lib/kokkos/core/src/Cuda/Kokkos_CudaSpace.cpp index 4a30c914f0..916f109758 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_CudaSpace.cpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_CudaSpace.cpp @@ -45,6 +45,10 @@ #include #ifdef KOKKOS_ENABLE_CUDA +#include +#include +#include + #include #include #include @@ -52,10 +56,6 @@ #include #include -#include -#include -#include - //#include #include #include @@ -65,6 +65,22 @@ /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ +cudaStream_t Kokkos::Impl::cuda_get_deep_copy_stream() { + static cudaStream_t s = nullptr; + if (s == nullptr) { + cudaStreamCreate(&s); + } + return s; +} + +const std::unique_ptr &Kokkos::Impl::cuda_get_deep_copy_space( + bool initialize) { + static std::unique_ptr space = nullptr; + if (!space && initialize) + space = std::make_unique(Kokkos::Impl::cuda_get_deep_copy_stream()); + return space; +} + namespace Kokkos { namespace Impl { @@ -72,13 +88,6 @@ namespace { static std::atomic num_uvm_allocations(0); -cudaStream_t get_deep_copy_stream() { - static cudaStream_t s = nullptr; - if (s == nullptr) { - cudaStreamCreate(&s); - } - return s; -} } // namespace DeepCopy::DeepCopy(void *dst, const void *src, @@ -115,7 +124,7 @@ DeepCopy::DeepCopy(const Cuda &instance, void *dst, } void DeepCopyAsyncCuda(void *dst, const void *src, size_t n) { - cudaStream_t s = get_deep_copy_stream(); + cudaStream_t s = cuda_get_deep_copy_stream(); CUDA_SAFE_CALL(cudaMemcpyAsync(dst, src, n, cudaMemcpyDefault, s)); cudaStreamSynchronize(s); } @@ -128,14 +137,14 @@ void DeepCopyAsyncCuda(void *dst, const void *src, size_t n) { namespace Kokkos { -void CudaSpace::access_error() { +KOKKOS_DEPRECATED void CudaSpace::access_error() { const std::string msg( "Kokkos::CudaSpace::access_error attempt to execute Cuda function from " "non-Cuda space"); Kokkos::Impl::throw_runtime_exception(msg); } -void CudaSpace::access_error(const void *const) { +KOKKOS_DEPRECATED void CudaSpace::access_error(const void *const) { const std::string msg( "Kokkos::CudaSpace::access_error attempt to execute Cuda function from " "non-Cuda space"); @@ -459,79 +468,6 @@ SharedAllocationRecord::attach_texture_object( return tex_obj; } -//============================================================================== -// {{{1 - -std::string SharedAllocationRecord::get_label() const { - SharedAllocationHeader header; - - Kokkos::Impl::DeepCopy( - &header, RecordBase::head(), sizeof(SharedAllocationHeader)); - - return std::string(header.m_label); -} - -std::string SharedAllocationRecord::get_label() - const { - return std::string(RecordBase::head()->m_label); -} - -std::string -SharedAllocationRecord::get_label() const { - return std::string(RecordBase::head()->m_label); -} - -// end SharedAllocationRecord::get_label() }}}1 -//============================================================================== - -//============================================================================== -// {{{1 - -SharedAllocationRecord - *SharedAllocationRecord::allocate( - const Kokkos::CudaSpace &arg_space, const std::string &arg_label, - const size_t arg_alloc_size) { - return new SharedAllocationRecord(arg_space, arg_label, arg_alloc_size); -} - -SharedAllocationRecord - *SharedAllocationRecord::allocate( - const Kokkos::CudaUVMSpace &arg_space, const std::string &arg_label, - const size_t arg_alloc_size) { - return new SharedAllocationRecord(arg_space, arg_label, arg_alloc_size); -} - -SharedAllocationRecord - *SharedAllocationRecord::allocate( - const Kokkos::CudaHostPinnedSpace &arg_space, - const std::string &arg_label, const size_t arg_alloc_size) { - return new SharedAllocationRecord(arg_space, arg_label, arg_alloc_size); -} - -// end SharedAllocationRecord allocate() }}}1 -//============================================================================== - -//============================================================================== -// {{{1 - -void SharedAllocationRecord::deallocate( - SharedAllocationRecord *arg_rec) { - delete static_cast(arg_rec); -} - -void SharedAllocationRecord::deallocate( - SharedAllocationRecord *arg_rec) { - delete static_cast(arg_rec); -} - -void SharedAllocationRecord::deallocate( - SharedAllocationRecord *arg_rec) { - delete static_cast(arg_rec); -} - -// end SharedAllocationRecord deallocate }}}1 -//============================================================================== - //============================================================================== // {{{1 @@ -580,7 +516,7 @@ SharedAllocationRecord::SharedAllocationRecord( const SharedAllocationRecord::function_type arg_dealloc) // Pass through allocated [ SharedAllocationHeader , user_memory ] // Pass through deallocation function - : SharedAllocationRecord( + : base_t( #ifdef KOKKOS_ENABLE_DEBUG &SharedAllocationRecord::s_root_record, #endif @@ -592,13 +528,7 @@ SharedAllocationRecord::SharedAllocationRecord( SharedAllocationHeader header; - // Fill in the Header information - header.m_record = static_cast *>(this); - - strncpy(header.m_label, arg_label.c_str(), - SharedAllocationHeader::maximum_label_length); - // Set last element zero, in case c_str is too long - header.m_label[SharedAllocationHeader::maximum_label_length - 1] = (char)0; + this->base_t::_fill_host_accessible_header_info(header, arg_label); // Copy to device memory Kokkos::Impl::DeepCopy(RecordBase::m_alloc_ptr, &header, @@ -611,7 +541,7 @@ SharedAllocationRecord::SharedAllocationRecord( const SharedAllocationRecord::function_type arg_dealloc) // Pass through allocated [ SharedAllocationHeader , user_memory ] // Pass through deallocation function - : SharedAllocationRecord( + : base_t( #ifdef KOKKOS_ENABLE_DEBUG &SharedAllocationRecord::s_root_record, #endif @@ -620,16 +550,8 @@ SharedAllocationRecord::SharedAllocationRecord( sizeof(SharedAllocationHeader) + arg_alloc_size, arg_dealloc), m_tex_obj(0), m_space(arg_space) { - // Fill in the Header information, directly accessible via UVM - - RecordBase::m_alloc_ptr->m_record = this; - - strncpy(RecordBase::m_alloc_ptr->m_label, arg_label.c_str(), - SharedAllocationHeader::maximum_label_length); - - // Set last element zero, in case c_str is too long - RecordBase::m_alloc_ptr - ->m_label[SharedAllocationHeader::maximum_label_length - 1] = (char)0; + this->base_t::_fill_host_accessible_header_info(*base_t::m_alloc_ptr, + arg_label); } SharedAllocationRecord:: @@ -639,7 +561,7 @@ SharedAllocationRecord:: const SharedAllocationRecord::function_type arg_dealloc) // Pass through allocated [ SharedAllocationHeader , user_memory ] // Pass through deallocation function - : SharedAllocationRecord( + : base_t( #ifdef KOKKOS_ENABLE_DEBUG &SharedAllocationRecord::s_root_record, @@ -648,319 +570,13 @@ SharedAllocationRecord:: arg_alloc_size), sizeof(SharedAllocationHeader) + arg_alloc_size, arg_dealloc), m_space(arg_space) { - // Fill in the Header information, directly accessible on the host - - RecordBase::m_alloc_ptr->m_record = this; - - strncpy(RecordBase::m_alloc_ptr->m_label, arg_label.c_str(), - SharedAllocationHeader::maximum_label_length); - // Set last element zero, in case c_str is too long - RecordBase::m_alloc_ptr - ->m_label[SharedAllocationHeader::maximum_label_length - 1] = (char)0; + this->base_t::_fill_host_accessible_header_info(*base_t::m_alloc_ptr, + arg_label); } // end SharedAllocationRecord constructors }}}1 //============================================================================== -//============================================================================== -// {{{1 - -void *SharedAllocationRecord::allocate_tracked( - const Kokkos::CudaSpace &arg_space, const std::string &arg_alloc_label, - const size_t arg_alloc_size) { - if (!arg_alloc_size) return nullptr; - - SharedAllocationRecord *const r = - allocate(arg_space, arg_alloc_label, arg_alloc_size); - - RecordBase::increment(r); - - return r->data(); -} - -void SharedAllocationRecord::deallocate_tracked( - void *const arg_alloc_ptr) { - if (arg_alloc_ptr != nullptr) { - SharedAllocationRecord *const r = get_record(arg_alloc_ptr); - - RecordBase::decrement(r); - } -} - -void *SharedAllocationRecord::reallocate_tracked( - void *const arg_alloc_ptr, const size_t arg_alloc_size) { - SharedAllocationRecord *const r_old = get_record(arg_alloc_ptr); - SharedAllocationRecord *const r_new = - allocate(r_old->m_space, r_old->get_label(), arg_alloc_size); - - Kokkos::Impl::DeepCopy( - r_new->data(), r_old->data(), std::min(r_old->size(), r_new->size())); - - RecordBase::increment(r_new); - RecordBase::decrement(r_old); - - return r_new->data(); -} - -void *SharedAllocationRecord::allocate_tracked( - const Kokkos::CudaUVMSpace &arg_space, const std::string &arg_alloc_label, - const size_t arg_alloc_size) { - if (!arg_alloc_size) return nullptr; - - SharedAllocationRecord *const r = - allocate(arg_space, arg_alloc_label, arg_alloc_size); - - RecordBase::increment(r); - - return r->data(); -} - -void SharedAllocationRecord::deallocate_tracked( - void *const arg_alloc_ptr) { - if (arg_alloc_ptr != nullptr) { - SharedAllocationRecord *const r = get_record(arg_alloc_ptr); - - RecordBase::decrement(r); - } -} - -void *SharedAllocationRecord::reallocate_tracked( - void *const arg_alloc_ptr, const size_t arg_alloc_size) { - SharedAllocationRecord *const r_old = get_record(arg_alloc_ptr); - SharedAllocationRecord *const r_new = - allocate(r_old->m_space, r_old->get_label(), arg_alloc_size); - - Kokkos::Impl::DeepCopy( - r_new->data(), r_old->data(), std::min(r_old->size(), r_new->size())); - - RecordBase::increment(r_new); - RecordBase::decrement(r_old); - - return r_new->data(); -} - -void * -SharedAllocationRecord::allocate_tracked( - const Kokkos::CudaHostPinnedSpace &arg_space, - const std::string &arg_alloc_label, const size_t arg_alloc_size) { - if (!arg_alloc_size) return nullptr; - - SharedAllocationRecord *const r = - allocate(arg_space, arg_alloc_label, arg_alloc_size); - - RecordBase::increment(r); - - return r->data(); -} - -void SharedAllocationRecord::deallocate_tracked(void *const - arg_alloc_ptr) { - if (arg_alloc_ptr != nullptr) { - SharedAllocationRecord *const r = get_record(arg_alloc_ptr); - - RecordBase::decrement(r); - } -} - -void * -SharedAllocationRecord::reallocate_tracked( - void *const arg_alloc_ptr, const size_t arg_alloc_size) { - SharedAllocationRecord *const r_old = get_record(arg_alloc_ptr); - SharedAllocationRecord *const r_new = - allocate(r_old->m_space, r_old->get_label(), arg_alloc_size); - - Kokkos::Impl::DeepCopy( - r_new->data(), r_old->data(), std::min(r_old->size(), r_new->size())); - - RecordBase::increment(r_new); - RecordBase::decrement(r_old); - - return r_new->data(); -} - -// end SharedAllocationRecored::(re|de|)allocate_tracked }}}1 -//============================================================================== - -//============================================================================== -// {{{1 - -SharedAllocationRecord * -SharedAllocationRecord::get_record(void *alloc_ptr) { - using RecordCuda = SharedAllocationRecord; - - using Header = SharedAllocationHeader; - - // Copy the header from the allocation - Header head; - - Header const *const head_cuda = - alloc_ptr ? Header::get_header(alloc_ptr) : nullptr; - - if (alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, head_cuda, sizeof(SharedAllocationHeader)); - } - - RecordCuda *const record = - alloc_ptr ? static_cast(head.m_record) : nullptr; - - if (!alloc_ptr || record->m_alloc_ptr != head_cuda) { - Kokkos::Impl::throw_runtime_exception( - std::string("Kokkos::Impl::SharedAllocationRecord< Kokkos::CudaSpace , " - "void >::get_record ERROR")); - } - - return record; -} - -SharedAllocationRecord *SharedAllocationRecord< - Kokkos::CudaUVMSpace, void>::get_record(void *alloc_ptr) { - using Header = SharedAllocationHeader; - using RecordCuda = SharedAllocationRecord; - - Header *const h = - alloc_ptr ? reinterpret_cast
(alloc_ptr) - 1 : nullptr; - - if (!alloc_ptr || h->m_record->m_alloc_ptr != h) { - Kokkos::Impl::throw_runtime_exception( - std::string("Kokkos::Impl::SharedAllocationRecord< " - "Kokkos::CudaUVMSpace , void >::get_record ERROR")); - } - - return static_cast(h->m_record); -} - -SharedAllocationRecord - *SharedAllocationRecord::get_record( - void *alloc_ptr) { - using Header = SharedAllocationHeader; - using RecordCuda = SharedAllocationRecord; - - Header *const h = - alloc_ptr ? reinterpret_cast
(alloc_ptr) - 1 : nullptr; - - if (!alloc_ptr || h->m_record->m_alloc_ptr != h) { - Kokkos::Impl::throw_runtime_exception( - std::string("Kokkos::Impl::SharedAllocationRecord< " - "Kokkos::CudaHostPinnedSpace , void >::get_record ERROR")); - } - - return static_cast(h->m_record); -} - -// end SharedAllocationRecord::get_record() }}}1 -//============================================================================== - -//============================================================================== -// {{{1 - -// Iterate records to print orphaned memory ... -void SharedAllocationRecord::print_records( - std::ostream &s, const Kokkos::CudaSpace &, bool detail) { - (void)s; - (void)detail; -#ifdef KOKKOS_ENABLE_DEBUG - SharedAllocationRecord *r = &s_root_record; - - char buffer[256]; - - SharedAllocationHeader head; - - if (detail) { - do { - if (r->m_alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, r->m_alloc_ptr, sizeof(SharedAllocationHeader)); - } else { - head.m_label[0] = 0; - } - - // Formatting dependent on sizeof(uintptr_t) - const char *format_string; - - if (sizeof(uintptr_t) == sizeof(unsigned long)) { - format_string = - "Cuda addr( 0x%.12lx ) list( 0x%.12lx 0x%.12lx ) extent[ 0x%.12lx " - "+ %.8ld ] count(%d) dealloc(0x%.12lx) %s\n"; - } else if (sizeof(uintptr_t) == sizeof(unsigned long long)) { - format_string = - "Cuda addr( 0x%.12llx ) list( 0x%.12llx 0x%.12llx ) extent[ " - "0x%.12llx + %.8ld ] count(%d) dealloc(0x%.12llx) %s\n"; - } - - snprintf(buffer, 256, format_string, reinterpret_cast(r), - reinterpret_cast(r->m_prev), - reinterpret_cast(r->m_next), - reinterpret_cast(r->m_alloc_ptr), r->m_alloc_size, - r->m_count, reinterpret_cast(r->m_dealloc), - head.m_label); - s << buffer; - r = r->m_next; - } while (r != &s_root_record); - } else { - do { - if (r->m_alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, r->m_alloc_ptr, sizeof(SharedAllocationHeader)); - - // Formatting dependent on sizeof(uintptr_t) - const char *format_string; - - if (sizeof(uintptr_t) == sizeof(unsigned long)) { - format_string = "Cuda [ 0x%.12lx + %ld ] %s\n"; - } else if (sizeof(uintptr_t) == sizeof(unsigned long long)) { - format_string = "Cuda [ 0x%.12llx + %ld ] %s\n"; - } - - snprintf(buffer, 256, format_string, - reinterpret_cast(r->data()), r->size(), - head.m_label); - } else { - snprintf(buffer, 256, "Cuda [ 0 + 0 ]\n"); - } - s << buffer; - r = r->m_next; - } while (r != &s_root_record); - } -#else - Kokkos::Impl::throw_runtime_exception( - "SharedAllocationHeader::print_records only works with " - "KOKKOS_ENABLE_DEBUG enabled"); -#endif -} - -void SharedAllocationRecord::print_records( - std::ostream &s, const Kokkos::CudaUVMSpace &, bool detail) { - (void)s; - (void)detail; -#ifdef KOKKOS_ENABLE_DEBUG - SharedAllocationRecord::print_host_accessible_records( - s, "CudaUVM", &s_root_record, detail); -#else - Kokkos::Impl::throw_runtime_exception( - "SharedAllocationHeader::print_records only works with " - "KOKKOS_ENABLE_DEBUG enabled"); -#endif -} - -void SharedAllocationRecord::print_records( - std::ostream &s, const Kokkos::CudaHostPinnedSpace &, bool detail) { - (void)s; - (void)detail; -#ifdef KOKKOS_ENABLE_DEBUG - SharedAllocationRecord::print_host_accessible_records( - s, "CudaHostPinned", &s_root_record, detail); -#else - Kokkos::Impl::throw_runtime_exception( - "SharedAllocationHeader::print_records only works with " - "KOKKOS_ENABLE_DEBUG enabled"); -#endif -} - -// end SharedAllocationRecord::print_records() }}}1 -//============================================================================== - void cuda_prefetch_pointer(const Cuda &space, const void *ptr, size_t bytes, bool to_device) { if ((ptr == nullptr) || (bytes == 0)) return; @@ -984,6 +600,29 @@ void cuda_prefetch_pointer(const Cuda &space, const void *ptr, size_t bytes, } // namespace Impl } // namespace Kokkos + +//============================================================================== +// {{{1 + +#include + +namespace Kokkos { +namespace Impl { + +// To avoid additional compilation cost for something that's (mostly?) not +// performance sensitive, we explicity instantiate these CRTP base classes here, +// where we have access to the associated *_timpl.hpp header files. +template class SharedAllocationRecordCommon; +template class HostInaccessibleSharedAllocationRecordCommon; +template class SharedAllocationRecordCommon; +template class SharedAllocationRecordCommon; + +} // end namespace Impl +} // end namespace Kokkos + +// end Explicit instantiations of CRTP Base classes }}}1 +//============================================================================== + #else void KOKKOS_CORE_SRC_CUDA_CUDASPACE_PREVENT_LINK_ERROR() {} #endif // KOKKOS_ENABLE_CUDA diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp index 0d6d3bdb3a..0f4259072d 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_BlockSize_Deduction.hpp @@ -140,7 +140,7 @@ inline int cuda_deduce_block_size(bool early_termination, } } - if (early_termination && blocks_per_sm != 0) break; + if (early_termination && opt_block_size != 0) break; } return opt_block_size; @@ -222,7 +222,8 @@ inline size_t get_shmem_per_sm_prefer_l1(cudaDeviceProp const& properties) { case 52: case 61: return 96; case 70: - case 80: return 8; + case 80: + case 86: return 8; case 75: return 32; default: Kokkos::Impl::throw_runtime_exception( diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Half.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Half.hpp index a9a62380e5..ec9c434fe6 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Half.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Half.hpp @@ -175,30 +175,42 @@ class half_t { return cast_from_half(*this); } + /** + * Conversion constructors. + * + * Support implicit conversions from impl_type, float, double -> half_t + * Mixed precision expressions require upcasting which is done in the + * "// Binary Arithmetic" operator overloads below. + * + * Support implicit conversions from integral types -> half_t. + * Expressions involving half_t with integral types require downcasting + * the integral types to half_t. Existing operator overloads can handle this + * with the addition of the below implicit conversion constructors. + */ KOKKOS_FUNCTION half_t(impl_type rhs) : val(rhs) {} KOKKOS_FUNCTION - explicit half_t(float rhs) : val(cast_to_half(rhs).val) {} + half_t(float rhs) : val(cast_to_half(rhs).val) {} + KOKKOS_FUNCTION + half_t(double rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION explicit half_t(bool rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(double rhs) : val(cast_to_half(rhs).val) {} + half_t(short rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(short rhs) : val(cast_to_half(rhs).val) {} + half_t(int rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(int rhs) : val(cast_to_half(rhs).val) {} + half_t(long rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(long rhs) : val(cast_to_half(rhs).val) {} + half_t(long long rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(long long rhs) : val(cast_to_half(rhs).val) {} + half_t(unsigned short rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(unsigned short rhs) : val(cast_to_half(rhs).val) {} + half_t(unsigned int rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(unsigned int rhs) : val(cast_to_half(rhs).val) {} + half_t(unsigned long rhs) : val(cast_to_half(rhs).val) {} KOKKOS_FUNCTION - explicit half_t(unsigned long rhs) : val(cast_to_half(rhs).val) {} - KOKKOS_FUNCTION - explicit half_t(unsigned long long rhs) : val(cast_to_half(rhs).val) {} + half_t(unsigned long long rhs) : val(cast_to_half(rhs).val) {} // Unary operators KOKKOS_FUNCTION @@ -243,7 +255,7 @@ class half_t { #else float tmp = __half2float(val); --tmp; - val = __float2half(tmp); + val = __float2half(tmp); #endif return *this; } @@ -276,88 +288,317 @@ class half_t { return *this; } + template + KOKKOS_FUNCTION void operator=(T rhs) volatile { + val = cast_to_half(rhs).val; + } + // Compound operators KOKKOS_FUNCTION half_t& operator+=(half_t rhs) { #ifdef __CUDA_ARCH__ val += rhs.val; #else - val = __float2half(__half2float(val) + __half2float(rhs.val)); + val = __float2half(__half2float(val) + __half2float(rhs.val)); #endif return *this; } + KOKKOS_FUNCTION + volatile half_t& operator+=(half_t rhs) volatile { +#ifdef __CUDA_ARCH__ + // Cuda 10 supports __half volatile stores but not volatile arithmetic + // operands. Cast away volatile-ness of val for arithmetic but not for store + // location. + val = const_cast(val) + rhs.val; +#else + // Use non-volatile val_ref to suppress: + // "warning: implicit dereference will not access object of type ‘volatile + // __half’ in statement" + auto val_ref = const_cast(val); + val_ref = __float2half(__half2float(const_cast(val)) + + __half2float(rhs.val)); +#endif + return *this; + } + + // Compund operators: upcast overloads for += + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator+=(T& lhs, half_t rhs) { + lhs += static_cast(rhs); + return lhs; + } + + KOKKOS_FUNCTION + half_t& operator+=(float rhs) { + float result = static_cast(val) + rhs; + val = static_cast(result); + return *this; + } + + KOKKOS_FUNCTION + half_t& operator+=(double rhs) { + double result = static_cast(val) + rhs; + val = static_cast(result); + return *this; + } + KOKKOS_FUNCTION half_t& operator-=(half_t rhs) { #ifdef __CUDA_ARCH__ val -= rhs.val; #else - val = __float2half(__half2float(val) - __half2float(rhs.val)); + val = __float2half(__half2float(val) - __half2float(rhs.val)); #endif return *this; } + KOKKOS_FUNCTION + volatile half_t& operator-=(half_t rhs) volatile { +#ifdef __CUDA_ARCH__ + // Cuda 10 supports __half volatile stores but not volatile arithmetic + // operands. Cast away volatile-ness of val for arithmetic but not for store + // location. + val = const_cast(val) - rhs.val; +#else + // Use non-volatile val_ref to suppress: + // "warning: implicit dereference will not access object of type ‘volatile + // __half’ in statement" + auto val_ref = const_cast(val); + val_ref = __float2half(__half2float(const_cast(val)) - + __half2float(rhs.val)); +#endif + return *this; + } + + // Compund operators: upcast overloads for -= + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator-=(T& lhs, half_t rhs) { + lhs -= static_cast(rhs); + return lhs; + } + + KOKKOS_FUNCTION + half_t& operator-=(float rhs) { + float result = static_cast(val) - rhs; + val = static_cast(result); + return *this; + } + + KOKKOS_FUNCTION + half_t& operator-=(double rhs) { + double result = static_cast(val) - rhs; + val = static_cast(result); + return *this; + } + KOKKOS_FUNCTION half_t& operator*=(half_t rhs) { #ifdef __CUDA_ARCH__ val *= rhs.val; #else - val = __float2half(__half2float(val) * __half2float(rhs.val)); + val = __float2half(__half2float(val) * __half2float(rhs.val)); #endif return *this; } + KOKKOS_FUNCTION + volatile half_t& operator*=(half_t rhs) volatile { +#ifdef __CUDA_ARCH__ + // Cuda 10 supports __half volatile stores but not volatile arithmetic + // operands. Cast away volatile-ness of val for arithmetic but not for store + // location. + val = const_cast(val) * rhs.val; +#else + // Use non-volatile val_ref to suppress: + // "warning: implicit dereference will not access object of type ‘volatile + // __half’ in statement" + auto val_ref = const_cast(val); + val_ref = __float2half(__half2float(const_cast(val)) * + __half2float(rhs.val)); +#endif + return *this; + } + + // Compund operators: upcast overloads for *= + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator*=(T& lhs, half_t rhs) { + lhs *= static_cast(rhs); + return lhs; + } + + KOKKOS_FUNCTION + half_t& operator*=(float rhs) { + float result = static_cast(val) * rhs; + val = static_cast(result); + return *this; + } + + KOKKOS_FUNCTION + half_t& operator*=(double rhs) { + double result = static_cast(val) * rhs; + val = static_cast(result); + return *this; + } + KOKKOS_FUNCTION half_t& operator/=(half_t rhs) { #ifdef __CUDA_ARCH__ val /= rhs.val; #else - val = __float2half(__half2float(val) / __half2float(rhs.val)); + val = __float2half(__half2float(val) / __half2float(rhs.val)); #endif return *this; } + KOKKOS_FUNCTION + volatile half_t& operator/=(half_t rhs) volatile { +#ifdef __CUDA_ARCH__ + // Cuda 10 supports __half volatile stores but not volatile arithmetic + // operands. Cast away volatile-ness of val for arithmetic but not for store + // location. + val = const_cast(val) / rhs.val; +#else + // Use non-volatile val_ref to suppress: + // "warning: implicit dereference will not access object of type ‘volatile + // __half’ in statement" + auto val_ref = const_cast(val); + val_ref = __float2half(__half2float(const_cast(val)) / + __half2float(rhs.val)); +#endif + return *this; + } + + // Compund operators: upcast overloads for /= + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator/=(T& lhs, half_t rhs) { + lhs /= static_cast(rhs); + return lhs; + } + + KOKKOS_FUNCTION + half_t& operator/=(float rhs) { + float result = static_cast(val) / rhs; + val = static_cast(result); + return *this; + } + + KOKKOS_FUNCTION + half_t& operator/=(double rhs) { + double result = static_cast(val) / rhs; + val = static_cast(result); + return *this; + } + // Binary Arithmetic KOKKOS_FUNCTION half_t friend operator+(half_t lhs, half_t rhs) { #ifdef __CUDA_ARCH__ lhs.val += rhs.val; #else - lhs.val = __float2half(__half2float(lhs.val) + __half2float(rhs.val)); + lhs.val = __float2half(__half2float(lhs.val) + __half2float(rhs.val)); #endif return lhs; } + // Binary Arithmetic upcast operators for + + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator+(half_t lhs, T rhs) { + return T(lhs) + rhs; + } + + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator+(T lhs, half_t rhs) { + return lhs + T(rhs); + } + KOKKOS_FUNCTION half_t friend operator-(half_t lhs, half_t rhs) { #ifdef __CUDA_ARCH__ lhs.val -= rhs.val; #else - lhs.val = __float2half(__half2float(lhs.val) - __half2float(rhs.val)); + lhs.val = __float2half(__half2float(lhs.val) - __half2float(rhs.val)); #endif return lhs; } + // Binary Arithmetic upcast operators for - + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator-(half_t lhs, T rhs) { + return T(lhs) - rhs; + } + + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator-(T lhs, half_t rhs) { + return lhs - T(rhs); + } + KOKKOS_FUNCTION half_t friend operator*(half_t lhs, half_t rhs) { #ifdef __CUDA_ARCH__ lhs.val *= rhs.val; #else - lhs.val = __float2half(__half2float(lhs.val) * __half2float(rhs.val)); + lhs.val = __float2half(__half2float(lhs.val) * __half2float(rhs.val)); #endif return lhs; } + // Binary Arithmetic upcast operators for * + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator*(half_t lhs, T rhs) { + return T(lhs) * rhs; + } + + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator*(T lhs, half_t rhs) { + return lhs * T(rhs); + } + KOKKOS_FUNCTION half_t friend operator/(half_t lhs, half_t rhs) { #ifdef __CUDA_ARCH__ lhs.val /= rhs.val; #else - lhs.val = __float2half(__half2float(lhs.val) / __half2float(rhs.val)); + lhs.val = __float2half(__half2float(lhs.val) / __half2float(rhs.val)); #endif return lhs; } + // Binary Arithmetic upcast operators for / + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator/(half_t lhs, T rhs) { + return T(lhs) / rhs; + } + + template + KOKKOS_FUNCTION std::enable_if_t< + std::is_same::value || std::is_same::value, T> friend + operator/(T lhs, half_t rhs) { + return lhs / T(rhs); + } + // Logical operators KOKKOS_FUNCTION bool operator!() const { diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.cpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.cpp index b8e8163458..016cb6cdcb 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.cpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.cpp @@ -54,6 +54,7 @@ #include #include #include +#include #include #include @@ -248,11 +249,11 @@ void CudaInternal::print_configuration(std::ostream &s) const { const CudaInternalDevices &dev_info = CudaInternalDevices::singleton(); #if defined(KOKKOS_ENABLE_CUDA) - s << "macro KOKKOS_ENABLE_CUDA : defined" << std::endl; + s << "macro KOKKOS_ENABLE_CUDA : defined\n"; #endif #if defined(CUDA_VERSION) s << "macro CUDA_VERSION = " << CUDA_VERSION << " = version " - << CUDA_VERSION / 1000 << "." << (CUDA_VERSION % 1000) / 10 << std::endl; + << CUDA_VERSION / 1000 << "." << (CUDA_VERSION % 1000) / 10 << '\n'; #endif for (int i = 0; i < dev_info.m_cudaDevCount; ++i) { @@ -274,7 +275,6 @@ CudaInternal::~CudaInternal() { m_scratchConcurrentBitset) { std::cerr << "Kokkos::Cuda ERROR: Failed to call Kokkos::Cuda::finalize()" << std::endl; - std::cerr.flush(); } m_cudaDev = -1; @@ -358,8 +358,7 @@ void CudaInternal::initialize(int cuda_device_id, cudaStream_t stream) { if (m_cudaArch == 0) { std::stringstream ss; - ss << "Kokkos::Cuda::initialize ERROR: likely mismatch of architecture" - << std::endl; + ss << "Kokkos::Cuda::initialize ERROR: likely mismatch of architecture\n"; std::string msg = ss.str(); Kokkos::abort(msg.c_str()); } @@ -373,7 +372,7 @@ void CudaInternal::initialize(int cuda_device_id, cudaStream_t stream) { "compute capability " << compiled_major << "." << compiled_minor << " on device with compute capability " << cudaProp.major << "." - << cudaProp.minor << " is not supported by CUDA!" << std::endl; + << cudaProp.minor << " is not supported by CUDA!\n"; std::string msg = ss.str(); Kokkos::abort(msg.c_str()); } @@ -458,7 +457,7 @@ void CudaInternal::initialize(int cuda_device_id, cudaStream_t stream) { Kokkos::Impl::SharedAllocationRecord; Record *const r = - Record::allocate(Kokkos::CudaSpace(), "InternalScratchBitset", + Record::allocate(Kokkos::CudaSpace(), "Kokkos::InternalScratchBitset", sizeof(uint32_t) * buffer_bound); Record::increment(r); @@ -492,17 +491,11 @@ void CudaInternal::initialize(int cuda_device_id, cudaStream_t stream) { #ifdef KOKKOS_ENABLE_CUDA_UVM if (Kokkos::show_warnings() && !cuda_launch_blocking()) { - std::cerr << "Kokkos::Cuda::initialize WARNING: Cuda is allocating into " - "UVMSpace by default" - << std::endl; - std::cerr << " without setting " - "CUDA_LAUNCH_BLOCKING=1." - << std::endl; - std::cerr << " The code must call " - "Cuda().fence() after each kernel" - << std::endl; - std::cerr << " or will likely crash when " - "accessing data on the host." + std::cerr << R"warning( +Kokkos::Cuda::initialize WARNING: Cuda is allocating into UVMSpace by default + without setting CUDA_LAUNCH_BLOCKING=1. + The code must call Cuda().fence() after each kernel + or will likely crash when accessing data on the host.)warning" << std::endl; } @@ -520,19 +513,13 @@ void CudaInternal::initialize(int cuda_device_id, cudaStream_t stream) { if (Kokkos::show_warnings() && (!visible_devices_one && !force_device_alloc)) { - std::cerr << "Kokkos::Cuda::initialize WARNING: Cuda is allocating into " - "UVMSpace by default" + std::cerr << R"warning( +Kokkos::Cuda::initialize WARNING: Cuda is allocating into UVMSpace by default + without setting CUDA_MANAGED_FORCE_DEVICE_ALLOC=1 or + setting CUDA_VISIBLE_DEVICES. + This could on multi GPU systems lead to severe performance" + penalties.)warning" << std::endl; - std::cerr << " without setting " - "CUDA_MANAGED_FORCE_DEVICE_ALLOC=1 or " - << std::endl; - std::cerr - << " setting CUDA_VISIBLE_DEVICES." - << std::endl; - std::cerr << " This could on multi GPU " - "systems lead to severe performance" - << std::endl; - std::cerr << " penalties." << std::endl; } #endif @@ -575,7 +562,7 @@ Cuda::size_type *CudaInternal::scratch_flags(const Cuda::size_type size) const { if (m_scratchFlags) Record::decrement(Record::get_record(m_scratchFlags)); Record *const r = - Record::allocate(Kokkos::CudaSpace(), "InternalScratchFlags", + Record::allocate(Kokkos::CudaSpace(), "Kokkos::InternalScratchFlags", (sizeof(ScratchGrain) * m_scratchFlagsCount)); Record::increment(r); @@ -600,7 +587,7 @@ Cuda::size_type *CudaInternal::scratch_space(const Cuda::size_type size) const { if (m_scratchSpace) Record::decrement(Record::get_record(m_scratchSpace)); Record *const r = - Record::allocate(Kokkos::CudaSpace(), "InternalScratchSpace", + Record::allocate(Kokkos::CudaSpace(), "Kokkos::InternalScratchSpace", (sizeof(ScratchGrain) * m_scratchSpaceCount)); Record::increment(r); @@ -624,7 +611,7 @@ Cuda::size_type *CudaInternal::scratch_unified( Record::decrement(Record::get_record(m_scratchUnified)); Record *const r = Record::allocate( - Kokkos::CudaHostPinnedSpace(), "InternalScratchUnified", + Kokkos::CudaHostPinnedSpace(), "Kokkos::InternalScratchUnified", (sizeof(ScratchGrain) * m_scratchUnifiedCount)); Record::increment(r); @@ -646,8 +633,9 @@ Cuda::size_type *CudaInternal::scratch_functor( if (m_scratchFunctor) Record::decrement(Record::get_record(m_scratchFunctor)); - Record *const r = Record::allocate( - Kokkos::CudaSpace(), "InternalScratchFunctor", m_scratchFunctorSize); + Record *const r = + Record::allocate(Kokkos::CudaSpace(), "Kokkos::InternalScratchFunctor", + m_scratchFunctorSize); Record::increment(r); @@ -662,7 +650,7 @@ void *CudaInternal::resize_team_scratch_space(std::int64_t bytes, if (m_team_scratch_current_size == 0) { m_team_scratch_current_size = bytes; m_team_scratch_ptr = Kokkos::kokkos_malloc( - "CudaSpace::ScratchMemory", m_team_scratch_current_size); + "Kokkos::CudaSpace::TeamScratchMemory", m_team_scratch_current_size); } if ((bytes > m_team_scratch_current_size) || ((bytes < m_team_scratch_current_size) && (force_shrink))) { @@ -676,6 +664,9 @@ void *CudaInternal::resize_team_scratch_space(std::int64_t bytes, //---------------------------------------------------------------------------- void CudaInternal::finalize() { + // skip if finalize() has already been called + if (was_finalized) return; + was_finalized = true; if (nullptr != m_scratchSpace || nullptr != m_scratchFlags) { // Only finalize this if we're the singleton @@ -719,6 +710,11 @@ void CudaInternal::finalize() { if (this == &singleton()) { cudaFreeHost(constantMemHostStaging); cudaEventDestroy(constantMemReusable); + auto &deep_copy_space = + Kokkos::Impl::cuda_get_deep_copy_space(/*initialize*/ false); + if (deep_copy_space) + deep_copy_space->impl_internal_space_instance()->finalize(); + cudaStreamDestroy(cuda_get_deep_copy_stream()); } } @@ -821,62 +817,23 @@ Cuda::size_type Cuda::device_arch() { void Cuda::impl_finalize() { Impl::CudaInternal::singleton().finalize(); } Cuda::Cuda() - : m_space_instance(&Impl::CudaInternal::singleton()), m_counter(nullptr) { + : m_space_instance(&Impl::CudaInternal::singleton(), + [](Impl::CudaInternal *) {}) { Impl::CudaInternal::singleton().verify_is_initialized( "Cuda instance constructor"); } Cuda::Cuda(cudaStream_t stream) - : m_space_instance(new Impl::CudaInternal), m_counter(new int(1)) { + : m_space_instance(new Impl::CudaInternal, [](Impl::CudaInternal *ptr) { + ptr->finalize(); + delete ptr; + }) { Impl::CudaInternal::singleton().verify_is_initialized( "Cuda instance constructor"); m_space_instance->initialize(Impl::CudaInternal::singleton().m_cudaDev, stream); } -KOKKOS_FUNCTION Cuda::Cuda(Cuda &&other) noexcept { - m_space_instance = other.m_space_instance; - other.m_space_instance = nullptr; - m_counter = other.m_counter; - other.m_counter = nullptr; -} - -KOKKOS_FUNCTION Cuda::Cuda(const Cuda &other) - : m_space_instance(other.m_space_instance), m_counter(other.m_counter) { -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_CUDA - if (m_counter) Kokkos::atomic_add(m_counter, 1); -#endif -} - -KOKKOS_FUNCTION Cuda &Cuda::operator=(Cuda &&other) noexcept { - m_space_instance = other.m_space_instance; - other.m_space_instance = nullptr; - m_counter = other.m_counter; - other.m_counter = nullptr; - return *this; -} - -KOKKOS_FUNCTION Cuda &Cuda::operator=(const Cuda &other) { - m_space_instance = other.m_space_instance; - m_counter = other.m_counter; -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_CUDA - if (m_counter) Kokkos::atomic_add(m_counter, 1); -#endif - return *this; -} - -KOKKOS_FUNCTION Cuda::~Cuda() noexcept { -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_CUDA - if (m_counter == nullptr) return; - int const count = Kokkos::atomic_fetch_sub(m_counter, 1); - if (count == 1) { - delete m_counter; - m_space_instance->finalize(); - delete m_space_instance; - } -#endif -} - void Cuda::print_configuration(std::ostream &s, const bool) { Impl::CudaInternal::singleton().print_configuration(s); } @@ -924,54 +881,53 @@ void CudaSpaceInitializer::fence() { Kokkos::Cuda::impl_static_fence(); } void CudaSpaceInitializer::print_configuration(std::ostream &msg, const bool detail) { - msg << "Device Execution Space:" << std::endl; - msg << " KOKKOS_ENABLE_CUDA: "; - msg << "yes" << std::endl; + msg << "Device Execution Space:\n"; + msg << " KOKKOS_ENABLE_CUDA: yes\n"; - msg << "Cuda Atomics:" << std::endl; + msg << "Cuda Atomics:\n"; msg << " KOKKOS_ENABLE_CUDA_ATOMICS: "; #ifdef KOKKOS_ENABLE_CUDA_ATOMICS - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif - msg << "Cuda Options:" << std::endl; + msg << "Cuda Options:\n"; msg << " KOKKOS_ENABLE_CUDA_LAMBDA: "; #ifdef KOKKOS_ENABLE_CUDA_LAMBDA - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << " KOKKOS_ENABLE_CUDA_LDG_INTRINSIC: "; #ifdef KOKKOS_ENABLE_CUDA_LDG_INTRINSIC - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << " KOKKOS_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE: "; #ifdef KOKKOS_ENABLE_CUDA_RELOCATABLE_DEVICE_CODE - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << " KOKKOS_ENABLE_CUDA_UVM: "; #ifdef KOKKOS_ENABLE_CUDA_UVM - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << " KOKKOS_ENABLE_CUSPARSE: "; #ifdef KOKKOS_ENABLE_CUSPARSE - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << " KOKKOS_ENABLE_CXX11_DISPATCH_LAMBDA: "; #ifdef KOKKOS_ENABLE_CXX11_DISPATCH_LAMBDA - msg << "yes" << std::endl; + msg << "yes\n"; #else - msg << "no" << std::endl; + msg << "no\n"; #endif msg << "\nCuda Runtime Configuration:" << std::endl; diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.hpp index 13773d70c5..aaec2c2926 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Instance.hpp @@ -17,30 +17,24 @@ namespace Kokkos { namespace Impl { struct CudaTraits { - enum : CudaSpace::size_type { WarpSize = 32 /* 0x0020 */ }; - enum : CudaSpace::size_type { - WarpIndexMask = 0x001f /* Mask for warpindex */ - }; - enum : CudaSpace::size_type { - WarpIndexShift = 5 /* WarpSize == 1 << WarpShift */ - }; + static constexpr CudaSpace::size_type WarpSize = 32 /* 0x0020 */; + static constexpr CudaSpace::size_type WarpIndexMask = + 0x001f; /* Mask for warpindex */ + static constexpr CudaSpace::size_type WarpIndexShift = + 5; /* WarpSize == 1 << WarpShift */ - enum : CudaSpace::size_type { - ConstantMemoryUsage = 0x008000 /* 32k bytes */ - }; - enum : CudaSpace::size_type { - ConstantMemoryCache = 0x002000 /* 8k bytes */ - }; - enum : CudaSpace::size_type { - KernelArgumentLimit = 0x001000 /* 4k bytes */ - }; - enum : CudaSpace::size_type { - MaxHierarchicalParallelism = 1024 /* team_size * vector_length */ - }; + static constexpr CudaSpace::size_type ConstantMemoryUsage = + 0x008000; /* 32k bytes */ + static constexpr CudaSpace::size_type ConstantMemoryCache = + 0x002000; /* 8k bytes */ + static constexpr CudaSpace::size_type KernelArgumentLimit = + 0x001000; /* 4k bytes */ + static constexpr CudaSpace::size_type MaxHierarchicalParallelism = + 1024; /* team_size * vector_length */ using ConstantGlobalBufferType = unsigned long[ConstantMemoryUsage / sizeof(unsigned long)]; - enum { ConstantMemoryUseThreshold = 0x000200 /* 512 bytes */ }; + static constexpr int ConstantMemoryUseThreshold = 0x000200 /* 512 bytes */; KOKKOS_INLINE_FUNCTION static CudaSpace::size_type warp_count( CudaSpace::size_type i) { diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_KernelLaunch.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_KernelLaunch.hpp index 39404e0bf3..d892a893b3 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_KernelLaunch.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_KernelLaunch.hpp @@ -158,6 +158,9 @@ inline void check_shmem_request(CudaInternal const* cuda_instance, int shmem) { } } +// This function needs to be template on DriverType and LaunchBounds +// so that the static bool is unique for each type combo +// KernelFuncPtr does not necessarily contain that type information. template inline void configure_shmem_preference(KernelFuncPtr const& func, bool prefer_shmem) { @@ -355,8 +358,7 @@ struct CudaParallelLaunchKernelInvoker< if (!Impl::is_empty_launch(grid, block)) { Impl::check_shmem_request(cuda_instance, shmem); - Impl::configure_shmem_preference( + Impl::configure_shmem_preference( base_t::get_kernel_func(), prefer_shmem); void const* args[] = {&driver}; @@ -449,8 +451,7 @@ struct CudaParallelLaunchKernelInvoker< if (!Impl::is_empty_launch(grid, block)) { Impl::check_shmem_request(cuda_instance, shmem); - Impl::configure_shmem_preference( + Impl::configure_shmem_preference( base_t::get_kernel_func(), prefer_shmem); auto* driver_ptr = Impl::allocate_driver_storage_for_kernel(driver); @@ -627,9 +628,8 @@ struct CudaParallelLaunchImpl< get_cuda_func_attributes(), block, shmem, prefer_shmem); Impl::configure_shmem_preference< - DriverType, Kokkos::LaunchBounds, - decltype(base_t::get_kernel_func())>(base_t::get_kernel_func(), - prefer_shmem); + DriverType, Kokkos::LaunchBounds>( + base_t::get_kernel_func(), prefer_shmem); KOKKOS_ENSURE_CUDA_LOCK_ARRAYS_ON_DEVICE(); diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_MDRangePolicy.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_MDRangePolicy.hpp new file mode 100644 index 0000000000..12b7f70a97 --- /dev/null +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_MDRangePolicy.hpp @@ -0,0 +1,37 @@ +#ifndef KOKKOS_CUDA_MDRANGEPOLICY_HPP_ +#define KOKKOS_CUDA_MDRANGEPOLICY_HPP_ + +#include + +namespace Kokkos { + +template <> +struct default_outer_direction { + using type = Iterate; + static constexpr Iterate value = Iterate::Left; +}; + +template <> +struct default_inner_direction { + using type = Iterate; + static constexpr Iterate value = Iterate::Left; +}; + +namespace Impl { + +// Settings for MDRangePolicy +template <> +inline TileSizeProperties get_tile_size_properties( + const Kokkos::Cuda& space) { + TileSizeProperties properties; + properties.max_threads = + space.impl_internal_space_instance()->m_maxThreadsPerSM; + properties.default_largest_tile_size = 16; + properties.default_tile_size = 2; + properties.max_total_tile_size = 512; + return properties; +} + +} // Namespace Impl +} // Namespace Kokkos +#endif diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Parallel.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Parallel.hpp index 131d180980..2834e6f3de 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Parallel.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Parallel.hpp @@ -60,6 +60,7 @@ #include #include #include +#include #include #include @@ -67,6 +68,7 @@ #include #include +#include //---------------------------------------------------------------------------- //---------------------------------------------------------------------------- @@ -474,7 +476,7 @@ class ParallelFor, Kokkos::Cuda> { Policy const& get_policy() const { return m_policy; } - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { const Member work_stride = blockDim.y * gridDim.x; const Member work_end = m_policy.end(); @@ -537,9 +539,23 @@ class ParallelFor, Kokkos::Cuda> { const Policy m_rp; public: + template + static int max_tile_size_product(const Policy& pol, const Functor&) { + cudaFuncAttributes attr = + CudaParallelLaunch::get_cuda_func_attributes(); + auto const& prop = pol.space().cuda_device_prop(); + // Limits due to registers/SM, MDRange doesn't have + // shared memory constraints + int const regs_per_sm = prop.regsPerMultiprocessor; + int const regs_per_thread = attr.numRegs; + int const max_threads_per_sm = regs_per_sm / regs_per_thread; + return std::min( + max_threads_per_sm, + static_cast(Kokkos::Impl::CudaTraits::MaxHierarchicalParallelism)); + } Policy const& get_policy() const { return m_rp; } - - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { Kokkos::Impl::DeviceIterateTile(m_rp, m_functor) .exec_range(); @@ -689,7 +705,7 @@ class ParallelFor, public: Policy const& get_policy() const { return m_policy; } - __device__ inline void operator()(void) const { + __device__ inline void operator()() const { // Iterate this block through the league int64_t threadid = 0; if (m_scratch_size[1] > 0) { @@ -1248,8 +1264,21 @@ class ParallelReduce, ReducerType, using DummySHMEMReductionType = int; public: + template + static int max_tile_size_product(const Policy& pol, const Functor&) { + cudaFuncAttributes attr = + CudaParallelLaunch::get_cuda_func_attributes(); + auto const& prop = pol.space().cuda_device_prop(); + // Limits due do registers/SM + int const regs_per_sm = prop.regsPerMultiprocessor; + int const regs_per_thread = attr.numRegs; + int const max_threads_per_sm = regs_per_sm / regs_per_thread; + return std::min( + max_threads_per_sm, + static_cast(Kokkos::Impl::CudaTraits::MaxHierarchicalParallelism)); + } Policy const& get_policy() const { return m_policy; } - inline __device__ void exec_range(reference_type update) const { Kokkos::Impl::Reduce::DeviceIterateTile, ReducerType, .exec_range(); } - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { /* run(Kokkos::Impl::if_c::select(1,1.0) ); } @@ -2074,7 +2103,7 @@ class ParallelScan, Kokkos::Cuda> { //---------------------------------------- - __device__ inline void initial(void) const { + __device__ inline void initial() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -2110,7 +2139,7 @@ class ParallelScan, Kokkos::Cuda> { //---------------------------------------- - __device__ inline void final(void) const { + __device__ inline void final() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -2195,7 +2224,7 @@ class ParallelScan, Kokkos::Cuda> { //---------------------------------------- - __device__ inline void operator()(void) const { + __device__ inline void operator()() const { #ifdef KOKKOS_IMPL_DEBUG_CUDA_SERIAL_EXECUTION if (m_run_serial) { typename ValueTraits::value_type value; @@ -2364,7 +2393,7 @@ class ParallelScanWithTotal, //---------------------------------------- - __device__ inline void initial(void) const { + __device__ inline void initial() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -2400,7 +2429,7 @@ class ParallelScanWithTotal, //---------------------------------------- - __device__ inline void final(void) const { + __device__ inline void final() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -2487,7 +2516,7 @@ class ParallelScanWithTotal, //---------------------------------------- - __device__ inline void operator()(void) const { + __device__ inline void operator()() const { #ifdef KOKKOS_IMPL_DEBUG_CUDA_SERIAL_EXECUTION if (m_run_serial) { typename ValueTraits::value_type value; diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Team.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Team.hpp index 4b472f5d4f..e780639015 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Team.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_Team.hpp @@ -661,13 +661,14 @@ KOKKOS_INLINE_FUNCTION thread, count); } -template -KOKKOS_INLINE_FUNCTION - Impl::ThreadVectorRangeBoundariesStruct - ThreadVectorRange(const Impl::CudaTeamMember& thread, iType arg_begin, - iType arg_end) { +template +KOKKOS_INLINE_FUNCTION Impl::ThreadVectorRangeBoundariesStruct< + typename std::common_type::type, Impl::CudaTeamMember> +ThreadVectorRange(const Impl::CudaTeamMember& thread, iType1 arg_begin, + iType2 arg_end) { + using iType = typename std::common_type::type; return Impl::ThreadVectorRangeBoundariesStruct( - thread, arg_begin, arg_end); + thread, iType(arg_begin), iType(arg_end)); } KOKKOS_INLINE_FUNCTION @@ -983,7 +984,7 @@ KOKKOS_INLINE_FUNCTION void parallel_scan( //---------------------------------------------------------------------------- -/** \brief Intra-thread vector parallel exclusive prefix sum. +/** \brief Intra-thread vector parallel scan with reducer. * * Executes closure(iType i, ValueType & val, bool final) for each i=[0..N) * @@ -991,25 +992,25 @@ KOKKOS_INLINE_FUNCTION void parallel_scan( * thread and a scan operation is performed. * The last call to closure has final == true. */ -template -KOKKOS_INLINE_FUNCTION void parallel_scan( - const Impl::ThreadVectorRangeBoundariesStruct& - loop_boundaries, - const Closure& closure) { +template +KOKKOS_INLINE_FUNCTION + typename std::enable_if::value>::type + parallel_scan(const Impl::ThreadVectorRangeBoundariesStruct< + iType, Impl::CudaTeamMember>& loop_boundaries, + const Closure& closure, const ReducerType& reducer) { (void)loop_boundaries; (void)closure; + (void)reducer; #ifdef __CUDA_ARCH__ - // Extract value_type from closure - - using value_type = typename Kokkos::Impl::FunctorAnalysis< - Kokkos::Impl::FunctorPatternInterface::SCAN, void, Closure>::value_type; + using value_type = typename ReducerType::value_type; + value_type accum; + reducer.init(accum); + const value_type identity = accum; // Loop through boundaries by vector-length chunks // must scan at each iteration - value_type accum = 0; - // All thread "lanes" must loop the same number of times. // Determine an loop end for all thread "lanes." // Requires: @@ -1026,44 +1027,68 @@ KOKKOS_INLINE_FUNCTION void parallel_scan( const int end = loop_boundaries.end + (rem ? blockDim.x - rem : 0); for (int i = threadIdx.x; i < end; i += blockDim.x) { - value_type val = 0; + value_type val = identity; - // First acquire per-lane contributions: - if (i < loop_boundaries.end) closure(i, val, false); + // First acquire per-lane contributions. + // This sets i's val to i-1's contribution + // to make the latter in_place_shfl_up an + // exclusive scan -- the final accumulation + // of i's val will be included in the second + // closure call later. + if (i < loop_boundaries.end && threadIdx.x > 0) closure(i - 1, val, false); - value_type sval = val; - - // Bottom up inclusive scan in triangular pattern + // Bottom up exclusive scan in triangular pattern // where each CUDA thread is the root of a reduction tree // from the zeroth "lane" to itself. // [t] += [t-1] if t >= 1 // [t] += [t-2] if t >= 2 // [t] += [t-4] if t >= 4 // ... - + // This differs from the non-reducer overload, where an inclusive scan was + // implemented, because in general the binary operator cannot be inverted + // and we would not be able to remove the inclusive contribution by + // inversion. for (int j = 1; j < (int)blockDim.x; j <<= 1) { - value_type tmp = 0; - Impl::in_place_shfl_up(tmp, sval, j, blockDim.x, active_mask); + value_type tmp = identity; + Impl::in_place_shfl_up(tmp, val, j, blockDim.x, active_mask); if (j <= (int)threadIdx.x) { - sval += tmp; + reducer.join(val, tmp); } } - // Include accumulation and remove value for exclusive scan: - val = accum + sval - val; + // Include accumulation + reducer.join(val, accum); - // Provide exclusive scan value: + // Update i's contribution into the val + // and add it to accum for next round if (i < loop_boundaries.end) closure(i, val, true); - - // Accumulate the last value in the inclusive scan: - Impl::in_place_shfl(sval, sval, mask, blockDim.x, active_mask); - - accum += sval; + Impl::in_place_shfl(accum, val, mask, blockDim.x, active_mask); } #endif } +//---------------------------------------------------------------------------- + +/** \brief Intra-thread vector parallel exclusive prefix sum. + * + * Executes closure(iType i, ValueType & val, bool final) for each i=[0..N) + * + * The range [0..N) is mapped to all vector lanes in the + * thread and a scan operation is performed. + * The last call to closure has final == true. + */ +template +KOKKOS_INLINE_FUNCTION void parallel_scan( + const Impl::ThreadVectorRangeBoundariesStruct& + loop_boundaries, + const Closure& closure) { + using value_type = typename Kokkos::Impl::FunctorAnalysis< + Kokkos::Impl::FunctorPatternInterface::SCAN, void, Closure>::value_type; + value_type dummy; + parallel_scan(loop_boundaries, closure, Kokkos::Sum(dummy)); +} + } // namespace Kokkos namespace Kokkos { diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_View.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_View.hpp index f24abb377d..c55956ede9 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_View.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_View.hpp @@ -139,7 +139,7 @@ struct CudaLDGFetch { template KOKKOS_INLINE_FUNCTION ValueType operator[](const iType& i) const { -#ifdef __CUDA_ARCH__ +#if defined(__CUDA_ARCH__) && (350 <= _CUDA_ARCH__) AliasType v = __ldg(reinterpret_cast(&m_ptr[i])); return *(reinterpret_cast(&v)); #else diff --git a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp index 05876a9f02..fc52e41514 100644 --- a/lib/kokkos/core/src/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp +++ b/lib/kokkos/core/src/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp @@ -46,6 +46,7 @@ #define KOKKOS_CUDA_WORKGRAPHPOLICY_HPP #include +#include namespace Kokkos { namespace Impl { diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_BlockSize_Deduction.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_BlockSize_Deduction.hpp index 89135b6c45..9278d1bdc9 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_BlockSize_Deduction.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_BlockSize_Deduction.hpp @@ -75,17 +75,6 @@ void hipOccupancy(int *numBlocks, int blockSize, int sharedmem) { hipOccupancy( numBlocks, blockSize, sharedmem); } -template -struct HIPGetMaxBlockSize; - -template -int hip_get_max_block_size(typename DriverType::functor_type const &f, - size_t const vector_length, - size_t const shmem_extra_block, - size_t const shmem_extra_thread) { - return HIPGetMaxBlockSize::get_block_size( - f, vector_length, shmem_extra_block, shmem_extra_thread); -} template int hip_internal_get_block_size(const F &condition_check, @@ -131,10 +120,6 @@ int hip_internal_get_block_size(const F &condition_check, int opt_block_size = (blocks_per_sm >= min_blocks_per_sm) ? block_size : min_blocks_per_sm; int opt_threads_per_sm = threads_per_sm; - // printf("BlockSizeMax: %i Shmem: %i %i %i %i Regs: %i %i Blocks: %i %i - // Achieved: %i %i Opt: %i %i\n",block_size, - // shmem_per_sm,max_shmem_per_block,functor_shmem,total_shmem, - // regs_per_sm,regs_per_wavefront,max_blocks_shmem,max_blocks_regs,blocks_per_sm,threads_per_sm,opt_block_size,opt_threads_per_sm); block_size -= HIPTraits::WarpSize; while (condition_check(blocks_per_sm) && (block_size >= HIPTraits::WarpSize)) { @@ -160,10 +145,6 @@ int hip_internal_get_block_size(const F &condition_check, opt_threads_per_sm = threads_per_sm; } } - // printf("BlockSizeMax: %i Shmem: %i %i %i %i Regs: %i %i Blocks: %i %i - // Achieved: %i %i Opt: %i %i\n",block_size, - // shmem_per_sm,max_shmem_per_block,functor_shmem,total_shmem, - // regs_per_sm,regs_per_wavefront,max_blocks_shmem,max_blocks_regs,blocks_per_sm,threads_per_sm,opt_block_size,opt_threads_per_sm); block_size -= HIPTraits::WarpSize; } return opt_block_size; @@ -178,62 +159,6 @@ int hip_get_max_block_size(const HIPInternal *hip_instance, [](int x) { return x == 0; }, hip_instance, attr, f, vector_length, shmem_block, shmem_thread); } -template -struct HIPGetMaxBlockSize { - static int get_block_size(typename DriverType::functor_type const &f, - size_t const vector_length, - size_t const shmem_extra_block, - size_t const shmem_extra_thread) { - int numBlocks = 0; - int blockSize = LaunchBounds::maxTperB == 0 ? 1024 : LaunchBounds::maxTperB; - int sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - - hipOccupancy(&numBlocks, blockSize, sharedmem); - - if (numBlocks > 0) return blockSize; - while (blockSize > HIPTraits::WarpSize && numBlocks == 0) { - blockSize /= 2; - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - - hipOccupancy(&numBlocks, blockSize, sharedmem); - } - int blockSizeUpperBound = blockSize * 2; - while (blockSize < blockSizeUpperBound && numBlocks > 0) { - blockSize += HIPTraits::WarpSize; - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - - hipOccupancy(&numBlocks, blockSize, sharedmem); - } - return blockSize - HIPTraits::WarpSize; - } -}; - -template -struct HIPGetOptBlockSize; - -template -int hip_get_opt_block_size(typename DriverType::functor_type const &f, - size_t const vector_length, - size_t const shmem_extra_block, - size_t const shmem_extra_thread) { - return HIPGetOptBlockSize< - DriverType, LaunchBounds, - (HIPTraits::ConstantMemoryUseThreshold < - sizeof(DriverType))>::get_block_size(f, vector_length, shmem_extra_block, - shmem_extra_thread); -} template int hip_get_opt_block_size(HIPInternal const *hip_instance, @@ -245,157 +170,6 @@ int hip_get_opt_block_size(HIPInternal const *hip_instance, shmem_block, shmem_thread); } -// FIXME_HIP the code is identical to the false struct except for -// hip_parallel_launch_constant_memory -template -struct HIPGetOptBlockSize, true> { - static int get_block_size(typename DriverType::functor_type const &f, - size_t const vector_length, - size_t const shmem_extra_block, - size_t const shmem_extra_thread) { - int blockSize = HIPTraits::WarpSize / 2; - int numBlocks; - int sharedmem; - int maxOccupancy = 0; - int bestBlockSize = 0; - - while (blockSize < HIPTraits::MaxThreadsPerBlock) { - blockSize *= 2; - - // calculate the occupancy with that optBlockSize and check whether its - // larger than the largest one found so far - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - hipOccupancy(&numBlocks, blockSize, sharedmem); - if (maxOccupancy < numBlocks * blockSize) { - maxOccupancy = numBlocks * blockSize; - bestBlockSize = blockSize; - } - } - return bestBlockSize; - } -}; - -template -struct HIPGetOptBlockSize, false> { - static int get_block_size(const typename DriverType::functor_type &f, - const size_t vector_length, - const size_t shmem_extra_block, - const size_t shmem_extra_thread) { - int blockSize = HIPTraits::WarpSize / 2; - int numBlocks; - int sharedmem; - int maxOccupancy = 0; - int bestBlockSize = 0; - - while (blockSize < HIPTraits::MaxThreadsPerBlock) { - blockSize *= 2; - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - - hipOccupancy(&numBlocks, blockSize, sharedmem); - - if (maxOccupancy < numBlocks * blockSize) { - maxOccupancy = numBlocks * blockSize; - bestBlockSize = blockSize; - } - } - return bestBlockSize; - } -}; - -// FIXME_HIP the code is identical to the false struct except for -// hip_parallel_launch_constant_memory -template -struct HIPGetOptBlockSize< - DriverType, Kokkos::LaunchBounds, - true> { - static int get_block_size(const typename DriverType::functor_type &f, - const size_t vector_length, - const size_t shmem_extra_block, - const size_t shmem_extra_thread) { - int blockSize = HIPTraits::WarpSize / 2; - int numBlocks; - int sharedmem; - int maxOccupancy = 0; - int bestBlockSize = 0; - int max_threads_per_block = - std::min(MaxThreadsPerBlock, - hip_internal_maximum_warp_count() * HIPTraits::WarpSize); - - while (blockSize < max_threads_per_block) { - blockSize *= 2; - - // calculate the occupancy with that optBlockSize and check whether its - // larger than the largest one found so far - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - hipOccupancy( - &numBlocks, blockSize, sharedmem); - if (numBlocks >= static_cast(MinBlocksPerSM) && - blockSize <= static_cast(MaxThreadsPerBlock)) { - if (maxOccupancy < numBlocks * blockSize) { - maxOccupancy = numBlocks * blockSize; - bestBlockSize = blockSize; - } - } - } - if (maxOccupancy > 0) return bestBlockSize; - return -1; - } -}; - -template -struct HIPGetOptBlockSize< - DriverType, Kokkos::LaunchBounds, - false> { - static int get_block_size(const typename DriverType::functor_type &f, - const size_t vector_length, - const size_t shmem_extra_block, - const size_t shmem_extra_thread) { - int blockSize = HIPTraits::WarpSize / 2; - int numBlocks; - int sharedmem; - int maxOccupancy = 0; - int bestBlockSize = 0; - int max_threads_per_block = - std::min(MaxThreadsPerBlock, - hip_internal_maximum_warp_count() * HIPTraits::WarpSize); - - while (blockSize < max_threads_per_block) { - blockSize *= 2; - sharedmem = - shmem_extra_block + shmem_extra_thread * (blockSize / vector_length) + - ::Kokkos::Impl::FunctorTeamShmemSize< - typename DriverType::functor_type>::value(f, blockSize / - vector_length); - - hipOccupancy( - &numBlocks, blockSize, sharedmem); - if (numBlocks >= int(MinBlocksPerSM) && - blockSize <= int(MaxThreadsPerBlock)) { - if (maxOccupancy < numBlocks * blockSize) { - maxOccupancy = numBlocks * blockSize; - bestBlockSize = blockSize; - } - } - } - if (maxOccupancy > 0) return bestBlockSize; - return -1; - } -}; - } // namespace Impl } // namespace Experimental } // namespace Kokkos diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp index 45512038ac..18ef10e22c 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.cpp @@ -164,6 +164,8 @@ HIPInternal &HIPInternal::singleton() { void HIPInternal::fence() const { HIP_SAFE_CALL(hipStreamSynchronize(m_stream)); + // can reset our cycle id now as well + m_cycleId = 0; } void HIPInternal::initialize(int hip_device_id, hipStream_t stream) { @@ -256,7 +258,7 @@ void HIPInternal::initialize(int hip_device_id, hipStream_t stream) { void>; Record *const r = Record::allocate(Kokkos::Experimental::HIPSpace(), - "InternalScratchBitset", + "Kokkos::InternalScratchBitset", sizeof(uint32_t) * buffer_bound); Record::increment(r); @@ -303,8 +305,10 @@ Kokkos::Experimental::HIP::size_type *HIPInternal::scratch_space( Kokkos::Impl::SharedAllocationRecord; - static Record *const r = Record::allocate( - Kokkos::Experimental::HIPSpace(), "InternalScratchSpace", + if (m_scratchSpace) Record::decrement(Record::get_record(m_scratchSpace)); + + Record *const r = Record::allocate( + Kokkos::Experimental::HIPSpace(), "Kokkos::InternalScratchSpace", (sizeScratchGrain * m_scratchSpaceCount)); Record::increment(r); @@ -325,8 +329,10 @@ Kokkos::Experimental::HIP::size_type *HIPInternal::scratch_flags( Kokkos::Impl::SharedAllocationRecord; + if (m_scratchFlags) Record::decrement(Record::get_record(m_scratchFlags)); + Record *const r = Record::allocate( - Kokkos::Experimental::HIPSpace(), "InternalScratchFlags", + Kokkos::Experimental::HIPSpace(), "Kokkos::InternalScratchFlags", (sizeScratchGrain * m_scratchFlagsCount)); Record::increment(r); @@ -345,7 +351,7 @@ void *HIPInternal::resize_team_scratch_space(std::int64_t bytes, if (m_team_scratch_current_size == 0) { m_team_scratch_current_size = bytes; m_team_scratch_ptr = Kokkos::kokkos_malloc( - "HIPSpace::ScratchMemory", m_team_scratch_current_size); + "Kokkos::HIPSpace::TeamScratchMemory", m_team_scratch_current_size); } if ((bytes > m_team_scratch_current_size) || ((bytes < m_team_scratch_current_size) && (force_shrink))) { @@ -388,6 +394,40 @@ void HIPInternal::finalize() { m_team_scratch_current_size = 0; m_team_scratch_ptr = nullptr; } + if (nullptr != d_driverWorkArray) { + HIP_SAFE_CALL(hipHostFree(d_driverWorkArray)); + d_driverWorkArray = nullptr; + } +} + +char *HIPInternal::get_next_driver(size_t driverTypeSize) const { + std::lock_guard const lock(m_mutexWorkArray); + if (d_driverWorkArray == nullptr) { + HIP_SAFE_CALL( + hipHostMalloc(&d_driverWorkArray, + m_maxDriverCycles * m_maxDriverTypeSize * sizeof(char), + hipHostMallocNonCoherent)); + } + if (driverTypeSize > m_maxDriverTypeSize) { + // fence handles the cycle id reset for us + fence(); + HIP_SAFE_CALL(hipHostFree(d_driverWorkArray)); + m_maxDriverTypeSize = driverTypeSize; + if (m_maxDriverTypeSize % 128 != 0) + m_maxDriverTypeSize = + m_maxDriverTypeSize + 128 - m_maxDriverTypeSize % 128; + HIP_SAFE_CALL( + hipHostMalloc(&d_driverWorkArray, + m_maxDriverCycles * m_maxDriverTypeSize * sizeof(char), + hipHostMallocNonCoherent)); + } else { + m_cycleId = (m_cycleId + 1) % m_maxDriverCycles; + if (m_cycleId == 0) { + // ensure any outstanding kernels are completed before we wrap around + fence(); + } + } + return &d_driverWorkArray[m_maxDriverTypeSize * m_cycleId]; } //---------------------------------------------------------------------------- diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.hpp index 07ec8625e6..f4f88628e3 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Instance.hpp @@ -49,6 +49,8 @@ #include +#include + namespace Kokkos { namespace Experimental { namespace Impl { @@ -83,33 +85,46 @@ class HIPInternal { public: using size_type = ::Kokkos::Experimental::HIP::size_type; - int m_hipDev; - int m_hipArch; - unsigned m_multiProcCount; - unsigned m_maxWarpCount; - unsigned m_maxBlock; - unsigned m_maxBlocksPerSM; - unsigned m_maxSharedWords; + int m_hipDev = -1; + int m_hipArch = -1; + unsigned m_multiProcCount = 0; + unsigned m_maxWarpCount = 0; + unsigned m_maxBlock = 0; + unsigned m_maxBlocksPerSM = 0; + unsigned m_maxSharedWords = 0; int m_regsPerSM; - int m_shmemPerSM; - int m_maxShmemPerBlock; - int m_maxThreadsPerSM; + int m_shmemPerSM = 0; + int m_maxShmemPerBlock = 0; + int m_maxThreadsPerSM = 0; + + // array of DriverTypes to be allocated in host-pinned memory for async + // kernel launches + mutable char *d_driverWorkArray = nullptr; + // number of kernel launches that can be in-flight w/o synchronization + const int m_maxDriverCycles = 100; + // max size of a DriverType [bytes] + mutable size_t m_maxDriverTypeSize = 1024 * 10; + // the current index in the driverWorkArray + mutable int m_cycleId = 0; + // mutex to access d_driverWorkArray + mutable std::mutex m_mutexWorkArray; // Scratch Spaces for Reductions - size_type m_scratchSpaceCount; - size_type m_scratchFlagsCount; + size_type m_scratchSpaceCount = 0; + size_type m_scratchFlagsCount = 0; - size_type *m_scratchSpace; - size_type *m_scratchFlags; + size_type *m_scratchSpace = nullptr; + size_type *m_scratchFlags = nullptr; uint32_t *m_scratchConcurrentBitset = nullptr; hipDeviceProp_t m_deviceProp; - hipStream_t m_stream; + hipStream_t m_stream = nullptr; // Team Scratch Level 1 Space - mutable int64_t m_team_scratch_current_size; - mutable void *m_team_scratch_ptr; + mutable int64_t m_team_scratch_current_size = 0; + mutable void *m_team_scratch_ptr = nullptr; + mutable std::mutex m_team_scratch_mutex; bool was_finalized = false; @@ -117,9 +132,7 @@ class HIPInternal { int verify_is_initialized(const char *const label) const; - int is_initialized() const { - return m_hipDev >= 0; - } // 0 != m_scratchSpace && 0 != m_scratchFlags ; } + int is_initialized() const { return m_hipDev >= 0; } void initialize(int hip_device_id, hipStream_t stream = nullptr); void finalize(); @@ -128,25 +141,12 @@ class HIPInternal { void fence() const; + // returns the next driver type pointer in our work array + char *get_next_driver(size_t driverTypeSize) const; + ~HIPInternal(); - HIPInternal() - : m_hipDev(-1), - m_hipArch(-1), - m_multiProcCount(0), - m_maxWarpCount(0), - m_maxBlock(0), - m_maxSharedWords(0), - m_shmemPerSM(0), - m_maxShmemPerBlock(0), - m_maxThreadsPerSM(0), - m_scratchSpaceCount(0), - m_scratchFlagsCount(0), - m_scratchSpace(nullptr), - m_scratchFlags(nullptr), - m_stream(nullptr), - m_team_scratch_current_size(0), - m_team_scratch_ptr(nullptr) {} + HIPInternal() = default; // Resizing of reduction related scratch spaces size_type *scratch_space(const size_type size); diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_KernelLaunch.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_KernelLaunch.hpp index 3e972c7346..f774423b37 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_KernelLaunch.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_KernelLaunch.hpp @@ -49,9 +49,9 @@ #if defined(__HIPCC__) -#include #include #include +#include // Must use global variable on the device with HIP-Clang #ifdef __HIP__ @@ -127,19 +127,69 @@ struct HIPDispatchProperties { HIPLaunchMechanism launch_mechanism = l; }; -template , +template +struct HIPParallelLaunchKernelFunc; + +template +struct HIPParallelLaunchKernelFunc< + DriverType, Kokkos::LaunchBounds, + HIPLaunchMechanism::LocalMemory> { + static auto get_kernel_func() { + return hip_parallel_launch_local_memory; + } +}; + +template +struct HIPParallelLaunchKernelFunc, + HIPLaunchMechanism::LocalMemory> { + static auto get_kernel_func() { + return hip_parallel_launch_local_memory; + } +}; + +template +struct HIPParallelLaunchKernelInvoker; + +template +struct HIPParallelLaunchKernelInvoker + : HIPParallelLaunchKernelFunc { + using base_t = HIPParallelLaunchKernelFunc; + + static void invoke_kernel(DriverType const *driver, dim3 const &grid, + dim3 const &block, int shmem, + HIPInternal const *hip_instance) { + (base_t::get_kernel_func())<<m_stream>>>( + driver); + } +}; + +template , HIPLaunchMechanism LaunchMechanism = HIPLaunchMechanism::LocalMemory> struct HIPParallelLaunch; -template struct HIPParallelLaunch< DriverType, Kokkos::LaunchBounds, - HIPLaunchMechanism::LocalMemory> { - inline HIPParallelLaunch(const DriverType &driver, const dim3 &grid, - const dim3 &block, const int shmem, - const HIPInternal *hip_instance, - const bool /*prefer_shmem*/) { + HIPLaunchMechanism::LocalMemory> + : HIPParallelLaunchKernelInvoker< + DriverType, Kokkos::LaunchBounds, + HIPLaunchMechanism::LocalMemory> { + using base_t = HIPParallelLaunchKernelInvoker< + DriverType, Kokkos::LaunchBounds, + HIPLaunchMechanism::LocalMemory>; + + HIPParallelLaunch(const DriverType &driver, const dim3 &grid, + const dim3 &block, const int shmem, + const HIPInternal *hip_instance, + const bool /*prefer_shmem*/) { if ((grid.x != 0) && ((block.x * block.y * block.z) != 0)) { if (hip_instance->m_maxShmemPerBlock < shmem) { Kokkos::Impl::throw_runtime_exception( @@ -148,72 +198,16 @@ struct HIPParallelLaunch< KOKKOS_ENSURE_HIP_LOCK_ARRAYS_ON_DEVICE(); - // FIXME_HIP -- there is currently an error copying (some) structs - // by value to the device in HIP-Clang / VDI - // As a workaround, we can malloc the DriverType and explictly copy over. - // To remove once solved in HIP - DriverType *d_driver; - HIP_SAFE_CALL(hipMalloc(&d_driver, sizeof(DriverType))); - HIP_SAFE_CALL(hipMemcpyAsync(d_driver, &driver, sizeof(DriverType), - hipMemcpyHostToDevice, - hip_instance->m_stream)); - hip_parallel_launch_local_memory - <<m_stream>>>(d_driver); - -#if defined(KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK) - HIP_SAFE_CALL(hipGetLastError()); - hip_instance->fence(); -#endif - HIP_SAFE_CALL(hipFree(d_driver)); - } - } - - static hipFuncAttributes get_hip_func_attributes() { - static hipFuncAttributes attr = []() { - hipFuncAttributes attr; - HIP_SAFE_CALL(hipFuncGetAttributes( - &attr, - reinterpret_cast( - hip_parallel_launch_local_memory))); - return attr; - }(); - return attr; - } -}; - -template -struct HIPParallelLaunch, - HIPLaunchMechanism::LocalMemory> { - inline HIPParallelLaunch(const DriverType &driver, const dim3 &grid, - const dim3 &block, const int shmem, - const HIPInternal *hip_instance, - const bool /*prefer_shmem*/) { - if ((grid.x != 0) && ((block.x * block.y * block.z) != 0)) { - if (hip_instance->m_maxShmemPerBlock < shmem) { - Kokkos::Impl::throw_runtime_exception(std::string( - "HIPParallelLaunch FAILED: shared memory request is too large")); - } - - KOKKOS_ENSURE_HIP_LOCK_ARRAYS_ON_DEVICE(); - // Invoke the driver function on the device - - // FIXME_HIP -- see note about struct copy by value above - DriverType *d_driver; - HIP_SAFE_CALL(hipMalloc(&d_driver, sizeof(DriverType))); - HIP_SAFE_CALL(hipMemcpyAsync(d_driver, &driver, sizeof(DriverType), - hipMemcpyHostToDevice, - hip_instance->m_stream)); - hip_parallel_launch_local_memory - <<m_stream>>>(d_driver); + DriverType *d_driver = reinterpret_cast( + hip_instance->get_next_driver(sizeof(DriverType))); + std::memcpy((void *)d_driver, (void *)&driver, sizeof(DriverType)); + base_t::invoke_kernel(d_driver, grid, block, shmem, hip_instance); #if defined(KOKKOS_ENABLE_DEBUG_BOUNDS_CHECK) HIP_SAFE_CALL(hipGetLastError()); hip_instance->fence(); #endif - HIP_SAFE_CALL(hipFree(d_driver)); } } @@ -221,8 +215,7 @@ struct HIPParallelLaunch, static hipFuncAttributes attr = []() { hipFuncAttributes attr; HIP_SAFE_CALL(hipFuncGetAttributes( - &attr, reinterpret_cast( - hip_parallel_launch_local_memory))); + &attr, reinterpret_cast(base_t::get_kernel_func()))); return attr; }(); return attr; diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_MDRangePolicy.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_MDRangePolicy.hpp new file mode 100644 index 0000000000..ce1aff9586 --- /dev/null +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_MDRangePolicy.hpp @@ -0,0 +1,37 @@ +#ifndef KOKKOS_HIP_MDRANGEPOLICY_HPP_ +#define KOKKOS_HIP_MDRANGEPOLICY_HPP_ + +#include + +namespace Kokkos { + +template <> +struct default_outer_direction { + using type = Iterate; + static constexpr Iterate value = Iterate::Left; +}; + +template <> +struct default_inner_direction { + using type = Iterate; + static constexpr Iterate value = Iterate::Left; +}; + +namespace Impl { + +// Settings for MDRangePolicy +template <> +inline TileSizeProperties get_tile_size_properties( + const Kokkos::Experimental::HIP& space) { + TileSizeProperties properties; + properties.max_threads = + space.impl_internal_space_instance()->m_maxThreadsPerSM; + properties.default_largest_tile_size = 16; + properties.default_tile_size = 4; + properties.max_total_tile_size = 1024; + return properties; +} + +} // Namespace Impl +} // Namespace Kokkos +#endif diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_MDRange.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_MDRange.hpp index 6b831ff7a3..35e7d6fb85 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_MDRange.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_MDRange.hpp @@ -49,6 +49,7 @@ #include #include #include +#include #include namespace Kokkos { @@ -72,7 +73,7 @@ class ParallelFor, ParallelFor& operator=(ParallelFor const&) = delete; public: - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { Kokkos::Impl::DeviceIterateTile(m_policy, m_functor) @@ -175,6 +176,25 @@ class ParallelFor, ParallelFor(FunctorType const& arg_functor, Policy const& arg_policy) : m_functor(arg_functor), m_policy(arg_policy) {} + + template + static int max_tile_size_product(const Policy& pol, const Functor&) { + using closure_type = + ParallelFor, + Kokkos::Experimental::HIP>; + hipFuncAttributes attr = Kokkos::Experimental::Impl::HIPParallelLaunch< + closure_type, LaunchBounds>::get_hip_func_attributes(); + auto const& prop = pol.space().hip_device_prop(); + // Limits due to registers/SM, MDRange doesn't have + // shared memory constraints + int const regs_per_sm = prop.regsPerMultiprocessor; + int const regs_per_thread = attr.numRegs; + int const max_threads_per_sm = regs_per_sm / regs_per_thread; + return std::min( + max_threads_per_sm, + static_cast( + Kokkos::Experimental::Impl::HIPTraits::MaxThreadsPerBlock)); + } }; // ParallelReduce @@ -231,7 +251,7 @@ class ParallelReduce, ReducerType, DeviceIteratePattern(m_policy, m_functor, update).exec_range(); } - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { const integral_nonzero_constant word_count(ValueTraits::value_size( @@ -291,13 +311,19 @@ class ParallelReduce, ReducerType, ::Kokkos::Experimental::Impl::HIPTraits::MaxThreadsPerBlock; int shmem_size = ::Kokkos::Impl::hip_single_inter_block_reduce_scan_shmem< false, FunctorType, WorkTag>(f, n); + using closure_type = Impl::ParallelReduce; + hipFuncAttributes attr = ::Kokkos::Experimental::Impl::HIPParallelLaunch< + closure_type, LaunchBounds>::get_hip_func_attributes(); while ( (n && (m_policy.space().impl_internal_space_instance()->m_maxShmemPerBlock < shmem_size)) || - (n > static_cast( - ::Kokkos::Experimental::Impl::hip_get_max_block_size< - ParallelReduce, LaunchBounds>(f, 1, shmem_size, 0)))) { + (n > + static_cast( + ::Kokkos::Experimental::Impl::hip_get_max_block_size( + m_policy.space().impl_internal_space_instance(), attr, f, 1, + shmem_size, 0)))) { n >>= 1; shmem_size = ::Kokkos::Impl::hip_single_inter_block_reduce_scan_shmem< false, FunctorType, WorkTag>(f, n); @@ -391,6 +417,23 @@ class ParallelReduce, ReducerType, memory_space>::accessible), m_scratch_space(nullptr), m_scratch_flags(nullptr) {} + template + static int max_tile_size_product(const Policy& pol, const Functor&) { + using closure_type = + ParallelReduce, + ReducerType, Kokkos::Experimental::HIP>; + hipFuncAttributes attr = Kokkos::Experimental::Impl::HIPParallelLaunch< + closure_type, LaunchBounds>::get_hip_func_attributes(); + auto const& prop = pol.space().hip_device_prop(); + // Limits due do registers/SM + int const regs_per_sm = prop.regsPerMultiprocessor; + int const regs_per_thread = attr.numRegs; + int const max_threads_per_sm = regs_per_sm / regs_per_thread; + return std::min( + max_threads_per_sm, + static_cast( + Kokkos::Experimental::Impl::HIPTraits::MaxThreadsPerBlock)); + } }; } // namespace Impl } // namespace Kokkos diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Range.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Range.hpp index 5607f1c91a..7d2825eeb4 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Range.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Range.hpp @@ -92,7 +92,7 @@ class ParallelFor, public: using functor_type = FunctorType; - inline __device__ void operator()(void) const { + inline __device__ void operator()() const { const Member work_stride = blockDim.y * gridDim.x; const Member work_end = m_policy.end(); @@ -174,11 +174,14 @@ class ParallelReduce, ReducerType, size_type* m_scratch_space = nullptr; size_type* m_scratch_flags = nullptr; - // FIXME_HIP_PERFORMANCE Need a rule to choose when to use shared memory and - // when to use shuffle +#if HIP_VERSION < 401 static bool constexpr UseShflReduction = ((sizeof(value_type) > 2 * sizeof(double)) && static_cast(ValueTraits::StaticValueSize)); +#else + static bool constexpr UseShflReduction = + static_cast(ValueTraits::StaticValueSize); +#endif private: struct ShflReductionTag {}; @@ -330,13 +333,19 @@ class ParallelReduce, ReducerType, int shmem_size = hip_single_inter_block_reduce_scan_shmem( f, n); + using closure_type = Impl::ParallelReduce; + hipFuncAttributes attr = ::Kokkos::Experimental::Impl::HIPParallelLaunch< + closure_type, LaunchBounds>::get_hip_func_attributes(); while ( (n && (m_policy.space().impl_internal_space_instance()->m_maxShmemPerBlock < shmem_size)) || - (n > static_cast( - Kokkos::Experimental::Impl::hip_get_max_block_size< - ParallelReduce, LaunchBounds>(f, 1, shmem_size, 0)))) { + (n > + static_cast( + ::Kokkos::Experimental::Impl::hip_get_max_block_size( + m_policy.space().impl_internal_space_instance(), attr, f, 1, + shmem_size, 0)))) { n >>= 1; shmem_size = hip_single_inter_block_reduce_scan_shmem( @@ -493,7 +502,7 @@ class ParallelScanHIPBase { //---------------------------------------- - __device__ inline void initial(void) const { + __device__ inline void initial() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -529,7 +538,7 @@ class ParallelScanHIPBase { //---------------------------------------- - __device__ inline void final(void) const { + __device__ inline void final() const { const integral_nonzero_constant word_count(ValueTraits::value_size(m_functor) / sizeof(size_type)); @@ -606,7 +615,7 @@ class ParallelScanHIPBase { public: //---------------------------------------- - __device__ inline void operator()(void) const { + __device__ inline void operator()() const { if (!m_final) { initial(); } else { diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Team.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Team.hpp index 5da83d289e..96c3ff2a75 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Team.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Parallel_Team.hpp @@ -433,6 +433,9 @@ class ParallelFor, int m_shmem_size; void* m_scratch_ptr[2]; int m_scratch_size[2]; + // Only let one ParallelFor/Reduce modify the team scratch memory. The + // constructor acquires the mutex which is released in the destructor. + std::unique_lock m_scratch_lock; template __device__ inline @@ -449,7 +452,7 @@ class ParallelFor, } public: - __device__ inline void operator()(void) const { + __device__ inline void operator()() const { // Iterate this block through the league int64_t threadid = 0; if (m_scratch_size[1] > 0) { @@ -513,7 +516,10 @@ class ParallelFor, m_policy(arg_policy), m_league_size(arg_policy.league_size()), m_team_size(arg_policy.team_size()), - m_vector_size(arg_policy.impl_vector_length()) { + m_vector_size(arg_policy.impl_vector_length()), + m_scratch_lock(m_policy.space() + .impl_internal_space_instance() + ->m_team_scratch_mutex) { hipFuncAttributes attr = ::Kokkos::Experimental::Impl::HIPParallelLaunch< ParallelFor, launch_bounds>::get_hip_func_attributes(); m_team_size = @@ -640,6 +646,9 @@ class ParallelReduce, const size_type m_league_size; int m_team_size; const size_type m_vector_size; + // Only let one ParallelFor/Reduce modify the team scratch memory. The + // constructor acquires the mutex which is released in the destructor. + std::unique_lock m_scratch_lock; template __device__ inline @@ -877,7 +886,10 @@ class ParallelReduce, m_scratch_ptr{nullptr, nullptr}, m_league_size(arg_policy.league_size()), m_team_size(arg_policy.team_size()), - m_vector_size(arg_policy.impl_vector_length()) { + m_vector_size(arg_policy.impl_vector_length()), + m_scratch_lock(m_policy.space() + .impl_internal_space_instance() + ->m_team_scratch_mutex) { hipFuncAttributes attr = Kokkos::Experimental::Impl::HIPParallelLaunch< ParallelReduce, launch_bounds>::get_hip_func_attributes(); m_team_size = @@ -976,7 +988,10 @@ class ParallelReduce, m_scratch_ptr{nullptr, nullptr}, m_league_size(arg_policy.league_size()), m_team_size(arg_policy.team_size()), - m_vector_size(arg_policy.impl_vector_length()) { + m_vector_size(arg_policy.impl_vector_length()), + m_scratch_lock(m_policy.space() + .impl_internal_space_instance() + ->m_team_scratch_mutex) { hipFuncAttributes attr = Kokkos::Experimental::Impl::HIPParallelLaunch< ParallelReduce, launch_bounds>::get_hip_func_attributes(); m_team_size = diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Space.cpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Space.cpp index 00cef28f82..15ca089d14 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Space.cpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Space.cpp @@ -42,12 +42,6 @@ //@HEADER */ -#include -#include -#include -#include -#include -#include #include #include @@ -57,6 +51,13 @@ #include #include +#include +#include +#include +#include +#include +#include + /*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/ namespace Kokkos { @@ -172,14 +173,14 @@ void DeepCopyAsyncHIP(void* dst, void const* src, size_t n) { namespace Kokkos { -void Experimental::HIPSpace::access_error() { +KOKKOS_DEPRECATED void Experimental::HIPSpace::access_error() { const std::string msg( "Kokkos::Experimental::HIPSpace::access_error attempt to execute " "Experimental::HIP function from non-HIP space"); Kokkos::Impl::throw_runtime_exception(msg); } -void Experimental::HIPSpace::access_error(const void* const) { +KOKKOS_DEPRECATED void Experimental::HIPSpace::access_error(const void* const) { const std::string msg( "Kokkos::Experimental::HIPSpace::access_error attempt to execute " "Experimental::HIP function from non-HIP space"); @@ -326,45 +327,6 @@ SharedAllocationRecord SharedAllocationRecord< Kokkos::Experimental::HIPHostPinnedSpace, void>::s_root_record; #endif -std::string SharedAllocationRecord::get_label() const { - SharedAllocationHeader header; - - Kokkos::Impl::DeepCopy( - &header, RecordBase::head(), sizeof(SharedAllocationHeader)); - - return std::string(header.m_label); -} - -std::string SharedAllocationRecord::get_label() const { - return std::string(RecordBase::head()->m_label); -} - -SharedAllocationRecord* -SharedAllocationRecord::allocate( - const Kokkos::Experimental::HIPSpace& arg_space, - const std::string& arg_label, const size_t arg_alloc_size) { - return new SharedAllocationRecord(arg_space, arg_label, arg_alloc_size); -} - -SharedAllocationRecord* -SharedAllocationRecord:: - allocate(const Kokkos::Experimental::HIPHostPinnedSpace& arg_space, - const std::string& arg_label, const size_t arg_alloc_size) { - return new SharedAllocationRecord(arg_space, arg_label, arg_alloc_size); -} - -void SharedAllocationRecord::deallocate( - SharedAllocationRecord* arg_rec) { - delete static_cast(arg_rec); -} - -void SharedAllocationRecord:: - deallocate(SharedAllocationRecord* arg_rec) { - delete static_cast(arg_rec); -} - SharedAllocationRecord::~SharedAllocationRecord() { const char* label = nullptr; @@ -393,7 +355,7 @@ SharedAllocationRecord:: const SharedAllocationRecord::function_type arg_dealloc) // Pass through allocated [ SharedAllocationHeader , user_memory ] // Pass through deallocation function - : SharedAllocationRecord( + : base_t( #ifdef KOKKOS_ENABLE_DEBUG &SharedAllocationRecord::s_root_record, @@ -405,13 +367,7 @@ SharedAllocationRecord:: SharedAllocationHeader header; - // Fill in the Header information - header.m_record = static_cast*>(this); - - strncpy(header.m_label, arg_label.c_str(), - SharedAllocationHeader::maximum_label_length); - // Set last element zero, in case c_str is too long - header.m_label[SharedAllocationHeader::maximum_label_length - 1] = (char)0; + this->base_t::_fill_host_accessible_header_info(header, arg_label); // Copy to device memory Kokkos::Impl::DeepCopy( @@ -425,7 +381,7 @@ SharedAllocationRecord:: const SharedAllocationRecord::function_type arg_dealloc) // Pass through allocated [ SharedAllocationHeader , user_memory ] // Pass through deallocation function - : SharedAllocationRecord( + : base_t( #ifdef KOKKOS_ENABLE_DEBUG &SharedAllocationRecord::s_root_record, @@ -435,223 +391,8 @@ SharedAllocationRecord:: sizeof(SharedAllocationHeader) + arg_alloc_size, arg_dealloc), m_space(arg_space) { // Fill in the Header information, directly accessible via host pinned memory - - RecordBase::m_alloc_ptr->m_record = this; - - strncpy(RecordBase::m_alloc_ptr->m_label, arg_label.c_str(), - SharedAllocationHeader::maximum_label_length); - // Set last element zero, in case c_str is too long - RecordBase::m_alloc_ptr - ->m_label[SharedAllocationHeader::maximum_label_length - 1] = (char)0; -} - -//---------------------------------------------------------------------------- - -void* SharedAllocationRecord:: - allocate_tracked(const Kokkos::Experimental::HIPSpace& arg_space, - const std::string& arg_alloc_label, - const size_t arg_alloc_size) { - if (!arg_alloc_size) return nullptr; - - SharedAllocationRecord* const r = - allocate(arg_space, arg_alloc_label, arg_alloc_size); - - RecordBase::increment(r); - - return r->data(); -} - -void SharedAllocationRecord::deallocate_tracked(void* const - arg_alloc_ptr) { - if (arg_alloc_ptr != nullptr) { - SharedAllocationRecord* const r = get_record(arg_alloc_ptr); - - RecordBase::decrement(r); - } -} - -void* SharedAllocationRecord:: - reallocate_tracked(void* const arg_alloc_ptr, const size_t arg_alloc_size) { - SharedAllocationRecord* const r_old = get_record(arg_alloc_ptr); - SharedAllocationRecord* const r_new = - allocate(r_old->m_space, r_old->get_label(), arg_alloc_size); - - Kokkos::Impl::DeepCopy( - r_new->data(), r_old->data(), std::min(r_old->size(), r_new->size())); - - RecordBase::increment(r_new); - RecordBase::decrement(r_old); - - return r_new->data(); -} - -void* SharedAllocationRecord:: - allocate_tracked(const Kokkos::Experimental::HIPHostPinnedSpace& arg_space, - const std::string& arg_alloc_label, - const size_t arg_alloc_size) { - if (!arg_alloc_size) return nullptr; - - SharedAllocationRecord* const r = - allocate(arg_space, arg_alloc_label, arg_alloc_size); - - RecordBase::increment(r); - - return r->data(); -} - -void SharedAllocationRecord::deallocate_tracked(void* const - arg_alloc_ptr) { - if (arg_alloc_ptr) { - SharedAllocationRecord* const r = get_record(arg_alloc_ptr); - - RecordBase::decrement(r); - } -} - -void* SharedAllocationRecord:: - reallocate_tracked(void* const arg_alloc_ptr, const size_t arg_alloc_size) { - SharedAllocationRecord* const r_old = get_record(arg_alloc_ptr); - SharedAllocationRecord* const r_new = - allocate(r_old->m_space, r_old->get_label(), arg_alloc_size); - - using HIPHostPinnedSpace = Kokkos::Experimental::HIPHostPinnedSpace; - Kokkos::Impl::DeepCopy( - r_new->data(), r_old->data(), std::min(r_old->size(), r_new->size())); - - RecordBase::increment(r_new); - RecordBase::decrement(r_old); - - return r_new->data(); -} - -//---------------------------------------------------------------------------- - -SharedAllocationRecord* -SharedAllocationRecord::get_record( - void* alloc_ptr) { - using Header = SharedAllocationHeader; - using RecordHIP = - SharedAllocationRecord; - - // Copy the header from the allocation - Header head; - - Header const* const head_hip = - alloc_ptr ? Header::get_header(alloc_ptr) : nullptr; - - if (alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, head_hip, sizeof(SharedAllocationHeader)); - } - - RecordHIP* const record = - alloc_ptr ? static_cast(head.m_record) : nullptr; - - if (!alloc_ptr || record->m_alloc_ptr != head_hip) { - Kokkos::Impl::throw_runtime_exception(std::string( - "Kokkos::Impl::SharedAllocationRecord< Kokkos::Experimental::HIPSpace " - ", void >::get_record ERROR")); - } - - return record; -} - -SharedAllocationRecord* -SharedAllocationRecord::get_record(void* alloc_ptr) { - using Header = SharedAllocationHeader; - using RecordHIP = - SharedAllocationRecord; - - Header* const h = - alloc_ptr ? reinterpret_cast(alloc_ptr) - 1 : nullptr; - - if (!alloc_ptr || h->m_record->m_alloc_ptr != h) { - Kokkos::Impl::throw_runtime_exception(std::string( - "Kokkos::Impl::SharedAllocationRecord< " - "Kokkos::Experimental::HIPHostPinnedSpace , void >::get_record ERROR")); - } - - return static_cast(h->m_record); -} - -// Iterate records to print orphaned memory ... -void SharedAllocationRecord:: - print_records(std::ostream& s, const Kokkos::Experimental::HIPSpace&, - bool detail) { -#ifdef KOKKOS_ENABLE_DEBUG - SharedAllocationRecord* r = &s_root_record; - - char buffer[256]; - - SharedAllocationHeader head; - - if (detail) { - do { - if (r->m_alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, r->m_alloc_ptr, sizeof(SharedAllocationHeader)); - } else { - head.m_label[0] = 0; - } - - // Formatting dependent on sizeof(uintptr_t) - const char* format_string; - - if (sizeof(uintptr_t) == sizeof(unsigned long)) { - format_string = - "HIP addr( 0x%.12lx ) list( 0x%.12lx 0x%.12lx ) extent[ 0x%.12lx + " - "%.8ld ] count(%d) dealloc(0x%.12lx) %s\n"; - } else if (sizeof(uintptr_t) == sizeof(unsigned long long)) { - format_string = - "HIP addr( 0x%.12llx ) list( 0x%.12llx 0x%.12llx ) extent[ " - "0x%.12llx + %.8ld ] count(%d) dealloc(0x%.12llx) %s\n"; - } - - snprintf(buffer, 256, format_string, reinterpret_cast(r), - reinterpret_cast(r->m_prev), - reinterpret_cast(r->m_next), - reinterpret_cast(r->m_alloc_ptr), r->m_alloc_size, - r->m_count, reinterpret_cast(r->m_dealloc), - head.m_label); - s << buffer; - r = r->m_next; - } while (r != &s_root_record); - } else { - do { - if (r->m_alloc_ptr) { - Kokkos::Impl::DeepCopy( - &head, r->m_alloc_ptr, sizeof(SharedAllocationHeader)); - - // Formatting dependent on sizeof(uintptr_t) - const char* format_string; - - if (sizeof(uintptr_t) == sizeof(unsigned long)) { - format_string = "HIP [ 0x%.12lx + %ld ] %s\n"; - } else if (sizeof(uintptr_t) == sizeof(unsigned long long)) { - format_string = "HIP [ 0x%.12llx + %ld ] %s\n"; - } - - snprintf(buffer, 256, format_string, - reinterpret_cast(r->data()), r->size(), - head.m_label); - } else { - snprintf(buffer, 256, "HIP [ 0 + 0 ]\n"); - } - s << buffer; - r = r->m_next; - } while (r != &s_root_record); - } -#else - (void)s; - (void)detail; - throw_runtime_exception( - "Kokkos::Impl::SharedAllocationRecord::print_records" - " only works with KOKKOS_ENABLE_DEBUG enabled"); -#endif + this->base_t::_fill_host_accessible_header_info(*RecordBase::m_alloc_ptr, + arg_label); } } // namespace Impl @@ -680,63 +421,22 @@ void HIP::impl_initialize(const HIP::SelectDevice config) { void HIP::impl_finalize() { Impl::HIPInternal::singleton().finalize(); } HIP::HIP() - : m_space_instance(&Impl::HIPInternal::singleton()), m_counter(nullptr) { + : m_space_instance(&Impl::HIPInternal::singleton(), + [](Impl::HIPInternal*) {}) { Impl::HIPInternal::singleton().verify_is_initialized( "HIP instance constructor"); } HIP::HIP(hipStream_t const stream) - : m_space_instance(new Impl::HIPInternal), m_counter(new int(1)) { + : m_space_instance(new Impl::HIPInternal, [](Impl::HIPInternal* ptr) { + ptr->finalize(); + delete ptr; + }) { Impl::HIPInternal::singleton().verify_is_initialized( "HIP instance constructor"); m_space_instance->initialize(Impl::HIPInternal::singleton().m_hipDev, stream); } -KOKKOS_FUNCTION HIP::HIP(HIP&& other) noexcept { - m_space_instance = other.m_space_instance; - other.m_space_instance = nullptr; - m_counter = other.m_counter; - other.m_counter = nullptr; -} - -KOKKOS_FUNCTION HIP::HIP(HIP const& other) - : m_space_instance(other.m_space_instance), m_counter(other.m_counter) { -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HIP_GPU - if (m_counter) Kokkos::atomic_add(m_counter, 1); -#endif -} - -KOKKOS_FUNCTION HIP& HIP::operator=(HIP&& other) noexcept { - m_space_instance = other.m_space_instance; - other.m_space_instance = nullptr; - m_counter = other.m_counter; - other.m_counter = nullptr; - - return *this; -} - -KOKKOS_FUNCTION HIP& HIP::operator=(HIP const& other) { - m_space_instance = other.m_space_instance; - m_counter = other.m_counter; -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HIP_GPU - if (m_counter) Kokkos::atomic_add(m_counter, 1); -#endif - - return *this; -} - -KOKKOS_FUNCTION HIP::~HIP() noexcept { -#ifndef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_HIP_GPU - if (m_counter == nullptr) return; - int const count = Kokkos::atomic_fetch_sub(m_counter, 1); - if (count == 1) { - delete m_counter; - m_space_instance->finalize(); - delete m_space_instance; - } -#endif -} - void HIP::print_configuration(std::ostream& s, const bool) { Impl::HIPInternal::singleton().print_configuration(s); } @@ -810,3 +510,26 @@ void HIPSpaceInitializer::print_configuration(std::ostream& msg, } // namespace Impl } // namespace Kokkos + +//============================================================================== +// {{{1 + +#include + +namespace Kokkos { +namespace Impl { + +// To avoid additional compilation cost for something that's (mostly?) not +// performance sensitive, we explicity instantiate these CRTP base classes here, +// where we have access to the associated *_timpl.hpp header files. +template class HostInaccessibleSharedAllocationRecordCommon< + Kokkos::Experimental::HIPSpace>; +template class SharedAllocationRecordCommon; +template class SharedAllocationRecordCommon< + Kokkos::Experimental::HIPHostPinnedSpace>; + +} // end namespace Impl +} // end namespace Kokkos + +// end Explicit instantiations of CRTP Base classes }}}1 +//============================================================================== diff --git a/lib/kokkos/core/src/HIP/Kokkos_HIP_Team.hpp b/lib/kokkos/core/src/HIP/Kokkos_HIP_Team.hpp index 7571510c31..fe52886ced 100644 --- a/lib/kokkos/core/src/HIP/Kokkos_HIP_Team.hpp +++ b/lib/kokkos/core/src/HIP/Kokkos_HIP_Team.hpp @@ -644,13 +644,14 @@ KOKKOS_INLINE_FUNCTION thread, count); } -template -KOKKOS_INLINE_FUNCTION - Impl::ThreadVectorRangeBoundariesStruct - ThreadVectorRange(const Impl::HIPTeamMember& thread, iType arg_begin, - iType arg_end) { +template +KOKKOS_INLINE_FUNCTION Impl::ThreadVectorRangeBoundariesStruct< + typename std::common_type::type, Impl::HIPTeamMember> +ThreadVectorRange(const Impl::HIPTeamMember& thread, iType1 arg_begin, + iType2 arg_end) { + using iType = typename std::common_type::type; return Impl::ThreadVectorRangeBoundariesStruct( - thread, arg_begin, arg_end); + thread, iType(arg_begin), iType(arg_end)); } KOKKOS_INLINE_FUNCTION @@ -961,7 +962,7 @@ KOKKOS_INLINE_FUNCTION //---------------------------------------------------------------------------- -/** \brief Intra-thread vector parallel exclusive prefix sum. +/** \brief Intra-thread vector parallel scan with reducer. * * Executes closure(iType i, ValueType & val, bool final) for each i=[0..N) * @@ -969,22 +970,21 @@ KOKKOS_INLINE_FUNCTION * thread and a scan operation is performed. * The last call to closure has final == true. */ -template -KOKKOS_INLINE_FUNCTION void parallel_scan( - const Impl::ThreadVectorRangeBoundariesStruct& - loop_boundaries, - const Closure& closure) { +template +KOKKOS_INLINE_FUNCTION + typename std::enable_if::value>::type + parallel_scan(const Impl::ThreadVectorRangeBoundariesStruct< + iType, Impl::HIPTeamMember>& loop_boundaries, + const Closure& closure, const ReducerType& reducer) { #ifdef __HIP_DEVICE_COMPILE__ - // Extract value_type from closure - - using value_type = typename Kokkos::Impl::FunctorAnalysis< - Kokkos::Impl::FunctorPatternInterface::SCAN, void, Closure>::value_type; + using value_type = typename ReducerType::value_type; + value_type accum; + reducer.init(accum); + const value_type identity = accum; // Loop through boundaries by vector-length chunks // must scan at each iteration - value_type accum = 0; - // All thread "lanes" must loop the same number of times. // Determine an loop end for all thread "lanes." // Requires: @@ -997,47 +997,72 @@ KOKKOS_INLINE_FUNCTION void parallel_scan( const int end = loop_boundaries.end + (rem ? blockDim.x - rem : 0); for (int i = threadIdx.x; i < end; i += blockDim.x) { - value_type val = 0; + value_type val = identity; - // First acquire per-lane contributions: - if (i < loop_boundaries.end) closure(i, val, false); + // First acquire per-lane contributions. + // This sets i's val to i-1's contribution + // to make the latter in_place_shfl_up an + // exclusive scan -- the final accumulation + // of i's val will be included in the second + // closure call later. + if (i < loop_boundaries.end && threadIdx.x > 0) closure(i - 1, val, false); - value_type sval = val; - - // Bottom up inclusive scan in triangular pattern + // Bottom up exclusive scan in triangular pattern // where each HIP thread is the root of a reduction tree // from the zeroth "lane" to itself. // [t] += [t-1] if t >= 1 // [t] += [t-2] if t >= 2 // [t] += [t-4] if t >= 4 // ... - + // This differs from the non-reducer overload, where an inclusive scan was + // implemented, because in general the binary operator cannot be inverted + // and we would not be able to remove the inclusive contribution by + // inversion. for (int j = 1; j < static_cast(blockDim.x); j <<= 1) { - value_type tmp = 0; - ::Kokkos::Experimental::Impl::in_place_shfl_up(tmp, sval, j, blockDim.x); + value_type tmp = identity; + ::Kokkos::Experimental::Impl::in_place_shfl_up(tmp, val, j, blockDim.x); if (j <= static_cast(threadIdx.x)) { - sval += tmp; + reducer.join(val, tmp); } } - // Include accumulation and remove value for exclusive scan: - val = accum + sval - val; + // Include accumulation + reducer.join(val, accum); - // Provide exclusive scan value: + // Update i's contribution into the val + // and add it to accum for next round if (i < loop_boundaries.end) closure(i, val, true); - - // Accumulate the last value in the inclusive scan: - ::Kokkos::Experimental::Impl::in_place_shfl(sval, sval, blockDim.x - 1, + ::Kokkos::Experimental::Impl::in_place_shfl(accum, val, blockDim.x - 1, blockDim.x); - - accum += sval; } #else (void)loop_boundaries; (void)closure; + (void)reducer; #endif } +//---------------------------------------------------------------------------- + +/** \brief Intra-thread vector parallel exclusive prefix sum. + * + * Executes closure(iType i, ValueType & val, bool final) for each i=[0..N) + * + * The range [0..N) is mapped to all vector lanes in the + * thread and a scan operation is performed. + * The last call to closure has final == true. + */ +template +KOKKOS_INLINE_FUNCTION void parallel_scan( + const Impl::ThreadVectorRangeBoundariesStruct& + loop_boundaries, + const Closure& closure) { + using value_type = typename Kokkos::Impl::FunctorAnalysis< + Kokkos::Impl::FunctorPatternInterface::SCAN, void, Closure>::value_type; + value_type dummy; + parallel_scan(loop_boundaries, closure, Kokkos::Sum(dummy)); +} + } // namespace Kokkos namespace Kokkos { diff --git a/lib/kokkos/core/src/KokkosExp_MDRangePolicy.hpp b/lib/kokkos/core/src/KokkosExp_MDRangePolicy.hpp index 140376425c..b7d8e62f69 100644 --- a/lib/kokkos/core/src/KokkosExp_MDRangePolicy.hpp +++ b/lib/kokkos/core/src/KokkosExp_MDRangePolicy.hpp @@ -48,17 +48,11 @@ #include #include - +#include #include #include -#include #include -#if defined(KOKKOS_ENABLE_CUDA) || \ - (defined(__HIPCC__) && defined(KOKKOS_ENABLE_HIP)) -#include -#endif - namespace Kokkos { // ------------------------------------------------------------------ // @@ -74,22 +68,14 @@ enum class Iterate template struct default_outer_direction { - using type = Iterate; -#if defined(KOKKOS_ENABLE_CUDA) || defined(KOKKOS_ENABLE_HIP) - static constexpr Iterate value = Iterate::Left; -#else + using type = Iterate; static constexpr Iterate value = Iterate::Right; -#endif }; template struct default_inner_direction { - using type = Iterate; -#if defined(KOKKOS_ENABLE_CUDA) || defined(KOKKOS_ENABLE_HIP) - static constexpr Iterate value = Iterate::Left; -#else + using type = Iterate; static constexpr Iterate value = Iterate::Right; -#endif }; // Iteration Pattern @@ -179,6 +165,25 @@ constexpr NVCC_WONT_LET_ME_CALL_YOU_Array to_array_potentially_narrowing( } return a; } + +struct TileSizeProperties { + int max_threads; + int default_largest_tile_size; + int default_tile_size; + int max_total_tile_size; +}; + +template +TileSizeProperties get_tile_size_properties(const ExecutionSpace&) { + // Host settings + TileSizeProperties properties; + properties.max_threads = std::numeric_limits::max(); + properties.default_largest_tile_size = 0; + properties.default_tile_size = 2; + properties.max_total_tile_size = std::numeric_limits::max(); + return properties; +} + } // namespace Impl // multi-dimensional iteration pattern @@ -208,7 +213,7 @@ struct MDRangePolicy : public Kokkos::Impl::PolicyTraits { using launch_bounds = typename traits::launch_bounds; using member_type = typename range_policy::member_type; - enum { rank = static_cast(iteration_pattern::rank) }; + static constexpr int rank = iteration_pattern::rank; using index_type = typename traits::index_type; using array_index_type = std::int64_t; @@ -231,37 +236,20 @@ struct MDRangePolicy : public Kokkos::Impl::PolicyTraits { point_type m_tile_end = {}; index_type m_num_tiles = 1; index_type m_prod_tile_dims = 1; + bool m_tune_tile_size = false; - /* - // NDE enum impl definition alternative - replace static constexpr int ? - enum { outer_direction = static_cast ( - (iteration_pattern::outer_direction != Iterate::Default) - ? iteration_pattern::outer_direction - : default_outer_direction< typename traits::execution_space>::value ) }; - - enum { inner_direction = static_cast ( - iteration_pattern::inner_direction != Iterate::Default - ? iteration_pattern::inner_direction - : default_inner_direction< typename traits::execution_space>::value ) }; - - enum { Right = static_cast( Iterate::Right ) }; - enum { Left = static_cast( Iterate::Left ) }; - */ - // static constexpr int rank = iteration_pattern::rank; - - static constexpr int outer_direction = static_cast( + static constexpr auto outer_direction = (iteration_pattern::outer_direction != Iterate::Default) ? iteration_pattern::outer_direction - : default_outer_direction::value); + : default_outer_direction::value; - static constexpr int inner_direction = static_cast( + static constexpr auto inner_direction = iteration_pattern::inner_direction != Iterate::Default ? iteration_pattern::inner_direction - : default_inner_direction::value); + : default_inner_direction::value; - // Ugly ugly workaround intel 14 not handling scoped enum correctly - static constexpr int Right = static_cast(Iterate::Right); - static constexpr int Left = static_cast(Iterate::Left); + static constexpr auto Right = Iterate::Right; + static constexpr auto Left = Iterate::Left; KOKKOS_INLINE_FUNCTION const typename traits::execution_space& space() const { return m_space; @@ -320,7 +308,7 @@ struct MDRangePolicy : public Kokkos::Impl::PolicyTraits { point_type const& lower, point_type const& upper, tile_type const& tile = tile_type{}) : m_space(work_space), m_lower(lower), m_upper(upper), m_tile(tile) { - init(); + init_helper(Impl::get_tile_size_properties(work_space)); } template { m_tile(p.m_tile), m_tile_end(p.m_tile_end), m_num_tiles(p.m_num_tiles), - m_prod_tile_dims(p.m_prod_tile_dims) {} + m_prod_tile_dims(p.m_prod_tile_dims), + m_tune_tile_size(p.m_tune_tile_size) {} + + void impl_change_tile_size(const point_type& tile) { + m_tile = tile; + init_helper(Impl::get_tile_size_properties(m_space)); + } + bool impl_tune_tile_size() const { return m_tune_tile_size; } private: - void init() { - // Host - if (true -#if defined(KOKKOS_ENABLE_CUDA) - && !std::is_same::value -#endif -#if defined(KOKKOS_ENABLE_HIP) - && !std::is_same::value -#endif - ) { - index_type span; - for (int i = 0; i < rank; ++i) { - span = m_upper[i] - m_lower[i]; - if (m_tile[i] <= 0) { - if (((int)inner_direction == (int)Right && (i < rank - 1)) || - ((int)inner_direction == (int)Left && (i > 0))) { - m_tile[i] = 2; - } else { - m_tile[i] = (span == 0 ? 1 : span); - } - } - m_tile_end[i] = - static_cast((span + m_tile[i] - 1) / m_tile[i]); - m_num_tiles *= m_tile_end[i]; - m_prod_tile_dims *= m_tile[i]; - } + void init_helper(Impl::TileSizeProperties properties) { + m_prod_tile_dims = 1; + int increment = 1; + int rank_start = 0; + int rank_end = rank; + if (inner_direction == Iterate::Right) { + increment = -1; + rank_start = rank - 1; + rank_end = -1; } -#if defined(KOKKOS_ENABLE_CUDA) || defined(KOKKOS_ENABLE_HIP) - else // Cuda or HIP - { - index_type span; - int increment = 1; - int rank_start = 0; - int rank_end = rank; - if ((int)inner_direction == (int)Right) { - increment = -1; - rank_start = rank - 1; - rank_end = -1; - } - bool is_cuda_exec_space = -#if defined(KOKKOS_ENABLE_CUDA) - std::is_same::value; -#else - false; -#endif - for (int i = rank_start; i != rank_end; i += increment) { - span = m_upper[i] - m_lower[i]; - if (m_tile[i] <= 0) { - // TODO: determine what is a good default tile size for Cuda and HIP - // may be rank dependent - if (((int)inner_direction == (int)Right && (i < rank - 1)) || - ((int)inner_direction == (int)Left && (i > 0))) { - if (m_prod_tile_dims < 256) { - m_tile[i] = (is_cuda_exec_space) ? 2 : 4; - } else { - m_tile[i] = 1; - } + for (int i = rank_start; i != rank_end; i += increment) { + const index_type length = m_upper[i] - m_lower[i]; + if (m_tile[i] <= 0) { + m_tune_tile_size = true; + if ((inner_direction == Iterate::Right && (i < rank - 1)) || + (inner_direction == Iterate::Left && (i > 0))) { + if (m_prod_tile_dims * properties.default_tile_size < + static_cast(properties.max_total_tile_size)) { + m_tile[i] = properties.default_tile_size; } else { - m_tile[i] = 16; + m_tile[i] = 1; } - } - m_tile_end[i] = - static_cast((span + m_tile[i] - 1) / m_tile[i]); - m_num_tiles *= m_tile_end[i]; - m_prod_tile_dims *= m_tile[i]; - } - if (m_prod_tile_dims > - 1024) { // Match Cuda restriction for ParallelReduce; 1024,1024,64 - // max per dim (Kepler), but product num_threads < 1024 - if (is_cuda_exec_space) { - printf(" Tile dimensions exceed Cuda limits\n"); - Kokkos::abort( - "Cuda ExecSpace Error: MDRange tile dims exceed maximum number " - "of threads per block - choose smaller tile dims"); } else { - printf(" Tile dimensions exceed HIP limits\n"); - Kokkos::abort( - "HIP ExecSpace Error: MDRange tile dims exceed maximum number of " - "threads per block - choose smaller tile dims"); + m_tile[i] = properties.default_largest_tile_size == 0 + ? std::max(length, 1) + : properties.default_largest_tile_size; } } + m_tile_end[i] = + static_cast((length + m_tile[i] - 1) / m_tile[i]); + m_num_tiles *= m_tile_end[i]; + m_prod_tile_dims *= m_tile[i]; + } + if (m_prod_tile_dims > static_cast(properties.max_threads)) { + printf(" Product of tile dimensions exceed maximum limit: %d\n", + static_cast(properties.max_threads)); + Kokkos::abort( + "ExecSpace Error: MDRange tile dims exceed maximum number " + "of threads per block - choose smaller tile dims"); } -#endif } }; diff --git a/lib/kokkos/core/src/Kokkos_AnonymousSpace.hpp b/lib/kokkos/core/src/Kokkos_AnonymousSpace.hpp index 8e226a078d..fb94049d7a 100644 --- a/lib/kokkos/core/src/Kokkos_AnonymousSpace.hpp +++ b/lib/kokkos/core/src/Kokkos_AnonymousSpace.hpp @@ -104,20 +104,6 @@ struct MemorySpaceAccess { enum : bool { deepcopy = true }; }; -template -struct VerifyExecutionCanAccessMemorySpace { - enum { value = 1 }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void *) {} -}; - -template -struct VerifyExecutionCanAccessMemorySpace { - enum { value = 1 }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void *) {} -}; - } // namespace Impl } // namespace Kokkos diff --git a/lib/kokkos/core/src/Kokkos_Complex.hpp b/lib/kokkos/core/src/Kokkos_Complex.hpp index fb2925a066..6578723fc8 100644 --- a/lib/kokkos/core/src/Kokkos_Complex.hpp +++ b/lib/kokkos/core/src/Kokkos_Complex.hpp @@ -45,14 +45,13 @@ #define KOKKOS_COMPLEX_HPP #include +#include #include +#include #include +#include #include -#ifdef KOKKOS_ENABLE_SYCL -#include -#endif - namespace Kokkos { /// \class complex @@ -220,10 +219,11 @@ class // Conditional noexcept, just in case RType throws on divide-by-zero KOKKOS_CONSTEXPR_14 KOKKOS_INLINE_FUNCTION complex& operator/=( const complex& y) noexcept(noexcept(RealType{} / RealType{})) { + using Kokkos::Experimental::fabs; // Scale (by the "1-norm" of y) to avoid unwarranted overflow. // If the real part is +/-Inf and the imaginary part is -/+Inf, // this won't change the result. - const RealType s = std::fabs(y.real()) + std::fabs(y.imag()); + const RealType s = fabs(y.real()) + fabs(y.imag()); // If s is 0, then y is zero, so x/y == real(x)/0 + i*imag(x)/0. // In that case, the relation x/y == (x/s) / (y/s) doesn't hold, @@ -248,10 +248,11 @@ class KOKKOS_INLINE_FUNCTION complex& operator/=( const std::complex& y) noexcept(noexcept(RealType{} / RealType{})) { + using Kokkos::Experimental::fabs; // Scale (by the "1-norm" of y) to avoid unwarranted overflow. // If the real part is +/-Inf and the imaginary part is -/+Inf, // this won't change the result. - const RealType s = std::fabs(y.real()) + std::fabs(y.imag()); + const RealType s = fabs(y.real()) + fabs(y.imag()); // If s is 0, then y is zero, so x/y == real(x)/0 + i*imag(x)/0. // In that case, the relation x/y == (x/s) / (y/s) doesn't hold, @@ -693,35 +694,96 @@ KOKKOS_INLINE_FUNCTION RealType real(const complex& x) noexcept { return x.real(); } +//! Constructs a complex number from magnitude and phase angle +template +KOKKOS_INLINE_FUNCTION complex polar(const T& r, const T& theta = T()) { + using Kokkos::Experimental::cos; + using Kokkos::Experimental::sin; + KOKKOS_EXPECTS(r >= 0); + return complex(r * cos(theta), r * sin(theta)); +} + //! Absolute value (magnitude) of a complex number. template KOKKOS_INLINE_FUNCTION RealType abs(const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::hypot; -#else - using std::hypot; -#endif + using Kokkos::Experimental::hypot; return hypot(x.real(), x.imag()); } //! Power of a complex number -template -KOKKOS_INLINE_FUNCTION Kokkos::complex pow(const complex& x, - const RealType& e) { - RealType r = abs(x); -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::atan; - using cl::sycl::cos; - using cl::sycl::pow; - using cl::sycl::sin; -#else - using std::atan; - using std::cos; - using std::pow; - using std::sin; -#endif - RealType phi = atan(x.imag() / x.real()); - return pow(r, e) * Kokkos::complex(cos(phi * e), sin(phi * e)); +template +KOKKOS_INLINE_FUNCTION complex pow(const complex& x, const T& y) { + using Kokkos::Experimental::atan2; + using Kokkos::Experimental::pow; + T r = abs(x); + T theta = atan2(x.imag(), x.real()); + return polar(pow(r, y), y * theta); +} + +template +KOKKOS_INLINE_FUNCTION complex pow(const T& x, const complex& y) { + return pow(complex(x), y); +} + +template +KOKKOS_INLINE_FUNCTION complex pow(const complex& x, + const complex& y) { + using Kokkos::Experimental::log; + + return x == T() ? T() : exp(y * log(x)); +} + +namespace Impl { +// NOTE promote would also be useful for math functions +template ::value> +struct promote { + using type = double; +}; +template +struct promote {}; +template <> +struct promote { + using type = long double; +}; +template <> +struct promote { + using type = double; +}; +template <> +struct promote { + using type = float; +}; +template +using promote_t = typename promote::type; +template +struct promote_2 { + using type = decltype(promote_t() + promote_t()); +}; +template +using promote_2_t = typename promote_2::type; +} // namespace Impl + +template ::value>> +KOKKOS_INLINE_FUNCTION complex> pow( + const T& x, const complex& y) { + using type = Impl::promote_2_t; + return pow(type(x), complex(y)); +} + +template ::value>> +KOKKOS_INLINE_FUNCTION complex> pow(const complex& x, + const U& y) { + using type = Impl::promote_2_t; + return pow(complex(x), type(y)); +} + +template +KOKKOS_INLINE_FUNCTION complex> pow( + const complex& x, const complex& y) { + using type = Impl::promote_2_t; + return pow(complex(x), complex(y)); } //! Square root of a complex number. This is intended to match the stdc++ @@ -729,26 +791,21 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex pow(const complex& x, template KOKKOS_INLINE_FUNCTION Kokkos::complex sqrt( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::abs; - using cl::sycl::sqrt; -#else - using std::abs; - using std::sqrt; -#endif + using Kokkos::Experimental::fabs; + using Kokkos::Experimental::sqrt; RealType r = x.real(); RealType i = x.imag(); if (r == RealType()) { - RealType t = sqrt(abs(i) / 2); + RealType t = sqrt(fabs(i) / 2); return Kokkos::complex(t, i < RealType() ? -t : t); } else { - RealType t = sqrt(2 * (abs(x) + abs(r))); + RealType t = sqrt(2 * (abs(x) + fabs(r))); RealType u = t / 2; - return r > RealType() - ? Kokkos::complex(u, i / t) - : Kokkos::complex(abs(i) / t, i < RealType() ? -u : u); + return r > RealType() ? Kokkos::complex(u, i / t) + : Kokkos::complex(fabs(i) / t, + i < RealType() ? -u : u); } } @@ -762,15 +819,9 @@ KOKKOS_INLINE_FUNCTION complex conj( //! Exponential of a complex number. template KOKKOS_INLINE_FUNCTION complex exp(const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::cos; - using cl::sycl::exp; - using cl::sycl::sin; -#else - using std::cos; - using std::exp; - using std::sin; -#endif + using Kokkos::Experimental::cos; + using Kokkos::Experimental::exp; + using Kokkos::Experimental::sin; return exp(x.real()) * complex(cos(x.imag()), sin(x.imag())); } @@ -778,14 +829,9 @@ KOKKOS_INLINE_FUNCTION complex exp(const complex& x) { template KOKKOS_INLINE_FUNCTION Kokkos::complex log( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::atan; - using cl::sycl::log; -#else - using std::atan; - using std::log; -#endif - RealType phi = atan(x.imag() / x.real()); + using Kokkos::Experimental::atan2; + using Kokkos::Experimental::log; + RealType phi = atan2(x.imag(), x.real()); return Kokkos::complex(log(abs(x)), phi); } @@ -793,17 +839,10 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex log( template KOKKOS_INLINE_FUNCTION Kokkos::complex sin( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::cos; - using cl::sycl::cosh; - using cl::sycl::sin; - using cl::sycl::sinh; -#else - using std::cos; - using std::cosh; - using std::sin; - using std::sinh; -#endif + using Kokkos::Experimental::cos; + using Kokkos::Experimental::cosh; + using Kokkos::Experimental::sin; + using Kokkos::Experimental::sinh; return Kokkos::complex(sin(x.real()) * cosh(x.imag()), cos(x.real()) * sinh(x.imag())); } @@ -812,17 +851,10 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex sin( template KOKKOS_INLINE_FUNCTION Kokkos::complex cos( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::cos; - using cl::sycl::cosh; - using cl::sycl::sin; - using cl::sycl::sinh; -#else - using std::cos; - using std::cosh; - using std::sin; - using std::sinh; -#endif + using Kokkos::Experimental::cos; + using Kokkos::Experimental::cosh; + using Kokkos::Experimental::sin; + using Kokkos::Experimental::sinh; return Kokkos::complex(cos(x.real()) * cosh(x.imag()), -sin(x.real()) * sinh(x.imag())); } @@ -838,17 +870,10 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex tan( template KOKKOS_INLINE_FUNCTION Kokkos::complex sinh( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::cos; - using cl::sycl::cosh; - using cl::sycl::sin; - using cl::sycl::sinh; -#else - using std::cos; - using std::cosh; - using std::sin; - using std::sinh; -#endif + using Kokkos::Experimental::cos; + using Kokkos::Experimental::cosh; + using Kokkos::Experimental::sin; + using Kokkos::Experimental::sinh; return Kokkos::complex(sinh(x.real()) * cos(x.imag()), cosh(x.real()) * sin(x.imag())); } @@ -857,17 +882,10 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex sinh( template KOKKOS_INLINE_FUNCTION Kokkos::complex cosh( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::cos; - using cl::sycl::cosh; - using cl::sycl::sin; - using cl::sycl::sinh; -#else - using std::cos; - using std::cosh; - using std::sin; - using std::sinh; -#endif + using Kokkos::Experimental::cos; + using Kokkos::Experimental::cosh; + using Kokkos::Experimental::sin; + using Kokkos::Experimental::sinh; return Kokkos::complex(cosh(x.real()) * cos(x.imag()), sinh(x.real()) * sin(x.imag())); } @@ -898,13 +916,8 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex acosh( template KOKKOS_INLINE_FUNCTION Kokkos::complex atanh( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::atan2; - using cl::sycl::log; -#else - using std::atan2; - using std::log; -#endif + using Kokkos::Experimental::atan2; + using Kokkos::Experimental::log; const RealType i2 = x.imag() * x.imag(); const RealType r = RealType(1.0) - i2 - x.real() * x.real(); @@ -933,12 +946,7 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex asin( template KOKKOS_INLINE_FUNCTION Kokkos::complex acos( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::acos; - -#else - using std::acos; -#endif + using Kokkos::Experimental::acos; Kokkos::complex t = asin(x); RealType pi_2 = acos(RealType(0.0)); return Kokkos::complex(pi_2 - t.real(), -t.imag()); @@ -948,13 +956,8 @@ KOKKOS_INLINE_FUNCTION Kokkos::complex acos( template KOKKOS_INLINE_FUNCTION Kokkos::complex atan( const complex& x) { -#ifdef KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_SYCL - using cl::sycl::atan2; - using cl::sycl::log; -#else - using std::atan2; - using std::log; -#endif + using Kokkos::Experimental::atan2; + using Kokkos::Experimental::log; const RealType r2 = x.real() * x.real(); const RealType i = RealType(1.0) - r2 - x.imag() * x.imag(); @@ -996,12 +999,13 @@ KOKKOS_INLINE_FUNCTION operator/(const complex& x, const complex& y) noexcept(noexcept(RealType1{} / RealType2{})) { + using Kokkos::Experimental::fabs; // Scale (by the "1-norm" of y) to avoid unwarranted overflow. // If the real part is +/-Inf and the imaginary part is -/+Inf, // this won't change the result. using common_real_type = typename std::common_type::type; - const common_real_type s = std::fabs(real(y)) + std::fabs(imag(y)); + const common_real_type s = fabs(real(y)) + fabs(imag(y)); // If s is 0, then y is zero, so x/y == real(x)/0 + i*imag(x)/0. // In that case, the relation x/y == (x/s) / (y/s) doesn't hold, @@ -1046,7 +1050,7 @@ std::istream& operator>>(std::istream& is, complex& x) { } template -struct reduction_identity > { +struct reduction_identity> { using t_red_ident = reduction_identity; KOKKOS_FORCEINLINE_FUNCTION constexpr static Kokkos::complex sum() noexcept { diff --git a/lib/kokkos/core/src/Kokkos_Core.hpp b/lib/kokkos/core/src/Kokkos_Core.hpp index 4dac463a66..c3771ab393 100644 --- a/lib/kokkos/core/src/Kokkos_Core.hpp +++ b/lib/kokkos/core/src/Kokkos_Core.hpp @@ -58,6 +58,7 @@ #include #include #include +#include #include #include #include @@ -86,6 +87,10 @@ struct InitArguments { int skip_device; bool disable_warnings; bool tune_internals; + bool tool_help = false; + std::string tool_lib = {}; + std::string tool_args = {}; + InitArguments(int nt = -1, int nn = -1, int dv = -1, bool dw = false, bool ti = false) : num_threads{nt}, @@ -139,6 +144,10 @@ void pre_initialize(const InitArguments& args); void post_initialize(const InitArguments& args); +void declare_configuration_metadata(const std::string& category, + const std::string& key, + const std::string& value); + } // namespace Impl bool is_initialized() noexcept; diff --git a/lib/kokkos/core/src/Kokkos_Core_fwd.hpp b/lib/kokkos/core/src/Kokkos_Core_fwd.hpp index 7502719c73..fe7eba3f6e 100644 --- a/lib/kokkos/core/src/Kokkos_Core_fwd.hpp +++ b/lib/kokkos/core/src/Kokkos_Core_fwd.hpp @@ -50,6 +50,7 @@ // and compiler environment then sets a collection of #define macros. #include +#include #include #include @@ -180,7 +181,6 @@ using DefaultHostExecutionSpace KOKKOS_IMPL_DEFAULT_HOST_EXEC_SPACE_ANNOTATION = // a given memory space. namespace Kokkos { - namespace Impl { #if defined(KOKKOS_ACTIVE_EXECUTION_MEMORY_SPACE_CUDA) && \ @@ -196,16 +196,22 @@ using ActiveExecutionMemorySpace = Kokkos::HostSpace; using ActiveExecutionMemorySpace = void; #endif -template -struct VerifyExecutionCanAccessMemorySpace { - enum { value = 0 }; +template +struct MemorySpaceAccess; + +template ::accessible> +struct verify_space { + KOKKOS_FUNCTION static void check() {} }; -template -struct VerifyExecutionCanAccessMemorySpace { - enum { value = 1 }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void *) {} +template +struct verify_space { + KOKKOS_FUNCTION static void check() { + Kokkos::abort( + "Kokkos::View ERROR: attempt to access inaccessible memory space"); + }; }; // Base class for exec space initializer factories @@ -220,13 +226,13 @@ class LogicalMemorySpace; } // namespace Kokkos -#define KOKKOS_RESTRICT_EXECUTION_TO_DATA(DATA_SPACE, DATA_PTR) \ - Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< \ - Kokkos::Impl::ActiveExecutionMemorySpace, DATA_SPACE>::verify(DATA_PTR) +#define KOKKOS_RESTRICT_EXECUTION_TO_DATA(DATA_SPACE, DATA_PTR) \ + Kokkos::Impl::verify_space::check(); -#define KOKKOS_RESTRICT_EXECUTION_TO_(DATA_SPACE) \ - Kokkos::Impl::VerifyExecutionCanAccessMemorySpace< \ - Kokkos::Impl::ActiveExecutionMemorySpace, DATA_SPACE>::verify() +#define KOKKOS_RESTRICT_EXECUTION_TO_(DATA_SPACE) \ + Kokkos::Impl::verify_space::check(); //---------------------------------------------------------------------------- @@ -256,8 +262,7 @@ template struct ViewCopy; -template +template struct FunctorPolicyExecutionSpace; //---------------------------------------------------------------------------- diff --git a/lib/kokkos/core/src/Kokkos_Crs.hpp b/lib/kokkos/core/src/Kokkos_Crs.hpp index 4a573d82c0..1a10500b19 100644 --- a/lib/kokkos/core/src/Kokkos_Crs.hpp +++ b/lib/kokkos/core/src/Kokkos_Crs.hpp @@ -199,7 +199,7 @@ class CrsRowMapFromCounts { public: KOKKOS_INLINE_FUNCTION void operator()(index_type i, value_type& update, bool final_pass) const { - if (i < m_in.size()) { + if (i < static_cast(m_in.size())) { update += m_in(i); if (final_pass) m_out(i + 1) = update; } else if (final_pass) { diff --git a/lib/kokkos/core/src/Kokkos_Cuda.hpp b/lib/kokkos/core/src/Kokkos_Cuda.hpp index 81e11f3f12..7a218120bb 100644 --- a/lib/kokkos/core/src/Kokkos_Cuda.hpp +++ b/lib/kokkos/core/src/Kokkos_Cuda.hpp @@ -63,6 +63,7 @@ #include #include #include +#include /*--------------------------------------------------------------------------*/ @@ -198,16 +199,6 @@ class Cuda { Cuda(); - KOKKOS_FUNCTION Cuda(Cuda&& other) noexcept; - - KOKKOS_FUNCTION Cuda(const Cuda& other); - - KOKKOS_FUNCTION Cuda& operator=(Cuda&& other) noexcept; - - KOKKOS_FUNCTION Cuda& operator=(const Cuda& other); - - KOKKOS_FUNCTION ~Cuda() noexcept; - Cuda(cudaStream_t stream); //-------------------------------------------------------------------------- @@ -253,13 +244,12 @@ class Cuda { static const char* name(); inline Impl::CudaInternal* impl_internal_space_instance() const { - return m_space_instance; + return m_space_instance.get(); } uint32_t impl_instance_id() const noexcept { return 0; } private: - Impl::CudaInternal* m_space_instance; - int* m_counter; + Kokkos::Impl::HostSharedPtr m_space_instance; }; namespace Tools { @@ -319,38 +309,8 @@ struct MemorySpaceAccess -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = true }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void*) {} -}; - -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = false }; - inline static void verify(void) { CudaSpace::access_error(); } - inline static void verify(const void* p) { CudaSpace::access_error(p); } -}; - } // namespace Impl } // namespace Kokkos -/*--------------------------------------------------------------------------*/ -/*--------------------------------------------------------------------------*/ - -#include -#include -#include -#include -#include -#include -#include - -#include -//---------------------------------------------------------------------------- - #endif /* #if defined( KOKKOS_ENABLE_CUDA ) */ #endif /* #ifndef KOKKOS_CUDA_HPP */ diff --git a/lib/kokkos/core/src/Kokkos_CudaSpace.hpp b/lib/kokkos/core/src/Kokkos_CudaSpace.hpp index fc1c0e2f8a..e10fae93c7 100644 --- a/lib/kokkos/core/src/Kokkos_CudaSpace.hpp +++ b/lib/kokkos/core/src/Kokkos_CudaSpace.hpp @@ -53,8 +53,10 @@ #include #include #include +#include #include +#include #include @@ -119,8 +121,8 @@ class CudaSpace { /*--------------------------------*/ /** \brief Error reporting for HostSpace attempt to access CudaSpace */ - static void access_error(); - static void access_error(const void* const); + KOKKOS_DEPRECATED static void access_error(); + KOKKOS_DEPRECATED static void access_error(const void* const); private: int m_device; ///< Which Cuda device @@ -128,42 +130,6 @@ class CudaSpace { static constexpr const char* m_name = "Cuda"; friend class Kokkos::Impl::SharedAllocationRecord; }; - -namespace Impl { -/// \brief Initialize lock array for arbitrary size atomics. -/// -/// Arbitrary atomics are implemented using a hash table of locks -/// where the hash value is derived from the address of the -/// object for which an atomic operation is performed. -/// This function initializes the locks to zero (unset). -void init_lock_arrays_cuda_space(); - -/// \brief Retrieve the pointer to the lock array for arbitrary size atomics. -/// -/// Arbitrary atomics are implemented using a hash table of locks -/// where the hash value is derived from the address of the -/// object for which an atomic operation is performed. -/// This function retrieves the lock array pointer. -/// If the array is not yet allocated it will do so. -int* atomic_lock_array_cuda_space_ptr(bool deallocate = false); - -/// \brief Retrieve the pointer to the scratch array for team and thread private -/// global memory. -/// -/// Team and Thread private scratch allocations in -/// global memory are acquired via locks. -/// This function retrieves the lock array pointer. -/// If the array is not yet allocated it will do so. -int* scratch_lock_array_cuda_space_ptr(bool deallocate = false); - -/// \brief Retrieve the pointer to the scratch array for unique identifiers. -/// -/// Unique identifiers in the range 0-Cuda::concurrency -/// are provided via locks. -/// This function retrieves the lock array pointer. -/// If the array is not yet allocated it will do so. -int* threadid_lock_array_cuda_space_ptr(bool deallocate = false); -} // namespace Impl } // namespace Kokkos /*--------------------------------------------------------------------------*/ @@ -313,6 +279,11 @@ class CudaHostPinnedSpace { namespace Kokkos { namespace Impl { +cudaStream_t cuda_get_deep_copy_stream(); + +const std::unique_ptr& cuda_get_deep_copy_space( + bool initialize = true); + static_assert(Kokkos::Impl::MemorySpaceAccess::assignable, ""); @@ -784,104 +755,21 @@ struct DeepCopy { namespace Kokkos { namespace Impl { -/** Running in CudaSpace attempting to access HostSpace: error */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = false }; - KOKKOS_INLINE_FUNCTION static void verify(void) { - Kokkos::abort("Cuda code attempted to access HostSpace memory"); - } - - KOKKOS_INLINE_FUNCTION static void verify(const void*) { - Kokkos::abort("Cuda code attempted to access HostSpace memory"); - } -}; - -/** Running in CudaSpace accessing CudaUVMSpace: ok */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = true }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void*) {} -}; - -/** Running in CudaSpace accessing CudaHostPinnedSpace: ok */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = true }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void*) {} -}; - -/** Running in CudaSpace attempting to access an unknown space: error */ -template -struct VerifyExecutionCanAccessMemorySpace< - typename std::enable_if::value, - Kokkos::CudaSpace>::type, - OtherSpace> { - enum : bool { value = false }; - KOKKOS_INLINE_FUNCTION static void verify(void) { - Kokkos::abort("Cuda code attempted to access unknown Space memory"); - } - - KOKKOS_INLINE_FUNCTION static void verify(const void*) { - Kokkos::abort("Cuda code attempted to access unknown Space memory"); - } -}; - -//---------------------------------------------------------------------------- -/** Running in HostSpace attempting to access CudaSpace */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = false }; - inline static void verify(void) { CudaSpace::access_error(); } - inline static void verify(const void* p) { CudaSpace::access_error(p); } -}; - -/** Running in HostSpace accessing CudaUVMSpace is OK */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = true }; - inline static void verify(void) {} - inline static void verify(const void*) {} -}; - -/** Running in HostSpace accessing CudaHostPinnedSpace is OK */ -template <> -struct VerifyExecutionCanAccessMemorySpace { - enum : bool { value = true }; - KOKKOS_INLINE_FUNCTION static void verify(void) {} - KOKKOS_INLINE_FUNCTION static void verify(const void*) {} -}; - -} // namespace Impl -} // namespace Kokkos - -//---------------------------------------------------------------------------- -//---------------------------------------------------------------------------- - -namespace Kokkos { -namespace Impl { - template <> class SharedAllocationRecord - : public SharedAllocationRecord { + : public HostInaccessibleSharedAllocationRecordCommon { private: friend class SharedAllocationRecord; + friend class SharedAllocationRecordCommon; + friend class HostInaccessibleSharedAllocationRecordCommon; using RecordBase = SharedAllocationRecord; + using base_t = + HostInaccessibleSharedAllocationRecordCommon; SharedAllocationRecord(const SharedAllocationRecord&) = delete; SharedAllocationRecord& operator=(const SharedAllocationRecord&) = delete; - static void deallocate(RecordBase*); - static ::cudaTextureObject_t attach_texture_object( const unsigned sizeof_alias, void* const alloc_ptr, const size_t alloc_size); @@ -890,39 +778,19 @@ class SharedAllocationRecord static RecordBase s_root_record; #endif - ::cudaTextureObject_t m_tex_obj; + ::cudaTextureObject_t m_tex_obj = 0; const Kokkos::CudaSpace m_space; protected: ~SharedAllocationRecord(); - SharedAllocationRecord() : RecordBase(), m_tex_obj(0), m_space() {} + SharedAllocationRecord() = default; SharedAllocationRecord( const Kokkos::CudaSpace& arg_space, const std::string& arg_label, const size_t arg_alloc_size, - const RecordBase::function_type arg_dealloc = &deallocate); + const RecordBase::function_type arg_dealloc = &base_t::deallocate); public: - std::string get_label() const; - - static SharedAllocationRecord* allocate(const Kokkos::CudaSpace& arg_space, - const std::string& arg_label, - const size_t arg_alloc_size); - - /**\brief Allocate tracked memory in the space */ - static void* allocate_tracked(const Kokkos::CudaSpace& arg_space, - const std::string& arg_label, - const size_t arg_alloc_size); - - /**\brief Reallocate tracked memory in the space */ - static void* reallocate_tracked(void* const arg_alloc_ptr, - const size_t arg_alloc_size); - - /**\brief Deallocate tracked memory in the space */ - static void deallocate_tracked(void* const arg_alloc_ptr); - - static SharedAllocationRecord* get_record(void* arg_alloc_ptr); - template inline ::cudaTextureObject_t attach_texture_object() { static_assert((std::is_same::value || @@ -945,57 +813,35 @@ class SharedAllocationRecord // Texture object is attached to the entire allocation range return ptr - reinterpret_cast(RecordBase::m_alloc_ptr); } - - static void print_records(std::ostream&, const Kokkos::CudaSpace&, - bool detail = false); }; template <> class SharedAllocationRecord - : public SharedAllocationRecord { + : public SharedAllocationRecordCommon { private: + friend class SharedAllocationRecordCommon; + + using base_t = SharedAllocationRecordCommon; using RecordBase = SharedAllocationRecord; SharedAllocationRecord(const SharedAllocationRecord&) = delete; SharedAllocationRecord& operator=(const SharedAllocationRecord&) = delete; - static void deallocate(RecordBase*); - static RecordBase s_root_record; - ::cudaTextureObject_t m_tex_obj; + ::cudaTextureObject_t m_tex_obj = 0; const Kokkos::CudaUVMSpace m_space; protected: ~SharedAllocationRecord(); - SharedAllocationRecord() : RecordBase(), m_tex_obj(0), m_space() {} + SharedAllocationRecord() = default; SharedAllocationRecord( const Kokkos::CudaUVMSpace& arg_space, const std::string& arg_label, const size_t arg_alloc_size, - const RecordBase::function_type arg_dealloc = &deallocate); + const RecordBase::function_type arg_dealloc = &base_t::deallocate); public: - std::string get_label() const; - - static SharedAllocationRecord* allocate(const Kokkos::CudaUVMSpace& arg_space, - const std::string& arg_label, - const size_t arg_alloc_size); - - /**\brief Allocate tracked memory in the space */ - static void* allocate_tracked(const Kokkos::CudaUVMSpace& arg_space, - const std::string& arg_label, - const size_t arg_alloc_size); - - /**\brief Reallocate tracked memory in the space */ - static void* reallocate_tracked(void* const arg_alloc_ptr, - const size_t arg_alloc_size); - - /**\brief Deallocate tracked memory in the space */ - static void deallocate_tracked(void* const arg_alloc_ptr); - - static SharedAllocationRecord* get_record(void* arg_alloc_ptr); - template inline ::cudaTextureObject_t attach_texture_object() { static_assert((std::is_same::value || @@ -1019,57 +865,32 @@ class SharedAllocationRecord // Texture object is attached to the entire allocation range return ptr - reinterpret_cast(RecordBase::m_alloc_ptr); } - - static void print_records(std::ostream&, const Kokkos::CudaUVMSpace&, - bool detail = false); }; template <> class SharedAllocationRecord - : public SharedAllocationRecord { + : public SharedAllocationRecordCommon { private: + friend class SharedAllocationRecordCommon; + using RecordBase = SharedAllocationRecord; + using base_t = SharedAllocationRecordCommon; SharedAllocationRecord(const SharedAllocationRecord&) = delete; SharedAllocationRecord& operator=(const SharedAllocationRecord&) = delete; - static void deallocate(RecordBase*); - static RecordBase s_root_record; const Kokkos::CudaHostPinnedSpace m_space; protected: ~SharedAllocationRecord(); - SharedAllocationRecord() : RecordBase(), m_space() {} + SharedAllocationRecord() = default; SharedAllocationRecord( const Kokkos::CudaHostPinnedSpace& arg_space, const std::string& arg_label, const size_t arg_alloc_size, const RecordBase::function_type arg_dealloc = &deallocate); - - public: - std::string get_label() const; - - static SharedAllocationRecord* allocate( - const Kokkos::CudaHostPinnedSpace& arg_space, - const std::string& arg_label, const size_t arg_alloc_size); - /**\brief Allocate tracked memory in the space */ - static void* allocate_tracked(const Kokkos::CudaHostPinnedSpace& arg_space, - const std::string& arg_label, - const size_t arg_alloc_size); - - /**\brief Reallocate tracked memory in the space */ - static void* reallocate_tracked(void* const arg_alloc_ptr, - const size_t arg_alloc_size); - - /**\brief Deallocate tracked memory in the space */ - static void deallocate_tracked(void* const arg_alloc_ptr); - - static SharedAllocationRecord* get_record(void* arg_alloc_ptr); - - static void print_records(std::ostream&, const Kokkos::CudaHostPinnedSpace&, - bool detail = false); }; } // namespace Impl diff --git a/lib/kokkos/core/src/Kokkos_ExecPolicy.hpp b/lib/kokkos/core/src/Kokkos_ExecPolicy.hpp index 3afe081701..55aed13670 100644 --- a/lib/kokkos/core/src/Kokkos_ExecPolicy.hpp +++ b/lib/kokkos/core/src/Kokkos_ExecPolicy.hpp @@ -856,11 +856,12 @@ KOKKOS_INLINE_FUNCTION_DELETED Impl::ThreadVectorRangeBoundariesStruct ThreadVectorRange(const TeamMemberType&, const iType& count) = delete; -template -KOKKOS_INLINE_FUNCTION_DELETED - Impl::ThreadVectorRangeBoundariesStruct - ThreadVectorRange(const TeamMemberType&, const iType& arg_begin, - const iType& arg_end) = delete; +template +KOKKOS_INLINE_FUNCTION_DELETED Impl::ThreadVectorRangeBoundariesStruct< + typename std::common_type::type, TeamMemberType> +ThreadVectorRange(const TeamMemberType&, const iType1& arg_begin, + const iType2& arg_end) = delete; namespace Impl { @@ -902,85 +903,6 @@ struct ParallelConstructName { } // namespace Kokkos namespace Kokkos { -namespace Experimental { - -namespace Impl { -template -struct PolicyPropertyAdaptor; - -template class Policy, - class... Properties> -struct PolicyPropertyAdaptor, - Policy> { - using policy_in_t = Policy; - static_assert(is_execution_policy::value, ""); - using policy_out_t = Policy, - typename policy_in_t::traits::occupancy_control>; -}; - -template