pax_global_header00006660000000000000000000000064146536477170014536gustar00rootroot0000000000000052 comment=96532aa1dd803a800908466bdd0c906660c33c96 orex-supercell-96532aa/000077500000000000000000000000001465364771700150435ustar00rootroot00000000000000orex-supercell-96532aa/.github/000077500000000000000000000000001465364771700164035ustar00rootroot00000000000000orex-supercell-96532aa/.github/workflows/000077500000000000000000000000001465364771700204405ustar00rootroot00000000000000orex-supercell-96532aa/.github/workflows/supercell-cicd.yml000066400000000000000000000250261465364771700240660ustar00rootroot00000000000000name: Build jobs run-name: on: push: paths: - 'src/**' - 'lib/**' - '3rd_party/**' pull_request: branches: - master release: types: [published] jobs: build-develop-linux: strategy: fail-fast: false matrix: os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] compiler: [gcc, gcc-9, gcc-10, gcc-11, gcc-12, gcc-13, clang] include: - os: ubuntu-latest compiler: gcc - os: ubuntu-latest compiler: clang - os: ubuntu-20.04 compiler: clang-11 - os: ubuntu-22.04 compiler: clang-13 - os: ubuntu-24.04 compiler: gcc-14 exclude: - os: ubuntu-20.04 compiler: gcc-12 - os: ubuntu-20.04 compiler: gcc-13 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 with: submodules: true - name: Setup C++ uses: aminya/setup-cpp@v0.37.0 with: compiler: ${{ matrix.compiler }} cmake: true make: true - name: "Install dependencies" run: | sudo apt update && sudo apt install -y \ cmake build-essential libboost-test-dev libtbb-dev \ libarchive-dev libboost-program-options-dev libboost-filesystem-dev \ libboost-system-dev libeigen3-dev liblzma-dev libbz2-dev zlib1g-dev zip - name: "Compile supercell." run: cmake . -DCMAKE_BUILD_TYPE=Release && make supercell -j 4 - name: "Check supercell" run: 'src/sc_cli/supercell -d -i ./data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cif | grep -q "The total number of combinations is 6"' deploy-build-macos: strategy: fail-fast: false runs-on: macos-13 steps: - name: Set up Homebrew id: set-up-homebrew uses: Homebrew/actions/setup-homebrew@master - name: "Install brew dependencies" run: | brew install boost eigen libarchive zlib - name: "Get TBB" uses: actions/checkout@v4 with: repository: oneapi-src/oneTBB ref: v2021.13.0 path: ./tbb submodules: true - name: "Compile and install tbb" working-directory: ./tbb run: | cmake . -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DTBB_TEST=OFF make -j 4 sudo make install - uses: actions/checkout@v4 with: path: ./supercell submodules: true - name: "Compile supercell." working-directory: ./supercell run: | export PKG_CONFIG_PATH="/usr/local/opt/libarchive/lib/pkgconfig" cmake . -DCMAKE_BUILD_TYPE=Release -DLINK_STATIC_LIBS=ON -DLibArchive_INCLUDE_DIR=/usr/local/opt/libarchive/include && make supercell -j 4 - name: "Check supercell" working-directory: ./supercell run: 'src/sc_cli/supercell -d -i ./data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cif | grep -q "The total number of combinations is 6"' - name: "Check supercell dynamic libs." working-directory: ./supercell run: 'otool -l src/sc_cli/supercell' - name: Upload Supercell uses: actions/upload-artifact@v4 with: name: macos-bin path: ./supercell/src/sc_cli/supercell deploy-build-linux: strategy: fail-fast: false runs-on: ubuntu-20.04 steps: - name: "Clone supercell" uses: actions/checkout@v4 with: path: ./supercell submodules: true - name: "Clone oneTBB" uses: actions/checkout@v4 with: repository: oneapi-src/oneTBB ref: v2021.13.0 path: ./oneTBB submodules: true - name: "Compile supercell with deps" uses: addnab/docker-run-action@v3 with: image: ubuntu:18.04 options: -v ${{ github.workspace }}:/work run: | apt-get update && apt-get full-upgrade -y apt-get install -y software-properties-common wget tar cmake build-essential \ libboost-program-options-dev libboost-filesystem-dev libboost-test-dev \ libarchive-dev liblzma-dev libbz2-dev zlib1g-dev zip libboost-system-dev add-apt-repository ppa:git-core/ppa add-apt-repository ppa:ubuntu-toolchain-r/test apt-get update apt-get install -y git gcc-9 g++-9 export CC=gcc-9 export CXX=g++-9 export BASE_DIR="/work" mkdir ${BASE_DIR}/eigen && cd ${BASE_DIR}/eigen wget -nv https://gitlab.com/libeigen/eigen/-/archive/3.4.0/eigen-3.4.0.tar.gz -O - | tar -zxf - mkdir build && cd build cmake ../eigen-3.4.0 make install cd $BASE_DIR/oneTBB mkdir cmake-build && cd cmake-build cmake ../ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF -DTBB_TEST=OFF make -j 4 && make install wget -nv https://github.com/libarchive/libarchive/releases/download/v3.7.4/libarchive-3.7.4.tar.gz -O - | tar -zxf - cd libarchive-3.7.4 ./configure --without-openssl --without-libb2 --without-xml2 --without-expat --disable-bsdtar sed -ir '/^.*#define HAVE_LZMA_STREAM_ENCODER_MT 1.*$/d' config.h make -j 4 make install cd $BASE_DIR/supercell cmake . -DCMAKE_BUILD_TYPE=Release -DLINK_STATIC_LIBS=ON && make supercell -j 4 $BASE_DIR/supercell/src/sc_cli/supercell -d -i $BASE_DIR/supercell/data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cif | grep -q "The total number of combinations is 6" - name: Upload Supercell uses: actions/upload-artifact@v4 with: name: linux-bin path: ./supercell/src/sc_cli/supercell deploy-build-windows: runs-on: ubuntu-22.04 steps: - name: "Install dependencies" run: | sudo apt update && sudo apt -y full-upgrade sudo apt install -y gcc cmake build-essential wine-stable autopoint gperf intltool libtool libtool-bin lzip p7zip-full python3 python3-mako - name: "Download MXE" uses: actions/checkout@v4 with: repository: mxe/mxe path: ./mxe submodules: true - name: Cache uses: actions/cache@v4 with: save-always: true path: ./mxe/.ccache key: win-cache-${{ github.run_id }} # Can use time based key as well restore-keys: | win-cache- - name: "Compile MXE" working-directory: ./mxe run: | sed -i -r 's/ nettle / /g' src/libarchive.mk && sed -i -r 's/with-nettle/without-nettle --without-openssl --without-iconv /g' src/libarchive.mk make MXE_TARGETS=x86_64-w64-mingw32.static MXE_PLUGIN_DIRS=plugins/gcc13 ccache echo 'max_size = 15.0G' > .ccache/ccache/ccache.conf .ccache/bin/ccache -s make MXE_TARGETS=x86_64-w64-mingw32.static MXE_PLUGIN_DIRS=plugins/gcc13 ccache cc cmake intel-tbb boost eigen libarchive --jobs=4 JOBS=4 .ccache/bin/ccache -s echo "${PWD}/usr/bin" >> $GITHUB_PATH - name: "Clone supercell" uses: actions/checkout@v4 with: path: ./supercell submodules: true - name: "Compile Supercell" working-directory: ./supercell run: | x86_64-w64-mingw32.static-cmake . -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Release -DBUILD_DOC=OFF -DLINK_STATIC_LIBS=ON make supercell - name: "Run supercell" working-directory: ./supercell run: 'wine64 src/sc_cli/supercell.exe -d -i ./data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cif | grep -q "The total number of combinations is 6"' - name: Upload Supercell uses: actions/upload-artifact@v4 with: name: windows-bin path: ./supercell/src/sc_cli/supercell.exe deploy-to-site: if: github.event_name == 'release' needs: [ deploy-build-linux, deploy-build-macos, deploy-build-windows ] runs-on: ubuntu-latest steps: - name: "Install dependencies" run: | sudo apt-get update && sudo apt-get full-upgrade -y sudo apt-get update sudo apt-get install -y git wget tar openssh-client zip - uses: actions/download-artifact@v4 with: name: linux-bin path: ./art/linux - uses: actions/download-artifact@v4 with: name: windows-bin path: ./art/windows - uses: actions/download-artifact@v4 with: name: macos-bin path: ./art/osx - name: "Deploy to file" env: SITE_REPO_KEY: ${{ secrets.DEPLOY_KEY }} run: | mkdir ./site && cd ./site # Save some useful information ART_DIR=${PWD}/../art/ DEPLOY_REPO="git@github.com:orex/orex.github.io.git" DEPLOY_BRANCH="master" DEPLOY_DIR="supercell/external" # mkdir ~/.ssh eval `ssh-agent -s` echo "${SITE_REPO_KEY}" | ssh-add - ssh-keyscan -t rsa github.com > ~/.ssh/known_hosts # Clone the existing gh-pages for this repo into out/ # Create a new empty branch if gh-pages doesn't exist yet (should only happen on first deply) git clone --recurse-submodules "${DEPLOY_REPO}" --branch "${DEPLOY_BRANCH}" out && cd out REPO_PATH=${PWD} # Now let's go have some fun with the cloned repo git config user.name "Github Action" git config user.email "kirill.okhotnikov@gmail.com" #Main code mkdir -p "${REPO_PATH}/${DEPLOY_DIR}/exe/." cd `mktemp -d -t XXXXXX` wget -nv https://github.com/orex/supercell/raw/deploy/README -O README for i in ${ART_DIR}/* do cp -a "${i}"/* . OS=`basename "${i}"` if [[ "$OS" == "windows" ]]; then zip -9 supercell-$OS.zip README supercell.exe else chmod +x supercell tar czvf supercell-$OS.tar.gz README supercell fi rm -f supercell supercell.exe done cp -afv supercell-* "${REPO_PATH}/${DEPLOY_DIR}/exe/." cd ${REPO_PATH} ls -lah # Commit the "changes", i.e. the new version. # The delta will show diffs between new and old version git add --no-ignore-removal . git status git commit -m "Deploy to GitHub Pages: ${GITHUB_SHA}" # Now that we're all set up, we can push. git push $DEPLOY_REPO $DEPLOY_BRANCH orex-supercell-96532aa/.gitignore000066400000000000000000000014631465364771700170370ustar00rootroot00000000000000build/ nbproject/ tmp/ obsolete/ # Compiled Object files *.slo *.lo *.o # Compiled Dynamic libraries *.so *.dylib # Compiled Static libraries *.lai *.la *.a # Backup files *.backup *.*~ #doc compiled files doc/*/*.aux doc/*/*.log doc/*/*.out #examples output data/examples/*/out data/examples/alpha-SiGeO2/cell112 data/examples/beta-Li3PS4/Li3PS4_Li2_? data/examples/Cu2ZnSnSxSe4-x/cell111 data/examples/PbSnTe-SQS/SQS-1x1x2 data/examples/PbSnTe-SQS/SQS-1x2x2 data/examples/PbSnTe-SQS/cell_1x1x2/ data/examples/PbSnTe-SQS/cell_1x2x2/ data/examples/ice-Ih-adv/ice-Ih-cfgs-l1/ data/examples/ice-Ih-adv/ice-Ih-cfgs-l2/ data/examples/ice-Ih-adv/ice-Ih-cfgs-final/ data/examples/ice-Ih/ice-Ih-cfgs.anlz data/examples/ice-Ih/ice-Ih-cfgs/ data/examples/gamma-Fe2O3/cell1?3_out/ data/examples/Rb-PST-1/out #GULP gulp orex-supercell-96532aa/.gitmodules000066400000000000000000000004701465364771700172210ustar00rootroot00000000000000[submodule "libs/common_utils"] path = libs/common_utils url = https://github.com/orex/common_utils.git [submodule "3rd_party/gemmi"] path = 3rd_party/gemmi url = https://github.com/project-gemmi/gemmi.git [submodule "3rd_party/xxHash"] path = 3rd_party/xxHash url = https://github.com/Cyan4973/xxHash.git orex-supercell-96532aa/3rd_party/000077500000000000000000000000001465364771700167525ustar00rootroot00000000000000orex-supercell-96532aa/3rd_party/cmake/000077500000000000000000000000001465364771700200325ustar00rootroot00000000000000orex-supercell-96532aa/3rd_party/cmake/FindTBB.cmake000066400000000000000000000304321465364771700222460ustar00rootroot00000000000000# Obtained from Justus Calvin: # https://github.com/justusc/FindTBB/blob/25ecdea817b3af4a26d74ddcd439642dbd706acb/FindTBB.cmake # # With the following modifications: # * Move the "tbb" imported library target into a namespace as "TBB::tbb" to # conform to modern CMake conventions. # * Append "lib" as a library path suffix on all platforms. # # The MIT License (MIT) # # Copyright (c) 2015 Justus Calvin # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # FindTBB # ------- # # Find TBB include directories and libraries. # # Usage: # # find_package(TBB [major[.minor]] [EXACT] # [QUIET] [REQUIRED] # [[COMPONENTS] [components...]] # [OPTIONAL_COMPONENTS components...]) # # where the allowed components are tbbmalloc and tbb_preview. Users may modify # the behavior of this module with the following variables: # # * TBB_ROOT_DIR - The base directory the of TBB installation. # * TBB_INCLUDE_DIR - The directory that contains the TBB headers files. # * TBB_LIBRARY - The directory that contains the TBB library files. # * TBB__LIBRARY - The path of the TBB the corresponding TBB library. # These libraries, if specified, override the # corresponding library search results, where # may be tbb, tbb_debug, tbbmalloc, tbbmalloc_debug, # tbb_preview, or tbb_preview_debug. # * TBB_USE_DEBUG_BUILD - The debug version of tbb libraries, if present, will # be used instead of the release version. # # Users may modify the behavior of this module with the following environment # variables: # # * TBB_INSTALL_DIR # * TBBROOT # * LIBRARY_PATH # # This module will set the following variables: # # * TBB_FOUND - Set to false, or undefined, if we haven’t found, or # don’t want to use TBB. # * TBB__FOUND - If False, optional part of TBB sytem is # not available. # * TBB_VERSION - The full version string # * TBB_VERSION_MAJOR - The major version # * TBB_VERSION_MINOR - The minor version # * TBB_INTERFACE_VERSION - The interface version number defined in # tbb/tbb_stddef.h. # * TBB__LIBRARY_RELEASE - The path of the TBB release version of # , where may be tbb, tbb_debug, # tbbmalloc, tbbmalloc_debug, tbb_preview, or # tbb_preview_debug. # * TBB__LIBRARY_DEGUG - The path of the TBB release version of # , where may be tbb, tbb_debug, # tbbmalloc, tbbmalloc_debug, tbb_preview, or # tbb_preview_debug. # # The following varibles should be used to build and link with TBB: # # * TBB_INCLUDE_DIRS - The include directory for TBB. # * TBB_LIBRARIES - The libraries to link against to use TBB. # * TBB_LIBRARIES_RELEASE - The release libraries to link against to use TBB. # * TBB_LIBRARIES_DEBUG - The debug libraries to link against to use TBB. # * TBB_DEFINITIONS - Definitions to use when compiling code that uses # TBB. # * TBB_DEFINITIONS_RELEASE - Definitions to use when compiling release code that # uses TBB. # * TBB_DEFINITIONS_DEBUG - Definitions to use when compiling debug code that # uses TBB. # # This module will also create the "TBB::tbb" target that may be used when # building executables and libraries. include(FindPackageHandleStandardArgs) if(NOT TBB_FOUND) ################################## # Check the build type ################################## if(NOT DEFINED TBB_USE_DEBUG_BUILD) if(CMAKE_BUILD_TYPE MATCHES "(Debug|DEBUG|debug|RelWithDebInfo|RELWITHDEBINFO|relwithdebinfo)") set(TBB_BUILD_TYPE DEBUG) else() set(TBB_BUILD_TYPE RELEASE) endif() elseif(TBB_USE_DEBUG_BUILD) set(TBB_BUILD_TYPE DEBUG) else() set(TBB_BUILD_TYPE RELEASE) endif() ################################## # Set the TBB search directories ################################## # Define search paths based on user input and environment variables set(TBB_SEARCH_DIR ${TBB_ROOT_DIR} $ENV{TBB_INSTALL_DIR} $ENV{TBBROOT}) # Define the search directories based on the current platform if(CMAKE_SYSTEM_NAME STREQUAL "Windows") set(TBB_DEFAULT_SEARCH_DIR "C:/Program Files/Intel/TBB" "C:/Program Files (x86)/Intel/TBB") # Set the target architecture if(CMAKE_SIZEOF_VOID_P EQUAL 8) set(TBB_ARCHITECTURE "intel64") else() set(TBB_ARCHITECTURE "ia32") endif() # Set the TBB search library path search suffix based on the version of VC if(WINDOWS_STORE) set(TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc11_ui") elseif(MSVC14) set(TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc14") elseif(MSVC12) set(TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc12") elseif(MSVC11) set(TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc11") elseif(MSVC10) set(TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc10") endif() # Add the library path search suffix for the VC independent version of TBB list(APPEND TBB_LIB_PATH_SUFFIX "lib/${TBB_ARCHITECTURE}/vc_mt") elseif(CMAKE_SYSTEM_NAME STREQUAL "Darwin") # OS X set(TBB_DEFAULT_SEARCH_DIR "/opt/intel/tbb") # TODO: Check to see which C++ library is being used by the compiler. if(NOT ${CMAKE_SYSTEM_VERSION} VERSION_LESS 13.0) # The default C++ library on OS X 10.9 and later is libc++ set(TBB_LIB_PATH_SUFFIX "lib/libc++") endif() elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux") # Linux set(TBB_DEFAULT_SEARCH_DIR "/opt/intel/tbb") # TODO: Check compiler version to see the suffix should be /gcc4.1 or # /gcc4.1. For now, assume that the compiler is more recent than # gcc 4.4.x or later. if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") set(TBB_LIB_PATH_SUFFIX "lib/intel64/gcc4.4") elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^i.86$") set(TBB_LIB_PATH_SUFFIX "lib/ia32/gcc4.4") endif() endif() # The above TBB_LIB_PATH_SUFFIX is based on where Intel puts the libraries # in the package of prebuilt libraries it distributes. However, users may # install these shared libraries into the more conventional "lib" directory # (especially when building from source), so we add that as an additional # location to search. list(APPEND TBB_LIB_PATH_SUFFIX "lib") ################################## # Find the TBB include dir ################################## find_path(TBB_INCLUDE_DIRS tbb/tbb.h HINTS ${TBB_INCLUDE_DIR} ${TBB_SEARCH_DIR} PATHS ${TBB_DEFAULT_SEARCH_DIR} PATH_SUFFIXES include) ################################## # Set version strings ################################## if(TBB_INCLUDE_DIRS) file(READ "${TBB_INCLUDE_DIRS}/tbb/tbb_stddef.h" _tbb_version_file) string(REGEX REPLACE ".*#define TBB_VERSION_MAJOR ([0-9]+).*" "\\1" TBB_VERSION_MAJOR "${_tbb_version_file}") string(REGEX REPLACE ".*#define TBB_VERSION_MINOR ([0-9]+).*" "\\1" TBB_VERSION_MINOR "${_tbb_version_file}") string(REGEX REPLACE ".*#define TBB_INTERFACE_VERSION ([0-9]+).*" "\\1" TBB_INTERFACE_VERSION "${_tbb_version_file}") set(TBB_VERSION "${TBB_VERSION_MAJOR}.${TBB_VERSION_MINOR}") endif() ################################## # Find TBB components ################################## if(TBB_VERSION VERSION_LESS 4.3) set(TBB_SEARCH_COMPOMPONENTS tbb_preview tbbmalloc tbb) else() set(TBB_SEARCH_COMPOMPONENTS tbb_preview tbbmalloc_proxy tbbmalloc tbb) endif() # Find each component foreach(_comp ${TBB_SEARCH_COMPOMPONENTS}) if(";${TBB_FIND_COMPONENTS};tbb;" MATCHES ";${_comp};") # Search for the libraries find_library(TBB_${_comp}_LIBRARY_RELEASE ${_comp} HINTS ${TBB_LIBRARY} ${TBB_SEARCH_DIR} PATHS ${TBB_DEFAULT_SEARCH_DIR} ENV LIBRARY_PATH PATH_SUFFIXES ${TBB_LIB_PATH_SUFFIX}) find_library(TBB_${_comp}_LIBRARY_DEBUG ${_comp}_debug HINTS ${TBB_LIBRARY} ${TBB_SEARCH_DIR} PATHS ${TBB_DEFAULT_SEARCH_DIR} ENV LIBRARY_PATH PATH_SUFFIXES ${TBB_LIB_PATH_SUFFIX}) if(TBB_${_comp}_LIBRARY_DEBUG) list(APPEND TBB_LIBRARIES_DEBUG "${TBB_${_comp}_LIBRARY_DEBUG}") endif() if(TBB_${_comp}_LIBRARY_RELEASE) list(APPEND TBB_LIBRARIES_RELEASE "${TBB_${_comp}_LIBRARY_RELEASE}") endif() if(TBB_${_comp}_LIBRARY_${TBB_BUILD_TYPE} AND NOT TBB_${_comp}_LIBRARY) set(TBB_${_comp}_LIBRARY "${TBB_${_comp}_LIBRARY_${TBB_BUILD_TYPE}}") endif() if(TBB_${_comp}_LIBRARY AND EXISTS "${TBB_${_comp}_LIBRARY}") set(TBB_${_comp}_FOUND TRUE) else() set(TBB_${_comp}_FOUND FALSE) endif() # Mark internal variables as advanced mark_as_advanced(TBB_${_comp}_LIBRARY_RELEASE) mark_as_advanced(TBB_${_comp}_LIBRARY_DEBUG) mark_as_advanced(TBB_${_comp}_LIBRARY) endif() endforeach() ################################## # Set compile flags and libraries ################################## set(TBB_DEFINITIONS_RELEASE "") set(TBB_DEFINITIONS_DEBUG "-DTBB_USE_DEBUG=1") if(TBB_LIBRARIES_${TBB_BUILD_TYPE}) set(TBB_DEFINITIONS "${TBB_DEFINITIONS_${TBB_BUILD_TYPE}}") set(TBB_LIBRARIES "${TBB_LIBRARIES_${TBB_BUILD_TYPE}}") elseif(TBB_LIBRARIES_RELEASE) set(TBB_DEFINITIONS "${TBB_DEFINITIONS_RELEASE}") set(TBB_LIBRARIES "${TBB_LIBRARIES_RELEASE}") elseif(TBB_LIBRARIES_DEBUG) set(TBB_DEFINITIONS "${TBB_DEFINITIONS_DEBUG}") set(TBB_LIBRARIES "${TBB_LIBRARIES_DEBUG}") endif() find_package_handle_standard_args(TBB REQUIRED_VARS TBB_INCLUDE_DIRS TBB_LIBRARIES HANDLE_COMPONENTS VERSION_VAR TBB_VERSION) ################################## # Create targets ################################## if(NOT CMAKE_VERSION VERSION_LESS 3.0 AND TBB_FOUND) add_library(TBB::tbb SHARED IMPORTED) set_target_properties(TBB::tbb PROPERTIES INTERFACE_INCLUDE_DIRECTORIES ${TBB_INCLUDE_DIRS} IMPORTED_LOCATION ${TBB_LIBRARIES}) if(TBB_LIBRARIES_RELEASE AND TBB_LIBRARIES_DEBUG) set_target_properties(TBB::tbb PROPERTIES INTERFACE_COMPILE_DEFINITIONS "$<$,$>:TBB_USE_DEBUG=1>" IMPORTED_LOCATION_DEBUG ${TBB_LIBRARIES_DEBUG} IMPORTED_LOCATION_RELWITHDEBINFO ${TBB_LIBRARIES_DEBUG} IMPORTED_LOCATION_RELEASE ${TBB_LIBRARIES_RELEASE} IMPORTED_LOCATION_MINSIZEREL ${TBB_LIBRARIES_RELEASE} ) elseif(TBB_LIBRARIES_RELEASE) set_target_properties(TBB::tbb PROPERTIES IMPORTED_LOCATION ${TBB_LIBRARIES_RELEASE}) else() set_target_properties(TBB::tbb PROPERTIES INTERFACE_COMPILE_DEFINITIONS "${TBB_DEFINITIONS_DEBUG}" IMPORTED_LOCATION ${TBB_LIBRARIES_DEBUG} ) endif() endif() mark_as_advanced(TBB_INCLUDE_DIRS TBB_LIBRARIES) unset(TBB_ARCHITECTURE) unset(TBB_BUILD_TYPE) unset(TBB_LIB_PATH_SUFFIX) unset(TBB_DEFAULT_SEARCH_DIR) endif() orex-supercell-96532aa/3rd_party/gemmi/000077500000000000000000000000001465364771700200505ustar00rootroot00000000000000orex-supercell-96532aa/3rd_party/xxHash/000077500000000000000000000000001465364771700202155ustar00rootroot00000000000000orex-supercell-96532aa/CMakeLists.txt000066400000000000000000000020331465364771700176010ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.6 FATAL_ERROR) project(supercell) include(FeatureSummary) set(CMAKE_CXX_STANDARD 14) option(BUILD_PROGRAM "Build supercell program" ON) option(BUILD_DOC "Build supercell manual and tutorial" ON) if (BUILD_PROGRAM) if (CMAKE_BUILD_TYPE STREQUAL "") set(CMAKE_BUILD_TYPE Release) endif (CMAKE_BUILD_TYPE STREQUAL "") set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall -Wno-sign-compare -Wextra ") option(LINK_STATIC_LIBS "Build project with static libs" OFF) if (${CMAKE_COMPILER_IS_GNUCXX}) if (${LINK_STATIC_LIBS}) if(NOT WIN32) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++ -fuse-ld=gold -Wl,--no-gnu-unique") else() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++ ") endif() set(CMAKE_FIND_LIBRARY_SUFFIXES ".a") endif () endif () include_directories(${CMAKE_CURRENT_SOURCE_DIR}) add_subdirectory(src) endif (BUILD_PROGRAM) if(BUILD_DOC) add_subdirectory(doc) endif(BUILD_DOC) orex-supercell-96532aa/INSTALL000066400000000000000000000024731465364771700161020ustar00rootroot00000000000000You can find a compiled program for recent 64 bits Linux, MacOS and Windows at https://orex.github.io/supercell/ site. Users of ArchLinux can install the program from package https://aur.archlinux.org/packages/supercell-git/ but the package from 2021-02-10 contains an old version of supercell program. Superquick installation (Ubuntu 18.04 or higher). 1) (To compile program itself) sudo apt install libarchive-dev libboost-program-options-dev libboost-filesystem-dev \ libboost-random-dev libboost-system-dev libtbb-dev libeigen3-dev 2) (To compile manual and tutorial). sudo apt install lmodern texlive-extra-utils python3-pygments texlive-extra-utils \ texlive-latex-extra texlive-science texlive-humanities texlive-pstricks \ texlive-fonts-recommended 2) git clone --recursive https://github.com/orex/supercell.git && cd supercell && \ mkdir build && cd build && cmake ../ && make && sudo make install Dependencies: C++ compiler and linker, Boost 1.46 or higher, CMAKE 3.6 or higher, OpenBabel, Eigen 3.x, LibArchive (optionally). Perl and \LaTeX\ are needed to compile manual. It is good idea to check .travis.yml file, if you are working on Ubuntu/Debian. orex-supercell-96532aa/LICENSE000066400000000000000000000432721465364771700160600ustar00rootroot00000000000000GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. The program allows you to create regular structure supercell from cif file with partial occupancy and/or substitutions. Copyright (C) 2013 orex This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. {signature of Ty Coon}, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. orex-supercell-96532aa/README.md000066400000000000000000000012731465364771700163250ustar00rootroot00000000000000# Supercell program: a combinatorial structure-generation approach for the local-level modeling of atomic substitutions and partial occupancies in crystals. [![Build Status](https://travis-ci.org/orex/supercell.svg?branch=master)](https://travis-ci.org/orex/supercell) ### The supercell program paper (open-access): Okhotnikov, K., Charpentier, T., & Cadars, S. (2016). Supercell program: a combinatorial structure-generation approach for the local-level modeling of atomic substitutions and partial occupancies in crystals. Journal of Cheminformatics, 8(1), 17. http://jcheminf.springeropen.com/articles/10.1186/s13321-016-0129-3 ### Compiled program + manual: https://orex.github.io/supercell/ orex-supercell-96532aa/data/000077500000000000000000000000001465364771700157545ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/000077500000000000000000000000001465364771700175725ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/Ca2Al2SiO7/000077500000000000000000000000001465364771700212405ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cif000066400000000000000000000017241465364771700233750ustar00rootroot00000000000000data_Ca2Al2SiO7 _cell_length_a 7.716 _cell_length_b 7.716 _cell_length_c 5.089 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_volume 302.982 _symmetry_space_group_name_H-M 'P -4 21 m' _symmetry_int_tables_number 113 loop_ _space_group_symop_operation_xyz x,y,z 1/2-y,1/2-x,z y,-x,-z 1/2-x,1/2+y,-z -x,-y,z 1/2+y,1/2+x,z -y,x,-z 1/2+x,1/2-y,-z loop_ _atom_type_symbol _atom_type_oxidation_number Ca1 +2 AlT1 +3 AlT2 +3 SiT2 +4 O1 -2 O2 -2 O3 -2 loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Ca1 0.33750 0.16250 0.51100 1.00000 AlT1 0.00000 0.00000 0.00000 1.00000 AlT2 0.14310 0.35690 0.95280 0.50000 SiT2 0.14310 0.35690 0.95280 0.50000 O1 0.50000 0.00000 0.18840 1.00000 O2 0.14180 0.35820 0.28320 1.00000 O3 0.08720 0.17060 0.80330 1.00000 orex-supercell-96532aa/data/examples/Ca2Al2SiO7/Ca2Al2SiO7_abg.cif000066400000000000000000000037271465364771700242130ustar00rootroot00000000000000# CIF file generated by openbabel 2.3.90, see http://openbabel.sf.net data_I _chemical_name_common 'Supercell generated structure. E_col = 0' _cell_length_a 7.716 _cell_length_b 7.716 _cell_length_c 5.089 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _space_group_name_H-M_alt 'P 1' _space_group_name_Hall 'P 1' loop_ _symmetry_equiv_pos_as_xyz x,y,z loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy AlT1 Al 0.00000 0.00000 0.00000 1.000 AlT1 Al 0.50000 0.50000 0.00000 1.000 AlT2a Al 0.14310 0.35690 0.95280 0.500 SiT2a Si 0.14310 0.35690 0.95280 0.500 AlT2a Al 0.85690 0.64310 0.95280 0.500 SiT2a Si 0.85690 0.64310 0.95280 0.500 AlT2b Al 0.35690 0.85690 0.04720 0.500 SiT2b Si 0.35690 0.85690 0.04720 0.500 AlT2b Al 0.64310 0.14310 0.04720 0.500 SiT2b Si 0.64310 0.14310 0.04720 0.500 Ca1 Ca 0.33750 0.16250 0.51100 1.000 Ca1 Ca 0.66250 0.83750 0.51100 1.000 Ca1 Ca 0.16250 0.66250 0.48900 1.000 Ca1 Ca 0.83750 0.33750 0.48900 1.000 O1 O 0.50000 0.00000 0.18840 1.000 O1 O 0.00000 0.50000 0.81160 1.000 O2 O 0.14180 0.35820 0.28320 1.000 O2 O 0.85820 0.64180 0.28320 1.000 O2 O 0.35820 0.85820 0.71680 1.000 O2 O 0.64180 0.14180 0.71680 1.000 O3 O 0.08720 0.17060 0.80330 1.000 O3 O 0.91280 0.82940 0.80330 1.000 O3 O 0.17060 0.91280 0.19670 1.000 O3 O 0.82940 0.08720 0.19670 1.000 O3 O 0.41280 0.67060 0.19670 1.000 O3 O 0.58720 0.32940 0.19670 1.000 O3 O 0.32940 0.41280 0.80330 1.000 O3 O 0.67060 0.58720 0.80330 1.000 orex-supercell-96532aa/data/examples/Ca2Al2SiO7/README000066400000000000000000000010361465364771700221200ustar00rootroot00000000000000Disorder in gehlenite Ca2Al2SiO7 compound, based on lterature data Florian, P., Veron, E., Green, T. F. G., Yates, J. R., & Massiot, D. (2012). Elucidation of the Al/Si ordering in gehlenite Ca2Al2SiO7 by combined 29Si and 27Al NMR spectroscopy/quantum chemical calculations. Chemistry of Materials, 24(21), 4068–4079. doi:10.1021/cm3016935 Ca2Al2SiO7.cif - initial structure. Ca2Al2SiO7_abg.cif - modified structure for large supercell permutations calculations. Supercell should be installed. See Supporting materials for details. orex-supercell-96532aa/data/examples/CaAl6Te10/000077500000000000000000000000001465364771700211125ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/CaAl6Te10/CaAl6Te10.cif000066400000000000000000000032541465364771700231210ustar00rootroot00000000000000data_ _cell_length_a 10.28 _cell_length_b 10.28 _cell_length_c 10.28 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_volume 1086.374 _cell_formula_units_Z 2 _symmetry_space_group_name_H-M 'P 41 3 2' _symmetry_Int_Tables_number 213 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 'x,y,z' 2 '1/2-x,-y,1/2+z' 3 '1/2+x,1/2-y,-z' 4 '-x,1/2+y,1/2-z' 5 'z,x,y' 6 'y,z,x' 7 '1/2-z,-x,1/2+y' 8 '-y,1/2+z,1/2-x' 9 '1/2+z,1/2-x,-y' 10 '1/2-y,-z,1/2+x' 11 '-z,1/2+x,1/2-y' 12 '1/2+y,1/2-z,-x' 13 '3/4-y,3/4-x,3/4-z' 14 '3/4+y,1/4+x,1/4-z' 15 '1/4+y,1/4-x,3/4+z' 16 '1/4-y,3/4+x,1/4+z' 17 '3/4-x,3/4-z,3/4-y' 18 '3/4-z,3/4-y,3/4-x' 19 '3/4+x,1/4+z,1/4-y' 20 '1/4-z,3/4+y,1/4+x' 21 '1/4+x,1/4-z,3/4+y' 22 '3/4+z,1/4+y,1/4-x' 23 '1/4-x,3/4+z,1/4+y' 24 '1/4+z,1/4-y,3/4+x' loop_ _atom_type_symbol _atom_type_oxidation_number Al1 +3 Al2 +3 Ca1 +2 Te1 -2 Te2 -2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_symmetry_multiplicity _atom_site_Wyckoff_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Al1 Al1 24 . 0.272 0.953 0.1205 0.25 Al2 Al2 24 . 0.7426 0.7134 0.4445 0.25 Ca1 Ca1 4 . 0.375 0.375 0.375 0.5 Te1 Te1 12 . 0.125 0.1989 0.4489 1.0 Te2 Te2 8 . 0.0521 0.0521 0.0521 1.0 orex-supercell-96532aa/data/examples/Cu2ZnSnSxSe4-x/000077500000000000000000000000001465364771700221705ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/Cu2ZnSnSxSe4-x/README000066400000000000000000000020251465364771700230470ustar00rootroot00000000000000The example generates Table VII in: Dun, C., Holzwarth, N. a W., Li, Y., Huang, W., & Carroll, D. L. (2014). Cu2ZnSnSxO4-x and Cu2ZnSnSxSe4-x: First principles simulations of optimal alloy configurations and their energies. Journal of Applied Physics, 115(19). doi:10.1063/1.4876447 It will list the different configurations and their mutiplicity for different values of x. Supercell should be installed. Run script df_cfg.bash The order of table rows will not be the same as in the paper. The supercell commands used in this work are of the form: supercell -i stannite.cif -s 1x1x1 -p "S:p=3" -p "Se:p=5" -m -o [OUTPUT DIRECTORY]/stannite in which the populations of S and Se atoms on crystallographic sites "S" and "Se" (note that "S" and "Se" in the -p option refer to crystallographic labels rather than to atom symbols. More typical labels would be of the form "S1" and "Se1"). The multiplicity of this site in the cell being 8 and the supercell size being 1x1x1, the population values "p" should obey: p(S) <= 8 p(Se) = 8 - p(S) orex-supercell-96532aa/data/examples/Cu2ZnSnSxSe4-x/df_cfg.bash000077500000000000000000000006321465364771700242430ustar00rootroot00000000000000#!/bin/bash for i in {0..8} do mkdir -p cell111/S$i supercell -i stannite.cif -s 1x1x1 -p "S:p=$i" -p "Se:p=$((8-$i))" -m -o cell111/S$i/stannite-S$i > cell111/S$i/log.out & done wait echo -e "x\tg_i" for i in {0..8} do x=`echo $i | awk '{print $i/2}'` for j in cell111/S$i/stannite-S$i*.cif do gi=`echo $j | sed 's/ *cell[^ ]*w\([0-9]*\).cif */\1 /g'` echo -e "${x}\t${gi}" done done orex-supercell-96532aa/data/examples/Cu2ZnSnSxSe4-x/stannite.cif000066400000000000000000000043721465364771700245060ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2014-07-12 08:06:43 +0000 (Sat, 12 Jul 2014) $ #$Revision: 120115 $ #$URL: file:///home/coder/svn-repositories/cod/cif/9/00/47/9004745.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/. The original data for this entry # were provided the American Mineralogist Crystal Structure Database, # http://rruff.geo.arizona.edu/AMS/amcsd.php # # The file may be used within the scientific community so long as # proper attribution is given to the journal article from which the # data were obtained. # data_9004745 loop_ _publ_author_name 'Bonazzi, P.' 'Bindi, L.' 'Bernardini, G. P.' 'Menchetti, S.' _publ_section_title ; A model for the mechanism of incorporation of Cu, Fe and Zn in the stannite - kesterite series, Cu2FeSnS4 - Cu2ZnSnS4 Sample: Fe100 ; _journal_name_full 'The Canadian Mineralogist' _journal_page_first 639 _journal_page_last 647 _journal_volume 41 _journal_year 2003 _chemical_formula_sum 'Cu2 Fe S4 Sn' _chemical_name_mineral Stannite _space_group_IT_number 121 _symmetry_space_group_name_Hall 'I -4 2' _symmetry_space_group_name_H-M 'I -4 2 m' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_length_a 5.4495 _cell_length_b 5.4495 _cell_length_c 10.726 _cell_volume 318.531 _exptl_crystal_density_diffrn 4.482 _[local]_cod_chemical_formula_sum_orig 'Cu2 Fe Sn S4' _cod_database_code 9004745 loop_ _symmetry_equiv_pos_as_xyz x,y,z 1/2+x,1/2+y,1/2+z -y,-x,z 1/2-y,1/2-x,1/2+z y,-x,-z 1/2+y,1/2-x,1/2-z -x,y,-z 1/2-x,1/2+y,1/2-z -x,-y,z 1/2-x,1/2-y,1/2+z y,x,z 1/2+y,1/2+x,1/2+z -y,x,-z 1/2-y,1/2+x,1/2-z x,-y,-z 1/2+x,1/2-y,1/2-z loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Cu 0.00000 0.50000 0.25000 1.0 Fe 0.00000 0.00000 0.00000 1.0 Sn 0.00000 0.00000 0.50000 1.0 S 0.75581 0.75581 0.87012 0.5 Se 0.75581 0.75581 0.87012 0.5 orex-supercell-96532aa/data/examples/FeSbO4/000077500000000000000000000000001465364771700206145ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/FeSbO4/FeSbO4.cif000066400000000000000000000043301465364771700223210ustar00rootroot00000000000000data_99789-ICSD #2012 by Fachinformationszentrum Karlsruhe, and the U.S. Secretary of #Commerce on behalf of the United States. All rights reserved. _database_code_ICSD 99789 _audit_creation_date 2005/04/01 _chemical_name_systematic 'Iron(III) Antimony(V) Oxide' _chemical_formula_structural '(Fe Sb) O4' _chemical_formula_sum 'Fe1 O4 Sb1' _chemical_name_mineral Squawcreekite _publ_section_title ; Structural studies on synthetic and natural Fe - Sb - oxides of (M O2) - type ; loop_ _citation_id _citation_journal_abbrev _citation_year _citation_journal_volume _citation_journal_issue _citation_page_first _citation_page_last _citation_journal_id_ASTM primary 'Neues Jahrbuch fuer Mineralogie. Monatshefte (Band=Jahr) (1950-)' 2003 2003 9 407 420 NJMMAW _publ_author_name ; Basso, R.;Cabella, R.;Lucchetti, G.;Marescotti, P.;Martinelli, A. ; _cell_length_a 4.6334(1) _cell_length_b 4.6334(1) _cell_length_c 3.0728(1) _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_volume 65.97 _cell_formula_units_Z 1 _symmetry_space_group_name_H-M 'P 42/m n m' _symmetry_Int_Tables_number 136 _refine_ls_R_factor_all 0.024 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 '-y+1/2, x+1/2, -z+1/2' 2 'y+1/2, -x+1/2, -z+1/2' 3 'y, x, -z' 4 '-y, -x, -z' 5 'y+1/2, -x+1/2, z+1/2' 6 '-y+1/2, x+1/2, z+1/2' 7 '-y, -x, z' 8 'y, x, z' 9 'x+1/2, -y+1/2, -z+1/2' 10 '-x+1/2, y+1/2, -z+1/2' 11 'x, y, -z' 12 '-x, -y, -z' 13 '-x+1/2, y+1/2, z+1/2' 14 'x+1/2, -y+1/2, z+1/2' 15 '-x, -y, z' 16 'x, y, z' loop_ _atom_type_symbol _atom_type_oxidation_number Fe3+ 3 O2- -2 Sb5+ 5 loop_ _atom_site_label _atom_site_type_symbol _atom_site_symmetry_multiplicity _atom_site_Wyckoff_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_attached_hydrogens Fe1 Fe3+ 2 a 0 0 0 0.5 0 Sb1 Sb5+ 2 a 0 0 0 0.5 0 O1 O2- 4 f 0.3020(1) 0.3020(1) 0 1. 0 #End of data_99789-ICSD orex-supercell-96532aa/data/examples/FeSbO4/README000066400000000000000000000013671465364771700215030ustar00rootroot00000000000000********************************** FeSbO4 example ********************************** Description: The example generates Table 1 in supercell paper. Instructions: Supercell should be installed. Run script df_cfg.bash Results: The table is directly printed in the terminal. ********************************** Additional notes: The supercell commands used in this example are of the form: supercell -d -i FeSbO4.cif -s 2x2x1 -m Note that structures are not generated in this example. To generate structures: create an output directory: mkdir result_cell2x2x1/ and run the supercell command without the -d option and with the -o option : supercell -d -i FeSbO4.cif -s 2x2x1 -o result/FeSbO4 -m Results will be stored as: FeSbO4_ind[STRUCTURE INDEX].cif orex-supercell-96532aa/data/examples/FeSbO4/df_cfg.bash000077500000000000000000000024151465364771700226700ustar00rootroot00000000000000#!/bin/bash cells=( 1x1x1 1x1x2 1x1x3 1x1x4 2x2x1 2x2x2 2x2x3 2x3x3 ) #go through all the combination mkdir -p out for i in "${cells[@]}" do #The next line can be run in parallel (with & in the end), but for precise timing it run sequentially. /usr/bin/time -o out/cell_$i.time -f "%e" supercell -d -i FeSbO4.cif -s $i -m > out/cell_$i.out 2>/dev/null done #Calculating symmetry operations number. For case of huge number of permutations #(cells 2x3x3 3x3x3) the calculations can be done only with permutation group fixed. #Otherwise, the program exit before symmetry calculations. for i in "${cells[@]}" do #The program runs in parallel. supercell -d -i FeSbO4.cif -s $i -p "r((Fe1|Sb1)):fixed" -m > out/cell_${i}_sym.out 2>/dev/null & done wait echo -e "cell\tN_sym\tN_tot\t\t\tN_unq\tRun time, s" for i in "${cells[@]}" do N_sym=`grep -Po '[0-9]* symmetry operation found for supercell.' out/cell_${i}_sym.out | awk '{print $1}'` N_tot=`grep -Po '(?<=The total number of combinations is ).*' out/cell_$i.out` N_unq=`grep -Po '(?<=Combinations after merge: ).*' out/cell_$i.out` [[ -z "$N_unq" ]] && N_unq="N/A" RT=`head -n 1 out/cell_$i.time | grep '^[0-9\.][0-9\.]*$'` [[ -z "$RT" ]] && RT="N/A" echo -e "$i\t${N_sym}\t${N_tot}\t\t\t${N_unq}\t${RT}" done orex-supercell-96532aa/data/examples/MgAlFeO4/000077500000000000000000000000001465364771700210705ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/MgAlFeO4/MgAlFeO4.cif000066400000000000000000000135251465364771700230570ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2016-02-16 12:49:47 +0000 (Tue, 16 Feb 2016) $ #$Revision: 176465 $ #$URL: file:///home/coder/svn-repositories/cod/cif/9/00/72/9007271.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/. The original data for this entry # were provided the American Mineralogist Crystal Structure Database, # http://rruff.geo.arizona.edu/AMS/amcsd.php # # The file may be used within the scientific community so long as # proper attribution is given to the journal article from which the # data were obtained. # data_9007271 loop_ _publ_author_name 'Nakatsuka, A.' 'Ueno, H.' 'Nakayama, N.' 'Mizota, T.' 'Maekawa, H.' _publ_section_title ; Single-crystal X-ray diffraction study of cation distribution in MgAl2O4-MgFe2O4 spinel solid solution Sample: T = 23 C, x = 1.53 ; _journal_name_full 'Physics and Chemistry of Minerals' _journal_page_first 278 _journal_page_last 287 _journal_paper_doi 10.1007/s00269-004-0385-z _journal_volume 31 _journal_year 2004 _chemical_formula_sum 'Al0.47 Fe1.52 Mg O4' _chemical_name_mineral Magnesioferrite _space_group_IT_number 227 _symmetry_space_group_name_Hall '-F 4vw 2vw 3' _symmetry_space_group_name_H-M 'F d -3 m :2' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_length_a 8.3252 _cell_length_b 8.3252 _cell_length_c 8.3252 _cell_volume 577.011 _diffrn_ambient_temperature 296.15 _exptl_crystal_density_diffrn 4.279 _cod_original_sg_symbol_H-M 'F d 3 m' _cod_original_formula_sum 'Mg Al.47 Fe1.52 O4' _cod_database_code 9007271 loop_ _symmetry_equiv_pos_as_xyz x,y,z x,1/2+y,1/2+z 1/2+x,y,1/2+z 1/2+x,1/2+y,z 3/4+z,1/2-x,1/4+y 3/4+z,-x,3/4+y 1/4+z,1/2-x,3/4+y 1/4+z,-x,1/4+y 3/4-y,1/2+z,1/4-x 3/4-y,+z,3/4-x 1/4-y,1/2+z,3/4-x 1/4-y,+z,1/4-x 3/4+x,1/2-y,1/4+z 3/4+x,-y,3/4+z 1/4+x,1/2-y,3/4+z 1/4+x,-y,1/4+z 3/4-z,1/2+x,1/4-y 3/4-z,+x,3/4-y 1/4-z,1/2+x,3/4-y 1/4-z,+x,1/4-y 3/4+y,1/2-z,1/4+x 3/4+y,-z,3/4+x 1/4+y,1/2-z,3/4+x 1/4+y,-z,1/4+x 3/4-x,1/2+y,1/4-z 3/4-x,+y,3/4-z 1/4-x,1/2+y,3/4-z 1/4-x,+y,1/4-z 1/2+x,3/4-z,1/4-y 1/2+x,1/4-z,3/4-y +x,3/4-z,3/4-y +x,1/4-z,1/4-y 1/2-z,3/4+y,1/4+x 1/2-z,1/4+y,3/4+x -z,3/4+y,3/4+x -z,1/4+y,1/4+x 1/2+y,3/4-x,1/4-z 1/2+y,1/4-x,3/4-z +y,3/4-x,3/4-z +y,1/4-x,1/4-z 1/2-x,3/4+z,1/4+y 1/2-x,1/4+z,3/4+y -x,3/4+z,3/4+y -x,1/4+z,1/4+y 1/2+z,3/4-y,1/4-x 1/2+z,1/4-y,3/4-x +z,3/4-y,3/4-x +z,1/4-y,1/4-x 1/2-y,3/4+x,1/4+z 1/2-y,1/4+x,3/4+z -y,3/4+x,3/4+z -y,1/4+x,1/4+z x,1/2+z,1/2+y x,+z,+y 1/2+x,1/2+z,+y 1/2+x,+z,1/2+y -z,1/2-y,1/2-x -z,-y,-x 1/2-z,1/2-y,-x 1/2-z,-y,1/2-x y,1/2+x,1/2+z y,+x,+z 1/2+y,1/2+x,+z 1/2+y,+x,1/2+z -x,1/2-z,1/2-y -x,-z,-y 1/2-x,1/2-z,-y 1/2-x,-z,1/2-y z,1/2+y,1/2+x z,+y,+x 1/2+z,1/2+y,+x 1/2+z,+y,1/2+x -y,1/2-x,1/2-z -y,-x,-z 1/2-y,1/2-x,-z 1/2-y,-x,1/2-z 3/4+z,1/4+x,1/2-y 3/4+z,3/4+x,-y 1/4+z,1/4+x,-y 1/4+z,3/4+x,1/2-y 3/4-y,1/4-z,1/2+x 3/4-y,3/4-z,+x 1/4-y,1/4-z,+x 1/4-y,3/4-z,1/2+x 3/4+x,1/4+y,1/2-z 3/4+x,3/4+y,-z 1/4+x,1/4+y,-z 1/4+x,3/4+y,1/2-z 3/4-z,1/4-x,1/2+y 3/4-z,3/4-x,+y 1/4-z,1/4-x,+y 1/4-z,3/4-x,1/2+y 3/4+y,1/4+z,1/2-x 3/4+y,3/4+z,-x 1/4+y,1/4+z,-x 1/4+y,3/4+z,1/2-x 3/4-x,1/4-y,1/2+z 3/4-x,3/4-y,+z 1/4-x,1/4-y,+z 1/4-x,3/4-y,1/2+z -z,3/4+x,3/4+y -z,1/4+x,1/4+y 1/2-z,3/4+x,1/4+y 1/2-z,1/4+x,3/4+y y,3/4-z,3/4-x y,1/4-z,1/4-x 1/2+y,3/4-z,1/4-x 1/2+y,1/4-z,3/4-x -x,3/4+y,3/4+z -x,1/4+y,1/4+z 1/2-x,3/4+y,1/4+z 1/2-x,1/4+y,3/4+z z,3/4-x,3/4-y z,1/4-x,1/4-y 1/2+z,3/4-x,1/4-y 1/2+z,1/4-x,3/4-y -y,3/4+z,3/4+x -y,1/4+z,1/4+x 1/2-y,3/4+z,1/4+x 1/2-y,1/4+z,3/4+x x,3/4-y,3/4-z x,1/4-y,1/4-z 1/2+x,3/4-y,1/4-z 1/2+x,1/4-y,3/4-z 1/4-x,1/2+z,3/4-y 1/4-x,+z,1/4-y 3/4-x,1/2+z,1/4-y 3/4-x,+z,3/4-y 1/4+z,1/2-y,3/4+x 1/4+z,-y,1/4+x 3/4+z,1/2-y,1/4+x 3/4+z,-y,3/4+x 1/4-y,1/2+x,3/4-z 1/4-y,+x,1/4-z 3/4-y,1/2+x,1/4-z 3/4-y,+x,3/4-z 1/4+x,1/2-z,3/4+y 1/4+x,-z,1/4+y 3/4+x,1/2-z,1/4+y 3/4+x,-z,3/4+y 1/4-z,1/2+y,3/4-x 1/4-z,+y,1/4-x 3/4-z,1/2+y,1/4-x 3/4-z,+y,3/4-x 1/4+y,1/2-x,3/4+z 1/4+y,-x,1/4+z 3/4+y,1/2-x,1/4+z 3/4+y,-x,3/4+z 3/4-x,3/4-z,y 3/4-x,1/4-z,1/2+y 1/4-x,3/4-z,1/2+y 1/4-x,1/4-z,y 3/4+z,3/4+y,-x 3/4+z,1/4+y,1/2-x 1/4+z,3/4+y,1/2-x 1/4+z,1/4+y,-x 3/4-y,3/4-x,z 3/4-y,1/4-x,1/2+z 1/4-y,3/4-x,1/2+z 1/4-y,1/4-x,z 3/4+x,3/4+z,-y 3/4+x,1/4+z,1/2-y 1/4+x,3/4+z,1/2-y 1/4+x,1/4+z,-y 3/4-z,3/4-y,x 3/4-z,1/4-y,1/2+x 1/4-z,3/4-y,1/2+x 1/4-z,1/4-y,x 3/4+y,3/4+x,-z 3/4+y,1/4+x,1/2-z 1/4+y,3/4+x,1/2-z 1/4+y,1/4+x,-z -z,-x,-y -z,1/2-x,1/2-y 1/2-z,-x,1/2-y 1/2-z,1/2-x,-y y,z,x y,1/2+z,1/2+x 1/2+y,z,1/2+x 1/2+y,1/2+z,x -x,-y,-z -x,1/2-y,1/2-z 1/2-x,-y,1/2-z 1/2-x,1/2-y,-z z,x,y z,1/2+x,1/2+y 1/2+z,x,1/2+y 1/2+z,1/2+x,y -y,-z,-x -y,1/2-z,1/2-x 1/2-y,-z,1/2-x 1/2-y,1/2-z,-x loop_ _atom_site_aniso_label _atom_site_aniso_U_11 _atom_site_aniso_U_22 _atom_site_aniso_U_33 _atom_site_aniso_U_12 _atom_site_aniso_U_13 _atom_site_aniso_U_23 MgA 0.00685 0.00685 0.00685 0.00000 0.00000 0.00000 AlA 0.00685 0.00685 0.00685 0.00000 0.00000 0.00000 FeA 0.00685 0.00685 0.00685 0.00000 0.00000 0.00000 MgB 0.00727 0.00727 0.00727 -0.00035 -0.00035 -0.00035 AlB 0.00727 0.00727 0.00727 -0.00035 -0.00035 -0.00035 FeB 0.00727 0.00727 0.00727 -0.00035 -0.00035 -0.00035 O 0.01015 0.01015 0.01015 -0.00084 -0.00084 -0.00084 loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_U_iso_or_equiv MgA 0.12500 0.12500 0.12500 0.28000 0.00685 AlA 0.12500 0.12500 0.12500 0.05000 0.00685 FeA 0.12500 0.12500 0.12500 0.66000 0.00685 MgB 0.50000 0.50000 0.50000 0.36000 0.00726 AlB 0.50000 0.50000 0.50000 0.21000 0.00726 FeB 0.50000 0.50000 0.50000 0.43000 0.00726 O 0.25780 0.25780 0.25780 1.00000 0.01016 orex-supercell-96532aa/data/examples/MgAlFeO4/README000066400000000000000000000015621465364771700217540ustar00rootroot00000000000000********************************** MgAl_xFe_{2-x}O4 example ********************************** Description: MgAlFeO4.cif Input file for generation spinel derivative structures described in Instructions: To generate derivative structures for x=1.0 (97 SIC, cell 1x1x1) run mkdir out supercell `#program name` \ -i MgAlFeO4.cif `#Input file name` \ -p "MgA:p=8" `#Set A position occupied fully by Mg`\ -p "MgB:p=0" `#Remove Mg from B position` \ -p "AlB:p=8" `#Al and Fe atoms` \ -p "FeB:p=8" `#occupies position B equaly` \ -m `#Output only SIC structures` \ -o out/spd `#Output structures to out folder with prefix spd` Supercell should be installed. Results: The structures appears in out folder. Totally 97 structures. ********************************** orex-supercell-96532aa/data/examples/MnCaCO3/000077500000000000000000000000001465364771700207155ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/MnCaCO3/MnCaCO3.cif000066400000000000000000000051441465364771700225270ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2016-02-16 12:49:47 +0000 (Tue, 16 Feb 2016) $ #$Revision: 176465 $ #$URL: file:///home/coder/svn-repositories/cod/cif/9/00/01/9000103.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/. The original data for this entry # were provided the American Mineralogist Crystal Structure Database, # http://rruff.geo.arizona.edu/AMS/amcsd.php # # The file may be used within the scientific community so long as # proper attribution is given to the journal article from which the # data were obtained. # data_9000103 loop_ _publ_author_name 'Graf, D. L.' _publ_section_title ; Crystallographic tables for the rhombohedral carbonates Note: Disordered model ; _journal_name_full 'American Mineralogist' _journal_page_first 1283 _journal_page_last 1316 _journal_volume 46 _journal_year 1961 _chemical_formula_structural CaMn(CO3)2 _chemical_formula_sum 'C Ca0.5 Mn0.5 O3' _chemical_name_mineral Kutnohorite _space_group_IT_number 167 _symmetry_space_group_name_Hall '-R 3 2"c' _symmetry_space_group_name_H-M 'R -3 c :H' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 120 _cell_length_a 4.8797 _cell_length_b 4.8797 _cell_length_c 16.367 _cell_volume 337.509 _exptl_crystal_density_diffrn 3.174 _cod_original_sg_symbol_H-M 'R -3 c' _cod_original_formula_sum '(Ca.5 Mn.5) C O3' _cod_database_code 9000103 loop_ _symmetry_equiv_pos_as_xyz x,y,z 2/3+x,1/3+y,1/3+z 1/3+x,2/3+y,2/3+z x,x-y,1/2+z 2/3+x,1/3+x-y,5/6+z 1/3+x,2/3+x-y,1/6+z y,x,1/2-z 2/3+y,1/3+x,5/6-z 1/3+y,2/3+x,1/6-z -x+y,y,1/2+z 2/3-x+y,1/3+y,5/6+z 1/3-x+y,2/3+y,1/6+z -x,-x+y,1/2-z 2/3-x,1/3-x+y,5/6-z 1/3-x,2/3-x+y,1/6-z -y,-x,1/2+z 2/3-y,1/3-x,5/6+z 1/3-y,2/3-x,1/6+z x-y,-y,1/2-z 2/3+x-y,1/3-y,5/6-z 1/3+x-y,2/3-y,1/6-z y,-x+y,-z 2/3+y,1/3-x+y,1/3-z 1/3+y,2/3-x+y,2/3-z -x+y,-x,z 2/3-x+y,1/3-x,1/3+z 1/3-x+y,2/3-x,2/3+z -x,-y,-z 2/3-x,1/3-y,1/3-z 1/3-x,2/3-y,2/3-z -y,x-y,z 2/3-y,1/3+x-y,1/3+z 1/3-y,2/3+x-y,2/3+z x-y,x,-z 2/3+x-y,1/3+x,1/3-z 1/3+x-y,2/3+x,2/3-z loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Ca 0.00000 0.00000 0.00000 0.50000 Mn 0.00000 0.00000 0.00000 0.50000 C 0.00000 0.00000 0.25000 1.00000 O 0.26350 0.00000 0.25000 1.00000 orex-supercell-96532aa/data/examples/MnCaCO3/MnCaCO3_timing.bash000077500000000000000000000017101465364771700242500ustar00rootroot00000000000000#!/bin/bash #go through all the combination function get_table_row { supercell -d -i MnCaCO3.cif -s $1 -m -p "Mn:p=$2" -p "Ca:p=$3" | ts %.s > pp.tmp N_sym=`sed -rn 's/^[0-9\.]+ ([0-9]+) symmetry operation found for supercell.$/\1/gp' pp.tmp` N_tot=`sed -rn 's/^[0-9\.]+ The total number of combinations is ([0-9]+).*$/\1/gp' pp.tmp` N_unq=`sed -rn 's/^[0-9\.]+ Combinations after merge: (.*)$/\1/gp' pp.tmp` x=`echo $2 $3 | awk '{printf "%.4f", $2 / ($1+$2)}'` CO=`echo $2 $3 | awk '{print $1+$2}'` T1=`sed -rn 's/^([0-9\.]+) [0-9]+ symmetry operation found for supercell.$/\1/gp' pp.tmp` T2=`sed -rn 's/^([0-9\.]+) Combinations after merge: .*$/\1/gp' pp.tmp` RT=`echo $T1 $T2 | awk '{printf "%.2f", $2-$1}'` echo -e "A${2}B${3}(CO)$CO\t$x\t${N_tot}\t${N_unq}\t${RT}" } echo -e "Composition\tx\tW\tM\truntime" for i in {0..12} do get_table_row 2x2x1 $((24-$i)) $i done for i in {1..6} do get_table_row 3x3x1 $((54-$i)) $i done orex-supercell-96532aa/data/examples/MnCaCO3/README000066400000000000000000000016351465364771700216020ustar00rootroot00000000000000********************************** Mn_xCa_{1-x}CO3 example ********************************** Description: MnCaCO3_timing.bash: The script generates superset of Table 3 data in paper Wang, Q., Grau-Crespo, R., & de Leeuw, N. H. (2011). Mixing Thermodynamics of the Calcite-Structured (Mn,Ca)CO3 Solid Solution: A Computer Simulation Study. The Journal of Physical Chemistry B, 115(47), 13854–13861. doi:10.1021/jp200378q with configuration generation timing. Instructions: Supercell should be installed. Run scripts MnCaCO3_timing.bash and MnCaCO3_saturation.bash For timing script "ts" should be installed (moreutils package in Debian and Ubuntu). Results: The table is directly printed in the terminal. ********************************** Additional notes: The supercell commands used in this example are of the form: supercell -d -i MnCaCO3.cif -s -m -p "Mn:p=" -p "Ca:p=" orex-supercell-96532aa/data/examples/PZT/000077500000000000000000000000001465364771700202475ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/PZT/PZT-PbZr05Ti05O3.cif000066400000000000000000000043231465364771700232750ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2015-07-07 11:16:37 +0000 (Tue, 07 Jul 2015) $ #$Revision: 140673 $ #$URL: file:///home/coder/svn-repositories/cod/cif/1/52/10/1521043.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/ # # All data on this site have been placed in the public domain by the # contributors. # data_1521043 loop_ _publ_author_name 'Frantti, J.' 'Nishio, S.' 'Lappalainen, J.' 'Eriksson, S.' 'Lantto, V.' 'Ivanov, S.' 'Kakihana, M.' 'Rundlof, H.' _publ_section_title ; Neutron diffraction studies of Pb (Zrx Ti1-x) O3 ceramics ; _journal_name_full 'Japanese Journal of Applied Physics, Part 1' _journal_page_first 5697 _journal_page_last 5703 _journal_volume 39 _journal_year 2000 _chemical_formula_sum 'O3 Pb Ti0.5 Zr0.5' _chemical_name_systematic 'Pb (Zr0.5 Ti0.5) O3' _space_group_IT_number 99 _symmetry_space_group_name_Hall 'P 4 -2' _symmetry_space_group_name_H-M 'P 4 m m' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_formula_units_Z 1 _cell_length_a 4.03034 _cell_length_b 4.03034 _cell_length_c 4.1449 _cell_volume 67.328 _citation_journal_id_ASTM JAPNDE _cod_data_source_file Frantti_JAPNDE_2000_1452.cif _cod_data_source_block O3Pb1Ti0.5Zr0.5 _cod_original_cell_volume 67.32827 _cod_chemical_formula_sum_orig 'O3 Pb1 Ti0.5 Zr0.5' _cod_database_code 1521043 loop_ _symmetry_equiv_pos_as_xyz x,y,z -y,x,z -x,-y,z y,-x,z -x,y,z -y,-x,z x,-y,z y,x,z loop_ _atom_type_symbol _atom_type_oxidation_number Pb1 +2 Zr1 +4 Ti1 +4 O1 -2 O2 -2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_U_iso_or_equiv Zr1 Zr 0.5 0.5 0.5649 0.5 0.0 O1 O 0.5 0.5 0.0921 1 0.0 O2 O 0.5 0 0.611 1 0.0 Pb1 Pb 0.024 0.024 0 0.25 0.0 Ti1 Ti 0.5 0.5 0.5649 0.5 0.0 orex-supercell-96532aa/data/examples/PZT/README000066400000000000000000000014431465364771700211310ustar00rootroot00000000000000********************************** PZT ceramics example ********************************** Description: The example generates FIG 3 (left) in paper Grinberg, I., Cooper, V. R., & Rappe, A. M. (2004). Oxide chemistry and local structure of PbZrxTi1-xO3 studied by density-functional theory supercell calculations. Physical Review B - Condensed Matter and Materials Physics, 69(14), 1–17. doi:10.1103/PhysRevB.69.144118 Instructions: Supercell should be installed. Run script df_cfg.bash Results: The figure is directly printed in the terminal. ********************************** Additional notes: The supercell commands used in this example are of the form: supercell -s 4x2x1 -i PZT-PbZr05Ti05O3.cif -m -o out/PZT421 Note, that the generated and reference table items ordered differently. orex-supercell-96532aa/data/examples/PZT/df_cfg.bash000077500000000000000000000007221465364771700223220ustar00rootroot00000000000000#!/bin/bash #go through all the combination rm -rf out mkdir -p out #Create cell 4x2x1 supercell -s 4x2x1 -i PZT-PbZr05Ti05O3.cif -m -o out/PZT421 > /dev/null #Create table for i in {0..9} do echo $((i+1)) for y in 0.25000 0.75000 do for x in 0.12500 0.37500 0.62500 0.87500 do vl=`grep -E "(Zr1|Ti1).+$x\s+$y\s+0.56490" out/PZT421_i0${i}_w*.cif | sed -r 's/\s+([ZT])[ri]1.*/\1/g'` echo -n $vl done echo "" done echo "" done orex-supercell-96532aa/data/examples/PbSnTe-SQS/000077500000000000000000000000001465364771700213715ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/PbSnTe-SQS/PbSnTe-SQS.gin_template000066400000000000000000000003461465364771700255650ustar00rootroot00000000000000distance cutd 6.40 name @NAME@ cell @CELLABC@ 90.0 90.0 90.0 frac @FRAC@ space 1 lennard 0 0 Pb Sn -1.0 0.0 @RMIN@ @RMAX@ Pb Pb +1.0 0.0 @RMIN@ @RMAX@ Sn Sn +1.0 0.0 @RMIN@ @RMAX@ orex-supercell-96532aa/data/examples/PbSnTe-SQS/PbSnTe2.cif000066400000000000000000000140311465364771700232700ustar00rootroot00000000000000data_77881-ICSD #2012 by Fachinformationszentrum Karlsruhe, and the U.S. Secretary of #Commerce on behalf of the United States. All rights reserved. _database_code_ICSD 77881 _audit_creation_date 2003/04/01 _audit_update_record 2012/08/01 _chemical_name_systematic 'Lead Tin Telluride (1/1/2)' _chemical_formula_structural '(Pb Sn) Te2' _chemical_formula_sum 'Pb1 Sn1 Te2' _publ_section_title ; Structural and electrical characteristics of iodidely synthesized Pb1- x Snx Te crystals ; loop_ _citation_id _citation_journal_abbrev _citation_year _citation_journal_volume _citation_page_first _citation_page_last _citation_journal_id_ASTM primary 'Crystal Research and Technology' 1984 19 109 112 CRTEDF 2 'Physica B and C (Netherland) (79,1975-)' 1986 139 240 245 PHBCDQ _publ_author_name ; Yakimova, R.T.;Trifonova, E.P.;Karagiozov, L.;Petrov, S. ; _cell_length_a 6.390 _cell_length_b 6.390 _cell_length_c 6.390 _cell_angle_alpha 90. _cell_angle_beta 90. _cell_angle_gamma 90. _cell_volume 260.92 _cell_formula_units_Z 2 _symmetry_space_group_name_H-M 'F m -3 m' _symmetry_Int_Tables_number 225 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 'z, y, -x' 2 'y, x, -z' 3 'x, z, -y' 4 'z, x, -y' 5 'y, z, -x' 6 'x, y, -z' 7 'z, -y, x' 8 'y, -x, z' 9 'x, -z, y' 10 'z, -x, y' 11 'y, -z, x' 12 'x, -y, z' 13 '-z, y, x' 14 '-y, x, z' 15 '-x, z, y' 16 '-z, x, y' 17 '-y, z, x' 18 '-x, y, z' 19 '-z, -y, -x' 20 '-y, -x, -z' 21 '-x, -z, -y' 22 '-z, -x, -y' 23 '-y, -z, -x' 24 '-x, -y, -z' 25 '-z, -y, x' 26 '-y, -x, z' 27 '-x, -z, y' 28 '-z, -x, y' 29 '-y, -z, x' 30 '-x, -y, z' 31 '-z, y, -x' 32 '-y, x, -z' 33 '-x, z, -y' 34 '-z, x, -y' 35 '-y, z, -x' 36 '-x, y, -z' 37 'z, -y, -x' 38 'y, -x, -z' 39 'x, -z, -y' 40 'z, -x, -y' 41 'y, -z, -x' 42 'x, -y, -z' 43 'z, y, x' 44 'y, x, z' 45 'x, z, y' 46 'z, x, y' 47 'y, z, x' 48 'x, y, z' 49 'z, y+1/2, -x+1/2' 50 'z+1/2, y, -x+1/2' 51 'z+1/2, y+1/2, -x' 52 'y, x+1/2, -z+1/2' 53 'y+1/2, x, -z+1/2' 54 'y+1/2, x+1/2, -z' 55 'x, z+1/2, -y+1/2' 56 'x+1/2, z, -y+1/2' 57 'x+1/2, z+1/2, -y' 58 'z, x+1/2, -y+1/2' 59 'z+1/2, x, -y+1/2' 60 'z+1/2, x+1/2, -y' 61 'y, z+1/2, -x+1/2' 62 'y+1/2, z, -x+1/2' 63 'y+1/2, z+1/2, -x' 64 'x, y+1/2, -z+1/2' 65 'x+1/2, y, -z+1/2' 66 'x+1/2, y+1/2, -z' 67 'z, -y+1/2, x+1/2' 68 'z+1/2, -y, x+1/2' 69 'z+1/2, -y+1/2, x' 70 'y, -x+1/2, z+1/2' 71 'y+1/2, -x, z+1/2' 72 'y+1/2, -x+1/2, z' 73 'x, -z+1/2, y+1/2' 74 'x+1/2, -z, y+1/2' 75 'x+1/2, -z+1/2, y' 76 'z, -x+1/2, y+1/2' 77 'z+1/2, -x, y+1/2' 78 'z+1/2, -x+1/2, y' 79 'y, -z+1/2, x+1/2' 80 'y+1/2, -z, x+1/2' 81 'y+1/2, -z+1/2, x' 82 'x, -y+1/2, z+1/2' 83 'x+1/2, -y, z+1/2' 84 'x+1/2, -y+1/2, z' 85 '-z, y+1/2, x+1/2' 86 '-z+1/2, y, x+1/2' 87 '-z+1/2, y+1/2, x' 88 '-y, x+1/2, z+1/2' 89 '-y+1/2, x, z+1/2' 90 '-y+1/2, x+1/2, z' 91 '-x, z+1/2, y+1/2' 92 '-x+1/2, z, y+1/2' 93 '-x+1/2, z+1/2, y' 94 '-z, x+1/2, y+1/2' 95 '-z+1/2, x, y+1/2' 96 '-z+1/2, x+1/2, y' 97 '-y, z+1/2, x+1/2' 98 '-y+1/2, z, x+1/2' 99 '-y+1/2, z+1/2, x' 100 '-x, y+1/2, z+1/2' 101 '-x+1/2, y, z+1/2' 102 '-x+1/2, y+1/2, z' 103 '-z, -y+1/2, -x+1/2' 104 '-z+1/2, -y, -x+1/2' 105 '-z+1/2, -y+1/2, -x' 106 '-y, -x+1/2, -z+1/2' 107 '-y+1/2, -x, -z+1/2' 108 '-y+1/2, -x+1/2, -z' 109 '-x, -z+1/2, -y+1/2' 110 '-x+1/2, -z, -y+1/2' 111 '-x+1/2, -z+1/2, -y' 112 '-z, -x+1/2, -y+1/2' 113 '-z+1/2, -x, -y+1/2' 114 '-z+1/2, -x+1/2, -y' 115 '-y, -z+1/2, -x+1/2' 116 '-y+1/2, -z, -x+1/2' 117 '-y+1/2, -z+1/2, -x' 118 '-x, -y+1/2, -z+1/2' 119 '-x+1/2, -y, -z+1/2' 120 '-x+1/2, -y+1/2, -z' 121 '-z, -y+1/2, x+1/2' 122 '-z+1/2, -y, x+1/2' 123 '-z+1/2, -y+1/2, x' 124 '-y, -x+1/2, z+1/2' 125 '-y+1/2, -x, z+1/2' 126 '-y+1/2, -x+1/2, z' 127 '-x, -z+1/2, y+1/2' 128 '-x+1/2, -z, y+1/2' 129 '-x+1/2, -z+1/2, y' 130 '-z, -x+1/2, y+1/2' 131 '-z+1/2, -x, y+1/2' 132 '-z+1/2, -x+1/2, y' 133 '-y, -z+1/2, x+1/2' 134 '-y+1/2, -z, x+1/2' 135 '-y+1/2, -z+1/2, x' 136 '-x, -y+1/2, z+1/2' 137 '-x+1/2, -y, z+1/2' 138 '-x+1/2, -y+1/2, z' 139 '-z, y+1/2, -x+1/2' 140 '-z+1/2, y, -x+1/2' 141 '-z+1/2, y+1/2, -x' 142 '-y, x+1/2, -z+1/2' 143 '-y+1/2, x, -z+1/2' 144 '-y+1/2, x+1/2, -z' 145 '-x, z+1/2, -y+1/2' 146 '-x+1/2, z, -y+1/2' 147 '-x+1/2, z+1/2, -y' 148 '-z, x+1/2, -y+1/2' 149 '-z+1/2, x, -y+1/2' 150 '-z+1/2, x+1/2, -y' 151 '-y, z+1/2, -x+1/2' 152 '-y+1/2, z, -x+1/2' 153 '-y+1/2, z+1/2, -x' 154 '-x, y+1/2, -z+1/2' 155 '-x+1/2, y, -z+1/2' 156 '-x+1/2, y+1/2, -z' 157 'z, -y+1/2, -x+1/2' 158 'z+1/2, -y, -x+1/2' 159 'z+1/2, -y+1/2, -x' 160 'y, -x+1/2, -z+1/2' 161 'y+1/2, -x, -z+1/2' 162 'y+1/2, -x+1/2, -z' 163 'x, -z+1/2, -y+1/2' 164 'x+1/2, -z, -y+1/2' 165 'x+1/2, -z+1/2, -y' 166 'z, -x+1/2, -y+1/2' 167 'z+1/2, -x, -y+1/2' 168 'z+1/2, -x+1/2, -y' 169 'y, -z+1/2, -x+1/2' 170 'y+1/2, -z, -x+1/2' 171 'y+1/2, -z+1/2, -x' 172 'x, -y+1/2, -z+1/2' 173 'x+1/2, -y, -z+1/2' 174 'x+1/2, -y+1/2, -z' 175 'z, y+1/2, x+1/2' 176 'z+1/2, y, x+1/2' 177 'z+1/2, y+1/2, x' 178 'y, x+1/2, z+1/2' 179 'y+1/2, x, z+1/2' 180 'y+1/2, x+1/2, z' 181 'x, z+1/2, y+1/2' 182 'x+1/2, z, y+1/2' 183 'x+1/2, z+1/2, y' 184 'z, x+1/2, y+1/2' 185 'z+1/2, x, y+1/2' 186 'z+1/2, x+1/2, y' 187 'y, z+1/2, x+1/2' 188 'y+1/2, z, x+1/2' 189 'y+1/2, z+1/2, x' 190 'x, y+1/2, z+1/2' 191 'x+1/2, y, z+1/2' 192 'x+1/2, y+1/2, z' loop_ _atom_type_symbol _atom_type_oxidation_number Pb2+ 2 Sn2+ 2 Te2- -2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_symmetry_multiplicity _atom_site_Wyckoff_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_attached_hydrogens Pb1 Pb2+ 4 a 0 0 0 0.5 0 Sn1 Sn2+ 4 a 0 0 0 0.5 0 Te1 Te2- 4 b 0.5 0.5 0.5 1. 0 #End of data_77881-ICSD orex-supercell-96532aa/data/examples/PbSnTe-SQS/README000066400000000000000000000005721465364771700222550ustar00rootroot00000000000000[ENTER EXAMPLE DESCRIPTION HERE] Supercell should be installed. GULP should be in PATH. Run script df_cfg.bash. The command used to generate supercells in this case is: supercell -i PbSnTe2.cif -s 1x1x2 -m -v 2 -o [OUTPUT DIRECTORY]/PbSnTe_1x1x2 & Note that the [OUTPUT DIRECTORY] should exist when running the command. The analysis is then performed with the GULP program. orex-supercell-96532aa/data/examples/PbSnTe-SQS/df_cfg.bash000077500000000000000000000030021465364771700234360ustar00rootroot00000000000000#!/bin/bash cur_path=$PWD if [[ -z "$PRG_GULP" ]]; then PRG_GULP="gulp" fi cells=( 1x1x2 1x2x2 ) #cells=( 1x1x2 ) rcuts=( 4.51 6.39 7.83 9.037) for i in "${cells[@]}" do rm -rf cell_$i mkdir cell_$i supercell -i PbSnTe2.cif -s $i -m -v 2 -o cell_$i/PbSnTe_c${i} > cell_$i/cell_${i}.out 2>&1 & done wait for i in "${cells[@]}" do cd ${cur_path} sqsf="${cur_path}/SQS-$i" echo -ne "cfg" > $sqsf for k in "${rcuts[@]}" do echo -ne "\t$k" >> $sqsf done echo "" >> $sqsf for j in cell_${i}/*.cif do pth=`dirname $j`/`basename $j .cif` name=`basename $j .cif` echo -n $j >> $sqsf cd ${cur_path} rm -rf $pth/gulp mkdir -p $pth/gulp cd $pth/gulp frac=`sed -nr 's/^\s*\w+\s+(\w+)\s+([0-9\.]+)\s+([0-9\.]+)\s+([0-9\.]+).*$/\1 core \2 \3 \4 \\\n/p' ${cur_path}/$j | tr -d "\n" ` cells=`sed -nr 's/Size a=([0-9\.]+), b=([0-9\.]+), c=([0-9\.]+)/\1 \2 \3/pg' ${cur_path}/cell_$i/cell_${i}.out` sed "s/@CELLABC@/$cells/g" ${cur_path}/PbSnTe-SQS.gin_template | sed "s/@NAME@/$name/g" | \ sed "s/@FRAC@/$frac/g" > input_r.gulp for k in "${rcuts[@]}" do rmin=`echo $k | awk '{print $1-0.05}'` rmax=`echo $k | awk '{print $1+0.05}'` cat input_r.gulp | sed "s/@RMIN@/$rmin/g" | sed "s/@RMAX@/$rmax/g" > input_r${k}.gulp ${PRG_GULP} < input_r${k}.gulp > g_r${k}.out cr=`grep "Interatomic potentials =" g_r${k}.out | awk '{print int($4+0.1) };'` echo -ne "\t$cr" >> $sqsf done echo "" >> $sqsf done doneorex-supercell-96532aa/data/examples/PbSnTe/000077500000000000000000000000001465364771700207255ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/PbSnTe/PbSnTe2.cif000066400000000000000000000140311465364771700226240ustar00rootroot00000000000000data_77881-ICSD #2012 by Fachinformationszentrum Karlsruhe, and the U.S. Secretary of #Commerce on behalf of the United States. All rights reserved. _database_code_ICSD 77881 _audit_creation_date 2003/04/01 _audit_update_record 2012/08/01 _chemical_name_systematic 'Lead Tin Telluride (1/1/2)' _chemical_formula_structural '(Pb Sn) Te2' _chemical_formula_sum 'Pb1 Sn1 Te2' _publ_section_title ; Structural and electrical characteristics of iodidely synthesized Pb1- x Snx Te crystals ; loop_ _citation_id _citation_journal_abbrev _citation_year _citation_journal_volume _citation_page_first _citation_page_last _citation_journal_id_ASTM primary 'Crystal Research and Technology' 1984 19 109 112 CRTEDF 2 'Physica B and C (Netherland) (79,1975-)' 1986 139 240 245 PHBCDQ _publ_author_name ; Yakimova, R.T.;Trifonova, E.P.;Karagiozov, L.;Petrov, S. ; _cell_length_a 6.390 _cell_length_b 6.390 _cell_length_c 6.390 _cell_angle_alpha 90. _cell_angle_beta 90. _cell_angle_gamma 90. _cell_volume 260.92 _cell_formula_units_Z 2 _symmetry_space_group_name_H-M 'F m -3 m' _symmetry_Int_Tables_number 225 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 'z, y, -x' 2 'y, x, -z' 3 'x, z, -y' 4 'z, x, -y' 5 'y, z, -x' 6 'x, y, -z' 7 'z, -y, x' 8 'y, -x, z' 9 'x, -z, y' 10 'z, -x, y' 11 'y, -z, x' 12 'x, -y, z' 13 '-z, y, x' 14 '-y, x, z' 15 '-x, z, y' 16 '-z, x, y' 17 '-y, z, x' 18 '-x, y, z' 19 '-z, -y, -x' 20 '-y, -x, -z' 21 '-x, -z, -y' 22 '-z, -x, -y' 23 '-y, -z, -x' 24 '-x, -y, -z' 25 '-z, -y, x' 26 '-y, -x, z' 27 '-x, -z, y' 28 '-z, -x, y' 29 '-y, -z, x' 30 '-x, -y, z' 31 '-z, y, -x' 32 '-y, x, -z' 33 '-x, z, -y' 34 '-z, x, -y' 35 '-y, z, -x' 36 '-x, y, -z' 37 'z, -y, -x' 38 'y, -x, -z' 39 'x, -z, -y' 40 'z, -x, -y' 41 'y, -z, -x' 42 'x, -y, -z' 43 'z, y, x' 44 'y, x, z' 45 'x, z, y' 46 'z, x, y' 47 'y, z, x' 48 'x, y, z' 49 'z, y+1/2, -x+1/2' 50 'z+1/2, y, -x+1/2' 51 'z+1/2, y+1/2, -x' 52 'y, x+1/2, -z+1/2' 53 'y+1/2, x, -z+1/2' 54 'y+1/2, x+1/2, -z' 55 'x, z+1/2, -y+1/2' 56 'x+1/2, z, -y+1/2' 57 'x+1/2, z+1/2, -y' 58 'z, x+1/2, -y+1/2' 59 'z+1/2, x, -y+1/2' 60 'z+1/2, x+1/2, -y' 61 'y, z+1/2, -x+1/2' 62 'y+1/2, z, -x+1/2' 63 'y+1/2, z+1/2, -x' 64 'x, y+1/2, -z+1/2' 65 'x+1/2, y, -z+1/2' 66 'x+1/2, y+1/2, -z' 67 'z, -y+1/2, x+1/2' 68 'z+1/2, -y, x+1/2' 69 'z+1/2, -y+1/2, x' 70 'y, -x+1/2, z+1/2' 71 'y+1/2, -x, z+1/2' 72 'y+1/2, -x+1/2, z' 73 'x, -z+1/2, y+1/2' 74 'x+1/2, -z, y+1/2' 75 'x+1/2, -z+1/2, y' 76 'z, -x+1/2, y+1/2' 77 'z+1/2, -x, y+1/2' 78 'z+1/2, -x+1/2, y' 79 'y, -z+1/2, x+1/2' 80 'y+1/2, -z, x+1/2' 81 'y+1/2, -z+1/2, x' 82 'x, -y+1/2, z+1/2' 83 'x+1/2, -y, z+1/2' 84 'x+1/2, -y+1/2, z' 85 '-z, y+1/2, x+1/2' 86 '-z+1/2, y, x+1/2' 87 '-z+1/2, y+1/2, x' 88 '-y, x+1/2, z+1/2' 89 '-y+1/2, x, z+1/2' 90 '-y+1/2, x+1/2, z' 91 '-x, z+1/2, y+1/2' 92 '-x+1/2, z, y+1/2' 93 '-x+1/2, z+1/2, y' 94 '-z, x+1/2, y+1/2' 95 '-z+1/2, x, y+1/2' 96 '-z+1/2, x+1/2, y' 97 '-y, z+1/2, x+1/2' 98 '-y+1/2, z, x+1/2' 99 '-y+1/2, z+1/2, x' 100 '-x, y+1/2, z+1/2' 101 '-x+1/2, y, z+1/2' 102 '-x+1/2, y+1/2, z' 103 '-z, -y+1/2, -x+1/2' 104 '-z+1/2, -y, -x+1/2' 105 '-z+1/2, -y+1/2, -x' 106 '-y, -x+1/2, -z+1/2' 107 '-y+1/2, -x, -z+1/2' 108 '-y+1/2, -x+1/2, -z' 109 '-x, -z+1/2, -y+1/2' 110 '-x+1/2, -z, -y+1/2' 111 '-x+1/2, -z+1/2, -y' 112 '-z, -x+1/2, -y+1/2' 113 '-z+1/2, -x, -y+1/2' 114 '-z+1/2, -x+1/2, -y' 115 '-y, -z+1/2, -x+1/2' 116 '-y+1/2, -z, -x+1/2' 117 '-y+1/2, -z+1/2, -x' 118 '-x, -y+1/2, -z+1/2' 119 '-x+1/2, -y, -z+1/2' 120 '-x+1/2, -y+1/2, -z' 121 '-z, -y+1/2, x+1/2' 122 '-z+1/2, -y, x+1/2' 123 '-z+1/2, -y+1/2, x' 124 '-y, -x+1/2, z+1/2' 125 '-y+1/2, -x, z+1/2' 126 '-y+1/2, -x+1/2, z' 127 '-x, -z+1/2, y+1/2' 128 '-x+1/2, -z, y+1/2' 129 '-x+1/2, -z+1/2, y' 130 '-z, -x+1/2, y+1/2' 131 '-z+1/2, -x, y+1/2' 132 '-z+1/2, -x+1/2, y' 133 '-y, -z+1/2, x+1/2' 134 '-y+1/2, -z, x+1/2' 135 '-y+1/2, -z+1/2, x' 136 '-x, -y+1/2, z+1/2' 137 '-x+1/2, -y, z+1/2' 138 '-x+1/2, -y+1/2, z' 139 '-z, y+1/2, -x+1/2' 140 '-z+1/2, y, -x+1/2' 141 '-z+1/2, y+1/2, -x' 142 '-y, x+1/2, -z+1/2' 143 '-y+1/2, x, -z+1/2' 144 '-y+1/2, x+1/2, -z' 145 '-x, z+1/2, -y+1/2' 146 '-x+1/2, z, -y+1/2' 147 '-x+1/2, z+1/2, -y' 148 '-z, x+1/2, -y+1/2' 149 '-z+1/2, x, -y+1/2' 150 '-z+1/2, x+1/2, -y' 151 '-y, z+1/2, -x+1/2' 152 '-y+1/2, z, -x+1/2' 153 '-y+1/2, z+1/2, -x' 154 '-x, y+1/2, -z+1/2' 155 '-x+1/2, y, -z+1/2' 156 '-x+1/2, y+1/2, -z' 157 'z, -y+1/2, -x+1/2' 158 'z+1/2, -y, -x+1/2' 159 'z+1/2, -y+1/2, -x' 160 'y, -x+1/2, -z+1/2' 161 'y+1/2, -x, -z+1/2' 162 'y+1/2, -x+1/2, -z' 163 'x, -z+1/2, -y+1/2' 164 'x+1/2, -z, -y+1/2' 165 'x+1/2, -z+1/2, -y' 166 'z, -x+1/2, -y+1/2' 167 'z+1/2, -x, -y+1/2' 168 'z+1/2, -x+1/2, -y' 169 'y, -z+1/2, -x+1/2' 170 'y+1/2, -z, -x+1/2' 171 'y+1/2, -z+1/2, -x' 172 'x, -y+1/2, -z+1/2' 173 'x+1/2, -y, -z+1/2' 174 'x+1/2, -y+1/2, -z' 175 'z, y+1/2, x+1/2' 176 'z+1/2, y, x+1/2' 177 'z+1/2, y+1/2, x' 178 'y, x+1/2, z+1/2' 179 'y+1/2, x, z+1/2' 180 'y+1/2, x+1/2, z' 181 'x, z+1/2, y+1/2' 182 'x+1/2, z, y+1/2' 183 'x+1/2, z+1/2, y' 184 'z, x+1/2, y+1/2' 185 'z+1/2, x, y+1/2' 186 'z+1/2, x+1/2, y' 187 'y, z+1/2, x+1/2' 188 'y+1/2, z, x+1/2' 189 'y+1/2, z+1/2, x' 190 'x, y+1/2, z+1/2' 191 'x+1/2, y, z+1/2' 192 'x+1/2, y+1/2, z' loop_ _atom_type_symbol _atom_type_oxidation_number Pb2+ 2 Sn2+ 2 Te2- -2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_symmetry_multiplicity _atom_site_Wyckoff_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_attached_hydrogens Pb1 Pb2+ 4 a 0 0 0 0.5 0 Sn1 Sn2+ 4 a 0 0 0 0.5 0 Te1 Te2- 4 b 0.5 0.5 0.5 1. 0 #End of data_77881-ICSD orex-supercell-96532aa/data/examples/PbSnTe/README000066400000000000000000000013401465364771700216030ustar00rootroot00000000000000The example generates Table 2 in supercell paper. Supercell should be installed. Run script df_cfg.bash. The supercell command used in this example is in the form: supercell -d -i PbSnTe2.cif -s 1x1x2 -m -p "Pb1:p=2" -p "Sn1:p=6" -v 2 in which the "-p" option id used to specify the number of mixed (Pb1,Sn1) sites occupied by Pb and Sn atoms in the supercell. This site has multiplicity 4, so the total number of images of this site in the supercell is: N = 4*n1*n2*n3 for a supercell of size (n1 x n2 x n3). The site populations must then obey: n(Pb1) <= N n(Sn1) = N - n(Pb1) Both pupulations must be defined simultaneously to prevent the program from using the occupancies defined in the original cif file (50% in this case). orex-supercell-96532aa/data/examples/PbSnTe/df_cfg.bash000077500000000000000000000036571465364771700230120ustar00rootroot00000000000000#!/bin/bash cells=( 1x1x1 1x1x2 1x1x3 1x2x2 2x2x2 ) xm1=( 16 8 4 2 ) mkdir -p out for i in "${cells[@]}" do M=`echo $i | sed 's/x/ /g' | awk '{print 4*$1*$2*$3}'` for j in "${xm1[@]}" do P=`echo "$M $j" | awk '{print $1/$2}'` if [[ -z `echo $P | grep "\." ` ]]; then /usr/bin/time -f "%e" -o out/cell_${i}_Pb1d${j}.time supercell -d -i PbSnTe2.cif -s $i -m -p "Pb1:p=$P" -p "Sn1:p=$(($M-$P))" -v 2 > out/cell_${i}_Pb1d${j}.out 2>&1 & fi done done echo "The process is long, please wait" sleep 10 while [[ -z `grep "Combinations after merge" out/cell_2x2x2_Pb1d2.out` ]]; do sleep 5 prg=`grep -a "Finished.*Stored .* configurations. Left .*" out/cell_2x2x2_Pb1d2.out | tail -n 1` echo -ne "$prg" done echo "" echo "" wait echo -ne "N" for i in "${cells[@]}" do echo -ne "\t"`echo $i | sed 's/x/ /g' | awk '{print 8*$1*$2*$3}'` done echo "" echo -ne "cell" for i in "${cells[@]}" do echo -ne "\t$i" done echo "" echo -ne "N_smop" for i in "${cells[@]}" do N_sym_op=`grep -a -Po '[0-9]* symmetry operation found for supercell.' out/cell_${i}_Pb1d2.out | awk '{print $1}'` echo -ne "\t${N_sym_op}" done echo "" for j in "${xm1[@]}" do echo -ne "1/$j" for i in "${cells[@]}" do if [[ -f out/cell_${i}_Pb1d${j}.out ]]; then N_tot=`grep -a -Po '(?<=The total number of combinations is )[0-9]*' out/cell_${i}_Pb1d${j}.out` N_unq=`grep -a -Po '(?<=Combinations after merge: ).*' out/cell_${i}_Pb1d${j}.out` echo -ne "\t${N_tot}(${N_unq})" else echo -ne "\tN/A" fi done echo "" done #echo -e "cell\tN_sym\tN_tot\t\t\tN_unq" #for i in "${cells[@]}" #do # N_sym=`grep -Po '[0-9]* symmetry operation found for supercell.' out/cell_$i.out | awk '{print $1}'` # N_tot=`grep -Po '(?<=The total number of combinations is ).*' out/cell_$i.out` # N_unq=`grep -Po '(?<=Combinations after merge: ).*' out/cell_$i.out` # echo -e "$i\t${N_sym}\t${N_tot}\t\t\t${N_unq}" #done orex-supercell-96532aa/data/examples/Rb-PST-1/000077500000000000000000000000001465364771700207375ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/Rb-PST-1/RB-PST-1-DEHY_1_new.cif000066400000000000000000000024121465364771700243460ustar00rootroot00000000000000# from C:/POSTECH/Rb-PST-1-dehy/GSAS_final_4_2nd/RB-PST-1-DEHY.EXP data_added_by_encifer _audit_creation_date 2013-12-19T22:13:27 _symmetry_cell_setting tetragonal _symmetry_space_group_name_H-M 'I -4 2 d' _symmetry_int_tables_number 122 _chemical_absolute_configuration ? _cell_length_a 12.681090 _cell_length_b 12.681090 _cell_length_c 6.616533 _cell_angle_alpha 90.0000 _cell_angle_beta 90.0000 _cell_angle_gamma 90.0000 loop_ _atom_type_symbol _atom_type_oxidation_number Si1 +4 Si2 +4 O1 -2 O2 -2 O3 -2 Ga1 +3 Ga2 +3 Rb1 +1 Rb2 +1 loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_B_iso_or_equiv _atom_site_occupancy Si1 Si 0.08913 0.63183 0.63362 1.19303576457 0.56700 Si2 Si 0.00000 0.00000 0.00000 1.19303576457 0.52600 O1 O 0.95775 0.64666 0.74289 5.85692918466 1.00000 O2 O 0.05983 0.58478 0.39869 5.85692918466 1.00000 O3 O 0.12977 0.75000 0.62500 5.85692918466 1.00000 Ga1 Ga 0.05988 0.63009 0.62574 1.19303576457 0.43300 Ga2 Ga 0.00000 0.00000 0.00000 1.19303576457 0.47400 Rb1 Rb 0.86482 0.25000 0.12500 2.48855732811 1.00000 Rb2 Rb 0.11124 0.25000 0.12500 2.48855732811 0.10300 orex-supercell-96532aa/data/examples/Rb-PST-1/README000066400000000000000000000005711465364771700216220ustar00rootroot00000000000000The example shows how to generate structures, used in paper: Cadars, S., Ho Ahn, N., Okhotnikov, K., Shin, J., Vicente, A., Bong Hong, S., & Fernandez, C. (2017). Modeling Short-Range Substitution Order and Disorder in Crystals: Application to the Ga/Si Distribution in a Natrolite Zeolite. Solid State Nuclear Magnetic Resonance. http://doi.org/10.1016/j.ssnmr.2017.04.001 orex-supercell-96532aa/data/examples/Rb-PST-1/df_cfg.bash000077500000000000000000000010021465364771700230020ustar00rootroot00000000000000#!/bin/bash rm -rf out mkdir out supercell -v 2 -i RB-PST-1-DEHY_1_new.cif -p "Rb2:p=0" -c yes -s 1x1x2 -p "r(Si1|Ga1):fixed" -m -o out/Rb-PST-1-cell1x1x2_stage1 cd out for i in Rb-PST-1-cell1x1x2_stage1*.cif do out_dir=`basename $i .cif` mkdir $out_dir supercell -v 2 -i $i -c try -p "Si*:c=4" -p "Ga*:c=3" -p "Rb*:c=1" -p "O*:c=-2" -o $out_dir/Rb-PST-1-cell1x1x2_stage2 -n r5000 > ${out_dir}.log & done echo "Please wait supercell program finish. It can take a long time depend on your system." wait orex-supercell-96532aa/data/examples/SrSiAlO/000077500000000000000000000000001465364771700210465ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/SrSiAlO/README000066400000000000000000000024221465364771700217260ustar00rootroot00000000000000********************************** Transparent Ceramics example ********************************** Description: The example approximate disorder in transparent ceramics. Al Saghir, K., Chenu, S., Veron, E., Fayon, F., Suchomel, M., Genevois, C., … Allix, M. (2015). Transparency through structural disorder: A new concept for innovative transparent ceramics. Chemistry of Materials, 27(2), 508–514. doi:10.1021/cm5037106 Instructions: Supercell should be installed. Examples: The supecell approximation for cell 1x2x1 (charge balanced, dry run): supercell -d -i SrSiAlO.cif -s 1x2x1 -p "Sr*:c=+2" -p "Al*:c=+3" -p "O*:c=-2" -p "Si*:c=+4" Reference output: ... Group 1 (16 atomic positions in supercell): * Site #1: Si1 (occ. 0.4129) -> distributed over 6 positions out of 16 (actual occ.: 0.375). * Site #2: Al1 (occ. 0.587) -> distributed over 10 positions out of 16 (actual occ.: 0.625). Number of combinations for the group is 8008 ... Group 5 (4 atomic positions in supercell): * Site #1: Sr2 (occ. 0.1741) -> distributed over 1 positions out of 4 (actual occ.: 0.250). Number of combinations for the group is 4 ... ------------------------------------------------- The total number of combinations is 32032 ------------------------------------------------- orex-supercell-96532aa/data/examples/SrSiAlO/SrSiAlO.cif000066400000000000000000063216101465364771700230160ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2016-02-14 04:40:26 +0000 (Sun, 14 Feb 2016) $ #$Revision: 176432 $ #$URL: file:///home/coder/svn-repositories/cod/cif/4/00/21/4002160.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/ # # All data on this site have been placed in the public domain by the # contributors. # data_4002160 loop_ _publ_author_name 'Al Saghir, Kholoud' 'Chenu, S\'ebastien' 'Veron, Emmanuel' 'Fayon, Franck' 'Suchomel, Matthew' 'Genevois, C\'ecile' 'Porcher, Florence' 'Matzen, Guy' 'Massiot, Dominique' 'Allix, Mathieu' _publ_section_title ; Transparency through Structural Disorder: A New Concept for Innovative Transparent Ceramics ; _journal_name_full 'Chemistry of Materials' _journal_page_first 150106064151000 _journal_paper_doi 10.1021/cm5037106 _journal_year 2015 _chemical_formula_sum 'Al1.174 O4 Si0.826 Sr0.587' _chemical_formula_weight 170.3 _chemical_name_systematic ' ?' _space_group_IT_number 193 _symmetry_cell_setting hexagonal _symmetry_Int_Tables_number 193 _symmetry_space_group_name_Hall '-P 6c 2' _symmetry_space_group_name_H-M 'P 63/m c m' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 120 _cell_formula_units_Z 4 _cell_length_a 5.202893(6) _cell_length_b 5.202893(6) _cell_length_c 15.29364(3) _cell_measurement_temperature 293 _cell_volume 358.5348(9) _diffrn_ambient_temperature 293 _diffrn_radiation_probe x-ray _diffrn_radiation_wavelength 0.41396 _exptl_absorpt_coefficient_mu 2.215 _exptl_crystal_density_diffrn 3.154 _exptl_crystal_F_000 325 _pd_instr_location ' ?' _pd_meas_2theta_range_inc 0.001 _pd_meas_2theta_range_max 59.992 _pd_meas_2theta_range_min 1.000 _pd_meas_number_of_points 58993 _pd_proc_2theta_range_inc 0.001 _pd_proc_2theta_range_max 49.999 _pd_proc_2theta_range_min 1 _pd_proc_ls_background_function '10 Legendre polynoms' _pd_proc_ls_pref_orient_corr 'March & Dollase' _pd_proc_ls_profile_function Pseudo-Voigt _pd_proc_ls_prof_R_factor 0.0633 _pd_proc_ls_prof_wR_expected 0.0484 _pd_proc_ls_prof_wR_factor 0.0806 _refine_diff_density_max 4.01 _refine_diff_density_min -8.62 _refine_ls_goodness_of_fit_all 1.67 _refine_ls_number_constraints 1 _refine_ls_number_parameters 27 _refine_ls_number_restraints 0 _refine_ls_R_factor_all 0.0366 _refine_ls_R_factor_gt 0.0356 _refine_ls_shift/su_max 0.0509 _refine_ls_shift/su_mean 0.0035 _refine_ls_weighting_scheme sigma _refine_ls_wR_factor_all 0.0410 _refine_ls_wR_factor_gt 0.0407 _cod_data_source_file cm5037106_si_003.cif _cod_data_source_block I _cod_depositor_comments ; The following automatic conversions were performed: '_diffrn_radiation_probe' value 'X-ray' changed to 'x-ray' according to /home/saulius/struct/COD-crude-data--automatic-downloads/rss-feeds/ACS/lib/dictionaries/cif_core.dic dictionary named 'cif_core.dic' version 2.4.2 from 2011-04-26. Automatic conversion script Id: cif_fix_values 2935 2014-11-11 08:27:57Z andrius ; _cod_original_cell_volume 358.5347(10) _cod_original_sg_symbol_Hall '-P 6c;-2' _cod_database_code 4002160 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 x,y,z 2 -y,x-y,z 3 -x+y,-x,z 4 -x,-y,z+1/2 5 y,-x+y,z+1/2 6 x-y,x,z+1/2 7 y,x,-z+1/2 8 x-y,-y,-z+1/2 9 -x,-x+y,-z+1/2 10 -y,-x,-z 11 -x+y,y,-z 12 x,x-y,-z 13 -x,-y,-z 14 y,-x+y,-z 15 x-y,x,-z 16 x,y,-z+1/2 17 -y,x-y,-z+1/2 18 -x+y,-x,-z+1/2 19 -y,-x,z+1/2 20 -x+y,y,z+1/2 21 x,x-y,z+1/2 22 y,x,z 23 x-y,-y,z 24 -x,-x+y,z loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_adp_type _atom_site_U_iso_or_equiv _atom_site_symmetry_multiplicity _atom_site_occupancy _atom_site_calc_flag Sr1 Sr 0 0 0 Uani 0.01278(6) 2 1 d Si1 Si 0.333333 0.666667 0.141566 Uani 0.0066 8 0.4129 d Al1 Al 0.333333 0.666667 0.141566 Uani 0.0066 8 0.587 d O1 O 0.333333 0.666667 0.25 Uani 0.0213(4) 4 1 d O2 O 0.39728(12) 0 0.10219(5) Uani 0.0135(3) 12 1 d Sr2 Sr 0 0 0.25 Uani 0.0135(3) 2 0.1741(6) d loop_ _atom_site_aniso_label _atom_site_aniso_type_symbol _atom_site_aniso_U_11 _atom_site_aniso_U_22 _atom_site_aniso_U_33 _atom_site_aniso_U_12 _atom_site_aniso_U_13 _atom_site_aniso_U_23 Sr1 Sr 0.01176(6) 0.01176(6) 0.01482(12) 0.00588(3) 0 0 Si1 Si 0.005728 0.005728 0.008418 0.002864 0 0 Al1 Al 0.005728 0.005728 0.008418 0.002864 0 0 O1 O 0.0272(4) 0.0272(4) 0.0094(7) 0.0136(2) 0 0 O2 O 0.0176(3) 0.0051(3) 0.0135(5) 0.00257(15) -0.0050(3) 0 Sr2 Sr 0.0178(4) 0.0178(4) 0.0049(6) 0.00890(19) 0 0 loop_ _atom_type_symbol _atom_type_scat_dispersion_real _atom_type_scat_dispersion_imag _atom_type_scat_source Al 0.0202 0.0168 'International Tables Vol C tables 4.2.6.8 and 6.1.1.1' O 0.0019 0.0019 'International Tables Vol C tables 4.2.6.8 and 6.1.1.1' Si 0.0272 0.0232 'International Tables Vol C tables 4.2.6.8 and 6.1.1.1' Sr 0.2392 1.3122 'International Tables Vol C tables 4.2.6.8 and 6.1.1.1' loop_ _geom_angle_atom_site_label_1 _geom_angle_atom_site_label_2 _geom_angle_atom_site_label_3 _geom_angle_site_symmetry_1 _geom_angle_site_symmetry_3 _geom_angle O2 Sr1 O2 1_455 . 116.42(2) O2 Sr1 O2 1_455 2_545 101.628(10) O2 Sr1 O2 1_455 2_555 51.247(6) O2 Sr1 O2 1_455 3_555 51.247(18) O2 Sr1 O2 1_455 3_665 101.628(14) O2 Sr1 O2 1_455 10_555 128.753(6) O2 Sr1 O2 1_455 10_565 78.372(10) O2 Sr1 O2 1_455 11_555 63.58(2) O2 Sr1 O2 1_455 11_655 180.0(5) O2 Sr1 O2 1_455 12_445 78.372(14) O2 Sr1 O2 1_455 12_555 128.753(18) O2 Sr1 O2 . 2_545 51.247(6) O2 Sr1 O2 . 2_555 87.386(16) O2 Sr1 O2 . 3_555 87.39(2) O2 Sr1 O2 . 3_665 51.247(13) O2 Sr1 O2 . 10_555 92.614(16) O2 Sr1 O2 . 10_565 128.753(6) O2 Sr1 O2 . 11_555 180.0(5) O2 Sr1 O2 . 11_655 63.58(2) O2 Sr1 O2 . 12_445 128.753(13) O2 Sr1 O2 . 12_555 92.61(2) O2 Sr1 O2 2_545 2_555 116.42(2) O2 Sr1 O2 2_545 3_555 51.247(18) O2 Sr1 O2 2_545 3_665 101.628(14) O2 Sr1 O2 2_545 10_555 63.58(2) O2 Sr1 O2 2_545 10_565 180.0(5) O2 Sr1 O2 2_545 11_555 128.753(6) O2 Sr1 O2 2_545 11_655 78.372(10) O2 Sr1 O2 2_545 12_445 78.372(14) O2 Sr1 O2 2_545 12_555 128.753(18) O2 Sr1 O2 2_555 3_555 87.39(2) O2 Sr1 O2 2_555 3_665 51.247(13) O2 Sr1 O2 2_555 10_555 180.0(5) O2 Sr1 O2 2_555 10_565 63.58(2) O2 Sr1 O2 2_555 11_555 92.614(16) O2 Sr1 O2 2_555 11_655 128.753(6) O2 Sr1 O2 2_555 12_445 128.753(13) O2 Sr1 O2 2_555 12_555 92.61(2) O2 Sr1 O2 3_555 3_665 116.417(19) O2 Sr1 O2 3_555 10_555 92.61(2) O2 Sr1 O2 3_555 10_565 128.753(18) O2 Sr1 O2 3_555 11_555 92.61(2) O2 Sr1 O2 3_555 11_655 128.753(18) O2 Sr1 O2 3_555 12_445 63.583(19) O2 Sr1 O2 3_555 12_555 180.0(5) O2 Sr1 O2 3_665 10_555 128.753(13) O2 Sr1 O2 3_665 10_565 78.372(14) O2 Sr1 O2 3_665 11_555 128.753(13) O2 Sr1 O2 3_665 11_655 78.372(14) O2 Sr1 O2 3_665 12_445 180.0(5) O2 Sr1 O2 3_665 12_555 63.583(19) O2 Sr1 O2 10_555 10_565 116.42(2) O2 Sr1 O2 10_555 11_555 87.386(16) O2 Sr1 O2 10_555 11_655 51.247(6) O2 Sr1 O2 10_555 12_445 51.247(13) O2 Sr1 O2 10_555 12_555 87.39(2) O2 Sr1 O2 10_565 11_555 51.247(6) O2 Sr1 O2 10_565 11_655 101.628(10) O2 Sr1 O2 10_565 12_445 101.628(14) O2 Sr1 O2 10_565 12_555 51.247(18) O2 Sr1 O2 11_555 11_655 116.42(2) O2 Sr1 O2 11_555 12_445 51.247(13) O2 Sr1 O2 11_555 12_555 87.39(2) O2 Sr1 O2 11_655 12_445 101.628(14) O2 Sr1 O2 11_655 12_555 51.247(18) O2 Sr1 O2 12_445 12_555 116.417(19) O1 Si1 O2 . 1_565 110.69(2) O1 Si1 O2 . 2_555 110.69(2) O1 Si1 O2 . 3_665 110.69(3) O2 Si1 O2 1_565 2_555 108.22(3) O2 Si1 O2 1_565 3_665 108.22(3) O2 Si1 O2 2_555 3_665 108.22(3) O1 Al1 O2 . 1_565 110.69(2) O1 Al1 O2 . 2_555 110.69(2) O1 Al1 O2 . 3_665 110.69(3) O2 Al1 O2 1_565 2_555 108.22(3) O2 Al1 O2 1_565 3_665 108.22(3) O2 Al1 O2 2_555 3_665 108.22(3) O1 Sr2 O1 1_445 1_545 120 O1 Sr2 O1 1_445 . 120 O1 Sr2 O1 1_445 7_445 60 O1 Sr2 O1 1_445 7_455 60 O1 Sr2 O1 1_445 7_555 180.0(5) O1 Sr2 O2 1_445 . 125.760(10) O1 Sr2 O2 1_445 2_555 90 O1 Sr2 O2 1_445 3_555 54.240(13) O1 Sr2 O2 1_445 7_555 90 O1 Sr2 O2 1_445 8_555 125.760(10) O1 Sr2 O2 1_445 9_555 54.240(13) O1 Sr2 O1 1_545 . 120 O1 Sr2 O1 1_545 7_445 60 O1 Sr2 O1 1_545 7_455 180.0(5) O1 Sr2 O1 1_545 7_555 60 O1 Sr2 O2 1_545 . 54.240(10) O1 Sr2 O2 1_545 2_555 125.760(10) O1 Sr2 O2 1_545 3_555 90.000(14) O1 Sr2 O2 1_545 7_555 125.760(10) O1 Sr2 O2 1_545 8_555 54.240(10) O1 Sr2 O2 1_545 9_555 90.000(14) O1 Sr2 O1 . 7_445 180.0(5) O1 Sr2 O1 . 7_455 60 O1 Sr2 O1 . 7_555 60 O1 Sr2 O2 . . 90 O1 Sr2 O2 . 2_555 54.240(10) O1 Sr2 O2 . 3_555 125.760(13) O1 Sr2 O2 . 7_555 54.240(10) O1 Sr2 O2 . 8_555 90 O1 Sr2 O2 . 9_555 125.760(13) O1 Sr2 O1 7_445 7_455 120 O1 Sr2 O1 7_445 7_555 120 O1 Sr2 O2 7_445 . 90 O1 Sr2 O2 7_445 2_555 125.760(10) O1 Sr2 O2 7_445 3_555 54.240(13) O1 Sr2 O2 7_445 7_555 125.760(10) O1 Sr2 O2 7_445 8_555 90 O1 Sr2 O2 7_445 9_555 54.240(13) O1 Sr2 O1 7_455 7_555 120 O1 Sr2 O2 7_455 . 125.760(10) O1 Sr2 O2 7_455 2_555 54.240(10) O1 Sr2 O2 7_455 3_555 90.000(14) O1 Sr2 O2 7_455 7_555 54.240(10) O1 Sr2 O2 7_455 8_555 125.760(10) O1 Sr2 O2 7_455 9_555 90.000(14) O1 Sr2 O2 7_555 . 54.240(10) O1 Sr2 O2 7_555 2_555 90 O1 Sr2 O2 7_555 3_555 125.760(13) O1 Sr2 O2 7_555 7_555 90 O1 Sr2 O2 7_555 8_555 54.240(10) O1 Sr2 O2 7_555 9_555 125.760(13) O2 Sr2 O2 . 2_555 71.521(14) O2 Sr2 O2 . 3_555 71.521(16) O2 Sr2 O2 . 7_555 140.563(7) O2 Sr2 O2 . 8_555 95.122(18) O2 Sr2 O2 . 9_555 140.563(15) O2 Sr2 O2 2_555 3_555 71.521(16) O2 Sr2 O2 2_555 7_555 95.122(18) O2 Sr2 O2 2_555 8_555 140.563(7) O2 Sr2 O2 2_555 9_555 140.563(15) O2 Sr2 O2 3_555 7_555 140.563(15) O2 Sr2 O2 3_555 8_555 140.563(15) O2 Sr2 O2 3_555 9_555 95.122(16) O2 Sr2 O2 7_555 8_555 71.521(14) O2 Sr2 O2 7_555 9_555 71.521(16) O2 Sr2 O2 8_555 9_555 71.521(16) loop_ _geom_bond_atom_site_label_1 _geom_bond_atom_site_label_2 _geom_bond_site_symmetry_2 _geom_bond_distance Sr1 O2 1_455 3.5038(7) Sr1 O2 . 2.5913(7) Sr1 O2 2_545 3.5038(7) Sr1 O2 2_555 2.5913(7) Sr1 O2 3_555 2.5913(6) Sr1 O2 3_665 3.5038(5) Sr1 O2 10_555 2.5913(7) Sr1 O2 10_565 3.5038(7) Sr1 O2 11_555 2.5913(7) Sr1 O2 11_655 3.5038(7) Sr1 O2 12_445 3.5038(5) Sr1 O2 12_555 2.5913(6) Si1 O1 . 1.6584 Si1 O2 1_565 1.7042(3) Si1 O2 2_555 1.7042(3) Si1 O2 3_665 1.7042(7) Al1 O1 . 1.6584 Al1 O2 1_565 1.7042(3) Al1 O2 2_555 1.7042(3) Al1 O2 3_665 1.7042(7) Sr2 O1 1_445 3.0039 Sr2 O1 1_545 3.0039 Sr2 O1 . 3.0039 Sr2 O1 7_445 3.0039 Sr2 O1 7_455 3.0039 Sr2 O1 7_555 3.0039 Sr2 O2 . 3.0631(7) Sr2 O2 2_555 3.0631(7) Sr2 O2 3_555 3.0631(6) Sr2 O2 7_555 3.0631(7) Sr2 O2 8_555 3.0631(7) Sr2 O2 9_555 3.0631(6) loop_ _pd_proc_point_id _pd_proc_2theta_corrected _pd_proc_intensity_net _pd_calc_intensity_net _pd_proc_ls_weight 1 1.0000 264.96 200.54 33.48 2 1.0010 239.82 200.50 31.85 3 1.0020 243.14 200.47 32.01 4 1.0030 235.87 200.43 31.62 5 1.0040 293.43 200.40 35.13 6 1.0050 261.81 200.36 33.20 7 1.0060 230.09 200.33 31.26 8 1.0070 249.72 200.29 32.51 9 1.0080 229.25 200.26 31.15 10 1.0090 265.91 200.22 33.54 11 1.0100 244.52 200.19 32.18 12 1.0110 210.33 200.15 29.86 13 1.0120 193.94 200.12 28.66 14 1.0130 227.56 200.08 30.98 15 1.0140 242.39 200.05 31.97 16 1.0150 253.15 200.01 32.61 17 1.0160 211.57 199.98 29.89 18 1.0170 214.53 199.95 30.17 19 1.0180 225.92 199.91 30.86 20 1.0190 242.24 199.88 31.95 21 1.0200 233.12 199.84 31.40 22 1.0210 214.27 199.81 30.15 23 1.0220 270.09 199.77 33.79 24 1.0230 249.87 199.74 32.51 25 1.0240 235.01 199.71 31.63 26 1.0250 242.89 199.67 31.96 27 1.0260 204.48 199.64 29.44 28 1.0270 214.63 199.60 30.17 29 1.0280 234.49 199.57 31.39 30 1.0290 241.93 199.53 31.91 31 1.0300 274.62 199.50 34.12 32 1.0310 281.12 199.47 34.51 33 1.0320 235.03 199.43 31.51 34 1.0330 228.88 199.40 31.02 35 1.0340 231.14 199.36 31.34 36 1.0350 267.93 199.33 33.61 37 1.0360 245.65 199.29 32.19 38 1.0370 176.33 199.26 27.28 39 1.0380 194.74 199.23 28.67 40 1.0390 204.57 199.19 29.37 41 1.0400 213.26 199.16 30.10 42 1.0410 202.12 199.13 29.27 43 1.0420 234.47 199.09 31.41 44 1.0430 230.38 199.06 31.24 45 1.0440 219.82 199.02 30.53 46 1.0450 230.30 198.99 31.24 47 1.0460 238.74 198.96 31.83 48 1.0470 264.75 198.92 33.50 49 1.0480 267.31 198.89 33.68 50 1.0490 243.81 198.86 32.08 51 1.0500 234.13 198.82 31.48 52 1.0510 262.19 198.79 33.32 53 1.0520 221.93 198.76 30.60 54 1.0530 228.54 198.72 31.10 55 1.0540 230.43 198.69 31.22 56 1.0550 234.11 198.65 31.51 57 1.0560 255.68 198.62 32.87 58 1.0570 271.33 198.59 33.95 59 1.0580 268.07 198.55 33.60 60 1.0590 240.58 198.52 31.92 61 1.0600 224.53 198.49 30.85 62 1.0610 212.56 198.46 30.00 63 1.0620 219.06 198.42 30.53 64 1.0630 258.55 198.39 32.77 65 1.0640 211.31 198.36 29.70 66 1.0650 239.72 198.32 31.86 67 1.0660 260.66 198.29 33.20 68 1.0670 257.22 198.26 32.99 69 1.0680 236.10 198.22 31.61 70 1.0690 222.14 198.19 30.67 71 1.0700 263.91 198.16 33.39 72 1.0710 276.53 198.12 34.16 73 1.0720 220.23 198.09 30.42 74 1.0730 214.33 198.06 30.14 75 1.0740 235.06 198.02 31.49 76 1.0750 247.56 197.99 32.42 77 1.0760 242.35 197.96 32.05 78 1.0770 256.59 197.93 32.91 79 1.0780 234.20 197.89 31.45 80 1.0790 257.42 197.86 33.00 81 1.0800 238.11 197.83 31.71 82 1.0810 213.49 197.79 30.03 83 1.0820 243.49 197.76 32.00 84 1.0830 203.10 197.73 29.16 85 1.0840 164.60 197.70 26.39 86 1.0850 191.53 197.66 28.44 87 1.0860 222.09 197.63 30.66 88 1.0870 228.38 197.60 31.08 89 1.0880 220.41 197.57 30.55 90 1.0890 222.10 197.53 30.66 91 1.0900 228.92 197.50 31.14 92 1.0910 225.22 197.47 30.84 93 1.0920 193.34 197.44 28.57 94 1.0930 223.09 197.40 30.69 95 1.0940 229.98 197.37 31.22 96 1.0950 208.57 197.34 29.57 97 1.0960 205.14 197.31 29.32 98 1.0970 221.12 197.27 30.60 99 1.0980 246.12 197.24 32.20 100 1.0990 221.92 197.21 30.60 101 1.1000 235.81 197.18 31.58 102 1.1010 217.15 197.15 30.30 103 1.1020 215.41 197.11 30.15 104 1.1030 206.82 197.08 29.49 105 1.1040 287.41 197.05 34.73 106 1.1050 253.23 197.02 32.63 107 1.1060 200.69 196.99 29.12 108 1.1070 206.52 196.95 29.55 109 1.1080 233.76 196.92 31.41 110 1.1090 213.38 196.89 30.00 111 1.1100 209.85 196.86 29.83 112 1.1110 224.33 196.82 30.80 113 1.1120 214.01 196.79 30.08 114 1.1130 224.37 196.76 30.84 115 1.1140 261.62 196.73 33.24 116 1.1150 224.77 196.70 30.79 117 1.1160 268.86 196.67 33.54 118 1.1170 232.05 196.63 31.29 119 1.1180 183.63 196.60 27.84 120 1.1190 195.88 196.57 28.75 121 1.1200 258.52 196.54 33.04 122 1.1210 252.35 196.51 32.68 123 1.1220 240.68 196.48 31.91 124 1.1230 233.50 196.44 31.44 125 1.1240 207.58 196.41 29.62 126 1.1250 219.77 196.38 30.38 127 1.1260 241.70 196.35 31.74 128 1.1270 268.83 196.32 33.75 129 1.1280 214.78 196.29 30.12 130 1.1290 232.61 196.26 31.31 131 1.1300 236.32 196.22 31.42 132 1.1310 220.20 196.19 30.41 133 1.1320 248.74 196.16 32.45 134 1.1330 237.08 196.13 31.67 135 1.1340 255.62 196.10 32.93 136 1.1350 249.48 196.07 32.51 137 1.1360 221.54 196.04 30.54 138 1.1370 247.30 196.00 32.21 139 1.1380 224.18 195.97 30.55 140 1.1390 182.84 195.94 27.64 141 1.1400 237.12 195.91 31.64 142 1.1410 272.92 195.88 33.89 143 1.1420 236.96 195.85 31.54 144 1.1430 257.23 195.82 32.99 145 1.1440 265.93 195.79 33.58 146 1.1450 236.28 195.76 31.60 147 1.1460 221.35 195.72 30.62 148 1.1470 260.82 195.69 33.21 149 1.1480 244.30 195.66 32.06 150 1.1490 202.90 195.63 29.26 151 1.1500 204.97 195.60 29.42 152 1.1510 246.88 195.57 32.27 153 1.1520 252.48 195.54 32.67 154 1.1530 206.47 195.51 29.26 155 1.1540 176.87 195.48 27.29 156 1.1550 194.00 195.45 28.66 157 1.1560 194.17 195.41 28.69 158 1.1570 191.94 195.38 28.52 159 1.1580 228.33 195.35 31.08 160 1.1590 296.11 195.32 35.31 161 1.1600 282.78 195.29 34.46 162 1.1610 209.00 195.26 29.74 163 1.1620 211.87 195.23 29.96 164 1.1630 214.26 195.20 30.13 165 1.1640 231.27 195.17 31.28 166 1.1650 228.31 195.14 31.09 167 1.1660 240.04 195.11 31.75 168 1.1670 205.19 195.08 29.33 169 1.1680 243.32 195.05 32.02 170 1.1690 227.71 195.02 30.98 171 1.1700 227.32 194.99 31.03 172 1.1710 234.85 194.96 31.53 173 1.1720 269.68 194.93 33.80 174 1.1730 247.89 194.90 32.37 175 1.1740 202.95 194.87 29.31 176 1.1750 221.85 194.84 30.59 177 1.1760 219.78 194.80 30.48 178 1.1770 191.48 194.77 28.40 179 1.1780 226.96 194.74 30.94 180 1.1790 203.27 194.71 29.31 181 1.1800 211.63 194.68 29.90 182 1.1810 196.80 194.65 28.83 183 1.1820 177.86 194.62 27.38 184 1.1830 240.17 194.59 31.79 185 1.1840 211.95 194.56 29.91 186 1.1850 204.86 194.53 29.37 187 1.1860 219.60 194.50 30.39 188 1.1870 226.51 194.47 30.67 189 1.1880 236.13 194.44 31.65 190 1.1890 218.20 194.41 30.37 191 1.1900 206.08 194.38 29.45 192 1.1910 212.90 194.35 29.83 193 1.1920 231.34 194.32 31.31 194 1.1930 229.14 194.29 31.16 195 1.1940 203.55 194.26 29.36 196 1.1950 202.57 194.24 29.29 197 1.1960 212.24 194.21 29.97 198 1.1970 254.10 194.18 32.65 199 1.1980 211.80 194.15 29.84 200 1.1990 205.18 194.12 29.25 201 1.2000 228.01 194.09 30.94 202 1.2010 258.41 194.06 32.89 203 1.2020 245.35 194.03 32.16 204 1.2030 255.86 194.00 32.92 205 1.2040 264.08 193.97 33.49 206 1.2050 261.67 193.94 33.30 207 1.2060 246.97 193.91 32.36 208 1.2070 229.46 193.88 31.18 209 1.2080 263.79 193.85 33.38 210 1.2090 278.34 193.82 34.33 211 1.2100 250.67 193.79 32.60 212 1.2110 272.32 193.76 33.96 213 1.2120 243.85 193.73 32.11 214 1.2130 228.22 193.70 31.07 215 1.2140 208.05 193.67 29.65 216 1.2150 205.48 193.65 29.46 217 1.2160 246.51 193.62 32.29 218 1.2170 270.19 193.59 33.84 219 1.2180 265.85 193.56 33.47 220 1.2190 216.13 193.53 30.17 221 1.2200 272.89 193.50 33.90 222 1.2210 278.56 193.47 34.34 223 1.2220 254.97 193.44 32.84 224 1.2230 258.93 193.41 33.10 225 1.2240 250.21 193.38 32.55 226 1.2250 269.93 193.35 33.80 227 1.2260 220.80 193.32 30.45 228 1.2270 206.02 193.30 29.50 229 1.2280 223.60 193.27 30.72 230 1.2290 225.14 193.24 30.69 231 1.2300 245.22 193.21 32.27 232 1.2310 251.72 193.18 32.64 233 1.2320 247.57 193.15 32.39 234 1.2330 235.49 193.12 31.59 235 1.2340 252.60 193.09 32.70 236 1.2350 254.50 193.07 32.76 237 1.2360 212.80 193.04 29.95 238 1.2370 240.02 193.01 31.84 239 1.2380 238.87 192.98 31.75 240 1.2390 225.62 192.95 30.81 241 1.2400 261.13 192.92 33.26 242 1.2410 259.33 192.89 33.17 243 1.2420 255.67 192.86 32.90 244 1.2430 256.97 192.84 32.99 245 1.2440 254.69 192.81 32.86 246 1.2450 214.86 192.78 30.14 247 1.2460 237.98 192.75 31.67 248 1.2470 240.14 192.72 31.86 249 1.2480 211.06 192.69 29.87 250 1.2490 240.91 192.66 31.83 251 1.2500 217.57 192.64 30.20 252 1.2510 269.96 192.61 33.74 253 1.2520 253.78 192.58 32.76 254 1.2530 237.24 192.55 31.73 255 1.2540 248.33 192.52 32.32 256 1.2550 215.23 192.49 30.16 257 1.2560 205.30 192.47 29.48 258 1.2570 194.44 192.44 28.71 259 1.2580 234.65 192.41 31.45 260 1.2590 198.10 192.38 28.86 261 1.2600 207.71 192.35 29.54 262 1.2610 222.21 192.33 30.63 263 1.2620 228.04 192.30 30.98 264 1.2630 209.73 192.27 29.54 265 1.2640 224.46 192.24 30.69 266 1.2650 196.94 192.21 28.84 267 1.2660 224.81 192.18 30.87 268 1.2670 240.31 192.16 31.89 269 1.2680 233.80 192.13 31.49 270 1.2690 235.08 192.10 31.52 271 1.2700 211.91 192.07 29.95 272 1.2710 221.07 192.05 30.60 273 1.2720 219.74 192.02 30.49 274 1.2730 201.21 191.99 29.15 275 1.2740 234.42 191.96 31.51 276 1.2750 244.39 191.93 32.18 277 1.2760 205.73 191.91 29.48 278 1.2770 217.05 191.88 30.20 279 1.2780 252.13 191.85 32.60 280 1.2790 239.55 191.82 31.84 281 1.2800 177.68 191.80 27.24 282 1.2810 174.05 191.77 27.08 283 1.2820 225.46 191.74 30.71 284 1.2830 270.74 191.71 33.88 285 1.2840 257.20 191.68 32.92 286 1.2850 228.66 191.66 31.09 287 1.2860 268.52 191.63 33.67 288 1.2870 246.32 191.60 32.20 289 1.2880 232.91 191.57 31.37 290 1.2890 191.79 191.55 28.39 291 1.2900 203.21 191.52 29.30 292 1.2910 259.35 191.49 33.08 293 1.2920 248.53 191.47 32.38 294 1.2930 191.29 191.44 28.39 295 1.2940 242.43 191.41 31.98 296 1.2950 279.35 191.38 34.45 297 1.2960 236.99 191.36 31.65 298 1.2970 206.43 191.33 29.59 299 1.2980 239.49 191.30 31.80 300 1.2990 262.00 191.27 33.31 301 1.3000 275.47 191.25 34.12 302 1.3010 261.98 191.22 33.26 303 1.3020 282.88 191.19 34.46 304 1.3030 256.36 191.17 32.86 305 1.3040 238.13 191.14 31.74 306 1.3050 178.44 191.11 27.39 307 1.3060 164.83 191.09 26.43 308 1.3070 240.13 191.06 31.69 309 1.3080 237.19 191.03 31.62 310 1.3090 246.10 191.00 32.16 311 1.3100 203.01 190.98 29.19 312 1.3110 203.78 190.95 29.37 313 1.3120 169.36 190.92 26.74 314 1.3130 243.48 190.90 31.80 315 1.3140 243.12 190.87 32.01 316 1.3150 204.51 190.84 29.41 317 1.3160 178.36 190.82 27.43 318 1.3170 205.67 190.79 29.52 319 1.3180 252.82 190.76 32.65 320 1.3190 239.19 190.74 31.82 321 1.3200 254.35 190.71 32.77 322 1.3210 224.16 190.68 30.74 323 1.3220 212.97 190.66 30.07 324 1.3230 256.79 190.63 32.92 325 1.3240 242.14 190.60 31.98 326 1.3250 217.19 190.58 30.30 327 1.3260 222.83 190.55 30.69 328 1.3270 191.08 190.52 28.40 329 1.3280 182.36 190.50 27.83 330 1.3290 181.72 190.47 27.76 331 1.3300 195.13 190.44 28.75 332 1.3310 265.40 190.42 33.45 333 1.3320 228.59 190.39 30.83 334 1.3330 192.61 190.37 28.51 335 1.3340 229.65 190.34 31.13 336 1.3350 227.81 190.31 31.06 337 1.3360 281.32 190.29 34.41 338 1.3370 253.06 190.26 32.66 339 1.3380 242.74 190.23 32.06 340 1.3390 232.33 190.21 31.38 341 1.3400 224.59 190.18 30.84 342 1.3410 274.43 190.15 34.00 343 1.3420 232.50 190.13 31.27 344 1.3430 224.99 190.10 30.90 345 1.3440 215.45 190.08 30.23 346 1.3450 242.55 190.05 32.02 347 1.3460 230.53 190.02 31.15 348 1.3470 251.69 190.00 32.47 349 1.3480 263.48 189.97 33.40 350 1.3490 219.47 189.95 30.40 351 1.3500 210.27 189.92 29.81 352 1.3510 229.55 189.89 31.16 353 1.3520 235.49 189.87 31.58 354 1.3530 233.31 189.84 31.48 355 1.3540 249.96 189.82 32.56 356 1.3550 271.02 189.79 33.95 357 1.3560 252.82 189.76 32.60 358 1.3570 213.37 189.74 30.05 359 1.3580 214.58 189.71 30.09 360 1.3590 224.76 189.69 30.87 361 1.3600 206.06 189.66 29.54 362 1.3610 220.25 189.63 30.50 363 1.3620 257.83 189.61 32.97 364 1.3630 239.15 189.58 31.83 365 1.3640 246.38 189.56 32.29 366 1.3650 185.77 189.53 27.91 367 1.3660 220.04 189.51 30.43 368 1.3670 173.70 189.48 26.98 369 1.3680 202.19 189.46 29.11 370 1.3690 227.80 189.43 31.03 371 1.3700 215.93 189.40 30.23 372 1.3710 210.25 189.38 29.83 373 1.3720 221.67 189.35 30.63 374 1.3730 210.87 189.33 29.89 375 1.3740 230.41 189.30 31.26 376 1.3750 244.63 189.28 32.24 377 1.3760 223.68 189.25 30.80 378 1.3770 262.90 189.23 33.24 379 1.3780 247.89 189.20 32.35 380 1.3790 220.08 189.18 30.52 381 1.3800 226.03 189.15 30.86 382 1.3810 270.69 189.13 33.89 383 1.3820 276.27 189.10 34.21 384 1.3830 256.14 189.07 32.95 385 1.3840 246.76 189.05 32.36 386 1.3850 239.00 189.02 31.83 387 1.3860 215.06 189.00 30.16 388 1.3870 190.72 188.98 28.38 389 1.3880 213.16 188.95 30.08 390 1.3890 240.76 188.92 31.95 391 1.3900 212.82 188.90 29.99 392 1.3910 190.49 188.87 28.38 393 1.3920 205.14 188.85 29.43 394 1.3930 239.57 188.82 31.82 395 1.3940 230.91 188.80 31.25 396 1.3950 246.06 188.77 32.28 397 1.3960 227.93 188.75 31.04 398 1.3970 206.00 188.73 29.55 399 1.3980 236.36 188.70 31.60 400 1.3990 226.50 188.68 30.97 401 1.4000 202.53 188.65 29.29 402 1.4010 236.43 188.62 31.58 403 1.4020 261.30 188.60 33.22 404 1.4030 272.22 188.58 34.00 405 1.4040 241.00 188.55 31.98 406 1.4050 221.66 188.53 30.69 407 1.4060 228.20 188.50 31.15 408 1.4070 248.85 188.48 32.18 409 1.4080 231.52 188.45 31.02 410 1.4090 269.34 188.43 33.81 411 1.4100 265.54 188.40 33.57 412 1.4110 234.22 188.38 31.49 413 1.4120 191.84 188.35 28.48 414 1.4130 215.76 188.33 30.13 415 1.4140 258.56 188.30 33.06 416 1.4150 265.69 188.28 33.53 417 1.4160 280.24 188.26 34.39 418 1.4170 234.46 188.23 31.49 419 1.4180 226.31 188.21 30.94 420 1.4190 211.80 188.18 29.95 421 1.4200 213.48 188.16 30.04 422 1.4210 189.45 188.13 28.21 423 1.4220 245.47 188.11 32.21 424 1.4230 242.46 188.09 32.08 425 1.4240 220.73 188.06 30.54 426 1.4250 183.78 188.04 27.90 427 1.4260 238.41 188.01 31.68 428 1.4270 262.98 187.99 33.34 429 1.4280 261.73 187.96 33.28 430 1.4290 235.32 187.94 31.49 431 1.4300 223.46 187.92 30.68 432 1.4310 217.18 187.89 30.16 433 1.4320 228.89 187.87 30.94 434 1.4330 222.53 187.84 30.64 435 1.4340 235.51 187.82 31.51 436 1.4350 229.40 187.80 31.10 437 1.4360 222.88 187.77 30.67 438 1.4370 254.79 187.75 32.81 439 1.4380 294.28 187.72 35.24 440 1.4390 225.44 187.70 30.82 441 1.4400 219.26 187.68 30.47 442 1.4410 242.89 187.65 32.02 443 1.4420 259.78 187.63 33.07 444 1.4430 205.29 187.60 29.48 445 1.4440 220.95 187.58 30.56 446 1.4450 230.78 187.56 31.21 447 1.4460 258.14 187.53 33.09 448 1.4470 272.14 187.51 33.97 449 1.4480 244.03 187.49 32.15 450 1.4490 247.60 187.46 32.26 451 1.4500 281.56 187.44 34.29 452 1.4510 276.68 187.41 34.05 453 1.4520 223.88 187.39 30.80 454 1.4530 215.74 187.37 30.23 455 1.4540 214.02 187.34 30.12 456 1.4550 212.14 187.32 29.96 457 1.4560 189.40 187.30 28.30 458 1.4570 203.44 187.27 29.36 459 1.4580 212.41 187.25 29.99 460 1.4590 243.53 187.23 32.09 461 1.4600 215.28 187.20 30.08 462 1.4610 249.99 187.18 32.48 463 1.4620 216.51 187.15 30.26 464 1.4630 190.14 187.13 28.44 465 1.4640 199.29 187.11 29.08 466 1.4650 201.24 187.09 29.21 467 1.4660 203.33 187.06 29.37 468 1.4670 208.37 187.04 29.72 469 1.4680 206.58 187.01 29.61 470 1.4690 208.43 186.99 29.75 471 1.4700 203.31 186.97 29.39 472 1.4710 226.39 186.95 30.85 473 1.4720 209.99 186.92 29.77 474 1.4730 232.82 186.90 31.33 475 1.4740 201.70 186.88 29.10 476 1.4750 233.84 186.85 31.50 477 1.4760 235.17 186.83 31.51 478 1.4770 209.94 186.81 29.79 479 1.4780 206.71 186.78 29.59 480 1.4790 255.42 186.76 32.79 481 1.4800 234.77 186.74 31.53 482 1.4810 201.38 186.71 29.17 483 1.4820 230.92 186.69 31.12 484 1.4830 224.55 186.67 30.80 485 1.4840 235.63 186.65 31.61 486 1.4850 261.84 186.62 33.31 487 1.4860 237.24 186.60 31.72 488 1.4870 227.26 186.58 31.05 489 1.4880 244.06 186.55 32.15 490 1.4890 231.46 186.53 31.29 491 1.4900 234.52 186.51 31.55 492 1.4910 216.01 186.49 30.24 493 1.4920 214.53 186.46 29.99 494 1.4930 243.28 186.44 32.12 495 1.4940 228.69 186.42 31.16 496 1.4950 227.85 186.40 31.11 497 1.4960 226.53 186.37 31.02 498 1.4970 183.10 186.35 27.82 499 1.4980 225.28 186.33 30.64 500 1.4990 257.34 186.30 33.02 501 1.5000 239.47 186.28 31.83 502 1.5010 219.15 186.26 30.45 503 1.5020 227.26 186.24 30.87 504 1.5030 297.57 186.21 35.47 505 1.5040 248.19 186.19 32.36 506 1.5050 253.90 186.17 32.78 507 1.5060 242.85 186.15 31.98 508 1.5070 263.62 186.12 33.29 509 1.5080 226.20 186.10 30.82 510 1.5090 239.46 186.08 31.78 511 1.5100 211.91 186.06 29.85 512 1.5110 190.90 186.04 28.40 513 1.5120 218.39 186.01 30.44 514 1.5130 233.10 185.99 31.42 515 1.5140 239.83 185.97 31.93 516 1.5150 239.46 185.95 31.79 517 1.5160 208.04 185.92 29.69 518 1.5170 216.31 185.90 30.29 519 1.5180 254.16 185.88 32.74 520 1.5190 252.80 185.86 32.71 521 1.5200 214.81 185.84 30.10 522 1.5210 200.61 185.81 29.16 523 1.5220 212.45 185.79 30.00 524 1.5230 205.36 185.77 29.51 525 1.5240 232.33 185.75 31.33 526 1.5250 274.70 185.72 34.06 527 1.5260 212.57 185.70 29.95 528 1.5270 246.14 185.68 32.20 529 1.5280 234.30 185.66 31.48 530 1.5290 251.08 185.64 32.61 531 1.5300 235.18 185.61 31.58 532 1.5310 258.23 185.59 33.04 533 1.5320 256.95 185.57 33.01 534 1.5330 239.67 185.55 31.90 535 1.5340 222.69 185.53 30.59 536 1.5350 210.16 185.51 29.77 537 1.5360 211.16 185.48 29.88 538 1.5370 232.89 185.46 31.31 539 1.5380 240.53 185.44 31.91 540 1.5390 217.80 185.42 30.41 541 1.5400 194.44 185.40 28.71 542 1.5410 223.59 185.37 30.74 543 1.5420 220.76 185.35 30.58 544 1.5430 255.89 185.33 32.87 545 1.5440 272.50 185.31 33.99 546 1.5450 228.25 185.29 31.04 547 1.5460 235.33 185.27 31.44 548 1.5470 216.05 185.24 30.22 549 1.5480 209.84 185.22 29.85 550 1.5490 233.83 185.20 31.49 551 1.5500 211.38 185.18 29.95 552 1.5510 232.66 185.16 31.39 553 1.5520 237.08 185.14 31.67 554 1.5530 226.99 185.12 30.99 555 1.5540 251.15 185.09 32.62 556 1.5550 264.64 185.07 33.53 557 1.5560 259.80 185.05 33.14 558 1.5570 203.62 185.03 29.34 559 1.5580 219.09 185.01 30.42 560 1.5590 231.68 184.99 31.33 561 1.5600 206.87 184.97 29.58 562 1.5610 229.07 184.95 31.13 563 1.5620 226.07 184.92 30.94 564 1.5630 221.14 184.90 30.62 565 1.5640 240.94 184.88 31.91 566 1.5650 233.96 184.86 31.38 567 1.5660 252.11 184.84 32.52 568 1.5670 249.79 184.82 32.48 569 1.5680 182.89 184.80 27.83 570 1.5690 186.95 184.77 28.14 571 1.5700 205.33 184.75 29.54 572 1.5710 224.50 184.73 30.81 573 1.5720 224.39 184.71 30.81 574 1.5730 215.61 184.69 29.99 575 1.5740 255.77 184.67 32.88 576 1.5750 235.77 184.65 31.61 577 1.5760 233.63 184.63 31.48 578 1.5770 219.99 184.61 30.58 579 1.5780 222.67 184.59 30.76 580 1.5790 211.70 184.57 29.96 581 1.5800 245.15 184.54 32.14 582 1.5810 247.30 184.52 32.32 583 1.5820 225.24 184.50 30.85 584 1.5830 197.55 184.48 28.97 585 1.5840 215.80 184.46 30.14 586 1.5850 205.03 184.44 29.47 587 1.5860 220.34 184.42 30.56 588 1.5870 203.37 184.40 29.38 589 1.5880 240.56 184.38 31.79 590 1.5890 231.60 184.36 31.28 591 1.5900 246.32 184.34 32.37 592 1.5910 227.58 184.32 31.06 593 1.5920 244.05 184.30 32.12 594 1.5930 218.94 184.27 30.40 595 1.5940 169.56 184.25 26.77 596 1.5950 187.24 184.23 28.05 597 1.5960 223.56 184.21 30.75 598 1.5970 197.94 184.19 28.92 599 1.5980 200.21 184.17 29.02 600 1.5990 238.30 184.15 31.80 601 1.6000 240.49 184.13 31.95 602 1.6010 219.45 184.11 30.52 603 1.6020 242.78 184.09 32.05 604 1.6030 223.74 184.07 30.72 605 1.6040 212.35 184.05 29.93 606 1.6050 227.85 184.03 31.09 607 1.6060 273.01 184.01 34.01 608 1.6070 274.14 183.99 34.05 609 1.6080 213.24 183.97 30.02 610 1.6090 218.36 183.95 30.41 611 1.6100 238.09 183.93 31.78 612 1.6110 257.66 183.91 33.03 613 1.6120 235.53 183.89 31.51 614 1.6130 229.76 183.87 31.25 615 1.6140 197.24 183.85 28.81 616 1.6150 202.58 183.83 29.16 617 1.6160 240.51 183.81 31.94 618 1.6170 233.22 183.79 31.45 619 1.6180 220.10 183.77 30.54 620 1.6190 193.59 183.75 28.64 621 1.6200 226.29 183.73 30.93 622 1.6210 218.48 183.71 30.42 623 1.6220 199.01 183.69 29.00 624 1.6230 249.88 183.67 32.51 625 1.6240 225.45 183.65 30.90 626 1.6250 248.16 183.63 32.38 627 1.6260 212.69 183.61 29.93 628 1.6270 179.25 183.59 27.63 629 1.6280 194.84 183.57 28.74 630 1.6290 209.87 183.55 29.84 631 1.6300 198.46 183.53 29.04 632 1.6310 253.64 183.51 32.61 633 1.6320 243.57 183.49 32.12 634 1.6330 236.38 183.47 31.65 635 1.6340 227.33 183.45 31.02 636 1.6350 229.05 183.43 31.11 637 1.6360 243.03 183.41 32.08 638 1.6370 271.81 183.39 33.91 639 1.6380 262.27 183.37 33.26 640 1.6390 221.67 183.35 30.67 641 1.6400 234.03 183.33 31.46 642 1.6410 259.05 183.31 32.90 643 1.6420 198.52 183.29 28.88 644 1.6430 178.02 183.27 27.43 645 1.6440 175.32 183.25 27.22 646 1.6450 191.46 183.23 28.47 647 1.6460 222.86 183.21 30.69 648 1.6470 244.08 183.19 32.09 649 1.6480 288.18 183.17 34.90 650 1.6490 267.27 183.15 33.66 651 1.6500 233.15 183.13 31.40 652 1.6510 259.18 183.12 33.10 653 1.6520 190.35 183.10 28.07 654 1.6530 164.49 183.08 26.30 655 1.6540 186.98 183.06 28.14 656 1.6550 190.84 183.04 28.35 657 1.6560 201.67 183.02 29.10 658 1.6570 208.34 183.00 29.63 659 1.6580 229.25 182.98 31.02 660 1.6590 236.63 182.96 31.65 661 1.6600 252.07 182.94 32.64 662 1.6610 214.92 182.92 30.10 663 1.6620 232.39 182.90 31.31 664 1.6630 230.56 182.88 31.23 665 1.6640 224.16 182.86 30.80 666 1.6650 231.84 182.85 31.22 667 1.6660 181.71 182.83 27.62 668 1.6670 210.54 182.81 29.79 669 1.6680 261.74 182.79 33.24 670 1.6690 238.23 182.77 31.76 671 1.6700 192.08 182.75 28.47 672 1.6710 225.79 182.73 30.82 673 1.6720 234.53 182.71 31.50 674 1.6730 240.09 182.69 31.81 675 1.6740 189.45 182.67 28.29 676 1.6750 188.63 182.65 28.12 677 1.6760 206.69 182.64 29.42 678 1.6770 229.43 182.62 31.11 679 1.6780 193.41 182.60 28.52 680 1.6790 235.39 182.58 31.55 681 1.6800 261.21 182.56 33.23 682 1.6810 234.90 182.54 31.52 683 1.6820 227.77 182.52 31.01 684 1.6830 249.20 182.50 32.55 685 1.6840 237.92 182.49 31.77 686 1.6850 227.42 182.47 31.02 687 1.6860 232.33 182.45 31.34 688 1.6870 223.76 182.43 30.78 689 1.6880 226.85 182.41 31.02 690 1.6890 218.31 182.39 30.43 691 1.6900 247.26 182.37 32.26 692 1.6910 251.89 182.35 32.63 693 1.6920 262.95 182.34 33.36 694 1.6930 233.36 182.32 31.41 695 1.6940 221.12 182.30 30.65 696 1.6950 223.02 182.28 30.75 697 1.6960 232.63 182.26 31.38 698 1.6970 239.07 182.24 31.82 699 1.6980 228.28 182.23 31.11 700 1.6990 213.13 182.21 30.07 701 1.7000 234.87 182.19 31.53 702 1.7010 234.75 182.17 31.51 703 1.7020 206.42 182.15 29.53 704 1.7030 264.02 182.13 33.22 705 1.7040 262.33 182.11 33.18 706 1.7050 266.71 182.10 33.45 707 1.7060 216.42 182.08 30.20 708 1.7070 254.42 182.06 32.81 709 1.7080 220.44 182.04 30.52 710 1.7090 186.59 182.02 28.10 711 1.7100 162.84 182.00 26.21 712 1.7110 177.51 181.99 27.43 713 1.7120 222.09 181.97 30.59 714 1.7130 232.18 181.95 31.29 715 1.7140 266.55 181.93 33.56 716 1.7150 270.89 181.91 33.86 717 1.7160 254.68 181.90 32.67 718 1.7170 202.49 181.88 29.26 719 1.7180 207.52 181.86 29.58 720 1.7190 222.68 181.84 30.74 721 1.7200 197.76 181.82 28.97 722 1.7210 211.06 181.80 29.90 723 1.7220 229.86 181.79 31.23 724 1.7230 210.51 181.77 29.67 725 1.7240 206.44 181.75 29.47 726 1.7250 245.16 181.73 32.17 727 1.7260 230.11 181.71 31.19 728 1.7270 236.96 181.70 31.66 729 1.7280 206.69 181.68 29.51 730 1.7290 220.46 181.66 30.53 731 1.7300 238.68 181.64 31.82 732 1.7310 224.78 181.63 30.88 733 1.7320 224.00 181.61 30.70 734 1.7330 183.26 181.59 27.84 735 1.7340 216.28 181.57 30.22 736 1.7350 207.81 181.55 29.62 737 1.7360 224.31 181.54 30.75 738 1.7370 225.66 181.52 30.92 739 1.7380 188.37 181.50 28.24 740 1.7390 191.09 181.48 28.40 741 1.7400 234.56 181.47 31.39 742 1.7410 220.93 181.45 30.49 743 1.7420 208.57 181.43 29.72 744 1.7430 191.94 181.41 28.54 745 1.7440 169.84 181.40 26.85 746 1.7450 209.25 181.38 29.71 747 1.7460 234.13 181.36 31.51 748 1.7470 193.59 181.34 28.51 749 1.7480 185.05 181.32 27.92 750 1.7490 250.86 181.31 32.52 751 1.7500 266.91 181.29 33.64 752 1.7510 215.68 181.27 30.17 753 1.7520 221.47 181.26 30.60 754 1.7530 223.66 181.24 30.77 755 1.7540 204.34 181.22 29.41 756 1.7550 194.50 181.20 28.67 757 1.7560 219.50 181.19 30.39 758 1.7570 245.35 181.17 32.26 759 1.7580 223.76 181.15 30.77 760 1.7590 165.47 181.13 26.41 761 1.7600 169.05 181.12 26.78 762 1.7610 170.01 181.10 26.84 763 1.7620 180.60 181.08 27.62 764 1.7630 208.83 181.07 29.68 765 1.7640 216.99 181.05 30.31 766 1.7650 198.00 181.03 28.98 767 1.7660 194.66 181.01 28.57 768 1.7670 154.88 181.00 25.23 769 1.7680 211.30 180.98 29.88 770 1.7690 212.37 180.96 30.04 771 1.7700 194.84 180.95 28.76 772 1.7710 193.25 180.93 28.65 773 1.7720 210.07 180.91 29.85 774 1.7730 226.15 180.89 30.94 775 1.7740 229.93 180.88 31.21 776 1.7750 228.77 180.86 31.15 777 1.7760 207.28 180.84 29.65 778 1.7770 195.57 180.83 28.80 779 1.7780 170.98 180.81 26.90 780 1.7790 167.25 180.79 26.60 781 1.7800 215.65 180.77 30.17 782 1.7810 196.77 180.76 28.83 783 1.7820 175.27 180.74 27.24 784 1.7830 176.78 180.72 27.38 785 1.7840 158.67 180.71 25.92 786 1.7850 188.89 180.69 28.23 787 1.7860 220.37 180.67 30.58 788 1.7870 200.74 180.66 29.18 789 1.7880 225.10 180.64 30.84 790 1.7890 208.28 180.62 29.69 791 1.7900 231.05 180.61 31.21 792 1.7910 224.78 180.59 30.86 793 1.7920 212.92 180.57 30.04 794 1.7930 193.57 180.56 28.62 795 1.7940 162.04 180.54 26.14 796 1.7950 164.08 180.52 26.41 797 1.7960 190.06 180.51 28.35 798 1.7970 217.88 180.49 30.38 799 1.7980 219.48 180.47 30.52 800 1.7990 230.99 180.46 31.27 801 1.8000 231.62 180.44 31.32 802 1.8010 204.58 180.42 29.27 803 1.8020 170.84 180.41 26.86 804 1.8030 256.48 180.39 32.79 805 1.8040 252.62 180.38 32.66 806 1.8050 193.44 180.36 28.56 807 1.8060 182.66 180.34 27.85 808 1.8070 159.58 180.33 25.98 809 1.8080 185.33 180.31 27.88 810 1.8090 232.22 180.29 31.37 811 1.8100 215.49 180.28 30.22 812 1.8110 205.80 180.26 29.55 813 1.8120 209.51 180.24 29.80 814 1.8130 214.53 180.23 30.16 815 1.8140 169.61 180.21 26.69 816 1.8150 195.21 180.20 28.74 817 1.8160 205.58 180.18 29.50 818 1.8170 191.86 180.16 28.50 819 1.8180 193.98 180.15 28.72 820 1.8190 194.67 180.13 28.72 821 1.8200 237.43 180.11 31.61 822 1.8210 223.15 180.10 30.71 823 1.8220 222.10 180.08 30.68 824 1.8230 205.10 180.07 29.48 825 1.8240 199.18 180.05 29.04 826 1.8250 205.04 180.03 29.49 827 1.8260 203.70 180.02 29.31 828 1.8270 171.43 180.00 26.92 829 1.8280 184.13 179.99 27.88 830 1.8290 174.88 179.97 26.99 831 1.8300 238.28 179.95 31.72 832 1.8310 187.84 179.94 28.07 833 1.8320 177.58 179.92 27.34 834 1.8330 220.50 179.91 30.56 835 1.8340 209.79 179.89 29.82 836 1.8350 200.15 179.87 29.12 837 1.8360 210.73 179.86 29.88 838 1.8370 194.64 179.84 28.71 839 1.8380 196.08 179.83 28.84 840 1.8390 209.40 179.81 29.80 841 1.8400 233.88 179.79 31.45 842 1.8410 223.80 179.78 30.63 843 1.8420 214.96 179.76 29.90 844 1.8430 224.58 179.75 30.82 845 1.8440 209.35 179.73 29.60 846 1.8450 187.96 179.72 28.11 847 1.8460 185.43 179.70 27.89 848 1.8470 178.43 179.68 27.36 849 1.8480 240.96 179.67 31.97 850 1.8490 238.89 179.65 31.72 851 1.8500 192.89 179.64 28.60 852 1.8510 185.15 179.62 27.98 853 1.8520 249.29 179.61 32.44 854 1.8530 260.06 179.59 33.08 855 1.8540 190.25 179.58 28.29 856 1.8550 239.36 179.56 31.71 857 1.8560 219.69 179.54 30.43 858 1.8570 207.84 179.53 29.67 859 1.8580 188.59 179.51 28.28 860 1.8590 202.90 179.50 29.30 861 1.8600 208.64 179.48 29.73 862 1.8610 202.28 179.47 29.31 863 1.8620 171.92 179.45 27.00 864 1.8630 194.13 179.44 28.61 865 1.8640 230.14 179.42 31.28 866 1.8650 247.61 179.41 32.36 867 1.8660 205.53 179.39 29.48 868 1.8670 173.05 179.38 27.03 869 1.8680 155.70 179.36 25.65 870 1.8690 169.89 179.35 26.81 871 1.8700 149.06 179.33 25.10 872 1.8710 149.61 179.31 25.13 873 1.8720 213.23 179.30 29.96 874 1.8730 222.56 179.28 30.71 875 1.8740 196.07 179.27 28.82 876 1.8750 173.22 179.25 27.07 877 1.8760 196.46 179.24 28.68 878 1.8770 157.16 179.22 25.74 879 1.8780 155.40 179.21 25.68 880 1.8790 179.25 179.19 27.53 881 1.8800 180.75 179.18 27.68 882 1.8810 164.94 179.16 26.46 883 1.8820 183.46 179.15 27.86 884 1.8830 201.45 179.13 29.22 885 1.8840 175.80 179.12 27.24 886 1.8850 159.34 179.10 25.96 887 1.8860 208.48 179.09 29.57 888 1.8870 207.76 179.07 29.60 889 1.8880 223.22 179.06 30.77 890 1.8890 190.12 179.04 28.37 891 1.8900 196.42 179.03 28.85 892 1.8910 190.56 179.01 28.39 893 1.8920 191.35 179.00 28.45 894 1.8930 207.67 178.98 29.67 895 1.8940 199.71 178.97 29.08 896 1.8950 170.67 178.95 26.85 897 1.8960 174.18 178.94 27.20 898 1.8970 167.35 178.92 26.60 899 1.8980 192.35 178.91 28.45 900 1.8990 205.08 178.90 29.44 901 1.9000 173.80 178.88 27.03 902 1.9010 159.17 178.87 25.93 903 1.9020 175.21 178.85 27.28 904 1.9030 164.82 178.84 26.46 905 1.9040 199.09 178.82 29.01 906 1.9050 188.24 178.81 28.24 907 1.9060 187.13 178.79 28.15 908 1.9070 175.79 178.78 27.29 909 1.9080 202.71 178.76 29.14 910 1.9090 195.84 178.75 28.77 911 1.9100 199.93 178.73 29.07 912 1.9110 205.23 178.72 29.38 913 1.9120 196.51 178.71 28.70 914 1.9130 146.05 178.69 24.75 915 1.9140 190.44 178.68 28.41 916 1.9150 225.52 178.66 30.91 917 1.9160 193.03 178.65 28.58 918 1.9170 176.76 178.63 27.31 919 1.9180 185.84 178.62 28.01 920 1.9190 162.07 178.60 26.12 921 1.9200 187.18 178.59 28.06 922 1.9210 187.26 178.57 28.15 923 1.9220 205.74 178.56 29.51 924 1.9230 201.42 178.55 29.23 925 1.9240 180.85 178.53 27.65 926 1.9250 192.04 178.52 28.58 927 1.9260 199.74 178.50 29.14 928 1.9270 200.17 178.49 29.15 929 1.9280 180.76 178.48 27.68 930 1.9290 165.23 178.46 26.48 931 1.9300 171.27 178.45 26.96 932 1.9310 206.11 178.43 29.48 933 1.9320 219.46 178.42 30.50 934 1.9330 201.22 178.40 29.08 935 1.9340 201.11 178.39 29.06 936 1.9350 204.37 178.38 29.39 937 1.9360 188.49 178.36 28.26 938 1.9370 182.68 178.35 27.82 939 1.9380 182.24 178.33 27.79 940 1.9390 201.07 178.32 29.16 941 1.9400 173.87 178.31 27.07 942 1.9410 193.11 178.29 28.57 943 1.9420 202.35 178.28 29.20 944 1.9430 149.15 178.26 25.08 945 1.9440 194.13 178.25 28.46 946 1.9450 176.03 178.24 27.12 947 1.9460 174.85 178.22 26.94 948 1.9470 196.52 178.21 28.66 949 1.9480 181.69 178.19 27.65 950 1.9490 201.79 178.18 29.21 951 1.9500 229.08 178.17 31.11 952 1.9510 190.73 178.15 28.35 953 1.9520 193.54 178.14 28.64 954 1.9530 232.87 178.12 31.34 955 1.9540 213.53 178.11 30.04 956 1.9550 173.80 178.10 27.07 957 1.9560 170.93 178.08 26.79 958 1.9570 214.50 178.07 30.05 959 1.9580 211.56 178.06 29.90 960 1.9590 230.25 178.04 31.17 961 1.9600 197.10 178.03 28.84 962 1.9610 161.91 178.01 26.12 963 1.9620 194.69 178.00 28.51 964 1.9630 207.13 177.99 29.54 965 1.9640 206.40 177.98 29.56 966 1.9650 245.57 177.96 32.00 967 1.9660 208.98 177.95 29.41 968 1.9670 190.86 177.93 28.31 969 1.9680 194.84 177.92 28.60 970 1.9690 202.64 177.91 29.21 971 1.9700 174.73 177.89 27.04 972 1.9710 176.37 177.88 27.31 973 1.9720 146.91 177.87 24.90 974 1.9730 189.49 177.85 28.28 975 1.9740 234.61 177.84 31.50 976 1.9750 212.32 177.83 29.95 977 1.9760 176.14 177.81 27.25 978 1.9770 158.10 177.80 25.80 979 1.9780 180.45 177.79 27.65 980 1.9790 204.49 177.77 29.35 981 1.9800 197.01 177.76 28.84 982 1.9810 195.56 177.75 28.72 983 1.9820 226.18 177.73 30.78 984 1.9830 222.31 177.72 30.62 985 1.9840 204.53 177.71 29.40 986 1.9850 150.57 177.69 25.06 987 1.9860 173.01 177.68 27.03 988 1.9870 178.67 177.67 27.27 989 1.9880 143.84 177.65 24.57 990 1.9890 154.11 177.64 25.49 991 1.9900 207.78 177.63 29.59 992 1.9910 211.56 177.61 29.78 993 1.9920 180.49 177.60 27.62 994 1.9930 178.78 177.59 27.38 995 1.9940 141.12 177.57 24.33 996 1.9950 158.72 177.56 25.85 997 1.9960 179.70 177.55 27.49 998 1.9970 188.85 177.54 28.23 999 1.9980 166.65 177.52 26.54 1000 1.9990 167.63 177.51 26.56 1001 2.0000 186.24 177.50 22.82 1002 2.0010 191.79 177.48 23.18 1003 2.0020 178.17 177.47 22.35 1004 2.0030 166.47 177.46 21.63 1005 2.0040 198.66 177.44 23.57 1006 2.0050 203.48 177.43 23.88 1007 2.0060 213.23 177.42 24.47 1008 2.0070 163.71 177.41 21.42 1009 2.0080 195.85 177.39 23.42 1010 2.0090 194.91 177.38 23.42 1011 2.0100 211.90 177.37 24.42 1012 2.0110 213.95 177.35 24.45 1013 2.0120 150.43 177.34 20.52 1014 2.0130 170.87 177.33 21.90 1015 2.0140 190.57 177.32 23.10 1016 2.0150 154.28 177.30 20.81 1017 2.0160 152.92 177.29 20.71 1018 2.0170 145.24 177.28 20.07 1019 2.0180 166.36 177.26 21.49 1020 2.0190 182.14 177.25 22.62 1021 2.0200 162.73 177.24 21.32 1022 2.0210 153.22 177.23 20.66 1023 2.0220 184.71 177.21 22.71 1024 2.0230 192.79 177.20 23.27 1025 2.0240 177.72 177.19 22.35 1026 2.0250 168.77 177.18 21.80 1027 2.0260 170.32 177.16 21.88 1028 2.0270 148.19 177.15 20.42 1029 2.0280 171.74 177.14 21.88 1030 2.0290 161.46 177.13 21.18 1031 2.0300 180.68 177.11 22.55 1032 2.0310 176.01 177.10 22.23 1033 2.0320 158.17 177.09 21.04 1034 2.0330 185.05 177.08 22.68 1035 2.0340 185.55 177.06 22.81 1036 2.0350 175.77 177.05 22.25 1037 2.0360 198.57 177.04 23.49 1038 2.0370 189.06 177.03 23.02 1039 2.0380 177.90 177.01 22.34 1040 2.0390 172.76 177.00 21.99 1041 2.0400 184.97 176.99 22.79 1042 2.0410 206.74 176.98 24.06 1043 2.0420 193.30 176.96 23.29 1044 2.0430 189.05 176.95 23.07 1045 2.0440 163.03 176.94 21.40 1046 2.0450 158.36 176.93 21.09 1047 2.0460 166.18 176.92 21.63 1048 2.0470 180.35 176.90 22.50 1049 2.0480 188.59 176.89 22.97 1050 2.0490 200.64 176.88 23.73 1051 2.0500 167.17 176.87 21.56 1052 2.0510 158.14 176.85 21.04 1053 2.0520 171.46 176.84 21.92 1054 2.0530 210.77 176.83 24.33 1055 2.0540 191.52 176.82 23.19 1056 2.0550 174.62 176.81 22.14 1057 2.0560 173.41 176.79 22.04 1058 2.0570 203.43 176.78 23.92 1059 2.0580 200.65 176.77 23.75 1060 2.0590 211.60 176.76 24.33 1061 2.0600 162.25 176.75 21.32 1062 2.0610 183.13 176.73 22.62 1063 2.0620 211.70 176.72 24.40 1064 2.0630 180.03 176.71 22.46 1065 2.0640 190.70 176.70 23.04 1066 2.0650 176.04 176.69 22.17 1067 2.0660 171.67 176.68 21.95 1068 2.0670 179.86 176.66 22.50 1069 2.0680 175.33 176.65 22.14 1070 2.0690 147.32 176.64 20.32 1071 2.0700 180.88 176.63 22.54 1072 2.0710 175.74 176.62 22.20 1073 2.0720 169.49 176.60 21.81 1074 2.0730 190.55 176.59 23.09 1075 2.0740 179.52 176.58 22.39 1076 2.0750 173.49 176.57 22.02 1077 2.0760 149.84 176.56 20.47 1078 2.0770 174.19 176.54 22.05 1079 2.0780 181.67 176.53 22.58 1080 2.0790 187.36 176.52 22.94 1081 2.0800 192.68 176.51 23.26 1082 2.0810 189.84 176.50 23.07 1083 2.0820 198.63 176.49 23.60 1084 2.0830 198.02 176.47 23.56 1085 2.0840 190.21 176.46 23.10 1086 2.0850 185.44 176.45 22.83 1087 2.0860 168.62 176.44 21.76 1088 2.0870 174.04 176.43 22.10 1089 2.0880 194.98 176.42 23.37 1090 2.0890 174.43 176.40 22.12 1091 2.0900 189.72 176.39 23.08 1092 2.0910 172.78 176.38 22.03 1093 2.0920 188.71 176.37 23.00 1094 2.0930 191.87 176.36 23.18 1095 2.0940 171.05 176.35 21.87 1096 2.0950 210.27 176.34 24.23 1097 2.0960 182.42 176.32 22.62 1098 2.0970 166.10 176.31 21.52 1099 2.0980 151.77 176.30 20.62 1100 2.0990 159.11 176.29 21.13 1101 2.1000 167.16 176.28 21.67 1102 2.1010 160.23 176.27 21.24 1103 2.1020 160.90 176.26 21.27 1104 2.1030 151.74 176.24 20.65 1105 2.1040 148.67 176.23 20.42 1106 2.1050 192.68 176.22 23.16 1107 2.1060 163.42 176.21 21.38 1108 2.1070 186.40 176.20 22.78 1109 2.1080 184.15 176.19 22.65 1110 2.1090 220.51 176.18 24.78 1111 2.1100 187.10 176.17 22.76 1112 2.1110 154.01 176.15 20.81 1113 2.1120 149.03 176.14 20.47 1114 2.1130 162.37 176.13 21.28 1115 2.1140 127.91 176.12 18.85 1116 2.1150 154.70 176.11 20.69 1117 2.1160 165.86 176.10 21.56 1118 2.1170 186.25 176.09 22.86 1119 2.1180 179.55 176.08 22.44 1120 2.1190 218.48 176.07 24.73 1121 2.1200 204.28 176.05 23.88 1122 2.1210 146.07 176.04 20.26 1123 2.1220 160.78 176.03 21.22 1124 2.1230 199.54 176.02 23.69 1125 2.1240 186.39 176.01 22.87 1126 2.1250 163.84 176.00 21.41 1127 2.1260 148.15 175.99 20.35 1128 2.1270 147.67 175.98 20.35 1129 2.1280 160.30 175.97 21.18 1130 2.1290 155.68 175.96 20.75 1131 2.1300 125.32 175.95 18.73 1132 2.1310 176.55 175.93 22.27 1133 2.1320 165.83 175.92 21.51 1134 2.1330 167.66 175.91 21.54 1135 2.1340 177.19 175.90 22.36 1136 2.1350 158.54 175.89 21.08 1137 2.1360 191.84 175.88 23.17 1138 2.1370 200.06 175.87 23.64 1139 2.1380 171.99 175.86 22.00 1140 2.1390 174.64 175.85 22.16 1141 2.1400 164.80 175.84 21.49 1142 2.1410 184.19 175.83 22.69 1143 2.1420 151.44 175.82 20.53 1144 2.1430 180.74 175.80 22.46 1145 2.1440 180.75 175.79 22.48 1146 2.1450 161.49 175.78 21.30 1147 2.1460 169.37 175.77 21.77 1148 2.1470 160.08 175.76 21.19 1149 2.1480 152.48 175.75 20.64 1150 2.1490 128.92 175.74 18.95 1151 2.1500 182.51 175.73 22.65 1152 2.1510 182.43 175.72 22.65 1153 2.1520 210.26 175.71 24.24 1154 2.1530 205.74 175.70 23.98 1155 2.1540 179.31 175.69 22.43 1156 2.1550 203.01 175.68 23.82 1157 2.1560 169.86 175.67 21.80 1158 2.1570 191.12 175.66 23.15 1159 2.1580 179.45 175.65 22.46 1160 2.1590 180.22 175.64 22.49 1161 2.1600 159.13 175.62 21.14 1162 2.1610 147.12 175.62 20.33 1163 2.1620 136.79 175.60 19.52 1164 2.1630 125.37 175.59 18.62 1165 2.1640 195.82 175.58 23.39 1166 2.1650 185.37 175.57 22.77 1167 2.1660 163.40 175.56 21.27 1168 2.1670 162.92 175.55 21.18 1169 2.1680 153.69 175.54 20.56 1170 2.1690 174.78 175.53 22.10 1171 2.1700 166.32 175.52 21.51 1172 2.1710 164.08 175.51 21.43 1173 2.1720 165.84 175.50 21.53 1174 2.1730 175.24 175.49 22.11 1175 2.1740 166.50 175.48 21.59 1176 2.1750 147.89 175.47 20.36 1177 2.1760 178.86 175.46 22.35 1178 2.1770 149.61 175.45 20.47 1179 2.1780 149.37 175.44 20.48 1180 2.1790 138.45 175.43 19.63 1181 2.1800 128.59 175.42 18.97 1182 2.1810 142.99 175.41 20.05 1183 2.1820 159.14 175.40 21.10 1184 2.1830 152.83 175.39 20.65 1185 2.1840 166.28 175.38 21.56 1186 2.1850 186.33 175.37 22.83 1187 2.1860 198.61 175.36 23.58 1188 2.1870 171.71 175.35 21.96 1189 2.1880 184.97 175.34 22.65 1190 2.1890 132.66 175.33 19.21 1191 2.1900 150.40 175.32 20.55 1192 2.1910 156.74 175.31 20.95 1193 2.1920 176.35 175.30 22.23 1194 2.1930 181.61 175.29 22.50 1195 2.1940 174.16 175.28 21.99 1196 2.1950 153.31 175.27 20.62 1197 2.1960 149.83 175.26 20.46 1198 2.1970 165.11 175.25 21.50 1199 2.1980 180.97 175.24 22.53 1200 2.1990 130.66 175.23 19.12 1201 2.2000 167.28 175.22 21.59 1202 2.2010 176.65 175.21 22.27 1203 2.2020 169.91 175.20 21.83 1204 2.2030 152.67 175.19 20.71 1205 2.2040 179.75 175.18 22.42 1206 2.2050 173.20 175.17 22.05 1207 2.2060 182.82 175.16 22.63 1208 2.2070 160.74 175.15 21.20 1209 2.2080 146.93 175.14 20.26 1210 2.2090 177.05 175.13 22.29 1211 2.2100 142.03 175.12 19.94 1212 2.2110 174.81 175.11 22.13 1213 2.2120 208.27 175.10 24.12 1214 2.2130 185.95 175.09 22.69 1215 2.2140 167.93 175.08 21.67 1216 2.2150 166.24 175.07 21.59 1217 2.2160 175.38 175.07 22.02 1218 2.2170 161.99 175.05 21.20 1219 2.2180 155.16 175.04 20.88 1220 2.2190 149.90 175.04 20.54 1221 2.2200 196.71 175.03 23.37 1222 2.2210 161.22 175.02 21.22 1223 2.2220 167.09 175.01 21.65 1224 2.2230 178.79 175.00 22.41 1225 2.2240 150.29 174.99 20.52 1226 2.2250 123.70 174.98 18.59 1227 2.2260 157.85 174.97 20.92 1228 2.2270 191.07 174.96 23.10 1229 2.2280 147.73 174.95 20.36 1230 2.2290 161.56 174.94 21.30 1231 2.2300 174.12 174.93 22.09 1232 2.2310 157.96 174.92 20.97 1233 2.2320 138.24 174.91 19.64 1234 2.2330 176.45 174.90 22.18 1235 2.2340 179.05 174.89 22.37 1236 2.2350 161.96 174.88 21.31 1237 2.2360 163.54 174.88 21.33 1238 2.2370 159.29 174.87 21.10 1239 2.2380 159.96 174.86 21.16 1240 2.2390 160.22 174.85 21.19 1241 2.2400 173.40 174.84 22.00 1242 2.2410 149.53 174.83 20.41 1243 2.2420 157.38 174.82 21.02 1244 2.2430 162.26 174.81 21.28 1245 2.2440 180.85 174.80 22.50 1246 2.2450 145.98 174.79 20.23 1247 2.2460 164.46 174.78 21.43 1248 2.2470 147.42 174.77 20.33 1249 2.2480 171.32 174.76 21.85 1250 2.2490 179.11 174.76 22.33 1251 2.2500 135.84 174.75 19.48 1252 2.2510 159.16 174.74 21.13 1253 2.2520 177.73 174.73 22.28 1254 2.2530 148.14 174.72 20.30 1255 2.2540 155.65 174.71 20.83 1256 2.2550 177.21 174.70 22.25 1257 2.2560 142.54 174.69 19.97 1258 2.2570 173.92 174.68 22.02 1259 2.2580 155.59 174.68 20.79 1260 2.2590 153.71 174.67 20.69 1261 2.2600 158.63 174.66 21.09 1262 2.2610 149.53 174.65 20.46 1263 2.2620 169.17 174.64 21.76 1264 2.2630 143.09 174.63 19.97 1265 2.2640 126.68 174.62 18.83 1266 2.2650 144.59 174.61 20.08 1267 2.2660 168.14 174.60 21.66 1268 2.2670 151.37 174.59 20.54 1269 2.2680 171.01 174.59 21.87 1270 2.2690 171.29 174.58 21.93 1271 2.2700 169.57 174.57 21.82 1272 2.2710 178.61 174.56 22.31 1273 2.2720 136.67 174.55 19.54 1274 2.2730 140.20 174.54 19.81 1275 2.2740 165.14 174.53 21.46 1276 2.2750 187.67 174.52 22.79 1277 2.2760 152.20 174.51 20.57 1278 2.2770 138.24 174.51 19.69 1279 2.2780 164.15 174.50 21.44 1280 2.2790 149.00 174.49 20.39 1281 2.2800 157.44 174.48 20.99 1282 2.2810 146.82 174.47 20.26 1283 2.2820 140.25 174.46 19.80 1284 2.2830 149.86 174.46 20.42 1285 2.2840 125.49 174.45 18.74 1286 2.2850 155.08 174.44 20.83 1287 2.2860 176.57 174.43 22.23 1288 2.2870 164.42 174.42 21.45 1289 2.2880 147.74 174.41 20.27 1290 2.2890 145.55 174.40 20.07 1291 2.2900 147.54 174.40 20.32 1292 2.2910 162.06 174.39 21.25 1293 2.2920 163.11 174.38 21.36 1294 2.2930 185.80 174.37 22.79 1295 2.2940 205.50 174.36 24.01 1296 2.2950 154.98 174.35 20.78 1297 2.2960 156.60 174.34 20.92 1298 2.2970 150.21 174.34 20.52 1299 2.2980 151.03 174.33 20.58 1300 2.2990 169.50 174.32 21.81 1301 2.3000 137.85 174.31 19.37 1302 2.3010 145.96 174.30 20.15 1303 2.3020 147.58 174.29 20.31 1304 2.3030 168.20 174.29 21.69 1305 2.3040 150.48 174.28 20.50 1306 2.3050 185.47 174.27 22.74 1307 2.3060 126.87 174.26 18.84 1308 2.3070 128.38 174.25 18.98 1309 2.3080 161.64 174.24 21.27 1310 2.3090 163.10 174.24 21.36 1311 2.3100 138.25 174.23 19.68 1312 2.3110 169.70 174.22 21.74 1313 2.3120 186.75 174.21 22.88 1314 2.3130 181.58 174.20 22.56 1315 2.3140 180.31 174.19 22.48 1316 2.3150 147.78 174.19 20.24 1317 2.3160 149.06 174.18 20.34 1318 2.3170 168.10 174.17 21.65 1319 2.3180 147.38 174.16 20.32 1320 2.3190 135.83 174.15 19.47 1321 2.3200 149.38 174.15 20.45 1322 2.3210 173.53 174.14 22.00 1323 2.3220 167.32 174.13 21.67 1324 2.3230 156.81 174.12 20.96 1325 2.3240 161.46 174.11 21.25 1326 2.3250 144.24 174.10 20.07 1327 2.3260 148.67 174.10 20.43 1328 2.3270 139.10 174.09 19.75 1329 2.3280 134.09 174.08 19.34 1330 2.3290 163.87 174.07 21.42 1331 2.3300 150.01 174.07 20.54 1332 2.3310 160.43 174.06 21.23 1333 2.3320 143.79 174.05 20.02 1334 2.3330 157.76 174.04 20.98 1335 2.3340 153.40 174.03 20.73 1336 2.3350 155.02 174.02 20.75 1337 2.3360 152.37 174.02 20.48 1338 2.3370 197.83 174.01 23.51 1339 2.3380 163.01 174.00 21.37 1340 2.3390 159.47 173.99 21.10 1341 2.3400 149.26 173.99 20.46 1342 2.3410 156.58 173.98 20.93 1343 2.3420 154.04 173.97 20.77 1344 2.3430 140.89 173.96 19.86 1345 2.3440 179.39 173.96 22.35 1346 2.3450 151.94 173.95 20.60 1347 2.3460 161.58 173.94 21.25 1348 2.3470 186.24 173.93 22.82 1349 2.3480 158.24 173.92 21.03 1350 2.3490 162.37 173.92 21.33 1351 2.3500 133.79 173.91 19.35 1352 2.3510 130.76 173.90 19.15 1353 2.3520 134.09 173.89 19.36 1354 2.3530 159.51 173.89 21.12 1355 2.3540 156.70 173.88 20.96 1356 2.3550 156.31 173.87 20.95 1357 2.3560 174.86 173.86 22.13 1358 2.3570 168.88 173.85 21.68 1359 2.3580 142.61 173.85 19.86 1360 2.3590 121.86 173.84 18.49 1361 2.3600 149.93 173.83 20.42 1362 2.3610 158.21 173.82 20.95 1363 2.3620 138.80 173.82 19.66 1364 2.3630 148.79 173.81 20.34 1365 2.3640 142.80 173.80 19.99 1366 2.3650 136.35 173.79 19.46 1367 2.3660 159.72 173.79 21.06 1368 2.3670 153.42 173.78 20.72 1369 2.3680 146.92 173.77 20.28 1370 2.3690 135.78 173.76 19.52 1371 2.3700 125.63 173.76 18.76 1372 2.3710 121.85 173.75 18.48 1373 2.3720 147.13 173.74 20.26 1374 2.3730 158.90 173.74 20.92 1375 2.3740 149.46 173.73 20.39 1376 2.3750 154.93 173.72 20.83 1377 2.3760 155.72 173.71 20.85 1378 2.3770 153.63 173.71 20.61 1379 2.3780 151.11 173.70 20.62 1380 2.3790 136.39 173.69 19.58 1381 2.3800 159.21 173.68 21.16 1382 2.3810 157.80 173.68 21.01 1383 2.3820 128.57 173.67 18.93 1384 2.3830 110.97 173.66 17.59 1385 2.3840 112.07 173.65 17.70 1386 2.3850 137.58 173.65 19.60 1387 2.3860 156.43 173.64 20.91 1388 2.3870 145.43 173.63 20.15 1389 2.3880 176.07 173.63 22.17 1390 2.3890 157.46 173.62 20.98 1391 2.3900 138.89 173.61 19.70 1392 2.3910 164.99 173.60 21.47 1393 2.3920 151.86 173.60 20.58 1394 2.3930 143.92 173.59 19.99 1395 2.3940 155.44 173.58 20.86 1396 2.3950 158.80 173.58 21.10 1397 2.3960 136.26 173.57 19.55 1398 2.3970 147.51 173.56 20.35 1399 2.3980 143.43 173.55 19.97 1400 2.3990 157.92 173.55 20.99 1401 2.4000 149.82 173.54 20.49 1402 2.4010 154.45 173.53 20.79 1403 2.4020 168.37 173.53 21.73 1404 2.4030 155.85 173.52 20.87 1405 2.4040 169.44 173.51 21.74 1406 2.4050 177.09 173.51 22.23 1407 2.4060 156.04 173.50 20.91 1408 2.4070 168.11 173.49 21.69 1409 2.4080 179.75 173.49 22.39 1410 2.4090 142.53 173.48 19.92 1411 2.4100 134.37 173.47 19.39 1412 2.4110 147.96 173.46 20.39 1413 2.4120 150.44 173.46 20.47 1414 2.4130 120.59 173.45 18.39 1415 2.4140 117.93 173.44 18.16 1416 2.4150 133.75 173.44 19.28 1417 2.4160 159.78 173.43 21.16 1418 2.4170 157.79 173.42 21.01 1419 2.4180 149.17 173.42 20.46 1420 2.4190 158.49 173.41 20.94 1421 2.4200 133.18 173.40 19.23 1422 2.4210 165.19 173.40 21.50 1423 2.4220 154.17 173.39 20.78 1424 2.4230 160.49 173.38 21.17 1425 2.4240 144.26 173.38 20.12 1426 2.4250 149.30 173.37 20.38 1427 2.4260 133.78 173.36 19.30 1428 2.4270 137.65 173.36 19.58 1429 2.4280 133.91 173.35 19.27 1430 2.4290 153.13 173.34 20.74 1431 2.4300 158.66 173.34 21.10 1432 2.4310 148.41 173.33 20.38 1433 2.4320 135.36 173.32 19.41 1434 2.4330 128.42 173.32 18.84 1435 2.4340 171.76 173.31 21.87 1436 2.4350 136.36 173.30 19.53 1437 2.4360 135.81 173.30 19.49 1438 2.4370 145.35 173.29 20.15 1439 2.4380 155.09 173.28 20.81 1440 2.4390 119.33 173.28 18.29 1441 2.4400 130.66 173.27 19.15 1442 2.4410 140.22 173.26 19.82 1443 2.4420 158.38 173.26 21.03 1444 2.4430 137.49 173.25 19.63 1445 2.4440 139.61 173.24 19.79 1446 2.4450 124.44 173.24 18.64 1447 2.4460 112.57 173.23 17.74 1448 2.4470 133.26 173.23 19.16 1449 2.4480 165.99 173.22 21.58 1450 2.4490 159.15 173.21 21.12 1451 2.4500 146.56 173.21 20.27 1452 2.4510 131.02 173.20 19.11 1453 2.4520 120.82 173.19 18.37 1454 2.4530 115.96 173.19 18.02 1455 2.4540 116.86 173.18 18.10 1456 2.4550 149.29 173.18 20.37 1457 2.4560 190.27 173.17 23.00 1458 2.4570 156.58 173.16 20.94 1459 2.4580 147.97 173.16 20.38 1460 2.4590 144.86 173.15 20.16 1461 2.4600 141.97 173.14 19.93 1462 2.4610 172.40 173.14 21.88 1463 2.4620 191.02 173.13 23.13 1464 2.4630 140.32 173.13 19.77 1465 2.4640 134.68 173.12 19.41 1466 2.4650 133.34 173.11 19.32 1467 2.4660 145.26 173.11 20.11 1468 2.4670 157.75 173.10 20.96 1469 2.4680 135.28 173.10 19.43 1470 2.4690 156.33 173.09 20.83 1471 2.4700 143.63 173.08 20.00 1472 2.4710 121.93 173.08 18.44 1473 2.4720 145.29 173.07 20.16 1474 2.4730 171.90 173.06 21.94 1475 2.4740 168.51 173.06 21.70 1476 2.4750 145.62 173.05 20.08 1477 2.4760 172.66 173.05 21.96 1478 2.4770 145.94 173.04 20.21 1479 2.4780 158.92 173.03 21.10 1480 2.4790 155.40 173.03 20.82 1481 2.4800 106.67 173.02 17.19 1482 2.4810 122.00 173.02 18.10 1483 2.4820 183.81 173.01 22.61 1484 2.4830 114.30 173.00 17.79 1485 2.4840 135.16 173.00 19.35 1486 2.4850 157.32 172.99 21.01 1487 2.4860 165.48 172.99 21.55 1488 2.4870 141.76 172.98 19.93 1489 2.4880 145.61 172.98 20.16 1490 2.4890 150.70 172.97 20.52 1491 2.4900 152.66 172.96 20.60 1492 2.4910 155.13 172.96 20.83 1493 2.4920 150.06 172.95 20.47 1494 2.4930 156.46 172.95 20.90 1495 2.4940 139.43 172.94 19.77 1496 2.4950 157.21 172.93 21.00 1497 2.4960 167.01 172.93 21.59 1498 2.4970 131.39 172.92 19.15 1499 2.4980 121.96 172.92 18.41 1500 2.4990 135.15 172.91 19.40 1501 2.5000 128.12 172.90 18.94 1502 2.5010 146.48 172.90 20.21 1503 2.5020 122.51 172.89 18.53 1504 2.5030 173.82 172.89 22.01 1505 2.5040 180.50 172.88 22.47 1506 2.5050 164.03 172.88 21.34 1507 2.5060 145.54 172.87 20.14 1508 2.5070 125.12 172.87 18.69 1509 2.5080 148.66 172.86 20.35 1510 2.5090 154.69 172.85 20.80 1511 2.5100 131.32 172.85 19.20 1512 2.5110 155.91 172.84 20.85 1513 2.5120 121.42 172.84 18.25 1514 2.5130 154.77 172.83 20.74 1515 2.5140 173.83 172.83 22.02 1516 2.5150 137.10 172.82 19.53 1517 2.5160 136.93 172.82 19.59 1518 2.5170 142.01 172.81 19.89 1519 2.5180 139.22 172.80 19.72 1520 2.5190 133.44 172.80 19.28 1521 2.5200 102.46 172.79 16.93 1522 2.5210 122.16 172.79 18.50 1523 2.5220 133.21 172.78 19.32 1524 2.5230 140.56 172.78 19.83 1525 2.5240 127.64 172.77 18.89 1526 2.5250 151.18 172.77 20.42 1527 2.5260 147.84 172.76 20.30 1528 2.5270 144.06 172.76 20.07 1529 2.5280 117.06 172.75 18.11 1530 2.5290 125.13 172.74 18.69 1531 2.5300 128.12 172.74 18.96 1532 2.5310 120.68 172.73 18.39 1533 2.5320 136.25 172.73 19.50 1534 2.5330 143.06 172.72 19.97 1535 2.5340 152.87 172.72 20.54 1536 2.5350 183.83 172.71 22.68 1537 2.5360 143.90 172.71 20.02 1538 2.5370 153.81 172.70 20.70 1539 2.5380 167.27 172.70 21.57 1540 2.5390 131.96 172.69 19.18 1541 2.5400 155.53 172.69 20.85 1542 2.5410 140.52 172.68 19.85 1543 2.5420 156.90 172.68 20.96 1544 2.5430 171.45 172.67 21.89 1545 2.5440 179.47 172.66 22.38 1546 2.5450 139.36 172.66 19.67 1547 2.5460 149.30 172.65 20.32 1548 2.5470 125.05 172.65 18.74 1549 2.5480 147.83 172.65 20.30 1550 2.5490 157.73 172.64 20.95 1551 2.5500 140.12 172.63 19.80 1552 2.5510 137.50 172.63 19.57 1553 2.5520 137.14 172.62 19.57 1554 2.5530 139.06 172.62 19.71 1555 2.5540 128.16 172.61 18.90 1556 2.5550 147.20 172.61 20.26 1557 2.5560 133.75 172.60 19.34 1558 2.5570 159.51 172.60 21.14 1559 2.5580 128.14 172.59 18.97 1560 2.5590 146.06 172.59 20.17 1561 2.5600 145.54 172.58 20.15 1562 2.5610 157.51 172.58 21.00 1563 2.5620 163.94 172.57 21.37 1564 2.5630 172.59 172.57 21.92 1565 2.5640 141.90 172.56 19.92 1566 2.5650 165.09 172.56 21.44 1567 2.5660 139.12 172.55 19.68 1568 2.5670 138.98 172.55 19.72 1569 2.5680 157.66 172.54 20.98 1570 2.5690 179.63 172.54 22.39 1571 2.5700 152.61 172.54 20.67 1572 2.5710 121.84 172.53 18.39 1573 2.5720 125.67 172.52 18.76 1574 2.5730 126.12 172.52 18.81 1575 2.5740 138.85 172.51 19.73 1576 2.5750 140.29 172.51 19.83 1577 2.5760 161.55 172.51 21.25 1578 2.5770 163.99 172.50 21.36 1579 2.5780 147.33 172.50 20.31 1580 2.5790 128.00 172.49 18.88 1581 2.5800 155.17 172.49 20.83 1582 2.5810 183.59 172.48 22.62 1583 2.5820 139.86 172.48 19.81 1584 2.5830 142.84 172.47 19.94 1585 2.5840 144.89 172.47 20.07 1586 2.5850 148.40 172.46 20.38 1587 2.5860 131.97 172.46 19.19 1588 2.5870 158.25 172.45 21.04 1589 2.5880 140.83 172.45 19.87 1590 2.5890 153.75 172.44 20.76 1591 2.5900 171.63 172.44 21.88 1592 2.5910 158.34 172.43 21.01 1593 2.5920 165.57 172.43 21.40 1594 2.5930 105.16 172.43 17.13 1595 2.5940 151.65 172.42 20.58 1596 2.5950 155.20 172.42 20.80 1597 2.5960 164.02 172.41 21.35 1598 2.5970 154.00 172.41 20.77 1599 2.5980 132.51 172.40 19.24 1600 2.5990 154.15 172.40 20.71 1601 2.6000 172.43 172.39 21.92 1602 2.6010 169.32 172.39 21.73 1603 2.6020 196.30 172.38 23.46 1604 2.6030 171.80 172.38 21.95 1605 2.6040 157.12 172.38 20.96 1606 2.6050 161.74 172.37 21.20 1607 2.6060 172.62 172.37 21.96 1608 2.6070 147.87 172.36 20.36 1609 2.6080 166.51 172.36 21.55 1610 2.6090 191.78 172.35 23.21 1611 2.6100 161.57 172.35 21.26 1612 2.6110 140.24 172.35 19.85 1613 2.6120 155.75 172.34 20.91 1614 2.6130 147.35 172.34 20.30 1615 2.6140 168.47 172.33 21.70 1616 2.6150 170.99 172.33 21.85 1617 2.6160 152.52 172.32 20.69 1618 2.6170 139.34 172.32 19.61 1619 2.6180 118.62 172.32 18.16 1620 2.6190 136.96 172.31 19.58 1621 2.6200 168.22 172.31 21.65 1622 2.6210 145.67 172.30 20.18 1623 2.6220 158.71 172.30 21.10 1624 2.6230 142.51 172.29 19.98 1625 2.6240 128.35 172.29 18.93 1626 2.6250 136.64 172.29 19.44 1627 2.6260 146.19 172.28 20.23 1628 2.6270 153.34 172.28 20.68 1629 2.6280 123.03 172.27 18.53 1630 2.6290 135.19 172.27 19.46 1631 2.6300 126.29 172.26 18.78 1632 2.6310 152.67 172.26 20.65 1633 2.6320 178.80 172.26 22.38 1634 2.6330 177.14 172.25 22.24 1635 2.6340 136.30 172.25 19.54 1636 2.6350 138.16 172.24 19.63 1637 2.6360 137.19 172.24 19.55 1638 2.6370 152.41 172.24 20.62 1639 2.6380 165.18 172.23 21.50 1640 2.6390 144.87 172.23 20.12 1641 2.6400 151.32 172.22 20.54 1642 2.6410 141.30 172.22 19.81 1643 2.6420 134.77 172.21 19.40 1644 2.6430 120.72 172.21 18.19 1645 2.6440 164.35 172.21 21.42 1646 2.6450 140.73 172.20 19.86 1647 2.6460 154.22 172.20 20.79 1648 2.6470 152.96 172.20 20.70 1649 2.6480 131.40 172.19 19.17 1650 2.6490 151.26 172.19 20.53 1651 2.6500 170.77 172.18 21.75 1652 2.6510 184.24 172.18 22.73 1653 2.6520 152.40 172.18 20.56 1654 2.6530 163.96 172.17 21.25 1655 2.6540 162.97 172.17 21.35 1656 2.6550 154.94 172.16 20.83 1657 2.6560 171.60 172.16 21.89 1658 2.6570 144.75 172.16 20.15 1659 2.6580 157.04 172.15 20.95 1660 2.6590 170.13 172.15 21.82 1661 2.6600 143.79 172.14 20.06 1662 2.6610 136.60 172.14 19.55 1663 2.6620 151.24 172.14 20.57 1664 2.6630 169.65 172.13 21.74 1665 2.6640 124.00 172.13 18.65 1666 2.6650 130.33 172.12 19.12 1667 2.6660 126.63 172.12 18.84 1668 2.6670 137.24 172.12 19.62 1669 2.6680 138.72 172.11 19.74 1670 2.6690 149.20 172.11 20.41 1671 2.6700 135.90 172.11 19.49 1672 2.6710 157.24 172.10 21.01 1673 2.6720 169.26 172.10 21.75 1674 2.6730 133.53 172.10 19.24 1675 2.6740 161.38 172.09 21.15 1676 2.6750 146.44 172.09 20.26 1677 2.6760 139.74 172.08 19.78 1678 2.6770 133.04 172.08 19.24 1679 2.6780 116.46 172.08 17.99 1680 2.6790 172.31 172.07 21.87 1681 2.6800 145.11 172.07 20.14 1682 2.6810 144.76 172.07 20.13 1683 2.6820 134.86 172.06 19.38 1684 2.6830 126.96 172.06 18.72 1685 2.6840 146.09 172.06 20.25 1686 2.6850 178.43 172.05 22.38 1687 2.6860 173.46 172.05 22.07 1688 2.6870 164.22 172.04 21.47 1689 2.6880 173.19 172.04 22.02 1690 2.6890 159.38 172.04 21.10 1691 2.6900 142.19 172.03 19.94 1692 2.6910 158.99 172.03 21.08 1693 2.6920 154.25 172.03 20.78 1694 2.6930 147.98 172.02 20.31 1695 2.6940 159.94 172.02 21.10 1696 2.6950 134.87 172.02 19.42 1697 2.6960 138.32 172.01 19.65 1698 2.6970 116.54 172.01 18.07 1699 2.6980 118.41 172.01 18.19 1700 2.6990 133.05 172.00 19.17 1701 2.7000 118.54 172.00 18.27 1702 2.7010 153.36 172.00 20.64 1703 2.7020 159.36 171.99 21.13 1704 2.7030 158.24 171.99 21.05 1705 2.7040 133.75 171.99 19.35 1706 2.7050 154.23 171.98 20.72 1707 2.7060 155.96 171.98 20.92 1708 2.7070 148.81 171.98 20.42 1709 2.7080 130.73 171.97 19.11 1710 2.7090 126.47 171.97 18.77 1711 2.7100 148.14 171.97 20.38 1712 2.7110 150.10 171.96 20.55 1713 2.7120 147.29 171.96 20.33 1714 2.7130 151.04 171.96 20.59 1715 2.7140 156.43 171.95 20.95 1716 2.7150 144.07 171.95 20.10 1717 2.7160 137.29 171.95 19.61 1718 2.7170 132.84 171.94 19.19 1719 2.7180 126.05 171.94 18.72 1720 2.7190 153.01 171.94 20.68 1721 2.7200 179.23 171.93 22.31 1722 2.7210 162.00 171.93 21.27 1723 2.7220 153.14 171.93 20.73 1724 2.7230 165.24 171.93 21.51 1725 2.7240 159.98 171.92 21.07 1726 2.7250 116.84 171.92 18.06 1727 2.7260 143.50 171.92 20.02 1728 2.7270 139.17 171.91 19.61 1729 2.7280 138.33 171.91 19.60 1730 2.7290 146.83 171.91 20.21 1731 2.7300 136.37 171.90 19.57 1732 2.7310 141.33 171.90 19.92 1733 2.7320 156.65 171.90 20.94 1734 2.7330 155.28 171.90 20.73 1735 2.7340 132.63 171.89 19.12 1736 2.7350 136.16 171.89 19.53 1737 2.7360 138.02 171.89 19.52 1738 2.7370 133.34 171.88 19.27 1739 2.7380 147.80 171.88 20.28 1740 2.7390 150.58 171.88 20.39 1741 2.7400 115.73 171.87 18.00 1742 2.7410 122.85 171.87 18.51 1743 2.7420 127.53 171.87 18.82 1744 2.7430 134.47 171.87 19.42 1745 2.7440 133.53 171.86 19.36 1746 2.7450 133.61 171.86 19.34 1747 2.7460 138.08 171.86 19.67 1748 2.7470 149.30 171.85 20.41 1749 2.7480 125.31 171.85 18.73 1750 2.7490 161.34 171.85 21.25 1751 2.7500 151.52 171.85 20.61 1752 2.7510 129.66 171.84 19.00 1753 2.7520 103.96 171.84 17.02 1754 2.7530 167.12 171.84 21.48 1755 2.7540 135.61 171.83 19.32 1756 2.7550 110.98 171.83 17.67 1757 2.7560 140.05 171.83 19.72 1758 2.7570 146.67 171.83 20.24 1759 2.7580 144.22 171.82 20.10 1760 2.7590 127.91 171.82 18.86 1761 2.7600 130.44 171.82 19.10 1762 2.7610 131.37 171.82 19.08 1763 2.7620 129.71 171.81 19.05 1764 2.7630 110.83 171.81 17.64 1765 2.7640 145.64 171.81 20.15 1766 2.7650 158.55 171.80 21.06 1767 2.7660 157.22 171.80 21.01 1768 2.7670 150.56 171.80 20.44 1769 2.7680 119.31 171.80 18.13 1770 2.7690 139.89 171.79 19.62 1771 2.7700 121.24 171.79 18.26 1772 2.7710 143.17 171.79 19.94 1773 2.7720 151.90 171.79 20.61 1774 2.7730 151.15 171.78 20.56 1775 2.7740 170.05 171.78 21.82 1776 2.7750 164.21 171.78 21.44 1777 2.7760 148.74 171.77 20.35 1778 2.7770 130.07 171.77 18.87 1779 2.7780 151.77 171.77 20.55 1780 2.7790 150.87 171.77 20.57 1781 2.7800 132.38 171.76 19.23 1782 2.7810 147.06 171.76 20.25 1783 2.7820 141.91 171.76 19.94 1784 2.7830 121.30 171.76 18.43 1785 2.7840 155.03 171.76 20.83 1786 2.7850 139.82 171.75 19.76 1787 2.7860 142.26 171.75 19.88 1788 2.7870 138.41 171.75 19.69 1789 2.7880 158.50 171.74 21.04 1790 2.7890 145.97 171.74 20.23 1791 2.7900 147.34 171.74 20.30 1792 2.7910 168.83 171.74 21.71 1793 2.7920 168.32 171.74 21.58 1794 2.7930 138.01 171.73 19.59 1795 2.7940 171.02 171.73 21.79 1796 2.7950 135.71 171.73 19.50 1797 2.7960 127.42 171.73 18.89 1798 2.7970 122.65 171.72 18.55 1799 2.7980 106.28 171.72 17.27 1800 2.7990 124.85 171.72 18.62 1801 2.8000 150.87 171.72 20.57 1802 2.8010 167.33 171.71 21.59 1803 2.8020 114.72 171.71 17.86 1804 2.8030 146.64 171.71 20.20 1805 2.8040 150.62 171.71 20.50 1806 2.8050 130.50 171.71 19.01 1807 2.8060 115.92 171.70 17.92 1808 2.8070 139.98 171.70 19.77 1809 2.8080 125.57 171.70 18.75 1810 2.8090 134.19 171.70 19.35 1811 2.8100 143.35 171.69 20.05 1812 2.8110 128.40 171.69 18.94 1813 2.8120 167.44 171.69 21.53 1814 2.8130 181.96 171.69 22.49 1815 2.8140 134.02 171.68 19.33 1816 2.8150 146.77 171.68 20.20 1817 2.8160 126.17 171.68 18.69 1818 2.8170 135.27 171.68 19.51 1819 2.8180 134.51 171.68 19.36 1820 2.8190 137.38 171.68 19.56 1821 2.8200 150.17 171.67 20.41 1822 2.8210 151.83 171.67 20.56 1823 2.8220 122.12 171.67 18.46 1824 2.8230 133.34 171.67 19.25 1825 2.8240 152.42 171.66 20.60 1826 2.8250 152.12 171.66 20.54 1827 2.8260 140.00 171.66 19.65 1828 2.8270 116.40 171.66 17.93 1829 2.8280 115.87 171.66 17.98 1830 2.8290 137.22 171.65 19.49 1831 2.8300 183.25 171.65 22.63 1832 2.8310 152.29 171.65 20.63 1833 2.8320 145.84 171.65 20.21 1834 2.8330 168.46 171.65 21.71 1835 2.8340 171.23 171.64 21.89 1836 2.8350 156.61 171.64 20.91 1837 2.8360 149.44 171.64 20.44 1838 2.8370 145.45 171.64 20.15 1839 2.8380 150.97 171.64 20.57 1840 2.8390 153.86 171.63 20.62 1841 2.8400 129.83 171.63 18.96 1842 2.8410 141.71 171.63 19.86 1843 2.8420 157.38 171.63 20.92 1844 2.8430 138.83 171.63 19.67 1845 2.8440 162.90 171.62 21.34 1846 2.8450 148.94 171.62 20.45 1847 2.8460 183.86 171.62 22.63 1848 2.8470 136.61 171.62 19.46 1849 2.8480 134.23 171.62 19.41 1850 2.8490 170.91 171.62 21.77 1851 2.8500 161.53 171.61 21.16 1852 2.8510 136.79 171.61 19.54 1853 2.8520 121.98 171.61 18.47 1854 2.8530 148.81 171.61 20.40 1855 2.8540 165.26 171.61 21.40 1856 2.8550 139.55 171.60 19.73 1857 2.8560 153.78 171.60 20.75 1858 2.8570 147.14 171.60 20.29 1859 2.8580 142.09 171.60 19.85 1860 2.8590 116.01 171.60 17.99 1861 2.8600 102.94 171.60 16.95 1862 2.8610 116.74 171.60 17.89 1863 2.8620 144.62 171.59 20.13 1864 2.8630 136.26 171.59 19.54 1865 2.8640 131.63 171.59 19.21 1866 2.8650 146.78 171.59 20.26 1867 2.8660 142.68 171.59 19.93 1868 2.8670 119.55 171.59 18.24 1869 2.8680 144.68 171.58 20.12 1870 2.8690 131.50 171.58 19.09 1871 2.8700 148.87 171.58 20.39 1872 2.8710 135.53 171.58 19.41 1873 2.8720 135.99 171.58 19.54 1874 2.8730 129.14 171.57 19.04 1875 2.8740 157.58 171.57 20.98 1876 2.8750 147.10 171.57 20.28 1877 2.8760 144.07 171.57 20.07 1878 2.8770 115.66 171.57 18.01 1879 2.8780 135.04 171.57 19.42 1880 2.8790 139.03 171.57 19.68 1881 2.8800 134.47 171.57 19.27 1882 2.8810 149.44 171.56 20.46 1883 2.8820 146.54 171.56 20.24 1884 2.8830 157.02 171.56 20.94 1885 2.8840 146.78 171.56 20.27 1886 2.8850 156.88 171.56 20.90 1887 2.8860 132.26 171.56 19.24 1888 2.8870 116.75 171.55 18.02 1889 2.8880 142.66 171.55 19.88 1890 2.8890 163.86 171.55 21.39 1891 2.8900 129.18 171.55 19.01 1892 2.8910 165.08 171.55 21.44 1893 2.8920 140.57 171.55 19.83 1894 2.8930 105.75 171.55 17.20 1895 2.8940 133.10 171.54 19.27 1896 2.8950 167.58 171.54 21.66 1897 2.8960 139.75 171.54 19.80 1898 2.8970 153.10 171.54 20.70 1899 2.8980 154.12 171.54 20.78 1900 2.8990 148.59 171.54 20.41 1901 2.9000 153.11 171.54 20.72 1902 2.9010 169.13 171.54 21.76 1903 2.9020 149.21 171.53 20.45 1904 2.9030 154.86 171.53 20.82 1905 2.9040 152.32 171.53 20.61 1906 2.9050 130.22 171.53 19.03 1907 2.9060 146.74 171.53 20.24 1908 2.9070 171.44 171.53 21.88 1909 2.9080 150.51 171.53 20.48 1910 2.9090 146.17 171.52 20.18 1911 2.9100 137.76 171.52 19.61 1912 2.9110 110.95 171.52 17.57 1913 2.9120 158.09 171.52 20.86 1914 2.9130 111.72 171.52 17.63 1915 2.9140 136.61 171.52 19.54 1916 2.9150 142.40 171.52 19.91 1917 2.9160 164.26 171.52 21.43 1918 2.9170 153.32 171.52 20.71 1919 2.9180 148.64 171.51 20.33 1920 2.9190 139.75 171.51 19.80 1921 2.9200 126.80 171.51 18.84 1922 2.9210 109.77 171.51 17.48 1923 2.9220 140.65 171.51 19.79 1924 2.9230 143.28 171.51 20.01 1925 2.9240 134.05 171.51 19.35 1926 2.9250 168.87 171.51 21.75 1927 2.9260 175.43 171.51 22.15 1928 2.9270 151.93 171.51 20.58 1929 2.9280 136.32 171.50 19.50 1930 2.9290 151.91 171.50 20.56 1931 2.9300 153.35 171.50 20.76 1932 2.9310 138.78 171.50 19.75 1933 2.9320 123.30 171.50 18.59 1934 2.9330 148.84 171.50 20.38 1935 2.9340 169.29 171.50 21.73 1936 2.9350 143.90 171.50 20.06 1937 2.9360 125.89 171.50 18.77 1938 2.9370 121.59 171.49 18.44 1939 2.9380 132.83 171.49 19.26 1940 2.9390 145.04 171.49 20.02 1941 2.9400 131.96 171.49 19.11 1942 2.9410 157.27 171.49 20.97 1943 2.9420 150.26 171.49 20.48 1944 2.9430 118.49 171.49 18.16 1945 2.9440 144.52 171.49 20.02 1946 2.9450 127.36 171.49 18.77 1947 2.9460 137.62 171.49 19.64 1948 2.9470 128.49 171.49 18.96 1949 2.9480 117.31 171.49 18.09 1950 2.9490 140.77 171.48 19.83 1951 2.9500 141.42 171.48 19.88 1952 2.9510 127.95 171.48 18.92 1953 2.9520 134.24 171.48 19.38 1954 2.9530 150.47 171.48 20.52 1955 2.9540 162.97 171.48 21.32 1956 2.9550 143.94 171.48 20.07 1957 2.9560 149.93 171.48 20.34 1958 2.9570 107.91 171.48 17.37 1959 2.9580 152.35 171.48 20.57 1960 2.9590 159.34 171.48 21.13 1961 2.9600 154.07 171.48 20.72 1962 2.9610 136.09 171.48 19.53 1963 2.9620 162.06 171.47 21.26 1964 2.9630 154.15 171.47 20.70 1965 2.9640 122.58 171.47 18.54 1966 2.9650 148.33 171.47 20.37 1967 2.9660 123.12 171.47 18.59 1968 2.9670 129.23 171.47 19.00 1969 2.9680 125.89 171.47 18.78 1970 2.9690 140.66 171.47 19.80 1971 2.9700 158.86 171.47 20.98 1972 2.9710 160.78 171.47 21.21 1973 2.9720 138.82 171.47 19.71 1974 2.9730 167.56 171.47 21.62 1975 2.9740 157.44 171.47 20.92 1976 2.9750 162.16 171.46 21.34 1977 2.9760 146.35 171.46 20.26 1978 2.9770 159.12 171.46 21.11 1979 2.9780 129.88 171.46 19.06 1980 2.9790 115.86 171.46 17.94 1981 2.9800 136.95 171.46 19.48 1982 2.9810 154.05 171.46 20.61 1983 2.9820 167.91 171.46 21.71 1984 2.9830 138.31 171.46 19.67 1985 2.9840 141.09 171.46 19.86 1986 2.9850 128.61 171.46 18.98 1987 2.9860 158.68 171.46 21.07 1988 2.9870 169.88 171.46 21.74 1989 2.9880 147.89 171.46 20.31 1990 2.9890 147.91 171.46 20.33 1991 2.9900 138.43 171.46 19.64 1992 2.9910 115.66 171.46 17.97 1993 2.9920 139.33 171.46 19.70 1994 2.9930 166.91 171.46 21.55 1995 2.9940 141.88 171.46 19.88 1996 2.9950 139.76 171.46 19.70 1997 2.9960 163.03 171.46 21.39 1998 2.9970 155.79 171.45 20.91 1999 2.9980 168.71 171.45 21.72 2000 2.9990 142.73 171.45 19.97 2001 3.0000 159.99 171.45 21.16 2002 3.0010 152.05 171.45 20.61 2003 3.0020 146.97 171.45 20.29 2004 3.0030 152.68 171.45 20.67 2005 3.0040 134.26 171.45 19.34 2006 3.0050 187.52 171.45 22.85 2007 3.0060 159.91 171.45 21.12 2008 3.0070 164.98 171.45 21.45 2009 3.0080 151.05 171.45 20.55 2010 3.0090 184.74 186.54 22.70 2011 3.0100 127.33 186.87 18.73 2012 3.0110 145.98 187.21 20.22 2013 3.0120 139.68 187.56 19.77 2014 3.0130 123.74 187.93 18.60 2015 3.0140 151.72 188.30 20.53 2016 3.0150 143.14 188.69 20.02 2017 3.0160 143.74 189.10 20.03 2018 3.0170 173.06 189.51 21.98 2019 3.0180 146.87 189.94 20.29 2020 3.0190 163.96 190.39 21.44 2021 3.0200 151.77 190.85 20.61 2022 3.0210 179.60 191.34 22.40 2023 3.0220 155.56 191.84 20.84 2024 3.0230 136.62 192.35 19.55 2025 3.0240 150.25 192.89 20.50 2026 3.0250 164.08 193.45 21.41 2027 3.0260 152.53 194.03 20.66 2028 3.0270 158.68 194.64 21.06 2029 3.0280 127.86 195.27 18.87 2030 3.0290 161.33 195.92 21.16 2031 3.0300 143.96 196.60 20.09 2032 3.0310 137.09 197.32 19.59 2033 3.0320 164.10 198.06 21.34 2034 3.0330 154.55 198.83 20.76 2035 3.0340 177.77 199.64 22.31 2036 3.0350 141.10 200.49 19.76 2037 3.0360 112.98 201.37 17.71 2038 3.0370 140.94 202.30 19.86 2039 3.0380 130.08 203.27 19.09 2040 3.0390 162.87 204.28 21.33 2041 3.0400 132.48 205.35 19.19 2042 3.0410 167.73 206.46 21.67 2043 3.0420 161.45 207.63 21.25 2044 3.0430 173.38 208.87 22.01 2045 3.0440 168.25 210.16 21.68 2046 3.0450 177.65 211.53 22.24 2047 3.0460 142.97 212.97 19.99 2048 3.0470 157.15 214.48 20.89 2049 3.0480 176.53 216.09 22.17 2050 3.0490 179.70 217.78 22.38 2051 3.0500 161.50 219.57 21.20 2052 3.0510 185.45 221.46 22.65 2053 3.0520 203.72 223.47 23.86 2054 3.0530 164.36 225.61 21.48 2055 3.0540 194.14 227.87 23.30 2056 3.0550 173.51 230.29 21.98 2057 3.0560 178.52 232.86 22.30 2058 3.0570 187.87 235.60 22.87 2059 3.0580 170.84 238.53 21.80 2060 3.0590 181.65 241.66 22.51 2061 3.0600 195.40 245.02 23.36 2062 3.0610 181.88 248.62 22.54 2063 3.0620 177.48 252.50 22.26 2064 3.0630 184.96 256.67 22.74 2065 3.0640 230.70 261.17 25.40 2066 3.0650 208.51 266.04 24.13 2067 3.0660 259.54 271.31 26.94 2068 3.0670 234.37 277.03 25.59 2069 3.0680 214.63 283.26 24.48 2070 3.0690 205.14 290.05 23.96 2071 3.0700 186.09 297.48 22.79 2072 3.0710 206.78 305.63 24.04 2073 3.0720 245.59 314.58 26.22 2074 3.0730 246.93 324.46 26.26 2075 3.0740 293.39 335.39 28.68 2076 3.0750 255.43 347.52 26.72 2077 3.0760 320.68 361.04 29.78 2078 3.0770 280.90 376.17 28.02 2079 3.0780 303.07 393.17 29.09 2080 3.0790 321.55 412.35 29.96 2081 3.0800 361.37 434.11 31.79 2082 3.0810 349.70 458.92 31.31 2083 3.0820 399.67 487.36 33.42 2084 3.0830 412.29 520.18 33.93 2085 3.0840 409.52 558.32 33.84 2086 3.0850 448.08 602.94 35.37 2087 3.0860 482.88 655.58 36.76 2088 3.0870 505.27 718.26 37.60 2089 3.0880 672.35 793.68 43.31 2090 3.0890 721.87 885.48 44.97 2091 3.0900 912.04 998.90 50.52 2092 3.0910 1051.70 1141.55 54.25 2093 3.0920 1331.72 1324.90 60.99 2094 3.0930 1741.44 1566.23 69.76 2095 3.0940 2149.17 1891.26 77.56 2096 3.0950 2746.11 2336.03 87.64 2097 3.0960 3495.81 2948.80 98.85 2098 3.0970 4437.36 3786.76 111.48 2099 3.0980 5344.75 4905.04 122.23 2100 3.0990 6520.97 6318.62 135.07 2101 3.1000 7390.69 7909.63 143.80 2102 3.1010 8275.48 9287.09 152.22 2103 3.1020 8819.01 9829.94 157.15 2104 3.1030 8673.24 9213.60 155.91 2105 3.1040 7832.12 7802.32 148.19 2106 3.1050 6531.51 6214.17 135.24 2107 3.1060 5118.81 4819.00 119.79 2108 3.1070 4120.18 3721.04 107.31 2109 3.1080 2990.11 2900.35 91.42 2110 3.1090 2365.74 2300.93 81.38 2111 3.1100 1857.28 1865.66 72.07 2112 3.1110 1585.66 1547.39 66.64 2113 3.1120 1337.07 1310.74 61.21 2114 3.1130 1136.84 1130.69 56.45 2115 3.1140 1148.39 990.32 56.68 2116 3.1150 1011.93 878.59 53.19 2117 3.1160 866.60 788.06 49.24 2118 3.1170 919.19 713.62 50.79 2119 3.1180 856.90 651.71 49.00 2120 3.1190 768.37 599.67 46.42 2121 3.1200 725.93 555.54 45.11 2122 3.1210 712.21 517.80 44.70 2123 3.1220 671.98 485.31 43.40 2124 3.1230 658.22 457.14 42.88 2125 3.1240 568.39 432.55 39.89 2126 3.1250 587.14 410.99 40.54 2127 3.1260 504.79 391.97 37.64 2128 3.1270 491.69 375.11 37.11 2129 3.1280 477.97 360.10 36.60 2130 3.1290 409.17 346.68 33.81 2131 3.1300 354.35 334.63 31.53 2132 3.1310 371.66 323.78 32.18 2133 3.1320 314.56 313.97 29.63 2134 3.1330 350.91 305.08 31.29 2135 3.1340 285.64 296.98 28.25 2136 3.1350 241.58 289.60 25.94 2137 3.1360 243.24 282.85 25.91 2138 3.1370 296.70 276.66 28.79 2139 3.1380 285.31 270.97 28.22 2140 3.1390 241.51 265.73 26.00 2141 3.1400 202.78 260.89 23.85 2142 3.1410 237.96 256.41 25.78 2143 3.1420 223.19 252.26 24.98 2144 3.1430 264.05 248.41 27.23 2145 3.1440 264.43 244.82 27.19 2146 3.1450 214.15 241.49 24.49 2147 3.1460 209.63 238.37 24.20 2148 3.1470 209.71 235.45 24.15 2149 3.1480 177.43 232.72 22.26 2150 3.1490 191.53 230.17 23.07 2151 3.1500 190.74 227.76 23.02 2152 3.1510 206.81 225.51 24.05 2153 3.1520 199.89 223.38 23.64 2154 3.1530 178.91 221.38 22.35 2155 3.1540 193.04 219.50 23.19 2156 3.1550 201.84 217.71 23.70 2157 3.1560 165.95 216.03 21.53 2158 3.1570 192.31 214.43 23.18 2159 3.1580 211.20 212.92 24.20 2160 3.1590 179.14 211.49 22.40 2161 3.1600 202.58 210.13 23.70 2162 3.1610 184.61 208.84 22.62 2163 3.1620 149.79 207.61 20.47 2164 3.1630 172.08 206.45 21.95 2165 3.1640 214.98 205.33 24.48 2166 3.1650 216.03 204.27 24.53 2167 3.1660 195.06 203.26 23.33 2168 3.1670 166.84 202.30 21.60 2169 3.1680 179.45 201.38 22.41 2170 3.1690 156.09 200.50 20.86 2171 3.1700 186.22 199.66 22.77 2172 3.1710 157.45 198.85 20.95 2173 3.1720 181.40 198.08 22.46 2174 3.1730 163.11 197.34 21.32 2175 3.1740 162.49 196.63 21.30 2176 3.1750 160.25 195.95 21.19 2177 3.1760 163.16 195.30 21.33 2178 3.1770 229.20 194.67 25.27 2179 3.1780 185.60 194.07 22.80 2180 3.1790 193.95 193.49 23.25 2181 3.1800 143.69 192.93 19.86 2182 3.1810 188.28 192.40 22.86 2183 3.1820 167.65 191.88 21.67 2184 3.1830 185.06 191.38 22.73 2185 3.1840 160.07 190.91 21.05 2186 3.1850 124.88 190.45 18.66 2187 3.1860 151.01 190.00 20.58 2188 3.1870 147.35 189.57 20.31 2189 3.1880 152.45 189.15 20.62 2190 3.1890 148.65 188.75 20.35 2191 3.1900 163.09 188.37 21.35 2192 3.1910 130.31 187.99 19.09 2193 3.1920 121.17 187.63 18.38 2194 3.1930 150.85 187.28 20.57 2195 3.1940 128.45 186.94 18.89 2196 3.1950 129.99 186.62 19.01 2197 3.1960 142.17 171.55 19.87 2198 3.1970 187.57 171.55 22.93 2199 3.1980 163.63 171.55 21.37 2200 3.1990 154.32 171.55 20.79 2201 3.2000 161.40 171.55 21.22 2202 3.2010 142.64 171.55 20.00 2203 3.2020 168.05 171.55 21.68 2204 3.2030 172.77 171.56 21.98 2205 3.2040 166.52 171.56 21.61 2206 3.2050 148.15 171.56 20.36 2207 3.2060 163.96 171.56 21.40 2208 3.2070 172.25 171.56 21.96 2209 3.2080 185.79 171.56 22.80 2210 3.2090 146.91 171.56 20.26 2211 3.2100 122.44 171.57 18.52 2212 3.2110 157.51 171.57 20.97 2213 3.2120 157.57 171.57 20.99 2214 3.2130 164.22 171.57 21.40 2215 3.2140 115.07 171.57 17.95 2216 3.2150 168.10 171.57 21.61 2217 3.2160 154.36 171.57 20.76 2218 3.2170 145.22 171.57 20.16 2219 3.2180 157.43 171.58 20.96 2220 3.2190 151.99 171.58 20.60 2221 3.2200 157.37 171.58 20.96 2222 3.2210 149.33 171.58 20.49 2223 3.2220 153.84 171.58 20.77 2224 3.2230 175.20 171.58 22.14 2225 3.2240 147.82 171.59 20.37 2226 3.2250 173.72 171.59 22.06 2227 3.2260 128.35 171.59 18.86 2228 3.2270 126.63 171.59 18.79 2229 3.2280 145.07 171.59 20.11 2230 3.2290 156.72 171.59 20.85 2231 3.2300 122.10 171.60 18.49 2232 3.2310 164.82 171.60 21.45 2233 3.2320 152.96 171.60 20.70 2234 3.2330 187.85 171.60 22.96 2235 3.2340 162.97 171.60 21.35 2236 3.2350 138.73 171.60 19.72 2237 3.2360 143.41 171.60 20.01 2238 3.2370 161.91 171.61 21.24 2239 3.2380 134.66 171.61 19.41 2240 3.2390 134.19 171.61 19.42 2241 3.2400 147.50 171.61 20.27 2242 3.2410 168.86 171.61 21.71 2243 3.2420 170.62 171.61 21.82 2244 3.2430 133.24 171.62 19.31 2245 3.2440 122.77 171.62 18.53 2246 3.2450 137.91 171.62 19.61 2247 3.2460 134.66 171.62 19.43 2248 3.2470 158.44 171.62 21.05 2249 3.2480 138.37 171.62 19.64 2250 3.2490 123.51 171.62 18.48 2251 3.2500 153.14 171.63 20.67 2252 3.2510 157.63 171.63 20.94 2253 3.2520 131.54 171.63 19.17 2254 3.2530 141.89 171.63 19.92 2255 3.2540 164.01 171.63 21.43 2256 3.2550 178.03 171.64 22.34 2257 3.2560 148.86 171.64 20.40 2258 3.2570 149.69 171.64 20.41 2259 3.2580 152.89 171.64 20.51 2260 3.2590 151.78 171.64 20.63 2261 3.2600 175.44 171.65 22.10 2262 3.2610 139.94 171.65 19.79 2263 3.2620 174.09 171.65 22.03 2264 3.2630 154.39 171.65 20.81 2265 3.2640 136.88 171.65 19.56 2266 3.2650 145.11 171.65 20.12 2267 3.2660 117.90 171.65 18.22 2268 3.2670 124.57 171.66 18.70 2269 3.2680 148.32 171.66 20.31 2270 3.2690 147.71 171.66 20.20 2271 3.2700 150.55 171.66 20.56 2272 3.2710 158.59 171.66 21.03 2273 3.2720 126.41 171.67 18.82 2274 3.2730 117.79 171.67 18.15 2275 3.2740 148.66 171.67 20.23 2276 3.2750 129.26 171.67 18.81 2277 3.2760 135.80 171.67 19.44 2278 3.2770 147.42 171.68 20.19 2279 3.2780 171.46 171.68 21.90 2280 3.2790 140.52 171.68 19.82 2281 3.2800 178.51 171.68 22.32 2282 3.2810 154.19 171.68 20.78 2283 3.2820 159.47 171.68 21.12 2284 3.2830 148.06 171.69 20.36 2285 3.2840 162.60 171.69 21.31 2286 3.2850 138.76 171.69 19.65 2287 3.2860 121.59 171.69 18.38 2288 3.2870 132.29 171.70 19.22 2289 3.2880 150.58 171.70 20.52 2290 3.2890 176.92 171.70 22.24 2291 3.2900 175.03 171.70 22.15 2292 3.2910 150.42 171.70 20.47 2293 3.2920 147.14 171.71 20.24 2294 3.2930 160.24 171.71 21.15 2295 3.2940 158.90 171.71 21.05 2296 3.2950 164.18 171.71 21.45 2297 3.2960 162.78 171.71 21.34 2298 3.2970 174.14 171.71 22.04 2299 3.2980 116.77 171.72 18.06 2300 3.2990 112.92 171.72 17.71 2301 3.3000 165.96 171.72 21.56 2302 3.3010 163.51 171.72 21.42 2303 3.3020 138.13 171.73 19.68 2304 3.3030 149.08 171.73 20.39 2305 3.3040 136.32 171.73 19.47 2306 3.3050 178.05 171.73 22.27 2307 3.3060 154.50 171.73 20.73 2308 3.3070 161.16 171.74 21.21 2309 3.3080 149.19 171.74 20.40 2310 3.3090 175.06 171.74 22.14 2311 3.3100 131.40 171.74 19.14 2312 3.3110 149.68 171.74 20.41 2313 3.3120 149.83 171.75 20.46 2314 3.3130 144.71 171.75 20.08 2315 3.3140 141.97 171.75 19.96 2316 3.3150 160.07 171.75 21.16 2317 3.3160 151.97 171.76 20.60 2318 3.3170 132.49 171.76 19.29 2319 3.3180 196.31 171.76 23.38 2320 3.3190 152.44 171.76 20.57 2321 3.3200 161.60 171.76 21.26 2322 3.3210 144.99 171.77 20.14 2323 3.3220 132.03 171.77 19.23 2324 3.3230 126.02 171.77 18.74 2325 3.3240 123.93 171.77 18.57 2326 3.3250 141.68 171.78 19.88 2327 3.3260 127.92 171.78 18.84 2328 3.3270 134.39 171.78 19.31 2329 3.3280 162.73 171.78 21.31 2330 3.3290 138.83 171.79 19.69 2331 3.3300 156.10 171.79 20.88 2332 3.3310 132.68 171.79 19.18 2333 3.3320 177.06 171.79 22.20 2334 3.3330 176.28 171.79 22.19 2335 3.3340 146.07 171.80 20.14 2336 3.3350 123.41 171.80 18.53 2337 3.3360 127.79 171.80 18.93 2338 3.3370 130.55 171.80 19.10 2339 3.3380 155.34 171.80 20.88 2340 3.3390 166.78 171.81 21.58 2341 3.3400 175.14 171.81 22.06 2342 3.3410 157.88 171.81 21.02 2343 3.3420 148.07 171.82 20.34 2344 3.3430 119.19 171.82 18.17 2345 3.3440 145.53 171.82 20.04 2346 3.3450 129.32 171.82 19.01 2347 3.3460 161.68 171.82 21.20 2348 3.3470 164.42 171.83 21.44 2349 3.3480 131.16 171.83 19.19 2350 3.3490 150.50 171.83 20.52 2351 3.3500 168.71 171.83 21.72 2352 3.3510 156.34 171.84 20.88 2353 3.3520 150.16 171.84 20.51 2354 3.3530 116.92 171.84 18.10 2355 3.3540 142.84 171.84 19.92 2356 3.3550 132.35 171.85 19.15 2357 3.3560 183.56 171.85 22.63 2358 3.3570 150.50 171.85 20.52 2359 3.3580 167.74 171.85 21.61 2360 3.3590 138.33 171.86 19.64 2361 3.3600 134.59 171.86 19.41 2362 3.3610 164.38 171.86 21.44 2363 3.3620 153.51 171.86 20.68 2364 3.3630 137.71 171.87 19.63 2365 3.3640 143.85 171.87 20.05 2366 3.3650 185.27 171.87 22.78 2367 3.3660 158.06 171.87 21.04 2368 3.3670 155.63 171.88 20.83 2369 3.3680 148.26 171.88 20.38 2370 3.3690 131.79 171.88 19.23 2371 3.3700 149.22 171.88 20.43 2372 3.3710 165.49 171.89 21.48 2373 3.3720 134.33 171.89 19.34 2374 3.3730 157.12 171.89 20.96 2375 3.3740 141.12 171.89 19.87 2376 3.3750 162.86 171.90 21.33 2377 3.3760 144.64 171.90 20.09 2378 3.3770 149.88 171.90 20.43 2379 3.3780 155.80 171.90 20.86 2380 3.3790 179.63 171.91 22.39 2381 3.3800 138.33 171.91 19.68 2382 3.3810 145.11 171.91 20.12 2383 3.3820 113.27 171.91 17.75 2384 3.3830 131.96 171.92 19.18 2385 3.3840 131.31 171.92 19.13 2386 3.3850 112.41 171.92 17.79 2387 3.3860 145.22 171.93 20.14 2388 3.3870 167.69 171.93 21.63 2389 3.3880 113.26 171.93 17.74 2390 3.3890 129.19 171.93 18.72 2391 3.3900 187.54 171.94 22.86 2392 3.3910 154.38 171.94 20.76 2393 3.3920 142.92 171.94 19.99 2394 3.3930 139.38 171.95 19.76 2395 3.3940 141.57 171.95 19.81 2396 3.3950 131.76 171.95 19.09 2397 3.3960 135.05 171.95 19.44 2398 3.3970 153.13 171.96 20.71 2399 3.3980 111.37 171.96 17.57 2400 3.3990 136.89 171.96 19.45 2401 3.4000 173.84 171.96 22.03 2402 3.4010 164.21 171.97 21.41 2403 3.4020 151.83 171.97 20.61 2404 3.4030 183.27 171.97 22.64 2405 3.4040 155.15 171.98 20.73 2406 3.4050 119.47 171.98 18.29 2407 3.4060 124.59 171.98 18.66 2408 3.4070 138.77 171.98 19.64 2409 3.4080 139.34 171.99 19.76 2410 3.4090 167.49 171.99 21.65 2411 3.4100 134.18 171.99 19.36 2412 3.4110 155.32 171.99 20.82 2413 3.4120 148.81 172.00 20.42 2414 3.4130 163.12 172.00 21.35 2415 3.4140 152.18 172.00 20.67 2416 3.4150 190.14 172.01 23.06 2417 3.4160 140.22 172.01 19.77 2418 3.4170 155.47 172.01 20.82 2419 3.4180 141.27 172.01 19.84 2420 3.4190 158.90 172.02 21.11 2421 3.4200 158.82 172.02 21.07 2422 3.4210 168.40 172.02 21.74 2423 3.4220 159.56 172.03 21.13 2424 3.4230 152.03 172.03 20.62 2425 3.4240 195.83 172.03 23.39 2426 3.4250 148.95 172.04 20.39 2427 3.4260 138.52 172.04 19.66 2428 3.4270 189.76 172.04 23.05 2429 3.4280 200.23 172.04 23.53 2430 3.4290 128.06 172.05 18.83 2431 3.4300 132.09 172.05 19.23 2432 3.4310 143.96 172.05 19.98 2433 3.4320 115.79 172.06 17.95 2434 3.4330 130.88 172.06 19.11 2435 3.4340 130.38 172.06 19.10 2436 3.4350 157.54 172.07 21.00 2437 3.4360 165.23 172.07 21.49 2438 3.4370 135.91 172.07 19.51 2439 3.4380 152.24 172.07 20.61 2440 3.4390 154.81 172.08 20.74 2441 3.4400 143.41 172.08 20.02 2442 3.4410 128.04 172.08 18.93 2443 3.4420 129.04 172.09 18.92 2444 3.4430 110.39 172.09 17.55 2445 3.4440 135.68 172.09 19.54 2446 3.4450 156.65 172.10 20.96 2447 3.4460 128.84 172.10 18.98 2448 3.4470 179.58 172.10 22.32 2449 3.4480 166.64 172.10 21.59 2450 3.4490 129.80 172.11 19.07 2451 3.4500 127.72 172.11 18.92 2452 3.4510 136.06 172.11 19.50 2453 3.4520 160.79 172.12 21.18 2454 3.4530 119.35 172.12 18.20 2455 3.4540 145.80 172.12 20.22 2456 3.4550 160.56 172.13 21.16 2457 3.4560 175.88 172.13 22.16 2458 3.4570 125.41 172.13 18.75 2459 3.4580 166.31 172.14 21.51 2460 3.4590 174.63 172.14 22.14 2461 3.4600 185.62 172.14 22.78 2462 3.4610 159.85 172.15 21.16 2463 3.4620 149.64 172.15 20.47 2464 3.4630 157.79 172.15 21.02 2465 3.4640 145.77 172.15 20.20 2466 3.4650 163.39 172.16 21.32 2467 3.4660 108.66 172.16 17.37 2468 3.4670 160.95 172.16 21.18 2469 3.4680 141.54 172.17 19.93 2470 3.4690 142.54 172.17 19.94 2471 3.4700 149.01 172.18 20.36 2472 3.4710 140.51 172.18 19.82 2473 3.4720 142.69 172.18 19.98 2474 3.4730 142.51 172.18 19.95 2475 3.4740 158.79 172.19 21.00 2476 3.4750 145.15 172.19 20.11 2477 3.4760 131.39 172.19 19.20 2478 3.4770 146.47 172.20 20.27 2479 3.4780 172.43 172.20 21.96 2480 3.4790 143.04 172.20 20.01 2481 3.4800 141.04 172.21 19.86 2482 3.4810 131.90 172.21 19.24 2483 3.4820 148.66 172.21 20.37 2484 3.4830 156.82 172.22 20.83 2485 3.4840 166.30 172.22 21.52 2486 3.4850 143.17 172.22 20.02 2487 3.4860 128.11 172.23 18.93 2488 3.4870 145.47 172.23 20.13 2489 3.4880 160.79 172.23 21.19 2490 3.4890 125.71 172.24 18.75 2491 3.4900 160.12 172.24 21.08 2492 3.4910 141.01 172.24 19.80 2493 3.4920 134.07 172.25 19.33 2494 3.4930 150.49 172.25 20.49 2495 3.4940 171.86 172.25 21.93 2496 3.4950 186.84 172.26 22.88 2497 3.4960 164.46 172.26 21.47 2498 3.4970 193.13 172.26 23.20 2499 3.4980 152.58 172.27 20.66 2500 3.4990 131.88 172.27 19.23 2501 3.5000 157.00 172.27 20.93 2502 3.5010 128.21 172.28 18.94 2503 3.5020 136.61 172.28 19.56 2504 3.5030 127.85 172.29 18.87 2505 3.5040 150.85 172.29 20.48 2506 3.5050 115.64 172.29 17.94 2507 3.5060 137.62 172.29 19.65 2508 3.5070 139.21 172.30 19.67 2509 3.5080 108.00 172.30 17.30 2510 3.5090 148.65 172.30 20.43 2511 3.5100 168.00 172.31 21.68 2512 3.5110 117.36 172.31 18.09 2513 3.5120 156.06 172.32 20.82 2514 3.5130 132.69 172.32 19.26 2515 3.5140 150.03 172.32 20.47 2516 3.5150 174.31 172.33 22.01 2517 3.5160 135.64 172.33 19.47 2518 3.5170 177.99 172.33 22.26 2519 3.5180 169.79 172.34 21.76 2520 3.5190 145.37 172.34 20.16 2521 3.5200 184.55 172.34 22.67 2522 3.5210 190.49 172.35 23.12 2523 3.5220 144.61 172.35 20.12 2524 3.5230 144.52 172.35 20.03 2525 3.5240 112.34 172.36 17.68 2526 3.5250 127.02 172.36 18.79 2527 3.5260 182.98 172.37 22.62 2528 3.5270 170.71 172.37 21.88 2529 3.5280 148.84 172.37 20.42 2530 3.5290 141.73 172.38 19.92 2531 3.5300 138.42 172.38 19.68 2532 3.5310 154.44 172.38 20.73 2533 3.5320 151.51 172.39 20.58 2534 3.5330 140.63 172.39 19.85 2535 3.5340 149.86 172.39 20.46 2536 3.5350 160.75 172.40 21.15 2537 3.5360 143.32 172.40 20.01 2538 3.5370 131.95 172.40 19.21 2539 3.5380 157.65 172.41 20.99 2540 3.5390 151.63 172.41 20.48 2541 3.5400 122.17 172.42 18.26 2542 3.5410 118.72 172.42 18.18 2543 3.5420 142.86 172.42 19.77 2544 3.5430 159.76 172.43 21.13 2545 3.5440 145.32 172.43 20.11 2546 3.5450 164.00 172.43 21.38 2547 3.5460 150.34 172.44 20.41 2548 3.5470 176.87 172.44 22.20 2549 3.5480 131.70 172.45 19.22 2550 3.5490 146.99 172.45 20.23 2551 3.5500 137.80 172.45 19.57 2552 3.5510 171.70 172.46 21.90 2553 3.5520 148.29 172.46 20.34 2554 3.5530 165.63 172.46 21.47 2555 3.5540 209.65 172.47 24.22 2556 3.5550 188.87 172.47 22.94 2557 3.5560 167.80 172.48 21.63 2558 3.5570 128.66 172.48 18.96 2559 3.5580 157.90 172.48 20.83 2560 3.5590 162.05 172.49 21.34 2561 3.5600 186.58 172.49 22.84 2562 3.5610 138.09 172.49 19.56 2563 3.5620 177.48 172.50 22.02 2564 3.5630 148.01 172.50 20.20 2565 3.5640 147.95 172.51 20.27 2566 3.5650 156.37 172.51 20.89 2567 3.5660 139.20 172.51 19.72 2568 3.5670 139.00 172.52 19.73 2569 3.5680 157.00 172.52 20.93 2570 3.5690 156.57 172.52 20.96 2571 3.5700 168.14 172.53 21.70 2572 3.5710 171.23 172.53 21.83 2573 3.5720 136.55 172.54 19.54 2574 3.5730 132.52 172.54 19.26 2575 3.5740 140.65 172.54 19.83 2576 3.5750 161.99 172.55 21.32 2577 3.5760 148.15 172.55 20.32 2578 3.5770 168.59 172.56 21.66 2579 3.5780 135.21 172.56 19.42 2580 3.5790 185.41 172.56 22.77 2581 3.5800 177.08 172.57 22.20 2582 3.5810 135.43 172.57 19.47 2583 3.5820 165.97 172.58 21.48 2584 3.5830 165.09 172.58 21.54 2585 3.5840 154.41 172.58 20.83 2586 3.5850 147.73 172.59 20.38 2587 3.5860 166.53 172.59 21.57 2588 3.5870 167.84 172.60 21.67 2589 3.5880 155.58 172.60 20.85 2590 3.5890 148.06 172.60 20.28 2591 3.5900 127.91 172.61 18.91 2592 3.5910 183.09 172.61 22.46 2593 3.5920 136.58 172.62 19.44 2594 3.5930 150.30 172.62 20.37 2595 3.5940 124.54 172.62 18.44 2596 3.5950 150.45 172.63 20.48 2597 3.5960 170.15 172.63 21.82 2598 3.5970 190.24 172.63 23.01 2599 3.5980 122.72 172.64 18.53 2600 3.5990 130.73 172.64 19.11 2601 3.6000 145.47 172.65 20.23 2602 3.6010 152.81 172.65 20.71 2603 3.6020 167.76 172.65 21.69 2604 3.6030 155.30 172.66 20.84 2605 3.6040 142.07 172.66 19.91 2606 3.6050 163.15 172.67 21.37 2607 3.6060 150.73 172.67 20.55 2608 3.6070 164.08 172.68 21.42 2609 3.6080 128.05 172.68 18.95 2610 3.6090 151.19 172.68 20.58 2611 3.6100 129.01 172.69 19.01 2612 3.6110 144.87 172.69 20.12 2613 3.6120 141.75 172.70 19.94 2614 3.6130 137.31 172.70 19.56 2615 3.6140 137.77 172.70 19.53 2616 3.6150 177.14 172.71 22.30 2617 3.6160 165.15 172.71 21.46 2618 3.6170 129.68 172.72 19.07 2619 3.6180 123.95 172.72 18.64 2620 3.6190 168.05 172.72 21.68 2621 3.6200 145.36 172.73 20.20 2622 3.6210 161.05 172.73 21.24 2623 3.6220 147.62 172.74 20.36 2624 3.6230 166.30 172.74 21.58 2625 3.6240 164.42 172.74 21.47 2626 3.6250 179.28 172.75 22.42 2627 3.6260 165.87 172.75 21.52 2628 3.6270 142.56 172.76 19.94 2629 3.6280 133.23 172.76 19.25 2630 3.6290 163.66 172.77 21.43 2631 3.6300 157.57 172.77 21.03 2632 3.6310 159.04 172.77 21.08 2633 3.6320 156.84 172.78 20.97 2634 3.6330 151.98 172.78 20.62 2635 3.6340 166.93 172.79 21.64 2636 3.6350 164.63 172.79 21.44 2637 3.6360 169.53 172.79 21.81 2638 3.6370 140.58 172.80 19.88 2639 3.6380 153.25 172.80 20.74 2640 3.6390 166.25 172.81 21.59 2641 3.6400 168.81 172.81 21.71 2642 3.6410 149.15 172.82 20.42 2643 3.6420 170.53 172.82 21.83 2644 3.6430 156.11 172.82 20.93 2645 3.6440 196.54 172.83 23.41 2646 3.6450 154.04 172.83 20.77 2647 3.6460 154.25 172.84 20.79 2648 3.6470 160.69 172.84 21.16 2649 3.6480 184.41 172.85 22.68 2650 3.6490 142.98 172.85 20.02 2651 3.6500 173.63 172.85 22.00 2652 3.6510 173.03 172.86 21.99 2653 3.6520 193.45 172.86 23.28 2654 3.6530 183.41 172.87 22.66 2655 3.6540 169.28 172.87 21.77 2656 3.6550 191.49 172.88 23.14 2657 3.6560 166.43 172.88 21.56 2658 3.6570 160.69 172.88 21.20 2659 3.6580 178.74 172.89 22.35 2660 3.6590 162.67 172.89 21.31 2661 3.6600 161.00 172.90 21.12 2662 3.6610 161.89 172.90 21.28 2663 3.6620 144.27 172.91 20.09 2664 3.6630 159.96 172.91 21.14 2665 3.6640 144.98 172.92 20.12 2666 3.6650 138.61 172.92 19.71 2667 3.6660 196.54 172.93 23.35 2668 3.6670 169.13 172.93 21.73 2669 3.6680 193.21 172.93 23.16 2670 3.6690 197.10 172.94 23.49 2671 3.6700 152.92 172.94 20.71 2672 3.6710 175.04 172.95 22.13 2673 3.6720 166.82 172.95 21.62 2674 3.6730 167.06 172.96 21.60 2675 3.6740 141.29 172.96 19.87 2676 3.6750 172.55 172.96 21.94 2677 3.6760 197.73 172.97 23.51 2678 3.6770 200.55 172.97 23.66 2679 3.6780 199.53 172.98 23.62 2680 3.6790 207.34 172.98 24.11 2681 3.6800 170.12 172.99 21.79 2682 3.6810 154.24 172.99 20.78 2683 3.6820 163.54 173.00 21.42 2684 3.6830 188.77 173.00 23.01 2685 3.6840 190.71 173.01 23.03 2686 3.6850 150.47 173.01 20.48 2687 3.6860 181.84 173.01 22.54 2688 3.6870 193.48 173.02 23.28 2689 3.6880 221.78 173.02 24.87 2690 3.6890 215.73 173.03 24.57 2691 3.6900 200.48 173.03 23.61 2692 3.6910 181.33 173.04 22.49 2693 3.6920 205.07 173.04 23.92 2694 3.6930 167.75 173.04 21.65 2695 3.6940 169.44 173.05 21.79 2696 3.6950 163.30 173.05 21.39 2697 3.6960 172.88 173.06 21.99 2698 3.6970 177.82 173.06 22.27 2699 3.6980 138.33 173.07 19.60 2700 3.6990 165.84 173.07 21.50 2701 3.7000 138.87 173.08 19.74 2702 3.7010 150.12 173.08 20.49 2703 3.7020 193.07 173.09 23.23 2704 3.7030 163.43 173.09 21.35 2705 3.7040 140.95 173.10 19.82 2706 3.7050 158.36 173.10 21.03 2707 3.7060 205.15 173.10 23.93 2708 3.7070 153.81 173.11 20.71 2709 3.7080 134.38 173.11 19.37 2710 3.7090 149.50 173.12 20.42 2711 3.7100 152.08 173.12 20.48 2712 3.7110 169.66 173.13 21.79 2713 3.7120 163.87 173.13 21.39 2714 3.7130 139.54 173.14 19.71 2715 3.7140 178.61 173.14 22.35 2716 3.7150 137.05 173.15 19.56 2717 3.7160 140.84 173.15 19.87 2718 3.7170 167.79 173.16 21.64 2719 3.7180 156.11 173.16 20.85 2720 3.7190 190.23 173.16 23.08 2721 3.7200 162.13 173.17 21.34 2722 3.7210 137.38 173.17 19.57 2723 3.7220 124.84 173.18 18.65 2724 3.7230 144.55 173.18 20.11 2725 3.7240 141.65 173.19 19.89 2726 3.7250 150.77 173.19 20.55 2727 3.7260 135.92 173.20 19.47 2728 3.7270 145.58 173.20 20.18 2729 3.7280 144.00 173.21 20.06 2730 3.7290 141.20 173.21 19.85 2731 3.7300 179.22 173.22 22.39 2732 3.7310 170.37 173.22 21.82 2733 3.7320 167.21 173.23 21.63 2734 3.7330 147.58 173.23 20.29 2735 3.7340 150.57 173.24 20.49 2736 3.7350 167.85 173.24 21.67 2737 3.7360 131.47 173.24 19.23 2738 3.7370 143.72 173.25 20.06 2739 3.7380 158.53 173.26 21.09 2740 3.7390 148.31 173.26 20.34 2741 3.7400 188.21 173.26 22.83 2742 3.7410 214.38 173.27 24.46 2743 3.7420 176.49 173.27 22.21 2744 3.7430 177.36 173.28 22.29 2745 3.7440 151.62 173.28 20.63 2746 3.7450 158.65 173.29 21.09 2747 3.7460 174.99 173.29 22.14 2748 3.7470 173.57 173.30 22.03 2749 3.7480 135.48 173.30 19.43 2750 3.7490 152.87 173.31 20.63 2751 3.7500 142.16 173.31 19.92 2752 3.7510 152.33 173.32 20.67 2753 3.7520 183.55 173.32 22.69 2754 3.7530 153.16 173.33 20.73 2755 3.7540 179.30 173.33 22.40 2756 3.7550 213.94 173.34 24.46 2757 3.7560 179.58 173.34 22.38 2758 3.7570 187.47 173.35 22.86 2759 3.7580 155.47 173.35 20.86 2760 3.7590 171.95 173.36 21.92 2761 3.7600 164.68 173.36 21.47 2762 3.7610 183.13 173.37 22.63 2763 3.7620 135.24 173.37 19.41 2764 3.7630 143.07 173.38 19.95 2765 3.7640 167.31 173.38 21.63 2766 3.7650 160.17 173.38 21.21 2767 3.7660 167.69 173.39 21.69 2768 3.7670 153.39 173.40 20.76 2769 3.7680 146.44 173.40 20.27 2770 3.7690 156.43 173.40 20.95 2771 3.7700 160.79 173.41 21.21 2772 3.7710 139.64 173.41 19.79 2773 3.7720 180.08 173.42 22.42 2774 3.7730 145.79 173.43 20.18 2775 3.7740 177.68 173.43 22.23 2776 3.7750 178.00 173.43 22.29 2777 3.7760 145.50 173.44 20.18 2778 3.7770 138.51 173.44 19.69 2779 3.7780 166.12 173.45 21.53 2780 3.7790 127.78 173.45 18.92 2781 3.7800 184.96 173.46 22.72 2782 3.7810 165.68 173.46 21.56 2783 3.7820 159.14 173.47 21.13 2784 3.7830 164.95 173.47 21.50 2785 3.7840 193.19 173.48 23.25 2786 3.7850 153.69 173.48 20.73 2787 3.7860 171.11 173.49 21.87 2788 3.7870 163.66 173.49 21.44 2789 3.7880 177.85 173.50 22.33 2790 3.7890 160.80 173.50 21.20 2791 3.7900 142.22 173.51 19.90 2792 3.7910 175.26 173.51 22.17 2793 3.7920 148.96 173.52 20.45 2794 3.7930 154.44 173.52 20.80 2795 3.7940 167.00 173.53 21.65 2796 3.7950 207.00 173.54 24.00 2797 3.7960 172.45 173.54 21.95 2798 3.7970 170.19 173.54 21.80 2799 3.7980 147.13 173.55 20.24 2800 3.7990 169.85 173.55 21.79 2801 3.8000 152.41 173.56 20.67 2802 3.8010 160.27 173.57 21.21 2803 3.8020 166.47 173.57 21.47 2804 3.8030 143.13 173.57 19.91 2805 3.8040 178.63 173.58 22.38 2806 3.8050 136.32 173.59 19.56 2807 3.8060 143.64 173.59 20.04 2808 3.8070 141.80 173.60 19.95 2809 3.8080 172.24 173.60 21.93 2810 3.8090 192.81 173.61 23.23 2811 3.8100 146.13 173.61 20.23 2812 3.8110 162.07 173.62 21.28 2813 3.8120 173.47 173.62 22.02 2814 3.8130 143.99 173.63 20.06 2815 3.8140 154.57 173.63 20.75 2816 3.8150 126.69 173.64 18.73 2817 3.8160 185.14 173.64 22.59 2818 3.8170 210.09 173.65 24.19 2819 3.8180 179.51 173.65 22.41 2820 3.8190 167.33 173.66 21.63 2821 3.8200 168.46 173.66 21.71 2822 3.8210 156.23 173.67 20.96 2823 3.8220 170.42 173.67 21.82 2824 3.8230 138.39 173.68 19.70 2825 3.8240 170.07 173.68 21.77 2826 3.8250 163.21 173.69 21.24 2827 3.8260 158.15 173.69 20.90 2828 3.8270 190.83 173.70 23.11 2829 3.8280 154.22 173.70 20.76 2830 3.8290 163.67 173.71 21.33 2831 3.8300 156.24 173.71 20.93 2832 3.8310 165.76 173.72 21.51 2833 3.8320 177.08 173.73 22.24 2834 3.8330 139.86 173.73 19.80 2835 3.8340 158.81 173.74 21.08 2836 3.8350 140.75 173.74 19.89 2837 3.8360 162.04 173.75 21.31 2838 3.8370 199.49 173.75 23.58 2839 3.8380 150.34 173.76 20.50 2840 3.8390 161.87 173.76 21.30 2841 3.8400 178.20 173.77 22.34 2842 3.8410 186.78 173.77 22.86 2843 3.8420 160.00 173.78 21.14 2844 3.8430 188.32 173.78 22.87 2845 3.8440 176.56 173.79 22.18 2846 3.8450 152.46 173.79 20.68 2847 3.8460 166.75 173.80 21.61 2848 3.8470 144.52 173.80 20.16 2849 3.8480 166.24 173.81 21.42 2850 3.8490 149.48 173.81 20.31 2851 3.8500 189.50 173.82 23.00 2852 3.8510 153.37 173.82 20.71 2853 3.8520 178.76 173.83 22.34 2854 3.8530 164.18 173.84 21.38 2855 3.8540 118.55 173.84 18.10 2856 3.8550 154.13 173.85 20.78 2857 3.8560 143.29 173.85 20.03 2858 3.8570 170.43 173.86 21.80 2859 3.8580 142.88 173.86 20.01 2860 3.8590 176.61 173.87 22.22 2861 3.8600 171.02 173.87 21.83 2862 3.8610 192.64 173.88 23.11 2863 3.8620 168.88 173.88 21.61 2864 3.8630 158.32 173.89 20.95 2865 3.8640 187.68 173.90 22.97 2866 3.8650 212.01 173.90 24.33 2867 3.8660 151.09 173.90 20.56 2868 3.8670 182.73 173.91 22.63 2869 3.8680 172.59 173.92 21.96 2870 3.8690 179.17 173.92 22.34 2871 3.8700 155.19 173.93 20.83 2872 3.8710 130.72 173.93 19.14 2873 3.8720 159.64 173.94 21.16 2874 3.8730 166.74 173.94 21.60 2875 3.8740 162.15 173.95 21.29 2876 3.8750 193.41 173.95 23.21 2877 3.8760 196.64 173.96 23.47 2878 3.8770 156.17 173.96 20.89 2879 3.8780 205.03 173.97 23.91 2880 3.8790 172.55 173.98 21.96 2881 3.8800 164.86 173.98 21.48 2882 3.8810 139.11 173.99 19.71 2883 3.8820 188.91 173.99 23.00 2884 3.8830 195.76 174.00 23.42 2885 3.8840 142.44 174.00 20.01 2886 3.8850 168.42 174.01 21.67 2887 3.8860 197.23 174.01 23.43 2888 3.8870 153.07 174.02 20.69 2889 3.8880 156.01 174.02 20.90 2890 3.8890 185.96 174.03 22.82 2891 3.8900 154.04 174.04 20.75 2892 3.8910 185.79 174.04 22.73 2893 3.8920 166.41 174.05 21.56 2894 3.8930 168.40 174.05 21.68 2895 3.8940 171.97 174.06 21.97 2896 3.8950 186.56 174.06 22.89 2897 3.8960 173.17 174.07 22.07 2898 3.8970 163.54 174.07 21.35 2899 3.8980 136.64 174.08 19.56 2900 3.8990 153.12 174.09 20.70 2901 3.9000 140.45 174.09 19.85 2902 3.9010 171.14 174.10 21.86 2903 3.9020 138.21 174.10 19.68 2904 3.9030 173.17 174.11 22.00 2905 3.9040 182.70 174.11 22.60 2906 3.9050 195.96 174.12 23.45 2907 3.9060 163.26 174.12 21.33 2908 3.9070 143.35 174.13 20.02 2909 3.9080 149.30 174.14 20.43 2910 3.9090 158.93 174.14 21.07 2911 3.9100 157.69 174.15 21.01 2912 3.9110 149.81 174.15 20.52 2913 3.9120 196.38 174.16 23.40 2914 3.9130 157.90 174.16 21.01 2915 3.9140 158.06 174.17 21.01 2916 3.9150 168.58 174.18 21.69 2917 3.9160 149.74 174.18 20.46 2918 3.9170 162.04 174.19 21.28 2919 3.9180 141.62 174.19 19.94 2920 3.9190 168.70 174.20 21.72 2921 3.9200 159.45 174.20 21.12 2922 3.9210 138.58 174.21 19.71 2923 3.9220 156.58 174.21 20.92 2924 3.9230 174.93 174.22 22.07 2925 3.9240 179.32 174.23 22.37 2926 3.9250 181.20 174.23 22.48 2927 3.9260 148.52 174.24 20.39 2928 3.9270 140.57 174.24 19.84 2929 3.9280 173.31 174.25 22.03 2930 3.9290 173.64 174.25 22.04 2931 3.9300 167.70 174.26 21.60 2932 3.9310 165.13 174.26 21.43 2933 3.9320 159.75 174.27 21.17 2934 3.9330 203.24 174.28 23.84 2935 3.9340 179.23 174.28 22.37 2936 3.9350 173.00 174.29 21.98 2937 3.9360 179.00 174.29 22.36 2938 3.9370 148.71 174.30 20.38 2939 3.9380 181.36 174.30 22.47 2940 3.9390 157.88 174.31 21.00 2941 3.9400 147.04 174.32 20.29 2942 3.9410 160.90 174.32 21.19 2943 3.9420 153.35 174.33 20.75 2944 3.9430 186.64 174.33 22.84 2945 3.9440 178.57 174.34 22.38 2946 3.9450 177.34 174.35 22.27 2947 3.9460 155.25 174.35 20.85 2948 3.9470 175.53 174.36 22.15 2949 3.9480 164.20 174.36 21.40 2950 3.9490 188.85 174.37 22.93 2951 3.9500 171.83 174.37 21.89 2952 3.9510 141.21 174.38 19.90 2953 3.9520 192.00 174.38 23.13 2954 3.9530 168.98 174.39 21.74 2955 3.9540 148.81 174.40 20.37 2956 3.9550 131.27 174.40 19.20 2957 3.9560 173.06 174.41 21.92 2958 3.9570 186.99 174.41 22.75 2959 3.9580 159.83 174.42 21.15 2960 3.9590 156.45 174.43 20.89 2961 3.9600 189.54 174.43 23.04 2962 3.9610 167.12 174.44 21.60 2963 3.9620 164.22 174.44 21.42 2964 3.9630 205.80 174.45 24.02 2965 3.9640 212.82 174.45 24.38 2966 3.9650 189.34 174.46 22.99 2967 3.9660 142.91 174.47 19.97 2968 3.9670 139.62 174.47 19.75 2969 3.9680 188.85 174.48 22.87 2970 3.9690 168.67 174.48 21.69 2971 3.9700 173.40 174.49 21.99 2972 3.9710 141.72 174.49 19.93 2973 3.9720 155.40 174.50 20.86 2974 3.9730 132.24 174.51 19.19 2975 3.9740 121.80 174.51 18.53 2976 3.9750 162.79 174.52 21.29 2977 3.9760 158.79 174.52 21.03 2978 3.9770 142.37 174.53 19.89 2979 3.9780 160.31 174.54 21.19 2980 3.9790 145.27 174.54 20.13 2981 3.9800 149.22 174.55 20.38 2982 3.9810 152.01 174.55 20.55 2983 3.9820 181.33 174.56 22.54 2984 3.9830 167.60 174.57 21.63 2985 3.9840 196.45 174.57 23.46 2986 3.9850 183.47 174.58 22.58 2987 3.9860 166.51 174.58 21.54 2988 3.9870 146.45 174.59 20.26 2989 3.9880 164.90 174.60 21.46 2990 3.9890 159.58 174.60 21.13 2991 3.9900 161.08 174.61 21.18 2992 3.9910 162.17 174.61 21.25 2993 3.9920 183.97 174.62 22.66 2994 3.9930 165.74 174.62 21.35 2995 3.9940 179.59 174.63 22.40 2996 3.9950 181.39 174.64 22.55 2997 3.9960 150.54 174.64 20.52 2998 3.9970 158.06 174.65 21.00 2999 3.9980 195.53 174.65 23.38 3000 3.9990 163.55 174.66 18.77 3001 4.0000 180.65 174.67 19.82 3002 4.0010 201.07 174.67 20.88 3003 4.0020 169.83 174.68 19.20 3004 4.0030 174.59 174.68 19.45 3005 4.0040 142.04 174.69 17.56 3006 4.0050 183.99 174.70 20.08 3007 4.0060 174.35 174.70 19.51 3008 4.0070 150.85 174.71 18.06 3009 4.0080 148.38 174.71 17.81 3010 4.0090 157.02 174.72 18.40 3011 4.0100 201.74 174.73 20.87 3012 4.0110 162.97 174.73 18.76 3013 4.0120 165.97 174.74 19.01 3014 4.0130 124.20 174.74 16.44 3015 4.0140 158.22 174.75 18.55 3016 4.0150 174.36 174.76 19.51 3017 4.0160 184.02 174.76 19.99 3018 4.0170 161.35 174.77 18.68 3019 4.0180 158.35 174.77 18.59 3020 4.0190 155.12 174.78 18.19 3021 4.0200 169.02 174.79 19.23 3022 4.0210 169.88 174.79 19.20 3023 4.0220 187.39 174.80 20.24 3024 4.0230 172.13 174.80 19.39 3025 4.0240 187.42 174.81 20.18 3026 4.0250 171.24 174.82 19.32 3027 4.0260 168.22 174.82 19.10 3028 4.0270 176.61 174.83 19.58 3029 4.0280 194.08 174.84 20.56 3030 4.0290 173.26 174.84 19.51 3031 4.0300 144.53 174.85 17.63 3032 4.0310 172.45 174.85 19.24 3033 4.0320 168.30 174.86 19.10 3034 4.0330 164.94 174.87 19.09 3035 4.0340 180.80 174.87 19.76 3036 4.0350 189.57 174.88 20.34 3037 4.0360 171.46 174.88 19.41 3038 4.0370 144.06 174.89 17.63 3039 4.0380 167.06 174.90 18.97 3040 4.0390 178.14 174.90 19.67 3041 4.0400 162.89 174.91 18.91 3042 4.0410 197.21 174.91 20.78 3043 4.0420 175.82 174.92 19.58 3044 4.0430 185.53 174.93 20.05 3045 4.0440 178.33 174.93 19.70 3046 4.0450 192.81 174.94 20.43 3047 4.0460 200.12 174.95 20.83 3048 4.0470 170.47 174.95 19.16 3049 4.0480 189.45 174.96 20.22 3050 4.0490 171.20 174.96 19.33 3051 4.0500 160.49 174.97 18.71 3052 4.0510 182.13 174.98 19.94 3053 4.0520 207.99 174.98 21.15 3054 4.0530 167.82 174.99 19.09 3055 4.0540 190.07 174.99 20.17 3056 4.0550 152.48 175.00 18.18 3057 4.0560 163.23 175.01 18.86 3058 4.0570 193.07 175.01 20.61 3059 4.0580 178.42 175.02 19.68 3060 4.0590 173.31 175.02 19.37 3061 4.0600 177.31 175.03 19.61 3062 4.0610 173.99 175.04 19.31 3063 4.0620 187.20 175.04 20.25 3064 4.0630 161.03 175.05 18.72 3065 4.0640 167.25 175.06 18.97 3066 4.0650 177.47 175.06 19.66 3067 4.0660 162.09 175.07 18.65 3068 4.0670 179.96 175.07 19.82 3069 4.0680 210.29 175.08 21.50 3070 4.0690 190.57 175.09 20.35 3071 4.0700 193.91 175.09 20.48 3072 4.0710 179.82 175.10 19.84 3073 4.0720 164.27 175.11 18.92 3074 4.0730 161.54 175.11 18.66 3075 4.0740 186.52 175.12 20.07 3076 4.0750 162.72 175.12 18.75 3077 4.0760 188.49 175.13 20.04 3078 4.0770 196.75 175.14 20.64 3079 4.0780 210.92 175.14 21.44 3080 4.0790 162.13 175.15 18.60 3081 4.0800 147.25 175.16 17.93 3082 4.0810 177.82 175.16 19.54 3083 4.0820 218.52 175.17 21.85 3084 4.0830 178.09 175.17 19.65 3085 4.0840 148.90 175.18 17.94 3086 4.0850 160.41 175.19 18.68 3087 4.0860 169.20 175.19 19.01 3088 4.0870 192.76 175.20 20.42 3089 4.0880 198.53 175.21 20.75 3090 4.0890 200.38 175.21 20.87 3091 4.0900 166.08 175.22 18.86 3092 4.0910 175.20 175.23 19.52 3093 4.0920 171.46 175.23 19.21 3094 4.0930 160.61 175.24 18.56 3095 4.0940 204.45 175.24 21.03 3096 4.0950 192.57 175.25 20.50 3097 4.0960 189.35 175.26 20.26 3098 4.0970 169.37 175.26 19.21 3099 4.0980 176.41 175.27 19.49 3100 4.0990 172.30 175.27 19.30 3101 4.1000 202.01 175.28 20.78 3102 4.1010 194.11 175.29 20.48 3103 4.1020 159.80 175.29 18.59 3104 4.1030 184.46 175.30 20.02 3105 4.1040 189.88 175.31 20.27 3106 4.1050 201.29 175.31 20.94 3107 4.1060 168.54 175.32 19.19 3108 4.1070 179.43 175.33 19.83 3109 4.1080 170.79 175.33 19.39 3110 4.1090 175.21 175.34 19.45 3111 4.1100 170.77 175.35 19.22 3112 4.1110 202.85 175.35 20.99 3113 4.1120 200.03 175.36 20.86 3114 4.1130 181.98 175.36 19.80 3115 4.1140 175.77 175.37 19.47 3116 4.1150 154.49 175.38 18.31 3117 4.1160 154.30 175.38 18.25 3118 4.1170 186.27 175.39 20.16 3119 4.1180 165.09 175.40 18.92 3120 4.1190 176.23 175.40 19.45 3121 4.1200 175.16 175.41 19.60 3122 4.1210 125.02 175.42 16.50 3123 4.1220 157.24 175.42 18.39 3124 4.1230 205.64 175.43 21.25 3125 4.1240 198.04 175.43 20.78 3126 4.1250 203.17 175.44 21.06 3127 4.1260 161.82 175.45 18.66 3128 4.1270 176.74 175.45 19.57 3129 4.1280 158.49 175.46 18.40 3130 4.1290 173.94 175.47 19.34 3131 4.1300 200.47 175.47 20.86 3132 4.1310 195.68 175.48 20.61 3133 4.1320 159.91 175.49 18.58 3134 4.1330 181.07 175.49 19.79 3135 4.1340 161.81 175.50 18.60 3136 4.1350 206.85 175.51 21.22 3137 4.1360 143.83 175.51 17.61 3138 4.1370 173.81 175.52 19.29 3139 4.1380 165.22 175.52 18.86 3140 4.1390 206.45 175.53 21.03 3141 4.1400 212.42 175.54 21.41 3142 4.1410 177.65 175.54 19.59 3143 4.1420 185.85 175.55 20.16 3144 4.1430 176.49 175.56 19.51 3145 4.1440 187.35 175.56 20.09 3146 4.1450 149.23 175.57 17.95 3147 4.1460 190.17 175.58 20.16 3148 4.1470 176.93 175.58 19.54 3149 4.1480 184.24 175.59 20.05 3150 4.1490 187.86 175.60 20.26 3151 4.1500 181.96 175.60 19.81 3152 4.1510 152.60 175.61 18.09 3153 4.1520 166.75 175.62 19.04 3154 4.1530 175.58 175.62 19.45 3155 4.1540 181.73 175.63 19.87 3156 4.1550 188.07 175.64 20.22 3157 4.1560 192.11 175.64 20.46 3158 4.1570 140.03 175.65 17.36 3159 4.1580 204.75 175.65 21.04 3160 4.1590 196.12 175.66 20.63 3161 4.1600 158.72 175.67 18.61 3162 4.1610 180.24 175.68 19.77 3163 4.1620 175.20 175.68 19.59 3164 4.1630 176.80 175.69 19.58 3165 4.1640 187.70 175.70 20.23 3166 4.1650 188.24 175.70 20.21 3167 4.1660 179.56 175.71 19.71 3168 4.1670 160.57 175.71 18.69 3169 4.1680 194.88 175.72 20.56 3170 4.1690 184.51 175.73 20.04 3171 4.1700 179.08 175.73 19.64 3172 4.1710 187.75 175.74 20.17 3173 4.1720 176.21 175.75 19.49 3174 4.1730 183.62 175.75 19.90 3175 4.1740 177.48 175.76 19.64 3176 4.1750 183.40 175.77 19.92 3177 4.1760 178.93 175.77 19.72 3178 4.1770 144.08 175.78 17.73 3179 4.1780 169.50 175.79 19.20 3180 4.1790 160.54 175.79 18.60 3181 4.1800 176.26 175.80 19.67 3182 4.1810 171.32 175.81 19.40 3183 4.1820 197.42 175.81 20.66 3184 4.1830 193.59 175.82 20.44 3185 4.1840 181.28 175.83 19.87 3186 4.1850 187.50 175.83 20.12 3187 4.1860 189.92 175.84 20.28 3188 4.1870 193.09 175.85 20.58 3189 4.1880 192.74 175.85 20.52 3190 4.1890 161.35 175.86 18.65 3191 4.1900 170.06 175.87 19.23 3192 4.1910 176.21 175.87 19.59 3193 4.1920 173.09 175.88 19.27 3194 4.1930 143.77 175.89 17.70 3195 4.1940 194.51 175.89 20.51 3196 4.1950 201.14 175.90 20.96 3197 4.1960 188.79 175.91 20.25 3198 4.1970 220.58 175.91 21.92 3199 4.1980 180.94 175.92 19.80 3200 4.1990 184.64 175.93 19.84 3201 4.2000 191.62 175.93 20.43 3202 4.2010 189.90 175.94 20.29 3203 4.2020 180.43 175.95 19.75 3204 4.2030 195.58 175.95 20.55 3205 4.2040 162.80 175.96 18.82 3206 4.2050 189.28 175.97 20.41 3207 4.2060 181.96 175.97 19.90 3208 4.2070 193.20 175.98 20.46 3209 4.2080 185.59 175.99 19.90 3210 4.2090 181.06 175.99 19.89 3211 4.2100 152.61 176.00 18.04 3212 4.2110 172.80 176.01 19.34 3213 4.2120 197.10 176.01 20.59 3214 4.2130 169.76 176.02 19.21 3215 4.2140 174.19 176.03 19.45 3216 4.2150 210.89 176.03 21.33 3217 4.2160 216.26 176.04 21.71 3218 4.2170 193.48 176.05 20.45 3219 4.2180 225.09 176.05 22.14 3220 4.2190 187.88 176.06 20.16 3221 4.2200 216.26 176.07 21.70 3222 4.2210 187.76 176.07 20.12 3223 4.2220 201.08 176.08 20.87 3224 4.2230 246.18 176.09 23.16 3225 4.2240 206.72 176.09 21.16 3226 4.2250 211.18 176.10 21.42 3227 4.2260 162.89 176.11 18.80 3228 4.2270 181.24 176.12 19.85 3229 4.2280 178.45 176.12 19.57 3230 4.2290 200.75 176.13 20.79 3231 4.2300 201.06 176.13 20.87 3232 4.2310 195.45 176.14 20.54 3233 4.2320 194.26 176.15 20.43 3234 4.2330 173.17 176.15 19.43 3235 4.2340 181.52 176.16 19.76 3236 4.2350 262.50 176.17 23.89 3237 4.2360 235.93 176.18 22.56 3238 4.2370 205.15 176.18 21.01 3239 4.2380 211.15 176.19 21.29 3240 4.2390 205.85 176.20 21.07 3241 4.2400 244.16 176.20 23.12 3242 4.2410 225.50 176.21 22.07 3243 4.2420 198.09 176.22 20.72 3244 4.2430 192.45 176.22 20.32 3245 4.2440 183.11 176.23 19.95 3246 4.2450 202.35 176.24 20.96 3247 4.2460 207.16 176.24 21.23 3248 4.2470 199.01 176.25 20.73 3249 4.2480 178.18 176.26 19.62 3250 4.2490 172.82 176.26 19.33 3251 4.2500 209.73 176.27 21.31 3252 4.2510 187.53 176.28 20.15 3253 4.2520 234.89 176.29 22.49 3254 4.2530 216.39 176.29 21.68 3255 4.2540 210.22 176.30 21.23 3256 4.2550 213.34 176.30 21.48 3257 4.2560 172.14 176.31 19.27 3258 4.2570 198.01 176.32 20.78 3259 4.2580 178.23 176.33 19.57 3260 4.2590 231.43 176.33 22.44 3261 4.2600 207.49 176.34 21.21 3262 4.2610 164.26 176.35 18.91 3263 4.2620 171.46 176.35 19.36 3264 4.2630 207.20 176.36 21.25 3265 4.2640 160.71 176.37 18.70 3266 4.2650 142.14 176.37 17.53 3267 4.2660 159.70 176.38 18.66 3268 4.2670 193.32 176.39 20.46 3269 4.2680 193.95 176.40 20.59 3270 4.2690 183.85 176.40 19.97 3271 4.2700 161.61 176.41 18.72 3272 4.2710 157.22 176.42 18.40 3273 4.2720 191.45 176.42 20.38 3274 4.2730 202.59 176.43 20.97 3275 4.2740 201.90 176.44 21.02 3276 4.2750 185.89 176.44 20.14 3277 4.2760 206.71 176.45 21.11 3278 4.2770 161.16 176.46 18.69 3279 4.2780 187.00 176.46 20.15 3280 4.2790 182.15 176.47 19.88 3281 4.2800 178.81 176.48 19.68 3282 4.2810 197.91 176.49 20.75 3283 4.2820 172.25 176.49 19.16 3284 4.2830 225.12 176.50 22.05 3285 4.2840 173.78 176.51 19.52 3286 4.2850 181.50 176.51 19.92 3287 4.2860 174.62 176.52 19.51 3288 4.2870 202.76 176.53 21.04 3289 4.2880 164.51 176.53 18.94 3290 4.2890 188.27 176.54 20.18 3291 4.2900 184.96 176.55 20.04 3292 4.2910 187.08 176.55 20.10 3293 4.2920 209.16 176.56 21.30 3294 4.2930 179.94 176.57 19.74 3295 4.2940 183.53 176.57 19.91 3296 4.2950 192.01 176.58 20.34 3297 4.2960 197.51 176.59 20.66 3298 4.2970 226.46 176.60 22.30 3299 4.2980 173.66 176.60 19.33 3300 4.2990 174.44 176.61 19.40 3301 4.3000 193.01 176.62 20.51 3302 4.3010 174.64 176.62 19.29 3303 4.3020 187.06 176.63 20.08 3304 4.3030 187.91 176.64 20.28 3305 4.3040 188.23 176.65 20.22 3306 4.3050 169.05 176.65 19.07 3307 4.3060 179.66 176.66 19.83 3308 4.3070 196.22 176.67 20.53 3309 4.3080 190.78 176.67 20.31 3310 4.3090 194.28 176.68 20.42 3311 4.3100 179.54 176.69 19.67 3312 4.3110 196.72 176.69 20.62 3313 4.3120 167.52 176.70 19.10 3314 4.3130 197.24 176.71 20.69 3315 4.3140 187.87 176.71 20.20 3316 4.3150 164.13 176.72 18.82 3317 4.3160 160.53 176.73 18.73 3318 4.3170 183.27 176.74 19.80 3319 4.3180 201.37 176.74 20.97 3320 4.3190 166.41 176.75 19.03 3321 4.3200 168.99 176.76 19.22 3322 4.3210 151.01 176.76 18.10 3323 4.3220 183.72 176.77 20.04 3324 4.3230 197.18 176.78 20.73 3325 4.3240 175.93 176.79 19.59 3326 4.3250 186.86 176.79 20.02 3327 4.3260 173.43 176.80 19.32 3328 4.3270 155.12 176.81 18.32 3329 4.3280 143.03 176.81 17.58 3330 4.3290 174.79 176.82 19.49 3331 4.3300 224.77 176.83 22.06 3332 4.3310 180.51 176.84 19.82 3333 4.3320 186.98 176.84 20.19 3334 4.3330 189.20 176.85 20.14 3335 4.3340 155.95 176.86 18.35 3336 4.3350 173.42 176.86 19.33 3337 4.3360 184.01 176.87 20.09 3338 4.3370 177.79 176.88 19.66 3339 4.3380 193.42 176.88 20.47 3340 4.3390 189.65 176.89 20.36 3341 4.3400 186.94 176.90 20.20 3342 4.3410 196.06 176.91 20.57 3343 4.3420 195.31 176.91 20.64 3344 4.3430 219.14 176.92 21.77 3345 4.3440 193.32 176.93 20.47 3346 4.3450 200.86 176.93 20.88 3347 4.3460 206.06 176.94 21.20 3348 4.3470 170.79 176.95 19.19 3349 4.3480 168.61 176.96 19.11 3350 4.3490 199.91 176.96 20.83 3351 4.3500 170.41 176.97 19.25 3352 4.3510 151.24 176.98 18.05 3353 4.3520 155.82 176.98 18.37 3354 4.3530 195.03 176.99 20.54 3355 4.3540 207.53 177.00 21.24 3356 4.3550 229.13 177.01 22.29 3357 4.3560 204.18 177.01 21.11 3358 4.3570 184.84 177.02 20.07 3359 4.3580 190.22 177.03 20.28 3360 4.3590 195.97 177.03 20.60 3361 4.3600 223.00 177.04 21.92 3362 4.3610 197.28 177.05 20.71 3363 4.3620 161.15 177.06 18.70 3364 4.3630 188.61 177.06 20.25 3365 4.3640 177.37 177.07 19.57 3366 4.3650 206.13 177.08 21.09 3367 4.3660 181.99 177.08 19.89 3368 4.3670 216.27 177.09 21.65 3369 4.3680 191.13 177.10 20.37 3370 4.3690 164.81 177.11 18.81 3371 4.3700 178.88 177.11 19.68 3372 4.3710 173.94 177.12 19.40 3373 4.3720 220.11 177.13 21.87 3374 4.3730 175.02 177.13 19.54 3375 4.3740 215.44 177.14 21.68 3376 4.3750 210.49 177.15 21.38 3377 4.3760 182.61 177.16 19.95 3378 4.3770 183.17 177.16 20.03 3379 4.3780 195.02 177.17 20.42 3380 4.3790 176.25 177.18 19.47 3381 4.3800 222.57 177.18 22.07 3382 4.3810 176.22 177.19 19.53 3383 4.3820 146.05 177.20 17.78 3384 4.3830 221.83 177.21 21.95 3385 4.3840 191.26 177.21 20.41 3386 4.3850 164.95 177.22 18.85 3387 4.3860 214.18 177.23 21.67 3388 4.3870 224.20 177.24 22.07 3389 4.3880 190.40 177.24 20.37 3390 4.3890 185.98 177.25 20.04 3391 4.3900 168.34 177.26 19.08 3392 4.3910 181.84 177.26 19.88 3393 4.3920 216.55 177.27 21.79 3394 4.3930 143.26 177.28 17.68 3395 4.3940 174.65 177.29 19.37 3396 4.3950 176.10 177.29 19.53 3397 4.3960 169.85 177.30 19.20 3398 4.3970 201.15 177.31 20.84 3399 4.3980 183.45 177.32 19.89 3400 4.3990 222.75 177.32 21.95 3401 4.4000 186.99 177.33 20.11 3402 4.4010 146.86 177.34 17.70 3403 4.4020 194.23 177.34 20.62 3404 4.4030 198.47 177.35 20.69 3405 4.4040 209.28 177.36 21.18 3406 4.4050 228.13 177.37 22.27 3407 4.4060 199.98 177.37 20.82 3408 4.4070 193.11 177.38 20.31 3409 4.4080 162.66 177.39 18.75 3410 4.4090 173.65 177.40 19.26 3411 4.4100 195.61 177.40 20.55 3412 4.4110 196.52 177.41 20.67 3413 4.4120 165.88 177.42 18.91 3414 4.4130 224.47 177.42 21.95 3415 4.4140 226.32 177.43 22.15 3416 4.4150 193.77 177.44 20.50 3417 4.4160 173.30 177.45 19.46 3418 4.4170 174.47 177.45 19.45 3419 4.4180 195.72 177.46 20.51 3420 4.4190 213.44 177.47 21.59 3421 4.4200 188.24 177.48 20.24 3422 4.4210 177.35 177.48 19.58 3423 4.4220 184.93 177.49 19.95 3424 4.4230 177.20 177.50 19.65 3425 4.4240 213.25 177.51 21.56 3426 4.4250 190.65 177.51 20.25 3427 4.4260 201.86 177.52 20.91 3428 4.4270 215.98 177.53 21.61 3429 4.4280 223.55 177.53 21.96 3430 4.4290 242.36 177.54 22.91 3431 4.4300 199.95 177.55 20.78 3432 4.4310 202.20 177.56 20.97 3433 4.4320 234.79 177.56 22.65 3434 4.4330 214.10 177.57 21.61 3435 4.4340 212.95 177.58 21.52 3436 4.4350 190.54 177.59 20.30 3437 4.4360 170.64 177.59 19.23 3438 4.4370 184.15 177.60 19.95 3439 4.4380 169.19 177.61 19.02 3440 4.4390 195.62 177.62 20.59 3441 4.4400 192.95 177.62 20.54 3442 4.4410 178.85 177.63 19.62 3443 4.4420 193.64 177.64 20.40 3444 4.4430 176.19 177.64 19.47 3445 4.4440 166.57 177.65 18.92 3446 4.4450 197.28 177.66 20.70 3447 4.4460 179.88 177.67 19.77 3448 4.4470 183.51 177.67 19.98 3449 4.4480 183.68 177.68 19.95 3450 4.4490 178.00 177.69 19.56 3451 4.4500 205.25 177.70 21.04 3452 4.4510 199.57 177.70 20.69 3453 4.4520 202.59 177.71 20.97 3454 4.4530 201.47 177.72 20.75 3455 4.4540 198.27 177.73 20.65 3456 4.4550 212.41 177.73 21.43 3457 4.4560 201.55 177.74 20.94 3458 4.4570 198.09 177.75 20.83 3459 4.4580 171.56 177.76 19.30 3460 4.4590 179.25 177.76 19.73 3461 4.4600 201.64 177.77 20.89 3462 4.4610 209.68 177.78 21.33 3463 4.4620 199.49 177.79 20.84 3464 4.4630 160.41 177.79 18.60 3465 4.4640 174.91 177.80 19.56 3466 4.4650 161.67 177.81 18.62 3467 4.4660 202.71 177.82 21.00 3468 4.4670 190.15 177.82 20.34 3469 4.4680 175.36 177.83 19.46 3470 4.4690 186.97 177.84 20.02 3471 4.4700 201.47 177.84 20.95 3472 4.4710 199.30 177.85 20.79 3473 4.4720 214.16 177.86 21.54 3474 4.4730 196.45 177.87 20.67 3475 4.4740 196.04 177.87 20.63 3476 4.4750 202.88 177.88 21.01 3477 4.4760 167.73 177.89 19.06 3478 4.4770 208.24 177.90 21.19 3479 4.4780 168.09 177.90 19.00 3480 4.4790 210.40 177.91 21.36 3481 4.4800 215.48 177.92 21.70 3482 4.4810 238.78 177.93 22.70 3483 4.4820 180.28 177.93 19.68 3484 4.4830 176.96 177.94 19.62 3485 4.4840 175.85 177.95 19.46 3486 4.4850 224.06 177.96 22.12 3487 4.4860 167.60 177.96 19.00 3488 4.4870 187.31 177.97 20.00 3489 4.4880 213.98 177.98 21.51 3490 4.4890 173.12 177.99 19.26 3491 4.4900 172.45 177.99 19.44 3492 4.4910 185.65 178.00 20.14 3493 4.4920 180.11 178.01 19.60 3494 4.4930 195.70 178.02 20.56 3495 4.4940 199.61 178.02 20.87 3496 4.4950 195.38 178.03 20.63 3497 4.4960 175.88 178.04 19.44 3498 4.4970 168.58 178.05 19.07 3499 4.4980 206.16 178.05 21.11 3500 4.4990 159.53 178.06 18.51 3501 4.5000 171.69 178.07 19.14 3502 4.5010 198.69 178.08 20.86 3503 4.5020 194.66 178.08 20.45 3504 4.5030 221.72 178.09 21.89 3505 4.5040 210.26 178.10 21.36 3506 4.5050 188.55 178.11 20.14 3507 4.5060 186.40 178.11 20.13 3508 4.5070 189.96 178.12 20.21 3509 4.5080 222.07 178.13 21.91 3510 4.5090 192.99 178.14 20.49 3511 4.5100 184.93 178.14 19.96 3512 4.5110 199.44 178.15 20.85 3513 4.5120 173.95 178.16 19.47 3514 4.5130 221.86 178.17 22.00 3515 4.5140 212.79 178.17 21.49 3516 4.5150 204.63 178.18 21.17 3517 4.5160 181.51 178.19 19.81 3518 4.5170 157.88 178.20 18.38 3519 4.5180 166.47 178.20 18.86 3520 4.5190 180.94 178.21 19.82 3521 4.5200 179.20 178.22 19.63 3522 4.5210 192.59 178.23 20.48 3523 4.5220 192.12 178.23 20.31 3524 4.5230 194.80 178.24 20.58 3525 4.5240 202.17 178.25 21.01 3526 4.5250 176.29 178.26 19.51 3527 4.5260 205.47 178.26 21.23 3528 4.5270 212.55 178.27 21.45 3529 4.5280 177.62 178.28 19.61 3530 4.5290 190.28 178.29 20.24 3531 4.5300 217.57 178.29 21.68 3532 4.5310 191.80 178.30 20.24 3533 4.5320 174.46 178.31 19.35 3534 4.5330 198.04 178.32 20.67 3535 4.5340 229.45 178.32 22.31 3536 4.5350 215.27 178.33 21.50 3537 4.5360 182.67 178.34 19.87 3538 4.5370 209.74 178.35 21.34 3539 4.5380 202.38 178.35 20.89 3540 4.5390 196.80 178.36 20.65 3541 4.5400 189.94 178.37 20.23 3542 4.5410 218.01 178.38 21.74 3543 4.5420 188.62 178.38 20.29 3544 4.5430 152.29 178.39 18.11 3545 4.5440 198.86 178.40 20.77 3546 4.5450 182.31 178.41 19.83 3547 4.5460 203.83 178.42 21.04 3548 4.5470 212.78 178.42 21.47 3549 4.5480 186.84 178.43 20.08 3550 4.5490 192.93 178.44 20.54 3551 4.5500 210.34 178.45 21.26 3552 4.5510 219.16 178.45 21.77 3553 4.5520 200.50 178.46 20.76 3554 4.5530 184.32 178.47 20.03 3555 4.5540 187.62 178.48 20.13 3556 4.5550 157.90 178.48 18.44 3557 4.5560 185.08 178.49 19.92 3558 4.5570 188.40 178.50 20.09 3559 4.5580 205.77 178.51 21.10 3560 4.5590 182.51 178.51 19.81 3561 4.5600 192.97 178.52 20.46 3562 4.5610 206.65 178.53 21.27 3563 4.5620 188.23 178.54 20.27 3564 4.5630 201.03 178.54 20.88 3565 4.5640 187.27 178.55 20.25 3566 4.5650 194.83 178.56 20.52 3567 4.5660 191.04 178.57 20.30 3568 4.5670 218.56 178.58 21.71 3569 4.5680 212.60 178.58 21.38 3570 4.5690 188.70 178.59 20.13 3571 4.5700 183.48 178.60 19.89 3572 4.5710 205.83 178.61 21.21 3573 4.5720 226.85 178.61 22.15 3574 4.5730 241.17 178.62 22.77 3575 4.5740 201.11 178.63 20.79 3576 4.5750 235.31 178.64 22.60 3577 4.5760 193.42 178.65 20.44 3578 4.5770 229.45 178.65 22.36 3579 4.5780 204.09 178.66 21.00 3580 4.5790 206.51 178.67 21.18 3581 4.5800 194.69 178.68 20.55 3582 4.5810 213.07 178.68 21.52 3583 4.5820 207.46 178.69 21.16 3584 4.5830 234.17 178.70 22.58 3585 4.5840 245.65 178.71 23.22 3586 4.5850 196.40 178.71 20.72 3587 4.5860 214.03 178.72 21.47 3588 4.5870 220.79 178.73 21.84 3589 4.5880 215.23 178.74 21.52 3590 4.5890 193.51 178.74 20.50 3591 4.5900 201.33 178.75 20.97 3592 4.5910 184.00 178.76 19.88 3593 4.5920 199.24 178.77 20.78 3594 4.5930 200.10 178.77 20.81 3595 4.5940 204.82 178.78 21.09 3596 4.5950 187.54 178.79 20.13 3597 4.5960 203.03 178.80 21.00 3598 4.5970 185.87 178.81 20.07 3599 4.5980 149.17 178.81 17.87 3600 4.5990 190.51 178.82 20.32 3601 4.6000 198.88 178.83 20.70 3602 4.6010 172.39 178.84 19.33 3603 4.6020 176.63 178.85 19.55 3604 4.6030 192.69 178.85 20.41 3605 4.6040 211.51 178.86 21.33 3606 4.6050 245.46 178.87 23.09 3607 4.6060 216.38 178.88 21.65 3608 4.6070 196.49 178.88 20.62 3609 4.6080 181.24 178.89 19.71 3610 4.6090 236.20 178.90 22.68 3611 4.6100 207.08 178.91 21.26 3612 4.6110 196.48 178.91 20.65 3613 4.6120 196.72 178.92 20.65 3614 4.6130 202.88 178.93 20.93 3615 4.6140 190.92 178.94 20.40 3616 4.6150 188.80 178.95 20.24 3617 4.6160 206.53 178.95 21.04 3618 4.6170 206.54 178.96 21.03 3619 4.6180 167.11 178.97 18.99 3620 4.6190 192.98 178.98 20.45 3621 4.6200 212.85 178.98 21.59 3622 4.6210 185.84 178.99 20.02 3623 4.6220 206.30 179.00 21.07 3624 4.6230 190.27 179.01 20.26 3625 4.6240 183.88 179.01 19.81 3626 4.6250 236.04 179.02 22.62 3627 4.6260 208.08 179.03 21.17 3628 4.6270 197.44 179.04 20.61 3629 4.6280 208.48 179.05 21.17 3630 4.6290 199.37 179.05 20.76 3631 4.6300 196.80 179.06 20.66 3632 4.6310 197.23 179.07 20.61 3633 4.6320 218.93 179.08 21.85 3634 4.6330 205.49 179.09 21.11 3635 4.6340 239.98 179.09 22.77 3636 4.6350 183.13 179.10 19.85 3637 4.6360 159.12 179.11 18.53 3638 4.6370 188.06 179.12 20.15 3639 4.6380 162.18 179.12 18.69 3640 4.6390 220.59 179.13 21.82 3641 4.6400 214.96 179.14 21.56 3642 4.6410 204.67 179.15 21.15 3643 4.6420 202.61 179.15 20.92 3644 4.6430 213.99 179.16 21.53 3645 4.6440 217.64 179.17 21.73 3646 4.6450 204.44 179.18 21.04 3647 4.6460 208.04 179.19 21.19 3648 4.6470 208.33 179.19 21.27 3649 4.6480 211.51 179.20 21.42 3650 4.6490 197.49 179.21 20.61 3651 4.6500 199.10 179.22 20.71 3652 4.6510 198.20 179.23 20.62 3653 4.6520 201.79 179.23 20.86 3654 4.6530 202.58 179.24 20.90 3655 4.6540 203.40 179.25 20.97 3656 4.6550 195.32 179.26 20.61 3657 4.6560 193.67 179.26 20.51 3658 4.6570 248.01 179.27 23.27 3659 4.6580 201.51 179.28 20.92 3660 4.6590 224.28 179.29 22.07 3661 4.6600 196.54 179.29 20.56 3662 4.6610 164.67 179.30 18.86 3663 4.6620 182.77 179.31 19.84 3664 4.6630 190.98 179.32 20.21 3665 4.6640 245.47 179.33 23.08 3666 4.6650 213.21 179.33 21.52 3667 4.6660 194.93 179.34 20.57 3668 4.6670 186.49 179.35 20.16 3669 4.6680 208.95 179.36 21.28 3670 4.6690 203.27 179.37 21.01 3671 4.6700 186.95 179.37 20.12 3672 4.6710 188.37 179.38 20.14 3673 4.6720 204.43 179.39 21.06 3674 4.6730 182.65 179.40 19.91 3675 4.6740 201.52 179.40 20.87 3676 4.6750 213.12 179.41 21.51 3677 4.6760 219.12 179.42 21.85 3678 4.6770 195.25 179.43 20.58 3679 4.6780 226.67 179.44 22.25 3680 4.6790 221.76 179.44 21.97 3681 4.6800 187.98 179.45 20.19 3682 4.6810 189.93 179.46 20.28 3683 4.6820 204.83 179.47 21.05 3684 4.6830 190.53 179.48 20.33 3685 4.6840 216.21 179.48 21.61 3686 4.6850 186.13 179.49 20.09 3687 4.6860 228.85 179.50 22.19 3688 4.6870 235.70 179.51 22.65 3689 4.6880 210.18 179.51 21.30 3690 4.6890 202.75 179.52 20.84 3691 4.6900 217.59 179.53 21.72 3692 4.6910 180.96 179.54 19.69 3693 4.6920 191.11 179.55 20.36 3694 4.6930 181.51 179.55 19.78 3695 4.6940 201.39 179.56 20.89 3696 4.6950 227.63 179.57 22.25 3697 4.6960 181.22 179.58 19.72 3698 4.6970 205.47 179.59 21.10 3699 4.6980 216.07 179.59 21.58 3700 4.6990 246.48 179.60 23.06 3701 4.7000 204.47 179.61 20.93 3702 4.7010 193.68 179.62 20.49 3703 4.7020 219.00 179.62 21.73 3704 4.7030 245.34 179.63 23.05 3705 4.7040 224.85 179.64 22.06 3706 4.7050 198.85 179.65 20.70 3707 4.7060 164.43 179.66 18.90 3708 4.7070 227.91 179.66 22.15 3709 4.7080 198.28 179.67 20.68 3710 4.7090 205.42 179.68 21.15 3711 4.7100 183.42 179.69 19.89 3712 4.7110 185.03 179.70 19.92 3713 4.7120 211.64 179.70 21.34 3714 4.7130 219.49 179.71 21.78 3715 4.7140 202.49 179.72 20.89 3716 4.7150 233.37 179.73 22.54 3717 4.7160 244.32 179.74 22.91 3718 4.7170 219.41 179.74 21.80 3719 4.7180 219.16 179.75 21.77 3720 4.7190 190.27 179.76 20.26 3721 4.7200 235.79 179.77 22.60 3722 4.7210 211.08 179.78 21.37 3723 4.7220 228.06 179.78 22.15 3724 4.7230 236.96 179.79 22.60 3725 4.7240 234.13 179.80 22.63 3726 4.7250 181.56 179.81 19.74 3727 4.7260 178.80 179.82 19.66 3728 4.7270 217.38 179.82 21.74 3729 4.7280 236.21 179.83 22.59 3730 4.7290 233.52 179.84 22.50 3731 4.7300 214.37 179.85 21.59 3732 4.7310 206.19 179.85 21.08 3733 4.7320 225.02 179.86 22.09 3734 4.7330 212.24 179.87 21.37 3735 4.7340 231.87 179.88 22.31 3736 4.7350 198.97 179.89 20.74 3737 4.7360 177.91 179.90 19.71 3738 4.7370 223.04 179.90 21.97 3739 4.7380 197.48 179.91 20.72 3740 4.7390 217.95 179.92 21.76 3741 4.7400 208.87 179.93 21.35 3742 4.7410 214.13 179.93 21.57 3743 4.7420 202.94 179.94 21.04 3744 4.7430 215.25 179.95 21.64 3745 4.7440 192.32 179.96 20.37 3746 4.7450 229.47 179.97 22.32 3747 4.7460 207.43 179.97 21.29 3748 4.7470 197.68 179.98 20.62 3749 4.7480 220.27 179.99 21.80 3750 4.7490 205.92 180.00 21.01 3751 4.7500 199.96 180.01 20.80 3752 4.7510 194.18 180.01 20.49 3753 4.7520 202.23 180.02 20.99 3754 4.7530 191.41 180.03 20.30 3755 4.7540 208.97 180.04 21.25 3756 4.7550 199.12 180.05 20.84 3757 4.7560 236.02 180.05 22.58 3758 4.7570 221.38 180.06 21.88 3759 4.7580 214.14 180.07 21.53 3760 4.7590 226.56 180.08 22.18 3761 4.7600 185.54 180.09 19.90 3762 4.7610 192.81 180.09 20.48 3763 4.7620 201.59 180.10 20.92 3764 4.7630 185.64 180.11 20.13 3765 4.7640 185.69 180.12 20.03 3766 4.7650 215.17 180.13 21.66 3767 4.7660 207.59 180.13 21.24 3768 4.7670 225.95 180.14 22.14 3769 4.7680 190.63 180.15 20.33 3770 4.7690 201.03 180.16 20.84 3771 4.7700 223.28 180.17 22.04 3772 4.7710 225.97 180.17 22.22 3773 4.7720 190.20 180.18 20.28 3774 4.7730 236.83 180.19 22.60 3775 4.7740 251.54 180.20 23.39 3776 4.7750 230.35 180.21 22.35 3777 4.7760 197.13 180.21 20.55 3778 4.7770 204.06 180.22 21.03 3779 4.7780 204.15 180.23 21.08 3780 4.7790 203.22 180.24 20.96 3781 4.7800 208.58 180.25 21.26 3782 4.7810 210.20 180.25 21.31 3783 4.7820 230.19 180.26 22.28 3784 4.7830 239.78 180.27 22.92 3785 4.7840 221.40 180.28 21.81 3786 4.7850 227.26 180.29 22.28 3787 4.7860 194.18 180.29 20.67 3788 4.7870 211.99 180.30 21.45 3789 4.7880 203.28 180.31 20.99 3790 4.7890 171.37 180.32 19.21 3791 4.7900 217.45 180.33 21.64 3792 4.7910 208.10 180.33 21.26 3793 4.7920 190.66 180.34 20.33 3794 4.7930 199.93 180.35 20.79 3795 4.7940 233.52 180.36 22.48 3796 4.7950 193.69 180.37 20.45 3797 4.7960 226.41 180.38 22.22 3798 4.7970 225.45 180.38 22.15 3799 4.7980 202.80 180.39 20.99 3800 4.7990 202.56 180.40 20.84 3801 4.8000 190.22 180.41 20.25 3802 4.8010 192.44 180.41 20.44 3803 4.8020 204.89 180.42 21.10 3804 4.8030 206.35 180.43 21.18 3805 4.8040 202.71 180.44 21.01 3806 4.8050 193.05 180.45 20.42 3807 4.8060 212.71 180.46 21.34 3808 4.8070 218.16 180.46 21.69 3809 4.8080 187.70 180.47 20.16 3810 4.8090 205.22 180.48 21.13 3811 4.8100 172.64 180.49 19.28 3812 4.8110 226.51 180.49 22.12 3813 4.8120 214.27 180.50 21.49 3814 4.8130 220.62 180.51 21.90 3815 4.8140 212.46 180.52 21.43 3816 4.8150 186.05 180.53 20.04 3817 4.8160 223.58 180.54 21.88 3818 4.8170 240.13 180.54 22.83 3819 4.8180 238.72 180.55 22.71 3820 4.8190 222.50 180.56 22.02 3821 4.8200 233.16 180.57 22.55 3822 4.8210 211.61 180.58 21.34 3823 4.8220 246.37 180.58 23.19 3824 4.8230 263.21 180.59 23.95 3825 4.8240 224.31 180.60 22.11 3826 4.8250 238.48 180.61 22.71 3827 4.8260 230.38 180.62 22.35 3828 4.8270 228.59 180.62 22.27 3829 4.8280 229.89 180.63 22.33 3830 4.8290 203.74 180.64 20.99 3831 4.8300 228.39 180.65 22.35 3832 4.8310 242.37 180.66 22.87 3833 4.8320 206.82 180.66 21.09 3834 4.8330 237.09 180.67 22.56 3835 4.8340 214.30 180.68 21.52 3836 4.8350 220.37 180.69 21.95 3837 4.8360 188.04 180.70 20.13 3838 4.8370 234.44 180.71 22.64 3839 4.8380 212.55 180.71 21.40 3840 4.8390 233.63 180.72 22.51 3841 4.8400 192.53 180.73 20.31 3842 4.8410 198.22 180.74 20.66 3843 4.8420 206.10 180.75 21.17 3844 4.8430 204.93 180.75 21.05 3845 4.8440 234.14 180.76 22.48 3846 4.8450 177.37 180.77 19.55 3847 4.8460 197.63 180.78 20.69 3848 4.8470 200.60 180.79 20.86 3849 4.8480 222.96 180.79 21.97 3850 4.8490 210.00 180.80 21.30 3851 4.8500 187.60 180.81 20.08 3852 4.8510 195.27 180.82 20.53 3853 4.8520 211.36 180.83 21.47 3854 4.8530 215.28 180.84 21.60 3855 4.8540 230.30 180.84 22.27 3856 4.8550 202.66 180.85 20.83 3857 4.8560 212.24 180.86 21.51 3858 4.8570 209.65 180.87 21.24 3859 4.8580 220.77 180.88 21.81 3860 4.8590 236.62 180.88 22.70 3861 4.8600 204.55 180.89 20.94 3862 4.8610 237.56 180.90 22.58 3863 4.8620 206.11 180.91 21.06 3864 4.8630 237.99 180.92 22.82 3865 4.8640 193.16 180.92 20.42 3866 4.8650 204.68 180.93 21.05 3867 4.8660 228.36 180.94 22.20 3868 4.8670 262.60 180.95 23.82 3869 4.8680 228.63 180.96 22.21 3870 4.8690 242.39 180.96 22.84 3871 4.8700 240.69 180.97 22.79 3872 4.8710 236.42 180.98 22.66 3873 4.8720 240.11 180.99 22.85 3874 4.8730 219.39 181.00 21.80 3875 4.8740 256.02 181.01 23.48 3876 4.8750 272.67 181.01 24.36 3877 4.8760 227.70 181.02 22.24 3878 4.8770 249.15 181.03 23.33 3879 4.8780 258.63 181.04 23.73 3880 4.8790 218.81 181.05 21.79 3881 4.8800 231.90 181.05 22.43 3882 4.8810 269.22 181.06 24.15 3883 4.8820 272.00 181.07 24.29 3884 4.8830 246.25 181.08 23.02 3885 4.8840 280.92 181.09 24.62 3886 4.8850 271.15 181.10 24.19 3887 4.8860 251.08 181.10 23.35 3888 4.8870 250.60 181.11 23.34 3889 4.8880 216.97 181.12 21.71 3890 4.8890 226.86 181.13 22.18 3891 4.8900 215.45 181.14 21.47 3892 4.8910 250.13 181.14 23.30 3893 4.8920 225.81 181.15 22.06 3894 4.8930 241.88 181.16 22.92 3895 4.8940 201.10 181.17 20.89 3896 4.8950 249.76 181.18 23.17 3897 4.8960 221.34 181.18 21.81 3898 4.8970 233.18 181.19 22.38 3899 4.8980 209.84 181.20 21.28 3900 4.8990 229.04 181.21 22.35 3901 4.9000 227.62 181.22 22.14 3902 4.9010 243.83 181.23 23.04 3903 4.9020 244.42 181.23 23.00 3904 4.9030 243.11 181.24 22.95 3905 4.9040 218.13 181.25 21.71 3906 4.9050 243.89 181.26 23.12 3907 4.9060 187.75 181.27 20.09 3908 4.9070 230.77 181.27 22.37 3909 4.9080 201.89 181.28 20.89 3910 4.9090 205.95 181.29 21.15 3911 4.9100 210.24 181.30 21.28 3912 4.9110 193.66 181.31 20.43 3913 4.9120 203.73 181.32 20.96 3914 4.9130 213.74 181.32 21.47 3915 4.9140 179.31 181.33 19.69 3916 4.9150 206.89 181.34 21.14 3917 4.9160 209.48 181.35 21.32 3918 4.9170 220.91 181.36 21.97 3919 4.9180 186.87 181.37 20.05 3920 4.9190 221.62 181.37 22.04 3921 4.9200 242.55 181.38 23.04 3922 4.9210 220.79 181.39 21.85 3923 4.9220 243.71 181.40 22.94 3924 4.9230 230.86 181.41 22.46 3925 4.9240 212.45 181.41 21.30 3926 4.9250 227.38 181.42 22.24 3927 4.9260 205.41 181.43 21.03 3928 4.9270 218.42 181.44 21.68 3929 4.9280 252.81 181.45 23.38 3930 4.9290 188.03 181.46 20.03 3931 4.9300 189.55 181.46 20.22 3932 4.9310 215.01 181.47 21.47 3933 4.9320 196.67 181.48 20.38 3934 4.9330 229.95 181.49 22.28 3935 4.9340 235.02 181.50 22.55 3936 4.9350 223.54 181.50 22.14 3937 4.9360 172.60 181.51 19.12 3938 4.9370 234.16 181.52 22.51 3939 4.9380 219.55 181.53 21.82 3940 4.9390 227.42 181.54 22.26 3941 4.9400 189.37 181.54 20.22 3942 4.9410 219.96 181.55 21.84 3943 4.9420 207.35 181.56 21.11 3944 4.9430 198.13 181.57 20.75 3945 4.9440 234.85 181.58 22.59 3946 4.9450 223.21 181.59 22.03 3947 4.9460 227.35 181.60 22.10 3948 4.9470 197.11 181.60 20.62 3949 4.9480 178.12 181.61 19.57 3950 4.9490 260.93 181.62 23.79 3951 4.9500 235.28 181.63 22.55 3952 4.9510 225.17 181.64 22.09 3953 4.9520 205.51 181.64 21.07 3954 4.9530 225.89 181.65 22.17 3955 4.9540 182.99 181.66 19.90 3956 4.9550 209.57 181.67 21.35 3957 4.9560 193.58 181.68 20.41 3958 4.9570 182.68 181.68 19.77 3959 4.9580 231.78 181.69 22.34 3960 4.9590 215.90 181.70 21.55 3961 4.9600 210.70 181.71 21.42 3962 4.9610 216.51 181.72 21.72 3963 4.9620 207.11 181.73 21.18 3964 4.9630 247.50 181.74 23.13 3965 4.9640 194.71 181.74 20.40 3966 4.9650 212.43 181.75 21.38 3967 4.9660 200.80 181.76 20.70 3968 4.9670 195.23 181.77 20.56 3969 4.9680 199.54 181.78 20.81 3970 4.9690 255.20 181.78 23.58 3971 4.9700 203.49 181.79 20.96 3972 4.9710 211.26 181.80 21.46 3973 4.9720 191.18 181.81 20.38 3974 4.9730 216.35 181.82 21.58 3975 4.9740 222.44 181.82 21.97 3976 4.9750 208.32 181.83 21.36 3977 4.9760 185.13 181.84 20.11 3978 4.9770 226.51 181.85 22.17 3979 4.9780 243.86 181.86 22.95 3980 4.9790 210.25 181.87 21.27 3981 4.9800 220.32 181.88 21.87 3982 4.9810 226.03 181.88 22.10 3983 4.9820 194.79 181.89 20.53 3984 4.9830 212.00 181.90 21.48 3985 4.9840 205.87 181.91 21.07 3986 4.9850 196.61 181.92 20.68 3987 4.9860 191.35 181.92 20.33 3988 4.9870 201.60 181.93 21.00 3989 4.9880 210.46 181.94 21.33 3990 4.9890 207.14 181.95 21.20 3991 4.9900 212.17 181.96 21.36 3992 4.9910 229.89 181.97 22.33 3993 4.9920 199.97 181.97 20.80 3994 4.9930 185.35 181.98 19.90 3995 4.9940 195.20 181.99 20.58 3996 4.9950 198.04 182.00 20.73 3997 4.9960 203.17 182.01 20.99 3998 4.9970 215.12 182.01 21.51 3999 4.9980 231.95 182.02 22.38 4000 4.9990 206.09 182.03 21.10 4001 5.0000 204.43 182.04 21.02 4002 5.0010 226.66 182.05 22.17 4003 5.0020 198.54 182.06 20.66 4004 5.0030 220.96 182.07 21.81 4005 5.0040 227.10 182.07 22.18 4006 5.0050 207.40 182.08 21.27 4007 5.0060 188.96 182.09 20.22 4008 5.0070 234.12 182.10 22.54 4009 5.0080 253.19 182.11 23.43 4010 5.0090 187.34 182.12 20.11 4011 5.0100 227.62 182.12 22.21 4012 5.0110 224.41 182.13 21.92 4013 5.0120 218.33 182.14 21.71 4014 5.0130 230.13 182.15 22.31 4015 5.0140 193.63 182.16 20.43 4016 5.0150 208.11 182.16 21.22 4017 5.0160 215.88 182.17 21.55 4018 5.0170 212.69 182.18 21.38 4019 5.0180 221.95 182.19 21.94 4020 5.0190 208.21 182.20 21.18 4021 5.0200 210.60 182.21 21.44 4022 5.0210 242.59 182.21 22.82 4023 5.0220 244.94 182.22 22.96 4024 5.0230 198.59 182.23 20.73 4025 5.0240 206.18 182.24 21.10 4026 5.0250 223.35 182.25 22.07 4027 5.0260 217.16 182.26 21.59 4028 5.0270 203.16 182.26 21.02 4029 5.0280 232.44 182.27 22.43 4030 5.0290 225.22 182.28 22.07 4031 5.0300 219.72 182.29 21.82 4032 5.0310 189.03 182.30 20.19 4033 5.0320 214.26 182.30 21.50 4034 5.0330 218.91 182.31 21.69 4035 5.0340 238.45 182.32 22.80 4036 5.0350 201.59 182.33 20.83 4037 5.0360 236.20 182.34 22.59 4038 5.0370 280.82 182.35 24.80 4039 5.0380 237.38 182.35 22.67 4040 5.0390 271.33 182.36 24.34 4041 5.0400 234.34 182.37 22.50 4042 5.0410 273.17 182.38 24.39 4043 5.0420 254.84 182.39 23.37 4044 5.0430 275.58 182.40 24.53 4045 5.0440 258.35 182.40 23.70 4046 5.0450 266.07 182.41 23.94 4047 5.0460 252.79 182.42 23.36 4048 5.0470 250.63 182.43 23.32 4049 5.0480 292.16 182.44 25.17 4050 5.0490 247.70 182.45 23.23 4051 5.0500 259.25 182.46 23.61 4052 5.0510 253.72 182.46 23.44 4053 5.0520 258.72 182.47 23.62 4054 5.0530 246.74 182.48 23.02 4055 5.0540 253.34 182.49 23.40 4056 5.0550 223.60 182.50 21.90 4057 5.0560 232.00 182.51 22.39 4058 5.0570 244.11 182.51 23.03 4059 5.0580 283.35 182.52 24.79 4060 5.0590 251.92 182.53 23.38 4061 5.0600 228.00 182.54 22.13 4062 5.0610 233.78 182.55 22.46 4063 5.0620 234.62 182.55 22.46 4064 5.0630 218.17 182.56 21.82 4065 5.0640 252.72 182.57 23.39 4066 5.0650 219.30 182.58 21.83 4067 5.0660 238.23 182.59 22.72 4068 5.0670 237.59 182.60 22.80 4069 5.0680 213.82 182.60 21.44 4070 5.0690 229.49 182.61 22.29 4071 5.0700 210.50 182.62 21.40 4072 5.0710 209.23 182.63 21.29 4073 5.0720 206.17 182.64 21.08 4074 5.0730 212.43 182.65 21.42 4075 5.0740 223.28 182.65 22.06 4076 5.0750 225.60 182.66 22.21 4077 5.0760 228.54 182.67 22.40 4078 5.0770 227.40 182.68 22.19 4079 5.0780 211.72 182.69 21.48 4080 5.0790 217.79 182.70 21.76 4081 5.0800 234.06 182.71 22.57 4082 5.0810 209.68 182.71 21.38 4083 5.0820 205.46 182.72 21.00 4084 5.0830 210.22 182.73 21.34 4085 5.0840 208.91 182.74 21.30 4086 5.0850 216.39 182.75 21.66 4087 5.0860 202.18 182.76 20.89 4088 5.0870 247.79 182.76 23.15 4089 5.0880 216.68 182.77 21.70 4090 5.0890 241.09 182.78 22.83 4091 5.0900 229.73 182.79 22.33 4092 5.0910 182.24 182.80 19.75 4093 5.0920 237.87 182.80 22.67 4094 5.0930 205.52 182.81 21.15 4095 5.0940 188.83 182.82 20.12 4096 5.0950 215.52 182.83 21.59 4097 5.0960 213.49 182.84 21.56 4098 5.0970 237.29 182.85 22.63 4099 5.0980 212.12 182.85 21.34 4100 5.0990 220.14 182.86 21.81 4101 5.1000 210.62 182.87 21.29 4102 5.1010 249.56 182.88 23.12 4103 5.1020 237.01 182.89 22.66 4104 5.1030 235.21 182.90 22.61 4105 5.1040 231.03 182.90 22.41 4106 5.1050 216.65 182.91 21.51 4107 5.1060 236.20 182.92 22.69 4108 5.1070 201.58 182.93 20.88 4109 5.1080 229.96 182.94 22.27 4110 5.1090 257.47 182.95 23.61 4111 5.1100 228.89 182.96 22.22 4112 5.1110 229.19 182.96 22.27 4113 5.1120 246.63 182.97 23.08 4114 5.1130 194.58 182.98 20.50 4115 5.1140 200.56 182.99 20.84 4116 5.1150 190.28 183.00 20.29 4117 5.1160 222.71 183.01 21.99 4118 5.1170 208.65 183.01 21.34 4119 5.1180 168.64 183.02 19.09 4120 5.1190 181.92 183.03 19.82 4121 5.1200 207.31 183.04 21.21 4122 5.1210 231.83 183.05 22.48 4123 5.1220 235.13 183.05 22.53 4124 5.1230 233.68 183.06 22.49 4125 5.1240 231.00 183.07 22.35 4126 5.1250 239.99 183.08 22.82 4127 5.1260 239.77 183.09 22.87 4128 5.1270 258.91 183.10 23.65 4129 5.1280 219.46 183.11 21.85 4130 5.1290 211.70 183.11 21.49 4131 5.1300 227.44 183.12 22.13 4132 5.1310 195.88 183.13 20.68 4133 5.1320 234.99 183.14 22.54 4134 5.1330 195.49 183.15 20.48 4135 5.1340 185.57 183.16 19.99 4136 5.1350 218.98 183.16 21.78 4137 5.1360 225.43 183.17 22.22 4138 5.1370 211.34 183.18 21.43 4139 5.1380 239.16 183.19 22.84 4140 5.1390 229.87 183.20 22.37 4141 5.1400 220.89 183.21 21.78 4142 5.1410 235.09 183.21 22.52 4143 5.1420 205.70 183.22 21.06 4144 5.1430 228.18 183.23 22.26 4145 5.1440 230.00 183.24 22.27 4146 5.1450 225.60 183.25 22.09 4147 5.1460 224.12 183.26 22.11 4148 5.1470 197.44 183.26 20.62 4149 5.1480 209.68 183.27 21.27 4150 5.1490 248.80 183.28 23.15 4151 5.1500 241.43 183.29 22.91 4152 5.1510 184.93 183.30 19.96 4153 5.1520 188.75 183.31 20.11 4154 5.1530 201.52 183.32 20.84 4155 5.1540 240.15 183.32 22.82 4156 5.1550 193.90 183.33 20.42 4157 5.1560 220.11 183.34 21.90 4158 5.1570 220.93 183.35 21.96 4159 5.1580 197.20 183.36 20.65 4160 5.1590 236.23 183.37 22.65 4161 5.1600 202.42 183.37 20.78 4162 5.1610 235.61 183.38 22.64 4163 5.1620 209.87 183.97 21.28 4164 5.1630 200.94 183.99 20.94 4165 5.1640 206.86 184.01 21.16 4166 5.1650 199.91 184.03 20.77 4167 5.1660 218.43 184.05 21.70 4168 5.1670 169.98 184.07 19.17 4169 5.1680 211.09 184.09 21.41 4170 5.1690 222.71 184.12 21.97 4171 5.1700 240.98 184.14 22.93 4172 5.1710 183.88 184.16 19.91 4173 5.1720 211.14 184.18 21.34 4174 5.1730 211.42 184.21 21.38 4175 5.1740 214.26 184.23 21.54 4176 5.1750 191.80 184.26 20.38 4177 5.1760 186.59 184.28 20.06 4178 5.1770 234.42 184.31 22.57 4179 5.1780 206.07 184.33 21.16 4180 5.1790 230.50 184.36 22.45 4181 5.1800 249.26 184.39 23.20 4182 5.1810 212.61 184.42 21.37 4183 5.1820 207.67 184.45 21.21 4184 5.1830 176.75 184.48 19.54 4185 5.1840 240.46 184.51 22.79 4186 5.1850 222.97 184.54 22.02 4187 5.1860 192.92 184.57 20.39 4188 5.1870 228.37 184.60 22.22 4189 5.1880 215.34 184.64 21.69 4190 5.1890 224.59 184.67 22.10 4191 5.1900 227.62 184.71 22.21 4192 5.1910 224.29 184.75 22.18 4193 5.1920 210.13 184.79 21.37 4194 5.1930 252.95 184.83 23.29 4195 5.1940 229.75 184.87 22.24 4196 5.1950 201.70 184.91 20.89 4197 5.1960 236.62 184.96 22.59 4198 5.1970 201.53 185.00 20.94 4199 5.1980 208.83 185.05 21.32 4200 5.1990 244.01 185.10 23.01 4201 5.2000 235.30 185.15 22.51 4202 5.2010 242.39 185.20 22.96 4203 5.2020 247.03 185.26 23.09 4204 5.2030 212.15 185.31 21.36 4205 5.2040 228.41 185.37 22.15 4206 5.2050 218.27 185.44 21.68 4207 5.2060 215.78 185.50 21.61 4208 5.2070 247.77 185.57 23.13 4209 5.2080 243.70 185.64 22.92 4210 5.2090 196.16 185.71 20.61 4211 5.2100 241.80 185.79 22.90 4212 5.2110 235.66 185.87 22.51 4213 5.2120 202.28 185.96 20.91 4214 5.2130 233.46 186.05 22.50 4215 5.2140 256.80 186.15 23.67 4216 5.2150 235.96 186.24 22.67 4217 5.2160 238.78 186.35 22.82 4218 5.2170 215.13 186.46 21.55 4219 5.2180 224.66 186.58 22.02 4220 5.2190 195.67 186.71 20.56 4221 5.2200 239.52 186.84 22.84 4222 5.2210 181.79 186.98 19.78 4223 5.2220 222.42 187.13 21.85 4224 5.2230 246.41 187.29 23.13 4225 5.2240 205.99 187.46 21.12 4226 5.2250 227.14 187.65 22.19 4227 5.2260 239.03 187.84 22.76 4228 5.2270 250.76 188.05 23.36 4229 5.2280 213.30 188.28 21.41 4230 5.2290 220.78 188.52 21.87 4231 5.2300 211.90 188.79 21.41 4232 5.2310 207.51 189.07 21.20 4233 5.2320 213.56 189.38 21.38 4234 5.2330 227.07 189.72 22.23 4235 5.2340 234.70 190.09 22.51 4236 5.2350 231.28 190.50 22.40 4237 5.2360 235.05 190.94 22.49 4238 5.2370 231.61 191.43 22.39 4239 5.2380 224.60 191.97 21.94 4240 5.2390 247.71 192.57 23.13 4241 5.2400 211.29 193.24 21.48 4242 5.2410 213.99 193.98 21.53 4243 5.2420 248.24 194.82 23.25 4244 5.2430 239.89 195.76 22.73 4245 5.2440 258.16 196.83 23.65 4246 5.2450 246.45 198.05 23.11 4247 5.2460 204.06 199.44 20.97 4248 5.2470 265.69 201.05 23.99 4249 5.2480 276.67 202.92 24.44 4250 5.2490 276.79 205.10 24.56 4251 5.2500 233.61 207.68 22.55 4252 5.2510 231.01 210.74 22.43 4253 5.2520 249.63 214.42 23.26 4254 5.2530 274.32 218.90 24.25 4255 5.2540 284.86 224.43 24.82 4256 5.2550 286.64 231.36 24.94 4257 5.2560 320.70 240.19 26.40 4258 5.2570 373.14 251.60 28.40 4259 5.2580 365.61 266.56 28.16 4260 5.2590 392.95 286.25 29.08 4261 5.2600 375.36 312.20 28.47 4262 5.2610 491.08 345.90 32.72 4263 5.2620 557.98 388.32 34.88 4264 5.2630 653.54 438.08 37.75 4265 5.2640 694.01 488.25 38.85 4266 5.2650 699.32 524.42 38.96 4267 5.2660 738.64 530.67 40.00 4268 5.2670 661.71 503.74 37.82 4269 5.2680 590.67 456.58 35.74 4270 5.2690 497.15 405.51 32.80 4271 5.2700 443.00 360.13 30.97 4272 5.2710 463.00 323.35 31.72 4273 5.2720 387.87 294.83 29.01 4274 5.2730 345.80 273.11 27.24 4275 5.2740 345.51 256.62 27.36 4276 5.2750 356.65 244.09 27.81 4277 5.2760 342.93 234.44 27.25 4278 5.2770 314.83 226.91 26.14 4279 5.2780 304.87 220.95 25.68 4280 5.2790 356.60 216.14 27.78 4281 5.2800 292.54 212.22 25.16 4282 5.2810 260.88 208.97 23.71 4283 5.2820 259.40 206.25 23.72 4284 5.2830 291.85 203.95 25.19 4285 5.2840 256.00 202.00 23.59 4286 5.2850 295.52 200.32 25.39 4287 5.2860 258.20 198.87 23.59 4288 5.2870 262.23 197.61 23.84 4289 5.2880 270.90 196.51 24.22 4290 5.2890 248.42 195.54 23.16 4291 5.2900 270.27 194.68 24.18 4292 5.2910 283.31 193.92 24.78 4293 5.2920 263.86 193.24 23.96 4294 5.2930 223.38 192.64 21.97 4295 5.2940 215.78 192.09 21.58 4296 5.2950 235.63 191.60 22.55 4297 5.2960 253.66 191.16 23.46 4298 5.2970 279.95 190.76 24.63 4299 5.2980 210.22 190.40 21.31 4300 5.2990 207.17 190.06 21.20 4301 5.3000 235.75 189.76 22.69 4302 5.3010 224.84 189.48 22.08 4303 5.3020 220.75 189.23 21.84 4304 5.3030 204.26 188.99 21.03 4305 5.3040 233.41 188.78 22.46 4306 5.3050 231.92 188.58 22.35 4307 5.3060 280.37 188.39 24.76 4308 5.3070 264.63 188.22 23.95 4309 5.3080 210.94 188.06 21.25 4310 5.3090 216.32 187.92 21.63 4311 5.3100 217.31 187.78 21.77 4312 5.3110 212.34 187.65 21.37 4313 5.3120 225.90 187.53 22.06 4314 5.3130 218.71 187.42 21.79 4315 5.3140 204.34 187.32 20.98 4316 5.3150 219.61 187.22 21.86 4317 5.3160 239.31 187.13 22.85 4318 5.3170 201.03 187.05 20.77 4319 5.3180 238.64 186.97 22.81 4320 5.3190 226.68 186.89 22.16 4321 5.3200 204.71 186.82 21.05 4322 5.3210 225.06 186.75 22.02 4323 5.3220 243.53 186.69 23.01 4324 5.3230 191.38 186.63 20.36 4325 5.3240 200.80 186.58 20.85 4326 5.3250 231.41 186.53 22.45 4327 5.3260 230.17 186.48 22.30 4328 5.3270 250.18 186.43 23.31 4329 5.3280 258.94 186.39 23.73 4330 5.3290 240.61 186.35 22.77 4331 5.3300 267.72 186.31 23.99 4332 5.3310 228.61 186.27 22.33 4333 5.3320 248.16 186.23 23.11 4334 5.3330 231.01 186.20 22.29 4335 5.3340 259.50 186.17 23.81 4336 5.3350 265.14 186.14 23.98 4337 5.3360 279.91 186.11 24.74 4338 5.3370 280.83 186.09 24.71 4339 5.3380 276.00 186.06 24.46 4340 5.3390 259.51 186.04 23.79 4341 5.3400 274.75 186.01 24.39 4342 5.3410 291.80 185.99 25.15 4343 5.3420 293.65 185.97 25.29 4344 5.3430 274.51 185.96 24.35 4345 5.3440 300.58 185.94 25.41 4346 5.3450 302.96 185.92 25.60 4347 5.3460 376.54 185.90 28.56 4348 5.3470 336.26 185.89 26.91 4349 5.3480 406.05 185.88 29.66 4350 5.3490 395.52 185.86 29.26 4351 5.3500 386.12 185.85 28.98 4352 5.3510 394.53 185.84 29.21 4353 5.3520 421.49 185.83 30.17 4354 5.3530 417.49 185.82 30.08 4355 5.3540 379.89 185.81 28.73 4356 5.3550 455.50 185.80 31.47 4357 5.3560 471.92 185.79 31.96 4358 5.3570 499.39 185.78 32.93 4359 5.3580 484.48 185.77 32.50 4360 5.3590 475.62 185.76 32.02 4361 5.3600 413.03 185.76 29.83 4362 5.3610 413.26 185.75 29.87 4363 5.3620 466.24 185.75 31.80 4364 5.3630 396.19 185.74 29.28 4365 5.3640 334.00 185.74 26.76 4366 5.3650 347.57 185.73 27.19 4367 5.3660 387.46 185.73 28.96 4368 5.3670 352.53 185.73 27.64 4369 5.3680 330.48 185.72 26.65 4370 5.3690 353.42 185.72 27.52 4371 5.3700 324.11 185.72 26.47 4372 5.3710 288.56 185.15 25.02 4373 5.3720 257.06 185.16 23.50 4374 5.3730 317.88 185.17 26.31 4375 5.3740 292.88 185.18 25.17 4376 5.3750 258.94 185.19 23.52 4377 5.3760 290.78 185.20 25.23 4378 5.3770 230.20 185.20 22.29 4379 5.3780 254.55 185.21 23.49 4380 5.3790 220.33 185.22 21.86 4381 5.3800 224.28 185.23 22.07 4382 5.3810 233.80 185.24 22.54 4383 5.3820 223.70 185.24 21.97 4384 5.3830 242.78 185.25 22.89 4385 5.3840 217.03 185.26 21.70 4386 5.3850 238.87 185.27 22.64 4387 5.3860 228.53 185.28 22.22 4388 5.3870 256.44 185.29 23.45 4389 5.3880 199.68 185.30 20.67 4390 5.3890 227.59 185.30 22.17 4391 5.3900 211.59 185.31 21.30 4392 5.3910 230.85 185.32 22.43 4393 5.3920 227.81 185.33 22.17 4394 5.3930 201.70 185.34 20.85 4395 5.3940 227.80 185.35 22.36 4396 5.3950 216.65 185.35 21.79 4397 5.3960 225.26 185.36 22.16 4398 5.3970 229.17 185.37 22.27 4399 5.3980 190.59 185.38 20.25 4400 5.3990 189.82 185.39 20.22 4401 5.4000 227.74 185.40 22.19 4402 5.4010 238.45 185.41 22.62 4403 5.4020 230.23 185.41 22.27 4404 5.4030 215.72 185.42 21.73 4405 5.4040 199.92 185.43 20.84 4406 5.4050 228.37 185.44 22.26 4407 5.4060 237.91 185.45 22.72 4408 5.4070 241.55 185.46 22.96 4409 5.4080 206.30 185.46 21.22 4410 5.4090 194.45 185.47 20.58 4411 5.4100 193.82 185.48 20.47 4412 5.4110 221.59 185.49 22.15 4413 5.4120 221.41 185.50 21.87 4414 5.4130 236.13 185.51 22.53 4415 5.4140 204.28 185.52 20.88 4416 5.4150 225.66 185.52 22.15 4417 5.4160 184.30 185.53 20.00 4418 5.4170 197.08 185.54 20.61 4419 5.4180 201.05 185.55 20.87 4420 5.4190 227.18 185.56 22.24 4421 5.4200 252.38 185.57 23.47 4422 5.4210 219.98 185.57 21.77 4423 5.4220 218.76 185.58 21.71 4424 5.4230 200.62 185.59 20.82 4425 5.4240 209.08 185.60 21.16 4426 5.4250 177.05 185.61 19.48 4427 5.4260 206.03 185.62 21.01 4428 5.4270 240.85 185.63 22.87 4429 5.4280 194.60 185.63 20.57 4430 5.4290 203.80 185.64 20.97 4431 5.4300 244.56 185.65 22.97 4432 5.4310 223.56 185.66 21.90 4433 5.4320 208.66 185.67 21.24 4434 5.4330 182.81 185.68 19.87 4435 5.4340 210.37 185.68 21.29 4436 5.4350 212.64 185.69 21.41 4437 5.4360 202.88 185.70 20.99 4438 5.4370 178.11 185.71 19.51 4439 5.4380 207.14 185.72 21.18 4440 5.4390 196.59 185.73 20.59 4441 5.4400 183.29 185.74 19.91 4442 5.4410 191.87 185.74 20.35 4443 5.4420 215.98 185.75 21.67 4444 5.4430 202.98 185.76 20.90 4445 5.4440 206.55 185.77 21.20 4446 5.4450 229.04 185.78 22.14 4447 5.4460 200.94 185.79 20.80 4448 5.4470 185.83 185.79 20.04 4449 5.4480 198.20 185.80 20.61 4450 5.4490 177.86 185.81 19.62 4451 5.4500 194.31 185.82 20.62 4452 5.4510 209.69 185.83 21.32 4453 5.4520 188.95 185.84 20.25 4454 5.4530 192.78 185.85 20.38 4455 5.4540 196.77 185.85 20.64 4456 5.4550 182.66 185.86 19.89 4457 5.4560 205.93 185.87 21.16 4458 5.4570 194.05 185.88 20.44 4459 5.4580 211.59 185.89 21.46 4460 5.4590 206.30 185.90 21.11 4461 5.4600 212.04 185.90 21.51 4462 5.4610 229.54 185.91 22.20 4463 5.4620 197.54 185.92 20.65 4464 5.4630 233.96 185.93 22.39 4465 5.4640 185.72 185.94 19.96 4466 5.4650 242.10 185.95 22.96 4467 5.4660 177.88 185.96 19.62 4468 5.4670 210.97 185.96 21.38 4469 5.4680 240.11 185.97 22.89 4470 5.4690 175.58 185.98 19.43 4471 5.4700 148.16 185.99 17.78 4472 5.4710 197.63 186.00 20.64 4473 5.4720 208.37 186.01 21.33 4474 5.4730 204.09 186.01 20.98 4475 5.4740 208.60 186.02 21.27 4476 5.4750 204.12 186.03 21.10 4477 5.4760 210.70 186.04 21.35 4478 5.4770 204.80 186.05 21.03 4479 5.4780 180.06 186.06 19.69 4480 5.4790 235.70 186.07 22.63 4481 5.4800 216.31 186.07 21.70 4482 5.4810 237.03 186.08 22.64 4483 5.4820 175.04 186.09 19.38 4484 5.4830 165.22 186.10 18.89 4485 5.4840 183.56 186.11 19.96 4486 5.4850 180.94 186.12 19.85 4487 5.4860 188.26 186.12 20.19 4488 5.4870 190.94 186.13 20.27 4489 5.4880 194.04 186.14 20.48 4490 5.4890 189.00 186.15 20.23 4491 5.4900 197.00 186.16 20.72 4492 5.4910 185.18 186.17 20.12 4493 5.4920 205.75 186.18 21.14 4494 5.4930 224.12 186.18 22.07 4495 5.4940 187.53 186.19 20.12 4496 5.4950 210.59 186.20 21.37 4497 5.4960 205.41 186.21 21.06 4498 5.4970 211.08 186.22 21.42 4499 5.4980 177.43 186.23 19.60 4500 5.4990 196.31 186.24 20.56 4501 5.5000 193.76 186.24 20.47 4502 5.5010 198.69 186.25 20.72 4503 5.5020 183.53 186.26 19.88 4504 5.5030 215.25 186.27 21.56 4505 5.5040 213.37 186.28 21.51 4506 5.5050 208.49 186.29 21.15 4507 5.5060 212.65 186.29 21.44 4508 5.5070 210.11 186.30 21.31 4509 5.5080 157.14 186.31 18.31 4510 5.5090 187.61 186.32 20.10 4511 5.5100 214.56 186.33 21.66 4512 5.5110 182.38 186.34 19.90 4513 5.5120 171.28 186.35 19.34 4514 5.5130 196.51 186.35 20.59 4515 5.5140 207.57 186.36 21.22 4516 5.5150 200.23 186.37 20.80 4517 5.5160 183.34 186.38 19.94 4518 5.5170 183.89 186.39 19.83 4519 5.5180 185.33 186.40 19.98 4520 5.5190 162.71 186.40 18.76 4521 5.5200 182.41 186.41 19.83 4522 5.5210 203.09 186.42 20.98 4523 5.5220 198.56 186.43 20.77 4524 5.5230 212.07 186.44 21.39 4525 5.5240 205.79 186.45 21.10 4526 5.5250 189.74 186.46 20.28 4527 5.5260 205.34 186.46 21.09 4528 5.5270 202.25 186.47 20.89 4529 5.5280 209.83 186.48 21.34 4530 5.5290 180.70 186.49 19.80 4531 5.5300 225.94 186.50 22.15 4532 5.5310 183.06 186.51 19.90 4533 5.5320 247.57 186.51 23.09 4534 5.5330 218.03 186.52 21.65 4535 5.5340 211.80 186.53 21.36 4536 5.5350 197.55 186.54 20.64 4537 5.5360 198.91 186.55 20.91 4538 5.5370 179.05 186.56 19.75 4539 5.5380 207.98 186.57 21.24 4540 5.5390 189.01 186.57 20.25 4541 5.5400 205.78 186.58 21.19 4542 5.5410 168.77 186.59 19.06 4543 5.5420 185.21 186.60 19.86 4544 5.5430 241.28 186.61 22.83 4545 5.5440 196.20 186.62 20.56 4546 5.5450 209.46 186.62 21.25 4547 5.5460 188.16 186.63 20.31 4548 5.5470 216.21 186.64 21.64 4549 5.5480 199.82 186.65 20.81 4550 5.5490 184.35 186.66 20.00 4551 5.5500 161.85 186.67 18.64 4552 5.5510 194.78 186.68 20.62 4553 5.5520 178.91 186.68 19.64 4554 5.5530 236.78 186.69 22.53 4555 5.5540 217.47 186.70 21.66 4556 5.5550 197.06 186.71 20.70 4557 5.5560 208.76 186.72 21.25 4558 5.5570 198.03 186.73 20.59 4559 5.5580 180.59 186.73 19.77 4560 5.5590 207.40 186.74 21.12 4561 5.5600 214.08 186.75 21.49 4562 5.5610 218.29 186.76 21.72 4563 5.5620 189.15 186.77 20.29 4564 5.5630 179.33 186.78 19.69 4565 5.5640 206.57 186.79 21.22 4566 5.5650 179.02 186.79 19.62 4567 5.5660 205.61 186.80 21.21 4568 5.5670 181.48 186.81 19.84 4569 5.5680 218.57 186.82 21.74 4570 5.5690 240.03 186.83 22.84 4571 5.5700 159.10 186.84 18.57 4572 5.5710 208.54 186.84 21.03 4573 5.5720 196.53 186.85 20.60 4574 5.5730 176.73 186.86 19.51 4575 5.5740 213.52 186.87 21.54 4576 5.5750 202.47 186.88 20.94 4577 5.5760 209.79 186.89 21.19 4578 5.5770 188.46 186.90 20.18 4579 5.5780 206.53 186.90 21.15 4580 5.5790 214.27 186.91 21.54 4581 5.5800 213.88 186.92 21.48 4582 5.5810 177.17 186.93 19.54 4583 5.5820 212.67 186.94 21.51 4584 5.5830 220.93 186.95 21.84 4585 5.5840 210.59 186.95 21.34 4586 5.5850 228.74 186.96 22.12 4587 5.5860 212.95 186.97 21.49 4588 5.5870 157.34 186.98 18.45 4589 5.5880 179.97 186.99 19.75 4590 5.5890 141.32 187.00 17.54 4591 5.5900 174.30 187.00 19.52 4592 5.5910 168.15 187.01 18.92 4593 5.5920 201.27 187.02 20.85 4594 5.5930 218.73 187.03 21.76 4595 5.5940 180.40 187.04 19.76 4596 5.5950 186.66 187.05 20.16 4597 5.5960 200.60 187.05 20.84 4598 5.5970 204.06 187.06 21.12 4599 5.5980 182.14 187.07 19.83 4600 5.5990 165.35 187.08 18.91 4601 5.6000 217.75 187.09 21.73 4602 5.6010 158.46 187.10 18.42 4603 5.6020 166.54 187.11 18.97 4604 5.6030 205.00 187.11 20.99 4605 5.6040 197.15 187.12 20.71 4606 5.6050 195.99 187.13 20.63 4607 5.6060 189.73 187.14 20.34 4608 5.6070 207.74 187.15 21.17 4609 5.6080 201.16 187.16 20.96 4610 5.6090 170.16 187.16 19.23 4611 5.6100 207.34 187.17 21.19 4612 5.6110 199.86 187.18 20.80 4613 5.6120 208.78 187.19 21.30 4614 5.6130 219.38 187.20 21.90 4615 5.6140 194.51 187.21 20.42 4616 5.6150 204.05 187.21 20.98 4617 5.6160 190.36 187.22 20.24 4618 5.6170 224.44 187.23 22.04 4619 5.6180 185.25 187.24 20.04 4620 5.6190 237.42 187.25 22.61 4621 5.6200 224.19 187.26 21.92 4622 5.6210 206.84 187.27 21.09 4623 5.6220 245.81 187.27 23.03 4624 5.6230 190.46 187.28 20.29 4625 5.6240 201.38 187.29 20.96 4626 5.6250 201.12 187.30 21.00 4627 5.6260 179.62 187.31 19.81 4628 5.6270 183.72 187.32 19.89 4629 5.6280 231.54 187.32 22.43 4630 5.6290 187.99 187.33 20.12 4631 5.6300 238.86 187.34 22.77 4632 5.6310 165.38 187.35 18.91 4633 5.6320 170.83 187.36 19.30 4634 5.6330 207.48 187.37 21.04 4635 5.6340 205.13 187.38 20.97 4636 5.6350 183.99 187.38 19.91 4637 5.6360 242.67 187.39 22.94 4638 5.6370 217.43 187.40 21.76 4639 5.6380 212.00 187.41 21.44 4640 5.6390 235.80 187.42 22.71 4641 5.6400 175.79 187.43 19.48 4642 5.6410 161.47 187.43 18.71 4643 5.6420 191.62 187.44 20.26 4644 5.6430 183.91 187.45 19.96 4645 5.6440 226.07 187.46 22.14 4646 5.6450 207.26 187.47 21.17 4647 5.6460 184.96 187.48 20.06 4648 5.6470 200.30 187.49 20.85 4649 5.6480 224.64 187.49 22.13 4650 5.6490 201.71 187.50 20.87 4651 5.6500 235.77 187.51 22.60 4652 5.6510 201.17 187.52 20.82 4653 5.6520 198.69 187.53 20.64 4654 5.6530 180.15 187.54 19.66 4655 5.6540 231.89 187.54 22.36 4656 5.6550 182.79 187.55 19.94 4657 5.6560 167.46 187.56 18.91 4658 5.6570 220.42 187.57 21.73 4659 5.6580 236.51 187.58 22.72 4660 5.6590 183.55 187.59 19.97 4661 5.6600 169.81 187.60 19.19 4662 5.6610 169.87 187.60 19.16 4663 5.6620 206.04 187.61 21.10 4664 5.6630 195.33 187.62 20.64 4665 5.6640 195.54 187.63 20.60 4666 5.6650 191.83 187.64 20.51 4667 5.6660 172.48 187.65 19.36 4668 5.6670 179.56 187.65 19.61 4669 5.6680 209.40 187.66 21.27 4670 5.6690 207.35 187.67 21.16 4671 5.6700 164.57 187.68 18.89 4672 5.6710 197.66 187.69 20.71 4673 5.6720 176.52 187.70 19.56 4674 5.6730 212.62 187.70 21.60 4675 5.6740 185.68 187.71 20.04 4676 5.6750 192.53 187.72 20.37 4677 5.6760 198.47 187.73 20.76 4678 5.6770 211.55 187.74 21.48 4679 5.6780 217.99 187.75 21.72 4680 5.6790 191.03 187.76 20.31 4681 5.6800 220.02 187.76 21.93 4682 5.6810 224.09 187.77 22.11 4683 5.6820 199.22 187.78 20.80 4684 5.6830 207.92 187.79 21.19 4685 5.6840 174.51 187.80 19.38 4686 5.6850 159.91 187.80 18.66 4687 5.6860 194.46 187.81 20.44 4688 5.6870 176.22 187.82 19.54 4689 5.6880 182.48 187.83 19.95 4690 5.6890 190.42 187.84 20.32 4691 5.6900 179.59 187.85 19.73 4692 5.6910 175.63 187.86 19.46 4693 5.6920 185.06 187.86 19.96 4694 5.6930 204.89 187.87 21.09 4695 5.6940 179.28 187.88 19.69 4696 5.6950 203.96 187.89 20.98 4697 5.6960 197.69 187.90 20.65 4698 5.6970 205.59 187.91 21.16 4699 5.6980 195.15 187.91 20.59 4700 5.6990 212.20 187.92 21.49 4701 5.7000 180.89 187.93 19.69 4702 5.7010 204.93 187.94 21.02 4703 5.7020 192.98 187.95 20.49 4704 5.7030 186.04 187.96 20.08 4705 5.7040 223.55 187.96 21.89 4706 5.7050 213.72 187.97 21.60 4707 5.7060 198.10 187.98 20.75 4708 5.7070 180.28 187.99 19.71 4709 5.7080 168.87 188.00 19.10 4710 5.7090 165.38 188.01 18.99 4711 5.7100 189.37 188.01 20.27 4712 5.7110 202.83 188.02 20.98 4713 5.7120 212.75 188.03 21.53 4714 5.7130 200.00 188.04 20.79 4715 5.7140 204.99 188.05 21.07 4716 5.7150 208.49 188.06 21.25 4717 5.7160 192.01 188.07 20.34 4718 5.7170 207.52 188.07 21.19 4719 5.7180 180.67 188.08 19.74 4720 5.7190 215.59 188.09 21.61 4721 5.7200 209.51 188.10 21.27 4722 5.7210 209.12 188.11 21.29 4723 5.7220 198.32 188.12 20.82 4724 5.7230 208.20 188.12 21.14 4725 5.7240 200.11 188.13 20.85 4726 5.7250 166.43 188.14 18.85 4727 5.7260 211.53 188.15 21.45 4728 5.7270 216.80 188.16 21.58 4729 5.7280 187.10 188.17 20.07 4730 5.7290 209.99 188.18 21.27 4731 5.7300 255.34 188.18 23.43 4732 5.7310 209.41 188.19 21.14 4733 5.7320 211.30 188.20 21.40 4734 5.7330 176.51 188.21 19.58 4735 5.7340 197.89 188.22 20.65 4736 5.7350 194.17 188.23 20.48 4737 5.7360 202.38 188.23 20.91 4738 5.7370 234.75 188.24 22.64 4739 5.7380 207.24 188.25 21.13 4740 5.7390 200.20 188.26 20.75 4741 5.7400 202.48 188.27 20.97 4742 5.7410 171.90 188.27 19.25 4743 5.7420 189.66 188.28 20.31 4744 5.7430 193.00 188.29 20.50 4745 5.7440 188.74 188.30 20.28 4746 5.7450 204.13 188.31 21.09 4747 5.7460 193.90 188.32 20.47 4748 5.7470 197.49 188.33 20.68 4749 5.7480 197.35 188.33 20.68 4750 5.7490 220.11 188.34 21.86 4751 5.7500 183.34 188.35 19.87 4752 5.7510 181.01 188.36 19.72 4753 5.7520 187.40 188.37 20.12 4754 5.7530 170.76 188.38 19.26 4755 5.7540 177.25 188.38 19.62 4756 5.7550 197.19 188.39 20.75 4757 5.7560 198.94 188.40 20.82 4758 5.7570 201.66 188.41 20.92 4759 5.7580 211.14 188.42 21.37 4760 5.7590 201.20 188.43 20.83 4761 5.7600 207.09 188.43 21.24 4762 5.7610 228.39 188.44 22.33 4763 5.7620 203.12 188.45 21.02 4764 5.7630 217.64 188.46 21.69 4765 5.7640 197.81 188.47 20.73 4766 5.7650 208.07 188.48 21.31 4767 5.7660 214.03 188.49 21.67 4768 5.7670 190.80 188.49 20.24 4769 5.7680 191.90 188.50 20.38 4770 5.7690 202.08 188.51 21.00 4771 5.7700 204.16 188.52 21.05 4772 5.7710 217.71 188.53 21.80 4773 5.7720 235.84 188.54 22.69 4774 5.7730 223.72 188.54 21.99 4775 5.7740 189.05 188.55 20.22 4776 5.7750 205.09 188.56 21.09 4777 5.7760 207.37 188.57 21.09 4778 5.7770 198.54 188.58 20.71 4779 5.7780 181.49 188.59 19.81 4780 5.7790 193.55 188.59 20.41 4781 5.7800 191.06 188.60 20.29 4782 5.7810 195.62 188.61 20.58 4783 5.7820 202.75 188.62 20.92 4784 5.7830 227.33 188.63 22.20 4785 5.7840 221.43 188.64 22.00 4786 5.7850 200.35 188.64 20.78 4787 5.7860 187.34 188.65 20.05 4788 5.7870 188.50 188.66 20.18 4789 5.7880 218.00 188.67 21.78 4790 5.7890 200.88 188.68 20.81 4791 5.7900 244.98 188.69 23.16 4792 5.7910 190.29 188.69 20.19 4793 5.7920 183.36 188.70 19.92 4794 5.7930 196.08 188.71 20.50 4795 5.7940 198.92 188.72 20.74 4796 5.7950 216.78 188.73 21.64 4797 5.7960 192.88 188.74 20.42 4798 5.7970 220.83 188.74 21.91 4799 5.7980 194.22 188.75 20.44 4800 5.7990 241.15 188.76 22.95 4801 5.8000 200.59 188.77 20.85 4802 5.8010 207.45 188.78 21.18 4803 5.8020 230.16 188.79 22.36 4804 5.8030 188.77 188.79 20.18 4805 5.8040 183.51 188.80 19.95 4806 5.8050 156.70 188.81 18.36 4807 5.8060 224.06 188.82 21.99 4808 5.8070 240.90 188.83 22.86 4809 5.8080 192.24 188.84 20.27 4810 5.8090 189.36 188.85 20.28 4811 5.8100 177.26 188.85 19.55 4812 5.8110 160.64 188.86 18.68 4813 5.8120 189.94 188.87 20.30 4814 5.8130 244.68 188.88 22.96 4815 5.8140 204.44 188.89 21.00 4816 5.8150 198.10 188.90 20.80 4817 5.8160 221.65 188.90 21.92 4818 5.8170 212.62 188.91 21.42 4819 5.8180 154.51 188.92 18.24 4820 5.8190 204.85 188.93 21.10 4821 5.8200 211.16 188.94 21.43 4822 5.8210 219.70 188.95 21.83 4823 5.8220 209.56 188.95 21.30 4824 5.8230 225.03 188.96 22.00 4825 5.8240 214.62 188.97 21.51 4826 5.8250 222.29 188.98 21.93 4827 5.8260 193.92 188.99 20.45 4828 5.8270 188.61 188.99 20.22 4829 5.8280 202.26 189.00 20.99 4830 5.8290 208.01 189.01 21.16 4831 5.8300 210.36 189.02 21.29 4832 5.8310 211.65 189.03 21.42 4833 5.8320 181.35 189.04 19.84 4834 5.8330 173.78 189.04 19.43 4835 5.8340 219.90 189.05 21.75 4836 5.8350 197.08 189.06 20.60 4837 5.8360 190.69 189.07 20.28 4838 5.8370 233.52 189.08 22.55 4839 5.8380 216.64 189.09 21.66 4840 5.8390 209.13 189.10 21.28 4841 5.8400 206.50 189.10 21.08 4842 5.8410 195.40 189.11 20.55 4843 5.8420 199.55 189.12 20.81 4844 5.8430 226.12 189.13 22.23 4845 5.8440 219.31 189.14 21.85 4846 5.8450 231.77 189.15 22.36 4847 5.8460 224.50 189.15 22.11 4848 5.8470 224.89 189.16 22.13 4849 5.8480 226.44 189.17 22.15 4850 5.8490 220.28 189.18 21.87 4851 5.8500 189.77 189.19 20.22 4852 5.8510 220.84 189.20 21.79 4853 5.8520 221.01 189.20 21.89 4854 5.8530 170.16 189.21 19.27 4855 5.8540 193.71 189.22 20.45 4856 5.8550 211.89 189.23 21.27 4857 5.8560 206.80 189.24 21.17 4858 5.8570 165.33 189.24 18.92 4859 5.8580 196.30 189.25 20.62 4860 5.8590 212.34 189.26 21.55 4861 5.8600 164.94 189.27 18.88 4862 5.8610 198.09 189.28 20.61 4863 5.8620 214.24 189.29 21.55 4864 5.8630 220.29 189.29 21.91 4865 5.8640 185.86 189.30 20.11 4866 5.8650 199.50 189.31 20.77 4867 5.8660 196.88 189.32 20.64 4868 5.8670 216.05 189.33 21.61 4869 5.8680 204.23 189.34 21.08 4870 5.8690 194.21 189.34 20.38 4871 5.8700 213.32 189.35 21.57 4872 5.8710 197.18 189.36 20.69 4873 5.8720 213.97 189.37 21.60 4874 5.8730 197.13 189.38 20.68 4875 5.8740 213.01 189.39 21.41 4876 5.8750 203.34 189.39 21.07 4877 5.8760 187.96 189.40 20.21 4878 5.8770 205.50 189.41 21.02 4879 5.8780 207.44 189.42 21.27 4880 5.8790 237.64 189.43 22.63 4881 5.8800 197.74 189.44 20.63 4882 5.8810 214.47 189.44 21.64 4883 5.8820 225.23 189.45 22.19 4884 5.8830 176.65 189.46 19.45 4885 5.8840 194.70 189.47 20.49 4886 5.8850 200.80 189.48 20.88 4887 5.8860 236.15 189.49 22.63 4888 5.8870 194.98 189.49 20.57 4889 5.8880 179.71 189.50 19.73 4890 5.8890 188.85 189.51 20.18 4891 5.8900 195.48 189.52 20.53 4892 5.8910 219.16 189.53 21.76 4893 5.8920 214.01 189.54 21.61 4894 5.8930 191.32 189.54 20.32 4895 5.8940 244.69 189.55 23.05 4896 5.8950 236.79 189.56 22.72 4897 5.8960 168.83 189.57 19.09 4898 5.8970 237.22 189.58 22.67 4899 5.8980 208.98 189.59 21.18 4900 5.8990 194.91 189.59 20.55 4901 5.9000 220.69 189.60 21.83 4902 5.9010 208.43 189.61 21.21 4903 5.9020 225.81 189.62 22.10 4904 5.9030 223.19 189.63 21.99 4905 5.9040 219.33 189.63 21.76 4906 5.9050 211.59 189.64 21.34 4907 5.9060 215.88 189.65 21.63 4908 5.9070 226.03 189.66 22.20 4909 5.9080 201.78 189.67 20.86 4910 5.9090 192.23 189.68 20.37 4911 5.9100 205.95 189.68 21.18 4912 5.9110 232.79 189.69 22.44 4913 5.9120 244.76 189.70 22.93 4914 5.9130 206.79 189.71 21.12 4915 5.9140 240.66 189.72 22.86 4916 5.9150 189.86 189.73 20.28 4917 5.9160 243.04 189.73 22.94 4918 5.9170 265.08 189.74 24.00 4919 5.9180 227.42 189.75 22.14 4920 5.9190 231.54 189.76 22.38 4921 5.9200 239.53 189.77 22.78 4922 5.9210 225.14 189.78 22.08 4923 5.9220 257.59 189.78 23.58 4924 5.9230 201.68 189.79 20.88 4925 5.9240 178.47 189.80 19.65 4926 5.9250 192.33 189.81 20.30 4927 5.9260 258.61 189.82 23.70 4928 5.9270 256.29 189.83 23.53 4929 5.9280 248.00 189.83 23.11 4930 5.9290 225.90 189.84 22.09 4931 5.9300 240.17 189.85 22.78 4932 5.9310 192.49 189.86 20.36 4933 5.9320 228.62 189.87 22.35 4934 5.9330 226.82 189.88 22.14 4935 5.9340 191.39 189.88 20.25 4936 5.9350 195.73 189.89 20.66 4937 5.9360 211.11 189.90 21.30 4938 5.9370 245.37 189.91 23.02 4939 5.9380 230.89 189.92 22.38 4940 5.9390 226.93 189.93 22.21 4941 5.9400 226.08 189.93 22.02 4942 5.9410 219.74 189.94 21.76 4943 5.9420 256.18 189.95 23.53 4944 5.9430 223.25 189.96 21.91 4945 5.9440 251.68 189.97 23.40 4946 5.9450 233.11 189.97 22.48 4947 5.9460 211.62 189.98 21.41 4948 5.9470 267.68 189.99 24.09 4949 5.9480 221.91 190.00 21.88 4950 5.9490 222.30 190.01 21.88 4951 5.9500 236.22 190.02 22.68 4952 5.9510 230.17 190.02 22.30 4953 5.9520 208.68 190.03 21.32 4954 5.9530 210.91 190.04 21.32 4955 5.9540 236.24 190.05 22.62 4956 5.9550 240.32 190.06 22.90 4957 5.9560 217.03 190.07 21.61 4958 5.9570 223.05 190.07 22.03 4959 5.9580 209.65 190.08 21.28 4960 5.9590 236.79 190.09 22.60 4961 5.9600 219.26 190.10 21.75 4962 5.9610 255.13 190.11 23.42 4963 5.9620 251.99 190.12 23.34 4964 5.9630 250.48 190.12 23.40 4965 5.9640 215.68 190.13 21.64 4966 5.9650 179.92 190.14 19.66 4967 5.9660 247.86 190.15 23.21 4968 5.9670 237.34 190.16 22.66 4969 5.9680 236.42 190.16 22.69 4970 5.9690 212.79 190.17 21.49 4971 5.9700 207.36 190.18 21.30 4972 5.9710 212.05 190.19 21.31 4973 5.9720 216.62 190.20 21.67 4974 5.9730 256.36 190.21 23.54 4975 5.9740 260.64 190.21 23.75 4976 5.9750 196.16 190.22 20.55 4977 5.9760 225.39 190.23 22.15 4978 5.9770 217.54 190.24 21.69 4979 5.9780 215.30 190.25 21.48 4980 5.9790 263.70 190.26 23.91 4981 5.9800 222.26 190.26 21.87 4982 5.9810 232.78 190.27 22.42 4983 5.9820 227.92 190.28 22.26 4984 5.9830 291.61 190.29 25.03 4985 5.9840 264.04 190.30 23.86 4986 5.9850 221.78 190.30 21.86 4987 5.9860 292.54 190.31 25.19 4988 5.9870 238.94 190.32 22.67 4989 5.9880 276.00 190.33 24.45 4990 5.9890 235.01 190.34 22.41 4991 5.9900 236.05 190.35 22.61 4992 5.9910 222.14 190.35 21.97 4993 5.9920 259.25 316.14 23.66 4994 5.9930 299.68 318.26 25.56 4995 5.9940 264.76 320.43 23.96 4996 5.9950 239.45 322.65 22.74 4997 5.9960 280.21 324.93 24.52 4998 5.9970 297.40 327.28 25.37 4999 5.9980 301.99 329.68 25.60 5000 5.9990 281.17 332.14 24.77 5001 6.0000 267.61 334.68 21.61 5002 6.0010 266.37 337.28 21.57 5003 6.0020 276.49 339.95 22.03 5004 6.0030 289.58 342.69 22.60 5005 6.0040 307.75 345.51 23.27 5006 6.0050 290.02 348.40 22.57 5007 6.0060 266.09 351.38 21.63 5008 6.0070 302.91 354.45 23.10 5009 6.0080 297.75 357.60 22.89 5010 6.0090 271.29 360.84 21.87 5011 6.0100 290.35 364.18 22.65 5012 6.0110 299.91 367.61 22.94 5013 6.0120 296.73 371.15 22.81 5014 6.0130 311.12 374.79 23.27 5015 6.0140 322.64 378.55 23.81 5016 6.0150 311.79 382.42 23.39 5017 6.0160 325.92 386.41 23.96 5018 6.0170 313.89 390.52 23.43 5019 6.0180 331.60 394.77 24.06 5020 6.0190 331.40 399.15 24.15 5021 6.0200 334.90 403.67 24.24 5022 6.0210 380.38 408.35 25.88 5023 6.0220 355.26 413.17 24.98 5024 6.0230 384.18 418.16 25.94 5025 6.0240 333.37 423.32 24.22 5026 6.0250 380.28 428.65 25.84 5027 6.0260 333.29 434.17 24.20 5028 6.0270 352.78 439.88 24.89 5029 6.0280 409.09 445.79 26.80 5030 6.0290 370.72 451.92 25.46 5031 6.0300 375.40 458.27 25.64 5032 6.0310 411.79 464.85 26.89 5033 6.0320 412.18 471.68 26.92 5034 6.0330 423.01 478.76 27.22 5035 6.0340 384.85 486.12 25.91 5036 6.0350 447.36 493.76 27.97 5037 6.0360 484.64 501.69 29.20 5038 6.0370 518.86 509.95 30.13 5039 6.0380 539.03 518.53 30.80 5040 6.0390 484.41 527.47 29.15 5041 6.0400 543.95 536.77 30.88 5042 6.0410 548.27 546.46 30.98 5043 6.0420 544.49 556.56 30.85 5044 6.0430 547.31 567.11 31.00 5045 6.0440 543.93 578.11 30.90 5046 6.0450 592.27 589.59 32.31 5047 6.0460 642.02 601.60 33.58 5048 6.0470 633.42 614.15 33.30 5049 6.0480 635.59 627.28 33.41 5050 6.0490 655.12 641.04 33.96 5051 6.0500 640.62 655.46 33.53 5052 6.0510 683.36 670.57 34.64 5053 6.0520 738.65 686.43 36.06 5054 6.0530 696.57 703.09 35.02 5055 6.0540 773.00 720.59 36.91 5056 6.0550 815.11 739.02 37.83 5057 6.0560 792.72 758.41 37.31 5058 6.0570 787.46 778.86 37.20 5059 6.0580 793.58 800.41 37.39 5060 6.0590 818.35 823.17 37.92 5061 6.0600 823.79 847.23 38.02 5062 6.0610 842.72 872.67 38.50 5063 6.0620 859.46 899.63 38.88 5064 6.0630 856.87 928.21 38.82 5065 6.0640 894.89 958.54 39.64 5066 6.0650 924.29 990.78 40.26 5067 6.0660 978.39 1025.07 41.51 5068 6.0670 977.24 1061.63 41.37 5069 6.0680 968.33 1100.61 41.21 5070 6.0690 1012.05 1142.25 42.09 5071 6.0700 1034.86 1186.85 42.62 5072 6.0710 1085.69 1234.59 43.62 5073 6.0720 1142.15 1285.86 44.68 5074 6.0730 1301.68 1340.96 47.83 5075 6.0740 1328.61 1400.29 48.37 5076 6.0750 1336.96 1464.34 48.45 5077 6.0760 1358.87 1533.57 48.93 5078 6.0770 1457.99 1612.86 50.60 5079 6.0780 1560.59 1694.31 52.32 5080 6.0790 1639.66 1782.92 53.72 5081 6.0800 1704.25 1879.59 54.71 5082 6.0810 1757.98 1985.22 55.57 5083 6.0820 1946.38 2101.01 58.46 5084 6.0830 2033.18 2228.39 59.80 5085 6.0840 2154.68 2368.70 61.51 5086 6.0850 2359.90 2523.94 64.31 5087 6.0860 2431.17 2696.13 65.33 5088 6.0870 2595.52 2887.86 67.44 5089 6.0880 2893.56 3102.28 71.33 5090 6.0890 2999.11 3342.93 72.46 5091 6.0900 3498.66 3614.21 78.43 5092 6.0910 3761.37 3921.29 81.33 5093 6.0920 4097.54 4270.79 84.98 5094 6.0930 4432.35 4670.90 88.29 5095 6.0940 4901.91 5131.23 92.81 5096 6.0950 5294.02 5664.47 96.50 5097 6.0960 5981.24 6287.12 102.54 5098 6.0970 6716.12 7018.64 108.74 5099 6.0980 7676.08 7886.70 116.09 5100 6.0990 8675.60 8925.95 123.48 5101 6.1000 9867.66 10183.90 131.71 5102 6.1010 11445.70 11724.20 141.85 5103 6.1020 13595.70 13630.40 154.67 5104 6.1030 15859.70 16013.30 167.05 5105 6.1040 18642.40 19014.60 180.96 5106 6.1050 22749.20 22814.60 200.09 5107 6.1060 27594.60 27628.20 220.38 5108 6.1070 33591.40 33675.80 243.04 5109 6.1080 41072.40 41127.20 268.88 5110 6.1090 49926.80 49935.90 296.35 5111 6.1100 58570.90 59497.80 321.07 5112 6.1110 66345.00 68331.60 341.31 5113 6.1120 71356.90 74084.10 354.24 5114 6.1130 70927.30 74663.50 352.62 5115 6.1140 66900.60 69829.40 342.57 5116 6.1150 58716.80 61418.30 320.52 5117 6.1160 49835.80 51842.50 295.25 5118 6.1170 41437.90 42815.40 269.10 5119 6.1180 34023.30 35074.10 243.73 5120 6.1190 28527.50 28749.00 223.45 5121 6.1200 23672.80 23704.90 203.26 5122 6.1210 19889.10 19716.60 186.54 5123 6.1220 17124.60 16568.40 172.94 5124 6.1230 14704.90 14074.20 160.39 5125 6.1240 12830.50 12081.80 149.83 5126 6.1250 11182.20 10475.90 139.88 5127 6.1260 9933.62 9166.41 131.90 5128 6.1270 8811.88 8087.52 124.13 5129 6.1280 7826.32 7188.66 117.11 5130 6.1290 7058.93 6431.74 111.06 5131 6.1300 6490.95 5789.74 106.64 5132 6.1310 5729.35 5240.11 100.09 5133 6.1320 5277.94 4766.56 96.18 5134 6.1330 4724.08 4355.73 90.95 5135 6.1340 4546.85 3997.03 89.26 5136 6.1350 3997.34 3682.29 83.64 5137 6.1360 3623.90 3404.82 79.68 5138 6.1370 3386.82 3158.87 77.02 5139 6.1380 3079.60 2940.08 73.39 5140 6.1390 2893.15 2744.50 71.19 5141 6.1400 2739.40 2569.15 69.26 5142 6.1410 2651.55 2411.30 68.22 5143 6.1420 2309.73 2268.62 63.54 5144 6.1430 2272.65 2139.48 63.02 5145 6.1440 2141.34 2022.09 61.20 5146 6.1450 1947.81 1915.18 58.38 5147 6.1460 1821.99 1817.53 56.55 5148 6.1470 1768.29 1728.07 55.72 5149 6.1480 1726.52 1646.01 55.00 5150 6.1490 1600.00 1570.48 52.94 5151 6.1500 1517.65 1500.94 51.56 5152 6.1510 1369.16 1436.74 48.92 5153 6.1520 1299.57 1377.34 47.78 5154 6.1530 1267.13 1322.33 47.04 5155 6.1540 1266.39 1271.31 47.17 5156 6.1550 1174.09 1223.86 45.38 5157 6.1560 1099.56 1179.76 43.88 5158 6.1570 1091.91 1138.68 43.78 5159 6.1580 1055.61 1100.39 43.00 5160 6.1590 1039.75 1064.67 42.65 5161 6.1600 960.21 1031.30 40.97 5162 6.1610 957.85 1000.13 41.01 5163 6.1620 967.18 970.96 41.18 5164 6.1630 899.40 943.71 39.72 5165 6.1640 874.61 918.23 39.18 5166 6.1650 896.93 894.39 39.66 5167 6.1660 890.02 872.11 39.45 5168 6.1670 856.00 851.30 38.69 5169 6.1680 780.03 831.86 37.04 5170 6.1690 722.81 813.76 35.56 5171 6.1700 763.53 796.92 36.62 5172 6.1710 736.91 781.30 35.87 5173 6.1720 756.39 766.86 36.43 5174 6.1730 691.78 753.56 34.89 5175 6.1740 648.41 741.39 33.73 5176 6.1750 631.72 730.33 33.28 5177 6.1760 642.51 720.39 33.57 5178 6.1770 656.89 711.57 33.89 5179 6.1780 661.56 703.89 34.04 5180 6.1790 630.08 697.39 33.23 5181 6.1800 612.13 692.12 32.72 5182 6.1810 640.91 688.16 33.47 5183 6.1820 613.97 685.58 32.79 5184 6.1830 609.95 684.50 32.74 5185 6.1840 547.47 685.07 30.94 5186 6.1850 570.57 687.48 31.68 5187 6.1860 629.59 691.97 33.26 5188 6.1870 598.39 698.81 32.46 5189 6.1880 601.66 708.41 32.50 5190 6.1890 595.91 721.20 32.30 5191 6.1900 605.25 737.82 32.54 5192 6.1910 626.17 759.05 33.10 5193 6.1920 625.98 785.91 33.12 5194 6.1930 696.01 819.76 34.95 5195 6.1940 758.61 862.33 36.50 5196 6.1950 828.52 915.96 38.17 5197 6.1960 864.38 983.61 38.96 5198 6.1970 945.02 1069.03 40.76 5199 6.1980 1142.99 1177.01 44.75 5200 6.1990 1242.48 1313.07 46.62 5201 6.2000 1464.56 1483.37 50.73 5202 6.2010 1797.66 1693.58 56.20 5203 6.2020 2061.17 1945.15 60.19 5204 6.2030 2482.04 2230.62 66.02 5205 6.2040 2815.10 2523.44 70.33 5206 6.2050 3116.86 2772.40 73.99 5207 6.2060 3389.57 2910.73 77.16 5208 6.2070 3114.90 2890.29 73.87 5209 6.2080 2957.77 2716.76 72.08 5210 6.2090 2587.04 2445.41 67.35 5211 6.2100 2194.99 2141.95 62.01 5212 6.2110 1821.43 1852.75 56.46 5213 6.2120 1592.40 1600.03 52.78 5214 6.2130 1342.45 1388.94 48.48 5215 6.2140 1210.13 1216.45 46.03 5216 6.2150 996.29 1077.09 41.78 5217 6.2160 859.07 964.55 38.78 5218 6.2170 751.27 873.47 36.29 5219 6.2180 664.17 799.24 34.13 5220 6.2190 642.33 738.22 33.61 5221 6.2200 581.95 687.60 31.89 5222 6.2210 578.80 645.14 31.79 5223 6.2220 593.14 609.20 32.19 5224 6.2230 484.72 578.46 29.10 5225 6.2240 434.46 551.91 27.57 5226 6.2250 468.52 528.82 28.73 5227 6.2260 478.63 508.57 28.95 5228 6.2270 448.21 490.67 27.99 5229 6.2280 413.12 474.77 26.90 5230 6.2290 424.99 460.55 27.29 5231 6.2300 436.98 447.78 27.61 5232 6.2310 420.81 436.23 27.11 5233 6.2320 405.28 425.75 26.59 5234 6.2330 408.81 416.19 26.76 5235 6.2340 417.27 283.30 27.00 5236 6.2350 408.35 277.28 26.72 5237 6.2360 398.99 271.83 26.46 5238 6.2370 406.31 266.88 26.70 5239 6.2380 417.28 262.38 27.08 5240 6.2390 409.31 258.27 26.84 5241 6.2400 353.04 254.51 24.86 5242 6.2410 386.82 251.07 26.10 5243 6.2420 390.77 247.90 26.19 5244 6.2430 411.71 244.98 26.89 5245 6.2440 361.16 242.28 25.16 5246 6.2450 392.16 239.79 26.23 5247 6.2460 374.30 237.48 25.67 5248 6.2470 358.54 235.33 25.05 5249 6.2480 347.17 233.33 24.62 5250 6.2490 320.45 231.48 23.71 5251 6.2500 359.22 229.74 25.09 5252 6.2510 333.97 228.12 24.15 5253 6.2520 320.42 226.60 23.67 5254 6.2530 330.59 225.18 24.02 5255 6.2540 316.93 223.85 23.57 5256 6.2550 312.09 222.59 23.34 5257 6.2560 273.71 221.41 21.80 5258 6.2570 290.48 220.30 22.55 5259 6.2580 295.53 219.25 22.76 5260 6.2590 275.28 218.27 21.96 5261 6.2600 294.06 217.33 22.76 5262 6.2610 267.45 216.45 21.63 5263 6.2620 265.03 215.61 21.46 5264 6.2630 289.04 214.82 22.54 5265 6.2640 277.55 214.07 22.06 5266 6.2650 250.08 213.35 20.86 5267 6.2660 268.58 212.68 21.67 5268 6.2670 225.49 212.03 19.85 5269 6.2680 238.94 211.42 20.45 5270 6.2690 257.75 210.83 21.19 5271 6.2700 250.92 210.28 20.91 5272 6.2710 239.30 209.75 20.41 5273 6.2720 267.01 209.24 21.63 5274 6.2730 246.53 208.76 20.79 5275 6.2740 247.97 208.29 20.87 5276 6.2750 250.14 207.85 20.96 5277 6.2760 229.25 207.43 20.00 5278 6.2770 247.82 207.02 20.81 5279 6.2780 216.70 206.63 19.45 5280 6.2790 214.49 206.26 19.29 5281 6.2800 234.23 205.91 20.26 5282 6.2810 231.59 205.57 20.22 5283 6.2820 199.10 205.24 18.65 5284 6.2830 218.85 204.92 19.61 5285 6.2840 219.62 204.62 19.54 5286 6.2850 215.01 204.33 19.43 5287 6.2860 253.77 204.05 20.98 5288 6.2870 221.06 203.78 19.62 5289 6.2880 211.25 203.52 19.21 5290 6.2890 231.87 203.27 20.08 5291 6.2900 225.86 203.03 19.85 5292 6.2910 210.46 202.79 19.15 5293 6.2920 204.02 202.57 18.90 5294 6.2930 241.72 202.35 20.58 5295 6.2940 221.77 202.15 19.69 5296 6.2950 251.24 201.95 20.95 5297 6.2960 246.80 201.75 20.82 5298 6.2970 249.01 201.56 20.93 5299 6.2980 218.40 201.38 19.53 5300 6.2990 234.32 201.21 20.27 5301 6.3000 236.91 201.04 20.37 5302 6.3010 191.90 200.87 18.25 5303 6.3020 252.45 200.72 20.98 5304 6.3030 226.10 200.56 19.86 5305 6.3040 236.58 200.41 20.41 5306 6.3050 221.32 200.27 19.66 5307 6.3060 217.79 200.13 19.50 5308 6.3070 185.65 200.00 18.09 5309 6.3080 203.90 199.87 18.85 5310 6.3090 243.64 199.74 20.72 5311 6.3100 208.87 199.62 19.14 5312 6.3110 224.15 199.50 19.80 5313 6.3120 231.29 199.38 20.16 5314 6.3130 221.26 199.27 19.71 5315 6.3140 215.74 199.16 19.43 5316 6.3150 186.07 199.06 18.07 5317 6.3160 219.38 198.95 19.59 5318 6.3170 231.89 198.85 20.17 5319 6.3180 230.14 198.76 20.07 5320 6.3190 198.79 198.66 18.62 5321 6.3200 248.41 198.57 20.89 5322 6.3210 237.78 198.48 20.41 5323 6.3220 207.80 198.40 19.03 5324 6.3230 213.31 198.32 19.37 5325 6.3240 254.71 198.23 21.14 5326 6.3250 237.60 198.15 20.36 5327 6.3260 198.30 198.08 18.59 5328 6.3270 214.94 198.00 19.38 5329 6.3280 216.39 197.93 19.43 5330 6.3290 234.01 197.86 20.15 5331 6.3300 195.28 197.79 18.40 5332 6.3310 232.57 197.72 20.18 5333 6.3320 221.01 197.66 19.71 5334 6.3330 235.92 197.59 20.34 5335 6.3340 208.37 197.53 19.13 5336 6.3350 186.53 197.47 18.11 5337 6.3360 218.90 197.41 19.64 5338 6.3370 230.83 193.14 20.12 5339 6.3380 203.71 193.15 18.80 5340 6.3390 232.34 193.16 20.09 5341 6.3400 229.44 193.17 19.97 5342 6.3410 179.91 193.17 17.72 5343 6.3420 183.78 193.18 17.94 5344 6.3430 209.20 193.19 19.13 5345 6.3440 201.89 193.20 18.80 5346 6.3450 192.26 193.21 18.43 5347 6.3460 199.23 193.21 18.72 5348 6.3470 240.92 193.22 20.56 5349 6.3480 220.26 193.23 19.59 5350 6.3490 215.79 193.24 19.41 5351 6.3500 202.86 193.24 18.85 5352 6.3510 187.87 193.25 18.07 5353 6.3520 201.77 193.26 18.83 5354 6.3530 210.04 193.27 19.19 5355 6.3540 192.03 193.28 18.36 5356 6.3550 185.51 193.28 18.13 5357 6.3560 208.46 193.29 19.14 5358 6.3570 182.57 193.30 17.84 5359 6.3580 204.50 193.31 18.89 5360 6.3590 217.02 193.32 19.52 5361 6.3600 208.01 193.32 19.00 5362 6.3610 208.79 193.33 19.09 5363 6.3620 237.58 193.34 20.38 5364 6.3630 211.50 193.35 19.13 5365 6.3640 215.70 193.35 19.38 5366 6.3650 201.53 193.36 18.77 5367 6.3660 193.94 193.37 18.39 5368 6.3670 185.81 193.38 18.03 5369 6.3680 181.86 193.39 17.83 5370 6.3690 209.00 193.39 19.11 5371 6.3700 201.08 193.40 18.76 5372 6.3710 203.15 193.41 18.88 5373 6.3720 204.26 193.42 18.93 5374 6.3730 210.80 193.43 19.25 5375 6.3740 188.40 193.43 18.15 5376 6.3750 189.77 193.44 18.21 5377 6.3760 223.08 193.45 19.79 5378 6.3770 221.95 193.46 19.69 5379 6.3780 226.40 193.46 19.91 5380 6.3790 209.30 193.47 19.21 5381 6.3800 220.15 193.48 19.70 5382 6.3810 208.85 193.49 19.04 5383 6.3820 167.63 193.50 16.99 5384 6.3830 235.90 193.50 20.38 5385 6.3840 199.79 193.51 18.72 5386 6.3850 218.21 193.52 19.55 5387 6.3860 198.81 193.53 18.66 5388 6.3870 216.52 193.54 19.54 5389 6.3880 211.19 193.54 19.21 5390 6.3890 186.02 193.55 18.09 5391 6.3900 201.48 193.56 18.78 5392 6.3910 200.05 193.57 18.67 5393 6.3920 216.76 193.57 19.50 5394 6.3930 191.06 193.58 18.29 5395 6.3940 199.68 193.59 18.81 5396 6.3950 187.15 193.60 18.08 5397 6.3960 215.31 193.60 19.41 5398 6.3970 227.63 193.61 19.94 5399 6.3980 177.57 193.62 17.51 5400 6.3990 198.70 193.63 18.64 5401 6.4000 186.82 193.64 18.05 5402 6.4010 198.49 193.64 18.59 5403 6.4020 208.37 193.65 19.08 5404 6.4030 225.15 193.66 19.89 5405 6.4040 198.60 193.67 18.56 5406 6.4050 204.61 193.68 18.91 5407 6.4060 211.12 193.68 19.29 5408 6.4070 204.54 193.69 18.96 5409 6.4080 216.71 193.70 19.48 5410 6.4090 202.60 193.71 18.86 5411 6.4100 194.93 193.71 18.42 5412 6.4110 206.61 193.72 19.05 5413 6.4120 221.00 193.73 19.76 5414 6.4130 157.87 193.74 16.64 5415 6.4140 203.49 193.75 18.76 5416 6.4150 223.52 193.75 19.77 5417 6.4160 202.05 193.76 18.82 5418 6.4170 168.44 193.77 17.11 5419 6.4180 188.96 193.78 18.05 5420 6.4190 216.56 193.79 19.54 5421 6.4200 222.23 193.79 19.78 5422 6.4210 187.98 193.80 18.12 5423 6.4220 181.04 193.81 17.81 5424 6.4230 198.79 193.82 18.72 5425 6.4240 205.96 193.82 18.92 5426 6.4250 191.71 193.83 18.33 5427 6.4260 184.54 193.84 17.93 5428 6.4270 192.80 193.85 18.44 5429 6.4280 202.92 193.85 18.86 5430 6.4290 208.84 193.86 19.16 5431 6.4300 187.10 193.87 18.09 5432 6.4310 214.92 193.88 19.38 5433 6.4320 172.16 193.89 17.28 5434 6.4330 218.82 193.89 19.52 5435 6.4340 167.32 193.90 17.02 5436 6.4350 172.57 193.91 17.34 5437 6.4360 171.14 193.92 17.26 5438 6.4370 197.77 193.92 18.51 5439 6.4380 210.57 193.93 19.20 5440 6.4390 202.63 193.94 18.81 5441 6.4400 229.63 193.95 20.09 5442 6.4410 207.81 193.96 19.09 5443 6.4420 188.94 193.96 18.17 5444 6.4430 219.69 193.97 19.59 5445 6.4440 180.16 193.98 17.77 5446 6.4450 188.96 193.99 18.17 5447 6.4460 185.48 193.99 17.94 5448 6.4470 215.37 194.00 19.39 5449 6.4480 216.54 194.01 19.52 5450 6.4490 228.61 194.02 20.01 5451 6.4500 192.73 194.02 18.39 5452 6.4510 180.16 194.03 17.77 5453 6.4520 203.86 194.04 18.89 5454 6.4530 202.94 194.05 18.88 5455 6.4540 194.47 194.06 18.56 5456 6.4550 176.20 194.06 17.52 5457 6.4560 190.20 194.07 18.18 5458 6.4570 219.81 194.08 19.63 5459 6.4580 193.40 194.09 18.40 5460 6.4590 173.90 194.10 17.46 5461 6.4600 222.01 194.10 19.72 5462 6.4610 213.96 194.11 19.34 5463 6.4620 187.63 194.12 18.06 5464 6.4630 202.19 194.13 18.82 5465 6.4640 191.99 194.13 18.28 5466 6.4650 188.79 194.14 18.20 5467 6.4660 206.67 194.15 19.07 5468 6.4670 208.52 194.16 19.09 5469 6.4680 215.17 194.16 19.38 5470 6.4690 206.80 194.17 19.08 5471 6.4700 177.37 194.18 17.65 5472 6.4710 170.46 194.19 17.25 5473 6.4720 220.33 194.20 19.55 5474 6.4730 216.31 194.20 19.40 5475 6.4740 204.24 194.21 18.93 5476 6.4750 184.82 194.22 17.96 5477 6.4760 173.54 194.23 17.48 5478 6.4770 211.94 194.23 19.23 5479 6.4780 185.44 194.24 18.03 5480 6.4790 182.72 194.25 17.92 5481 6.4800 179.09 194.26 17.70 5482 6.4810 187.61 194.26 18.12 5483 6.4820 184.17 194.27 17.86 5484 6.4830 198.84 194.28 18.63 5485 6.4840 233.46 194.29 20.20 5486 6.4850 220.22 194.29 19.70 5487 6.4860 208.17 194.30 19.06 5488 6.4870 225.40 194.31 19.85 5489 6.4880 215.71 194.32 19.32 5490 6.4890 228.77 194.33 19.96 5491 6.4900 190.11 194.33 18.19 5492 6.4910 209.29 194.34 19.11 5493 6.4920 209.02 194.35 19.19 5494 6.4930 212.55 194.36 19.28 5495 6.4940 214.58 194.37 19.43 5496 6.4950 208.08 194.37 19.06 5497 6.4960 211.26 194.38 19.24 5498 6.4970 191.76 194.39 18.27 5499 6.4980 189.94 194.40 18.21 5500 6.4990 181.20 194.40 17.78 5501 6.5000 183.91 194.41 17.91 5502 6.5010 208.64 194.42 19.04 5503 6.5020 181.00 194.43 17.72 5504 6.5030 174.93 194.43 17.41 5505 6.5040 185.29 194.44 17.93 5506 6.5050 193.93 194.45 18.39 5507 6.5060 212.77 194.46 19.25 5508 6.5070 205.97 194.46 18.99 5509 6.5080 189.32 194.47 18.13 5510 6.5090 218.52 194.48 19.52 5511 6.5100 179.90 194.49 17.68 5512 6.5110 198.36 194.49 18.55 5513 6.5120 176.24 194.50 17.52 5514 6.5130 186.13 194.51 18.07 5515 6.5140 201.96 194.52 18.76 5516 6.5150 197.15 194.53 18.53 5517 6.5160 180.93 194.53 17.76 5518 6.5170 196.01 194.54 18.52 5519 6.5180 193.79 194.55 18.47 5520 6.5190 193.98 194.56 18.46 5521 6.5200 197.83 194.56 18.62 5522 6.5210 195.14 194.57 18.53 5523 6.5220 212.16 194.58 19.26 5524 6.5230 188.61 194.59 18.12 5525 6.5240 217.51 194.59 19.59 5526 6.5250 193.61 194.60 18.35 5527 6.5260 216.04 194.61 19.43 5528 6.5270 220.80 194.62 19.72 5529 6.5280 188.02 194.62 18.14 5530 6.5290 223.12 194.63 19.76 5531 6.5300 200.13 194.64 18.74 5532 6.5310 203.81 194.65 18.87 5533 6.5320 173.86 194.66 17.41 5534 6.5330 215.84 194.66 19.42 5535 6.5340 195.80 194.67 18.49 5536 6.5350 186.92 194.68 18.08 5537 6.5360 173.02 194.69 17.34 5538 6.5370 197.58 194.69 18.57 5539 6.5380 198.22 194.70 18.63 5540 6.5390 222.18 194.71 19.79 5541 6.5400 199.76 194.72 18.68 5542 6.5410 171.78 194.72 17.27 5543 6.5420 179.04 194.73 17.61 5544 6.5430 204.95 194.74 18.99 5545 6.5440 229.34 194.75 20.04 5546 6.5450 178.45 194.76 17.65 5547 6.5460 197.96 194.76 18.56 5548 6.5470 205.16 194.77 18.93 5549 6.5480 202.98 194.78 18.88 5550 6.5490 183.41 194.79 17.95 5551 6.5500 220.70 194.79 19.68 5552 6.5510 229.29 194.80 20.10 5553 6.5520 212.94 194.81 19.31 5554 6.5530 212.41 194.82 19.17 5555 6.5540 201.96 194.82 18.74 5556 6.5550 223.76 194.83 19.75 5557 6.5560 193.12 194.84 18.29 5558 6.5570 215.42 194.85 19.42 5559 6.5580 226.93 194.85 19.94 5560 6.5590 223.48 194.86 19.77 5561 6.5600 201.08 194.87 18.78 5562 6.5610 229.76 194.88 19.95 5563 6.5620 233.59 194.88 20.16 5564 6.5630 219.63 194.89 19.56 5565 6.5640 200.02 194.90 18.63 5566 6.5650 230.73 194.91 20.07 5567 6.5660 238.46 194.91 20.41 5568 6.5670 208.23 194.92 19.00 5569 6.5680 264.53 194.93 21.53 5570 6.5690 219.78 194.94 19.64 5571 6.5700 213.28 194.95 19.33 5572 6.5710 239.88 194.95 20.52 5573 6.5720 207.51 194.96 19.04 5574 6.5730 208.68 194.97 19.18 5575 6.5740 237.43 194.98 20.37 5576 6.5750 217.02 194.98 19.47 5577 6.5760 193.66 194.99 18.39 5578 6.5770 185.47 195.00 18.01 5579 6.5780 225.78 195.01 19.80 5580 6.5790 195.45 195.01 18.46 5581 6.5800 171.74 195.02 17.39 5582 6.5810 193.06 195.03 18.19 5583 6.5820 221.27 195.04 19.71 5584 6.5830 199.25 195.04 18.67 5585 6.5840 176.73 195.05 17.57 5586 6.5850 200.05 195.06 18.71 5587 6.5860 185.30 195.07 18.01 5588 6.5870 192.70 195.07 18.34 5589 6.5880 206.67 195.08 19.01 5590 6.5890 192.63 195.09 18.33 5591 6.5900 187.46 195.10 18.06 5592 6.5910 208.02 195.10 19.00 5593 6.5920 219.29 195.11 19.59 5594 6.5930 239.02 195.12 20.51 5595 6.5940 181.77 195.13 17.78 5596 6.5950 176.70 195.13 17.61 5597 6.5960 191.59 195.14 18.34 5598 6.5970 198.44 195.15 18.63 5599 6.5980 191.84 195.16 18.34 5600 6.5990 198.31 195.16 18.61 5601 6.6000 207.23 195.17 19.07 5602 6.6010 210.43 195.18 19.13 5603 6.6020 187.37 195.19 18.08 5604 6.6030 214.13 195.19 19.38 5605 6.6040 168.09 195.20 17.06 5606 6.6050 187.68 195.21 18.07 5607 6.6060 195.05 195.22 18.46 5608 6.6070 193.35 195.22 18.32 5609 6.6080 178.82 195.23 17.67 5610 6.6090 187.40 195.24 18.08 5611 6.6100 181.69 195.25 17.83 5612 6.6110 209.02 195.25 19.14 5613 6.6120 207.34 195.26 19.06 5614 6.6130 185.22 195.27 18.03 5615 6.6140 165.12 195.28 17.06 5616 6.6150 182.52 195.29 17.89 5617 6.6160 203.91 195.29 18.94 5618 6.6170 195.72 195.30 18.43 5619 6.6180 201.90 195.31 18.80 5620 6.6190 194.87 195.32 18.45 5621 6.6200 185.74 195.32 18.03 5622 6.6210 189.01 195.33 18.19 5623 6.6220 201.37 195.34 18.65 5624 6.6230 202.43 195.35 18.79 5625 6.6240 224.88 195.35 19.82 5626 6.6250 215.43 195.36 19.45 5627 6.6260 205.56 195.37 18.98 5628 6.6270 193.09 195.38 18.29 5629 6.6280 214.72 195.38 19.30 5630 6.6290 203.20 195.39 18.79 5631 6.6300 213.22 195.40 19.32 5632 6.6310 204.32 195.40 18.83 5633 6.6320 180.13 195.41 17.70 5634 6.6330 184.17 195.42 17.93 5635 6.6340 194.24 195.43 18.44 5636 6.6350 231.42 195.43 20.14 5637 6.6360 214.50 195.44 19.29 5638 6.6370 233.24 195.45 20.18 5639 6.6380 180.03 195.46 17.69 5640 6.6390 190.68 195.46 18.16 5641 6.6400 195.05 195.47 18.48 5642 6.6410 189.32 195.48 18.18 5643 6.6420 182.55 195.49 17.87 5644 6.6430 196.03 195.49 18.51 5645 6.6440 194.02 195.50 18.48 5646 6.6450 172.97 195.51 17.43 5647 6.6460 213.16 195.52 19.29 5648 6.6470 221.64 195.52 19.66 5649 6.6480 194.44 195.53 18.36 5650 6.6490 195.32 195.54 18.47 5651 6.6500 180.28 195.55 17.80 5652 6.6510 197.45 195.55 18.65 5653 6.6520 189.88 195.56 18.17 5654 6.6530 195.45 195.57 18.50 5655 6.6540 195.95 195.58 18.56 5656 6.6550 179.34 195.58 17.68 5657 6.6560 183.33 195.59 17.94 5658 6.6570 205.85 195.60 18.98 5659 6.6580 220.06 195.61 19.62 5660 6.6590 213.96 195.61 19.35 5661 6.6600 210.76 195.62 19.25 5662 6.6610 225.60 195.63 19.80 5663 6.6620 210.65 195.64 19.11 5664 6.6630 200.96 195.64 18.79 5665 6.6640 198.31 195.65 18.69 5666 6.6650 185.40 195.66 18.00 5667 6.6660 183.57 195.67 17.85 5668 6.6670 209.87 195.67 19.11 5669 6.6680 191.85 195.68 18.31 5670 6.6690 183.09 195.69 17.88 5671 6.6700 201.78 195.70 18.67 5672 6.6710 195.65 195.70 18.53 5673 6.6720 212.64 195.71 19.20 5674 6.6730 196.66 195.72 18.51 5675 6.6740 203.02 195.73 18.91 5676 6.6750 187.91 195.73 18.07 5677 6.6760 194.66 195.74 18.45 5678 6.6770 204.35 195.75 18.90 5679 6.6780 188.55 195.76 18.17 5680 6.6790 181.43 195.76 17.78 5681 6.6800 212.92 195.77 19.37 5682 6.6810 229.54 195.78 20.08 5683 6.6820 194.83 195.79 18.52 5684 6.6830 208.59 195.79 19.21 5685 6.6840 211.00 195.80 19.20 5686 6.6850 199.52 195.81 18.63 5687 6.6860 223.31 195.82 19.75 5688 6.6870 225.85 195.82 19.85 5689 6.6880 204.03 195.83 18.87 5690 6.6890 200.80 195.84 18.72 5691 6.6900 191.47 195.85 18.31 5692 6.6910 192.56 195.85 18.37 5693 6.6920 202.66 195.86 18.83 5694 6.6930 194.02 195.87 18.39 5695 6.6940 227.38 195.87 20.04 5696 6.6950 217.04 195.88 19.51 5697 6.6960 240.56 195.89 20.42 5698 6.6970 169.62 195.90 17.07 5699 6.6980 185.76 195.90 18.10 5700 6.6990 187.80 195.91 18.16 5701 6.7000 230.69 195.92 20.19 5702 6.7010 217.33 195.93 19.51 5703 6.7020 229.15 195.93 20.00 5704 6.7030 209.34 195.94 19.18 5705 6.7040 222.18 195.95 19.69 5706 6.7050 191.19 195.96 18.19 5707 6.7060 193.88 195.96 18.33 5708 6.7070 197.04 195.97 18.59 5709 6.7080 180.38 195.98 17.76 5710 6.7090 208.06 195.99 19.12 5711 6.7100 186.75 195.99 17.99 5712 6.7110 189.88 196.00 18.18 5713 6.7120 181.91 196.01 17.81 5714 6.7130 202.12 196.01 18.77 5715 6.7140 192.63 196.02 18.39 5716 6.7150 187.67 196.03 18.16 5717 6.7160 209.81 196.04 19.16 5718 6.7170 205.83 196.04 18.93 5719 6.7180 190.41 196.05 18.25 5720 6.7190 203.53 196.06 18.86 5721 6.7200 203.43 196.07 18.91 5722 6.7210 207.78 196.07 19.00 5723 6.7220 200.08 196.08 18.65 5724 6.7230 212.95 196.09 19.30 5725 6.7240 218.12 196.10 19.49 5726 6.7250 200.69 196.10 18.71 5727 6.7260 195.53 196.11 18.50 5728 6.7270 213.53 196.12 19.30 5729 6.7280 182.39 196.12 17.83 5730 6.7290 197.18 196.13 18.65 5731 6.7300 207.01 196.14 19.00 5732 6.7310 203.10 196.15 18.78 5733 6.7320 210.73 196.15 19.16 5734 6.7330 188.93 196.16 18.15 5735 6.7340 201.37 196.17 18.74 5736 6.7350 196.58 196.18 18.57 5737 6.7360 193.69 196.18 18.35 5738 6.7370 219.53 196.19 19.66 5739 6.7380 204.48 196.20 18.94 5740 6.7390 169.56 196.21 17.20 5741 6.7400 195.09 196.21 18.48 5742 6.7410 200.78 196.22 18.76 5743 6.7420 216.22 196.23 19.45 5744 6.7430 190.62 196.24 18.29 5745 6.7440 200.37 196.24 18.79 5746 6.7450 194.77 196.25 18.42 5747 6.7460 178.43 196.26 17.65 5748 6.7470 205.96 196.26 18.90 5749 6.7480 212.94 196.27 19.30 5750 6.7490 181.98 196.28 17.81 5751 6.7500 202.91 196.29 18.77 5752 6.7510 212.60 196.29 19.28 5753 6.7520 212.73 196.30 19.30 5754 6.7530 231.86 196.31 20.15 5755 6.7540 216.48 196.32 19.47 5756 6.7550 197.20 196.32 18.65 5757 6.7560 171.56 196.33 17.25 5758 6.7570 189.10 196.34 18.12 5759 6.7580 196.12 196.35 18.45 5760 6.7590 204.53 196.35 18.93 5761 6.7600 205.98 196.36 19.05 5762 6.7610 205.04 196.37 18.95 5763 6.7620 221.24 196.38 19.65 5764 6.7630 220.61 196.38 19.67 5765 6.7640 189.46 196.39 18.24 5766 6.7650 190.10 196.40 18.23 5767 6.7660 193.68 196.40 18.41 5768 6.7670 202.36 196.41 18.79 5769 6.7680 200.81 196.42 18.66 5770 6.7690 198.09 196.43 18.57 5771 6.7700 216.78 196.43 19.48 5772 6.7710 199.34 196.44 18.71 5773 6.7720 198.31 196.45 18.53 5774 6.7730 210.32 196.46 19.16 5775 6.7740 207.96 196.46 19.06 5776 6.7750 202.55 196.47 18.76 5777 6.7760 228.07 196.48 19.96 5778 6.7770 216.40 196.48 19.42 5779 6.7780 214.58 196.49 19.45 5780 6.7790 177.10 196.50 17.66 5781 6.7800 200.35 196.51 18.71 5782 6.7810 219.65 196.51 19.60 5783 6.7820 194.64 196.52 18.43 5784 6.7830 201.21 196.53 18.68 5785 6.7840 230.45 196.54 20.06 5786 6.7850 201.60 196.54 18.80 5787 6.7860 198.47 196.55 18.67 5788 6.7870 210.37 196.56 19.20 5789 6.7880 202.74 196.56 18.85 5790 6.7890 190.34 196.57 18.26 5791 6.7900 224.08 196.58 19.83 5792 6.7910 192.31 196.59 18.28 5793 6.7920 175.91 196.59 17.55 5794 6.7930 198.45 196.60 18.66 5795 6.7940 207.38 196.61 19.12 5796 6.7950 168.16 196.62 17.12 5797 6.7960 194.37 196.62 18.48 5798 6.7970 197.21 196.63 18.55 5799 6.7980 203.70 196.64 18.86 5800 6.7990 222.00 196.64 19.64 5801 6.8000 236.43 196.65 20.29 5802 6.8010 209.92 196.66 19.13 5803 6.8020 221.66 196.67 19.71 5804 6.8030 217.46 196.67 19.48 5805 6.8040 193.50 196.68 18.26 5806 6.8050 189.16 196.69 18.14 5807 6.8060 155.54 196.70 16.43 5808 6.8070 215.65 196.70 19.47 5809 6.8080 205.02 196.71 18.89 5810 6.8090 226.59 196.72 19.89 5811 6.8100 214.58 196.72 19.26 5812 6.8110 222.44 196.73 19.68 5813 6.8120 231.82 196.74 20.15 5814 6.8130 241.60 196.75 20.57 5815 6.8140 189.37 196.75 18.13 5816 6.8150 246.09 196.76 20.65 5817 6.8160 266.39 196.77 21.57 5818 6.8170 247.67 196.77 20.74 5819 6.8180 233.15 196.78 20.18 5820 6.8190 202.30 196.79 18.73 5821 6.8200 224.76 196.80 19.81 5822 6.8210 250.45 196.80 20.95 5823 6.8220 230.69 196.81 20.12 5824 6.8230 238.35 196.82 20.43 5825 6.8240 259.05 196.82 21.29 5826 6.8250 249.84 196.83 20.94 5827 6.8260 221.02 196.84 19.66 5828 6.8270 232.68 196.85 20.18 5829 6.8280 197.61 196.85 18.58 5830 6.8290 206.07 196.86 18.92 5831 6.8300 248.29 196.87 20.89 5832 6.8310 230.89 196.88 19.99 5833 6.8320 233.19 196.88 20.20 5834 6.8330 240.48 196.89 20.49 5835 6.8340 260.74 196.90 21.35 5836 6.8350 247.35 196.90 20.78 5837 6.8360 253.64 196.91 21.06 5838 6.8370 247.80 196.92 20.77 5839 6.8380 230.28 196.93 20.06 5840 6.8390 235.17 196.93 20.25 5841 6.8400 241.66 196.94 20.54 5842 6.8410 268.14 196.95 21.60 5843 6.8420 259.37 196.96 21.28 5844 6.8430 287.61 196.96 22.41 5845 6.8440 293.32 196.97 22.67 5846 6.8450 333.58 196.98 24.18 5847 6.8460 284.20 196.98 22.30 5848 6.8470 298.35 196.99 22.87 5849 6.8480 314.61 197.00 23.46 5850 6.8490 326.89 197.01 23.93 5851 6.8500 365.37 197.01 25.27 5852 6.8510 301.83 197.02 22.93 5853 6.8520 313.87 197.03 23.44 5854 6.8530 308.93 197.03 23.21 5855 6.8540 296.88 197.04 22.75 5856 6.8550 298.13 197.05 22.90 5857 6.8560 293.45 197.05 22.62 5858 6.8570 309.96 197.06 23.25 5859 6.8580 283.87 197.07 22.24 5860 6.8590 313.84 197.08 23.43 5861 6.8600 321.72 197.08 23.76 5862 6.8610 298.73 197.09 22.87 5863 6.8620 291.26 197.10 22.54 5864 6.8630 278.29 197.10 22.06 5865 6.8640 280.28 197.11 22.14 5866 6.8650 287.20 197.12 22.39 5867 6.8660 297.52 197.13 22.84 5868 6.8670 275.26 197.13 21.96 5869 6.8680 291.25 197.14 22.59 5870 6.8690 276.02 197.15 21.99 5871 6.8700 281.97 197.16 22.20 5872 6.8710 252.50 197.16 20.98 5873 6.8720 270.02 197.17 21.73 5874 6.8730 295.99 197.18 22.73 5875 6.8740 271.17 197.18 21.79 5876 6.8750 285.38 197.19 22.43 5877 6.8760 222.17 197.20 19.69 5878 6.8770 269.54 197.21 21.69 5879 6.8780 237.35 197.21 20.36 5880 6.8790 220.12 197.22 19.65 5881 6.8800 217.95 197.23 19.48 5882 6.8810 237.04 197.23 20.29 5883 6.8820 236.76 197.24 20.32 5884 6.8830 233.32 197.25 20.17 5885 6.8840 200.42 197.26 18.62 5886 6.8850 204.17 197.26 18.88 5887 6.8860 229.16 197.27 20.03 5888 6.8870 200.62 197.28 18.79 5889 6.8880 210.75 197.28 19.22 5890 6.8890 214.06 197.29 19.34 5891 6.8900 206.85 197.30 19.06 5892 6.8910 182.24 197.30 17.76 5893 6.8920 197.22 197.31 18.53 5894 6.8930 212.19 197.32 19.20 5895 6.8940 241.95 197.33 20.51 5896 6.8950 200.48 197.33 18.70 5897 6.8960 209.74 197.34 19.12 5898 6.8970 218.56 197.35 19.54 5899 6.8980 220.58 197.35 19.58 5900 6.8990 228.78 197.36 19.95 5901 6.9000 250.33 197.37 20.95 5902 6.9010 229.94 197.38 19.99 5903 6.9020 221.18 197.38 19.64 5904 6.9030 208.82 197.39 19.13 5905 6.9040 228.30 197.40 19.98 5906 6.9050 207.46 197.40 19.02 5907 6.9060 217.03 197.41 19.41 5908 6.9070 214.20 197.42 19.30 5909 6.9080 226.07 197.43 19.86 5910 6.9090 254.93 197.43 21.15 5911 6.9100 188.71 197.44 18.16 5912 6.9110 187.44 197.45 18.14 5913 6.9120 202.59 197.45 18.80 5914 6.9130 205.12 197.46 18.91 5915 6.9140 191.08 197.47 18.27 5916 6.9150 205.67 197.48 19.05 5917 6.9160 227.09 197.48 19.98 5918 6.9170 196.67 197.49 18.48 5919 6.9180 230.70 197.50 20.07 5920 6.9190 209.35 197.50 19.16 5921 6.9200 210.25 197.51 19.17 5922 6.9210 211.29 197.52 19.20 5923 6.9220 213.22 197.52 19.22 5924 6.9230 214.60 197.53 19.39 5925 6.9240 191.91 197.54 18.36 5926 6.9250 192.79 197.55 18.24 5927 6.9260 213.19 197.55 19.29 5928 6.9270 201.90 197.56 18.77 5929 6.9280 237.78 197.57 20.42 5930 6.9290 196.78 197.57 18.55 5931 6.9300 195.92 197.58 18.50 5932 6.9310 202.19 197.59 18.86 5933 6.9320 186.80 197.60 18.03 5934 6.9330 195.68 197.60 18.39 5935 6.9340 227.33 197.61 19.82 5936 6.9350 194.77 197.62 18.38 5937 6.9360 203.71 197.62 18.88 5938 6.9370 195.99 197.63 18.53 5939 6.9380 197.23 197.64 18.56 5940 6.9390 221.20 197.65 19.71 5941 6.9400 187.05 197.65 18.08 5942 6.9410 192.86 197.66 18.39 5943 6.9420 180.31 197.67 17.73 5944 6.9430 187.86 197.67 18.18 5945 6.9440 201.38 197.68 18.78 5946 6.9450 196.97 197.69 18.54 5947 6.9460 217.02 197.69 19.48 5948 6.9470 194.23 197.70 18.39 5949 6.9480 173.14 197.71 17.40 5950 6.9490 197.96 197.71 18.62 5951 6.9500 216.13 197.72 19.44 5952 6.9510 204.62 197.73 18.87 5953 6.9520 215.03 197.74 19.27 5954 6.9530 198.47 197.74 18.57 5955 6.9540 211.84 197.75 19.27 5956 6.9550 207.10 197.76 19.03 5957 6.9560 195.13 197.76 18.44 5958 6.9570 181.80 197.77 17.89 5959 6.9580 214.70 197.78 19.31 5960 6.9590 208.18 197.79 19.07 5961 6.9600 203.44 197.79 18.86 5962 6.9610 194.96 197.80 18.50 5963 6.9620 169.62 197.81 17.26 5964 6.9630 207.68 197.81 19.13 5965 6.9640 192.91 197.82 18.35 5966 6.9650 178.39 197.83 17.41 5967 6.9660 236.51 197.84 20.31 5968 6.9670 179.80 197.84 17.67 5969 6.9680 223.13 197.85 19.76 5970 6.9690 236.70 197.86 20.36 5971 6.9700 201.25 197.86 18.75 5972 6.9710 204.61 197.87 18.89 5973 6.9720 213.44 197.88 19.34 5974 6.9730 174.18 197.88 17.52 5975 6.9740 188.94 197.89 18.22 5976 6.9750 215.55 197.90 19.44 5977 6.9760 232.29 197.90 20.16 5978 6.9770 222.35 197.91 19.67 5979 6.9780 213.55 197.92 19.36 5980 6.9790 240.07 197.93 20.46 5981 6.9800 211.47 197.93 19.18 5982 6.9810 191.06 197.94 18.21 5983 6.9820 201.71 197.95 18.69 5984 6.9830 237.62 197.95 20.39 5985 6.9840 189.16 197.96 18.17 5986 6.9850 214.86 197.97 19.31 5987 6.9860 193.49 197.97 18.33 5988 6.9870 186.59 197.98 18.10 5989 6.9880 178.71 197.99 17.67 5990 6.9890 186.25 197.99 18.06 5991 6.9900 206.63 198.00 18.97 5992 6.9910 198.43 198.01 18.59 5993 6.9920 164.42 198.02 16.91 5994 6.9930 185.46 198.02 17.98 5995 6.9940 197.21 198.03 18.55 5996 6.9950 212.97 198.04 19.26 5997 6.9960 181.97 198.04 17.82 5998 6.9970 186.00 198.05 18.06 5999 6.9980 215.12 198.06 19.36 6000 6.9990 207.02 198.07 19.00 6001 7.0000 177.17 198.07 17.57 6002 7.0010 204.11 198.08 18.81 6003 7.0020 181.40 198.09 17.81 6004 7.0030 176.25 198.09 17.65 6005 7.0040 177.79 198.10 17.74 6006 7.0050 214.12 198.11 19.30 6007 7.0060 209.07 198.11 19.09 6008 7.0070 200.56 198.12 18.66 6009 7.0080 180.39 198.13 17.75 6010 7.0090 187.45 198.13 18.09 6011 7.0100 177.66 198.14 17.67 6012 7.0110 200.75 198.15 18.77 6013 7.0120 205.61 198.15 18.96 6014 7.0130 216.31 198.16 19.41 6015 7.0140 178.75 198.17 17.65 6016 7.0150 168.05 198.18 17.21 6017 7.0160 192.41 198.18 18.33 6018 7.0170 220.25 198.19 19.63 6019 7.0180 195.23 198.20 18.45 6020 7.0190 188.76 198.20 18.17 6021 7.0200 226.15 198.21 19.89 6022 7.0210 223.75 198.22 19.75 6023 7.0220 202.64 198.22 18.83 6024 7.0230 202.92 198.23 18.76 6025 7.0240 229.30 198.24 20.03 6026 7.0250 232.15 198.24 20.16 6027 7.0260 213.89 198.25 19.38 6028 7.0270 208.37 198.26 19.11 6029 7.0280 167.56 198.26 17.11 6030 7.0290 185.31 198.27 17.96 6031 7.0300 198.37 198.28 18.57 6032 7.0310 222.11 198.29 19.68 6033 7.0320 208.78 198.29 19.07 6034 7.0330 199.20 198.30 18.71 6035 7.0340 197.98 198.31 18.60 6036 7.0350 178.25 198.31 17.66 6037 7.0360 218.34 198.32 19.55 6038 7.0370 204.60 198.33 18.89 6039 7.0380 187.56 198.33 18.03 6040 7.0390 215.75 198.34 19.34 6041 7.0400 218.41 198.35 19.58 6042 7.0410 249.33 198.35 20.86 6043 7.0420 189.63 198.36 18.15 6044 7.0430 211.16 198.37 19.17 6045 7.0440 210.77 198.38 19.11 6046 7.0450 189.84 198.38 18.18 6047 7.0460 179.64 198.39 17.70 6048 7.0470 196.84 198.40 18.60 6049 7.0480 196.43 198.40 18.58 6050 7.0490 192.80 198.41 18.40 6051 7.0500 175.61 198.42 17.49 6052 7.0510 202.76 198.42 18.83 6053 7.0520 202.63 198.43 18.74 6054 7.0530 220.86 198.44 19.63 6055 7.0540 217.61 198.44 19.55 6056 7.0550 219.82 198.45 19.65 6057 7.0560 201.49 198.46 18.81 6058 7.0570 185.85 198.46 17.98 6059 7.0580 236.07 198.47 20.35 6060 7.0590 220.50 198.48 19.67 6061 7.0600 219.32 198.49 19.68 6062 7.0610 195.56 198.49 18.57 6063 7.0620 172.66 198.50 17.39 6064 7.0630 200.72 198.51 18.75 6065 7.0640 203.27 198.51 18.86 6066 7.0650 204.52 198.52 18.92 6067 7.0660 204.79 198.53 18.91 6068 7.0670 214.79 198.53 19.40 6069 7.0680 200.69 198.54 18.70 6070 7.0690 202.79 198.55 18.83 6071 7.0700 206.38 198.55 19.00 6072 7.0710 206.95 198.56 19.04 6073 7.0720 209.57 198.57 19.10 6074 7.0730 186.90 198.57 18.04 6075 7.0740 212.03 198.58 19.25 6076 7.0750 220.22 198.59 19.59 6077 7.0760 193.54 198.60 18.31 6078 7.0770 187.91 198.60 18.13 6079 7.0780 223.08 198.61 19.78 6080 7.0790 211.04 198.62 19.24 6081 7.0800 215.32 198.62 19.43 6082 7.0810 208.38 198.63 19.08 6083 7.0820 182.78 198.63 17.84 6084 7.0830 230.70 198.64 20.12 6085 7.0840 247.52 198.65 20.86 6086 7.0850 209.39 198.66 19.11 6087 7.0860 214.05 198.66 19.33 6088 7.0870 231.96 198.67 20.15 6089 7.0880 193.71 198.68 18.38 6090 7.0890 207.86 198.68 19.10 6091 7.0900 192.18 198.69 18.32 6092 7.0910 201.65 198.70 18.76 6093 7.0920 209.80 198.70 19.13 6094 7.0930 192.46 198.71 18.36 6095 7.0940 201.15 198.72 18.74 6096 7.0950 228.58 198.72 20.05 6097 7.0960 215.47 198.73 19.46 6098 7.0970 223.59 198.74 19.82 6099 7.0980 205.65 198.74 18.97 6100 7.0990 205.05 198.75 18.89 6101 7.1000 197.59 198.76 18.52 6102 7.1010 205.82 198.76 19.00 6103 7.1020 209.68 198.77 19.18 6104 7.1030 220.69 198.78 19.65 6105 7.1040 214.92 198.79 19.34 6106 7.1050 209.57 198.79 19.12 6107 7.1060 218.40 198.80 19.59 6108 7.1070 233.77 198.80 20.30 6109 7.1080 231.16 198.81 20.15 6110 7.1090 200.21 198.82 18.69 6111 7.1100 220.99 198.82 19.67 6112 7.1110 252.02 198.83 20.98 6113 7.1120 229.46 198.84 20.05 6114 7.1130 233.03 198.85 20.26 6115 7.1140 188.11 198.85 18.14 6116 7.1150 216.10 198.86 19.52 6117 7.1160 215.63 198.87 19.50 6118 7.1170 224.61 198.87 19.84 6119 7.1180 233.39 198.88 20.20 6120 7.1190 217.20 198.89 19.46 6121 7.1200 196.89 198.89 18.58 6122 7.1210 199.12 198.90 18.64 6123 7.1220 216.81 198.91 19.44 6124 7.1230 223.87 198.91 19.76 6125 7.1240 224.68 198.92 19.78 6126 7.1250 240.48 198.93 20.48 6127 7.1260 223.59 198.93 19.82 6128 7.1270 245.65 198.94 20.74 6129 7.1280 256.50 198.95 21.24 6130 7.1290 243.81 198.95 20.68 6131 7.1300 209.46 198.96 19.13 6132 7.1310 236.47 198.97 20.29 6133 7.1320 222.56 198.97 19.69 6134 7.1330 209.53 198.98 19.09 6135 7.1340 227.43 198.99 19.95 6136 7.1350 257.41 198.99 21.22 6137 7.1360 224.60 199.00 19.84 6138 7.1370 224.69 199.01 19.86 6139 7.1380 222.23 199.01 19.73 6140 7.1390 227.91 199.02 19.99 6141 7.1400 263.23 199.03 21.46 6142 7.1410 233.21 199.03 20.20 6143 7.1420 221.02 199.04 19.66 6144 7.1430 231.91 199.05 20.13 6145 7.1440 223.23 199.05 19.79 6146 7.1450 205.59 199.06 19.01 6147 7.1460 209.83 199.07 19.16 6148 7.1470 209.73 199.07 19.15 6149 7.1480 239.56 199.08 20.47 6150 7.1490 239.16 199.09 20.49 6151 7.1500 221.00 199.10 19.68 6152 7.1510 214.34 199.10 19.31 6153 7.1520 226.90 199.11 19.95 6154 7.1530 209.21 199.12 19.08 6155 7.1540 219.08 199.12 19.56 6156 7.1550 188.93 199.13 18.18 6157 7.1560 197.56 199.13 18.58 6158 7.1570 176.91 199.14 17.50 6159 7.1580 194.13 199.15 18.32 6160 7.1590 208.64 199.15 19.14 6161 7.1600 219.90 199.16 19.65 6162 7.1610 200.90 199.17 18.69 6163 7.1620 224.67 199.18 19.77 6164 7.1630 228.01 199.18 19.94 6165 7.1640 232.70 199.19 20.15 6166 7.1650 234.44 199.20 20.19 6167 7.1660 213.88 199.20 19.29 6168 7.1670 191.95 199.21 18.27 6169 7.1680 171.53 199.21 17.30 6170 7.1690 175.42 199.22 17.44 6171 7.1700 188.26 199.23 18.08 6172 7.1710 194.42 199.24 18.42 6173 7.1720 206.21 199.24 18.90 6174 7.1730 200.07 199.25 18.69 6175 7.1740 192.98 199.26 18.33 6176 7.1750 182.29 199.26 17.80 6177 7.1760 230.25 199.27 20.04 6178 7.1770 222.80 199.27 19.78 6179 7.1780 199.62 199.28 18.68 6180 7.1790 199.89 199.29 18.64 6181 7.1800 192.56 199.29 18.33 6182 7.1810 194.80 199.30 18.50 6183 7.1820 190.48 199.31 18.32 6184 7.1830 169.02 199.32 17.12 6185 7.1840 197.20 199.32 18.59 6186 7.1850 203.35 199.33 18.80 6187 7.1860 202.90 199.34 18.85 6188 7.1870 207.13 199.34 19.00 6189 7.1880 179.23 199.35 17.66 6190 7.1890 193.29 199.35 18.38 6191 7.1900 195.22 199.36 18.48 6192 7.1910 188.44 199.37 18.14 6193 7.1920 196.16 199.38 18.38 6194 7.1930 224.53 199.38 19.73 6195 7.1940 203.04 199.39 18.80 6196 7.1950 221.57 199.40 19.68 6197 7.1960 202.58 199.40 18.85 6198 7.1970 190.14 199.41 18.23 6199 7.1980 193.08 199.41 18.40 6200 7.1990 200.21 199.42 18.67 6201 7.2000 206.65 199.43 18.98 6202 7.2010 191.53 199.43 18.33 6203 7.2020 207.87 199.44 19.11 6204 7.2030 201.09 199.45 18.73 6205 7.2040 175.05 199.45 17.48 6206 7.2050 183.09 199.46 17.92 6207 7.2060 182.51 199.47 17.76 6208 7.2070 192.38 199.47 18.20 6209 7.2080 179.29 199.48 17.67 6210 7.2090 190.87 199.49 18.28 6211 7.2100 210.35 199.49 19.14 6212 7.2110 197.45 199.50 18.48 6213 7.2120 212.11 199.51 19.24 6214 7.2130 190.49 199.51 18.27 6215 7.2140 212.28 199.52 19.28 6216 7.2150 192.06 199.53 18.41 6217 7.2160 180.97 199.53 17.76 6218 7.2170 189.97 199.54 18.28 6219 7.2180 198.60 199.55 18.70 6220 7.2190 205.04 199.55 18.93 6221 7.2200 203.82 199.56 18.87 6222 7.2210 177.23 199.57 17.58 6223 7.2220 195.57 199.57 18.52 6224 7.2230 215.27 199.58 19.28 6225 7.2240 186.70 199.59 17.91 6226 7.2250 192.63 199.59 18.39 6227 7.2260 182.20 199.60 17.89 6228 7.2270 154.19 199.61 16.40 6229 7.2280 207.60 199.61 19.05 6230 7.2290 207.29 199.62 19.00 6231 7.2300 181.49 199.62 17.78 6232 7.2310 243.80 199.63 20.72 6233 7.2320 203.48 199.64 18.91 6234 7.2330 194.56 199.65 18.50 6235 7.2340 212.32 199.65 19.25 6236 7.2350 187.55 199.66 18.07 6237 7.2360 187.78 199.66 18.19 6238 7.2370 201.73 199.67 18.88 6239 7.2380 198.85 199.68 18.66 6240 7.2390 190.85 199.68 18.29 6241 7.2400 186.41 199.69 17.99 6242 7.2410 176.01 199.70 17.53 6243 7.2420 221.76 199.70 19.76 6244 7.2430 204.86 199.71 18.90 6245 7.2440 206.05 199.72 18.94 6246 7.2450 206.31 199.72 18.91 6247 7.2460 214.81 199.73 19.40 6248 7.2470 205.96 199.74 18.88 6249 7.2480 204.18 199.74 18.85 6250 7.2490 213.42 199.75 19.33 6251 7.2500 205.37 199.76 18.95 6252 7.2510 253.91 199.76 21.07 6253 7.2520 199.70 199.77 18.63 6254 7.2530 231.14 199.78 20.13 6255 7.2540 216.13 199.78 19.31 6256 7.2550 164.33 199.79 16.94 6257 7.2560 208.45 199.79 19.17 6258 7.2570 221.14 199.80 19.75 6259 7.2580 198.60 199.81 18.49 6260 7.2590 183.33 199.82 17.89 6261 7.2600 221.57 199.82 19.66 6262 7.2610 189.82 199.83 18.16 6263 7.2620 213.50 199.84 19.27 6264 7.2630 196.51 199.84 18.46 6265 7.2640 191.67 199.85 18.28 6266 7.2650 186.22 199.85 17.99 6267 7.2660 180.83 199.86 17.74 6268 7.2670 213.93 199.87 19.38 6269 7.2680 190.31 199.87 18.18 6270 7.2690 185.96 199.88 17.98 6271 7.2700 166.46 199.89 17.01 6272 7.2710 178.89 199.89 17.60 6273 7.2720 217.63 199.90 19.57 6274 7.2730 183.66 199.91 17.86 6275 7.2740 198.47 199.91 18.51 6276 7.2750 211.02 199.92 19.21 6277 7.2760 174.51 199.93 17.41 6278 7.2770 156.90 199.93 16.55 6279 7.2780 174.44 199.94 17.41 6280 7.2790 191.25 199.95 18.29 6281 7.2800 185.58 199.95 18.00 6282 7.2810 215.65 199.96 19.39 6283 7.2820 195.42 199.96 18.51 6284 7.2830 203.08 199.97 18.90 6285 7.2840 198.36 199.98 18.73 6286 7.2850 202.25 199.98 18.87 6287 7.2860 183.68 199.99 17.90 6288 7.2870 161.16 200.00 16.78 6289 7.2880 180.91 200.00 17.77 6290 7.2890 163.30 200.01 16.87 6291 7.2900 211.62 200.02 19.16 6292 7.2910 212.02 200.02 19.21 6293 7.2920 202.88 200.03 18.86 6294 7.2930 218.07 200.04 19.57 6295 7.2940 194.14 200.04 18.46 6296 7.2950 197.77 200.05 18.66 6297 7.2960 214.27 200.05 19.41 6298 7.2970 209.60 200.06 19.12 6299 7.2980 181.47 200.07 17.74 6300 7.2990 179.77 200.07 17.78 6301 7.3000 177.84 200.08 17.65 6302 7.3010 187.28 200.09 18.10 6303 7.3020 178.02 200.09 17.64 6304 7.3030 168.19 200.10 17.11 6305 7.3040 217.69 200.11 19.46 6306 7.3050 218.88 200.11 19.53 6307 7.3060 191.14 200.12 18.29 6308 7.3070 220.30 200.13 19.62 6309 7.3080 216.91 200.13 19.49 6310 7.3090 184.93 200.14 17.95 6311 7.3100 203.27 200.15 18.83 6312 7.3110 208.87 200.15 19.06 6313 7.3120 184.34 200.16 17.94 6314 7.3130 195.29 200.16 18.52 6315 7.3140 214.67 200.17 19.40 6316 7.3150 209.61 200.18 19.13 6317 7.3160 194.48 200.18 18.47 6318 7.3170 197.39 200.19 18.57 6319 7.3180 203.91 200.20 18.88 6320 7.3190 184.54 200.20 18.03 6321 7.3200 195.38 200.21 18.49 6322 7.3210 182.65 200.22 17.86 6323 7.3220 214.79 200.22 19.39 6324 7.3230 191.09 200.23 18.22 6325 7.3240 190.70 200.24 18.25 6326 7.3250 194.33 200.24 18.45 6327 7.3260 203.30 200.25 18.84 6328 7.3270 170.08 200.25 17.24 6329 7.3280 182.14 200.26 17.87 6330 7.3290 200.89 200.27 18.71 6331 7.3300 194.21 200.27 18.40 6332 7.3310 216.60 200.28 19.45 6333 7.3320 181.71 200.29 17.76 6334 7.3330 203.67 200.29 18.83 6335 7.3340 252.12 200.30 20.94 6336 7.3350 198.03 200.30 18.54 6337 7.3360 193.28 200.31 18.34 6338 7.3370 238.13 200.32 20.36 6339 7.3380 238.62 200.32 20.41 6340 7.3390 212.00 200.33 19.24 6341 7.3400 231.09 200.34 20.22 6342 7.3410 223.01 200.34 19.80 6343 7.3420 189.28 200.35 18.17 6344 7.3430 206.03 200.36 18.95 6345 7.3440 198.37 200.36 18.56 6346 7.3450 231.74 200.37 20.14 6347 7.3460 212.90 200.38 19.30 6348 7.3470 211.78 200.38 19.17 6349 7.3480 216.90 200.39 19.46 6350 7.3490 223.29 200.40 19.77 6351 7.3500 194.45 200.40 18.45 6352 7.3510 196.20 200.41 18.56 6353 7.3520 187.97 200.41 18.07 6354 7.3530 220.93 200.42 19.66 6355 7.3540 224.76 200.43 19.79 6356 7.3550 201.82 200.43 18.74 6357 7.3560 203.88 200.44 18.85 6358 7.3570 205.98 200.45 18.99 6359 7.3580 202.51 200.45 18.86 6360 7.3590 190.30 200.46 18.24 6361 7.3600 180.51 200.46 17.71 6362 7.3610 217.00 200.47 19.50 6363 7.3620 204.00 200.48 18.87 6364 7.3630 197.83 200.48 18.63 6365 7.3640 246.32 200.49 20.78 6366 7.3650 219.87 200.50 19.61 6367 7.3660 206.97 200.50 18.96 6368 7.3670 203.84 200.51 18.94 6369 7.3680 215.25 200.51 19.31 6370 7.3690 215.00 200.52 19.25 6371 7.3700 215.04 200.53 19.41 6372 7.3710 205.74 200.53 18.98 6373 7.3720 202.21 200.54 18.78 6374 7.3730 221.59 200.55 19.63 6375 7.3740 212.41 200.55 19.27 6376 7.3750 185.01 200.56 17.98 6377 7.3760 178.58 200.57 17.69 6378 7.3770 203.20 200.57 18.91 6379 7.3780 214.73 200.58 19.37 6380 7.3790 222.16 200.59 19.73 6381 7.3800 198.70 200.59 18.64 6382 7.3810 213.19 200.60 19.29 6383 7.3820 185.71 200.60 17.98 6384 7.3830 201.39 200.61 18.79 6385 7.3840 193.31 200.62 18.36 6386 7.3850 204.47 200.62 18.87 6387 7.3860 192.28 200.63 18.39 6388 7.3870 209.36 200.63 19.09 6389 7.3880 195.95 200.64 18.50 6390 7.3890 197.59 200.65 18.57 6391 7.3900 250.34 200.65 20.92 6392 7.3910 193.80 200.66 18.41 6393 7.3920 196.04 200.67 18.49 6394 7.3930 194.17 200.67 18.43 6395 7.3940 197.74 200.68 18.59 6396 7.3950 185.73 200.68 18.06 6397 7.3960 206.17 200.69 18.90 6398 7.3970 175.08 200.70 17.47 6399 7.3980 191.25 200.70 18.23 6400 7.3990 173.23 200.71 17.36 6401 7.4000 209.43 200.72 19.23 6402 7.4010 224.63 200.72 19.77 6403 7.4020 171.36 200.73 17.25 6404 7.4030 182.51 200.74 17.83 6405 7.4040 225.55 200.74 19.95 6406 7.4050 188.24 200.75 18.13 6407 7.4060 193.04 200.75 18.41 6408 7.4070 218.49 200.76 19.52 6409 7.4080 194.48 200.77 18.43 6410 7.4090 170.48 200.77 17.25 6411 7.4100 169.56 200.78 17.23 6412 7.4110 187.76 200.79 18.09 6413 7.4120 201.32 200.79 18.77 6414 7.4130 217.00 200.80 19.43 6415 7.4140 200.55 200.80 18.66 6416 7.4150 171.08 200.81 17.28 6417 7.4160 190.06 200.82 18.22 6418 7.4170 175.79 200.82 17.52 6419 7.4180 158.46 200.83 16.67 6420 7.4190 199.11 200.84 18.73 6421 7.4200 207.39 200.84 18.96 6422 7.4210 174.86 200.85 17.50 6423 7.4220 198.66 200.85 18.62 6424 7.4230 167.69 200.86 17.14 6425 7.4240 185.25 200.87 17.95 6426 7.4250 202.11 200.87 18.75 6427 7.4260 206.57 200.88 19.03 6428 7.4270 177.93 200.89 17.63 6429 7.4280 192.76 200.89 18.32 6430 7.4290 216.90 200.90 19.52 6431 7.4300 191.53 200.90 18.31 6432 7.4310 177.77 200.91 17.58 6433 7.4320 203.16 200.92 18.84 6434 7.4330 208.70 200.92 19.13 6435 7.4340 189.13 200.93 18.22 6436 7.4350 205.42 200.93 18.90 6437 7.4360 229.56 200.94 20.08 6438 7.4370 215.83 200.95 19.39 6439 7.4380 197.94 200.95 18.65 6440 7.4390 212.26 200.96 19.18 6441 7.4400 206.46 200.97 18.92 6442 7.4410 206.18 200.97 18.98 6443 7.4420 192.11 200.98 18.33 6444 7.4430 206.40 200.99 19.03 6445 7.4440 223.72 200.99 19.81 6446 7.4450 197.58 201.00 18.51 6447 7.4460 265.26 201.00 21.53 6448 7.4470 227.98 201.01 19.95 6449 7.4480 220.05 201.02 19.65 6450 7.4490 213.03 201.02 19.28 6451 7.4500 195.72 201.03 18.46 6452 7.4510 219.78 201.04 19.59 6453 7.4520 243.49 201.04 20.64 6454 7.4530 253.27 201.05 21.05 6455 7.4540 232.34 201.05 20.15 6456 7.4550 225.12 201.06 19.74 6457 7.4560 241.65 201.07 20.48 6458 7.4570 266.45 201.07 21.64 6459 7.4580 239.18 201.08 20.40 6460 7.4590 245.31 201.08 20.74 6461 7.4600 208.64 201.09 19.06 6462 7.4610 232.46 201.10 20.21 6463 7.4620 241.47 201.10 20.58 6464 7.4630 207.58 201.11 19.05 6465 7.4640 221.44 201.12 19.76 6466 7.4650 213.90 201.12 19.31 6467 7.4660 215.84 201.13 19.47 6468 7.4670 175.85 201.13 17.56 6469 7.4680 203.47 201.14 18.87 6470 7.4690 198.70 201.15 18.61 6471 7.4700 220.50 201.15 19.57 6472 7.4710 226.29 201.16 19.88 6473 7.4720 207.21 201.16 19.02 6474 7.4730 188.02 201.17 18.10 6475 7.4740 209.32 201.18 19.14 6476 7.4750 215.07 201.18 19.38 6477 7.4760 208.08 201.19 19.13 6478 7.4770 229.44 201.20 20.08 6479 7.4780 204.38 201.20 18.86 6480 7.4790 222.54 201.21 19.78 6481 7.4800 211.33 201.21 19.22 6482 7.4810 209.91 201.22 19.18 6483 7.4820 209.29 201.23 19.13 6484 7.4830 211.55 201.23 19.25 6485 7.4840 170.52 201.24 17.32 6486 7.4850 189.19 201.24 18.22 6487 7.4860 180.26 201.25 17.78 6488 7.4870 192.83 201.26 18.36 6489 7.4880 196.19 201.26 18.55 6490 7.4890 212.54 201.27 19.30 6491 7.4900 201.32 201.27 18.80 6492 7.4910 183.75 201.28 17.89 6493 7.4920 179.21 201.29 17.74 6494 7.4930 211.38 201.29 19.26 6495 7.4940 195.01 201.30 18.45 6496 7.4950 202.27 201.30 18.86 6497 7.4960 216.67 201.31 19.51 6498 7.4970 202.31 201.32 18.84 6499 7.4980 155.96 201.32 16.47 6500 7.4990 175.00 201.33 17.51 6501 7.5000 181.87 201.34 17.86 6502 7.5010 185.54 201.34 18.06 6503 7.5020 177.02 201.35 17.60 6504 7.5030 193.17 201.35 18.35 6505 7.5040 196.56 201.36 18.53 6506 7.5050 217.27 201.37 19.46 6507 7.5060 198.46 201.37 18.59 6508 7.5070 211.87 201.38 19.29 6509 7.5080 199.55 201.38 18.72 6510 7.5090 206.89 201.39 18.85 6511 7.5100 215.08 201.40 19.36 6512 7.5110 195.24 201.40 18.47 6513 7.5120 204.16 201.41 18.97 6514 7.5130 186.95 201.41 18.08 6515 7.5140 217.97 201.42 19.57 6516 7.5150 222.78 201.43 19.84 6517 7.5160 169.45 201.43 17.20 6518 7.5170 191.92 201.44 18.38 6519 7.5180 167.89 201.45 17.12 6520 7.5190 183.42 201.45 17.87 6521 7.5200 195.82 201.46 18.46 6522 7.5210 202.29 201.46 18.80 6523 7.5220 184.62 201.47 17.95 6524 7.5230 204.89 201.48 18.91 6525 7.5240 170.09 201.48 17.19 6526 7.5250 192.06 201.49 18.35 6527 7.5260 187.76 201.49 18.06 6528 7.5270 218.99 201.50 19.53 6529 7.5280 201.50 201.51 18.80 6530 7.5290 217.65 201.51 19.54 6531 7.5300 173.52 201.52 17.36 6532 7.5310 198.54 201.52 18.66 6533 7.5320 236.45 201.53 20.32 6534 7.5330 192.08 201.54 18.28 6535 7.5340 203.98 201.54 18.98 6536 7.5350 204.95 201.55 19.00 6537 7.5360 226.31 201.55 19.88 6538 7.5370 227.92 201.56 19.97 6539 7.5380 230.54 201.57 20.10 6540 7.5390 227.14 201.57 19.94 6541 7.5400 215.02 201.58 19.36 6542 7.5410 200.10 201.58 18.69 6543 7.5420 215.39 201.59 19.41 6544 7.5430 239.45 201.60 20.55 6545 7.5440 205.30 201.60 18.92 6546 7.5450 237.41 201.61 20.34 6547 7.5460 231.84 201.62 20.12 6548 7.5470 238.53 201.62 20.36 6549 7.5480 231.90 201.63 20.13 6550 7.5490 217.09 201.63 19.47 6551 7.5500 222.12 201.64 19.68 6552 7.5510 215.02 201.65 19.38 6553 7.5520 250.91 201.65 20.91 6554 7.5530 254.14 201.66 21.07 6555 7.5540 261.87 201.66 21.37 6556 7.5550 270.28 201.67 21.72 6557 7.5560 266.62 201.68 21.56 6558 7.5570 268.59 201.68 21.70 6559 7.5580 277.48 201.69 22.04 6560 7.5590 282.71 201.69 22.25 6561 7.5600 308.93 201.70 23.32 6562 7.5610 290.31 201.71 22.59 6563 7.5620 284.74 201.71 22.31 6564 7.5630 331.16 201.72 24.07 6565 7.5640 318.51 201.72 23.60 6566 7.5650 323.04 201.73 23.76 6567 7.5660 301.15 201.74 22.84 6568 7.5670 322.52 201.74 23.68 6569 7.5680 305.78 201.75 23.12 6570 7.5690 302.90 201.75 23.00 6571 7.5700 319.43 201.76 23.69 6572 7.5710 299.37 201.76 22.87 6573 7.5720 330.70 201.77 24.06 6574 7.5730 327.35 201.78 23.94 6575 7.5740 323.58 201.78 23.80 6576 7.5750 327.71 201.79 23.94 6577 7.5760 277.42 201.79 22.11 6578 7.5770 313.22 201.80 23.43 6579 7.5780 275.48 201.81 21.90 6580 7.5790 262.30 201.81 21.43 6581 7.5800 240.14 201.82 20.43 6582 7.5810 293.19 201.82 22.58 6583 7.5820 247.90 201.83 20.73 6584 7.5830 280.47 201.84 22.20 6585 7.5840 273.85 201.84 21.90 6586 7.5850 225.17 201.85 19.84 6587 7.5860 213.26 201.85 19.29 6588 7.5870 258.04 201.86 21.32 6589 7.5880 227.27 201.87 19.97 6590 7.5890 245.57 201.87 20.72 6591 7.5900 213.53 201.88 19.29 6592 7.5910 217.40 201.88 19.53 6593 7.5920 220.50 201.89 19.62 6594 7.5930 205.95 201.90 18.91 6595 7.5940 207.24 201.90 19.01 6596 7.5950 205.62 201.91 19.00 6597 7.5960 202.03 201.91 18.82 6598 7.5970 189.56 201.92 18.21 6599 7.5980 194.14 201.93 18.41 6600 7.5990 219.92 201.93 19.66 6601 7.6000 205.04 201.94 18.94 6602 7.6010 203.84 201.94 18.84 6603 7.6020 201.86 201.95 18.80 6604 7.6030 212.24 201.96 19.29 6605 7.6040 208.68 201.96 19.14 6606 7.6050 190.03 201.97 18.32 6607 7.6060 193.31 201.97 18.43 6608 7.6070 222.72 201.98 19.66 6609 7.6080 209.74 201.99 19.15 6610 7.6090 244.54 201.99 20.73 6611 7.6100 203.68 202.00 18.84 6612 7.6110 213.75 202.00 19.36 6613 7.6120 196.16 202.01 18.45 6614 7.6130 213.78 202.01 19.35 6615 7.6140 195.74 202.02 18.59 6616 7.6150 196.65 202.03 18.62 6617 7.6160 185.51 202.03 18.01 6618 7.6170 201.76 202.04 18.78 6619 7.6180 202.40 202.04 18.80 6620 7.6190 170.62 202.05 17.22 6621 7.6200 163.20 202.05 16.91 6622 7.6210 175.03 202.06 17.51 6623 7.6220 182.48 202.07 17.77 6624 7.6230 171.43 202.07 17.26 6625 7.6240 168.83 202.08 17.16 6626 7.6250 176.44 202.09 17.57 6627 7.6260 206.75 202.09 19.02 6628 7.6270 223.82 202.10 19.82 6629 7.6280 200.64 202.10 18.72 6630 7.6290 180.57 202.11 17.82 6631 7.6300 169.10 202.11 17.22 6632 7.6310 183.92 202.12 17.89 6633 7.6320 198.97 202.13 18.59 6634 7.6330 183.51 202.13 17.86 6635 7.6340 205.78 202.14 18.99 6636 7.6350 190.69 202.14 18.25 6637 7.6360 187.36 202.15 18.05 6638 7.6370 175.10 202.15 17.48 6639 7.6380 186.49 202.16 18.11 6640 7.6390 194.23 202.17 18.43 6641 7.6400 163.21 202.17 16.84 6642 7.6410 180.29 202.18 17.72 6643 7.6420 181.65 202.18 17.77 6644 7.6430 192.80 202.19 18.30 6645 7.6440 201.29 202.20 18.76 6646 7.6450 198.49 202.20 18.53 6647 7.6460 215.25 202.21 19.42 6648 7.6470 196.28 202.21 18.61 6649 7.6480 185.05 202.22 18.03 6650 7.6490 203.27 202.23 18.81 6651 7.6500 225.06 202.23 19.83 6652 7.6510 211.03 202.24 19.12 6653 7.6520 191.29 202.24 18.23 6654 7.6530 214.21 202.25 19.31 6655 7.6540 225.25 202.26 19.83 6656 7.6550 224.12 202.26 19.76 6657 7.6560 162.67 202.27 16.83 6658 7.6570 203.21 202.27 18.72 6659 7.6580 207.26 202.28 18.99 6660 7.6590 209.71 202.28 19.12 6661 7.6600 224.20 202.29 19.81 6662 7.6610 192.31 202.29 18.28 6663 7.6620 221.72 202.30 19.67 6664 7.6630 227.15 202.31 19.99 6665 7.6640 226.52 202.31 19.99 6666 7.6650 199.02 202.32 18.60 6667 7.6660 213.19 202.32 19.31 6668 7.6670 212.90 202.33 19.28 6669 7.6680 200.60 202.34 18.69 6670 7.6690 209.96 202.34 19.16 6671 7.6700 232.70 202.35 20.23 6672 7.6710 242.15 202.35 20.63 6673 7.6720 223.26 202.36 19.81 6674 7.6730 187.22 202.37 18.11 6675 7.6740 166.92 202.37 17.07 6676 7.6750 216.12 202.38 19.45 6677 7.6760 230.24 202.38 20.07 6678 7.6770 201.01 202.39 18.77 6679 7.6780 191.14 202.39 18.29 6680 7.6790 197.72 202.40 18.64 6681 7.6800 179.35 202.41 17.73 6682 7.6810 216.44 202.41 19.47 6683 7.6820 207.35 202.42 18.98 6684 7.6830 212.93 202.42 19.25 6685 7.6840 219.70 202.43 19.57 6686 7.6850 200.32 202.43 18.72 6687 7.6860 197.27 202.44 18.61 6688 7.6870 220.46 202.45 19.68 6689 7.6880 209.67 202.45 19.15 6690 7.6890 193.70 202.46 18.40 6691 7.6900 210.78 202.46 19.14 6692 7.6910 214.65 202.47 19.28 6693 7.6920 223.89 202.48 19.76 6694 7.6930 205.15 202.48 18.95 6695 7.6940 188.60 202.49 18.15 6696 7.6950 196.73 202.49 18.60 6697 7.6960 206.45 202.50 19.02 6698 7.6970 210.75 202.50 19.12 6699 7.6980 189.45 202.51 18.18 6700 7.6990 221.96 202.51 19.75 6701 7.7000 209.12 202.52 19.05 6702 7.7010 210.23 202.53 19.23 6703 7.7020 215.64 202.53 19.34 6704 7.7030 200.46 202.54 18.65 6705 7.7040 234.55 202.54 20.27 6706 7.7050 197.21 202.55 18.53 6707 7.7060 197.38 202.56 18.55 6708 7.7070 221.03 202.56 19.65 6709 7.7080 236.49 202.57 20.37 6710 7.7090 260.64 202.57 21.35 6711 7.7100 217.89 202.58 19.47 6712 7.7110 239.93 202.58 20.52 6713 7.7120 218.10 202.59 19.52 6714 7.7130 194.79 202.60 18.38 6715 7.7140 239.95 202.60 20.42 6716 7.7150 241.56 202.61 20.48 6717 7.7160 246.50 202.61 20.77 6718 7.7170 196.67 202.62 18.49 6719 7.7180 205.22 202.62 18.98 6720 7.7190 220.17 202.63 19.59 6721 7.7200 239.44 202.64 20.46 6722 7.7210 238.91 202.64 20.47 6723 7.7220 242.64 202.65 20.58 6724 7.7230 225.17 202.65 19.85 6725 7.7240 211.22 202.66 19.23 6726 7.7250 245.54 202.66 20.74 6727 7.7260 249.10 202.67 20.87 6728 7.7270 214.33 202.68 19.37 6729 7.7280 212.95 202.68 19.24 6730 7.7290 242.69 202.69 20.60 6731 7.7300 266.61 202.69 21.61 6732 7.7310 270.78 202.70 21.79 6733 7.7320 257.07 202.70 21.24 6734 7.7330 265.63 202.71 21.51 6735 7.7340 273.58 202.72 21.88 6736 7.7350 244.52 202.72 20.66 6737 7.7360 289.86 202.73 22.53 6738 7.7370 285.42 202.73 22.28 6739 7.7380 287.67 202.74 22.36 6740 7.7390 311.29 202.74 23.19 6741 7.7400 323.44 202.75 23.75 6742 7.7410 314.97 202.76 23.40 6743 7.7420 348.04 202.76 24.64 6744 7.7430 352.97 202.77 24.87 6745 7.7440 320.72 202.77 23.63 6746 7.7450 326.65 202.78 23.92 6747 7.7460 381.19 202.78 25.88 6748 7.7470 366.09 202.79 25.31 6749 7.7480 371.15 202.79 25.41 6750 7.7490 373.68 202.80 25.54 6751 7.7500 415.03 202.81 27.00 6752 7.7510 416.66 202.81 27.08 6753 7.7520 455.85 202.82 28.21 6754 7.7530 464.22 202.82 28.46 6755 7.7540 436.87 202.83 27.63 6756 7.7550 472.61 202.84 28.77 6757 7.7560 530.05 202.84 30.45 6758 7.7570 502.07 202.85 29.64 6759 7.7580 517.68 202.85 30.06 6760 7.7590 562.78 202.86 31.38 6761 7.7600 553.17 202.86 31.10 6762 7.7610 581.30 202.87 31.92 6763 7.7620 622.29 202.87 33.03 6764 7.7630 627.36 202.88 33.21 6765 7.7640 625.76 202.89 33.00 6766 7.7650 642.85 202.89 33.53 6767 7.7660 678.45 202.90 34.48 6768 7.7670 611.98 202.90 32.69 6769 7.7680 640.57 202.91 33.45 6770 7.7690 645.16 202.91 33.59 6771 7.7700 716.55 202.92 35.38 6772 7.7710 711.55 202.93 35.33 6773 7.7720 685.49 202.93 34.66 6774 7.7730 692.53 202.94 34.71 6775 7.7740 678.77 202.94 34.50 6776 7.7750 681.21 202.95 34.51 6777 7.7760 690.49 202.95 34.83 6778 7.7770 673.76 202.96 34.35 6779 7.7780 694.19 202.96 34.91 6780 7.7790 673.99 202.97 34.30 6781 7.7800 696.41 202.98 34.87 6782 7.7810 656.01 202.98 33.85 6783 7.7820 605.05 202.99 32.55 6784 7.7830 620.50 202.99 32.91 6785 7.7840 575.01 203.00 31.65 6786 7.7850 592.49 203.00 32.27 6787 7.7860 613.24 203.01 32.65 6788 7.7870 600.49 203.01 32.38 6789 7.7880 579.25 203.02 31.79 6790 7.7890 565.73 203.03 31.46 6791 7.7900 508.62 203.03 29.82 6792 7.7910 495.75 203.04 29.48 6793 7.7920 460.60 203.04 28.39 6794 7.7930 441.33 203.05 27.82 6795 7.7940 453.18 203.05 28.15 6796 7.7950 444.97 203.06 27.90 6797 7.7960 422.21 203.07 27.23 6798 7.7970 372.52 203.07 25.54 6799 7.7980 411.40 203.08 26.85 6800 7.7990 376.81 203.08 25.71 6801 7.8000 377.94 203.09 25.73 6802 7.8010 379.27 203.09 25.77 6803 7.8020 362.67 203.10 25.15 6804 7.8030 390.81 203.10 26.23 6805 7.8040 390.62 203.11 26.18 6806 7.8050 371.40 203.12 25.56 6807 7.8060 333.71 203.12 24.18 6808 7.8070 336.77 203.13 24.24 6809 7.8080 383.92 203.13 25.94 6810 7.8090 324.27 203.14 23.78 6811 7.8100 307.96 203.14 23.21 6812 7.8110 344.28 203.15 24.46 6813 7.8120 304.06 203.15 22.96 6814 7.8130 291.79 203.16 22.54 6815 7.8140 310.52 203.16 23.36 6816 7.8150 267.53 203.17 21.68 6817 7.8160 301.54 203.18 22.97 6818 7.8170 327.05 203.18 23.91 6819 7.8180 305.32 203.19 23.17 6820 7.8190 291.11 203.19 22.54 6821 7.8200 287.68 203.20 22.47 6822 7.8210 309.30 203.20 23.31 6823 7.8220 286.90 203.21 22.35 6824 7.8230 287.42 203.21 22.43 6825 7.8240 298.55 203.22 22.77 6826 7.8250 272.09 203.23 21.82 6827 7.8260 304.66 203.23 23.10 6828 7.8270 300.10 203.24 23.01 6829 7.8280 306.14 203.24 23.18 6830 7.8290 307.41 203.25 23.24 6831 7.8300 292.00 203.25 22.67 6832 7.8310 285.58 203.26 22.36 6833 7.8320 272.61 203.26 21.86 6834 7.8330 291.10 203.27 22.53 6835 7.8340 305.95 203.28 23.11 6836 7.8350 286.43 203.28 22.36 6837 7.8360 294.31 203.29 22.73 6838 7.8370 294.79 203.29 22.65 6839 7.8380 287.18 203.30 22.42 6840 7.8390 311.93 203.30 23.36 6841 7.8400 321.98 203.31 23.79 6842 7.8410 317.63 203.31 23.60 6843 7.8420 296.49 203.32 22.81 6844 7.8430 281.64 203.32 22.25 6845 7.8440 272.04 203.33 21.79 6846 7.8450 288.11 203.34 22.44 6847 7.8460 268.96 203.34 21.72 6848 7.8470 292.19 203.35 22.60 6849 7.8480 289.27 203.35 22.43 6850 7.8490 271.22 203.36 21.78 6851 7.8500 268.19 203.36 21.68 6852 7.8510 305.11 203.37 23.20 6853 7.8520 283.29 203.38 22.31 6854 7.8530 261.18 203.38 21.38 6855 7.8540 251.81 203.39 21.02 6856 7.8550 245.27 203.39 20.66 6857 7.8560 259.07 203.40 21.29 6858 7.8570 262.23 203.40 21.44 6859 7.8580 266.16 203.41 21.60 6860 7.8590 275.97 203.41 21.97 6861 7.8600 265.57 203.42 21.50 6862 7.8610 276.71 203.42 21.96 6863 7.8620 286.41 203.43 22.33 6864 7.8630 276.07 203.43 22.00 6865 7.8640 267.13 203.44 21.57 6866 7.8650 259.86 203.45 21.35 6867 7.8660 272.23 203.45 21.77 6868 7.8670 281.27 203.46 22.20 6869 7.8680 291.43 203.46 22.57 6870 7.8690 311.08 203.47 23.32 6871 7.8700 379.06 203.47 25.77 6872 7.8710 324.59 203.48 23.80 6873 7.8720 304.50 203.48 23.03 6874 7.8730 272.18 203.49 21.78 6875 7.8740 259.86 203.49 21.34 6876 7.8750 275.05 203.50 21.88 6877 7.8760 250.34 203.51 20.97 6878 7.8770 281.52 203.51 22.18 6879 7.8780 324.47 203.52 23.86 6880 7.8790 271.34 203.52 21.85 6881 7.8800 314.52 203.53 23.48 6882 7.8810 306.82 203.53 23.17 6883 7.8820 313.15 203.54 23.40 6884 7.8830 348.40 203.54 24.68 6885 7.8840 349.13 203.55 24.70 6886 7.8850 337.64 203.55 24.30 6887 7.8860 345.53 203.56 24.56 6888 7.8870 335.98 203.57 24.29 6889 7.8880 387.26 203.57 26.05 6890 7.8890 407.28 203.58 26.73 6891 7.8900 399.18 203.58 26.37 6892 7.8910 358.24 203.59 25.05 6893 7.8920 399.38 203.59 26.40 6894 7.8930 476.41 203.60 28.90 6895 7.8940 441.12 203.60 27.73 6896 7.8950 423.62 203.61 27.17 6897 7.8960 449.04 203.61 28.03 6898 7.8970 430.76 203.62 27.43 6899 7.8980 429.64 203.62 27.44 6900 7.8990 432.24 203.63 27.41 6901 7.9000 414.92 203.64 26.92 6902 7.9010 410.20 203.64 26.73 6903 7.9020 439.49 203.65 27.74 6904 7.9030 420.49 203.65 27.13 6905 7.9040 427.42 203.66 27.42 6906 7.9050 394.08 203.66 26.27 6907 7.9060 338.82 203.67 24.28 6908 7.9070 360.05 203.67 25.13 6909 7.9080 341.61 203.68 24.48 6910 7.9090 328.29 203.68 23.93 6911 7.9100 311.90 203.69 23.30 6912 7.9110 321.71 203.70 23.70 6913 7.9120 303.78 203.70 23.06 6914 7.9130 302.50 203.71 23.03 6915 7.9140 283.54 203.71 22.28 6916 7.9150 291.12 203.72 22.48 6917 7.9160 311.09 203.72 23.35 6918 7.9170 295.09 203.73 22.69 6919 7.9180 325.88 203.73 23.90 6920 7.9190 285.83 203.74 22.35 6921 7.9200 253.41 203.74 21.06 6922 7.9210 258.37 203.75 21.28 6923 7.9220 265.66 203.75 21.55 6924 7.9230 262.97 203.76 21.42 6925 7.9240 290.58 203.76 22.57 6926 7.9250 235.57 203.77 20.27 6927 7.9260 262.93 203.78 21.44 6928 7.9270 239.65 203.78 20.38 6929 7.9280 223.72 203.79 19.71 6930 7.9290 244.91 203.79 20.70 6931 7.9300 220.13 203.80 19.61 6932 7.9310 232.07 203.80 20.15 6933 7.9320 216.37 203.81 19.39 6934 7.9330 211.31 203.81 19.20 6935 7.9340 238.87 203.82 20.51 6936 7.9350 240.47 203.82 20.53 6937 7.9360 242.94 203.83 20.68 6938 7.9370 228.36 203.83 19.98 6939 7.9380 231.35 203.84 20.15 6940 7.9390 224.80 203.85 19.82 6941 7.9400 247.10 203.85 20.76 6942 7.9410 251.40 203.86 20.91 6943 7.9420 225.85 203.86 19.80 6944 7.9430 201.22 203.87 18.68 6945 7.9440 234.65 203.87 20.17 6946 7.9450 206.36 203.88 18.92 6947 7.9460 217.21 203.88 19.48 6948 7.9470 205.71 203.89 18.97 6949 7.9480 229.67 203.89 20.02 6950 7.9490 211.77 203.90 19.20 6951 7.9500 242.13 203.90 20.62 6952 7.9510 217.89 203.91 19.52 6953 7.9520 230.29 203.91 20.07 6954 7.9530 221.06 203.92 19.61 6955 7.9540 232.74 203.93 20.13 6956 7.9550 236.22 203.93 20.38 6957 7.9560 219.98 203.93 19.54 6958 7.9570 242.36 203.94 20.54 6959 7.9580 235.03 203.95 20.31 6960 7.9590 235.62 203.95 20.28 6961 7.9600 228.43 203.96 19.97 6962 7.9610 214.20 203.96 19.31 6963 7.9620 228.97 203.97 19.92 6964 7.9630 250.87 203.97 20.97 6965 7.9640 215.42 203.98 19.33 6966 7.9650 221.16 203.98 19.68 6967 7.9660 244.84 203.99 20.70 6968 7.9670 276.55 203.99 22.08 6969 7.9680 213.80 204.00 19.31 6970 7.9690 262.26 204.00 21.48 6971 7.9700 236.98 204.01 20.39 6972 7.9710 214.16 204.01 19.35 6973 7.9720 263.94 204.02 21.55 6974 7.9730 267.61 204.02 21.62 6975 7.9740 255.16 204.03 21.12 6976 7.9750 242.34 204.04 20.62 6977 7.9760 266.65 204.04 21.62 6978 7.9770 277.61 204.05 22.03 6979 7.9780 275.54 204.05 21.96 6980 7.9790 302.33 204.06 22.95 6981 7.9800 314.01 204.06 23.40 6982 7.9810 274.17 204.07 21.80 6983 7.9820 293.62 204.07 22.71 6984 7.9830 304.52 204.08 23.05 6985 7.9840 324.31 204.08 23.78 6986 7.9850 302.12 204.09 23.03 6987 7.9860 269.33 204.09 21.66 6988 7.9870 299.42 204.10 22.92 6989 7.9880 329.17 204.10 24.03 6990 7.9890 334.36 204.11 24.23 6991 7.9900 319.61 204.11 23.62 6992 7.9910 331.21 204.12 24.05 6993 7.9920 337.02 204.12 24.29 6994 7.9930 317.00 309.07 23.50 6995 7.9940 309.24 310.49 23.25 6996 7.9950 333.89 311.94 24.18 6997 7.9960 351.77 313.41 24.83 6998 7.9970 316.34 314.92 23.42 6999 7.9980 320.11 316.46 23.63 7000 7.9990 338.01 318.04 24.25 7001 8.0000 337.91 319.64 21.94 7002 8.0010 306.85 321.28 20.86 7003 8.0020 310.09 322.95 21.01 7004 8.0030 295.94 324.66 20.58 7005 8.0040 304.82 326.41 20.84 7006 8.0050 325.81 328.19 21.48 7007 8.0060 334.64 330.02 21.81 7008 8.0070 316.96 331.88 21.30 7009 8.0080 298.85 333.79 20.65 7010 8.0090 324.63 335.73 21.48 7011 8.0100 317.92 337.73 21.25 7012 8.0110 287.34 339.76 20.15 7013 8.0120 323.04 341.85 21.44 7014 8.0130 293.56 343.98 20.37 7015 8.0140 310.47 346.16 20.98 7016 8.0150 264.02 348.39 19.31 7017 8.0160 317.39 350.68 21.22 7018 8.0170 287.63 353.02 20.20 7019 8.0180 310.55 355.42 21.02 7020 8.0190 328.60 357.87 21.64 7021 8.0200 283.70 360.39 20.08 7022 8.0210 289.13 362.97 20.24 7023 8.0220 298.86 365.61 20.56 7024 8.0230 283.35 368.31 20.04 7025 8.0240 304.40 371.09 20.83 7026 8.0250 305.56 373.93 20.79 7027 8.0260 330.14 376.85 21.65 7028 8.0270 316.63 379.85 21.23 7029 8.0280 315.39 382.92 21.21 7030 8.0290 302.50 386.08 20.73 7031 8.0300 271.43 389.31 19.57 7032 8.0310 289.80 392.64 20.27 7033 8.0320 272.54 396.05 19.57 7034 8.0330 291.58 399.56 20.29 7035 8.0340 319.11 403.17 21.26 7036 8.0350 303.10 406.87 20.70 7037 8.0360 336.94 410.68 21.96 7038 8.0370 332.68 414.60 21.69 7039 8.0380 347.41 418.63 22.21 7040 8.0390 316.76 422.78 21.15 7041 8.0400 328.64 427.05 21.63 7042 8.0410 330.30 431.44 21.68 7043 8.0420 326.59 435.96 21.55 7044 8.0430 344.45 440.63 22.22 7045 8.0440 338.38 445.43 21.92 7046 8.0450 347.66 450.38 22.23 7047 8.0460 340.02 455.48 21.93 7048 8.0470 352.40 460.75 22.42 7049 8.0480 369.17 466.17 22.89 7050 8.0490 368.80 471.78 22.91 7051 8.0500 375.31 477.57 23.05 7052 8.0510 399.75 483.53 23.82 7053 8.0520 384.90 489.71 23.31 7054 8.0530 396.01 496.09 23.71 7055 8.0540 439.25 502.68 24.96 7056 8.0550 440.66 509.50 25.07 7057 8.0560 471.59 516.55 25.92 7058 8.0570 408.07 523.86 24.06 7059 8.0580 427.87 531.41 24.66 7060 8.0590 441.19 539.25 25.01 7061 8.0600 450.12 547.37 25.31 7062 8.0610 425.61 555.77 24.57 7063 8.0620 474.44 564.50 26.02 7064 8.0630 477.97 573.55 26.08 7065 8.0640 475.68 582.95 26.00 7066 8.0650 560.58 592.70 28.28 7067 8.0660 538.71 602.85 27.62 7068 8.0670 503.03 613.40 26.74 7069 8.0680 556.67 624.35 28.12 7070 8.0690 588.05 635.77 28.94 7071 8.0700 583.19 647.65 28.83 7072 8.0710 548.97 660.02 27.96 7073 8.0720 596.18 672.92 29.10 7074 8.0730 588.63 686.38 28.96 7075 8.0740 585.86 700.42 28.85 7076 8.0750 707.36 715.07 31.76 7077 8.0760 602.82 730.40 29.23 7078 8.0770 621.09 746.40 29.71 7079 8.0780 649.17 763.17 30.38 7080 8.0790 688.50 780.72 31.29 7081 8.0800 764.78 799.09 33.02 7082 8.0810 733.00 818.36 32.31 7083 8.0820 702.99 838.57 31.64 7084 8.0830 751.44 859.81 32.67 7085 8.0840 754.36 882.09 32.69 7086 8.0850 746.68 905.57 32.61 7087 8.0860 810.62 930.28 34.01 7088 8.0870 821.46 956.27 34.21 7089 8.0880 833.82 983.73 34.37 7090 8.0890 840.61 1012.68 34.47 7091 8.0900 933.25 1043.29 36.50 7092 8.0910 891.73 1075.61 35.67 7093 8.0920 921.19 1109.89 36.24 7094 8.0930 1033.19 1146.22 38.32 7095 8.0940 989.32 1184.70 37.39 7096 8.0950 989.13 1225.65 37.46 7097 8.0960 1019.29 1269.16 38.10 7098 8.0970 1110.80 1315.49 39.69 7099 8.0980 1208.57 1364.90 41.40 7100 8.0990 1226.42 1417.69 41.72 7101 8.1000 1268.33 1474.15 42.46 7102 8.1010 1306.52 1534.51 43.07 7103 8.1020 1338.20 1599.35 43.61 7104 8.1030 1458.19 1668.95 45.47 7105 8.1040 1508.09 1743.84 46.31 7106 8.1050 1555.94 1824.58 46.92 7107 8.1060 1636.73 1911.85 48.14 7108 8.1070 1751.34 2006.21 49.80 7109 8.1080 1717.29 2108.52 49.29 7110 8.1090 1903.62 2219.79 51.98 7111 8.1100 2031.26 2340.77 53.73 7112 8.1110 2124.46 2473.07 54.87 7113 8.1120 2293.92 2617.86 57.01 7114 8.1130 2443.62 2776.48 58.81 7115 8.1140 2547.82 2951.31 60.12 7116 8.1150 2677.23 3144.10 61.46 7117 8.1160 2937.77 3357.71 64.55 7118 8.1170 3223.39 3594.58 67.63 7119 8.1180 3472.89 3859.03 70.16 7120 8.1190 3730.17 4154.93 72.66 7121 8.1200 4147.61 4486.72 76.62 7122 8.1210 4615.91 4861.63 80.86 7123 8.1220 4960.32 5286.11 83.86 7124 8.1230 5557.61 5769.46 88.72 7125 8.1240 6143.53 6322.75 93.35 7126 8.1250 6764.11 6960.26 97.94 7127 8.1260 7569.55 7698.64 103.51 7128 8.1270 8415.11 8557.72 109.25 7129 8.1280 9497.43 9567.29 115.98 7130 8.1290 10693.10 10758.70 123.08 7131 8.1300 12134.40 12174.90 131.05 7132 8.1310 13777.00 13868.70 139.67 7133 8.1320 15698.40 15906.90 148.98 7134 8.1330 18634.50 18365.00 162.44 7135 8.1340 21660.20 21336.50 175.01 7136 8.1350 25329.60 24925.90 189.36 7137 8.1360 29599.70 29219.50 204.64 7138 8.1370 34742.70 34292.10 221.59 7139 8.1380 41285.10 40094.00 241.79 7140 8.1390 48314.50 46398.90 261.54 7141 8.1400 54289.00 52644.20 277.73 7142 8.1410 59787.50 57918.70 291.60 7143 8.1420 62070.80 61119.60 297.49 7144 8.1430 60559.10 61410.30 293.79 7145 8.1440 56466.70 58709.60 283.90 7146 8.1450 51275.10 53736.00 270.56 7147 8.1460 45034.60 47598.10 253.51 7148 8.1470 38965.50 41250.00 235.95 7149 8.1480 33615.20 35328.80 219.06 7150 8.1490 29031.00 30111.20 203.72 7151 8.1500 24909.80 25675.70 188.53 7152 8.1510 21694.30 21959.60 176.02 7153 8.1520 18665.70 18878.20 163.12 7154 8.1530 16216.30 16333.60 152.14 7155 8.1540 14030.30 14222.60 141.47 7156 8.1550 12237.70 12469.90 132.09 7157 8.1560 10926.50 11006.00 124.77 7158 8.1570 9833.28 9775.95 118.32 7159 8.1580 8763.29 8734.90 111.76 7160 8.1590 8002.64 7849.44 106.86 7161 8.1600 7179.02 7090.62 101.17 7162 8.1610 6764.63 6435.62 98.18 7163 8.1620 6196.25 5868.24 93.95 7164 8.1630 5735.39 5372.23 90.42 7165 8.1640 5343.55 4937.45 87.18 7166 8.1650 5011.46 4553.80 84.47 7167 8.1660 4687.99 4214.27 81.73 7168 8.1670 4424.41 3912.22 79.39 7169 8.1680 4186.78 3642.22 77.17 7170 8.1690 3920.62 3400.57 74.72 7171 8.1700 3845.96 3182.77 74.04 7172 8.1710 3582.61 2986.32 71.44 7173 8.1720 3320.67 2808.42 68.72 7174 8.1730 3226.86 2646.70 67.83 7175 8.1740 3141.08 2499.53 66.92 7176 8.1750 2887.24 2365.01 64.16 7177 8.1760 2717.12 2242.06 62.29 7178 8.1770 2585.34 2129.02 60.69 7179 8.1780 2549.19 2025.04 60.25 7180 8.1790 2418.87 1929.35 58.64 7181 8.1800 2207.32 1840.80 56.01 7182 8.1810 2183.96 1758.91 55.75 7183 8.1820 2038.28 1682.98 53.87 7184 8.1830 1947.75 1612.43 52.73 7185 8.1840 1823.43 1546.73 51.03 7186 8.1850 1760.58 1485.49 50.11 7187 8.1860 1717.50 1428.42 49.55 7188 8.1870 1589.21 1374.97 47.59 7189 8.1880 1549.99 1324.97 46.90 7190 8.1890 1450.26 1278.09 45.43 7191 8.1900 1369.11 1234.08 44.17 7192 8.1910 1332.28 1192.67 43.61 7193 8.1920 1296.27 1153.73 42.98 7194 8.1930 1205.54 1117.04 41.43 7195 8.1940 1135.10 1082.40 40.22 7196 8.1950 1075.96 1049.75 39.09 7197 8.1960 1077.40 1018.82 39.23 7198 8.1970 994.56 989.58 37.69 7199 8.1980 1014.23 961.86 38.03 7200 8.1990 951.22 935.60 36.75 7201 8.2000 898.32 910.68 35.76 7202 8.2010 861.26 886.99 35.04 7203 8.2020 798.89 864.50 33.79 7204 8.2030 815.02 843.08 34.12 7205 8.2040 776.74 822.67 33.26 7206 8.2050 723.37 803.26 32.00 7207 8.2060 674.64 784.72 30.96 7208 8.2070 703.71 767.04 31.61 7209 8.2080 717.44 750.14 31.96 7210 8.2090 662.48 734.01 30.71 7211 8.2100 668.30 718.57 30.90 7212 8.2110 642.77 703.79 30.29 7213 8.2120 603.81 689.66 29.35 7214 8.2130 561.23 676.10 28.33 7215 8.2140 514.00 663.11 26.97 7216 8.2150 519.93 650.65 27.12 7217 8.2160 559.96 638.69 28.22 7218 8.2170 549.71 627.20 27.93 7219 8.2180 563.31 616.16 28.31 7220 8.2190 501.73 605.55 26.73 7221 8.2200 454.25 595.34 25.38 7222 8.2210 446.54 585.53 25.21 7223 8.2220 433.06 576.08 24.78 7224 8.2230 442.70 566.97 25.07 7225 8.2240 452.00 558.19 25.32 7226 8.2250 458.77 549.73 25.53 7227 8.2260 418.97 541.58 24.38 7228 8.2270 398.25 533.70 23.78 7229 8.2280 384.81 526.11 23.35 7230 8.2290 447.08 518.76 25.28 7231 8.2300 365.79 511.67 22.73 7232 8.2310 354.23 504.82 22.39 7233 8.2320 347.81 498.19 22.21 7234 8.2330 357.04 491.79 22.49 7235 8.2340 349.71 485.58 22.24 7236 8.2350 358.78 479.59 22.55 7237 8.2360 337.10 473.78 21.89 7238 8.2370 327.24 468.15 21.54 7239 8.2380 325.96 462.70 21.57 7240 8.2390 324.52 457.41 21.42 7241 8.2400 311.34 452.29 21.02 7242 8.2410 316.29 447.32 21.11 7243 8.2420 304.40 442.51 20.78 7244 8.2430 298.26 437.83 20.55 7245 8.2440 338.61 433.28 21.85 7246 8.2450 308.94 428.88 20.88 7247 8.2460 270.40 424.60 19.59 7248 8.2470 276.53 420.44 19.82 7249 8.2480 279.05 416.40 19.92 7250 8.2490 307.29 412.47 20.93 7251 8.2500 341.28 408.65 22.07 7252 8.2510 290.98 404.93 20.20 7253 8.2520 264.97 401.32 19.27 7254 8.2530 268.81 397.80 19.49 7255 8.2540 267.17 394.38 19.38 7256 8.2550 300.88 391.05 20.67 7257 8.2560 278.58 387.80 19.92 7258 8.2570 267.70 384.64 19.56 7259 8.2580 258.26 381.57 19.15 7260 8.2590 252.67 378.57 18.92 7261 8.2600 248.60 375.64 18.83 7262 8.2610 234.58 372.80 18.18 7263 8.2620 252.41 370.01 18.91 7264 8.2630 236.27 367.30 18.29 7265 8.2640 275.65 364.66 19.79 7266 8.2650 246.79 362.08 18.64 7267 8.2660 245.42 359.57 18.57 7268 8.2670 256.46 357.11 19.03 7269 8.2680 231.92 354.71 18.06 7270 8.2690 264.67 352.37 19.44 7271 8.2700 255.43 350.08 19.04 7272 8.2710 235.87 347.85 18.30 7273 8.2720 255.12 345.67 18.97 7274 8.2730 260.26 343.54 19.18 7275 8.2740 236.99 341.46 18.27 7276 8.2750 222.52 339.42 17.73 7277 8.2760 234.89 337.43 18.18 7278 8.2770 229.36 335.48 17.97 7279 8.2780 225.13 333.58 17.83 7280 8.2790 255.97 331.72 19.16 7281 8.2800 248.02 329.90 18.83 7282 8.2810 246.89 328.11 18.80 7283 8.2820 222.33 326.37 17.65 7284 8.2830 232.69 324.67 18.14 7285 8.2840 232.22 322.99 18.15 7286 8.2850 242.43 321.36 18.55 7287 8.2860 255.30 319.76 19.02 7288 8.2870 217.94 318.19 17.47 7289 8.2880 226.99 316.65 17.91 7290 8.2890 215.23 315.15 17.48 7291 8.2900 212.09 313.68 17.43 7292 8.2910 208.91 312.23 17.27 7293 8.2920 223.71 310.82 17.79 7294 8.2930 232.22 205.62 18.20 7295 8.2940 240.48 205.62 18.54 7296 8.2950 225.79 205.63 17.97 7297 8.2960 205.67 205.63 17.12 7298 8.2970 211.05 205.64 17.27 7299 8.2980 212.18 205.64 17.28 7300 8.2990 213.70 205.65 17.36 7301 8.3000 199.48 205.65 16.83 7302 8.3010 207.14 205.66 17.18 7303 8.3020 219.66 205.66 17.70 7304 8.3030 195.26 205.67 16.65 7305 8.3040 205.60 205.67 17.07 7306 8.3050 233.52 205.68 18.27 7307 8.3060 205.64 205.68 17.06 7308 8.3070 214.19 205.69 17.39 7309 8.3080 213.56 205.69 17.43 7310 8.3090 204.28 205.70 17.02 7311 8.3100 192.19 205.70 16.45 7312 8.3110 223.90 205.71 17.85 7313 8.3120 210.49 205.71 17.31 7314 8.3130 214.47 205.71 17.47 7315 8.3140 202.99 205.72 16.89 7316 8.3150 204.06 205.72 17.01 7317 8.3160 199.50 205.73 16.83 7318 8.3170 199.73 205.73 16.81 7319 8.3180 201.64 205.74 16.96 7320 8.3190 205.73 205.74 17.14 7321 8.3200 187.93 205.75 16.24 7322 8.3210 205.47 205.75 17.04 7323 8.3220 207.43 205.76 17.20 7324 8.3230 218.50 205.76 17.66 7325 8.3240 175.84 205.76 15.84 7326 8.3250 170.13 205.77 15.50 7327 8.3260 180.37 205.77 15.98 7328 8.3270 207.21 205.78 17.08 7329 8.3280 214.06 205.78 17.37 7330 8.3290 177.08 205.79 15.83 7331 8.3300 181.77 205.79 16.06 7332 8.3310 196.61 205.80 16.73 7333 8.3320 204.93 205.80 17.01 7334 8.3330 205.67 205.81 17.08 7335 8.3340 196.97 205.81 16.70 7336 8.3350 200.46 205.82 16.86 7337 8.3360 174.19 205.82 15.62 7338 8.3370 175.15 205.83 15.74 7339 8.3380 182.76 205.83 16.07 7340 8.3390 185.52 205.84 16.21 7341 8.3400 179.48 205.84 15.97 7342 8.3410 174.88 205.84 15.75 7343 8.3420 182.24 205.85 16.09 7344 8.3430 194.51 205.85 16.69 7345 8.3440 172.39 205.86 15.56 7346 8.3450 179.57 205.86 15.94 7347 8.3460 192.18 205.87 16.49 7348 8.3470 170.92 205.87 15.57 7349 8.3480 184.90 205.88 16.19 7350 8.3490 196.93 205.88 16.71 7351 8.3500 178.16 205.89 15.82 7352 8.3510 197.16 205.89 16.72 7353 8.3520 179.00 205.90 15.86 7354 8.3530 185.09 205.90 16.16 7355 8.3540 165.88 205.90 15.30 7356 8.3550 156.49 205.91 14.87 7357 8.3560 182.23 205.91 16.08 7358 8.3570 186.14 205.92 16.28 7359 8.3580 187.26 205.92 16.32 7360 8.3590 181.74 205.93 15.97 7361 8.3600 164.71 205.93 15.26 7362 8.3610 169.31 205.94 15.52 7363 8.3620 194.47 205.94 16.62 7364 8.3630 163.89 205.95 15.25 7365 8.3640 174.46 205.95 15.77 7366 8.3650 182.92 205.95 16.09 7367 8.3660 179.67 205.96 15.90 7368 8.3670 171.06 205.96 15.62 7369 8.3680 187.16 205.97 16.32 7370 8.3690 180.27 205.97 16.02 7371 8.3700 170.60 205.98 15.57 7372 8.3710 177.06 205.98 15.82 7373 8.3720 188.29 205.99 16.35 7374 8.3730 181.42 205.99 16.00 7375 8.3740 169.25 206.00 15.54 7376 8.3750 191.86 206.00 16.47 7377 8.3760 206.84 206.01 17.18 7378 8.3770 170.86 206.01 15.60 7379 8.3780 156.98 206.01 14.90 7380 8.3790 161.95 206.02 15.11 7381 8.3800 179.49 206.02 15.99 7382 8.3810 191.01 206.03 16.41 7383 8.3820 198.16 206.03 16.80 7384 8.3830 196.10 206.04 16.73 7385 8.3840 177.68 206.04 15.90 7386 8.3850 174.96 206.05 15.76 7387 8.3860 186.37 206.05 16.29 7388 8.3870 179.94 206.05 16.05 7389 8.3880 190.98 206.06 16.52 7390 8.3890 193.59 206.06 16.50 7391 8.3900 202.10 206.07 16.91 7392 8.3910 186.75 206.07 16.26 7393 8.3920 192.88 206.08 16.54 7394 8.3930 179.73 206.08 15.99 7395 8.3940 180.75 206.09 16.04 7396 8.3950 193.16 206.09 16.60 7397 8.3960 187.22 206.10 16.31 7398 8.3970 180.17 206.10 16.01 7399 8.3980 184.92 206.10 16.18 7400 8.3990 197.46 206.11 16.77 7401 8.4000 197.89 206.11 16.77 7402 8.4010 212.44 206.12 17.40 7403 8.4020 178.67 206.12 15.87 7404 8.4030 208.26 206.13 17.15 7405 8.4040 223.39 206.13 17.80 7406 8.4050 228.66 206.14 18.05 7407 8.4060 201.70 206.14 16.87 7408 8.4070 200.74 206.15 16.74 7409 8.4080 186.21 206.15 16.29 7410 8.4090 213.69 206.15 17.46 7411 8.4100 184.86 206.16 16.16 7412 8.4110 179.36 206.16 15.93 7413 8.4120 216.22 206.17 17.50 7414 8.4130 187.09 206.17 16.26 7415 8.4140 182.40 206.18 16.07 7416 8.4150 205.00 206.18 17.04 7417 8.4160 212.22 206.19 17.30 7418 8.4170 204.86 206.19 16.97 7419 8.4180 220.11 206.20 17.64 7420 8.4190 204.91 206.20 17.03 7421 8.4200 214.43 206.20 17.51 7422 8.4210 224.19 206.21 17.86 7423 8.4220 208.52 206.21 17.20 7424 8.4230 219.37 206.22 17.68 7425 8.4240 218.36 206.22 17.62 7426 8.4250 198.98 206.23 16.75 7427 8.4260 215.31 206.23 17.52 7428 8.4270 201.31 206.24 16.95 7429 8.4280 199.30 206.24 16.87 7430 8.4290 207.90 206.24 17.21 7431 8.4300 202.62 206.25 16.97 7432 8.4310 202.95 206.25 16.97 7433 8.4320 201.59 206.26 16.89 7434 8.4330 193.56 206.26 16.59 7435 8.4340 203.75 206.27 16.95 7436 8.4350 205.06 206.27 17.02 7437 8.4360 206.76 206.27 17.12 7438 8.4370 191.15 206.28 16.40 7439 8.4380 210.40 206.28 17.34 7440 8.4390 197.54 206.29 16.73 7441 8.4400 213.10 206.29 17.41 7442 8.4410 203.76 206.30 16.99 7443 8.4420 198.48 206.30 16.78 7444 8.4430 212.59 206.31 17.30 7445 8.4440 203.21 206.31 16.90 7446 8.4450 190.58 206.32 16.40 7447 8.4460 188.73 206.32 16.42 7448 8.4470 204.79 206.32 17.02 7449 8.4480 210.05 206.33 17.23 7450 8.4490 212.88 206.33 17.28 7451 8.4500 232.43 206.34 18.16 7452 8.4510 195.86 206.34 16.67 7453 8.4520 189.33 206.35 16.42 7454 8.4530 207.74 206.35 17.22 7455 8.4540 213.43 206.35 17.35 7456 8.4550 224.21 206.36 17.81 7457 8.4560 246.25 206.36 18.75 7458 8.4570 219.80 206.37 17.75 7459 8.4580 215.15 206.37 17.39 7460 8.4590 208.38 206.38 17.14 7461 8.4600 227.04 206.38 17.88 7462 8.4610 238.44 206.39 18.42 7463 8.4620 209.57 206.39 17.26 7464 8.4630 214.84 206.40 17.48 7465 8.4640 193.99 206.40 16.55 7466 8.4650 229.08 206.40 18.13 7467 8.4660 201.70 206.41 16.92 7468 8.4670 221.92 206.41 17.84 7469 8.4680 194.91 206.42 16.57 7470 8.4690 189.90 206.42 16.39 7471 8.4700 196.33 206.43 16.71 7472 8.4710 183.81 206.43 16.15 7473 8.4720 195.72 206.43 16.58 7474 8.4730 217.06 206.44 17.54 7475 8.4740 218.85 206.44 17.65 7476 8.4750 203.12 206.45 16.92 7477 8.4760 185.33 206.45 16.17 7478 8.4770 176.30 206.46 15.77 7479 8.4780 212.49 206.46 17.43 7480 8.4790 202.61 206.46 16.93 7481 8.4800 217.00 206.47 17.59 7482 8.4810 186.27 206.47 16.24 7483 8.4820 191.54 206.48 16.51 7484 8.4830 206.66 206.48 17.09 7485 8.4840 208.64 206.49 17.20 7486 8.4850 180.27 206.49 15.93 7487 8.4860 200.59 206.50 16.92 7488 8.4870 169.25 206.50 15.47 7489 8.4880 200.29 206.51 16.85 7490 8.4890 179.71 206.51 15.89 7491 8.4900 207.47 206.51 17.14 7492 8.4910 217.02 206.52 17.48 7493 8.4920 206.05 206.52 17.08 7494 8.4930 207.37 206.53 17.23 7495 8.4940 208.48 206.53 17.18 7496 8.4950 183.30 206.54 16.10 7497 8.4960 198.81 206.54 16.82 7498 8.4970 204.69 206.54 17.03 7499 8.4980 217.42 206.55 17.53 7500 8.4990 188.13 206.55 16.33 7501 8.5000 177.71 206.56 15.86 7502 8.5010 197.86 206.56 16.74 7503 8.5020 190.96 206.57 16.38 7504 8.5030 218.28 206.57 17.55 7505 8.5040 206.89 206.57 17.12 7506 8.5050 186.08 206.58 16.22 7507 8.5060 196.60 206.58 16.74 7508 8.5070 209.55 206.59 17.31 7509 8.5080 182.88 206.59 16.18 7510 8.5090 207.71 206.60 17.26 7511 8.5100 192.66 206.60 16.55 7512 8.5110 166.76 206.60 15.30 7513 8.5120 192.82 206.61 16.40 7514 8.5130 172.11 206.61 15.51 7515 8.5140 190.29 206.62 16.43 7516 8.5150 194.31 206.62 16.64 7517 8.5160 187.30 206.63 16.27 7518 8.5170 187.62 206.63 16.27 7519 8.5180 163.24 206.63 15.16 7520 8.5190 194.46 206.64 16.65 7521 8.5200 193.54 206.64 16.59 7522 8.5210 168.11 206.65 15.43 7523 8.5220 174.57 206.65 15.74 7524 8.5230 156.89 206.66 14.87 7525 8.5240 163.08 206.66 15.07 7526 8.5250 191.49 206.66 16.44 7527 8.5260 166.69 206.67 15.29 7528 8.5270 176.87 206.67 15.84 7529 8.5280 182.14 206.68 16.02 7530 8.5290 190.05 206.68 16.41 7531 8.5300 164.06 206.69 15.25 7532 8.5310 164.73 206.69 15.31 7533 8.5320 164.18 206.70 15.28 7534 8.5330 175.64 206.70 15.77 7535 8.5340 143.23 206.70 14.22 7536 8.5350 155.35 206.71 14.84 7537 8.5360 159.86 206.71 15.13 7538 8.5370 152.45 206.72 14.66 7539 8.5380 180.15 206.72 15.95 7540 8.5390 167.71 206.73 15.35 7541 8.5400 145.09 206.73 14.31 7542 8.5410 172.88 206.73 15.67 7543 8.5420 172.60 206.74 15.65 7544 8.5430 170.67 206.74 15.61 7545 8.5440 171.97 206.75 15.61 7546 8.5450 144.23 206.75 14.30 7547 8.5460 146.89 206.76 14.45 7548 8.5470 149.20 206.76 14.55 7549 8.5480 167.20 206.76 15.46 7550 8.5490 158.43 206.77 14.97 7551 8.5500 168.28 206.77 15.50 7552 8.5510 162.14 206.78 15.16 7553 8.5520 180.69 206.78 16.09 7554 8.5530 170.25 206.79 15.66 7555 8.5540 151.29 206.79 14.60 7556 8.5550 167.50 206.79 15.37 7557 8.5560 139.81 206.80 13.95 7558 8.5570 182.83 206.80 16.15 7559 8.5580 166.81 206.81 15.38 7560 8.5590 159.63 206.81 15.03 7561 8.5600 181.03 206.82 15.93 7562 8.5610 186.96 206.82 16.24 7563 8.5620 157.99 206.82 14.98 7564 8.5630 169.14 206.83 15.47 7565 8.5640 153.97 206.83 14.75 7566 8.5650 164.37 206.84 15.28 7567 8.5660 170.85 206.84 15.60 7568 8.5670 165.86 206.84 15.29 7569 8.5680 170.14 206.85 15.56 7570 8.5690 169.97 206.85 15.54 7571 8.5700 158.24 206.86 15.02 7572 8.5710 152.08 206.86 14.75 7573 8.5720 147.22 206.87 14.34 7574 8.5730 173.22 206.87 15.65 7575 8.5740 142.09 206.87 14.14 7576 8.5750 163.14 206.88 15.11 7577 8.5760 152.89 206.88 14.55 7578 8.5770 175.52 206.89 15.77 7579 8.5780 168.76 206.89 15.51 7580 8.5790 160.15 206.90 15.09 7581 8.5800 166.09 206.90 15.38 7582 8.5810 144.52 206.90 14.36 7583 8.5820 148.04 206.91 14.51 7584 8.5830 162.67 206.91 15.17 7585 8.5840 162.99 206.92 15.18 7586 8.5850 166.23 206.92 15.38 7587 8.5860 181.23 206.92 16.07 7588 8.5870 158.85 206.93 15.00 7589 8.5880 155.51 206.93 14.87 7590 8.5890 179.26 206.94 15.95 7591 8.5900 190.90 206.94 16.50 7592 8.5910 170.20 206.95 15.47 7593 8.5920 171.79 206.95 15.62 7594 8.5930 152.75 206.95 14.81 7595 8.5940 144.87 206.96 14.33 7596 8.5950 144.00 206.96 14.30 7597 8.5960 166.67 206.97 15.30 7598 8.5970 182.06 206.97 16.12 7599 8.5980 182.06 206.98 16.03 7600 8.5990 185.12 206.98 16.21 7601 8.6000 187.44 206.98 16.30 7602 8.6010 177.82 206.99 15.79 7603 8.6020 174.38 206.99 15.64 7604 8.6030 180.41 207.00 15.97 7605 8.6040 190.29 207.00 16.45 7606 8.6050 169.71 207.00 15.48 7607 8.6060 162.66 207.01 15.22 7608 8.6070 166.46 207.01 15.37 7609 8.6080 179.15 207.02 15.97 7610 8.6090 186.33 207.02 16.27 7611 8.6100 198.87 207.02 16.79 7612 8.6110 175.26 207.03 15.75 7613 8.6120 179.17 207.03 16.02 7614 8.6130 180.96 207.04 15.95 7615 8.6140 187.36 207.04 16.22 7616 8.6150 186.53 207.04 16.19 7617 8.6160 218.24 207.05 17.64 7618 8.6170 202.45 207.05 16.98 7619 8.6180 181.54 207.06 16.06 7620 8.6190 202.24 207.06 16.95 7621 8.6200 213.45 207.07 17.36 7622 8.6210 207.61 207.07 17.16 7623 8.6220 201.15 207.07 16.94 7624 8.6230 197.57 207.08 16.77 7625 8.6240 172.84 207.08 15.70 7626 8.6250 181.15 207.09 15.97 7627 8.6260 191.83 207.09 16.53 7628 8.6270 179.01 207.10 15.86 7629 8.6280 155.84 207.10 14.85 7630 8.6290 191.31 207.10 16.37 7631 8.6300 204.65 207.11 17.09 7632 8.6310 211.57 207.11 17.37 7633 8.6320 211.55 207.12 17.29 7634 8.6330 159.48 207.12 14.87 7635 8.6340 199.32 207.12 16.86 7636 8.6350 189.69 207.13 16.44 7637 8.6360 204.17 207.13 16.92 7638 8.6370 195.73 207.14 16.62 7639 8.6380 183.76 207.14 16.10 7640 8.6390 188.03 207.15 16.27 7641 8.6400 153.51 207.15 14.66 7642 8.6410 167.09 207.15 15.38 7643 8.6420 163.25 207.16 15.24 7644 8.6430 165.66 207.16 15.38 7645 8.6440 188.29 207.16 16.46 7646 8.6450 172.11 207.17 15.56 7647 8.6460 179.47 207.17 15.97 7648 8.6470 148.12 207.18 14.46 7649 8.6480 168.17 207.18 15.44 7650 8.6490 161.89 207.19 15.16 7651 8.6500 157.83 207.19 14.88 7652 8.6510 152.19 207.19 14.62 7653 8.6520 175.71 207.20 15.80 7654 8.6530 162.93 207.20 15.22 7655 8.6540 165.38 207.21 15.26 7656 8.6550 160.87 207.21 15.13 7657 8.6560 164.85 207.21 15.33 7658 8.6570 168.11 207.22 15.49 7659 8.6580 168.45 207.22 15.46 7660 8.6590 168.47 207.23 15.49 7661 8.6600 188.04 207.23 16.33 7662 8.6610 185.61 207.24 16.19 7663 8.6620 167.11 207.24 15.38 7664 8.6630 165.75 207.24 15.37 7665 8.6640 161.25 207.25 15.11 7666 8.6650 165.32 207.25 15.26 7667 8.6660 180.78 207.26 16.05 7668 8.6670 164.90 207.26 15.26 7669 8.6680 173.86 207.26 15.72 7670 8.6690 159.15 207.27 15.03 7671 8.6700 151.73 207.27 14.72 7672 8.6710 161.18 207.27 15.13 7673 8.6720 181.86 207.28 16.01 7674 8.6730 173.77 207.28 15.62 7675 8.6740 169.31 207.29 15.50 7676 8.6750 176.17 207.29 15.80 7677 8.6760 155.51 207.30 14.83 7678 8.6770 165.01 207.30 15.29 7679 8.6780 150.42 207.30 14.56 7680 8.6790 163.20 207.31 15.14 7681 8.6800 159.64 207.31 14.95 7682 8.6810 158.80 207.32 15.00 7683 8.6820 161.81 207.32 15.17 7684 8.6830 174.84 207.32 15.77 7685 8.6840 165.46 207.33 15.28 7686 8.6850 158.51 207.33 14.96 7687 8.6860 166.88 207.34 15.36 7688 8.6870 150.46 207.34 14.58 7689 8.6880 172.99 207.34 15.63 7690 8.6890 155.32 207.35 14.81 7691 8.6900 142.23 207.35 14.20 7692 8.6910 181.12 207.36 16.04 7693 8.6920 175.12 207.36 15.75 7694 8.6930 152.43 207.36 14.68 7695 8.6940 141.72 207.37 14.19 7696 8.6950 166.68 207.37 15.38 7697 8.6960 161.48 207.38 15.15 7698 8.6970 166.19 207.38 15.41 7699 8.6980 163.11 207.38 15.21 7700 8.6990 149.99 207.39 14.58 7701 8.7000 130.58 207.39 13.60 7702 8.7010 155.89 207.40 14.88 7703 8.7020 151.43 207.40 14.74 7704 8.7030 140.22 207.40 14.02 7705 8.7040 185.16 207.41 16.24 7706 8.7050 171.05 207.41 15.53 7707 8.7060 152.72 207.42 14.67 7708 8.7070 163.59 207.42 15.23 7709 8.7080 167.84 207.42 15.48 7710 8.7090 145.29 207.43 14.32 7711 8.7100 145.20 207.43 14.33 7712 8.7110 154.35 207.44 14.73 7713 8.7120 131.69 207.44 13.62 7714 8.7130 131.45 207.44 13.61 7715 8.7140 163.71 207.45 15.23 7716 8.7150 160.74 207.45 15.10 7717 8.7160 132.37 207.46 13.75 7718 8.7170 127.98 207.46 13.44 7719 8.7180 142.26 207.46 14.21 7720 8.7190 155.35 207.47 14.91 7721 8.7200 153.09 207.47 14.79 7722 8.7210 149.55 207.48 14.50 7723 8.7220 180.04 207.48 15.98 7724 8.7230 183.63 207.48 16.15 7725 8.7240 145.03 207.49 14.32 7726 8.7250 140.96 207.49 14.11 7727 8.7260 159.73 207.50 15.06 7728 8.7270 163.94 207.50 15.29 7729 8.7280 141.57 207.50 14.20 7730 8.7290 140.78 207.51 14.18 7731 8.7300 156.96 207.51 14.92 7732 8.7310 149.87 207.52 14.60 7733 8.7320 133.92 207.52 13.80 7734 8.7330 139.85 207.52 14.05 7735 8.7340 148.97 207.53 14.53 7736 8.7350 158.03 207.53 14.98 7737 8.7360 162.37 207.54 15.15 7738 8.7370 168.38 207.54 15.48 7739 8.7380 158.55 207.54 14.96 7740 8.7390 158.97 207.55 15.02 7741 8.7400 172.44 207.55 15.66 7742 8.7410 149.29 207.55 14.50 7743 8.7420 146.93 207.56 14.48 7744 8.7430 124.75 207.56 13.25 7745 8.7440 136.10 207.57 13.78 7746 8.7450 148.10 207.57 14.46 7747 8.7460 169.73 207.57 15.55 7748 8.7470 149.80 207.58 14.62 7749 8.7480 133.16 207.58 13.65 7750 8.7490 147.54 207.59 14.43 7751 8.7500 136.65 207.59 13.86 7752 8.7510 154.98 207.60 14.79 7753 8.7520 152.76 207.60 14.64 7754 8.7530 174.77 207.60 15.76 7755 8.7540 176.32 207.61 15.83 7756 8.7550 163.62 207.61 15.27 7757 8.7560 137.04 207.61 13.91 7758 8.7570 135.17 207.62 13.78 7759 8.7580 133.27 207.62 13.76 7760 8.7590 130.68 207.63 13.62 7761 8.7600 143.32 207.63 14.24 7762 8.7610 129.87 207.63 13.56 7763 8.7620 140.49 207.64 14.10 7764 8.7630 141.50 207.64 14.11 7765 8.7640 137.46 207.65 13.96 7766 8.7650 129.65 207.65 13.56 7767 8.7660 151.92 207.65 14.64 7768 8.7670 157.49 207.66 14.97 7769 8.7680 154.10 207.66 14.80 7770 8.7690 147.12 207.66 14.36 7771 8.7700 149.29 207.67 14.57 7772 8.7710 143.61 207.67 14.26 7773 8.7720 133.06 207.68 13.74 7774 8.7730 121.58 207.68 13.05 7775 8.7740 143.36 207.68 14.22 7776 8.7750 115.70 207.69 12.80 7777 8.7760 164.64 207.69 15.27 7778 8.7770 164.92 207.70 15.24 7779 8.7780 157.45 207.70 14.93 7780 8.7790 147.79 207.70 14.47 7781 8.7800 139.10 207.71 14.09 7782 8.7810 145.06 207.71 14.34 7783 8.7820 148.64 207.71 14.49 7784 8.7830 146.44 207.72 14.35 7785 8.7840 137.80 207.72 13.89 7786 8.7850 130.34 207.73 13.59 7787 8.7860 138.33 207.73 14.09 7788 8.7870 122.44 207.74 13.12 7789 8.7880 144.66 207.74 14.35 7790 8.7890 149.67 207.74 14.56 7791 8.7900 158.51 207.75 14.95 7792 8.7910 161.29 207.75 15.14 7793 8.7920 145.25 207.75 14.36 7794 8.7930 145.85 207.76 14.36 7795 8.7940 148.66 207.76 14.53 7796 8.7950 138.35 207.77 13.94 7797 8.7960 144.32 207.77 14.26 7798 8.7970 160.23 207.77 14.98 7799 8.7980 154.45 207.78 14.70 7800 8.7990 181.67 207.78 16.05 7801 8.8000 181.64 207.79 16.07 7802 8.8010 157.87 207.79 14.97 7803 8.8020 148.38 207.79 14.47 7804 8.8030 151.61 207.80 14.59 7805 8.8040 163.20 207.80 15.20 7806 8.8050 157.20 207.80 14.95 7807 8.8060 151.80 207.81 14.65 7808 8.8070 162.08 207.81 15.13 7809 8.8080 163.70 207.82 15.21 7810 8.8090 152.16 207.82 14.67 7811 8.8100 156.58 207.82 14.95 7812 8.8110 154.47 207.83 14.81 7813 8.8120 144.37 207.83 14.26 7814 8.8130 159.54 207.84 15.07 7815 8.8140 143.42 207.84 14.29 7816 8.8150 146.53 207.84 14.54 7817 8.8160 151.73 207.85 14.76 7818 8.8170 131.31 207.85 13.68 7819 8.8180 123.38 207.85 13.18 7820 8.8190 154.42 207.86 14.86 7821 8.8200 127.19 207.86 13.48 7822 8.8210 140.64 207.87 14.14 7823 8.8220 139.80 207.87 14.08 7824 8.8230 151.32 207.87 14.61 7825 8.8240 175.15 207.88 15.67 7826 8.8250 198.35 207.88 16.79 7827 8.8260 170.60 207.88 15.58 7828 8.8270 151.93 207.89 14.65 7829 8.8280 146.71 207.89 14.42 7830 8.8290 137.52 207.90 13.95 7831 8.8300 124.18 207.90 13.22 7832 8.8310 145.95 207.90 14.31 7833 8.8320 165.49 207.91 15.26 7834 8.8330 142.92 207.91 14.13 7835 8.8340 156.30 207.91 14.87 7836 8.8350 154.89 207.92 14.83 7837 8.8360 157.00 207.92 14.97 7838 8.8370 147.31 207.93 14.41 7839 8.8380 155.30 207.93 14.79 7840 8.8390 131.86 207.93 13.56 7841 8.8400 159.86 207.94 15.01 7842 8.8410 168.19 207.94 15.40 7843 8.8420 143.84 207.95 14.23 7844 8.8430 148.75 207.95 14.47 7845 8.8440 156.85 207.95 14.87 7846 8.8450 145.36 207.96 14.37 7847 8.8460 145.82 207.96 14.38 7848 8.8470 154.81 207.96 14.79 7849 8.8480 184.22 207.97 16.20 7850 8.8490 176.81 207.97 15.76 7851 8.8500 137.81 207.98 13.87 7852 8.8510 157.80 207.98 14.95 7853 8.8520 154.83 207.98 14.88 7854 8.8530 158.08 207.99 14.93 7855 8.8540 152.17 207.99 14.70 7856 8.8550 158.25 207.99 14.95 7857 8.8560 158.04 208.00 15.00 7858 8.8570 153.10 208.00 14.74 7859 8.8580 183.18 208.01 16.14 7860 8.8590 158.59 208.01 15.02 7861 8.8600 152.86 208.01 14.65 7862 8.8610 145.27 208.02 14.36 7863 8.8620 152.99 208.02 14.77 7864 8.8630 179.89 208.02 16.01 7865 8.8640 165.53 208.03 15.24 7866 8.8650 156.44 208.03 14.86 7867 8.8660 142.59 208.04 14.20 7868 8.8670 148.77 208.04 14.50 7869 8.8680 151.08 208.04 14.60 7870 8.8690 158.96 208.05 15.02 7871 8.8700 139.78 208.05 14.03 7872 8.8710 159.44 208.05 15.02 7873 8.8720 148.00 208.06 14.39 7874 8.8730 142.49 208.06 14.18 7875 8.8740 160.59 208.07 15.13 7876 8.8750 134.90 208.07 13.79 7877 8.8760 156.30 208.07 14.84 7878 8.8770 129.82 208.08 13.46 7879 8.8780 149.80 208.08 14.47 7880 8.8790 149.71 208.08 14.57 7881 8.8800 141.94 208.09 14.25 7882 8.8810 160.93 208.09 15.11 7883 8.8820 192.68 208.09 16.59 7884 8.8830 164.94 208.10 15.35 7885 8.8840 166.89 208.10 15.34 7886 8.8850 153.54 208.11 14.70 7887 8.8860 162.33 208.11 15.22 7888 8.8870 154.99 208.11 14.89 7889 8.8880 163.51 208.12 15.29 7890 8.8890 165.87 208.12 15.38 7891 8.8900 147.21 208.12 14.48 7892 8.8910 164.33 208.13 15.27 7893 8.8920 168.68 208.13 15.51 7894 8.8930 157.28 208.13 14.88 7895 8.8940 176.50 208.14 15.78 7896 8.8950 156.03 208.14 14.85 7897 8.8960 136.75 208.15 13.85 7898 8.8970 165.60 208.15 15.37 7899 8.8980 148.48 208.15 14.51 7900 8.8990 155.83 208.16 14.77 7901 8.9000 165.28 208.16 15.34 7902 8.9010 149.95 208.16 14.58 7903 8.9020 164.96 208.17 15.28 7904 8.9030 152.32 208.17 14.62 7905 8.9040 159.78 208.18 15.04 7906 8.9050 162.21 208.18 15.15 7907 8.9060 152.12 208.18 14.60 7908 8.9070 173.64 208.19 15.69 7909 8.9080 175.17 208.19 15.72 7910 8.9090 180.26 208.19 15.95 7911 8.9100 190.66 208.20 16.49 7912 8.9110 163.26 208.20 15.15 7913 8.9120 172.72 208.21 15.62 7914 8.9130 180.33 208.21 16.05 7915 8.9140 159.33 208.21 15.04 7916 8.9150 175.62 208.22 15.75 7917 8.9160 159.57 208.22 15.01 7918 8.9170 166.78 208.22 15.35 7919 8.9180 176.10 208.23 15.76 7920 8.9190 189.65 208.23 16.46 7921 8.9200 184.36 208.23 16.25 7922 8.9210 179.98 208.24 16.06 7923 8.9220 173.99 208.24 15.66 7924 8.9230 166.51 208.24 15.31 7925 8.9240 177.54 208.25 15.88 7926 8.9250 166.66 208.25 15.34 7927 8.9260 146.19 208.26 14.40 7928 8.9270 167.12 208.26 15.39 7929 8.9280 176.42 208.26 15.89 7930 8.9290 176.27 208.27 15.80 7931 8.9300 203.62 208.27 16.97 7932 8.9310 159.04 208.27 14.98 7933 8.9320 163.11 208.28 15.25 7934 8.9330 152.36 208.28 14.69 7935 8.9340 147.02 208.29 14.50 7936 8.9350 163.63 208.29 15.31 7937 8.9360 166.40 208.29 15.36 7938 8.9370 147.80 208.30 14.36 7939 8.9380 173.37 208.30 15.68 7940 8.9390 168.78 208.30 15.51 7941 8.9400 162.09 208.31 15.15 7942 8.9410 184.79 208.31 16.29 7943 8.9420 178.36 208.31 15.84 7944 8.9430 169.36 208.32 15.37 7945 8.9440 171.53 208.32 15.59 7946 8.9450 166.76 208.32 15.32 7947 8.9460 186.70 208.33 16.30 7948 8.9470 159.77 208.33 14.98 7949 8.9480 159.65 208.34 15.05 7950 8.9490 172.39 208.34 15.64 7951 8.9500 166.10 208.34 15.33 7952 8.9510 178.20 208.35 15.91 7953 8.9520 166.97 208.35 15.41 7954 8.9530 178.86 208.35 16.00 7955 8.9540 175.38 208.36 15.79 7956 8.9550 170.31 208.36 15.50 7957 8.9560 195.12 208.37 16.60 7958 8.9570 196.96 208.37 16.69 7959 8.9580 187.21 208.37 16.27 7960 8.9590 167.74 208.38 15.37 7961 8.9600 185.28 208.38 16.08 7962 8.9610 196.67 208.38 16.64 7963 8.9620 184.32 208.39 16.19 7964 8.9630 174.61 208.39 15.76 7965 8.9640 184.46 208.39 16.19 7966 8.9650 181.30 208.40 15.99 7967 8.9660 162.06 208.40 15.11 7968 8.9670 182.55 208.40 16.07 7969 8.9680 191.90 208.41 16.52 7970 8.9690 189.09 208.41 16.43 7971 8.9700 170.68 208.41 15.61 7972 8.9710 173.32 208.42 15.73 7973 8.9720 180.25 208.42 15.86 7974 8.9730 178.16 208.43 15.83 7975 8.9740 172.42 208.43 15.59 7976 8.9750 187.27 208.43 16.29 7977 8.9760 175.96 208.44 15.79 7978 8.9770 189.14 208.44 16.36 7979 8.9780 188.72 208.44 16.34 7980 8.9790 210.96 208.45 17.36 7981 8.9800 193.78 208.45 16.52 7982 8.9810 200.82 208.45 16.81 7983 8.9820 198.42 208.46 16.74 7984 8.9830 199.14 208.46 16.82 7985 8.9840 222.02 208.46 17.79 7986 8.9850 206.27 314.42 17.11 7987 8.9860 173.64 315.93 15.69 7988 8.9870 208.11 317.48 17.12 7989 8.9880 210.44 319.05 17.23 7990 8.9890 219.48 320.66 17.66 7991 8.9900 202.38 322.31 17.00 7992 8.9910 201.67 323.99 16.84 7993 8.9920 199.11 325.71 16.75 7994 8.9930 214.75 327.46 17.47 7995 8.9940 222.05 329.26 17.79 7996 8.9950 227.69 331.10 18.00 7997 8.9960 247.36 332.98 18.78 7998 8.9970 226.09 334.90 17.91 7999 8.9980 257.44 336.87 19.11 8000 8.9990 247.55 338.88 18.69 8001 9.0000 243.91 340.94 18.60 8002 9.0010 231.26 343.05 18.15 8003 9.0020 217.22 345.21 17.62 8004 9.0030 237.74 347.43 18.39 8005 9.0040 224.84 349.69 17.83 8006 9.0050 235.13 352.02 18.30 8007 9.0060 254.13 354.40 19.04 8008 9.0070 251.48 356.84 18.85 8009 9.0080 246.46 359.34 18.69 8010 9.0090 239.43 361.90 18.42 8011 9.0100 252.68 364.54 18.98 8012 9.0110 270.69 367.23 19.62 8013 9.0120 257.33 370.00 19.14 8014 9.0130 259.81 372.84 19.27 8015 9.0140 269.24 375.76 19.58 8016 9.0150 259.22 378.76 19.18 8017 9.0160 239.10 381.83 18.43 8018 9.0170 259.68 384.99 19.20 8019 9.0180 275.49 388.24 19.78 8020 9.0190 260.90 391.58 19.25 8021 9.0200 272.44 395.02 19.71 8022 9.0210 280.40 398.54 19.95 8023 9.0220 310.09 402.17 20.96 8024 9.0230 290.54 405.90 20.25 8025 9.0240 307.34 409.75 20.81 8026 9.0250 318.60 413.70 21.26 8027 9.0260 280.29 417.78 19.89 8028 9.0270 309.26 421.97 20.97 8029 9.0280 291.34 426.30 20.38 8030 9.0290 298.94 430.75 20.60 8031 9.0300 302.91 435.34 20.79 8032 9.0310 305.13 440.08 20.78 8033 9.0320 344.21 444.96 22.04 8034 9.0330 325.22 450.01 21.44 8035 9.0340 331.35 455.21 21.71 8036 9.0350 360.44 460.59 22.62 8037 9.0360 344.52 466.14 22.06 8038 9.0370 377.90 471.87 23.18 8039 9.0380 402.97 477.81 23.94 8040 9.0390 342.90 483.94 22.05 8041 9.0400 405.09 490.28 23.94 8042 9.0410 418.47 496.85 24.32 8043 9.0420 391.59 503.64 23.52 8044 9.0430 401.49 510.69 23.88 8045 9.0440 393.07 517.97 23.54 8046 9.0450 428.14 525.53 24.59 8047 9.0460 421.85 533.37 24.46 8048 9.0470 437.81 541.51 25.01 8049 9.0480 462.44 549.95 25.71 8050 9.0490 447.74 558.72 25.22 8051 9.0500 490.21 567.82 26.33 8052 9.0510 475.26 577.29 25.99 8053 9.0520 464.21 587.14 25.59 8054 9.0530 502.78 597.38 26.63 8055 9.0540 462.55 608.04 25.53 8056 9.0550 564.14 619.16 28.23 8057 9.0560 541.74 630.72 27.72 8058 9.0570 518.61 642.80 27.08 8059 9.0580 523.23 655.39 27.20 8060 9.0590 587.18 668.55 28.87 8061 9.0600 647.30 682.28 30.34 8062 9.0610 608.77 696.64 29.36 8063 9.0620 640.19 711.67 30.11 8064 9.0630 616.10 727.38 29.56 8065 9.0640 729.68 743.86 32.21 8066 9.0650 765.98 761.12 33.02 8067 9.0660 760.39 779.22 32.84 8068 9.0670 738.05 798.25 32.35 8069 9.0680 801.51 818.22 33.79 8070 9.0690 791.22 839.24 33.59 8071 9.0700 811.41 861.32 33.87 8072 9.0710 851.45 884.61 34.67 8073 9.0720 868.06 909.16 35.05 8074 9.0730 881.70 935.05 35.32 8075 9.0740 909.89 962.43 35.91 8076 9.0750 1004.88 991.35 37.79 8077 9.0760 1043.58 1021.96 38.45 8078 9.0770 1073.93 1054.39 39.03 8079 9.0780 1130.98 1088.83 40.04 8080 9.0790 1159.05 1125.39 40.54 8081 9.0800 1184.69 1164.21 40.99 8082 9.0810 1277.46 1205.60 42.52 8083 9.0820 1323.27 1249.68 43.24 8084 9.0830 1322.77 1296.74 43.28 8085 9.0840 1408.03 1347.03 44.60 8086 9.0850 1500.14 1400.92 46.11 8087 9.0860 1559.67 1458.65 47.10 8088 9.0870 1678.39 1520.65 48.84 8089 9.0880 1739.97 1587.40 49.69 8090 9.0890 1830.33 1659.20 50.98 8091 9.0900 1989.18 1736.84 53.19 8092 9.0910 1975.91 1820.76 52.91 8093 9.0920 2080.02 1911.80 54.37 8094 9.0930 2168.81 2010.60 55.51 8095 9.0940 2265.98 2118.15 56.79 8096 9.0950 2383.60 2235.62 58.07 8097 9.0960 2475.64 2363.90 59.29 8098 9.0970 2680.63 2504.83 61.70 8099 9.0980 2897.65 2659.71 64.21 8100 9.0990 3066.17 2830.56 66.01 8101 9.1000 3267.39 3019.77 68.09 8102 9.1010 3396.33 3229.65 69.41 8103 9.1020 3741.85 3463.69 72.79 8104 9.1030 4194.36 3724.95 77.22 8105 9.1040 4397.61 4018.76 79.00 8106 9.1050 4613.50 4349.74 80.94 8107 9.1060 5001.81 4724.58 84.29 8108 9.1070 5465.04 5151.56 88.10 8109 9.1080 5954.29 5639.64 91.98 8110 9.1090 6250.43 6201.16 94.22 8111 9.1100 6898.68 6851.06 98.98 8112 9.1110 7600.36 7617.39 103.89 8113 9.1120 8553.13 8505.62 110.19 8114 9.1130 9399.14 9554.89 115.52 8115 9.1140 10501.00 10804.60 122.16 8116 9.1150 11512.50 12299.70 127.71 8117 9.1160 13087.20 14106.60 136.23 8118 9.1170 14871.00 16297.30 145.19 8119 9.1180 17232.40 18968.60 156.40 8120 9.1190 20119.00 22224.90 169.01 8121 9.1200 23978.30 26185.60 184.34 8122 9.1210 28339.10 30959.20 200.52 8123 9.1220 33988.60 36572.70 219.49 8124 9.1230 41156.20 42927.20 241.66 8125 9.1240 48772.60 49588.60 263.10 8126 9.1250 55699.50 55714.70 281.43 8127 9.1260 60668.80 60090.20 293.76 8128 9.1270 62364.20 61548.70 298.04 8129 9.1280 58831.50 59648.10 289.30 8130 9.1290 53815.00 54968.90 276.71 8131 9.1300 46599.10 48700.90 257.38 8132 9.1310 39440.70 42042.50 236.72 8133 9.1320 33724.20 35775.70 219.02 8134 9.1330 28535.10 30265.20 201.28 8135 9.1340 24422.10 25609.70 186.32 8136 9.1350 20835.50 21750.90 171.96 8137 9.1360 17971.20 18580.70 159.90 8138 9.1370 15628.70 15980.20 148.94 8139 9.1380 13633.20 13848.40 139.19 8140 9.1390 11824.70 12087.30 129.54 8141 9.1400 10715.30 10626.60 123.42 8142 9.1410 9510.38 9407.78 116.27 8143 9.1420 8424.87 8382.57 109.32 8144 9.1430 7565.75 7513.92 103.68 8145 9.1440 6802.53 6772.09 98.29 8146 9.1450 6256.00 6135.34 94.30 8147 9.1460 5761.79 5585.08 90.43 8148 9.1470 5365.05 5105.81 87.29 8149 9.1480 4958.77 4687.32 83.97 8150 9.1490 4494.04 4318.75 79.91 8151 9.1500 4266.56 3993.46 77.88 8152 9.1510 3871.16 3704.56 74.06 8153 9.1520 3560.63 3447.37 71.11 8154 9.1530 3409.94 3217.29 69.59 8155 9.1540 3197.04 3010.54 67.38 8156 9.1550 3003.00 2824.58 65.24 8157 9.1560 2833.53 2656.21 63.46 8158 9.1570 2631.30 2503.68 61.16 8159 9.1580 2511.75 2365.00 59.76 8160 9.1590 2349.46 2238.44 57.79 8161 9.1600 2231.64 2122.86 56.25 8162 9.1610 2233.89 2016.95 56.29 8163 9.1620 1986.02 1919.67 52.97 8164 9.1630 1931.37 1830.06 52.39 8165 9.1640 1822.02 1747.54 50.89 8166 9.1650 1718.48 1671.16 49.43 8167 9.1660 1692.26 1600.43 49.01 8168 9.1670 1629.40 1534.89 48.12 8169 9.1680 1557.59 1474.00 47.07 8170 9.1690 1500.34 1417.33 46.14 8171 9.1700 1428.13 1364.47 45.07 8172 9.1710 1272.52 1315.23 42.42 8173 9.1720 1310.55 1269.12 43.20 8174 9.1730 1245.79 1225.98 42.06 8175 9.1740 1185.63 1185.62 41.08 8176 9.1750 1169.73 1147.70 40.79 8177 9.1760 1115.90 1112.12 39.84 8178 9.1770 1091.50 1078.65 39.36 8179 9.1780 1064.11 1047.18 38.90 8180 9.1790 1037.94 1017.54 38.40 8181 9.1800 949.70 989.58 36.78 8182 9.1810 893.24 963.24 35.69 8183 9.1820 946.25 938.34 36.67 8184 9.1830 913.06 914.83 35.92 8185 9.1840 874.90 892.60 35.26 8186 9.1850 876.51 871.56 35.34 8187 9.1860 861.54 851.67 35.00 8188 9.1870 882.22 832.82 35.44 8189 9.1880 827.37 815.00 34.31 8190 9.1890 779.42 798.08 33.29 8191 9.1900 744.51 782.07 32.49 8192 9.1910 749.52 766.89 32.62 8193 9.1920 715.33 752.50 31.81 8194 9.1930 713.00 738.87 31.73 8195 9.1940 704.20 725.96 31.65 8196 9.1950 638.99 713.72 30.04 8197 9.1960 652.34 702.13 30.40 8198 9.1970 630.79 691.18 29.94 8199 9.1980 601.15 680.80 29.25 8200 9.1990 611.83 671.00 29.45 8201 9.2000 593.19 661.76 28.92 8202 9.2010 612.68 653.06 29.55 8203 9.2020 590.66 644.87 29.01 8204 9.2030 628.36 637.18 29.86 8205 9.2040 595.76 629.98 29.07 8206 9.2050 574.70 623.27 28.61 8207 9.2060 575.89 617.02 28.57 8208 9.2070 575.05 611.24 28.52 8209 9.2080 550.55 605.91 27.92 8210 9.2090 549.39 601.05 27.94 8211 9.2100 540.35 596.64 27.69 8212 9.2110 534.53 592.70 27.58 8213 9.2120 548.97 589.22 27.90 8214 9.2130 537.64 586.20 27.56 8215 9.2140 504.92 583.67 26.70 8216 9.2150 545.78 581.63 27.89 8217 9.2160 558.49 580.09 28.20 8218 9.2170 535.58 579.08 27.50 8219 9.2180 568.18 578.62 28.48 8220 9.2190 546.17 578.74 27.89 8221 9.2200 549.40 579.46 28.05 8222 9.2210 507.09 580.83 26.83 8223 9.2220 509.55 582.88 26.90 8224 9.2230 581.42 585.67 28.71 8225 9.2240 588.69 589.27 28.93 8226 9.2250 576.08 593.73 28.62 8227 9.2260 555.87 599.14 28.10 8228 9.2270 597.12 605.58 29.12 8229 9.2280 594.85 613.18 29.00 8230 9.2290 605.10 622.06 29.31 8231 9.2300 615.00 632.34 29.49 8232 9.2310 668.96 644.25 30.77 8233 9.2320 667.35 657.97 30.74 8234 9.2330 691.15 673.71 31.37 8235 9.2340 683.59 691.82 31.15 8236 9.2350 718.90 712.61 31.92 8237 9.2360 760.57 736.53 32.84 8238 9.2370 806.82 764.04 33.82 8239 9.2380 906.37 795.79 35.92 8240 9.2390 925.52 832.54 36.28 8241 9.2400 894.26 875.13 35.66 8242 9.2410 976.77 924.86 37.33 8243 9.2420 1070.66 983.03 38.98 8244 9.2430 1126.98 1051.49 39.98 8245 9.2440 1207.99 1132.57 41.46 8246 9.2450 1304.36 1228.96 43.04 8247 9.2460 1493.07 1344.42 46.05 8248 9.2470 1617.67 1483.08 47.97 8249 9.2480 1742.67 1650.93 49.67 8250 9.2490 1895.35 1854.27 51.87 8251 9.2500 2119.56 2101.01 54.82 8252 9.2510 2431.25 2399.83 58.76 8253 9.2520 2786.06 2757.92 62.87 8254 9.2530 3261.37 3179.35 68.07 8255 9.2540 3757.33 3658.27 72.96 8256 9.2550 4410.32 4170.50 79.13 8257 9.2560 4966.61 4661.82 84.06 8258 9.2570 5484.18 5051.93 88.29 8259 9.2580 5635.86 5250.08 89.55 8260 9.2590 5481.21 5201.42 88.37 8261 9.2600 5136.33 4919.65 85.47 8262 9.2610 4672.47 4477.84 81.49 8263 9.2620 4131.75 3966.50 76.67 8264 9.2630 3577.90 3459.20 71.34 8265 9.2640 3030.63 2995.88 65.65 8266 9.2650 2639.36 2593.96 61.27 8267 9.2660 2385.35 2255.31 58.23 8268 9.2670 2141.82 1973.01 55.22 8269 9.2680 1842.66 1739.64 51.15 8270 9.2690 1737.10 1546.65 49.72 8271 9.2700 1600.26 1282.25 47.72 8272 9.2710 1422.73 1150.45 44.98 8273 9.2720 1337.99 1040.17 43.66 8274 9.2730 1219.99 947.55 41.53 8275 9.2740 1207.50 868.98 41.42 8276 9.2750 1168.03 802.08 40.65 8277 9.2760 1128.79 744.68 40.00 8278 9.2770 1044.08 695.11 38.44 8279 9.2780 1042.85 652.13 38.50 8280 9.2790 965.10 614.63 36.98 8281 9.2800 946.91 581.75 36.61 8282 9.2810 922.92 552.77 36.27 8283 9.2820 867.36 527.20 35.12 8284 9.2830 863.46 504.47 35.01 8285 9.2840 900.10 484.25 35.78 8286 9.2850 912.29 466.21 36.05 8287 9.2860 824.50 450.08 34.18 8288 9.2870 852.23 435.61 34.83 8289 9.2880 818.39 422.63 34.14 8290 9.2890 831.80 410.98 34.44 8291 9.2900 849.23 400.51 34.80 8292 9.2910 745.79 391.12 32.52 8293 9.2920 739.16 382.72 32.39 8294 9.2930 698.58 375.22 31.49 8295 9.2940 720.95 368.58 32.00 8296 9.2950 655.37 362.74 30.47 8297 9.2960 610.30 357.67 29.46 8298 9.2970 606.95 353.36 29.45 8299 9.2980 590.33 349.80 29.02 8300 9.2990 574.73 347.01 28.58 8301 9.3000 538.74 345.02 27.61 8302 9.3010 528.19 343.88 27.35 8303 9.3020 583.99 343.66 28.85 8304 9.3030 533.53 344.46 27.50 8305 9.3040 545.91 346.40 27.78 8306 9.3050 578.57 349.63 28.77 8307 9.3060 536.09 354.33 27.63 8308 9.3070 540.27 360.67 27.79 8309 9.3080 499.05 368.83 26.57 8310 9.3090 503.48 378.89 26.77 8311 9.3100 444.69 390.76 25.06 8312 9.3110 465.80 403.99 25.67 8313 9.3120 487.44 417.63 26.26 8314 9.3130 502.42 430.07 26.67 8315 9.3140 532.74 439.20 27.49 8316 9.3150 485.35 442.91 26.28 8317 9.3160 467.48 439.97 25.82 8318 9.3170 426.07 430.58 24.60 8319 9.3180 390.94 416.34 23.52 8320 9.3190 410.51 399.36 24.10 8321 9.3200 387.63 381.67 23.47 8322 9.3210 388.25 364.66 23.47 8323 9.3220 352.06 349.13 22.33 8324 9.3230 340.43 335.34 22.06 8325 9.3240 338.57 323.32 21.84 8326 9.3250 367.62 312.95 22.88 8327 9.3260 296.14 304.01 20.47 8328 9.3270 274.33 296.32 19.76 8329 9.3280 288.64 289.67 20.20 8330 9.3290 266.17 283.90 19.32 8331 9.3300 290.70 278.86 20.30 8332 9.3310 277.89 274.44 19.94 8333 9.3320 287.79 270.55 20.24 8334 9.3330 300.23 267.09 20.68 8335 9.3340 274.59 264.00 19.75 8336 9.3350 272.41 261.22 19.68 8337 9.3360 270.84 258.71 19.63 8338 9.3370 262.76 256.44 19.26 8339 9.3380 256.77 254.37 19.11 8340 9.3390 231.08 252.47 18.04 8341 9.3400 249.56 250.72 18.79 8342 9.3410 242.58 249.11 18.47 8343 9.3420 242.89 247.62 18.55 8344 9.3430 235.89 246.23 18.27 8345 9.3440 251.00 244.94 18.89 8346 9.3450 243.45 243.74 18.63 8347 9.3460 248.20 242.60 18.82 8348 9.3470 246.52 241.54 18.76 8349 9.3480 233.20 240.54 18.24 8350 9.3490 248.17 239.60 18.70 8351 9.3500 246.57 238.71 18.70 8352 9.3510 220.36 237.87 17.65 8353 9.3520 226.32 237.07 17.87 8354 9.3530 252.64 236.31 18.93 8355 9.3540 243.95 235.59 18.62 8356 9.3550 216.16 234.91 17.48 8357 9.3560 228.07 234.25 17.93 8358 9.3570 245.17 233.62 18.66 8359 9.3580 246.65 233.03 18.76 8360 9.3590 234.40 232.46 18.16 8361 9.3600 215.26 231.91 17.39 8362 9.3610 245.73 231.38 18.68 8363 9.3620 242.66 230.88 18.58 8364 9.3630 227.47 230.39 17.98 8365 9.3640 220.94 229.93 17.72 8366 9.3650 207.87 229.48 17.11 8367 9.3660 214.89 229.05 17.46 8368 9.3670 207.14 228.63 17.09 8369 9.3680 231.05 228.23 18.07 8370 9.3690 222.39 227.85 17.73 8371 9.3700 233.93 227.47 18.24 8372 9.3710 238.20 227.11 18.31 8373 9.3720 222.37 226.76 17.72 8374 9.3730 241.47 226.43 18.53 8375 9.3740 232.41 226.10 18.16 8376 9.3750 218.21 225.79 17.52 8377 9.3760 223.01 225.48 17.76 8378 9.3770 201.65 225.18 16.82 8379 9.3780 209.76 224.90 17.24 8380 9.3790 201.08 224.62 16.84 8381 9.3800 247.06 224.35 18.76 8382 9.3810 209.22 224.09 17.27 8383 9.3820 182.12 223.83 16.00 8384 9.3830 203.23 223.59 16.90 8385 9.3840 179.26 223.35 15.92 8386 9.3850 187.62 223.11 16.31 8387 9.3860 206.05 222.88 17.13 8388 9.3870 204.10 222.66 17.03 8389 9.3880 189.89 222.45 16.38 8390 9.3890 178.38 222.24 15.89 8391 9.3900 206.91 222.04 17.21 8392 9.3910 205.60 221.84 17.10 8393 9.3920 198.57 221.65 16.73 8394 9.3930 224.44 221.46 17.83 8395 9.3940 223.98 221.27 17.78 8396 9.3950 230.91 221.10 18.13 8397 9.3960 184.67 220.92 16.07 8398 9.3970 193.35 220.75 16.50 8399 9.3980 184.28 220.59 16.18 8400 9.3990 181.99 220.42 16.08 8401 9.4000 189.21 220.27 16.37 8402 9.4010 207.45 220.11 17.15 8403 9.4020 182.61 219.96 16.13 8404 9.4030 180.54 219.82 16.03 8405 9.4040 197.73 219.67 16.72 8406 9.4050 211.28 219.53 17.36 8407 9.4060 198.39 219.39 16.79 8408 9.4070 205.75 210.87 17.11 8409 9.4080 189.07 210.85 16.31 8410 9.4090 194.65 210.83 16.55 8411 9.4100 195.59 210.81 16.59 8412 9.4110 173.70 210.80 15.61 8413 9.4120 181.77 210.78 16.02 8414 9.4130 194.84 210.76 16.64 8415 9.4140 208.23 210.75 17.20 8416 9.4150 183.41 210.73 16.14 8417 9.4160 192.08 210.72 16.56 8418 9.4170 177.90 210.70 15.76 8419 9.4180 186.88 210.69 16.26 8420 9.4190 212.96 210.68 17.37 8421 9.4200 175.64 210.66 15.70 8422 9.4210 163.18 210.65 15.19 8423 9.4220 163.71 210.64 15.27 8424 9.4230 159.14 210.63 15.11 8425 9.4240 170.73 210.62 15.43 8426 9.4250 184.20 210.61 16.13 8427 9.4260 183.44 210.60 16.15 8428 9.4270 167.67 210.59 15.44 8429 9.4280 169.01 210.58 15.48 8430 9.4290 172.56 210.57 15.68 8431 9.4300 169.45 210.56 15.49 8432 9.4310 178.05 210.55 15.94 8433 9.4320 179.59 210.54 16.01 8434 9.4330 196.01 210.54 16.68 8435 9.4340 170.74 210.53 15.56 8436 9.4350 165.53 210.52 15.31 8437 9.4360 180.66 210.51 16.00 8438 9.4370 181.14 210.51 15.97 8439 9.4380 198.33 210.50 16.75 8440 9.4390 197.56 210.49 16.74 8441 9.4400 183.15 210.49 16.15 8442 9.4410 178.76 210.48 15.94 8443 9.4420 169.76 210.47 15.51 8444 9.4430 186.47 210.47 16.26 8445 9.4440 189.17 210.46 16.40 8446 9.4450 188.08 210.46 16.29 8447 9.4460 174.46 210.45 15.67 8448 9.4470 177.75 210.45 15.94 8449 9.4480 157.15 210.44 14.95 8450 9.4490 173.29 210.44 15.68 8451 9.4500 179.17 210.43 15.93 8452 9.4510 168.62 210.43 15.45 8453 9.4520 181.88 210.43 16.11 8454 9.4530 183.77 210.42 16.17 8455 9.4540 169.32 210.42 15.55 8456 9.4550 169.31 210.41 15.47 8457 9.4560 183.07 210.41 16.17 8458 9.4570 176.70 210.41 15.82 8459 9.4580 173.62 210.40 15.60 8460 9.4590 181.69 210.40 15.99 8461 9.4600 201.90 210.40 16.97 8462 9.4610 166.98 210.40 15.36 8463 9.4620 187.66 210.39 16.33 8464 9.4630 178.32 210.39 15.86 8465 9.4640 149.17 210.39 14.50 8466 9.4650 148.79 210.38 14.58 8467 9.4660 160.18 210.38 15.12 8468 9.4670 173.58 210.38 15.73 8469 9.4680 191.94 210.38 16.42 8470 9.4690 185.94 210.38 16.15 8471 9.4700 171.71 210.37 15.60 8472 9.4710 179.35 210.37 16.04 8473 9.4720 168.13 210.37 15.48 8474 9.4730 153.08 210.37 14.66 8475 9.4740 168.58 210.37 15.38 8476 9.4750 160.97 210.37 15.10 8477 9.4760 178.87 210.36 15.93 8478 9.4770 188.39 210.36 16.39 8479 9.4780 184.74 210.36 16.13 8480 9.4790 178.97 210.36 15.89 8481 9.4800 157.26 210.36 14.86 8482 9.4810 181.68 210.36 16.00 8483 9.4820 178.84 210.36 15.86 8484 9.4830 170.53 210.35 15.48 8485 9.4840 170.22 210.35 15.49 8486 9.4850 194.44 210.35 16.57 8487 9.4860 170.96 210.24 15.53 8488 9.4870 161.51 210.25 15.17 8489 9.4880 153.93 210.25 14.76 8490 9.4890 181.83 210.26 16.09 8491 9.4900 174.35 210.26 15.69 8492 9.4910 186.60 210.27 16.25 8493 9.4920 192.38 210.27 16.49 8494 9.4930 184.88 210.28 16.11 8495 9.4940 204.33 210.28 16.99 8496 9.4950 212.86 210.29 17.37 8497 9.4960 194.53 210.30 16.60 8498 9.4970 178.24 210.30 15.94 8499 9.4980 189.67 210.31 16.41 8500 9.4990 180.17 210.31 15.95 8501 9.5000 191.21 210.32 16.42 8502 9.5010 197.52 210.32 16.71 8503 9.5020 165.76 210.33 15.30 8504 9.5030 172.78 210.34 15.68 8505 9.5040 179.02 210.34 16.00 8506 9.5050 194.72 210.35 16.66 8507 9.5060 159.99 210.36 15.02 8508 9.5070 175.97 210.36 15.82 8509 9.5080 162.54 210.37 15.15 8510 9.5090 176.85 210.38 15.88 8511 9.5100 173.87 210.38 15.59 8512 9.5110 183.35 210.39 16.07 8513 9.5120 190.72 210.40 16.40 8514 9.5130 170.91 210.40 15.52 8515 9.5140 167.92 210.41 15.45 8516 9.5150 179.80 210.42 15.98 8517 9.5160 196.90 210.43 16.68 8518 9.5170 186.00 210.43 16.19 8519 9.5180 168.94 210.44 15.47 8520 9.5190 152.03 210.45 14.68 8521 9.5200 179.67 210.46 15.92 8522 9.5210 191.72 210.46 16.50 8523 9.5220 190.28 210.47 16.49 8524 9.5230 181.01 210.48 16.06 8525 9.5240 186.18 210.49 16.23 8526 9.5250 192.58 210.50 16.52 8527 9.5260 198.83 210.51 16.77 8528 9.5270 201.31 210.51 16.96 8529 9.5280 203.96 210.52 17.12 8530 9.5290 193.21 210.53 16.58 8531 9.5300 201.84 210.54 16.96 8532 9.5310 193.18 210.55 16.56 8533 9.5320 192.84 210.56 16.51 8534 9.5330 184.86 210.57 16.14 8535 9.5340 172.05 210.58 15.54 8536 9.5350 191.89 210.59 16.46 8537 9.5360 202.02 210.60 16.99 8538 9.5370 190.90 210.61 16.52 8539 9.5380 207.70 210.62 17.21 8540 9.5390 185.62 210.63 16.23 8541 9.5400 201.92 210.64 17.02 8542 9.5410 216.04 210.65 17.54 8543 9.5420 170.04 210.67 15.49 8544 9.5430 183.24 210.68 16.13 8545 9.5440 218.73 210.69 17.65 8546 9.5450 198.42 210.70 16.77 8547 9.5460 189.18 210.72 16.28 8548 9.5470 191.81 210.73 16.46 8549 9.5480 205.86 210.74 17.10 8550 9.5490 204.08 210.76 17.01 8551 9.5500 195.42 210.77 16.66 8552 9.5510 212.44 210.79 17.46 8553 9.5520 181.20 210.80 16.06 8554 9.5530 201.12 210.82 16.98 8555 9.5540 212.45 210.83 17.44 8556 9.5550 160.11 210.85 14.94 8557 9.5560 189.96 210.87 16.41 8558 9.5570 199.54 210.88 16.80 8559 9.5580 173.41 210.90 15.55 8560 9.5590 182.01 210.92 16.00 8561 9.5600 189.20 210.94 16.38 8562 9.5610 173.75 210.96 15.69 8563 9.5620 195.81 210.98 16.64 8564 9.5630 185.41 211.00 16.23 8565 9.5640 186.00 211.02 16.27 8566 9.5650 190.83 211.05 16.47 8567 9.5660 182.94 211.07 16.01 8568 9.5670 180.46 211.09 15.96 8569 9.5680 179.68 211.12 15.98 8570 9.5690 179.84 211.14 15.91 8571 9.5700 199.95 211.17 16.87 8572 9.5710 189.72 211.20 16.42 8573 9.5720 196.98 211.23 16.68 8574 9.5730 172.23 211.26 15.56 8575 9.5740 182.40 211.29 16.08 8576 9.5750 181.79 211.32 16.15 8577 9.5760 169.28 211.35 15.41 8578 9.5770 180.53 211.39 15.95 8579 9.5780 209.11 211.43 17.23 8580 9.5790 189.32 211.46 16.39 8581 9.5800 183.76 211.51 16.13 8582 9.5810 179.46 211.55 16.01 8583 9.5820 192.82 211.59 16.55 8584 9.5830 189.19 211.64 16.40 8585 9.5840 168.02 211.68 15.38 8586 9.5850 179.88 211.74 16.05 8587 9.5860 184.00 211.79 16.17 8588 9.5870 192.50 211.85 16.47 8589 9.5880 187.12 211.90 16.25 8590 9.5890 173.33 211.97 15.68 8591 9.5900 172.52 212.03 15.59 8592 9.5910 177.85 212.10 15.76 8593 9.5920 179.19 212.17 15.88 8594 9.5930 188.68 212.25 16.39 8595 9.5940 191.42 212.33 16.45 8596 9.5950 194.14 212.42 16.60 8597 9.5960 179.81 212.51 16.00 8598 9.5970 154.99 212.61 14.77 8599 9.5980 190.80 212.71 16.45 8600 9.5990 186.37 212.83 16.25 8601 9.6000 191.84 212.95 16.50 8602 9.6010 159.02 213.07 15.00 8603 9.6020 163.98 213.21 15.20 8604 9.6030 189.15 213.36 16.43 8605 9.6040 172.04 213.51 15.68 8606 9.6050 171.87 213.68 15.65 8607 9.6060 183.55 213.87 16.18 8608 9.6070 198.57 214.07 16.81 8609 9.6080 201.21 214.29 16.91 8610 9.6090 194.20 214.52 16.60 8611 9.6100 191.48 214.78 16.45 8612 9.6110 197.81 215.06 16.74 8613 9.6120 180.30 215.36 15.97 8614 9.6130 193.40 215.70 16.54 8615 9.6140 192.97 216.07 16.54 8616 9.6150 190.02 216.48 16.41 8617 9.6160 179.00 216.93 15.97 8618 9.6170 184.01 217.44 16.18 8619 9.6180 212.70 218.00 17.35 8620 9.6190 218.02 218.63 17.61 8621 9.6200 196.90 219.34 16.73 8622 9.6210 198.29 220.15 16.78 8623 9.6220 197.40 221.06 16.80 8624 9.6230 202.82 222.10 16.92 8625 9.6240 194.72 223.29 16.62 8626 9.6250 193.43 224.67 16.57 8627 9.6260 188.22 226.27 16.29 8628 9.6270 185.52 228.13 16.26 8629 9.6280 199.73 230.32 16.83 8630 9.6290 214.47 232.90 17.43 8631 9.6300 186.51 235.97 16.19 8632 9.6310 205.36 239.62 17.15 8633 9.6320 213.04 244.00 17.46 8634 9.6330 218.11 249.25 17.63 8635 9.6340 216.76 255.52 17.48 8636 9.6350 218.31 262.98 17.59 8637 9.6360 202.51 271.69 16.88 8638 9.6370 230.67 281.62 18.06 8639 9.6380 219.20 292.38 17.62 8640 9.6390 216.87 303.14 17.47 8641 9.6400 228.95 312.50 18.00 8642 9.6410 229.71 318.72 18.06 8643 9.6420 245.79 320.35 18.73 8644 9.6430 230.38 316.97 18.12 8645 9.6440 245.78 309.43 18.69 8646 9.6450 245.20 299.38 18.65 8647 9.6460 211.12 288.50 17.24 8648 9.6470 236.68 277.97 18.25 8649 9.6480 236.57 268.46 18.33 8650 9.6490 270.04 260.20 19.52 8651 9.6500 251.59 253.19 18.84 8652 9.6510 233.31 247.31 18.15 8653 9.6520 198.49 242.39 16.66 8654 9.6530 219.46 238.30 17.69 8655 9.6540 209.66 234.87 17.28 8656 9.6550 201.80 231.99 16.96 8657 9.6560 202.73 229.57 17.01 8658 9.6570 211.65 227.51 17.28 8659 9.6580 233.72 225.75 18.22 8660 9.6590 207.44 224.24 17.05 8661 9.6600 196.81 222.94 16.70 8662 9.6610 192.58 221.81 16.46 8663 9.6620 208.38 220.82 17.15 8664 9.6630 234.24 219.96 18.23 8665 9.6640 222.19 219.19 17.79 8666 9.6650 241.29 218.52 18.52 8667 9.6660 233.66 217.92 18.20 8668 9.6670 253.91 217.38 19.02 8669 9.6680 231.41 216.90 18.15 8670 9.6690 228.12 216.47 18.01 8671 9.6700 249.63 216.08 18.83 8672 9.6710 220.66 215.73 17.62 8673 9.6720 235.66 215.40 18.24 8674 9.6730 230.53 215.11 18.04 8675 9.6740 219.67 214.85 17.50 8676 9.6750 252.52 214.60 18.91 8677 9.6760 232.97 214.38 18.20 8678 9.6770 269.72 214.18 19.61 8679 9.6780 266.89 213.99 19.46 8680 9.6790 271.20 213.81 19.65 8681 9.6800 277.26 213.65 19.80 8682 9.6810 275.94 213.50 19.78 8683 9.6820 268.33 213.37 19.61 8684 9.6830 288.68 213.24 20.22 8685 9.6840 260.48 213.12 19.19 8686 9.6850 259.81 213.01 19.16 8687 9.6860 270.07 212.90 19.60 8688 9.6870 276.27 212.81 19.81 8689 9.6880 293.61 212.71 20.39 8690 9.6890 295.94 212.63 20.45 8691 9.6900 264.96 212.55 19.32 8692 9.6910 281.04 212.48 20.03 8693 9.6920 271.28 212.40 19.64 8694 9.6930 251.57 212.34 18.95 8695 9.6940 262.65 212.27 19.26 8696 9.6950 291.04 212.22 20.36 8697 9.6960 271.21 212.16 19.64 8698 9.6970 269.26 212.11 19.61 8699 9.6980 294.49 212.06 20.48 8700 9.6990 292.00 212.01 20.28 8701 9.7000 274.49 211.97 19.70 8702 9.7010 274.62 211.92 19.66 8703 9.7020 281.86 211.88 20.07 8704 9.7030 259.10 211.85 19.24 8705 9.7040 251.51 211.81 18.91 8706 9.7050 260.79 211.78 19.29 8707 9.7060 236.28 211.74 18.19 8708 9.7070 257.36 211.71 19.07 8709 9.7080 288.27 211.68 20.24 8710 9.7090 270.46 211.65 19.56 8711 9.7100 239.05 211.63 18.38 8712 9.7110 227.28 211.60 18.03 8713 9.7120 220.72 211.58 17.71 8714 9.7130 241.32 211.55 18.56 8715 9.7140 240.86 211.53 18.42 8716 9.7150 246.16 211.51 18.73 8717 9.7160 225.74 211.49 17.90 8718 9.7170 208.79 211.47 17.16 8719 9.7180 225.42 211.45 17.88 8720 9.7190 234.76 211.43 18.22 8721 9.7200 238.76 211.42 18.41 8722 9.7210 203.40 211.40 16.87 8723 9.7220 229.01 211.38 18.02 8724 9.7230 223.66 211.37 17.84 8725 9.7240 219.40 211.36 17.63 8726 9.7250 216.09 211.34 17.55 8727 9.7260 220.86 211.33 17.73 8728 9.7270 196.74 211.32 16.63 8729 9.7280 195.72 211.30 16.64 8730 9.7290 210.61 211.29 17.23 8731 9.7300 208.27 211.28 17.10 8732 9.7310 205.00 211.27 17.08 8733 9.7320 176.90 211.26 15.83 8734 9.7330 202.93 211.25 16.98 8735 9.7340 209.08 211.24 17.25 8736 9.7350 170.83 211.23 15.53 8737 9.7360 189.80 211.22 16.47 8738 9.7370 195.03 211.21 16.71 8739 9.7380 188.54 211.21 16.38 8740 9.7390 200.63 211.20 16.91 8741 9.7400 176.82 211.19 15.74 8742 9.7410 191.41 211.18 16.43 8743 9.7420 176.21 211.18 15.77 8744 9.7430 189.36 211.17 16.46 8745 9.7440 196.96 211.16 16.68 8746 9.7450 224.80 211.16 17.88 8747 9.7460 211.02 211.15 17.30 8748 9.7470 204.10 211.15 17.02 8749 9.7480 190.55 211.14 16.48 8750 9.7490 199.53 211.14 16.83 8751 9.7500 199.71 211.13 16.71 8752 9.7510 178.62 211.13 15.81 8753 9.7520 175.96 211.12 15.78 8754 9.7530 172.38 211.12 15.64 8755 9.7540 194.96 211.11 16.68 8756 9.7550 200.29 211.11 16.82 8757 9.7560 222.98 211.11 17.83 8758 9.7570 186.99 211.10 16.32 8759 9.7580 150.32 211.10 14.47 8760 9.7590 167.13 211.10 15.31 8761 9.7600 182.81 211.09 16.12 8762 9.7610 160.46 211.09 15.10 8763 9.7620 207.61 211.09 17.15 8764 9.7630 204.56 211.08 17.00 8765 9.7640 171.15 211.08 15.50 8766 9.7650 176.20 211.08 15.82 8767 9.7660 196.96 211.08 16.79 8768 9.7670 202.64 211.07 16.99 8769 9.7680 213.13 211.07 17.38 8770 9.7690 194.67 211.07 16.59 8771 9.7700 192.86 211.07 16.50 8772 9.7710 203.06 211.07 16.97 8773 9.7720 188.48 211.06 16.27 8774 9.7730 179.21 211.06 16.00 8775 9.7740 179.72 211.06 15.91 8776 9.7750 178.70 211.06 15.85 8777 9.7760 164.74 211.06 15.25 8778 9.7770 188.48 211.05 16.32 8779 9.7780 202.09 211.05 16.88 8780 9.7790 195.66 211.05 16.66 8781 9.7800 190.75 211.05 16.53 8782 9.7810 172.06 211.05 15.66 8783 9.7820 163.72 211.05 15.20 8784 9.7830 159.85 211.05 15.07 8785 9.7840 187.40 211.05 16.37 8786 9.7850 191.51 211.05 16.50 8787 9.7860 182.12 211.05 16.08 8788 9.7870 172.16 211.05 15.55 8789 9.7880 174.53 211.04 15.69 8790 9.7890 197.81 211.04 16.78 8791 9.7900 199.13 211.04 16.83 8792 9.7910 188.99 211.04 16.36 8793 9.7920 150.44 211.04 14.57 8794 9.7930 200.61 211.04 16.94 8795 9.7940 164.73 211.04 15.23 8796 9.7950 162.27 211.04 15.11 8797 9.7960 181.63 211.04 16.03 8798 9.7970 175.33 211.04 15.78 8799 9.7980 192.25 211.04 16.52 8800 9.7990 203.82 210.85 17.00 8801 9.8000 186.20 210.86 16.29 8802 9.8010 182.03 210.86 16.07 8803 9.8020 196.22 210.86 16.74 8804 9.8030 182.65 210.86 16.15 8805 9.8040 177.52 210.87 15.88 8806 9.8050 195.39 210.87 16.66 8807 9.8060 185.76 210.87 16.21 8808 9.8070 187.48 210.87 16.34 8809 9.8080 189.22 210.88 16.37 8810 9.8090 195.10 210.88 16.58 8811 9.8100 171.74 210.88 15.56 8812 9.8110 176.76 210.88 15.89 8813 9.8120 187.65 210.88 16.18 8814 9.8130 189.59 210.89 16.41 8815 9.8140 173.42 210.89 15.69 8816 9.8150 201.43 210.89 16.93 8817 9.8160 173.74 210.90 15.60 8818 9.8170 180.12 210.90 15.94 8819 9.8180 173.09 210.90 15.74 8820 9.8190 183.40 210.90 16.17 8821 9.8200 186.35 210.90 16.25 8822 9.8210 196.04 210.91 16.56 8823 9.8220 198.24 210.91 16.81 8824 9.8230 187.22 210.91 16.30 8825 9.8240 164.94 210.91 15.28 8826 9.8250 188.03 210.92 16.31 8827 9.8260 196.10 210.92 16.73 8828 9.8270 183.51 210.92 16.09 8829 9.8280 173.29 210.92 15.68 8830 9.8290 173.74 210.93 15.70 8831 9.8300 167.72 210.93 15.37 8832 9.8310 204.87 210.93 16.97 8833 9.8320 195.25 210.93 16.67 8834 9.8330 166.06 210.93 15.39 8835 9.8340 166.33 210.94 15.34 8836 9.8350 203.13 210.94 16.96 8837 9.8360 189.45 210.94 16.37 8838 9.8370 173.72 210.94 15.71 8839 9.8380 190.03 210.95 16.36 8840 9.8390 190.25 210.95 16.37 8841 9.8400 178.59 210.95 15.92 8842 9.8410 185.50 210.95 16.26 8843 9.8420 202.26 210.96 16.94 8844 9.8430 193.01 210.96 16.50 8845 9.8440 171.97 210.96 15.57 8846 9.8450 182.23 210.96 16.08 8847 9.8460 168.27 210.96 15.42 8848 9.8470 186.05 210.97 16.23 8849 9.8480 195.35 210.97 16.67 8850 9.8490 182.49 210.97 16.06 8851 9.8500 189.65 210.97 16.42 8852 9.8510 192.33 210.98 16.52 8853 9.8520 173.82 210.98 15.68 8854 9.8530 209.93 210.98 17.32 8855 9.8540 184.60 210.98 16.10 8856 9.8550 199.67 210.99 16.86 8857 9.8560 189.92 210.99 16.37 8858 9.8570 178.92 210.99 15.92 8859 9.8580 184.14 210.99 16.17 8860 9.8590 176.47 210.99 15.84 8861 9.8600 186.35 211.00 16.30 8862 9.8610 213.20 211.00 17.43 8863 9.8620 202.80 211.00 16.90 8864 9.8630 161.18 211.00 15.00 8865 9.8640 203.15 211.01 16.90 8866 9.8650 189.62 211.01 16.40 8867 9.8660 178.60 211.01 16.00 8868 9.8670 181.35 211.01 16.02 8869 9.8680 187.89 211.01 16.33 8870 9.8690 176.25 211.02 15.81 8871 9.8700 203.44 211.02 16.96 8872 9.8710 180.44 211.02 15.97 8873 9.8720 187.49 211.02 16.30 8874 9.8730 206.42 211.03 17.09 8875 9.8740 207.90 211.03 17.14 8876 9.8750 208.41 211.03 17.23 8877 9.8760 172.01 211.03 15.58 8878 9.8770 185.66 211.04 16.21 8879 9.8780 183.96 211.04 16.17 8880 9.8790 208.89 211.04 17.32 8881 9.8800 228.41 211.04 18.09 8882 9.8810 203.37 211.04 17.00 8883 9.8820 176.08 211.05 15.73 8884 9.8830 181.48 211.05 16.01 8885 9.8840 179.40 211.05 15.94 8886 9.8850 170.82 211.05 15.54 8887 9.8860 160.07 211.05 15.02 8888 9.8870 175.08 211.06 15.81 8889 9.8880 180.55 211.06 16.00 8890 9.8890 183.07 211.06 16.01 8891 9.8900 217.74 211.06 17.60 8892 9.8910 195.03 211.07 16.67 8893 9.8920 177.23 211.07 15.88 8894 9.8930 196.83 211.07 16.75 8895 9.8940 203.40 211.07 17.03 8896 9.8950 201.02 211.07 16.96 8897 9.8960 205.96 211.08 17.09 8898 9.8970 201.36 211.08 16.84 8899 9.8980 223.02 211.08 17.82 8900 9.8990 205.49 211.08 17.03 8901 9.9000 198.49 211.09 16.74 8902 9.9010 177.87 211.09 15.88 8903 9.9020 184.04 211.09 16.05 8904 9.9030 183.23 211.09 16.01 8905 9.9040 185.78 211.10 16.24 8906 9.9050 218.77 211.10 17.64 8907 9.9060 212.95 211.10 17.33 8908 9.9070 176.87 211.10 15.77 8909 9.9080 183.74 211.10 16.14 8910 9.9090 191.11 211.11 16.41 8911 9.9100 188.96 211.11 16.33 8912 9.9110 211.35 211.11 17.30 8913 9.9120 211.62 211.11 17.37 8914 9.9130 207.45 211.12 17.19 8915 9.9140 189.98 211.12 16.38 8916 9.9150 204.64 211.12 17.08 8917 9.9160 213.97 211.12 17.43 8918 9.9170 248.14 211.12 18.79 8919 9.9180 216.42 211.13 17.48 8920 9.9190 218.00 211.13 17.63 8921 9.9200 213.36 211.13 17.44 8922 9.9210 204.64 211.13 17.04 8923 9.9220 197.40 211.13 16.72 8924 9.9230 204.11 211.14 17.05 8925 9.9240 188.58 211.14 16.34 8926 9.9250 203.39 211.14 17.01 8927 9.9260 186.92 211.14 16.37 8928 9.9270 190.63 211.15 16.50 8929 9.9280 204.59 211.15 17.08 8930 9.9290 199.78 211.15 16.81 8931 9.9300 245.70 211.15 18.73 8932 9.9310 195.11 211.15 16.59 8933 9.9320 173.77 211.16 15.70 8934 9.9330 218.39 211.16 17.65 8935 9.9340 198.62 211.16 16.71 8936 9.9350 202.27 211.16 16.85 8937 9.9360 212.41 211.17 17.32 8938 9.9370 183.72 211.17 16.07 8939 9.9380 185.62 211.17 16.28 8940 9.9390 191.07 211.17 16.46 8941 9.9400 186.77 211.17 16.29 8942 9.9410 198.74 211.18 16.78 8943 9.9420 228.30 211.18 18.07 8944 9.9430 171.36 211.18 15.59 8945 9.9440 204.32 211.18 17.02 8946 9.9450 208.93 211.18 17.23 8947 9.9460 191.30 211.19 16.49 8948 9.9470 187.17 211.19 16.30 8949 9.9480 174.83 211.19 15.74 8950 9.9490 163.30 211.19 15.19 8951 9.9500 218.06 211.20 17.56 8952 9.9510 182.78 211.20 15.98 8953 9.9520 182.65 211.20 16.11 8954 9.9530 187.58 211.20 16.32 8955 9.9540 175.17 211.21 15.72 8956 9.9550 185.33 211.21 16.23 8957 9.9560 180.80 211.21 16.02 8958 9.9570 183.14 211.21 16.18 8959 9.9580 189.47 211.21 16.35 8960 9.9590 220.10 211.22 17.70 8961 9.9600 207.83 211.22 17.21 8962 9.9610 190.66 211.22 16.36 8963 9.9620 197.67 211.22 16.74 8964 9.9630 198.88 211.22 16.76 8965 9.9640 184.97 211.23 16.21 8966 9.9650 193.84 211.23 16.61 8967 9.9660 191.83 211.23 16.56 8968 9.9670 191.96 211.23 16.59 8969 9.9680 189.04 211.24 16.38 8970 9.9690 189.22 211.24 16.35 8971 9.9700 193.63 211.24 16.64 8972 9.9710 195.01 211.24 16.63 8973 9.9720 186.69 211.24 16.22 8974 9.9730 233.55 211.25 18.20 8975 9.9740 193.95 211.25 16.52 8976 9.9750 193.83 211.25 16.56 8977 9.9760 209.31 211.25 17.20 8978 9.9770 173.91 211.25 15.68 8979 9.9780 178.54 211.26 15.94 8980 9.9790 160.58 211.26 15.07 8981 9.9800 193.40 211.26 16.57 8982 9.9810 189.12 211.26 16.41 8983 9.9820 209.14 211.26 17.24 8984 9.9830 200.83 211.27 16.89 8985 9.9840 173.32 211.27 15.71 8986 9.9850 188.47 211.27 16.32 8987 9.9860 176.74 211.27 15.84 8988 9.9870 195.06 211.27 16.67 8989 9.9880 200.55 211.28 16.94 8990 9.9890 201.70 211.28 16.88 8991 9.9900 206.51 211.28 17.08 8992 9.9910 222.05 211.28 17.76 8993 9.9920 228.02 211.29 17.95 8994 9.9930 205.15 211.29 17.08 8995 9.9940 198.26 211.29 16.81 8996 9.9950 200.92 211.29 16.87 8997 9.9960 201.24 211.29 16.97 8998 9.9970 214.33 211.30 17.51 8999 9.9980 205.39 211.30 17.06 9000 9.9990 176.21 211.30 15.78 9001 10.0000 178.44 211.30 14.49 9002 10.0010 184.17 211.30 14.78 9003 10.0020 192.57 211.31 15.06 9004 10.0030 204.28 211.31 15.56 9005 10.0040 214.87 211.31 16.03 9006 10.0050 207.94 211.31 15.74 9007 10.0060 191.24 211.32 15.06 9008 10.0070 223.40 211.32 16.27 9009 10.0080 222.15 211.32 16.26 9010 10.0090 210.33 211.32 15.78 9011 10.0100 192.11 211.32 15.02 9012 10.0110 195.82 211.33 15.22 9013 10.0120 193.55 211.33 15.17 9014 10.0130 212.80 211.33 16.00 9015 10.0140 188.56 211.33 14.98 9016 10.0150 202.36 211.33 15.46 9017 10.0160 217.35 211.34 16.01 9018 10.0170 199.50 211.34 15.40 9019 10.0180 188.72 211.34 14.98 9020 10.0190 179.62 211.34 14.64 9021 10.0200 187.26 211.35 14.95 9022 10.0210 212.46 211.35 15.93 9023 10.0220 203.22 211.35 15.58 9024 10.0230 211.50 211.35 15.84 9025 10.0240 201.31 211.35 15.54 9026 10.0250 208.37 211.35 15.74 9027 10.0260 206.00 211.36 15.57 9028 10.0270 204.62 211.36 15.53 9029 10.0280 198.62 211.36 15.24 9030 10.0290 236.71 211.36 16.81 9031 10.0300 196.10 211.37 15.28 9032 10.0310 190.40 211.37 15.14 9033 10.0320 190.36 211.37 15.06 9034 10.0330 209.39 211.37 15.74 9035 10.0340 227.69 211.37 16.44 9036 10.0350 225.82 211.38 16.41 9037 10.0360 196.27 211.38 15.17 9038 10.0370 207.95 211.38 15.69 9039 10.0380 188.40 211.38 14.93 9040 10.0390 191.18 211.38 14.99 9041 10.0400 195.74 211.39 15.20 9042 10.0410 211.96 211.39 15.82 9043 10.0420 215.73 211.39 16.01 9044 10.0430 226.07 211.39 16.42 9045 10.0440 215.13 211.39 16.03 9046 10.0450 198.16 211.40 15.32 9047 10.0460 218.22 211.40 16.11 9048 10.0470 201.83 211.40 15.39 9049 10.0480 200.33 211.40 15.41 9050 10.0490 209.19 211.40 15.77 9051 10.0500 196.10 211.41 15.28 9052 10.0510 173.02 211.41 14.30 9053 10.0520 221.26 211.41 16.16 9054 10.0530 212.54 211.41 15.91 9055 10.0540 195.79 211.41 15.27 9056 10.0550 199.07 211.42 15.35 9057 10.0560 207.79 211.42 15.77 9058 10.0570 182.44 211.42 14.71 9059 10.0580 181.72 211.42 14.66 9060 10.0590 191.07 211.43 15.02 9061 10.0600 189.58 211.43 14.99 9062 10.0610 184.61 211.43 14.79 9063 10.0620 192.00 211.43 15.10 9064 10.0630 185.56 211.43 14.80 9065 10.0640 186.40 211.43 14.80 9066 10.0650 180.75 211.44 14.59 9067 10.0660 196.07 211.44 15.31 9068 10.0670 167.50 211.44 14.04 9069 10.0680 185.65 211.44 14.86 9070 10.0690 194.70 211.45 15.25 9071 10.0700 185.64 211.45 14.88 9072 10.0710 181.84 211.45 14.62 9073 10.0720 211.98 211.45 15.90 9074 10.0730 216.58 211.45 16.08 9075 10.0740 203.85 211.46 15.52 9076 10.0750 191.27 211.46 15.03 9077 10.0760 206.53 211.46 15.63 9078 10.0770 177.37 211.46 14.54 9079 10.0780 194.71 211.46 15.18 9080 10.0790 211.08 211.46 15.84 9081 10.0800 187.35 211.47 14.81 9082 10.0810 160.03 211.47 13.62 9083 10.0820 208.48 211.47 15.65 9084 10.0830 207.63 222.79 15.70 9085 10.0840 190.13 222.92 15.07 9086 10.0850 205.91 223.07 15.68 9087 10.0860 212.77 223.21 15.87 9088 10.0870 197.13 223.35 15.30 9089 10.0880 201.59 223.51 15.53 9090 10.0890 209.80 223.66 15.69 9091 10.0900 191.44 223.81 14.96 9092 10.0910 166.25 223.97 14.04 9093 10.0920 189.84 224.13 14.93 9094 10.0930 206.29 224.29 15.56 9095 10.0940 204.16 224.46 15.56 9096 10.0950 224.90 224.63 16.29 9097 10.0960 198.74 224.80 15.27 9098 10.0970 230.69 224.98 16.51 9099 10.0980 202.11 225.16 15.38 9100 10.0990 194.69 225.35 15.20 9101 10.1000 194.32 225.53 15.21 9102 10.1010 202.33 225.72 15.47 9103 10.1020 213.23 225.92 15.88 9104 10.1030 192.79 226.12 15.05 9105 10.1040 181.04 226.32 14.62 9106 10.1050 199.21 226.53 15.38 9107 10.1060 170.63 226.74 14.17 9108 10.1070 202.46 226.96 15.51 9109 10.1080 201.19 227.18 15.46 9110 10.1090 230.25 227.40 16.58 9111 10.1100 189.30 227.63 14.99 9112 10.1110 205.67 227.87 15.70 9113 10.1120 197.89 228.11 15.28 9114 10.1130 186.69 228.35 14.93 9115 10.1140 216.99 228.60 16.12 9116 10.1150 214.82 228.86 15.92 9117 10.1160 212.34 229.12 15.83 9118 10.1170 229.88 229.39 16.55 9119 10.1180 203.70 229.66 15.54 9120 10.1190 206.62 229.94 15.69 9121 10.1200 186.96 230.23 14.89 9122 10.1210 205.18 230.52 15.67 9123 10.1220 205.38 230.82 15.66 9124 10.1230 195.31 231.13 15.15 9125 10.1240 210.79 231.44 15.80 9126 10.1250 203.42 231.76 15.54 9127 10.1260 222.66 232.09 16.17 9128 10.1270 203.44 232.43 15.54 9129 10.1280 219.57 232.78 16.20 9130 10.1290 214.70 233.13 15.88 9131 10.1300 220.09 233.49 16.28 9132 10.1310 218.57 233.87 16.14 9133 10.1320 206.46 234.25 15.60 9134 10.1330 202.79 234.64 15.45 9135 10.1340 189.06 235.04 14.97 9136 10.1350 205.30 235.46 15.59 9137 10.1360 210.60 235.88 15.75 9138 10.1370 206.61 236.31 15.69 9139 10.1380 206.55 236.76 15.68 9140 10.1390 219.38 237.22 16.10 9141 10.1400 229.06 237.69 16.55 9142 10.1410 203.65 238.17 15.57 9143 10.1420 207.05 238.67 15.53 9144 10.1430 192.44 239.18 15.08 9145 10.1440 222.04 239.71 16.23 9146 10.1450 212.72 240.25 15.87 9147 10.1460 199.86 240.80 15.30 9148 10.1470 233.93 241.37 16.58 9149 10.1480 220.85 241.96 16.13 9150 10.1490 226.82 242.57 16.40 9151 10.1500 234.65 243.19 16.65 9152 10.1510 236.87 243.84 16.65 9153 10.1520 219.20 244.50 16.06 9154 10.1530 221.99 245.19 16.29 9155 10.1540 228.97 245.89 16.49 9156 10.1550 250.91 246.62 17.33 9157 10.1560 245.53 247.37 16.96 9158 10.1570 261.17 248.15 17.57 9159 10.1580 233.56 248.95 16.67 9160 10.1590 243.60 249.77 17.05 9161 10.1600 232.08 250.63 16.54 9162 10.1610 225.06 251.51 16.29 9163 10.1620 226.48 252.42 16.35 9164 10.1630 247.35 253.37 17.12 9165 10.1640 235.16 254.35 16.70 9166 10.1650 235.12 255.36 16.75 9167 10.1660 250.56 256.41 17.22 9168 10.1670 246.52 257.50 17.06 9169 10.1680 236.00 258.62 16.76 9170 10.1690 255.30 259.79 17.38 9171 10.1700 241.51 261.00 16.88 9172 10.1710 234.61 262.26 16.62 9173 10.1720 228.44 263.57 16.44 9174 10.1730 252.54 264.93 17.27 9175 10.1740 247.17 266.34 17.17 9176 10.1750 248.06 267.81 17.17 9177 10.1760 272.67 269.33 18.04 9178 10.1770 261.90 270.93 17.64 9179 10.1780 254.17 272.58 17.34 9180 10.1790 261.12 274.31 17.49 9181 10.1800 268.33 276.11 17.81 9182 10.1810 261.34 277.99 17.64 9183 10.1820 269.44 279.95 17.81 9184 10.1830 295.88 282.00 18.75 9185 10.1840 281.81 284.15 18.29 9186 10.1850 284.28 286.39 18.41 9187 10.1860 276.07 288.74 18.14 9188 10.1870 279.60 291.20 18.27 9189 10.1880 285.18 293.77 18.34 9190 10.1890 297.88 296.48 18.79 9191 10.1900 292.59 299.32 18.69 9192 10.1910 310.21 302.30 19.18 9193 10.1920 304.07 305.45 18.98 9194 10.1930 302.99 308.74 18.96 9195 10.1940 320.28 312.23 19.48 9196 10.1950 334.48 315.89 19.91 9197 10.1960 316.24 319.77 19.35 9198 10.1970 338.73 323.86 20.05 9199 10.1980 334.82 328.18 19.86 9200 10.1990 370.84 332.77 20.94 9201 10.2000 372.19 337.61 20.98 9202 10.2010 353.55 342.76 20.50 9203 10.2020 382.27 348.23 21.25 9204 10.2030 382.96 354.04 21.22 9205 10.2040 372.04 360.24 20.90 9206 10.2050 412.90 366.83 22.10 9207 10.2060 392.97 373.88 21.59 9208 10.2070 397.40 381.41 21.71 9209 10.2080 404.25 389.47 21.97 9210 10.2090 409.45 398.11 22.01 9211 10.2100 443.29 407.40 22.98 9212 10.2110 473.56 417.39 23.71 9213 10.2120 464.45 428.14 23.35 9214 10.2130 516.50 439.77 24.69 9215 10.2140 511.62 452.33 24.62 9216 10.2150 497.66 465.95 24.30 9217 10.2160 564.10 480.73 25.91 9218 10.2170 572.27 496.84 26.08 9219 10.2180 571.42 514.41 26.02 9220 10.2190 608.20 533.60 26.80 9221 10.2200 645.52 554.67 27.59 9222 10.2210 647.68 577.82 27.65 9223 10.2220 663.64 603.33 28.04 9224 10.2230 765.55 631.55 30.10 9225 10.2240 766.58 662.87 30.07 9226 10.2250 780.30 697.74 30.46 9227 10.2260 857.81 736.61 31.95 9228 10.2270 931.02 780.27 33.32 9229 10.2280 961.98 829.37 33.84 9230 10.2290 998.46 884.87 34.35 9231 10.2300 1057.97 947.88 35.39 9232 10.2310 1139.93 1019.81 36.66 9233 10.2320 1183.60 1102.20 37.42 9234 10.2330 1380.85 1197.11 40.47 9235 10.2340 1507.52 1307.11 42.33 9236 10.2350 1585.64 1434.92 43.42 9237 10.2360 1755.99 1584.69 45.60 9238 10.2370 1903.34 1760.72 47.52 9239 10.2380 2085.88 1968.23 49.88 9240 10.2390 2311.10 2213.77 52.36 9241 10.2400 2576.81 2504.65 55.26 9242 10.2410 2910.07 2849.03 58.71 9243 10.2420 3336.72 3253.41 62.87 9244 10.2430 3861.92 3724.17 67.73 9245 10.2440 4337.74 4259.53 71.65 9246 10.2450 5036.74 4845.18 77.23 9247 10.2460 5897.00 5450.27 83.65 9248 10.2470 6512.11 6015.10 87.92 9249 10.2480 6996.94 6460.12 91.24 9250 10.2490 7270.22 6701.31 93.01 9251 10.2500 6787.66 6686.45 89.86 9252 10.2510 6491.19 6418.36 87.88 9253 10.2520 5802.12 5956.17 82.92 9254 10.2530 5319.01 5382.69 79.52 9255 10.2540 4701.46 4777.77 74.78 9256 10.2550 4125.16 4196.18 69.97 9257 10.2560 3723.59 3668.17 66.47 9258 10.2570 3325.19 3204.87 62.91 9259 10.2580 2922.79 2806.99 58.78 9260 10.2590 2541.03 2469.59 54.94 9261 10.2600 2423.25 2183.97 53.70 9262 10.2610 2150.11 1943.08 50.59 9263 10.2620 1921.08 1739.44 47.69 9264 10.2630 1714.45 1566.77 45.01 9265 10.2640 1617.25 1419.65 43.79 9266 10.2650 1475.72 1293.93 41.83 9267 10.2660 1392.57 1185.85 40.72 9268 10.2670 1298.73 1092.39 39.22 9269 10.2680 1138.81 1011.35 36.71 9270 10.2690 1093.61 940.49 36.02 9271 10.2700 1058.30 878.34 35.40 9272 10.2710 972.42 823.66 33.94 9273 10.2720 978.50 775.18 34.13 9274 10.2730 892.89 732.13 32.54 9275 10.2740 905.56 693.68 32.88 9276 10.2750 872.33 659.30 32.17 9277 10.2760 814.34 628.35 31.11 9278 10.2770 752.28 600.43 29.89 9279 10.2780 679.89 575.22 28.37 9280 10.2790 685.46 552.31 28.54 9281 10.2800 640.13 531.48 27.64 9282 10.2810 627.87 512.48 27.30 9283 10.2820 598.98 495.09 26.62 9284 10.2830 556.96 479.14 25.70 9285 10.2840 555.88 464.48 25.68 9286 10.2850 552.39 451.01 25.56 9287 10.2860 512.58 438.55 24.64 9288 10.2870 494.71 427.04 24.16 9289 10.2880 479.43 416.38 23.81 9290 10.2890 469.30 406.48 23.54 9291 10.2900 471.82 397.27 23.63 9292 10.2910 432.30 388.69 22.59 9293 10.2920 433.41 380.70 22.68 9294 10.2930 418.79 373.22 22.29 9295 10.2940 433.88 366.24 22.75 9296 10.2950 401.87 359.69 21.87 9297 10.2960 397.48 353.55 21.81 9298 10.2970 382.07 347.78 21.34 9299 10.2980 398.03 342.35 21.72 9300 10.2990 386.42 337.24 21.38 9301 10.3000 367.51 332.42 20.90 9302 10.3010 389.44 327.88 21.55 9303 10.3020 351.57 323.58 20.34 9304 10.3030 381.79 319.52 21.25 9305 10.3040 348.64 315.68 20.29 9306 10.3050 336.02 312.03 19.94 9307 10.3060 306.87 308.58 19.07 9308 10.3070 333.14 305.30 19.81 9309 10.3080 319.84 302.18 19.42 9310 10.3090 315.90 299.22 19.32 9311 10.3100 295.64 296.39 18.71 9312 10.3110 282.62 293.71 18.33 9313 10.3120 290.98 291.15 18.58 9314 10.3130 326.66 288.70 19.78 9315 10.3140 316.90 286.37 19.44 9316 10.3150 319.71 284.15 19.56 9317 10.3160 305.85 282.02 19.14 9318 10.3170 307.36 279.98 19.08 9319 10.3180 269.42 278.03 17.89 9320 10.3190 277.35 276.16 18.12 9321 10.3200 295.81 274.38 18.66 9322 10.3210 311.67 272.66 19.24 9323 10.3220 286.01 271.01 18.40 9324 10.3230 283.19 269.43 18.31 9325 10.3240 299.11 267.92 18.81 9326 10.3250 268.58 266.46 17.80 9327 10.3260 261.73 265.05 17.62 9328 10.3270 248.82 263.71 17.18 9329 10.3280 246.25 262.41 17.07 9330 10.3290 239.02 261.16 16.75 9331 10.3300 254.68 259.95 17.35 9332 10.3310 247.08 258.79 17.10 9333 10.3320 256.27 257.68 17.37 9334 10.3330 245.04 256.60 16.96 9335 10.3340 252.66 255.56 17.27 9336 10.3350 266.19 254.55 17.83 9337 10.3360 262.00 253.58 17.65 9338 10.3370 253.27 252.64 17.32 9339 10.3380 254.10 251.74 17.39 9340 10.3390 218.85 250.86 16.17 9341 10.3400 258.68 250.01 17.56 9342 10.3410 263.14 249.19 17.67 9343 10.3420 253.17 248.40 17.29 9344 10.3430 237.16 247.63 16.83 9345 10.3440 230.24 246.88 16.51 9346 10.3450 249.40 246.16 17.18 9347 10.3460 254.17 245.46 17.36 9348 10.3470 245.12 244.78 17.14 9349 10.3480 242.35 244.13 16.97 9350 10.3490 244.46 243.49 16.93 9351 10.3500 249.23 242.87 17.19 9352 10.3510 238.77 242.27 16.84 9353 10.3520 230.25 241.68 16.63 9354 10.3530 233.69 241.12 16.72 9355 10.3540 238.88 240.57 16.78 9356 10.3550 242.53 240.03 16.91 9357 10.3560 227.74 239.51 16.46 9358 10.3570 244.71 239.01 17.04 9359 10.3580 247.75 238.51 17.11 9360 10.3590 221.37 238.04 16.14 9361 10.3600 220.19 237.57 16.19 9362 10.3610 214.68 237.12 15.89 9363 10.3620 247.24 236.68 17.16 9364 10.3630 237.19 236.25 16.83 9365 10.3640 212.80 235.83 15.83 9366 10.3650 243.85 235.42 17.01 9367 10.3660 236.60 235.02 16.69 9368 10.3670 213.31 234.63 15.92 9369 10.3680 194.46 234.26 15.10 9370 10.3690 217.39 233.89 16.01 9371 10.3700 205.57 233.53 15.59 9372 10.3710 208.16 233.18 15.69 9373 10.3720 228.84 232.84 16.46 9374 10.3730 235.23 232.51 16.75 9375 10.3740 218.43 232.18 16.09 9376 10.3750 205.88 231.86 15.62 9377 10.3760 231.47 231.55 16.56 9378 10.3770 215.07 231.25 15.97 9379 10.3780 223.28 230.96 16.28 9380 10.3790 208.34 230.67 15.74 9381 10.3800 239.62 230.38 16.80 9382 10.3810 227.14 230.11 16.45 9383 10.3820 189.22 229.84 14.92 9384 10.3830 211.56 229.58 15.82 9385 10.3840 239.13 229.32 16.79 9386 10.3850 247.01 229.07 17.04 9387 10.3860 218.60 239.54 16.10 9388 10.3870 213.03 239.44 15.92 9389 10.3880 218.91 239.34 16.08 9390 10.3890 222.48 239.26 16.26 9391 10.3900 228.49 239.18 16.48 9392 10.3910 224.38 239.10 16.28 9393 10.3920 211.38 239.04 15.75 9394 10.3930 216.18 238.98 16.06 9395 10.3940 213.70 238.93 15.83 9396 10.3950 244.36 238.89 16.94 9397 10.3960 205.99 238.86 15.56 9398 10.3970 195.71 238.83 15.24 9399 10.3980 203.03 238.81 15.49 9400 10.3990 237.49 238.80 16.83 9401 10.4000 218.90 238.80 16.20 9402 10.4010 204.76 238.80 15.66 9403 10.4020 216.55 238.81 15.96 9404 10.4030 238.87 238.83 16.81 9405 10.4040 227.15 238.85 16.36 9406 10.4050 237.44 238.88 16.78 9407 10.4060 226.12 238.93 16.39 9408 10.4070 189.83 238.97 14.90 9409 10.4080 201.99 239.03 15.46 9410 10.4090 210.16 239.09 15.82 9411 10.4100 222.29 239.16 16.33 9412 10.4110 219.53 239.24 16.14 9413 10.4120 241.03 239.33 16.98 9414 10.4130 227.40 239.43 16.28 9415 10.4140 201.60 239.53 15.34 9416 10.4150 186.49 239.64 14.81 9417 10.4160 204.41 239.76 15.54 9418 10.4170 215.56 228.73 15.97 9419 10.4180 221.18 229.00 16.16 9420 10.4190 196.60 229.27 15.29 9421 10.4200 228.71 229.55 16.51 9422 10.4210 239.89 229.84 16.93 9423 10.4220 235.69 230.14 16.74 9424 10.4230 223.69 230.44 16.37 9425 10.4240 219.47 230.76 16.17 9426 10.4250 209.95 231.07 15.77 9427 10.4260 214.55 231.40 15.90 9428 10.4270 213.06 231.74 15.86 9429 10.4280 221.68 232.08 16.24 9430 10.4290 248.91 232.44 17.10 9431 10.4300 242.48 232.80 17.00 9432 10.4310 248.60 233.17 17.25 9433 10.4320 234.95 233.55 16.78 9434 10.4330 226.33 233.95 16.39 9435 10.4340 220.39 234.35 16.10 9436 10.4350 232.12 234.77 16.55 9437 10.4360 236.44 235.20 16.74 9438 10.4370 222.63 235.63 16.24 9439 10.4380 223.73 236.09 16.30 9440 10.4390 240.48 236.55 16.91 9441 10.4400 227.43 237.03 16.34 9442 10.4410 217.01 237.52 16.00 9443 10.4420 234.44 238.03 16.69 9444 10.4430 221.37 238.55 16.14 9445 10.4440 225.45 239.09 16.32 9446 10.4450 225.84 239.64 16.34 9447 10.4460 268.05 240.22 17.91 9448 10.4470 239.49 240.80 16.79 9449 10.4480 231.21 241.41 16.49 9450 10.4490 240.05 242.04 16.85 9451 10.4500 234.20 242.69 16.73 9452 10.4510 274.88 243.36 18.05 9453 10.4520 250.08 244.05 17.12 9454 10.4530 256.66 244.76 17.42 9455 10.4540 234.83 245.50 16.72 9456 10.4550 214.82 246.26 15.99 9457 10.4560 202.94 247.05 15.60 9458 10.4570 245.31 247.87 17.11 9459 10.4580 252.71 248.72 17.33 9460 10.4590 247.60 249.59 17.16 9461 10.4600 265.66 250.50 17.78 9462 10.4610 262.46 251.44 17.77 9463 10.4620 245.27 252.42 17.11 9464 10.4630 256.19 253.43 17.39 9465 10.4640 259.62 254.48 17.56 9466 10.4650 282.48 255.57 18.35 9467 10.4660 255.99 256.71 17.45 9468 10.4670 266.16 257.89 17.73 9469 10.4680 253.60 259.11 17.40 9470 10.4690 259.57 260.39 17.53 9471 10.4700 285.11 261.72 18.45 9472 10.4710 273.00 263.10 18.00 9473 10.4720 267.67 264.54 17.88 9474 10.4730 285.23 266.05 18.47 9475 10.4740 269.27 267.62 17.86 9476 10.4750 277.68 269.26 18.12 9477 10.4760 272.48 270.97 17.95 9478 10.4770 287.26 272.76 18.45 9479 10.4780 303.00 274.63 18.95 9480 10.4790 320.09 276.59 19.51 9481 10.4800 286.05 278.64 18.39 9482 10.4810 295.93 280.79 18.76 9483 10.4820 305.86 283.05 19.07 9484 10.4830 304.12 285.42 18.99 9485 10.4840 299.22 287.91 18.82 9486 10.4850 349.07 290.53 20.31 9487 10.4860 315.74 293.29 19.37 9488 10.4870 340.93 296.20 20.13 9489 10.4880 342.95 299.26 20.18 9490 10.4890 351.24 302.49 20.41 9491 10.4900 341.71 305.90 20.09 9492 10.4910 346.05 309.51 20.27 9493 10.4920 364.11 313.33 20.80 9494 10.4930 356.12 317.38 20.45 9495 10.4940 387.11 321.68 21.44 9496 10.4950 386.12 326.24 21.39 9497 10.4960 381.12 331.09 21.25 9498 10.4970 353.63 336.25 20.47 9499 10.4980 352.81 341.76 20.39 9500 10.4990 363.24 347.64 20.72 9501 10.5000 418.10 353.93 22.34 9502 10.5010 453.52 360.65 23.22 9503 10.5020 420.05 367.87 22.36 9504 10.5030 423.71 375.62 22.38 9505 10.5040 443.43 383.95 22.87 9506 10.5050 440.66 392.93 22.85 9507 10.5060 461.41 402.63 23.35 9508 10.5070 480.99 413.11 23.90 9509 10.5080 520.49 424.49 24.84 9510 10.5090 491.97 436.84 24.19 9511 10.5100 514.27 450.29 24.77 9512 10.5110 507.59 464.95 24.46 9513 10.5120 529.57 481.01 25.04 9514 10.5130 582.21 498.60 26.22 9515 10.5140 675.62 517.95 28.36 9516 10.5150 626.66 539.31 27.29 9517 10.5160 606.33 562.91 26.78 9518 10.5170 673.66 589.11 28.28 9519 10.5180 678.80 618.29 28.31 9520 10.5190 747.18 650.92 29.78 9521 10.5200 746.32 687.54 29.66 9522 10.5210 833.69 728.71 31.51 9523 10.5220 863.25 782.94 31.99 9524 10.5230 897.04 836.02 32.67 9525 10.5240 1000.21 896.65 34.50 9526 10.5250 1023.19 966.24 34.85 9527 10.5260 1098.83 1046.64 36.07 9528 10.5270 1192.86 1139.90 37.64 9529 10.5280 1360.24 1248.79 40.18 9530 10.5290 1491.09 1376.79 42.11 9531 10.5300 1657.65 1527.71 44.25 9532 10.5310 1769.69 1707.18 45.81 9533 10.5320 1933.52 1921.04 47.85 9534 10.5330 2139.86 2176.83 50.30 9535 10.5340 2456.69 2483.30 53.91 9536 10.5350 2916.42 2848.88 58.84 9537 10.5360 3440.55 3282.04 63.82 9538 10.5370 4076.60 3785.11 69.55 9539 10.5380 4768.85 4353.17 75.24 9540 10.5390 5487.85 4959.32 80.71 9541 10.5400 6310.65 5550.52 86.59 9542 10.5410 6740.44 6043.69 89.44 9543 10.5420 6925.08 6341.50 90.77 9544 10.5430 6575.55 6373.21 88.41 9545 10.5440 5990.01 6130.67 84.38 9546 10.5450 5402.36 5673.11 80.15 9547 10.5460 4710.56 5096.51 74.78 9548 10.5470 4103.83 4487.65 69.78 9549 10.5480 3565.09 3908.14 65.00 9550 10.5490 3096.25 3389.51 60.58 9551 10.5500 2780.00 2941.25 57.46 9552 10.5510 2393.37 2561.51 53.26 9553 10.5520 2095.33 2242.77 49.80 9554 10.5530 1868.77 1976.74 47.07 9555 10.5540 1664.35 1754.44 44.46 9556 10.5550 1481.95 1568.08 41.96 9557 10.5560 1336.19 1411.58 39.80 9558 10.5570 1259.26 1279.04 38.61 9559 10.5580 1205.25 1166.48 37.86 9560 10.5590 1115.18 1070.15 36.39 9561 10.5600 1094.43 987.40 36.06 9562 10.5610 985.02 915.82 34.16 9563 10.5620 887.44 853.54 32.38 9564 10.5630 837.29 799.18 31.42 9565 10.5640 797.69 751.36 30.69 9566 10.5650 790.89 709.19 30.69 9567 10.5660 690.98 671.82 28.61 9568 10.5670 702.94 638.54 28.89 9569 10.5680 634.85 608.84 27.45 9570 10.5690 584.87 582.19 26.30 9571 10.5700 574.74 558.25 26.07 9572 10.5710 520.43 536.62 24.76 9573 10.5720 544.34 517.06 25.44 9574 10.5730 532.81 499.31 25.17 9575 10.5740 527.70 483.14 25.03 9576 10.5750 524.92 468.41 25.02 9577 10.5760 513.11 454.93 24.62 9578 10.5770 473.24 442.59 23.66 9579 10.5780 446.12 431.24 22.95 9580 10.5790 441.66 420.81 22.84 9581 10.5800 470.59 411.20 23.68 9582 10.5810 426.05 402.32 22.42 9583 10.5820 397.40 394.12 21.63 9584 10.5830 414.80 386.51 22.23 9585 10.5840 377.35 379.46 21.08 9586 10.5850 393.67 372.91 21.60 9587 10.5860 376.52 366.83 21.15 9588 10.5870 379.85 361.16 21.19 9589 10.5880 378.25 355.88 21.18 9590 10.5890 363.03 350.96 20.76 9591 10.5900 351.60 346.36 20.46 9592 10.5910 351.25 342.06 20.36 9593 10.5920 360.39 338.05 20.73 9594 10.5930 343.44 334.29 20.18 9595 10.5940 348.78 330.78 20.42 9596 10.5950 329.65 327.49 19.79 9597 10.5960 310.21 324.42 19.15 9598 10.5970 321.89 321.53 19.51 9599 10.5980 300.26 318.83 18.85 9600 10.5990 333.21 316.30 19.90 9601 10.6000 307.67 313.93 19.10 9602 10.6010 317.58 311.71 19.43 9603 10.6020 313.58 309.64 19.32 9604 10.6030 305.90 307.70 19.12 9605 10.6040 326.61 305.89 19.77 9606 10.6050 295.78 304.20 18.65 9607 10.6060 299.72 302.62 18.84 9608 10.6070 296.82 301.15 18.80 9609 10.6080 288.79 299.79 18.40 9610 10.6090 298.85 298.53 18.76 9611 10.6100 289.98 297.36 18.52 9612 10.6110 280.13 296.28 18.23 9613 10.6120 277.22 295.30 18.11 9614 10.6130 292.29 294.39 18.51 9615 10.6140 270.49 293.58 17.86 9616 10.6150 266.70 292.84 17.74 9617 10.6160 273.54 292.17 18.07 9618 10.6170 273.75 291.59 18.07 9619 10.6180 285.94 291.08 18.39 9620 10.6190 254.30 290.64 17.22 9621 10.6200 269.60 290.27 17.89 9622 10.6210 264.36 289.97 17.75 9623 10.6220 270.44 289.74 17.92 9624 10.6230 285.04 289.58 18.44 9625 10.6240 272.93 289.49 17.99 9626 10.6250 281.71 289.46 18.25 9627 10.6260 268.51 289.51 17.88 9628 10.6270 284.63 289.62 18.46 9629 10.6280 270.57 289.80 17.92 9630 10.6290 258.34 290.04 17.50 9631 10.6300 277.70 290.36 18.06 9632 10.6310 294.25 290.75 18.60 9633 10.6320 289.82 291.21 18.51 9634 10.6330 277.43 291.74 18.15 9635 10.6340 260.65 292.35 17.59 9636 10.6350 271.57 293.03 17.96 9637 10.6360 298.71 293.79 18.88 9638 10.6370 287.74 294.64 18.44 9639 10.6380 284.46 295.56 18.41 9640 10.6390 240.88 296.58 16.89 9641 10.6400 272.91 297.68 18.00 9642 10.6410 284.36 298.88 18.41 9643 10.6420 288.78 300.17 18.50 9644 10.6430 283.24 301.57 18.30 9645 10.6440 289.66 303.07 18.50 9646 10.6450 277.05 304.68 18.07 9647 10.6460 267.20 306.41 17.76 9648 10.6470 315.15 308.27 19.35 9649 10.6480 309.65 310.25 19.22 9650 10.6490 285.54 312.38 18.42 9651 10.6500 327.36 314.65 19.69 9652 10.6510 344.94 317.07 20.26 9653 10.6520 313.00 319.67 19.29 9654 10.6530 319.27 322.43 19.53 9655 10.6540 311.46 325.39 19.11 9656 10.6550 297.55 328.54 18.74 9657 10.6560 306.45 331.92 19.05 9658 10.6570 328.49 335.52 19.78 9659 10.6580 301.82 339.37 18.90 9660 10.6590 319.44 343.50 19.51 9661 10.6600 345.42 347.91 20.31 9662 10.6610 333.68 352.63 19.83 9663 10.6620 320.31 357.69 19.52 9664 10.6630 329.75 363.12 19.77 9665 10.6640 343.43 368.95 20.19 9666 10.6650 352.51 375.22 20.43 9667 10.6660 324.69 381.98 19.60 9668 10.6670 360.12 389.24 20.67 9669 10.6680 359.47 397.08 20.64 9670 10.6690 367.15 405.55 20.81 9671 10.6700 394.81 414.73 21.59 9672 10.6710 402.57 424.65 21.81 9673 10.6720 401.28 435.45 21.79 9674 10.6730 409.56 447.19 22.09 9675 10.6740 423.42 459.96 22.31 9676 10.6750 435.93 473.93 22.71 9677 10.6760 455.72 489.20 23.19 9678 10.6770 477.56 505.97 23.76 9679 10.6780 489.74 524.38 24.04 9680 10.6790 494.77 544.69 24.19 9681 10.6800 511.23 567.15 24.61 9682 10.6810 540.97 592.00 25.29 9683 10.6820 612.79 619.68 27.00 9684 10.6830 599.54 650.53 26.66 9685 10.6840 649.76 685.05 27.84 9686 10.6850 657.19 723.86 28.03 9687 10.6860 730.44 767.59 29.43 9688 10.6870 836.56 817.07 31.57 9689 10.6880 870.54 873.30 32.22 9690 10.6890 940.83 937.52 33.45 9691 10.6900 1002.79 1010.97 34.48 9692 10.6910 1092.04 1095.61 36.05 9693 10.6920 1169.21 1193.37 37.33 9694 10.6930 1315.70 1306.59 39.56 9695 10.6940 1398.03 1438.20 40.78 9696 10.6950 1518.98 1591.51 42.44 9697 10.6960 1735.41 1770.37 45.45 9698 10.6970 1925.07 1978.22 47.80 9699 10.6980 2181.95 2219.47 50.93 9700 10.6990 2464.25 2496.49 54.14 9701 10.7000 2727.30 2808.97 56.93 9702 10.7010 3125.35 3143.04 60.94 9703 10.7020 3538.48 3506.85 64.86 9704 10.7030 3849.25 3867.66 67.55 9705 10.7040 4210.83 4190.54 70.71 9706 10.7050 4521.46 4433.73 73.29 9707 10.7060 4694.80 4557.84 74.61 9708 10.7070 4560.21 4539.85 73.58 9709 10.7080 4347.61 4383.15 71.87 9710 10.7090 4039.45 4116.17 69.25 9711 10.7100 3646.97 3780.22 65.67 9712 10.7110 3397.99 3415.82 63.56 9713 10.7120 3057.55 3055.16 60.19 9714 10.7130 2762.55 2717.53 57.24 9715 10.7140 2479.08 2413.64 54.24 9716 10.7150 2241.30 2145.50 51.54 9717 10.7160 1985.27 1912.81 48.41 9718 10.7170 1783.90 1712.27 45.94 9719 10.7180 1685.01 1539.93 44.76 9720 10.7190 1456.21 1392.19 41.56 9721 10.7200 1375.38 1265.28 40.35 9722 10.7210 1317.61 1156.01 39.53 9723 10.7220 1179.41 1061.56 37.32 9724 10.7230 1113.66 979.81 36.37 9725 10.7240 998.12 908.53 34.37 9726 10.7250 979.70 846.24 34.16 9727 10.7260 889.15 791.61 32.47 9728 10.7270 839.72 743.47 31.49 9729 10.7280 774.85 700.87 30.34 9730 10.7290 788.47 662.99 30.63 9731 10.7300 733.91 629.27 29.56 9732 10.7310 712.46 599.03 29.12 9733 10.7320 702.09 571.89 28.96 9734 10.7330 644.56 547.47 27.73 9735 10.7340 633.90 525.36 27.39 9736 10.7350 678.44 505.34 28.38 9737 10.7360 618.59 487.13 27.12 9738 10.7370 620.24 470.55 27.23 9739 10.7380 577.98 455.39 26.21 9740 10.7390 585.29 441.50 26.38 9741 10.7400 584.06 428.77 26.39 9742 10.7410 585.78 417.03 26.37 9743 10.7420 600.15 406.23 26.74 9744 10.7430 578.78 396.24 26.17 9745 10.7440 537.61 386.99 25.13 9746 10.7450 543.86 378.42 25.41 9747 10.7460 549.76 370.45 25.50 9748 10.7470 558.65 363.05 25.76 9749 10.7480 520.40 356.14 24.84 9750 10.7490 514.36 349.70 24.72 9751 10.7500 540.17 343.67 25.32 9752 10.7510 524.28 338.02 24.99 9753 10.7520 487.09 332.74 24.05 9754 10.7530 506.88 327.78 24.52 9755 10.7540 506.19 323.11 24.55 9756 10.7550 487.71 318.72 24.09 9757 10.7560 459.01 314.59 23.30 9758 10.7570 451.06 310.69 23.16 9759 10.7580 463.68 307.01 23.51 9760 10.7590 455.42 303.53 23.28 9761 10.7600 453.81 300.24 23.30 9762 10.7610 473.50 297.12 23.78 9763 10.7620 432.14 294.17 22.61 9764 10.7630 415.06 291.37 22.14 9765 10.7640 423.20 288.70 22.38 9766 10.7650 433.07 286.17 22.73 9767 10.7660 446.32 283.77 23.17 9768 10.7670 427.07 281.48 22.49 9769 10.7680 423.16 279.29 22.39 9770 10.7690 414.43 277.21 22.27 9771 10.7700 381.13 275.23 21.20 9772 10.7710 389.79 273.33 21.47 9773 10.7720 381.70 271.52 21.29 9774 10.7730 401.72 269.79 21.84 9775 10.7740 376.02 268.13 21.12 9776 10.7750 358.21 266.55 20.62 9777 10.7760 362.27 265.03 20.75 9778 10.7770 358.71 263.57 20.59 9779 10.7780 351.33 262.18 20.53 9780 10.7790 322.96 260.84 19.53 9781 10.7800 344.22 259.55 20.13 9782 10.7810 372.41 258.32 20.97 9783 10.7820 355.57 257.13 20.55 9784 10.7830 328.81 255.99 19.68 9785 10.7840 344.25 254.89 20.23 9786 10.7850 319.66 253.83 19.44 9787 10.7860 353.52 252.81 20.46 9788 10.7870 369.63 251.83 20.94 9789 10.7880 372.83 250.89 20.96 9790 10.7890 336.52 249.98 19.99 9791 10.7900 321.41 249.10 19.48 9792 10.7910 339.74 248.25 19.99 9793 10.7920 334.90 247.43 19.84 9794 10.7930 310.39 246.64 19.16 9795 10.7940 311.91 245.87 19.19 9796 10.7950 301.41 245.13 18.93 9797 10.7960 318.99 244.42 19.55 9798 10.7970 320.69 243.73 19.46 9799 10.7980 324.83 243.06 19.54 9800 10.7990 322.16 242.41 19.52 9801 10.8000 300.08 241.78 18.87 9802 10.8010 278.88 241.17 18.20 9803 10.8020 318.24 240.59 19.37 9804 10.8030 324.71 240.01 19.47 9805 10.8040 339.70 239.46 20.01 9806 10.8050 301.48 238.92 18.91 9807 10.8060 303.38 238.40 19.03 9808 10.8070 325.57 237.90 19.68 9809 10.8080 326.04 237.41 19.71 9810 10.8090 323.25 236.93 19.60 9811 10.8100 325.64 236.47 19.67 9812 10.8110 350.06 236.02 20.33 9813 10.8120 328.45 235.58 19.79 9814 10.8130 324.81 235.16 19.63 9815 10.8140 315.77 234.74 19.35 9816 10.8150 321.17 234.34 19.56 9817 10.8160 302.35 233.95 18.88 9818 10.8170 331.65 233.57 19.78 9819 10.8180 313.24 233.20 19.23 9820 10.8190 306.10 232.84 19.02 9821 10.8200 321.54 232.49 19.52 9822 10.8210 336.94 232.15 19.99 9823 10.8220 316.47 263.35 19.33 9824 10.8230 307.54 263.40 18.99 9825 10.8240 350.58 263.46 20.28 9826 10.8250 319.02 263.54 19.42 9827 10.8260 291.88 263.64 18.57 9828 10.8270 307.64 263.75 19.04 9829 10.8280 319.38 263.87 19.41 9830 10.8290 334.78 264.01 20.00 9831 10.8300 301.54 264.16 18.87 9832 10.8310 304.67 264.32 19.03 9833 10.8320 302.40 264.50 18.88 9834 10.8330 294.29 264.70 18.61 9835 10.8340 311.16 264.91 19.23 9836 10.8350 332.95 265.13 19.84 9837 10.8360 337.72 265.37 20.02 9838 10.8370 326.62 265.62 19.63 9839 10.8380 304.17 265.89 18.97 9840 10.8390 333.12 266.17 19.88 9841 10.8400 291.97 266.47 18.51 9842 10.8410 312.22 266.78 19.17 9843 10.8420 319.84 267.11 19.51 9844 10.8430 313.02 267.45 19.27 9845 10.8440 354.39 267.81 20.55 9846 10.8450 340.15 268.18 20.03 9847 10.8460 354.64 268.57 20.55 9848 10.8470 315.88 268.98 19.40 9849 10.8480 333.61 269.40 19.90 9850 10.8490 302.88 269.84 19.02 9851 10.8500 319.02 270.29 19.47 9852 10.8510 333.51 270.76 19.84 9853 10.8520 351.29 271.25 20.29 9854 10.8530 353.15 271.76 20.46 9855 10.8540 390.25 272.28 21.54 9856 10.8550 378.07 272.83 21.14 9857 10.8560 358.75 273.39 20.55 9858 10.8570 361.11 273.97 20.64 9859 10.8580 330.49 274.57 19.81 9860 10.8590 366.18 275.18 20.87 9861 10.8600 403.11 275.82 21.91 9862 10.8610 414.66 276.48 22.24 9863 10.8620 387.23 277.17 21.36 9864 10.8630 349.60 277.87 20.25 9865 10.8640 411.33 278.59 22.06 9866 10.8650 410.65 287.79 22.06 9867 10.8660 391.82 288.66 21.61 9868 10.8670 397.60 289.55 21.78 9869 10.8680 410.66 290.46 22.11 9870 10.8690 401.12 291.41 21.88 9871 10.8700 396.88 292.38 21.72 9872 10.8710 402.54 293.38 21.87 9873 10.8720 409.49 294.41 21.98 9874 10.8730 401.29 295.47 21.75 9875 10.8740 405.91 296.56 21.91 9876 10.8750 403.91 297.68 21.89 9877 10.8760 408.02 298.83 22.02 9878 10.8770 399.00 300.02 21.66 9879 10.8780 410.84 301.24 22.06 9880 10.8790 394.16 302.50 21.69 9881 10.8800 396.99 303.80 21.79 9882 10.8810 401.34 305.13 21.82 9883 10.8820 401.38 306.50 21.84 9884 10.8830 404.50 307.92 21.93 9885 10.8840 373.25 309.37 21.01 9886 10.8850 382.87 310.88 21.19 9887 10.8860 388.61 312.42 21.42 9888 10.8870 387.19 314.01 21.41 9889 10.8880 389.45 315.65 21.42 9890 10.8890 400.77 317.34 21.76 9891 10.8900 402.67 319.09 21.87 9892 10.8910 375.57 320.88 21.10 9893 10.8920 368.20 315.28 20.87 9894 10.8930 379.52 317.27 21.20 9895 10.8940 394.44 319.32 21.64 9896 10.8950 388.16 321.43 21.44 9897 10.8960 398.66 323.61 21.80 9898 10.8970 408.80 325.85 22.03 9899 10.8980 414.27 328.16 22.22 9900 10.8990 405.65 330.55 21.92 9901 10.9000 398.83 333.00 21.79 9902 10.9010 397.39 335.54 21.70 9903 10.9020 420.72 338.17 22.25 9904 10.9030 423.87 340.87 22.48 9905 10.9040 410.42 343.67 22.10 9906 10.9050 386.38 346.55 21.43 9907 10.9060 397.06 349.54 21.73 9908 10.9070 427.14 352.63 22.49 9909 10.9080 400.02 355.83 21.75 9910 10.9090 405.88 359.14 21.96 9911 10.9100 408.85 362.56 22.06 9912 10.9110 401.46 366.11 21.84 9913 10.9120 445.54 369.79 22.94 9914 10.9130 445.92 373.60 23.06 9915 10.9140 446.49 377.55 23.05 9916 10.9150 436.55 381.66 22.74 9917 10.9160 403.79 385.93 21.78 9918 10.9170 404.47 390.35 21.90 9919 10.9180 438.74 394.95 22.79 9920 10.9190 422.67 399.74 22.42 9921 10.9200 430.01 404.72 22.66 9922 10.9210 449.72 409.90 23.06 9923 10.9220 458.70 415.30 23.39 9924 10.9230 445.02 420.93 22.98 9925 10.9240 479.62 426.79 23.88 9926 10.9250 477.24 432.92 23.83 9927 10.9260 450.06 439.30 23.09 9928 10.9270 465.49 445.99 23.50 9929 10.9280 467.80 452.97 23.50 9930 10.9290 474.03 460.27 23.78 9931 10.9300 501.95 467.92 24.42 9932 10.9310 513.11 475.93 24.59 9933 10.9320 581.96 484.33 26.21 9934 10.9330 546.18 493.13 25.49 9935 10.9340 554.72 502.39 25.64 9936 10.9350 561.59 512.12 25.79 9937 10.9360 633.19 522.34 27.40 9938 10.9370 604.78 533.12 26.78 9939 10.9380 595.22 544.46 26.56 9940 10.9390 586.86 556.44 26.27 9941 10.9400 614.26 569.06 26.95 9942 10.9410 611.46 582.43 26.93 9943 10.9420 608.61 596.56 26.84 9944 10.9430 670.03 611.51 28.19 9945 10.9440 679.24 627.39 28.41 9946 10.9450 681.59 644.22 28.33 9947 10.9460 712.66 662.12 28.99 9948 10.9470 711.03 681.16 29.02 9949 10.9480 742.68 701.47 29.65 9950 10.9490 753.92 723.12 30.02 9951 10.9500 812.71 746.25 31.03 9952 10.9510 876.67 771.03 32.14 9953 10.9520 892.28 797.54 32.50 9954 10.9530 862.12 826.05 31.96 9955 10.9540 924.24 856.71 33.06 9956 10.9550 948.25 889.72 33.52 9957 10.9560 1013.07 925.33 34.65 9958 10.9570 1025.80 963.84 34.84 9959 10.9580 1049.95 1005.61 35.29 9960 10.9590 1155.91 1050.89 37.11 9961 10.9600 1180.69 1100.25 37.45 9962 10.9610 1236.31 1154.09 38.25 9963 10.9620 1324.38 1212.88 39.56 9964 10.9630 1382.14 1277.43 40.53 9965 10.9640 1449.13 1348.35 41.51 9966 10.9650 1529.98 1426.62 42.68 9967 10.9660 1542.13 1513.02 42.93 9968 10.9670 1621.21 1609.06 43.82 9969 10.9680 1859.43 1715.98 46.94 9970 10.9690 1994.31 1835.24 48.74 9971 10.9700 2089.12 1969.21 49.81 9972 10.9710 2225.49 2119.96 51.46 9973 10.9720 2335.41 2290.41 52.66 9974 10.9730 2530.07 2484.02 54.75 9975 10.9740 2775.96 2705.14 57.39 9976 10.9750 3013.65 2958.70 59.87 9977 10.9760 3341.94 3250.36 62.91 9978 10.9770 3625.83 3588.66 65.58 9979 10.9780 4026.42 3981.99 69.15 9980 10.9790 4429.97 4441.76 72.42 9981 10.9800 4813.99 4981.41 75.62 9982 10.9810 5432.36 5617.48 80.37 9983 10.9820 6164.13 6367.31 85.68 9984 10.9830 7142.19 7251.72 92.07 9985 10.9840 8177.73 8292.09 98.68 9986 10.9850 9387.91 9502.15 105.65 9987 10.9860 11237.90 10891.30 115.53 9988 10.9870 13284.60 12439.00 125.71 9989 10.9880 15474.00 14083.40 135.60 9990 10.9890 17839.60 15705.40 145.68 9991 10.9900 19902.10 17119.20 153.75 9992 10.9910 21278.40 18101.80 159.19 9993 10.9920 21155.20 18458.60 158.50 9994 10.9930 20313.00 18113.50 155.38 9995 10.9940 18695.60 17141.80 148.98 9996 10.9950 16655.10 15738.70 140.57 9997 10.9960 14659.50 14123.50 131.73 9998 10.9970 12841.60 12486.30 123.29 9999 10.9980 11218.00 10945.30 115.32 10000 10.9990 9923.84 9565.07 108.42 10001 11.0000 8621.13 8359.69 101.08 10002 11.0010 7638.62 7326.56 95.09 10003 11.0020 6816.16 6450.50 89.81 10004 11.0030 6068.37 5708.13 84.69 10005 11.0040 5457.70 5081.23 80.43 10006 11.0050 4838.12 4550.73 75.63 10007 11.0060 4302.11 4100.72 71.30 10008 11.0070 4108.62 3717.52 69.78 10009 11.0080 3777.52 3390.68 66.90 10010 11.0090 3479.61 3110.72 64.19 10011 11.0100 3213.18 2869.99 61.77 10012 11.0110 2959.24 2662.98 59.22 10013 11.0120 2909.59 2484.02 58.68 10014 11.0130 2722.27 2329.55 56.87 10015 11.0140 2519.77 2196.03 54.65 10016 11.0150 2447.27 2081.00 53.94 10017 11.0160 2288.62 1982.16 52.13 10018 11.0170 2183.11 1897.70 50.82 10019 11.0180 2087.78 1826.42 49.82 10020 11.0190 2020.65 1766.99 49.01 10021 11.0200 2004.63 1718.71 48.75 10022 11.0210 1994.29 1681.05 48.63 10023 11.0220 1868.32 1653.53 47.04 10024 11.0230 1850.83 1636.09 46.84 10025 11.0240 1887.36 1628.77 47.32 10026 11.0250 1850.78 1631.88 46.86 10027 11.0260 1876.17 1645.98 47.18 10028 11.0270 1928.09 1671.91 47.82 10029 11.0280 1935.77 1710.72 47.91 10030 11.0290 1915.64 1764.03 47.68 10031 11.0300 2009.18 1833.62 48.84 10032 11.0310 2130.05 1921.90 50.40 10033 11.0320 2196.04 2031.78 51.15 10034 11.0330 2351.69 2166.87 52.84 10035 11.0340 2602.69 2331.14 55.58 10036 11.0350 2794.71 2528.73 57.61 10037 11.0360 3072.98 2764.94 60.43 10038 11.0370 3404.52 3043.20 63.65 10039 11.0380 3776.48 3365.72 67.06 10040 11.0390 4238.64 3730.13 71.04 10041 11.0400 4813.75 4126.72 75.62 10042 11.0410 5319.57 4532.95 79.51 10043 11.0420 5950.71 4912.81 84.21 10044 11.0430 6290.11 5217.71 86.41 10045 11.0440 6489.48 5395.96 87.82 10046 11.0450 6503.72 5412.01 87.88 10047 11.0460 6225.77 5259.91 85.97 10048 11.0470 5852.11 4966.76 83.38 10049 11.0480 5187.82 4581.20 78.37 10050 11.0490 4752.88 4154.02 75.08 10051 11.0500 4131.03 3725.76 69.93 10052 11.0510 3722.65 3323.80 66.44 10053 11.0520 3269.83 2960.18 62.15 10054 11.0530 2902.16 2639.93 58.60 10055 11.0540 2585.65 2362.48 55.30 10056 11.0550 2444.53 2123.19 53.84 10057 11.0560 2204.32 1918.05 51.06 10058 11.0570 1982.76 1742.08 48.47 10059 11.0580 1797.26 1590.87 46.12 10060 11.0590 1600.20 1460.47 43.58 10061 11.0600 1515.44 1347.66 42.42 10062 11.0610 1396.76 1249.82 40.66 10063 11.0620 1312.73 1164.27 39.40 10064 11.0630 1267.23 1089.31 38.73 10065 11.0640 1193.45 1023.27 37.62 10066 11.0650 1084.97 964.81 35.79 10067 11.0660 1063.44 912.78 35.46 10068 11.0670 1002.02 866.36 34.41 10069 11.0680 954.39 824.74 33.67 10070 11.0690 895.89 787.24 32.50 10071 11.0700 877.73 753.42 32.25 10072 11.0710 829.13 722.69 31.38 10073 11.0720 811.56 694.77 30.97 10074 11.0730 810.93 669.25 30.98 10075 11.0740 691.14 645.92 28.54 10076 11.0750 675.45 624.50 28.28 10077 11.0760 671.95 604.76 28.23 10078 11.0770 641.36 586.58 27.60 10079 11.0780 668.56 569.73 28.22 10080 11.0790 607.30 554.11 26.83 10081 11.0800 615.65 539.62 26.99 10082 11.0810 558.44 526.10 25.69 10083 11.0820 572.21 513.50 26.08 10084 11.0830 574.72 501.71 26.10 10085 11.0840 571.91 490.69 26.01 10086 11.0850 504.47 480.33 24.43 10087 11.0860 502.28 470.61 24.35 10088 11.0870 526.22 461.47 24.99 10089 11.0880 505.95 452.84 24.53 10090 11.0890 494.19 444.70 24.21 10091 11.0900 468.97 437.01 23.62 10092 11.0910 477.20 429.74 23.76 10093 11.0920 451.62 422.84 23.15 10094 11.0930 445.77 416.29 22.98 10095 11.0940 407.13 410.09 21.98 10096 11.0950 423.88 404.18 22.45 10097 11.0960 430.88 398.57 22.62 10098 11.0970 399.60 393.22 21.78 10099 11.0980 408.40 388.11 22.06 10100 11.0990 425.85 383.24 22.47 10101 11.1000 425.07 378.59 22.43 10102 11.1010 383.58 374.14 21.30 10103 11.1020 373.40 369.88 20.95 10104 11.1030 414.88 365.81 22.11 10105 11.1040 378.68 361.90 21.19 10106 11.1050 354.78 358.16 20.56 10107 11.1060 363.50 354.57 20.78 10108 11.1070 362.53 351.11 20.62 10109 11.1080 388.45 347.79 21.41 10110 11.1090 372.74 344.60 21.00 10111 11.1100 349.62 341.53 20.36 10112 11.1110 329.75 338.58 19.76 10113 11.1120 323.35 335.73 19.54 10114 11.1130 352.84 332.98 20.43 10115 11.1140 343.70 330.33 20.18 10116 11.1150 310.31 327.78 19.17 10117 11.1160 336.13 325.31 19.91 10118 11.1170 336.90 322.93 19.97 10119 11.1180 322.37 320.63 19.53 10120 11.1190 304.30 318.40 18.95 10121 11.1200 330.68 316.25 19.74 10122 11.1210 304.97 314.16 18.93 10123 11.1220 327.98 312.15 19.64 10124 11.1230 331.64 310.19 19.75 10125 11.1240 296.96 308.30 18.72 10126 11.1250 307.18 306.46 19.13 10127 11.1260 305.27 304.68 19.05 10128 11.1270 305.04 302.96 18.96 10129 11.1280 299.99 301.28 18.95 10130 11.1290 298.82 299.65 18.86 10131 11.1300 309.14 298.07 19.20 10132 11.1310 274.23 296.54 18.02 10133 11.1320 270.89 295.05 17.91 10134 11.1330 276.66 293.60 18.00 10135 11.1340 281.14 292.19 18.20 10136 11.1350 290.91 290.82 18.61 10137 11.1360 302.92 289.49 18.92 10138 11.1370 300.02 288.19 18.92 10139 11.1380 271.42 286.92 17.86 10140 11.1390 292.36 285.69 18.61 10141 11.1400 301.31 284.49 18.90 10142 11.1410 300.34 283.33 18.82 10143 11.1420 291.57 282.19 18.63 10144 11.1430 281.37 281.08 18.25 10145 11.1440 283.18 280.00 18.32 10146 11.1450 285.46 278.94 18.38 10147 11.1460 258.77 277.91 17.55 10148 11.1470 282.96 276.91 18.34 10149 11.1480 293.56 275.93 18.68 10150 11.1490 274.21 274.97 18.03 10151 11.1500 259.49 274.04 17.57 10152 11.1510 268.40 273.12 17.83 10153 11.1520 269.98 272.23 17.79 10154 11.1530 272.39 271.36 17.95 10155 11.1540 258.26 270.51 17.50 10156 11.1550 261.96 269.68 17.59 10157 11.1560 257.37 268.86 17.35 10158 11.1570 231.27 268.07 16.57 10159 11.1580 244.01 267.29 16.91 10160 11.1590 259.94 266.53 17.49 10161 11.1600 259.74 265.79 17.54 10162 11.1610 268.87 265.06 17.94 10163 11.1620 281.05 264.35 18.22 10164 11.1630 223.72 232.47 16.19 10165 11.1640 246.79 232.15 17.05 10166 11.1650 274.43 231.83 18.02 10167 11.1660 255.38 231.52 17.42 10168 11.1670 265.29 231.23 17.77 10169 11.1680 257.45 230.93 17.47 10170 11.1690 258.02 230.65 17.51 10171 11.1700 275.64 230.37 18.17 10172 11.1710 264.04 230.10 17.69 10173 11.1720 273.94 229.83 18.06 10174 11.1730 255.03 229.57 17.44 10175 11.1740 273.15 229.32 18.06 10176 11.1750 266.59 229.07 17.87 10177 11.1760 249.03 228.83 17.17 10178 11.1770 250.67 228.60 17.23 10179 11.1780 245.35 228.37 17.03 10180 11.1790 250.24 228.14 17.21 10181 11.1800 256.54 227.92 17.47 10182 11.1810 247.66 227.70 17.03 10183 11.1820 240.91 227.49 16.79 10184 11.1830 258.90 227.29 17.46 10185 11.1840 259.95 227.08 17.46 10186 11.1850 260.68 226.89 17.53 10187 11.1860 258.70 226.69 17.55 10188 11.1870 247.43 226.50 17.14 10189 11.1880 238.78 226.32 16.82 10190 11.1890 235.01 226.13 16.69 10191 11.1900 261.18 225.96 17.52 10192 11.1910 272.09 225.78 17.94 10193 11.1920 263.14 225.61 17.71 10194 11.1930 264.63 225.44 17.76 10195 11.1940 222.26 225.28 16.24 10196 11.1950 247.76 225.12 17.17 10197 11.1960 258.86 224.96 17.64 10198 11.1970 288.25 224.81 18.57 10199 11.1980 258.03 224.66 17.45 10200 11.1990 258.95 224.51 17.48 10201 11.2000 270.81 224.36 17.94 10202 11.2010 244.83 224.22 17.00 10203 11.2020 270.65 224.08 17.98 10204 11.2030 244.81 223.94 16.97 10205 11.2040 263.11 223.81 17.69 10206 11.2050 267.34 223.67 17.80 10207 11.2060 249.76 223.54 17.04 10208 11.2070 244.24 223.42 16.98 10209 11.2080 217.97 223.29 15.99 10210 11.2090 217.20 223.17 16.01 10211 11.2100 236.72 223.05 16.74 10212 11.2110 239.17 222.93 16.81 10213 11.2120 222.36 222.81 16.18 10214 11.2130 257.57 222.70 17.51 10215 11.2140 271.94 222.59 18.09 10216 11.2150 228.51 222.48 16.29 10217 11.2160 244.62 222.37 17.03 10218 11.2170 248.64 222.26 17.19 10219 11.2180 240.77 222.16 16.82 10220 11.2190 247.35 222.05 17.08 10221 11.2200 256.63 221.95 17.40 10222 11.2210 238.12 221.85 16.78 10223 11.2220 256.15 221.76 17.42 10224 11.2230 247.83 221.66 17.16 10225 11.2240 231.55 221.57 16.57 10226 11.2250 265.99 213.08 17.79 10227 11.2260 244.19 213.08 17.00 10228 11.2270 239.15 213.08 16.80 10229 11.2280 238.81 213.08 16.85 10230 11.2290 242.77 213.08 16.94 10231 11.2300 253.83 213.09 17.38 10232 11.2310 261.84 213.09 17.65 10233 11.2320 238.99 213.09 16.87 10234 11.2330 212.97 213.09 15.84 10235 11.2340 237.74 213.09 16.76 10236 11.2350 240.15 213.09 16.92 10237 11.2360 247.49 213.09 17.15 10238 11.2370 237.10 213.09 16.72 10239 11.2380 247.89 213.09 17.06 10240 11.2390 250.19 213.09 17.22 10241 11.2400 239.88 213.09 16.84 10242 11.2410 242.41 213.10 16.97 10243 11.2420 229.88 213.10 16.57 10244 11.2430 240.71 213.10 16.89 10245 11.2440 252.89 213.10 17.29 10246 11.2450 281.77 213.10 18.31 10247 11.2460 274.41 213.10 18.00 10248 11.2470 270.30 213.10 17.88 10249 11.2480 258.99 213.10 17.54 10250 11.2490 241.07 213.10 16.84 10251 11.2500 260.65 213.10 17.57 10252 11.2510 272.57 213.10 18.02 10253 11.2520 278.64 213.10 18.18 10254 11.2530 270.79 213.11 17.98 10255 11.2540 252.96 213.11 17.31 10256 11.2550 228.90 213.11 16.40 10257 11.2560 250.58 213.11 17.19 10258 11.2570 248.38 213.11 17.23 10259 11.2580 270.34 213.11 17.93 10260 11.2590 252.32 213.11 17.22 10261 11.2600 246.79 213.11 17.04 10262 11.2610 244.42 213.11 17.01 10263 11.2620 233.72 213.11 16.64 10264 11.2630 257.82 213.11 17.43 10265 11.2640 263.02 213.12 17.55 10266 11.2650 253.41 213.12 17.24 10267 11.2660 284.91 213.12 18.42 10268 11.2670 275.16 213.12 17.97 10269 11.2680 278.06 213.12 18.19 10270 11.2690 270.88 213.12 17.98 10271 11.2700 260.39 213.12 17.54 10272 11.2710 248.31 213.12 17.10 10273 11.2720 262.66 213.12 17.52 10274 11.2730 263.28 213.12 17.71 10275 11.2740 231.55 213.12 16.58 10276 11.2750 262.80 213.12 17.68 10277 11.2760 267.54 213.13 17.81 10278 11.2770 261.90 213.13 17.60 10279 11.2780 249.64 213.13 17.21 10280 11.2790 247.53 213.13 17.24 10281 11.2800 245.00 213.13 17.00 10282 11.2810 258.89 213.13 17.43 10283 11.2820 255.63 213.13 17.36 10284 11.2830 255.51 213.13 17.41 10285 11.2840 271.54 213.13 17.92 10286 11.2850 278.12 213.13 18.16 10287 11.2860 266.90 213.13 17.87 10288 11.2870 271.15 213.13 18.02 10289 11.2880 236.48 213.14 16.72 10290 11.2890 232.21 213.14 16.58 10291 11.2900 241.85 213.14 16.93 10292 11.2910 247.86 213.14 17.19 10293 11.2920 264.36 213.14 17.78 10294 11.2930 262.52 213.14 17.67 10295 11.2940 260.61 213.14 17.49 10296 11.2950 274.02 213.14 18.04 10297 11.2960 228.55 213.14 16.42 10298 11.2970 220.22 213.14 16.10 10299 11.2980 225.89 213.15 16.36 10300 11.2990 235.49 213.15 16.73 10301 11.3000 242.93 213.15 16.84 10302 11.3010 239.80 213.15 16.74 10303 11.3020 249.93 213.15 17.22 10304 11.3030 239.48 213.15 16.86 10305 11.3040 247.31 213.15 17.12 10306 11.3050 230.96 213.15 16.52 10307 11.3060 245.14 213.15 17.09 10308 11.3070 239.71 213.15 16.87 10309 11.3080 275.83 213.15 18.13 10310 11.3090 235.71 213.15 16.71 10311 11.3100 238.88 213.15 16.85 10312 11.3110 228.86 213.16 16.52 10313 11.3120 243.45 213.16 17.07 10314 11.3130 221.64 213.16 16.21 10315 11.3140 211.52 213.16 15.88 10316 11.3150 230.05 213.16 16.56 10317 11.3160 226.11 213.16 16.34 10318 11.3170 240.85 213.16 16.84 10319 11.3180 244.52 213.16 16.95 10320 11.3190 225.34 213.16 16.45 10321 11.3200 228.52 213.16 16.55 10322 11.3210 221.70 213.16 16.17 10323 11.3220 246.97 213.16 17.06 10324 11.3230 220.26 213.17 16.19 10325 11.3240 220.77 213.17 16.15 10326 11.3250 238.52 213.17 16.78 10327 11.3260 226.62 213.17 16.42 10328 11.3270 221.81 213.17 16.23 10329 11.3280 212.06 213.17 15.81 10330 11.3290 216.85 213.17 16.00 10331 11.3300 232.72 213.17 16.52 10332 11.3310 219.89 213.17 16.13 10333 11.3320 206.01 213.17 15.63 10334 11.3330 225.81 213.17 16.34 10335 11.3340 218.41 213.18 16.06 10336 11.3350 223.82 213.18 16.29 10337 11.3360 235.57 213.18 16.63 10338 11.3370 221.88 213.18 16.13 10339 11.3380 253.58 213.18 17.30 10340 11.3390 230.58 213.18 16.49 10341 11.3400 232.30 213.18 16.66 10342 11.3410 241.55 213.18 16.89 10343 11.3420 237.59 213.18 16.75 10344 11.3430 241.50 213.18 16.90 10345 11.3440 235.38 213.18 16.73 10346 11.3450 216.59 213.18 16.06 10347 11.3460 230.58 213.18 16.44 10348 11.3470 256.83 213.18 17.43 10349 11.3480 228.15 213.19 16.44 10350 11.3490 250.35 213.19 17.30 10351 11.3500 228.73 213.19 16.58 10352 11.3510 199.44 213.19 15.38 10353 11.3520 251.89 213.19 17.37 10354 11.3530 224.23 213.19 16.21 10355 11.3540 259.68 213.19 17.56 10356 11.3550 249.93 213.19 17.14 10357 11.3560 257.89 213.19 17.50 10358 11.3570 242.24 213.19 16.88 10359 11.3580 244.52 213.19 17.02 10360 11.3590 249.75 213.20 17.19 10361 11.3600 265.01 213.20 17.75 10362 11.3610 247.93 213.20 17.06 10363 11.3620 213.27 213.20 15.91 10364 11.3630 224.68 213.20 16.34 10365 11.3640 234.57 213.20 16.67 10366 11.3650 219.33 213.20 16.05 10367 11.3660 231.26 213.20 16.46 10368 11.3670 234.62 213.20 16.70 10369 11.3680 220.13 213.20 16.16 10370 11.3690 209.70 213.20 15.75 10371 11.3700 234.16 213.20 16.60 10372 11.3710 247.27 213.21 17.04 10373 11.3720 233.55 213.21 16.62 10374 11.3730 243.31 213.21 17.03 10375 11.3740 228.99 213.21 16.47 10376 11.3750 233.66 213.21 16.70 10377 11.3760 236.04 213.21 16.72 10378 11.3770 240.92 213.21 16.94 10379 11.3780 245.72 213.21 16.99 10380 11.3790 209.73 213.21 15.66 10381 11.3800 220.47 213.21 16.15 10382 11.3810 237.86 213.21 16.73 10383 11.3820 244.73 213.21 17.02 10384 11.3830 242.03 213.21 16.94 10385 11.3840 229.88 213.21 16.52 10386 11.3850 275.60 213.22 18.12 10387 11.3860 260.28 213.22 17.45 10388 11.3870 236.44 213.22 16.74 10389 11.3880 246.80 213.22 17.15 10390 11.3890 229.76 213.22 16.48 10391 11.3900 237.86 213.22 16.78 10392 11.3910 246.80 213.22 17.13 10393 11.3920 279.87 213.22 18.20 10394 11.3930 244.36 213.22 16.98 10395 11.3940 264.50 213.22 17.71 10396 11.3950 244.26 213.22 17.00 10397 11.3960 247.02 213.22 17.10 10398 11.3970 231.93 213.23 16.60 10399 11.3980 260.13 213.23 17.48 10400 11.3990 258.72 213.23 17.50 10401 11.4000 245.24 213.23 16.92 10402 11.4010 242.87 213.23 16.98 10403 11.4020 230.78 213.23 16.48 10404 11.4030 236.80 213.23 16.78 10405 11.4040 249.27 213.23 17.32 10406 11.4050 237.50 213.23 16.72 10407 11.4060 264.28 213.23 17.62 10408 11.4070 231.28 213.23 16.55 10409 11.4080 221.95 213.23 16.26 10410 11.4090 226.10 213.23 16.41 10411 11.4100 253.88 213.24 17.41 10412 11.4110 237.69 213.24 16.77 10413 11.4120 240.02 213.24 16.91 10414 11.4130 210.57 213.24 15.75 10415 11.4140 233.09 213.24 16.60 10416 11.4150 221.78 213.24 16.19 10417 11.4160 202.65 213.24 15.50 10418 11.4170 214.74 213.24 15.96 10419 11.4180 226.06 213.24 16.37 10420 11.4190 250.11 213.24 17.19 10421 11.4200 240.27 213.24 16.85 10422 11.4210 226.44 213.24 16.37 10423 11.4220 227.02 213.24 16.35 10424 11.4230 230.11 213.24 16.46 10425 11.4240 222.92 213.25 16.11 10426 11.4250 213.08 213.25 15.90 10427 11.4260 213.11 213.25 15.87 10428 11.4270 234.61 213.25 16.67 10429 11.4280 220.38 213.25 16.22 10430 11.4290 234.56 213.25 16.64 10431 11.4300 215.74 213.25 15.97 10432 11.4310 222.98 213.25 16.28 10433 11.4320 250.61 213.25 17.14 10434 11.4330 240.72 213.25 16.87 10435 11.4340 238.53 213.25 16.78 10436 11.4350 232.84 213.25 16.58 10437 11.4360 258.28 213.26 17.46 10438 11.4370 248.95 213.26 17.18 10439 11.4380 232.84 213.26 16.59 10440 11.4390 220.25 213.26 16.17 10441 11.4400 231.26 213.26 16.59 10442 11.4410 245.51 213.26 17.06 10443 11.4420 226.88 213.26 16.41 10444 11.4430 216.44 213.26 16.04 10445 11.4440 241.74 213.26 16.90 10446 11.4450 251.14 213.26 17.22 10447 11.4460 232.34 213.26 16.52 10448 11.4470 208.05 213.26 15.64 10449 11.4480 242.93 213.26 17.02 10450 11.4490 252.58 213.26 17.22 10451 11.4500 228.42 213.26 16.39 10452 11.4510 236.72 213.27 16.76 10453 11.4520 221.25 213.27 16.22 10454 11.4530 225.26 213.27 16.32 10455 11.4540 243.94 213.27 17.09 10456 11.4550 227.29 213.27 16.43 10457 11.4560 216.30 213.27 16.05 10458 11.4570 228.92 213.27 16.43 10459 11.4580 238.34 213.27 16.73 10460 11.4590 229.80 213.27 16.50 10461 11.4600 215.85 213.27 15.99 10462 11.4610 246.81 213.27 17.16 10463 11.4620 232.13 213.27 16.56 10464 11.4630 236.20 213.27 16.71 10465 11.4640 207.54 213.28 15.73 10466 11.4650 206.29 213.28 15.71 10467 11.4660 221.79 213.28 16.16 10468 11.4670 258.43 213.28 17.57 10469 11.4680 224.98 213.28 16.27 10470 11.4690 223.59 213.28 16.29 10471 11.4700 212.91 213.28 15.90 10472 11.4710 207.71 213.28 15.70 10473 11.4720 237.10 213.28 16.84 10474 11.4730 241.02 213.28 16.91 10475 11.4740 219.28 213.28 16.01 10476 11.4750 221.83 213.28 16.17 10477 11.4760 254.15 213.29 17.31 10478 11.4770 247.40 213.29 17.15 10479 11.4780 234.17 213.29 16.70 10480 11.4790 215.15 213.29 15.99 10481 11.4800 228.86 213.29 16.45 10482 11.4810 235.03 213.29 16.66 10483 11.4820 205.05 213.29 15.50 10484 11.4830 221.35 213.29 16.12 10485 11.4840 213.58 213.29 15.94 10486 11.4850 199.67 213.29 15.38 10487 11.4860 223.13 213.29 16.28 10488 11.4870 222.11 213.29 16.28 10489 11.4880 229.66 213.29 16.53 10490 11.4890 220.61 213.29 16.13 10491 11.4900 252.41 213.29 17.30 10492 11.4910 221.49 213.29 16.16 10493 11.4920 220.36 213.30 16.15 10494 11.4930 231.06 213.30 16.49 10495 11.4940 237.63 213.30 16.75 10496 11.4950 235.70 213.30 16.71 10497 11.4960 244.18 213.30 17.01 10498 11.4970 224.53 213.30 16.32 10499 11.4980 214.69 213.30 15.96 10500 11.4990 220.30 213.30 16.10 10501 11.5000 228.65 213.30 16.48 10502 11.5010 230.11 213.30 16.44 10503 11.5020 225.52 213.30 16.17 10504 11.5030 230.55 213.30 16.50 10505 11.5040 232.40 213.30 16.63 10506 11.5050 220.74 213.30 16.13 10507 11.5060 220.76 213.31 16.08 10508 11.5070 248.10 213.31 17.08 10509 11.5080 221.93 213.31 16.16 10510 11.5090 205.61 213.31 15.49 10511 11.5100 224.59 213.31 16.31 10512 11.5110 252.52 213.31 17.29 10513 11.5120 216.32 213.31 16.03 10514 11.5130 208.72 213.31 15.76 10515 11.5140 220.64 213.31 16.17 10516 11.5150 224.22 213.31 16.27 10517 11.5160 220.91 213.31 16.29 10518 11.5170 229.72 213.31 16.52 10519 11.5180 222.42 213.32 16.17 10520 11.5190 224.14 213.32 16.33 10521 11.5200 227.10 213.32 16.47 10522 11.5210 231.87 213.32 16.65 10523 11.5220 224.59 213.32 16.28 10524 11.5230 228.13 213.32 16.48 10525 11.5240 228.78 213.32 16.49 10526 11.5250 221.95 213.32 16.13 10527 11.5260 213.05 213.32 15.89 10528 11.5270 200.76 213.32 15.40 10529 11.5280 188.44 213.32 14.87 10530 11.5290 214.23 213.32 15.91 10531 11.5300 246.15 213.32 17.18 10532 11.5310 235.42 213.32 16.72 10533 11.5320 231.20 213.32 16.55 10534 11.5330 231.66 213.32 16.54 10535 11.5340 236.20 213.33 16.71 10536 11.5350 228.95 213.33 16.46 10537 11.5360 239.68 213.33 16.88 10538 11.5370 235.46 213.33 16.74 10539 11.5380 212.31 213.33 15.82 10540 11.5390 210.41 213.33 15.88 10541 11.5400 217.28 213.33 16.03 10542 11.5410 197.58 213.33 15.18 10543 11.5420 217.04 213.33 16.02 10544 11.5430 185.36 213.33 14.83 10545 11.5440 218.67 213.33 16.09 10546 11.5450 237.45 213.33 16.78 10547 11.5460 210.72 213.33 15.81 10548 11.5470 232.77 213.34 16.58 10549 11.5480 222.34 213.34 16.21 10550 11.5490 236.36 213.34 16.64 10551 11.5500 230.04 213.34 16.48 10552 11.5510 245.02 213.34 17.03 10553 11.5520 221.27 213.34 16.19 10554 11.5530 220.86 213.34 16.10 10555 11.5540 212.76 213.34 15.84 10556 11.5550 242.46 213.34 16.94 10557 11.5560 234.10 213.34 16.60 10558 11.5570 218.12 213.34 16.13 10559 11.5580 209.66 213.34 15.67 10560 11.5590 218.12 213.34 16.04 10561 11.5600 238.13 213.34 16.83 10562 11.5610 237.03 213.34 16.73 10563 11.5620 224.91 213.35 16.36 10564 11.5630 210.80 213.35 15.82 10565 11.5640 196.30 213.35 15.22 10566 11.5650 224.99 213.35 16.33 10567 11.5660 236.76 213.35 16.74 10568 11.5670 232.07 213.35 16.67 10569 11.5680 214.74 213.35 15.92 10570 11.5690 201.54 213.35 15.39 10571 11.5700 209.12 213.35 15.78 10572 11.5710 228.94 213.35 16.53 10573 11.5720 209.57 213.35 15.73 10574 11.5730 197.00 213.35 15.32 10575 11.5740 218.67 213.35 16.08 10576 11.5750 228.12 213.35 16.46 10577 11.5760 220.65 213.35 16.14 10578 11.5770 217.73 213.35 16.12 10579 11.5780 216.76 213.35 16.01 10580 11.5790 212.85 213.36 15.83 10581 11.5800 227.79 213.36 16.46 10582 11.5810 244.74 213.36 17.10 10583 11.5820 198.14 213.36 15.25 10584 11.5830 213.00 213.36 15.87 10585 11.5840 225.57 213.36 16.33 10586 11.5850 209.31 213.36 15.75 10587 11.5860 203.67 213.36 15.61 10588 11.5870 231.36 213.36 16.64 10589 11.5880 235.58 213.36 16.74 10590 11.5890 222.87 213.36 16.22 10591 11.5900 222.18 213.36 16.24 10592 11.5910 212.53 213.36 15.76 10593 11.5920 232.72 213.37 16.52 10594 11.5930 219.20 213.37 16.09 10595 11.5940 229.92 213.37 16.51 10596 11.5950 222.94 213.37 16.19 10597 11.5960 235.68 213.37 16.68 10598 11.5970 222.41 213.37 16.24 10599 11.5980 221.67 213.37 16.23 10600 11.5990 239.12 213.37 16.88 10601 11.6000 218.45 213.37 16.03 10602 11.6010 212.72 213.37 15.79 10603 11.6020 227.69 213.37 16.41 10604 11.6030 210.07 213.37 15.83 10605 11.6040 205.00 213.37 15.59 10606 11.6050 209.82 213.37 15.73 10607 11.6060 194.99 213.37 15.16 10608 11.6070 221.66 213.37 16.20 10609 11.6080 213.01 213.38 15.85 10610 11.6090 223.76 213.38 16.21 10611 11.6100 239.36 213.38 16.76 10612 11.6110 232.49 213.38 16.56 10613 11.6120 227.64 213.38 16.37 10614 11.6130 211.00 213.38 15.79 10615 11.6140 190.04 213.38 15.07 10616 11.6150 226.16 213.38 16.37 10617 11.6160 230.85 213.38 16.61 10618 11.6170 227.25 213.38 16.42 10619 11.6180 231.34 213.38 16.65 10620 11.6190 211.85 213.38 15.83 10621 11.6200 232.25 213.38 16.58 10622 11.6210 198.72 213.38 15.32 10623 11.6220 213.01 213.38 15.83 10624 11.6230 215.30 213.38 15.92 10625 11.6240 231.51 213.38 16.61 10626 11.6250 228.47 213.39 16.50 10627 11.6260 217.60 213.39 16.07 10628 11.6270 232.84 213.39 16.66 10629 11.6280 234.91 213.39 16.65 10630 11.6290 230.11 213.39 16.53 10631 11.6300 201.40 213.39 15.41 10632 11.6310 228.74 213.39 16.49 10633 11.6320 254.36 213.39 17.41 10634 11.6330 205.96 213.39 15.59 10635 11.6340 237.69 213.39 16.82 10636 11.6350 241.25 213.39 16.94 10637 11.6360 245.40 213.39 17.04 10638 11.6370 218.75 213.39 16.11 10639 11.6380 221.14 213.39 16.21 10640 11.6390 204.48 213.40 15.63 10641 11.6400 221.65 213.40 16.26 10642 11.6410 215.52 213.40 15.92 10643 11.6420 219.44 213.40 16.14 10644 11.6430 227.54 213.40 16.46 10645 11.6440 219.84 213.40 16.20 10646 11.6450 214.94 213.40 15.98 10647 11.6460 221.28 213.40 16.22 10648 11.6470 244.20 213.40 17.08 10649 11.6480 219.81 213.40 16.19 10650 11.6490 242.12 213.40 16.89 10651 11.6500 238.60 213.40 16.76 10652 11.6510 219.65 213.40 16.11 10653 11.6520 223.90 213.40 16.19 10654 11.6530 228.33 213.40 16.34 10655 11.6540 254.88 213.40 17.38 10656 11.6550 223.13 213.40 16.20 10657 11.6560 209.79 213.40 15.76 10658 11.6570 216.93 213.41 16.06 10659 11.6580 228.17 213.41 16.41 10660 11.6590 249.26 213.41 17.24 10661 11.6600 241.21 213.41 16.86 10662 11.6610 239.26 213.41 16.86 10663 11.6620 232.16 213.41 16.60 10664 11.6630 230.43 213.41 16.53 10665 11.6640 229.34 213.41 16.40 10666 11.6650 250.24 213.41 17.17 10667 11.6660 218.08 213.41 16.09 10668 11.6670 223.66 213.41 16.32 10669 11.6680 240.82 213.41 16.90 10670 11.6690 205.93 213.41 15.57 10671 11.6700 231.79 213.41 16.56 10672 11.6710 243.19 213.41 17.02 10673 11.6720 246.33 213.41 17.14 10674 11.6730 227.82 213.42 16.44 10675 11.6740 223.75 213.42 16.15 10676 11.6750 267.17 213.42 17.83 10677 11.6760 249.36 213.42 17.09 10678 11.6770 248.98 213.42 17.11 10679 11.6780 240.79 213.42 16.78 10680 11.6790 233.04 213.42 16.61 10681 11.6800 240.45 213.42 16.89 10682 11.6810 248.43 213.42 17.12 10683 11.6820 260.26 213.42 17.60 10684 11.6830 233.87 213.42 16.62 10685 11.6840 235.30 213.42 16.60 10686 11.6850 239.47 213.42 16.81 10687 11.6860 237.58 213.42 16.74 10688 11.6870 215.40 213.42 16.03 10689 11.6880 245.38 213.43 17.05 10690 11.6890 249.19 213.43 17.21 10691 11.6900 255.27 213.43 17.43 10692 11.6910 272.03 213.43 17.97 10693 11.6920 238.48 213.43 16.70 10694 11.6930 261.05 213.43 17.56 10695 11.6940 207.22 213.43 15.60 10696 11.6950 216.10 213.43 15.97 10697 11.6960 229.92 213.43 16.51 10698 11.6970 239.21 213.43 16.78 10699 11.6980 270.34 213.43 17.94 10700 11.6990 253.90 213.43 17.31 10701 11.7000 250.19 213.43 17.13 10702 11.7010 246.66 213.43 17.09 10703 11.7020 264.30 213.43 17.69 10704 11.7030 265.95 213.43 17.77 10705 11.7040 271.63 213.43 17.99 10706 11.7050 271.71 213.43 18.00 10707 11.7060 265.17 213.44 17.69 10708 11.7070 257.12 213.44 17.53 10709 11.7080 255.01 213.44 17.42 10710 11.7090 255.03 213.44 17.44 10711 11.7100 269.40 213.44 17.88 10712 11.7110 263.17 213.44 17.65 10713 11.7120 266.09 213.44 17.73 10714 11.7130 270.03 213.44 17.92 10715 11.7140 274.56 213.44 18.06 10716 11.7150 278.26 213.44 18.20 10717 11.7160 270.13 213.44 17.86 10718 11.7170 240.49 213.44 16.80 10719 11.7180 265.98 213.44 17.67 10720 11.7190 239.83 213.44 16.78 10721 11.7200 256.69 213.44 17.43 10722 11.7210 249.48 213.44 17.18 10723 11.7220 274.13 213.45 18.06 10724 11.7230 259.38 213.45 17.62 10725 11.7240 271.27 213.45 18.00 10726 11.7250 256.87 213.45 17.44 10727 11.7260 269.63 213.45 17.81 10728 11.7270 276.51 213.45 18.11 10729 11.7280 257.59 213.45 17.48 10730 11.7290 262.58 213.45 17.64 10731 11.7300 263.87 213.45 17.63 10732 11.7310 264.46 213.45 17.67 10733 11.7320 271.09 213.45 17.90 10734 11.7330 254.29 213.45 17.29 10735 11.7340 232.00 213.45 16.47 10736 11.7350 247.50 213.45 17.04 10737 11.7360 246.60 213.45 17.17 10738 11.7370 250.89 213.45 17.23 10739 11.7380 247.82 213.45 17.24 10740 11.7390 236.42 213.46 16.84 10741 11.7400 267.23 213.46 17.79 10742 11.7410 252.39 213.46 17.36 10743 11.7420 230.65 213.46 16.53 10744 11.7430 248.73 213.46 17.14 10745 11.7440 271.54 213.46 17.84 10746 11.7450 274.07 213.46 18.00 10747 11.7460 266.54 213.46 17.56 10748 11.7470 270.91 213.46 17.80 10749 11.7480 253.32 213.46 17.34 10750 11.7490 266.80 213.46 17.85 10751 11.7500 241.67 213.46 16.96 10752 11.7510 249.43 213.46 17.20 10753 11.7520 262.97 213.46 17.69 10754 11.7530 265.22 213.46 17.64 10755 11.7540 259.84 213.46 17.52 10756 11.7550 259.72 213.46 17.55 10757 11.7560 244.85 213.46 16.99 10758 11.7570 256.99 213.46 17.44 10759 11.7580 256.07 213.46 17.43 10760 11.7590 257.16 213.47 17.47 10761 11.7600 268.41 213.47 17.83 10762 11.7610 254.18 213.47 17.35 10763 11.7620 261.63 213.47 17.59 10764 11.7630 251.05 213.47 17.29 10765 11.7640 245.78 213.47 17.09 10766 11.7650 229.13 213.47 16.38 10767 11.7660 227.04 213.47 16.34 10768 11.7670 236.35 213.47 16.79 10769 11.7680 232.56 213.47 16.58 10770 11.7690 250.64 213.47 17.17 10771 11.7700 251.94 213.47 17.27 10772 11.7710 224.09 213.47 16.27 10773 11.7720 235.69 213.47 16.71 10774 11.7730 231.78 213.47 16.57 10775 11.7740 226.66 213.47 16.44 10776 11.7750 221.93 213.48 16.14 10777 11.7760 237.65 213.48 16.77 10778 11.7770 232.82 213.48 16.55 10779 11.7780 255.09 213.48 17.41 10780 11.7790 248.57 213.48 17.22 10781 11.7800 217.18 213.48 16.09 10782 11.7810 228.02 213.48 16.45 10783 11.7820 224.07 213.48 16.29 10784 11.7830 246.47 213.48 17.10 10785 11.7840 257.84 213.48 17.49 10786 11.7850 227.28 213.48 16.45 10787 11.7860 246.56 213.48 17.09 10788 11.7870 209.02 213.48 15.71 10789 11.7880 206.76 213.48 15.61 10790 11.7890 241.20 213.48 16.83 10791 11.7900 232.31 213.48 16.50 10792 11.7910 211.54 213.48 15.74 10793 11.7920 230.41 213.48 16.41 10794 11.7930 228.57 213.49 16.42 10795 11.7940 229.55 213.49 16.49 10796 11.7950 229.41 213.49 16.43 10797 11.7960 233.54 213.49 16.71 10798 11.7970 228.70 213.52 16.52 10799 11.7980 223.57 213.52 16.28 10800 11.7990 224.17 213.53 16.23 10801 11.8000 199.75 213.53 15.35 10802 11.8010 213.75 213.53 15.82 10803 11.8020 232.77 213.53 16.61 10804 11.8030 245.54 213.53 17.19 10805 11.8040 248.69 213.53 17.28 10806 11.8050 209.37 213.53 15.72 10807 11.8060 226.78 213.53 16.31 10808 11.8070 230.05 213.53 16.49 10809 11.8080 219.68 213.54 16.16 10810 11.8090 219.36 213.54 16.12 10811 11.8100 231.25 213.54 16.55 10812 11.8110 251.47 213.54 17.24 10813 11.8120 223.84 213.54 16.28 10814 11.8130 224.65 213.54 16.37 10815 11.8140 229.36 213.54 16.44 10816 11.8150 223.60 213.54 16.23 10817 11.8160 221.35 213.54 16.21 10818 11.8170 218.16 213.54 16.16 10819 11.8180 207.77 213.54 15.70 10820 11.8190 220.02 213.55 16.08 10821 11.8200 248.36 213.55 17.14 10822 11.8210 223.86 213.55 16.24 10823 11.8220 237.49 213.55 16.77 10824 11.8230 228.66 213.55 16.44 10825 11.8240 235.41 213.55 16.78 10826 11.8250 213.62 213.55 15.94 10827 11.8260 207.77 213.55 15.65 10828 11.8270 232.14 213.55 16.50 10829 11.8280 217.68 213.56 15.97 10830 11.8290 207.19 213.56 15.69 10831 11.8300 211.04 213.56 15.80 10832 11.8310 209.83 213.56 15.77 10833 11.8320 214.52 213.56 16.03 10834 11.8330 239.82 213.56 16.83 10835 11.8340 227.31 213.56 16.44 10836 11.8350 217.68 213.57 16.10 10837 11.8360 219.90 213.57 16.20 10838 11.8370 216.15 213.57 16.06 10839 11.8380 221.30 213.57 16.25 10840 11.8390 222.92 213.57 16.27 10841 11.8400 213.86 213.57 15.88 10842 11.8410 239.54 213.57 16.85 10843 11.8420 227.50 213.57 16.35 10844 11.8430 226.23 213.57 16.48 10845 11.8440 222.67 213.58 16.37 10846 11.8450 190.83 213.58 14.98 10847 11.8460 209.78 213.58 15.75 10848 11.8470 223.12 213.58 16.25 10849 11.8480 221.53 213.58 16.18 10850 11.8490 217.19 213.58 16.00 10851 11.8500 241.99 213.59 16.85 10852 11.8510 226.82 213.59 16.42 10853 11.8520 214.24 213.59 15.93 10854 11.8530 207.48 213.59 15.72 10855 11.8540 201.77 213.59 15.45 10856 11.8550 214.90 213.59 15.95 10857 11.8560 217.00 213.60 15.96 10858 11.8570 226.80 213.60 16.37 10859 11.8580 204.04 213.60 15.62 10860 11.8590 213.51 213.60 15.92 10861 11.8600 213.11 213.60 15.91 10862 11.8610 238.09 213.60 16.76 10863 11.8620 238.57 213.60 16.82 10864 11.8630 231.51 213.61 16.51 10865 11.8640 219.14 213.61 16.18 10866 11.8650 208.23 213.61 15.70 10867 11.8660 212.17 213.61 15.90 10868 11.8670 221.29 213.61 16.23 10869 11.8680 210.06 213.62 15.83 10870 11.8690 219.13 213.62 16.04 10871 11.8700 248.77 213.62 17.11 10872 11.8710 224.42 213.62 16.24 10873 11.8720 223.97 213.62 16.29 10874 11.8730 207.42 213.63 15.62 10875 11.8740 206.03 213.63 15.56 10876 11.8750 213.14 213.63 15.90 10877 11.8760 218.29 213.63 16.14 10878 11.8770 225.38 213.64 16.35 10879 11.8780 210.16 213.64 15.69 10880 11.8790 218.92 213.64 16.13 10881 11.8800 198.74 213.64 15.35 10882 11.8810 221.55 213.65 16.27 10883 11.8820 199.34 213.65 15.34 10884 11.8830 219.39 213.65 16.09 10885 11.8840 243.34 213.65 16.94 10886 11.8850 230.91 213.66 16.59 10887 11.8860 235.84 213.66 16.69 10888 11.8870 190.97 213.66 15.00 10889 11.8880 211.93 213.67 15.87 10890 11.8890 208.34 213.67 15.66 10891 11.8900 220.62 213.67 16.13 10892 11.8910 216.95 213.68 15.99 10893 11.8920 200.75 213.68 15.35 10894 11.8930 222.14 213.68 16.23 10895 11.8940 223.11 213.68 16.23 10896 11.8950 238.77 213.69 16.87 10897 11.8960 211.76 213.69 15.87 10898 11.8970 224.85 213.70 16.38 10899 11.8980 223.32 213.70 16.30 10900 11.8990 223.89 213.70 16.28 10901 11.9000 233.95 213.71 16.65 10902 11.9010 218.47 213.71 16.13 10903 11.9020 197.81 213.72 15.22 10904 11.9030 222.57 213.72 16.23 10905 11.9040 239.22 213.73 16.89 10906 11.9050 226.91 213.73 16.42 10907 11.9060 246.41 213.74 17.11 10908 11.9070 248.08 213.74 17.08 10909 11.9080 222.02 213.75 16.28 10910 11.9090 223.49 213.75 16.32 10911 11.9100 218.70 213.76 16.15 10912 11.9110 227.18 213.76 16.41 10913 11.9120 206.54 213.77 15.71 10914 11.9130 226.05 213.77 16.40 10915 11.9140 215.34 213.78 15.97 10916 11.9150 218.62 213.79 16.13 10917 11.9160 197.15 213.79 15.28 10918 11.9170 218.59 213.80 16.11 10919 11.9180 232.96 213.81 16.65 10920 11.9190 220.61 213.82 16.14 10921 11.9200 227.12 213.82 16.42 10922 11.9210 221.64 213.83 16.29 10923 11.9220 209.23 213.84 15.76 10924 11.9230 230.24 213.85 16.46 10925 11.9240 250.00 213.86 17.18 10926 11.9250 230.43 213.87 16.49 10927 11.9260 228.51 213.88 16.42 10928 11.9270 228.13 213.89 16.43 10929 11.9280 214.87 213.90 15.83 10930 11.9290 241.76 213.91 16.93 10931 11.9300 231.39 213.93 16.55 10932 11.9310 210.57 213.94 15.79 10933 11.9320 236.40 213.95 16.75 10934 11.9330 203.69 213.97 15.48 10935 11.9340 244.00 213.98 17.01 10936 11.9350 223.59 214.00 16.26 10937 11.9360 225.60 214.01 16.34 10938 11.9370 245.21 214.03 16.94 10939 11.9380 246.41 214.05 17.02 10940 11.9390 262.76 214.07 17.63 10941 11.9400 243.33 214.09 17.03 10942 11.9410 233.83 214.11 16.61 10943 11.9420 211.07 214.13 15.78 10944 11.9430 207.25 214.16 15.66 10945 11.9440 234.22 214.18 16.66 10946 11.9450 206.53 214.21 15.59 10947 11.9460 227.66 214.24 16.45 10948 11.9470 232.13 214.27 16.62 10949 11.9480 226.46 214.30 16.38 10950 11.9490 226.65 214.34 16.39 10951 11.9500 218.12 214.37 16.05 10952 11.9510 221.31 214.41 16.16 10953 11.9520 205.75 214.46 15.56 10954 11.9530 223.42 214.50 16.31 10955 11.9540 230.74 214.55 16.61 10956 11.9550 247.05 214.61 17.16 10957 11.9560 239.73 214.67 16.84 10958 11.9570 226.91 214.73 16.27 10959 11.9580 229.94 214.80 16.59 10960 11.9590 197.70 214.87 15.28 10961 11.9600 223.83 214.95 16.27 10962 11.9610 248.93 215.04 17.29 10963 11.9620 248.97 215.14 17.16 10964 11.9630 248.04 215.24 17.16 10965 11.9640 229.13 215.36 16.43 10966 11.9650 218.98 215.49 16.06 10967 11.9660 211.47 215.64 15.86 10968 11.9670 224.56 215.80 16.33 10969 11.9680 222.62 215.97 16.22 10970 11.9690 206.84 216.17 15.62 10971 11.9700 212.79 216.40 15.87 10972 11.9710 258.52 216.65 17.46 10973 11.9720 252.09 216.93 17.28 10974 11.9730 242.18 217.26 16.96 10975 11.9740 255.57 217.62 17.40 10976 11.9750 237.35 218.05 16.72 10977 11.9760 256.98 218.53 17.38 10978 11.9770 241.17 219.09 16.89 10979 11.9780 225.29 219.73 16.31 10980 11.9790 211.35 220.47 15.85 10981 11.9800 236.53 221.33 16.78 10982 11.9810 233.42 222.32 16.69 10983 11.9820 246.27 223.47 17.13 10984 11.9830 218.59 224.77 16.03 10985 11.9840 227.35 226.23 16.37 10986 11.9850 230.30 227.83 16.53 10987 11.9860 231.83 229.53 16.55 10988 11.9870 235.83 231.23 16.78 10989 11.9880 238.84 232.79 16.92 10990 11.9890 245.25 234.05 17.06 10991 11.9900 261.96 234.81 17.63 10992 11.9910 273.30 234.96 18.01 10993 11.9920 244.12 234.47 16.97 10994 11.9930 263.66 233.43 17.69 10995 11.9940 254.99 231.99 17.35 10996 11.9950 226.81 230.33 16.35 10997 11.9960 223.98 228.62 16.19 10998 11.9970 251.70 226.97 17.23 10999 11.9980 232.36 225.43 16.57 11000 11.9990 235.22 224.06 16.62 11001 12.0000 205.65 222.84 14.59 11002 12.0010 206.80 221.79 14.66 11003 12.0020 225.95 220.87 15.38 11004 12.0030 238.73 220.07 15.94 11005 12.0040 226.57 219.39 15.42 11006 12.0050 227.88 218.79 15.46 11007 12.0060 228.87 218.28 15.44 11008 12.0070 226.44 217.83 15.39 11009 12.0080 233.33 217.44 15.63 11010 12.0090 218.11 217.09 15.12 11011 12.0100 219.87 216.79 15.16 11012 12.0110 231.27 216.53 15.56 11013 12.0120 232.33 216.29 15.60 11014 12.0130 248.95 216.08 16.16 11015 12.0140 221.44 215.90 15.25 11016 12.0150 223.65 215.73 15.31 11017 12.0160 219.98 215.58 15.13 11018 12.0170 218.38 215.45 15.19 11019 12.0180 224.12 215.32 15.35 11020 12.0190 237.37 215.21 15.77 11021 12.0200 242.35 215.11 15.97 11022 12.0210 224.58 215.02 15.29 11023 12.0220 210.49 214.94 14.81 11024 12.0230 209.67 214.86 14.73 11025 12.0240 215.18 214.79 14.97 11026 12.0250 201.23 214.73 14.51 11027 12.0260 210.13 214.67 14.77 11028 12.0270 216.99 214.61 15.06 11029 12.0280 224.92 214.56 15.30 11030 12.0290 230.13 214.51 15.52 11031 12.0300 233.26 214.47 15.54 11032 12.0310 225.46 214.43 15.32 11033 12.0320 221.34 214.39 15.13 11034 12.0330 225.55 214.36 15.31 11035 12.0340 231.99 214.32 15.52 11036 12.0350 235.72 214.29 15.72 11037 12.0360 229.09 214.26 15.40 11038 12.0370 226.67 214.24 15.39 11039 12.0380 225.49 214.21 15.36 11040 12.0390 216.69 214.19 15.00 11041 12.0400 224.30 214.16 15.31 11042 12.0410 219.88 214.14 15.20 11043 12.0420 211.37 214.12 14.82 11044 12.0430 236.95 214.10 15.74 11045 12.0440 231.04 214.09 15.57 11046 12.0450 213.35 214.07 14.91 11047 12.0460 242.51 214.05 15.91 11048 12.0470 236.54 214.04 15.75 11049 12.0480 237.71 214.02 15.81 11050 12.0490 241.77 214.01 15.97 11051 12.0500 233.24 214.00 15.65 11052 12.0510 241.41 228.34 15.90 11053 12.0520 219.35 228.47 15.12 11054 12.0530 222.11 228.62 15.27 11055 12.0540 225.74 228.76 15.29 11056 12.0550 246.86 228.91 16.03 11057 12.0560 246.96 229.06 16.06 11058 12.0570 264.45 229.21 16.67 11059 12.0580 233.99 229.37 15.60 11060 12.0590 227.94 229.53 15.38 11061 12.0600 252.31 229.69 16.20 11062 12.0610 248.80 229.86 16.16 11063 12.0620 259.66 230.03 16.53 11064 12.0630 248.51 230.20 16.14 11065 12.0640 229.14 230.38 15.49 11066 12.0650 239.95 230.56 15.82 11067 12.0660 226.72 230.74 15.39 11068 12.0670 237.28 230.93 15.79 11069 12.0680 263.05 231.12 16.59 11070 12.0690 263.91 231.31 16.59 11071 12.0700 215.42 231.51 14.90 11072 12.0710 256.83 231.71 16.37 11073 12.0720 264.66 231.91 16.73 11074 12.0730 256.07 232.12 16.37 11075 12.0740 260.85 232.33 16.52 11076 12.0750 277.23 232.55 17.06 11077 12.0760 265.74 232.77 16.77 11078 12.0770 247.08 233.00 16.09 11079 12.0780 248.02 233.23 16.13 11080 12.0790 275.43 233.46 17.01 11081 12.0800 279.13 233.70 17.08 11082 12.0810 251.67 233.94 16.20 11083 12.0820 259.74 234.19 16.47 11084 12.0830 271.11 234.44 16.74 11085 12.0840 292.92 234.70 17.39 11086 12.0850 266.12 234.96 16.65 11087 12.0860 262.40 235.23 16.58 11088 12.0870 281.39 235.50 17.16 11089 12.0880 267.73 235.78 16.80 11090 12.0890 285.77 236.06 17.27 11091 12.0900 304.80 236.35 17.86 11092 12.0910 290.37 236.65 17.42 11093 12.0920 297.69 236.95 17.67 11094 12.0930 295.72 237.26 17.60 11095 12.0940 278.22 237.57 17.01 11096 12.0950 288.15 237.89 17.37 11097 12.0960 280.57 238.22 17.06 11098 12.0970 310.23 238.55 17.98 11099 12.0980 302.56 238.89 17.74 11100 12.0990 297.36 239.24 17.63 11101 12.1000 317.51 239.60 18.22 11102 12.1010 316.78 239.96 18.17 11103 12.1020 319.08 240.33 18.29 11104 12.1030 343.79 240.71 18.89 11105 12.1040 326.77 241.10 18.49 11106 12.1050 341.05 241.49 18.90 11107 12.1060 308.83 241.90 17.96 11108 12.1070 306.98 242.31 17.92 11109 12.1080 343.38 242.73 18.98 11110 12.1090 318.19 243.17 18.24 11111 12.1100 327.74 243.61 18.40 11112 12.1110 337.11 244.06 18.75 11113 12.1120 335.08 244.52 18.70 11114 12.1130 356.15 245.00 19.30 11115 12.1140 320.01 245.48 18.22 11116 12.1150 340.41 245.98 18.83 11117 12.1160 398.30 246.49 20.43 11118 12.1170 359.72 247.01 19.38 11119 12.1180 346.57 247.54 19.04 11120 12.1190 353.99 248.09 19.27 11121 12.1200 361.86 248.64 19.44 11122 12.1210 363.83 249.22 19.50 11123 12.1220 339.17 249.80 18.75 11124 12.1230 377.41 250.40 19.78 11125 12.1240 346.57 251.02 19.01 11126 12.1250 332.34 251.65 18.67 11127 12.1260 385.11 252.30 20.10 11128 12.1270 368.47 252.97 19.62 11129 12.1280 373.24 253.65 19.69 11130 12.1290 360.74 254.35 19.39 11131 12.1300 358.66 255.07 19.36 11132 12.1310 332.57 255.81 18.65 11133 12.1320 359.22 256.57 19.34 11134 12.1330 357.82 257.35 19.33 11135 12.1340 350.80 258.15 19.14 11136 12.1350 329.81 258.98 18.52 11137 12.1360 371.19 259.82 19.68 11138 12.1370 362.25 260.69 19.47 11139 12.1380 319.94 261.59 18.30 11140 12.1390 338.40 262.51 18.81 11141 12.1400 322.18 263.46 18.33 11142 12.1410 324.82 264.43 18.48 11143 12.1420 328.11 265.44 18.54 11144 12.1430 339.98 266.47 18.96 11145 12.1440 331.84 267.54 18.64 11146 12.1450 307.21 268.64 17.87 11147 12.1460 312.11 269.77 18.02 11148 12.1470 300.61 270.94 17.71 11149 12.1480 312.33 272.15 18.09 11150 12.1490 311.78 273.39 18.02 11151 12.1500 305.87 274.67 17.85 11152 12.1510 289.26 276.00 17.42 11153 12.1520 294.22 277.37 17.51 11154 12.1530 291.58 278.79 17.43 11155 12.1540 302.54 280.25 17.85 11156 12.1550 315.35 281.76 18.22 11157 12.1560 314.00 283.33 18.13 11158 12.1570 326.21 284.94 18.50 11159 12.1580 310.18 286.62 18.00 11160 12.1590 291.53 288.36 17.50 11161 12.1600 310.94 290.15 18.02 11162 12.1610 309.82 292.02 17.97 11163 12.1620 299.08 293.95 17.68 11164 12.1630 317.56 295.95 18.21 11165 12.1640 303.22 298.03 17.80 11166 12.1650 298.25 300.19 17.67 11167 12.1660 293.33 302.44 17.50 11168 12.1670 317.71 304.77 18.25 11169 12.1680 306.76 307.19 17.94 11170 12.1690 320.40 309.71 18.30 11171 12.1700 320.94 312.34 18.30 11172 12.1710 340.78 315.07 18.86 11173 12.1720 334.64 317.92 18.73 11174 12.1730 344.21 320.89 19.00 11175 12.1740 304.16 323.99 17.80 11176 12.1750 329.59 327.23 18.49 11177 12.1760 341.36 330.60 18.85 11178 12.1770 325.66 334.13 18.45 11179 12.1780 339.16 337.83 18.86 11180 12.1790 358.67 341.69 19.33 11181 12.1800 348.34 345.74 19.07 11182 12.1810 335.67 349.97 18.65 11183 12.1820 376.64 354.42 19.87 11184 12.1830 355.88 359.08 19.25 11185 12.1840 308.46 363.98 17.90 11186 12.1850 358.20 369.13 19.41 11187 12.1860 368.76 374.51 19.71 11188 12.1870 395.25 380.21 20.30 11189 12.1880 431.99 386.22 21.29 11190 12.1890 407.42 392.56 20.60 11191 12.1900 388.49 399.25 20.09 11192 12.1910 413.65 406.32 20.78 11193 12.1920 429.29 413.81 21.18 11194 12.1930 409.86 421.73 20.65 11195 12.1940 458.68 430.12 21.92 11196 12.1950 463.41 439.02 22.00 11197 12.1960 414.68 448.49 20.80 11198 12.1970 422.78 458.55 21.00 11199 12.1980 468.90 469.27 22.05 11200 12.1990 474.20 480.71 22.27 11201 12.2000 466.97 492.91 22.03 11202 12.2010 442.21 505.97 21.48 11203 12.2020 467.75 519.94 22.12 11204 12.2030 510.95 534.94 23.09 11205 12.2040 535.93 551.04 23.59 11206 12.2050 575.71 568.36 24.52 11207 12.2060 614.76 587.04 25.36 11208 12.2070 591.80 607.18 24.86 11209 12.2080 619.63 628.99 25.41 11210 12.2090 616.30 652.62 25.33 11211 12.2100 619.60 678.28 25.39 11212 12.2110 733.60 706.24 27.67 11213 12.2120 710.14 736.70 27.26 11214 12.2130 769.51 770.01 28.40 11215 12.2140 781.15 806.52 28.55 11216 12.2150 855.50 846.68 29.91 11217 12.2160 867.57 890.85 30.13 11218 12.2170 902.18 939.74 30.71 11219 12.2180 994.38 993.93 32.19 11220 12.2190 1093.45 1054.12 33.86 11221 12.2200 1095.37 1129.03 33.84 11222 12.2210 1186.77 1204.24 35.27 11223 12.2220 1240.85 1288.77 36.09 11224 12.2230 1335.87 1383.88 37.41 11225 12.2240 1457.31 1491.66 39.08 11226 12.2250 1511.91 1614.08 39.85 11227 12.2260 1663.55 1753.39 41.80 11228 12.2270 1863.94 1913.08 44.14 11229 12.2280 1988.85 2096.31 45.53 11230 12.2290 2206.39 2307.61 48.06 11231 12.2300 2293.97 2551.31 49.04 11232 12.2310 2679.06 2833.88 52.95 11233 12.2320 2943.34 3161.20 55.50 11234 12.2330 3331.95 3539.17 59.10 11235 12.2340 3709.76 3975.33 62.39 11236 12.2350 4266.40 4473.28 66.91 11237 12.2360 4861.80 5034.18 71.34 11238 12.2370 5600.26 5652.24 76.59 11239 12.2380 6177.34 6308.31 80.48 11240 12.2390 7221.00 6968.90 86.98 11241 12.2400 8005.74 7578.90 91.69 11242 12.2410 8359.13 8071.86 93.53 11243 12.2420 8606.60 8376.35 94.97 11244 12.2430 8326.17 8442.52 93.23 11245 12.2440 7848.28 8258.46 90.52 11246 12.2450 7199.75 7856.32 86.63 11247 12.2460 6693.92 7298.59 83.61 11248 12.2470 6075.95 6656.82 79.63 11249 12.2480 5330.08 5992.83 74.53 11250 12.2490 4787.92 5352.71 70.67 11251 12.2500 4384.48 4760.47 67.54 11252 12.2510 3999.38 4229.12 64.58 11253 12.2520 3505.53 3761.48 60.35 11254 12.2530 3152.09 3354.07 57.32 11255 12.2540 2878.33 3001.29 54.80 11256 12.2550 2588.96 2696.37 51.97 11257 12.2560 2410.32 2433.55 50.19 11258 12.2570 2140.94 2205.96 47.25 11259 12.2580 1958.72 2008.77 45.21 11260 12.2590 1812.38 1837.69 43.45 11261 12.2600 1659.01 1688.23 41.54 11262 12.2610 1562.61 1557.53 40.32 11263 12.2620 1476.44 1442.61 39.25 11264 12.2630 1379.19 1341.43 37.89 11265 12.2640 1286.79 1251.71 36.64 11266 12.2650 1219.91 1171.99 35.65 11267 12.2660 1170.91 1101.03 34.93 11268 12.2670 1120.75 1037.43 34.22 11269 12.2680 1039.14 980.39 32.86 11270 12.2690 1016.43 929.02 32.55 11271 12.2700 968.59 882.59 31.81 11272 12.2710 927.86 840.56 31.08 11273 12.2720 866.50 802.39 30.07 11274 12.2730 796.49 767.62 28.75 11275 12.2740 741.20 735.86 27.77 11276 12.2750 719.85 706.85 27.34 11277 12.2760 696.62 680.19 26.96 11278 12.2770 650.16 655.69 25.98 11279 12.2780 686.00 633.15 26.72 11280 12.2790 633.57 612.35 25.69 11281 12.2800 629.86 593.13 25.54 11282 12.2810 581.13 575.31 24.58 11283 12.2820 593.65 558.81 24.89 11284 12.2830 537.92 543.45 23.64 11285 12.2840 545.69 529.16 23.84 11286 12.2850 570.62 515.87 24.43 11287 12.2860 503.32 503.45 22.89 11288 12.2870 493.35 491.85 22.61 11289 12.2880 485.21 480.99 22.51 11290 12.2890 482.70 470.84 22.45 11291 12.2900 485.04 461.30 22.50 11292 12.2910 460.38 452.35 21.96 11293 12.2920 431.60 443.95 21.24 11294 12.2930 418.81 436.05 20.84 11295 12.2940 415.25 428.61 20.79 11296 12.2950 384.41 421.60 20.04 11297 12.2960 400.62 414.99 20.43 11298 12.2970 409.04 408.75 20.68 11299 12.2980 386.98 402.85 20.16 11300 12.2990 381.87 397.30 20.01 11301 12.3000 391.64 392.03 20.28 11302 12.3010 366.84 387.05 19.61 11303 12.3020 395.30 382.34 20.32 11304 12.3030 367.74 377.88 19.62 11305 12.3040 330.02 373.65 18.48 11306 12.3050 337.81 369.64 18.71 11307 12.3060 359.06 365.85 19.29 11308 12.3070 350.63 362.24 19.09 11309 12.3080 346.97 358.83 19.00 11310 12.3090 331.57 355.59 18.66 11311 12.3100 342.75 352.51 18.99 11312 12.3110 322.72 349.59 18.44 11313 12.3120 331.46 346.83 18.61 11314 12.3130 323.29 344.20 18.35 11315 12.3140 327.10 341.71 18.51 11316 12.3150 324.83 339.35 18.42 11317 12.3160 329.66 337.11 18.53 11318 12.3170 304.05 334.99 17.78 11319 12.3180 288.90 332.99 17.33 11320 12.3190 282.10 331.08 17.09 11321 12.3200 308.74 329.29 17.89 11322 12.3210 300.37 327.59 17.75 11323 12.3220 269.76 325.99 16.77 11324 12.3230 272.51 324.48 16.86 11325 12.3240 296.72 323.06 17.57 11326 12.3250 304.22 321.73 17.76 11327 12.3260 285.00 320.47 17.31 11328 12.3270 296.11 319.30 17.60 11329 12.3280 316.84 318.21 18.17 11330 12.3290 269.83 317.20 16.73 11331 12.3300 271.32 316.25 16.81 11332 12.3310 298.34 315.38 17.65 11333 12.3320 283.69 314.59 17.27 11334 12.3330 279.83 313.86 17.16 11335 12.3340 280.76 313.20 17.09 11336 12.3350 262.44 312.61 16.53 11337 12.3360 251.06 312.08 16.11 11338 12.3370 279.51 311.62 17.04 11339 12.3380 284.62 311.22 17.22 11340 12.3390 282.63 310.89 17.20 11341 12.3400 312.37 310.63 18.18 11342 12.3410 278.27 310.42 16.97 11343 12.3420 272.55 310.28 16.79 11344 12.3430 277.84 310.21 17.05 11345 12.3440 297.59 310.20 17.54 11346 12.3450 326.33 310.25 18.41 11347 12.3460 292.68 310.37 17.50 11348 12.3470 276.53 310.55 17.03 11349 12.3480 267.25 310.80 16.71 11350 12.3490 301.01 311.12 17.68 11351 12.3500 296.27 311.51 17.48 11352 12.3510 286.16 311.96 17.26 11353 12.3520 299.73 312.49 17.66 11354 12.3530 312.25 313.09 18.04 11355 12.3540 325.41 313.76 18.46 11356 12.3550 302.44 314.51 17.82 11357 12.3560 316.13 315.34 18.17 11358 12.3570 321.02 316.26 18.27 11359 12.3580 308.62 317.25 17.94 11360 12.3590 316.11 318.33 18.16 11361 12.3600 313.30 319.50 18.13 11362 12.3610 296.00 320.77 17.57 11363 12.3620 310.16 322.13 17.90 11364 12.3630 320.68 323.60 18.29 11365 12.3640 316.93 325.17 18.27 11366 12.3650 355.31 326.85 19.29 11367 12.3660 328.44 328.65 18.51 11368 12.3670 320.68 330.57 18.22 11369 12.3680 340.64 332.62 18.86 11370 12.3690 316.45 334.80 18.18 11371 12.3700 312.56 337.13 18.05 11372 12.3710 330.85 339.61 18.66 11373 12.3720 302.82 342.25 17.76 11374 12.3730 334.16 345.05 18.70 11375 12.3740 353.78 348.04 19.26 11376 12.3750 337.97 351.22 18.78 11377 12.3760 333.51 354.60 18.67 11378 12.3770 326.51 358.19 18.48 11379 12.3780 354.53 362.02 19.22 11380 12.3790 354.50 366.10 19.20 11381 12.3800 357.80 370.44 19.35 11382 12.3810 363.03 375.06 19.42 11383 12.3820 354.76 379.99 19.21 11384 12.3830 388.69 385.26 20.19 11385 12.3840 362.98 390.86 19.48 11386 12.3850 407.56 396.86 20.64 11387 12.3860 406.72 403.27 20.59 11388 12.3870 392.27 410.13 20.29 11389 12.3880 417.54 417.48 20.94 11390 12.3890 397.04 425.36 20.40 11391 12.3900 418.79 433.81 20.93 11392 12.3910 426.62 442.89 21.06 11393 12.3920 425.87 452.67 21.06 11394 12.3930 436.07 463.19 21.34 11395 12.3940 481.08 474.56 22.37 11396 12.3950 496.72 486.84 22.74 11397 12.3960 504.31 500.13 22.95 11398 12.3970 527.11 514.52 23.41 11399 12.3980 554.68 530.15 24.03 11400 12.3990 573.02 547.17 24.46 11401 12.4000 511.32 565.69 23.13 11402 12.4010 573.99 585.95 24.55 11403 12.4020 654.32 608.13 26.15 11404 12.4030 634.22 632.42 25.73 11405 12.4040 671.41 659.17 26.45 11406 12.4050 700.00 688.64 27.07 11407 12.4060 744.95 721.23 28.00 11408 12.4070 772.97 757.29 28.43 11409 12.4080 806.95 797.42 29.01 11410 12.4090 850.92 842.16 29.79 11411 12.4100 947.05 892.08 31.48 11412 12.4110 928.07 948.15 31.12 11413 12.4120 1010.54 1011.16 32.54 11414 12.4130 1067.57 1082.25 33.49 11415 12.4140 1221.87 1162.69 35.76 11416 12.4150 1327.36 1254.07 37.26 11417 12.4160 1392.74 1358.05 38.19 11418 12.4170 1529.03 1476.43 40.06 11419 12.4180 1669.13 1611.88 41.82 11420 12.4190 1864.65 1766.58 44.16 11421 12.4200 2057.35 1943.32 46.45 11422 12.4210 2324.94 2144.73 49.37 11423 12.4220 2739.34 2373.32 53.58 11424 12.4230 3082.10 2630.02 56.85 11425 12.4240 3578.23 2914.51 61.27 11426 12.4250 4315.19 3223.40 67.24 11427 12.4260 4822.06 3547.44 71.13 11428 12.4270 5531.46 3872.97 76.13 11429 12.4280 6213.70 4177.57 80.76 11430 12.4290 6402.28 4433.17 81.93 11431 12.4300 6596.14 4611.46 83.16 11432 12.4310 6563.15 4688.13 82.86 11433 12.4320 6037.64 4652.14 79.33 11434 12.4330 5542.14 4508.98 76.12 11435 12.4340 5069.26 4278.03 72.62 11436 12.4350 4409.32 3987.57 67.70 11437 12.4360 3916.48 3652.94 63.80 11438 12.4370 3528.52 3325.74 60.62 11439 12.4380 3081.95 3009.88 56.62 11440 12.4390 2720.67 2715.67 53.23 11441 12.4400 2452.78 2448.34 50.56 11442 12.4410 2237.98 2209.21 48.28 11443 12.4420 2066.12 1997.73 46.38 11444 12.4430 1889.14 1812.17 44.40 11445 12.4440 1699.80 1649.33 42.10 11446 12.4450 1529.11 1506.97 39.84 11447 12.4460 1415.00 1382.36 38.40 11448 12.4470 1318.53 1273.14 37.10 11449 12.4480 1193.37 1177.13 35.24 11450 12.4490 1035.48 1092.66 32.83 11451 12.4500 982.68 1018.07 31.97 11452 12.4510 921.29 951.95 30.92 11453 12.4520 840.40 893.29 29.53 11454 12.4530 803.74 840.92 28.98 11455 12.4540 753.71 794.10 28.04 11456 12.4550 722.71 752.15 27.55 11457 12.4560 703.42 714.40 27.13 11458 12.4570 675.58 680.35 26.54 11459 12.4580 647.80 649.52 26.04 11460 12.4590 599.07 621.59 24.95 11461 12.4600 551.94 596.14 23.96 11462 12.4610 527.79 572.94 23.48 11463 12.4620 502.56 551.77 22.90 11464 12.4630 523.21 532.34 23.41 11465 12.4640 489.24 514.51 22.55 11466 12.4650 454.67 498.10 21.73 11467 12.4660 469.71 482.99 22.18 11468 12.4670 449.01 469.00 21.64 11469 12.4680 447.10 456.06 21.57 11470 12.4690 429.76 444.08 21.22 11471 12.4700 435.99 432.94 21.35 11472 12.4710 394.71 422.58 20.31 11473 12.4720 410.25 412.92 20.67 11474 12.4730 425.45 403.92 21.10 11475 12.4740 436.66 395.49 21.40 11476 12.4750 424.12 387.61 21.02 11477 12.4760 397.84 380.23 20.32 11478 12.4770 398.98 373.29 20.40 11479 12.4780 408.52 366.79 20.58 11480 12.4790 397.84 360.66 20.34 11481 12.4800 385.56 354.89 20.12 11482 12.4810 392.76 349.45 20.24 11483 12.4820 401.10 344.32 20.54 11484 12.4830 378.01 339.47 19.92 11485 12.4840 375.55 334.88 19.77 11486 12.4850 372.64 330.54 19.68 11487 12.4860 381.03 326.43 19.94 11488 12.4870 366.89 322.52 19.52 11489 12.4880 373.39 318.82 19.73 11490 12.4890 376.68 315.30 19.89 11491 12.4900 397.41 311.95 20.28 11492 12.4910 364.71 308.76 19.49 11493 12.4920 385.06 305.73 20.02 11494 12.4930 371.11 302.84 19.59 11495 12.4940 375.13 300.08 19.74 11496 12.4950 392.81 297.45 20.21 11497 12.4960 357.03 294.93 19.31 11498 12.4970 363.60 292.52 19.48 11499 12.4980 361.11 290.23 19.37 11500 12.4990 370.96 288.02 19.65 11501 12.5000 346.10 285.92 18.98 11502 12.5010 347.89 283.89 19.08 11503 12.5020 351.93 281.96 19.19 11504 12.5030 360.77 280.10 19.41 11505 12.5040 368.01 278.32 19.59 11506 12.5050 370.21 276.61 19.68 11507 12.5060 335.14 274.96 18.70 11508 12.5070 335.10 273.38 18.64 11509 12.5080 348.98 271.86 19.08 11510 12.5090 302.64 270.39 17.77 11511 12.5100 338.14 268.98 18.78 11512 12.5110 353.35 267.62 19.24 11513 12.5120 354.32 266.32 19.27 11514 12.5130 336.10 265.05 18.74 11515 12.5140 354.90 263.84 19.23 11516 12.5150 338.77 262.66 18.79 11517 12.5160 311.56 261.53 18.01 11518 12.5170 319.94 260.43 18.33 11519 12.5180 309.81 259.38 17.95 11520 12.5190 331.57 258.35 18.61 11521 12.5200 306.08 257.36 17.84 11522 12.5210 293.05 256.41 17.43 11523 12.5220 316.21 255.48 18.16 11524 12.5230 298.71 254.59 17.62 11525 12.5240 300.14 253.72 17.68 11526 12.5250 318.91 252.88 18.19 11527 12.5260 302.26 252.07 17.78 11528 12.5270 303.49 251.28 17.72 11529 12.5280 310.00 250.52 17.95 11530 12.5290 288.60 249.77 17.40 11531 12.5300 278.55 249.05 17.10 11532 12.5310 266.52 248.36 16.71 11533 12.5320 272.34 247.68 16.85 11534 12.5330 288.47 247.02 17.36 11535 12.5340 270.80 246.38 16.82 11536 12.5350 276.48 245.76 17.04 11537 12.5360 279.21 245.16 17.13 11538 12.5370 268.48 244.57 16.72 11539 12.5380 265.11 244.00 16.67 11540 12.5390 249.17 243.45 16.10 11541 12.5400 259.07 242.91 16.38 11542 12.5410 262.68 242.38 16.55 11543 12.5420 251.11 241.88 16.17 11544 12.5430 259.11 241.38 16.41 11545 12.5440 258.85 240.89 16.40 11546 12.5450 261.56 240.42 16.48 11547 12.5460 243.64 239.96 15.96 11548 12.5470 238.54 239.52 15.75 11549 12.5480 265.08 239.08 16.62 11550 12.5490 247.83 238.65 16.08 11551 12.5500 233.46 238.24 15.59 11552 12.5510 256.55 237.84 16.35 11553 12.5520 264.10 237.44 16.58 11554 12.5530 253.69 237.06 16.21 11555 12.5540 234.90 236.68 15.60 11556 12.5550 246.73 236.31 16.06 11557 12.5560 246.81 235.96 16.09 11558 12.5570 248.21 235.61 16.07 11559 12.5580 244.85 235.27 16.00 11560 12.5590 210.43 234.93 14.79 11561 12.5600 235.49 234.61 15.67 11562 12.5610 246.33 234.29 16.02 11563 12.5620 264.74 233.98 16.68 11564 12.5630 237.99 233.68 15.75 11565 12.5640 260.89 233.38 16.43 11566 12.5650 229.78 233.09 15.53 11567 12.5660 237.08 232.80 15.72 11568 12.5670 242.67 232.52 15.89 11569 12.5680 225.18 232.25 15.35 11570 12.5690 230.52 231.99 15.50 11571 12.5700 236.54 231.73 15.70 11572 12.5710 211.45 231.47 14.81 11573 12.5720 203.58 231.22 14.46 11574 12.5730 209.18 230.98 14.79 11575 12.5740 225.13 230.74 15.30 11576 12.5750 232.02 230.51 15.57 11577 12.5760 244.54 230.28 15.96 11578 12.5770 242.74 230.05 16.00 11579 12.5780 244.36 229.83 16.02 11580 12.5790 245.34 229.62 15.94 11581 12.5800 245.34 229.41 15.98 11582 12.5810 216.42 229.20 14.99 11583 12.5820 236.21 229.00 15.71 11584 12.5830 221.56 228.80 15.18 11585 12.5840 223.67 228.60 15.29 11586 12.5850 220.54 228.41 15.18 11587 12.5860 215.39 228.22 14.89 11588 12.5870 224.94 228.04 15.26 11589 12.5880 230.59 227.86 15.55 11590 12.5890 229.33 227.68 15.51 11591 12.5900 228.01 227.51 15.40 11592 12.5910 209.91 227.34 14.78 11593 12.5920 219.88 227.17 15.15 11594 12.5930 219.19 227.01 15.14 11595 12.5940 236.59 226.85 15.70 11596 12.5950 247.33 226.69 16.03 11597 12.5960 226.54 226.53 15.29 11598 12.5970 200.50 226.38 14.44 11599 12.5980 211.43 226.23 14.83 11600 12.5990 192.56 226.08 14.15 11601 12.6000 203.78 225.94 14.54 11602 12.6010 191.26 225.79 14.07 11603 12.6020 216.81 225.65 15.05 11604 12.6030 209.16 225.52 14.71 11605 12.6040 217.37 225.38 15.09 11606 12.6050 220.40 225.25 15.24 11607 12.6060 208.76 225.12 14.76 11608 12.6070 207.70 224.99 14.72 11609 12.6080 215.26 224.87 14.96 11610 12.6090 203.56 224.74 14.54 11611 12.6100 209.80 224.62 14.79 11612 12.6110 210.15 224.50 14.87 11613 12.6120 206.79 224.38 14.71 11614 12.6130 205.51 224.27 14.64 11615 12.6140 210.49 224.15 14.83 11616 12.6150 208.96 224.04 14.76 11617 12.6160 211.52 223.93 14.89 11618 12.6170 196.10 223.82 14.32 11619 12.6180 213.81 223.72 14.96 11620 12.6190 217.94 223.61 15.11 11621 12.6200 234.36 223.51 15.65 11622 12.6210 215.66 223.41 15.07 11623 12.6220 211.69 223.31 14.86 11624 12.6230 213.41 223.21 14.87 11625 12.6240 175.73 223.11 13.49 11626 12.6250 194.69 223.01 14.26 11627 12.6260 195.58 222.92 14.32 11628 12.6270 205.18 222.83 14.63 11629 12.6280 215.36 222.74 14.98 11630 12.6290 200.24 222.65 14.47 11631 12.6300 223.05 222.56 15.21 11632 12.6310 224.91 222.47 15.27 11633 12.6320 219.84 222.39 15.15 11634 12.6330 198.60 222.30 14.28 11635 12.6340 172.61 222.22 13.46 11636 12.6350 195.12 222.13 14.29 11637 12.6360 208.75 222.05 14.77 11638 12.6370 202.84 221.98 14.56 11639 12.6380 208.47 221.90 14.77 11640 12.6390 209.72 221.82 14.73 11641 12.6400 198.99 221.74 14.34 11642 12.6410 216.69 221.67 14.97 11643 12.6420 195.41 221.59 14.25 11644 12.6430 213.21 221.52 14.91 11645 12.6440 213.96 213.79 14.92 11646 12.6450 209.32 213.79 14.77 11647 12.6460 208.35 213.79 14.70 11648 12.6470 204.06 213.79 14.57 11649 12.6480 204.25 213.79 14.62 11650 12.6490 200.45 213.79 14.45 11651 12.6500 188.64 213.79 13.97 11652 12.6510 206.83 213.79 14.67 11653 12.6520 200.47 213.79 14.41 11654 12.6530 206.82 213.79 14.66 11655 12.6540 201.67 213.79 14.47 11656 12.6550 214.80 213.79 15.02 11657 12.6560 208.10 213.79 14.65 11658 12.6570 193.93 213.79 14.19 11659 12.6580 212.74 213.79 14.84 11660 12.6590 207.91 213.79 14.76 11661 12.6600 195.47 213.79 14.34 11662 12.6610 209.07 213.79 14.81 11663 12.6620 213.59 213.79 14.96 11664 12.6630 230.07 213.79 15.49 11665 12.6640 198.27 213.79 14.42 11666 12.6650 193.32 213.79 14.15 11667 12.6660 188.93 213.79 14.02 11668 12.6670 192.85 213.80 14.22 11669 12.6680 202.00 213.80 14.51 11670 12.6690 211.16 213.80 14.87 11671 12.6700 218.01 213.80 15.12 11672 12.6710 181.03 213.80 13.73 11673 12.6720 174.55 213.80 13.45 11674 12.6730 203.83 213.80 14.52 11675 12.6740 205.93 213.80 14.67 11676 12.6750 211.57 213.80 14.84 11677 12.6760 174.58 213.80 13.44 11678 12.6770 176.36 213.80 13.53 11679 12.6780 207.14 213.80 14.75 11680 12.6790 196.02 213.80 14.28 11681 12.6800 215.59 213.80 14.97 11682 12.6810 211.59 213.80 14.88 11683 12.6820 202.23 213.80 14.49 11684 12.6830 210.13 213.80 14.88 11685 12.6840 211.11 213.80 14.87 11686 12.6850 215.31 213.80 14.96 11687 12.6860 207.96 213.80 14.72 11688 12.6870 212.68 213.80 14.87 11689 12.6880 215.91 213.80 15.02 11690 12.6890 193.29 213.80 14.20 11691 12.6900 210.50 213.80 14.80 11692 12.6910 195.04 213.80 14.22 11693 12.6920 189.98 213.80 14.05 11694 12.6930 221.75 213.80 15.16 11695 12.6940 194.28 213.80 14.23 11696 12.6950 224.59 213.80 15.28 11697 12.6960 204.37 213.80 14.66 11698 12.6970 224.28 213.80 15.23 11699 12.6980 204.40 213.80 14.52 11700 12.6990 203.78 213.80 14.61 11701 12.7000 219.92 213.80 15.15 11702 12.7010 209.05 213.80 14.75 11703 12.7020 226.11 213.80 15.40 11704 12.7030 225.12 213.80 15.35 11705 12.7040 200.01 213.80 14.38 11706 12.7050 203.79 213.80 14.52 11707 12.7060 216.71 213.80 15.01 11708 12.7070 203.64 213.80 14.57 11709 12.7080 211.05 213.80 14.85 11710 12.7090 216.00 213.80 14.96 11711 12.7100 210.69 213.80 14.81 11712 12.7110 234.87 213.80 15.62 11713 12.7120 227.38 213.80 15.33 11714 12.7130 239.26 213.80 15.77 11715 12.7140 204.36 213.80 14.54 11716 12.7150 219.48 213.80 15.10 11717 12.7160 232.81 213.81 15.63 11718 12.7170 203.96 213.81 14.52 11719 12.7180 229.42 213.81 15.48 11720 12.7190 216.14 213.81 14.97 11721 12.7200 229.72 213.81 15.49 11722 12.7210 226.29 213.81 15.40 11723 12.7220 204.02 213.81 14.53 11724 12.7230 202.28 213.81 14.49 11725 12.7240 229.38 213.81 15.46 11726 12.7250 213.44 213.81 14.88 11727 12.7260 213.99 213.81 14.96 11728 12.7270 214.35 213.81 14.95 11729 12.7280 222.29 213.81 15.20 11730 12.7290 216.34 213.81 14.97 11731 12.7300 219.97 213.81 15.17 11732 12.7310 235.43 213.81 15.69 11733 12.7320 220.11 213.81 15.20 11734 12.7330 225.31 213.81 15.33 11735 12.7340 210.00 213.81 14.74 11736 12.7350 209.15 213.81 14.81 11737 12.7360 201.47 213.81 14.50 11738 12.7370 217.39 213.81 15.06 11739 12.7380 203.22 213.81 14.52 11740 12.7390 218.20 213.81 15.13 11741 12.7400 212.20 213.81 14.90 11742 12.7410 212.77 213.81 14.88 11743 12.7420 212.40 213.81 14.81 11744 12.7430 237.38 213.81 15.76 11745 12.7440 230.43 213.81 15.49 11746 12.7450 222.18 213.81 15.20 11747 12.7460 198.73 213.81 14.47 11748 12.7470 207.80 213.81 14.80 11749 12.7480 223.93 213.81 15.40 11750 12.7490 212.18 213.81 14.91 11751 12.7500 205.77 213.81 14.65 11752 12.7510 210.98 213.81 14.84 11753 12.7520 225.86 213.81 15.31 11754 12.7530 216.23 213.81 14.99 11755 12.7540 217.71 213.81 14.97 11756 12.7550 202.24 213.81 14.44 11757 12.7560 199.38 213.81 14.46 11758 12.7570 197.43 213.81 14.36 11759 12.7580 201.77 213.81 14.50 11760 12.7590 208.87 213.81 14.75 11761 12.7600 201.93 213.81 14.42 11762 12.7610 222.91 213.81 15.25 11763 12.7620 219.17 213.81 15.16 11764 12.7630 213.51 213.82 14.89 11765 12.7640 200.69 213.82 14.44 11766 12.7650 182.01 213.82 13.75 11767 12.7660 192.17 213.82 14.11 11768 12.7670 217.86 213.82 15.08 11769 12.7680 214.26 213.82 14.94 11770 12.7690 210.35 213.82 14.78 11771 12.7700 206.21 213.82 14.73 11772 12.7710 217.28 213.82 15.06 11773 12.7720 216.39 213.82 15.08 11774 12.7730 223.62 213.82 15.26 11775 12.7740 200.32 213.82 14.46 11776 12.7750 222.04 213.82 15.24 11777 12.7760 198.42 213.82 14.40 11778 12.7770 210.48 213.82 14.82 11779 12.7780 216.25 213.82 15.05 11780 12.7790 207.51 213.82 14.69 11781 12.7800 192.73 213.82 14.23 11782 12.7810 210.19 213.82 14.77 11783 12.7820 227.31 213.82 15.34 11784 12.7830 226.74 213.82 15.32 11785 12.7840 215.74 213.82 15.05 11786 12.7850 218.07 213.82 15.11 11787 12.7860 183.57 213.82 13.82 11788 12.7870 209.96 213.82 14.79 11789 12.7880 225.60 213.82 15.36 11790 12.7890 211.99 213.82 14.81 11791 12.7900 227.03 213.82 15.31 11792 12.7910 204.10 213.82 14.58 11793 12.7920 229.14 213.82 15.49 11794 12.7930 215.23 213.82 14.96 11795 12.7940 205.91 213.82 14.63 11796 12.7950 209.16 213.82 14.74 11797 12.7960 229.11 213.82 15.46 11798 12.7970 209.55 213.82 14.82 11799 12.7980 227.56 213.82 15.44 11800 12.7990 238.73 213.82 15.81 11801 12.8000 212.06 213.82 14.87 11802 12.8010 217.10 213.82 15.06 11803 12.8020 198.63 213.82 14.31 11804 12.8030 216.57 213.82 15.03 11805 12.8040 212.35 213.82 14.90 11806 12.8050 207.81 213.82 14.78 11807 12.8060 232.55 213.82 15.69 11808 12.8070 219.82 213.82 15.18 11809 12.8080 215.67 213.82 15.03 11810 12.8090 202.23 213.82 14.52 11811 12.8100 220.93 213.82 15.17 11812 12.8110 213.60 213.82 14.90 11813 12.8120 203.04 213.82 14.55 11814 12.8130 225.52 213.82 15.32 11815 12.8140 200.17 213.82 14.46 11816 12.8150 214.34 213.82 14.95 11817 12.8160 210.26 213.82 14.79 11818 12.8170 205.50 213.82 14.63 11819 12.8180 214.83 213.82 14.92 11820 12.8190 216.04 213.82 15.02 11821 12.8200 209.04 213.82 14.75 11822 12.8210 218.52 213.82 15.11 11823 12.8220 225.18 213.82 15.30 11824 12.8230 218.60 213.82 15.11 11825 12.8240 214.91 213.83 14.96 11826 12.8250 201.50 213.83 14.51 11827 12.8260 202.71 213.83 14.61 11828 12.8270 222.47 213.83 15.19 11829 12.8280 229.23 213.83 15.43 11830 12.8290 243.93 213.83 15.91 11831 12.8300 214.42 213.83 14.94 11832 12.8310 234.07 213.83 15.65 11833 12.8320 226.71 213.83 15.40 11834 12.8330 232.96 213.83 15.58 11835 12.8340 232.93 213.83 15.57 11836 12.8350 223.35 213.83 15.25 11837 12.8360 240.62 213.83 15.78 11838 12.8370 238.20 213.83 15.75 11839 12.8380 221.94 213.83 15.20 11840 12.8390 191.79 213.83 14.21 11841 12.8400 214.92 213.83 15.00 11842 12.8410 225.46 213.83 15.34 11843 12.8420 206.08 213.83 14.60 11844 12.8430 220.40 213.83 15.24 11845 12.8440 215.59 213.83 15.02 11846 12.8450 212.85 213.83 14.91 11847 12.8460 233.70 230.87 15.66 11848 12.8470 206.27 231.03 14.56 11849 12.8480 195.88 231.20 14.28 11850 12.8490 207.86 231.36 14.68 11851 12.8500 213.33 231.53 14.84 11852 12.8510 228.70 231.71 15.50 11853 12.8520 233.83 231.88 15.55 11854 12.8530 214.71 232.06 14.88 11855 12.8540 228.02 232.24 15.42 11856 12.8550 215.37 232.43 14.97 11857 12.8560 223.91 232.61 15.28 11858 12.8570 216.28 232.80 14.95 11859 12.8580 231.29 233.00 15.49 11860 12.8590 232.23 233.19 15.55 11861 12.8600 212.47 233.39 14.90 11862 12.8610 219.60 233.59 15.15 11863 12.8620 216.38 233.80 15.03 11864 12.8630 212.13 234.00 14.88 11865 12.8640 199.78 234.21 14.44 11866 12.8650 212.05 234.43 14.80 11867 12.8660 221.97 234.65 15.20 11868 12.8670 218.79 234.87 15.10 11869 12.8680 214.17 235.09 14.91 11870 12.8690 233.15 235.32 15.59 11871 12.8700 226.87 235.55 15.38 11872 12.8710 231.14 235.79 15.51 11873 12.8720 208.43 236.03 14.62 11874 12.8730 216.92 236.27 15.02 11875 12.8740 229.93 236.52 15.53 11876 12.8750 201.76 236.77 14.44 11877 12.8760 212.52 237.03 14.90 11878 12.8770 201.41 237.29 14.44 11879 12.8780 243.00 237.55 15.90 11880 12.8790 233.83 237.82 15.55 11881 12.8800 215.14 238.09 14.97 11882 12.8810 226.56 238.37 15.35 11883 12.8820 208.25 238.65 14.71 11884 12.8830 231.29 238.94 15.47 11885 12.8840 203.62 239.24 14.58 11886 12.8850 200.37 239.53 14.46 11887 12.8860 226.46 239.84 15.30 11888 12.8870 243.30 240.15 15.95 11889 12.8880 246.73 240.46 16.09 11890 12.8890 244.29 240.78 15.98 11891 12.8900 226.07 241.11 15.35 11892 12.8910 233.72 241.44 15.63 11893 12.8920 211.00 241.78 14.88 11894 12.8930 238.28 242.12 15.76 11895 12.8940 233.55 242.47 15.62 11896 12.8950 226.27 242.83 15.34 11897 12.8960 227.13 243.19 15.36 11898 12.8970 238.95 243.56 15.70 11899 12.8980 241.24 243.94 15.83 11900 12.8990 237.56 244.32 15.69 11901 12.9000 240.24 244.72 15.82 11902 12.9010 251.17 245.12 16.23 11903 12.9020 237.64 245.52 15.70 11904 12.9030 249.70 245.94 16.10 11905 12.9040 213.07 246.36 14.85 11906 12.9050 231.09 246.79 15.48 11907 12.9060 219.43 247.24 15.09 11908 12.9070 226.31 247.69 15.38 11909 12.9080 220.20 248.15 15.15 11910 12.9090 246.03 248.61 15.99 11911 12.9100 232.72 249.09 15.62 11912 12.9110 224.50 249.58 15.17 11913 12.9120 252.14 250.08 16.17 11914 12.9130 258.14 250.59 16.46 11915 12.9140 239.19 251.11 15.84 11916 12.9150 213.61 251.64 14.97 11917 12.9160 234.57 252.18 15.68 11918 12.9170 243.33 252.73 15.95 11919 12.9180 249.15 253.30 16.12 11920 12.9190 239.25 253.88 15.74 11921 12.9200 249.75 254.47 16.12 11922 12.9210 241.60 255.07 15.83 11923 12.9220 233.86 255.69 15.61 11924 12.9230 223.25 256.32 15.20 11925 12.9240 257.86 256.96 16.37 11926 12.9250 250.66 257.62 16.19 11927 12.9260 228.09 258.30 15.41 11928 12.9270 231.96 258.99 15.56 11929 12.9280 220.97 259.70 15.16 11930 12.9290 238.65 260.42 15.79 11931 12.9300 257.25 261.17 16.42 11932 12.9310 251.64 261.93 16.20 11933 12.9320 239.75 262.70 15.84 11934 12.9330 227.62 263.50 15.40 11935 12.9340 261.97 264.32 16.51 11936 12.9350 263.15 265.15 16.54 11937 12.9360 264.61 266.01 16.62 11938 12.9370 241.53 266.89 15.82 11939 12.9380 244.68 267.79 15.97 11940 12.9390 258.77 268.72 16.44 11941 12.9400 245.36 269.67 16.02 11942 12.9410 243.47 270.64 15.91 11943 12.9420 260.02 271.64 16.44 11944 12.9430 240.95 272.67 15.91 11945 12.9440 243.60 273.72 15.96 11946 12.9450 255.22 274.80 16.26 11947 12.9460 247.45 275.91 16.10 11948 12.9470 252.42 277.05 16.23 11949 12.9480 244.54 278.23 15.92 11950 12.9490 230.59 279.44 15.46 11951 12.9500 236.12 280.68 15.69 11952 12.9510 228.94 281.95 15.39 11953 12.9520 238.78 283.27 15.81 11954 12.9530 254.00 284.62 16.31 11955 12.9540 260.99 286.01 16.48 11956 12.9550 263.83 287.44 16.61 11957 12.9560 237.69 288.92 15.68 11958 12.9570 262.83 290.43 16.61 11959 12.9580 260.75 292.00 16.48 11960 12.9590 257.66 293.62 16.32 11961 12.9600 273.98 295.28 16.89 11962 12.9610 275.09 297.00 16.96 11963 12.9620 261.82 298.77 16.46 11964 12.9630 251.65 300.60 16.17 11965 12.9640 266.10 302.49 16.65 11966 12.9650 262.13 304.44 16.59 11967 12.9660 268.77 306.46 16.77 11968 12.9670 280.50 308.54 17.18 11969 12.9680 255.85 310.70 16.33 11970 12.9690 278.57 312.93 17.06 11971 12.9700 287.42 315.23 17.35 11972 12.9710 293.26 317.62 17.54 11973 12.9720 303.39 320.10 17.79 11974 12.9730 294.29 322.66 17.46 11975 12.9740 285.32 325.31 17.22 11976 12.9750 298.14 328.07 17.57 11977 12.9760 276.55 330.92 16.96 11978 12.9770 284.58 333.89 17.16 11979 12.9780 283.06 336.97 17.16 11980 12.9790 302.17 340.17 17.79 11981 12.9800 312.68 343.48 18.06 11982 12.9810 308.09 346.94 17.96 11983 12.9820 310.85 350.54 18.07 11984 12.9830 336.80 354.28 18.79 11985 12.9840 329.22 358.18 18.56 11986 12.9850 322.47 362.23 18.31 11987 12.9860 329.34 366.47 18.48 11988 12.9870 336.18 370.89 18.68 11989 12.9880 328.22 375.49 18.44 11990 12.9890 365.22 380.31 19.52 11991 12.9900 350.38 385.33 19.05 11992 12.9910 377.37 390.60 19.78 11993 12.9920 347.99 396.10 19.10 11994 12.9930 346.24 401.87 19.00 11995 12.9940 358.90 407.91 19.34 11996 12.9950 363.36 414.24 19.45 11997 12.9960 368.09 420.89 19.56 11998 12.9970 378.17 427.87 19.86 11999 12.9980 385.03 435.21 19.98 12000 12.9990 420.04 442.92 20.94 12001 13.0000 424.53 451.05 21.07 12002 13.0010 414.15 459.62 20.80 12003 13.0020 408.60 468.64 20.62 12004 13.0030 438.85 478.17 21.45 12005 13.0040 435.05 488.24 21.36 12006 13.0050 472.19 498.90 22.20 12007 13.0060 458.35 510.17 21.81 12008 13.0070 459.84 522.13 21.92 12009 13.0080 492.51 534.82 22.66 12010 13.0090 509.85 548.28 23.08 12011 13.0100 507.47 562.61 23.08 12012 13.0110 533.21 577.86 23.61 12013 13.0120 525.83 594.13 23.37 12014 13.0130 559.71 611.49 24.13 12015 13.0140 591.43 630.06 24.85 12016 13.0150 600.37 649.95 25.07 12017 13.0160 626.08 671.23 25.53 12018 13.0170 686.07 694.12 26.76 12019 13.0180 688.30 718.72 26.79 12020 13.0190 666.41 745.23 26.37 12021 13.0200 706.62 773.85 27.15 12022 13.0210 723.47 804.78 27.48 12023 13.0220 761.78 838.28 28.20 12024 13.0230 789.02 874.64 28.73 12025 13.0240 852.98 914.21 29.92 12026 13.0250 901.93 957.28 30.76 12027 13.0260 960.22 1004.40 31.68 12028 13.0270 1024.46 1056.00 32.75 12029 13.0280 1043.70 1112.59 33.07 12030 13.0290 1078.84 1174.87 33.62 12031 13.0300 1171.68 1243.58 35.00 12032 13.0310 1252.80 1319.68 36.18 12033 13.0320 1331.64 1403.97 37.30 12034 13.0330 1406.34 1497.95 38.26 12035 13.0340 1547.94 1602.86 40.23 12036 13.0350 1649.09 1720.14 41.56 12037 13.0360 1724.78 1852.12 42.47 12038 13.0370 1868.06 2000.74 44.15 12039 13.0380 2146.03 2168.91 47.37 12040 13.0390 2302.11 2359.30 49.12 12041 13.0400 2460.99 2576.21 50.77 12042 13.0410 2745.40 2823.55 53.59 12043 13.0420 2937.57 3105.66 55.44 12044 13.0430 3272.25 3428.95 58.53 12045 13.0440 3517.29 3798.53 60.63 12046 13.0450 3965.43 4220.75 64.42 12047 13.0460 4438.87 4701.25 68.14 12048 13.0470 5059.70 5244.66 72.81 12049 13.0480 5712.76 5851.50 77.32 12050 13.0490 6339.03 6515.62 81.39 12051 13.0500 7067.54 7224.96 86.05 12052 13.0510 8039.01 7950.32 91.83 12053 13.0520 8910.05 8649.01 96.62 12054 13.0530 9689.43 9263.23 100.70 12055 13.0540 10164.90 9725.74 103.08 12056 13.0550 10312.70 9977.22 103.77 12057 13.0560 10197.00 9981.30 103.26 12058 13.0570 9977.29 9737.07 102.06 12059 13.0580 9432.48 9280.81 99.24 12060 13.0590 8807.43 8670.41 95.78 12061 13.0600 8152.29 7972.86 92.24 12062 13.0610 7448.23 7248.21 88.13 12063 13.0620 6760.51 6537.84 83.89 12064 13.0630 6197.57 5871.48 80.35 12065 13.0640 5520.42 5262.70 75.92 12066 13.0650 5011.84 4718.18 72.29 12067 13.0660 4474.54 4235.29 68.18 12068 13.0670 4055.93 3810.95 64.97 12069 13.0680 3658.01 3440.11 61.71 12070 13.0690 3339.29 3115.42 59.03 12071 13.0700 3050.28 2831.86 56.30 12072 13.0710 2750.42 2583.69 53.50 12073 13.0720 2605.22 2366.05 52.22 12074 13.0730 2353.84 2174.55 49.51 12075 13.0740 2158.98 2005.72 47.48 12076 13.0750 2059.67 1856.66 46.35 12077 13.0760 1895.25 1724.18 44.43 12078 13.0770 1776.23 1606.37 42.98 12079 13.0780 1690.61 1501.18 41.95 12080 13.0790 1507.29 1406.88 39.65 12081 13.0800 1447.79 1322.23 38.85 12082 13.0810 1402.16 1245.95 38.17 12083 13.0820 1307.54 1177.01 36.86 12084 13.0830 1255.76 1114.49 36.20 12085 13.0840 1206.48 1057.77 35.46 12086 13.0850 1178.97 1006.02 35.05 12087 13.0860 1113.35 958.76 34.08 12088 13.0870 1084.48 915.54 33.65 12089 13.0880 1087.41 875.89 33.63 12090 13.0890 1024.17 839.43 32.67 12091 13.0900 1009.63 805.82 32.50 12092 13.0910 968.36 774.84 31.78 12093 13.0920 913.25 746.15 30.84 12094 13.0930 934.83 719.56 31.17 12095 13.0940 904.29 694.92 30.66 12096 13.0950 867.23 671.97 30.03 12097 13.0960 825.26 650.62 29.32 12098 13.0970 827.13 630.69 29.39 12099 13.0980 800.19 612.11 28.93 12100 13.0990 768.88 594.70 28.29 12101 13.1000 753.44 578.39 28.00 12102 13.1010 745.03 563.12 27.82 12103 13.1020 739.23 548.76 27.78 12104 13.1030 690.93 535.26 26.81 12105 13.1040 687.44 522.56 26.76 12106 13.1050 681.59 510.58 26.67 12107 13.1060 667.07 499.28 26.36 12108 13.1070 633.57 488.61 25.72 12109 13.1080 634.51 478.52 25.71 12110 13.1090 616.05 468.97 25.34 12111 13.1100 603.98 459.93 25.10 12112 13.1110 604.77 451.35 25.11 12113 13.1120 551.34 443.21 23.98 12114 13.1130 567.88 435.48 24.39 12115 13.1140 556.22 428.13 24.15 12116 13.1150 525.38 421.14 23.38 12117 13.1160 504.86 414.48 22.99 12118 13.1170 480.00 408.14 22.34 12119 13.1180 496.14 402.09 22.77 12120 13.1190 510.37 396.31 23.12 12121 13.1200 473.82 390.80 22.28 12122 13.1210 489.80 385.53 22.58 12123 13.1220 450.66 380.50 21.68 12124 13.1230 410.42 375.67 20.68 12125 13.1240 399.19 371.06 20.39 12126 13.1250 411.83 366.64 20.73 12127 13.1260 394.49 362.40 20.26 12128 13.1270 396.40 358.34 20.37 12129 13.1280 371.88 354.43 19.72 12130 13.1290 344.39 350.69 19.00 12131 13.1300 351.58 347.09 19.10 12132 13.1310 370.53 343.63 19.65 12133 13.1320 352.22 340.30 19.06 12134 13.1330 339.23 337.10 18.78 12135 13.1340 320.78 334.02 18.32 12136 13.1350 328.52 331.05 18.48 12137 13.1360 330.85 328.19 18.60 12138 13.1370 325.12 325.43 18.45 12139 13.1380 337.98 322.78 18.77 12140 13.1390 329.77 320.21 18.59 12141 13.1400 324.84 317.73 18.41 12142 13.1410 284.30 315.34 17.17 12143 13.1420 262.21 313.03 16.52 12144 13.1430 290.25 310.80 17.42 12145 13.1440 282.00 308.65 17.18 12146 13.1450 279.49 306.56 17.02 12147 13.1460 269.98 304.54 16.75 12148 13.1470 294.81 302.59 17.50 12149 13.1480 279.66 300.70 17.05 12150 13.1490 264.15 298.86 16.62 12151 13.1500 264.22 297.09 16.57 12152 13.1510 269.98 295.37 16.80 12153 13.1520 267.26 293.70 16.73 12154 13.1530 280.39 292.09 17.07 12155 13.1540 268.53 290.52 16.71 12156 13.1550 251.64 289.00 16.23 12157 13.1560 262.27 287.52 16.53 12158 13.1570 250.66 286.09 16.17 12159 13.1580 273.54 284.70 16.93 12160 13.1590 256.72 283.34 16.32 12161 13.1600 249.85 282.03 16.09 12162 13.1610 272.79 280.75 16.81 12163 13.1620 254.44 279.51 16.23 12164 13.1630 252.26 278.30 16.20 12165 13.1640 255.55 277.13 16.41 12166 13.1650 251.27 275.99 16.27 12167 13.1660 246.21 274.88 16.03 12168 13.1670 254.98 273.79 16.36 12169 13.1680 267.08 272.74 16.71 12170 13.1690 261.75 271.71 16.52 12171 13.1700 226.89 270.71 15.30 12172 13.1710 218.95 269.74 15.03 12173 13.1720 247.57 268.79 15.95 12174 13.1730 250.23 267.86 16.15 12175 13.1740 253.56 266.96 16.26 12176 13.1750 255.47 266.08 16.33 12177 13.1760 245.60 265.22 15.95 12178 13.1770 240.91 264.39 15.87 12179 13.1780 233.53 263.57 15.63 12180 13.1790 224.03 262.77 15.29 12181 13.1800 244.81 261.99 15.96 12182 13.1810 242.22 261.23 15.83 12183 13.1820 239.83 260.49 15.77 12184 13.1830 261.63 259.77 16.47 12185 13.1840 262.69 259.06 16.55 12186 13.1850 256.50 258.36 16.35 12187 13.1860 226.79 257.69 15.41 12188 13.1870 226.85 257.03 15.38 12189 13.1880 205.25 256.38 14.64 12190 13.1890 216.03 255.75 14.96 12191 13.1900 219.54 255.13 15.12 12192 13.1910 245.80 254.53 16.04 12193 13.1920 234.47 253.94 15.62 12194 13.1930 246.23 253.36 16.06 12195 13.1940 255.58 252.79 16.35 12196 13.1950 246.62 252.24 16.03 12197 13.1960 250.11 251.70 16.08 12198 13.1970 229.64 251.17 15.39 12199 13.1980 219.46 250.65 15.16 12200 13.1990 204.71 250.14 14.57 12201 13.2000 229.62 249.64 15.50 12202 13.2010 251.11 249.15 16.24 12203 13.2020 243.42 248.68 15.96 12204 13.2030 251.83 248.21 16.24 12205 13.2040 209.36 247.75 14.84 12206 13.2050 224.26 247.30 15.33 12207 13.2060 228.98 246.86 15.38 12208 13.2070 239.00 246.42 15.82 12209 13.2080 248.73 246.00 16.13 12210 13.2090 228.63 245.59 15.43 12211 13.2100 220.57 245.18 15.13 12212 13.2110 234.22 244.78 15.60 12213 13.2120 222.13 244.38 15.11 12214 13.2130 225.61 244.00 15.22 12215 13.2140 228.53 243.62 15.38 12216 13.2150 217.83 243.25 15.02 12217 13.2160 221.23 242.89 15.17 12218 13.2170 234.61 242.53 15.71 12219 13.2180 225.17 242.18 15.33 12220 13.2190 217.63 241.84 15.04 12221 13.2200 192.31 241.50 14.13 12222 13.2210 241.82 241.17 15.83 12223 13.2220 238.45 240.84 15.71 12224 13.2230 218.50 240.52 15.11 12225 13.2240 235.94 240.21 15.71 12226 13.2250 225.04 239.90 15.34 12227 13.2260 207.65 239.60 14.73 12228 13.2270 197.47 239.30 14.32 12229 13.2280 214.45 239.00 14.91 12230 13.2290 220.78 238.72 15.16 12231 13.2300 195.49 238.43 14.35 12232 13.2310 213.86 238.15 14.96 12233 13.2320 206.19 237.88 14.69 12234 13.2330 204.02 237.61 14.57 12235 13.2340 222.51 237.35 15.28 12236 13.2350 218.85 237.09 15.07 12237 13.2360 211.88 236.83 14.92 12238 13.2370 220.19 236.58 15.24 12239 13.2380 234.63 236.33 15.64 12240 13.2390 228.04 236.09 15.35 12241 13.2400 231.61 235.85 15.59 12242 13.2410 205.92 235.62 14.72 12243 13.2420 197.22 235.38 14.34 12244 13.2430 200.39 235.15 14.46 12245 13.2440 202.53 234.93 14.57 12246 13.2450 210.11 234.71 14.83 12247 13.2460 212.14 234.49 14.80 12248 13.2470 221.89 234.28 15.16 12249 13.2480 220.81 234.07 15.18 12250 13.2490 215.05 233.86 15.02 12251 13.2500 213.02 233.65 14.90 12252 13.2510 203.66 233.45 14.57 12253 13.2520 183.61 233.26 13.72 12254 13.2530 214.11 233.06 14.90 12255 13.2540 215.58 232.87 15.06 12256 13.2550 223.98 232.68 15.28 12257 13.2560 224.81 232.49 15.33 12258 13.2570 226.22 232.31 15.34 12259 13.2580 200.90 232.13 14.49 12260 13.2590 200.03 231.95 14.49 12261 13.2600 204.02 231.77 14.52 12262 13.2610 187.62 231.60 13.94 12263 13.2620 210.49 231.43 14.83 12264 13.2630 199.30 231.26 14.49 12265 13.2640 191.75 231.10 14.23 12266 13.2650 184.66 230.93 13.84 12267 13.2660 185.24 213.89 13.86 12268 13.2670 182.01 213.89 13.74 12269 13.2680 213.91 213.89 14.86 12270 13.2690 210.26 213.89 14.80 12271 13.2700 209.53 213.89 14.78 12272 13.2710 194.06 213.89 14.24 12273 13.2720 210.70 213.89 14.81 12274 13.2730 210.54 213.89 14.83 12275 13.2740 219.92 213.89 15.19 12276 13.2750 231.06 213.89 15.51 12277 13.2760 194.60 213.89 14.19 12278 13.2770 198.31 213.89 14.39 12279 13.2780 215.94 213.89 14.94 12280 13.2790 190.34 213.89 13.94 12281 13.2800 204.59 213.89 14.59 12282 13.2810 197.44 213.89 14.33 12283 13.2820 202.66 213.89 14.55 12284 13.2830 197.15 213.89 14.34 12285 13.2840 222.45 213.89 15.28 12286 13.2850 214.71 213.89 14.92 12287 13.2860 205.48 215.17 14.64 12288 13.2870 193.73 215.18 14.18 12289 13.2880 209.85 215.19 14.80 12290 13.2890 216.78 215.20 15.06 12291 13.2900 200.95 215.22 14.50 12292 13.2910 219.96 215.23 15.24 12293 13.2920 207.24 215.24 14.71 12294 13.2930 204.05 215.25 14.63 12295 13.2940 209.67 215.27 14.82 12296 13.2950 201.58 215.28 14.55 12297 13.2960 212.99 215.29 14.94 12298 13.2970 215.54 215.31 15.08 12299 13.2980 205.37 215.32 14.66 12300 13.2990 199.56 215.33 14.42 12301 13.3000 203.87 215.35 14.59 12302 13.3010 199.75 215.36 14.48 12303 13.3020 196.65 215.38 14.38 12304 13.3030 210.96 215.39 14.83 12305 13.3040 203.24 215.40 14.56 12306 13.3050 210.35 215.42 14.81 12307 13.3060 190.12 215.44 14.11 12308 13.3070 201.00 215.45 14.56 12309 13.3080 209.23 215.47 14.76 12310 13.3090 210.40 215.48 14.84 12311 13.3100 204.30 215.50 14.60 12312 13.3110 201.14 215.51 14.52 12313 13.3120 220.94 215.53 15.20 12314 13.3130 218.78 215.55 15.11 12315 13.3140 217.75 215.57 15.06 12316 13.3150 215.71 215.58 14.99 12317 13.3160 187.44 215.60 14.00 12318 13.3170 196.91 215.62 14.26 12319 13.3180 199.56 215.64 14.35 12320 13.3190 202.60 215.66 14.57 12321 13.3200 186.78 215.68 13.89 12322 13.3210 201.77 215.69 14.45 12323 13.3220 193.50 215.71 14.26 12324 13.3230 209.29 215.73 14.69 12325 13.3240 225.42 215.75 15.26 12326 13.3250 206.76 215.77 14.68 12327 13.3260 195.23 215.79 14.26 12328 13.3270 189.82 215.82 14.01 12329 13.3280 195.51 215.84 14.30 12330 13.3290 206.01 215.86 14.70 12331 13.3300 210.97 215.88 14.78 12332 13.3310 206.53 215.90 14.64 12333 13.3320 188.84 215.93 14.01 12334 13.3330 179.96 215.95 13.70 12335 13.3340 181.08 215.97 13.63 12336 13.3350 209.40 216.00 14.73 12337 13.3360 199.49 216.02 14.40 12338 13.3370 193.45 216.05 14.18 12339 13.3380 208.67 216.07 14.80 12340 13.3390 215.48 216.10 14.90 12341 13.3400 216.92 216.12 15.07 12342 13.3410 219.21 216.15 15.18 12343 13.3420 201.40 216.18 14.47 12344 13.3430 211.33 216.21 14.91 12345 13.3440 221.94 216.23 15.24 12346 13.3450 194.29 216.26 14.21 12347 13.3460 201.54 216.29 14.56 12348 13.3470 214.35 216.32 15.03 12349 13.3480 187.96 216.35 13.98 12350 13.3490 209.67 216.38 14.77 12351 13.3500 219.77 216.41 15.14 12352 13.3510 183.97 216.45 13.80 12353 13.3520 221.39 216.48 15.15 12354 13.3530 207.96 216.51 14.72 12355 13.3540 192.89 216.55 14.17 12356 13.3550 201.48 216.58 14.46 12357 13.3560 231.42 216.62 15.47 12358 13.3570 202.86 216.65 14.52 12359 13.3580 208.55 216.69 14.79 12360 13.3590 206.64 216.73 14.70 12361 13.3600 219.64 216.76 15.07 12362 13.3610 199.88 216.80 14.38 12363 13.3620 214.34 216.84 14.97 12364 13.3630 210.96 216.88 14.80 12365 13.3640 208.02 216.92 14.70 12366 13.3650 211.89 216.97 14.90 12367 13.3660 191.03 217.01 14.13 12368 13.3670 186.91 217.05 13.93 12369 13.3680 193.24 217.10 14.18 12370 13.3690 195.95 217.15 14.30 12371 13.3700 205.21 217.19 14.62 12372 13.3710 195.48 217.24 14.30 12373 13.3720 205.69 217.29 14.62 12374 13.3730 198.59 217.34 14.37 12375 13.3740 217.37 217.39 15.02 12376 13.3750 222.88 217.44 15.22 12377 13.3760 220.71 217.50 15.20 12378 13.3770 207.20 217.55 14.67 12379 13.3780 213.01 217.61 14.91 12380 13.3790 215.63 217.66 14.97 12381 13.3800 220.71 217.72 15.11 12382 13.3810 204.62 217.78 14.59 12383 13.3820 191.68 217.84 14.14 12384 13.3830 225.36 217.91 15.32 12385 13.3840 214.09 217.97 14.97 12386 13.3850 197.70 218.04 14.34 12387 13.3860 210.16 218.10 14.81 12388 13.3870 206.16 218.17 14.72 12389 13.3880 195.65 218.24 14.20 12390 13.3890 218.03 218.32 15.06 12391 13.3900 211.35 218.39 14.88 12392 13.3910 206.91 218.47 14.66 12393 13.3920 204.09 218.55 14.53 12394 13.3930 189.49 218.63 14.05 12395 13.3940 200.86 218.71 14.46 12396 13.3950 208.65 218.79 14.69 12397 13.3960 226.20 218.88 15.35 12398 13.3970 199.46 218.97 14.39 12399 13.3980 198.23 219.06 14.40 12400 13.3990 214.82 219.15 14.97 12401 13.4000 204.26 219.25 14.62 12402 13.4010 191.02 219.35 14.13 12403 13.4020 195.89 219.45 14.30 12404 13.4030 210.63 219.56 14.84 12405 13.4040 200.40 219.67 14.46 12406 13.4050 183.49 219.78 13.86 12407 13.4060 200.49 219.89 14.42 12408 13.4070 209.56 220.01 14.73 12409 13.4080 200.87 220.13 14.42 12410 13.4090 196.47 220.26 14.30 12411 13.4100 190.14 220.38 14.12 12412 13.4110 190.92 220.52 14.05 12413 13.4120 186.69 220.65 13.94 12414 13.4130 198.51 220.79 14.42 12415 13.4140 198.96 220.94 14.37 12416 13.4150 177.38 221.09 13.58 12417 13.4160 202.32 221.24 14.54 12418 13.4170 193.27 221.40 14.19 12419 13.4180 194.23 221.57 14.19 12420 13.4190 208.59 221.74 14.72 12421 13.4200 192.05 221.91 14.16 12422 13.4210 219.42 222.10 15.11 12423 13.4220 205.60 222.29 14.65 12424 13.4230 228.83 222.48 15.45 12425 13.4240 212.40 222.68 14.90 12426 13.4250 208.35 222.89 14.70 12427 13.4260 185.08 223.11 13.83 12428 13.4270 172.60 223.33 13.35 12429 13.4280 188.65 223.56 13.96 12430 13.4290 204.08 223.81 14.63 12431 13.4300 198.30 224.06 14.35 12432 13.4310 205.37 224.32 14.64 12433 13.4320 194.89 224.59 14.25 12434 13.4330 176.50 224.87 13.64 12435 13.4340 192.64 225.16 14.23 12436 13.4350 189.57 225.46 14.07 12437 13.4360 219.84 225.78 15.14 12438 13.4370 202.38 226.10 14.52 12439 13.4380 218.70 226.45 15.08 12440 13.4390 207.75 226.80 14.70 12441 13.4400 218.40 227.18 15.13 12442 13.4410 199.65 227.57 14.48 12443 13.4420 204.32 227.97 14.61 12444 13.4430 199.99 228.40 14.43 12445 13.4440 203.17 228.84 14.58 12446 13.4450 220.82 229.30 15.15 12447 13.4460 212.16 229.79 14.85 12448 13.4470 214.49 230.30 14.95 12449 13.4480 200.25 230.83 14.47 12450 13.4490 194.99 231.39 14.27 12451 13.4500 202.97 231.98 14.55 12452 13.4510 210.95 232.59 14.86 12453 13.4520 205.96 233.24 14.61 12454 13.4530 232.86 233.93 15.61 12455 13.4540 217.52 234.65 14.97 12456 13.4550 202.80 235.40 14.54 12457 13.4560 231.12 236.21 15.54 12458 13.4570 222.28 237.05 15.17 12459 13.4580 225.87 237.95 15.40 12460 13.4590 206.60 238.89 14.66 12461 13.4600 213.05 239.90 14.90 12462 13.4610 207.91 240.96 14.63 12463 13.4620 205.57 242.09 14.65 12464 13.4630 208.02 243.29 14.69 12465 13.4640 219.22 244.57 15.07 12466 13.4650 205.69 245.93 14.65 12467 13.4660 223.05 247.38 15.30 12468 13.4670 227.47 248.93 15.40 12469 13.4680 235.16 250.60 15.68 12470 13.4690 245.78 252.38 16.08 12471 13.4700 245.66 254.29 16.00 12472 13.4710 245.64 256.34 15.98 12473 13.4720 250.02 258.55 16.19 12474 13.4730 244.37 260.93 15.92 12475 13.4740 243.55 263.50 15.95 12476 13.4750 240.23 266.29 15.80 12477 13.4760 245.01 269.31 15.95 12478 13.4770 238.76 272.59 15.81 12479 13.4780 250.04 276.16 16.17 12480 13.4790 256.01 280.06 16.40 12481 13.4800 264.22 284.31 16.65 12482 13.4810 274.24 288.98 16.87 12483 13.4820 289.26 294.11 17.37 12484 13.4830 267.34 299.76 16.73 12485 13.4840 288.75 306.00 17.36 12486 13.4850 275.70 312.90 16.99 12487 13.4860 310.48 320.57 18.04 12488 13.4870 324.68 329.10 18.43 12489 13.4880 289.80 338.62 17.39 12490 13.4890 323.68 349.29 18.41 12491 13.4900 340.27 361.24 18.91 12492 13.4910 366.44 374.72 19.61 12493 13.4920 385.57 389.92 20.03 12494 13.4930 383.61 407.13 20.01 12495 13.4940 414.76 426.61 20.80 12496 13.4950 418.65 448.71 20.92 12497 13.4960 444.96 473.81 21.57 12498 13.4970 491.02 502.23 22.64 12499 13.4980 495.37 534.42 22.77 12500 13.4990 540.70 570.62 23.77 12501 13.5000 589.91 611.01 24.78 12502 13.5010 614.99 655.54 25.32 12503 13.5020 700.88 703.59 27.03 12504 13.5030 749.83 754.09 28.04 12505 13.5040 791.48 804.89 28.78 12506 13.5050 859.29 853.23 29.94 12507 13.5060 943.80 895.21 31.41 12508 13.5070 948.15 926.74 31.56 12509 13.5080 920.46 944.18 31.01 12510 13.5090 978.83 945.25 31.95 12511 13.5100 902.87 929.84 30.72 12512 13.5110 889.78 899.93 30.53 12513 13.5120 831.90 859.03 29.47 12514 13.5130 716.77 811.36 27.30 12515 13.5140 686.81 760.61 26.67 12516 13.5150 666.91 709.93 26.37 12517 13.5160 582.92 661.49 24.61 12518 13.5170 548.55 616.51 23.92 12519 13.5180 535.91 575.58 23.62 12520 13.5190 488.51 538.82 22.57 12521 13.5200 490.62 506.15 22.61 12522 13.5210 457.35 477.25 21.82 12523 13.5220 415.62 451.74 20.79 12524 13.5230 408.65 429.30 20.66 12525 13.5240 375.46 409.48 19.81 12526 13.5250 357.23 392.02 19.31 12527 13.5260 342.42 376.57 18.92 12528 13.5270 354.80 362.89 19.23 12529 13.5280 334.12 350.75 18.69 12530 13.5290 305.85 339.92 17.86 12531 13.5300 297.99 330.27 17.63 12532 13.5310 299.21 321.61 17.69 12533 13.5320 295.85 313.85 17.58 12534 13.5330 269.91 306.85 16.78 12535 13.5340 278.67 300.53 17.04 12536 13.5350 283.11 294.81 17.26 12537 13.5360 275.63 289.62 16.97 12538 13.5370 248.58 284.90 16.07 12539 13.5380 234.02 280.59 15.62 12540 13.5390 234.71 276.65 15.69 12541 13.5400 235.01 273.04 15.75 12542 13.5410 262.59 269.72 16.51 12543 13.5420 266.01 266.67 16.67 12544 13.5430 245.43 263.86 15.95 12545 13.5440 242.46 261.26 15.86 12546 13.5450 222.63 258.85 15.21 12547 13.5460 200.25 256.62 14.44 12548 13.5470 224.16 254.55 15.28 12549 13.5480 217.92 252.62 15.00 12550 13.5490 235.03 250.83 15.62 12551 13.5500 207.45 249.15 14.75 12552 13.5510 217.62 247.59 15.07 12553 13.5520 212.66 246.12 14.87 12554 13.5530 226.59 244.75 15.35 12555 13.5540 194.84 243.46 14.18 12556 13.5550 226.03 242.25 15.29 12557 13.5560 214.41 241.11 14.98 12558 13.5570 213.47 240.04 14.96 12559 13.5580 215.00 239.03 14.95 12560 13.5590 225.66 238.07 15.30 12561 13.5600 231.02 237.17 15.49 12562 13.5610 215.30 236.32 14.95 12563 13.5620 225.58 235.52 15.35 12564 13.5630 194.37 234.75 14.28 12565 13.5640 192.69 234.03 14.25 12566 13.5650 200.50 233.34 14.38 12567 13.5660 216.93 232.69 14.95 12568 13.5670 255.92 232.07 16.33 12569 13.5680 214.93 231.48 14.95 12570 13.5690 207.20 230.91 14.74 12571 13.5700 211.45 230.38 14.79 12572 13.5710 218.56 229.86 15.11 12573 13.5720 220.44 229.38 15.22 12574 13.5730 211.35 228.91 14.84 12575 13.5740 200.92 228.46 14.53 12576 13.5750 182.19 228.04 13.82 12577 13.5760 193.42 227.63 14.15 12578 13.5770 216.72 227.24 14.99 12579 13.5780 202.81 226.87 14.49 12580 13.5790 205.73 226.51 14.65 12581 13.5800 229.28 226.16 15.47 12582 13.5810 222.43 225.83 15.27 12583 13.5820 220.41 225.51 15.26 12584 13.5830 207.77 225.21 14.72 12585 13.5840 206.04 224.92 14.69 12586 13.5850 192.78 224.64 14.20 12587 13.5860 203.32 224.37 14.52 12588 13.5870 194.58 224.10 14.17 12589 13.5880 214.10 223.85 14.89 12590 13.5890 224.04 223.61 15.25 12591 13.5900 201.14 223.38 14.48 12592 13.5910 193.22 223.15 14.24 12593 13.5920 194.92 222.93 14.26 12594 13.5930 222.08 222.73 15.26 12595 13.5940 210.16 222.52 14.77 12596 13.5950 196.05 222.33 14.29 12597 13.5960 203.27 222.14 14.63 12598 13.5970 194.39 221.96 14.22 12599 13.5980 178.79 221.78 13.62 12600 13.5990 197.20 221.61 14.33 12601 13.6000 202.88 221.44 14.56 12602 13.6010 212.59 221.28 14.81 12603 13.6020 195.68 221.13 14.21 12604 13.6030 207.43 220.98 14.74 12605 13.6040 199.27 220.83 14.46 12606 13.6050 206.11 220.69 14.67 12607 13.6060 196.70 220.55 14.26 12608 13.6070 205.39 220.42 14.64 12609 13.6080 193.63 220.29 14.18 12610 13.6090 178.06 220.17 13.57 12611 13.6100 186.69 220.04 13.91 12612 13.6110 199.93 219.93 14.47 12613 13.6120 190.46 219.81 14.08 12614 13.6130 191.86 219.70 14.14 12615 13.6140 188.80 219.59 13.98 12616 13.6150 189.56 219.49 14.08 12617 13.6160 189.41 219.38 14.07 12618 13.6170 191.57 219.29 14.23 12619 13.6180 199.64 219.19 14.47 12620 13.6190 193.81 219.09 14.21 12621 13.6200 202.57 219.00 14.51 12622 13.6210 193.46 218.91 14.12 12623 13.6220 198.66 218.83 14.45 12624 13.6230 191.52 218.74 14.12 12625 13.6240 192.35 218.66 14.15 12626 13.6250 192.19 218.58 14.17 12627 13.6260 168.31 218.50 13.26 12628 13.6270 187.17 218.42 13.93 12629 13.6280 196.44 218.35 14.29 12630 13.6290 197.65 218.28 14.36 12631 13.6300 231.32 218.21 15.45 12632 13.6310 220.36 218.14 15.09 12633 13.6320 185.26 218.07 13.90 12634 13.6330 185.44 218.00 13.88 12635 13.6340 194.05 217.94 14.21 12636 13.6350 185.18 217.88 13.85 12637 13.6360 208.81 217.81 14.75 12638 13.6370 202.32 217.75 14.49 12639 13.6380 231.86 217.70 15.52 12640 13.6390 201.19 217.64 14.42 12641 13.6400 192.32 217.58 14.12 12642 13.6410 179.47 217.53 13.70 12643 13.6420 183.49 217.47 13.89 12644 13.6430 190.00 217.42 14.11 12645 13.6440 197.43 217.37 14.37 12646 13.6450 189.15 217.32 14.08 12647 13.6460 193.39 217.27 14.27 12648 13.6470 207.24 217.22 14.67 12649 13.6480 190.38 217.18 14.03 12650 13.6490 202.98 217.13 14.52 12651 13.6500 218.95 217.09 15.08 12652 13.6510 200.59 217.04 14.38 12653 13.6520 220.20 217.00 15.12 12654 13.6530 212.76 216.96 14.77 12655 13.6540 190.07 216.91 14.05 12656 13.6550 219.76 216.88 15.15 12657 13.6560 210.57 216.84 14.85 12658 13.6570 197.50 216.80 14.30 12659 13.6580 228.91 216.76 15.39 12660 13.6590 227.20 216.72 15.41 12661 13.6600 204.56 216.68 14.61 12662 13.6610 224.55 216.65 15.32 12663 13.6620 215.14 216.61 15.00 12664 13.6630 203.99 216.58 14.54 12665 13.6640 212.45 216.54 14.94 12666 13.6650 199.80 216.51 14.46 12667 13.6660 214.28 216.48 14.86 12668 13.6670 208.43 216.45 14.77 12669 13.6680 215.35 216.42 14.95 12670 13.6690 219.31 216.38 15.08 12671 13.6700 235.17 216.35 15.62 12672 13.6710 205.92 216.32 14.64 12673 13.6720 211.45 216.30 14.85 12674 13.6730 215.45 216.27 14.99 12675 13.6740 190.78 216.24 14.09 12676 13.6750 213.93 216.21 14.97 12677 13.6760 223.80 216.18 15.26 12678 13.6770 220.31 216.16 15.10 12679 13.6780 232.74 216.13 15.54 12680 13.6790 209.20 216.11 14.67 12681 13.6800 183.38 216.08 13.78 12682 13.6810 191.03 216.06 14.02 12683 13.6820 188.41 216.03 14.02 12684 13.6830 208.89 216.01 14.76 12685 13.6840 221.81 215.98 15.24 12686 13.6850 194.99 215.96 14.19 12687 13.6860 204.70 215.94 14.65 12688 13.6870 195.89 215.92 14.35 12689 13.6880 216.52 215.89 15.04 12690 13.6890 211.42 215.87 14.88 12691 13.6900 201.89 215.85 14.56 12692 13.6910 196.08 215.83 14.33 12693 13.6920 194.24 215.81 14.22 12694 13.6930 194.53 215.79 14.30 12695 13.6940 181.08 215.77 13.74 12696 13.6950 185.43 215.75 13.80 12697 13.6960 197.71 215.73 14.36 12698 13.6970 198.28 215.71 14.40 12699 13.6980 197.97 215.69 14.36 12700 13.6990 205.39 215.68 14.57 12701 13.7000 197.26 215.66 14.33 12702 13.7010 192.81 215.64 14.22 12703 13.7020 206.75 215.62 14.65 12704 13.7030 219.71 215.60 15.10 12705 13.7040 186.12 215.59 13.81 12706 13.7050 195.41 215.57 14.17 12707 13.7060 195.00 215.55 14.24 12708 13.7070 190.89 215.54 14.09 12709 13.7080 201.91 215.52 14.55 12710 13.7090 207.60 215.51 14.72 12711 13.7100 206.05 215.49 14.62 12712 13.7110 205.28 215.48 14.65 12713 13.7120 182.65 215.46 13.77 12714 13.7130 204.23 215.45 14.59 12715 13.7140 203.18 215.43 14.56 12716 13.7150 192.69 215.42 14.23 12717 13.7160 200.55 215.40 14.46 12718 13.7170 202.99 215.39 14.53 12719 13.7180 193.32 215.37 14.15 12720 13.7190 216.40 215.36 15.05 12721 13.7200 205.31 215.35 14.57 12722 13.7210 203.47 215.33 14.56 12723 13.7220 208.58 215.32 14.72 12724 13.7230 186.68 215.31 13.93 12725 13.7240 198.27 215.29 14.43 12726 13.7250 196.52 215.28 14.28 12727 13.7260 182.27 215.27 13.84 12728 13.7270 174.53 215.26 13.51 12729 13.7280 173.89 215.25 13.45 12730 13.7290 167.69 215.24 13.13 12731 13.7300 195.53 215.22 14.24 12732 13.7310 214.61 215.21 14.99 12733 13.7320 191.73 215.20 14.20 12734 13.7330 197.73 213.93 14.30 12735 13.7340 199.00 213.93 14.37 12736 13.7350 197.47 213.93 14.36 12737 13.7360 202.49 213.93 14.58 12738 13.7370 198.09 213.93 14.35 12739 13.7380 187.43 213.93 14.00 12740 13.7390 190.10 213.93 14.10 12741 13.7400 177.02 213.93 13.57 12742 13.7410 192.75 213.93 14.14 12743 13.7420 194.57 213.93 14.24 12744 13.7430 191.77 213.93 14.12 12745 13.7440 200.33 213.93 14.46 12746 13.7450 176.61 213.93 13.55 12747 13.7460 180.09 213.93 13.70 12748 13.7470 187.86 213.93 14.06 12749 13.7480 188.56 213.93 14.05 12750 13.7490 193.53 213.93 14.23 12751 13.7500 192.33 213.93 14.16 12752 13.7510 209.01 213.93 14.72 12753 13.7520 190.58 213.93 14.11 12754 13.7530 195.36 213.93 14.27 12755 13.7540 221.92 213.93 15.15 12756 13.7550 219.05 213.93 15.14 12757 13.7560 167.06 213.93 13.23 12758 13.7570 191.69 213.93 14.09 12759 13.7580 199.94 213.93 14.37 12760 13.7590 190.25 213.93 14.09 12761 13.7600 192.54 213.93 14.22 12762 13.7610 200.40 213.93 14.37 12763 13.7620 200.15 213.93 14.38 12764 13.7630 203.10 213.93 14.54 12765 13.7640 201.60 213.93 14.47 12766 13.7650 195.79 213.93 14.28 12767 13.7660 183.01 213.93 13.78 12768 13.7670 174.15 213.93 13.47 12769 13.7680 187.66 214.82 14.03 12770 13.7690 185.73 214.83 13.91 12771 13.7700 198.59 214.84 14.39 12772 13.7710 198.37 214.85 14.38 12773 13.7720 199.99 214.86 14.49 12774 13.7730 214.20 214.87 14.99 12775 13.7740 206.73 214.88 14.64 12776 13.7750 190.12 214.89 14.09 12777 13.7760 197.52 214.90 14.42 12778 13.7770 175.66 214.91 13.49 12779 13.7780 186.41 214.92 13.95 12780 13.7790 174.12 214.93 13.51 12781 13.7800 180.84 214.94 13.73 12782 13.7810 172.40 214.95 13.47 12783 13.7820 207.74 214.96 14.72 12784 13.7830 205.54 214.98 14.64 12785 13.7840 188.90 214.99 13.96 12786 13.7850 197.92 215.00 14.37 12787 13.7860 198.83 215.01 14.41 12788 13.7870 193.30 215.02 14.28 12789 13.7880 201.56 215.04 14.53 12790 13.7890 209.28 215.05 14.73 12791 13.7900 193.70 215.06 14.16 12792 13.7910 202.97 215.08 14.53 12793 13.7920 210.50 215.09 14.84 12794 13.7930 200.69 215.10 14.34 12795 13.7940 184.49 215.12 13.82 12796 13.7950 208.29 215.13 14.73 12797 13.7960 227.03 215.15 15.46 12798 13.7970 210.55 215.16 14.79 12799 13.7980 200.09 215.18 14.43 12800 13.7990 182.23 215.19 13.80 12801 13.8000 191.87 215.21 14.20 12802 13.8010 217.14 215.23 15.05 12803 13.8020 209.11 215.24 14.71 12804 13.8030 192.09 215.26 14.15 12805 13.8040 181.74 215.27 13.82 12806 13.8050 201.17 215.29 14.52 12807 13.8060 191.87 215.31 14.07 12808 13.8070 182.51 215.33 13.80 12809 13.8080 189.05 215.35 14.04 12810 13.8090 210.14 215.36 14.79 12811 13.8100 204.98 215.38 14.63 12812 13.8110 178.36 215.40 13.62 12813 13.8120 195.42 215.42 14.21 12814 13.8130 210.47 215.44 14.77 12815 13.8140 187.37 215.46 13.92 12816 13.8150 188.84 215.48 14.09 12817 13.8160 185.32 215.51 13.94 12818 13.8170 189.77 215.53 14.06 12819 13.8180 201.24 215.55 14.51 12820 13.8190 199.96 215.57 14.37 12821 13.8200 220.82 215.60 15.17 12822 13.8210 178.27 215.62 13.63 12823 13.8220 193.86 215.64 14.26 12824 13.8230 210.64 215.67 14.80 12825 13.8240 175.29 215.69 13.46 12826 13.8250 199.15 215.72 14.40 12827 13.8260 194.18 215.74 14.19 12828 13.8270 196.42 215.77 14.39 12829 13.8280 181.27 215.80 13.70 12830 13.8290 189.94 215.83 14.03 12831 13.8300 167.64 215.86 13.14 12832 13.8310 181.29 215.89 13.75 12833 13.8320 192.92 215.92 14.16 12834 13.8330 190.79 215.95 14.13 12835 13.8340 184.76 215.98 13.85 12836 13.8350 186.52 216.01 13.91 12837 13.8360 205.62 216.04 14.64 12838 13.8370 211.50 216.08 14.79 12839 13.8380 197.89 216.11 14.37 12840 13.8390 178.08 216.15 13.68 12841 13.8400 179.52 216.19 13.68 12842 13.8410 219.70 216.22 15.10 12843 13.8420 198.16 216.26 14.39 12844 13.8430 187.48 216.30 13.97 12845 13.8440 199.89 216.34 14.39 12846 13.8450 209.02 216.38 14.71 12847 13.8460 197.69 216.43 14.32 12848 13.8470 153.45 216.47 12.50 12849 13.8480 189.79 216.51 14.00 12850 13.8490 187.99 216.56 14.05 12851 13.8500 185.16 217.47 13.87 12852 13.8510 200.94 217.52 14.49 12853 13.8520 212.21 217.58 14.93 12854 13.8530 205.01 217.64 14.69 12855 13.8540 185.43 217.71 13.89 12856 13.8550 202.35 217.77 14.48 12857 13.8560 187.14 217.83 14.05 12858 13.8570 177.36 217.90 13.67 12859 13.8580 166.49 217.97 13.10 12860 13.8590 193.24 218.04 14.20 12861 13.8600 205.16 218.11 14.66 12862 13.8610 179.70 218.18 13.60 12863 13.8620 187.48 218.26 14.01 12864 13.8630 208.37 218.34 14.78 12865 13.8640 187.72 218.42 13.94 12866 13.8650 201.27 218.75 14.46 12867 13.8660 213.71 218.84 15.01 12868 13.8670 218.48 218.93 15.09 12869 13.8680 205.27 219.02 14.69 12870 13.8690 204.09 219.11 14.59 12871 13.8700 209.21 219.21 14.79 12872 13.8710 196.42 219.32 14.27 12873 13.8720 218.07 219.42 15.03 12874 13.8730 201.19 219.53 14.53 12875 13.8740 205.30 219.64 14.65 12876 13.8750 212.92 219.75 14.90 12877 13.8760 211.42 219.87 14.88 12878 13.8770 198.29 220.00 14.35 12879 13.8780 201.71 220.12 14.54 12880 13.8790 191.86 220.25 14.21 12881 13.8800 178.65 220.39 13.66 12882 13.8810 189.88 220.53 14.10 12883 13.8820 172.19 220.68 13.38 12884 13.8830 186.99 220.82 13.96 12885 13.8840 204.77 220.98 14.63 12886 13.8850 223.24 221.14 15.18 12887 13.8860 222.27 221.31 15.28 12888 13.8870 213.75 221.48 14.92 12889 13.8880 198.63 221.66 14.45 12890 13.8890 211.89 221.85 14.87 12891 13.8900 210.19 222.05 14.75 12892 13.8910 194.68 222.25 14.18 12893 13.8920 198.09 222.46 14.32 12894 13.8930 212.97 222.68 14.90 12895 13.8940 209.90 222.91 14.85 12896 13.8950 218.00 223.14 15.09 12897 13.8960 209.96 223.39 14.82 12898 13.8970 201.24 223.65 14.51 12899 13.8980 196.23 223.92 14.28 12900 13.8990 176.48 224.20 13.50 12901 13.9000 190.40 224.50 14.07 12902 13.9010 202.87 224.81 14.51 12903 13.9020 222.65 225.13 15.24 12904 13.9030 234.36 225.47 15.71 12905 13.9040 223.61 225.83 15.23 12906 13.9050 211.49 226.20 14.82 12907 13.9060 225.35 226.59 15.34 12908 13.9070 221.56 227.01 15.15 12909 13.9080 204.70 227.44 14.57 12910 13.9090 237.35 227.90 15.76 12911 13.9100 223.28 228.38 15.24 12912 13.9110 217.23 228.89 15.06 12913 13.9120 230.69 229.43 15.61 12914 13.9130 225.53 230.00 15.34 12915 13.9140 215.44 230.60 15.02 12916 13.9150 229.44 231.25 15.54 12917 13.9160 224.53 231.93 15.29 12918 13.9170 229.44 232.65 15.44 12919 13.9180 241.22 233.42 15.85 12920 13.9190 235.49 234.24 15.75 12921 13.9200 235.52 235.12 15.61 12922 13.9210 222.69 236.06 15.23 12923 13.9220 218.50 237.06 15.10 12924 13.9230 235.24 238.14 15.64 12925 13.9240 230.68 239.29 15.55 12926 13.9250 242.69 240.54 15.89 12927 13.9260 277.16 241.88 17.02 12928 13.9270 258.60 243.34 16.36 12929 13.9280 250.49 244.91 16.11 12930 13.9290 251.44 246.61 16.19 12931 13.9300 246.94 248.47 16.06 12932 13.9310 251.44 250.49 16.17 12933 13.9320 256.81 252.70 16.40 12934 13.9330 255.22 255.11 16.35 12935 13.9340 240.05 257.77 15.82 12936 13.9350 247.05 260.70 16.02 12937 13.9360 258.55 263.93 16.47 12938 13.9370 265.16 267.51 16.67 12939 13.9380 265.65 271.48 16.54 12940 13.9390 289.88 275.92 17.36 12941 13.9400 277.87 280.88 16.99 12942 13.9410 330.28 286.45 18.58 12943 13.9420 294.14 292.73 17.45 12944 13.9430 264.09 299.83 16.52 12945 13.9440 299.88 307.90 17.69 12946 13.9450 319.89 317.09 18.29 12947 13.9460 323.70 327.60 18.40 12948 13.9470 350.84 339.67 19.12 12949 13.9480 355.62 353.59 19.27 12950 13.9490 373.95 369.64 19.76 12951 13.9500 391.07 388.20 20.24 12952 13.9510 408.64 409.68 20.66 12953 13.9520 423.40 434.42 21.00 12954 13.9530 436.71 462.87 21.35 12955 13.9540 485.71 495.19 22.51 12956 13.9550 529.42 531.23 23.50 12957 13.9560 583.97 570.50 24.74 12958 13.9570 617.67 611.45 25.44 12959 13.9580 683.44 651.63 26.74 12960 13.9590 724.50 687.29 27.44 12961 13.9600 748.54 714.22 27.92 12962 13.9610 773.89 728.34 28.51 12963 13.9620 803.59 727.29 28.97 12964 13.9630 794.46 711.27 28.78 12965 13.9640 701.39 683.00 27.03 12966 13.9650 680.28 646.60 26.66 12967 13.9660 624.39 606.36 25.47 12968 13.9670 558.67 565.73 24.03 12969 13.9680 495.11 527.10 22.65 12970 13.9690 485.96 491.84 22.54 12971 13.9700 434.82 460.35 21.33 12972 13.9710 438.80 432.74 21.38 12973 13.9720 388.92 408.74 20.23 12974 13.9730 371.64 387.99 19.68 12975 13.9740 349.59 370.07 19.06 12976 13.9750 319.53 354.62 18.20 12977 13.9760 324.02 341.28 18.41 12978 13.9770 316.59 329.71 18.16 12979 13.9780 324.24 319.70 18.40 12980 13.9790 328.66 310.96 18.52 12981 13.9800 282.00 303.34 17.07 12982 13.9810 263.09 296.66 16.45 12983 13.9820 259.02 290.81 16.37 12984 13.9830 258.49 285.65 16.37 12985 13.9840 284.95 281.09 17.21 12986 13.9850 276.84 277.07 17.01 12987 13.9860 251.56 273.50 16.20 12988 13.9870 238.75 272.36 15.75 12989 13.9880 261.78 269.57 16.51 12990 13.9890 242.48 267.09 15.81 12991 13.9900 229.37 264.89 15.46 12992 13.9910 244.48 262.94 15.96 12993 13.9920 255.86 261.21 16.38 12994 13.9930 238.86 259.69 15.82 12995 13.9940 223.05 258.35 15.26 12996 13.9950 213.60 257.18 14.92 12997 13.9960 240.78 256.17 15.91 12998 13.9970 235.16 255.30 15.66 12999 13.9980 232.55 254.56 15.50 13000 13.9990 245.09 253.95 15.98 13001 14.0000 247.29 253.46 15.02 13002 14.0010 234.37 253.08 14.52 13003 14.0020 218.93 252.81 14.03 13004 14.0030 234.02 252.65 14.60 13005 14.0040 248.92 252.60 14.97 13006 14.0050 240.59 252.64 14.77 13007 14.0060 238.85 252.79 14.71 13008 14.0070 254.98 253.05 15.25 13009 14.0080 246.03 253.41 14.95 13010 14.0090 243.05 253.88 14.78 13011 14.0100 242.91 254.46 14.82 13012 14.0110 229.62 255.16 14.42 13013 14.0120 248.37 255.99 14.97 13014 14.0130 249.36 256.94 14.99 13015 14.0140 258.45 258.03 15.33 13016 14.0150 235.18 259.28 14.54 13017 14.0160 268.27 260.69 15.56 13018 14.0170 265.31 262.28 15.42 13019 14.0180 234.88 264.05 14.54 13020 14.0190 267.19 266.05 15.51 13021 14.0200 224.31 268.29 14.18 13022 14.0210 236.13 270.78 14.62 13023 14.0220 240.27 273.58 14.79 13024 14.0230 271.28 276.71 15.66 13025 14.0240 284.26 280.21 16.07 13026 14.0250 294.07 284.15 16.30 13027 14.0260 272.73 288.58 15.77 13028 14.0270 284.49 293.57 16.12 13029 14.0280 291.19 299.20 16.19 13030 14.0290 310.40 305.58 16.67 13031 14.0300 307.19 312.82 16.69 13032 14.0310 298.79 321.06 16.46 13033 14.0320 312.20 330.48 16.86 13034 14.0330 306.65 341.28 16.67 13035 14.0340 337.04 353.67 17.54 13036 14.0350 379.23 367.93 18.51 13037 14.0360 349.45 384.38 17.76 13038 14.0370 364.79 403.32 18.12 13039 14.0380 386.12 425.18 18.71 13040 14.0390 436.10 450.23 19.85 13041 14.0400 457.34 478.80 20.30 13042 14.0410 471.74 510.90 20.69 13043 14.0420 502.17 546.30 21.36 13044 14.0430 583.88 584.17 22.96 13045 14.0440 614.80 622.76 23.62 13046 14.0450 670.63 659.55 24.65 13047 14.0460 687.74 690.89 24.95 13048 14.0470 747.41 712.93 25.96 13049 14.0480 709.07 722.44 25.39 13050 14.0490 743.08 717.91 25.99 13051 14.0500 661.08 700.13 24.60 13052 14.0510 655.82 671.97 24.44 13053 14.0520 611.11 637.16 23.47 13054 14.0530 544.81 599.48 22.19 13055 14.0540 554.85 561.96 22.44 13056 14.0550 511.89 526.43 21.52 13057 14.0560 471.74 494.09 20.61 13058 14.0570 438.51 465.32 19.98 13059 14.0580 411.68 440.14 19.29 13060 14.0590 392.26 418.32 18.81 13061 14.0600 370.02 399.59 18.28 13062 14.0610 360.92 383.58 18.12 13063 14.0620 350.61 369.94 17.76 13064 14.0630 342.91 358.41 17.57 13065 14.0640 331.77 348.68 17.42 13066 14.0650 354.74 340.57 17.94 13067 14.0660 347.07 333.87 17.76 13068 14.0670 288.34 328.45 16.13 13069 14.0680 309.40 324.19 16.75 13070 14.0690 325.19 321.00 17.16 13071 14.0700 320.93 318.84 17.14 13072 14.0710 292.59 317.65 16.35 13073 14.0720 301.57 317.44 16.60 13074 14.0730 302.87 318.19 16.54 13075 14.0740 292.96 319.94 16.25 13076 14.0750 310.78 322.71 16.76 13077 14.0760 318.52 326.53 16.95 13078 14.0770 307.48 331.41 16.67 13079 14.0780 312.04 337.34 16.84 13080 14.0790 318.47 344.25 16.95 13081 14.0800 347.69 351.93 17.73 13082 14.0810 362.62 360.09 18.08 13083 14.0820 371.07 368.21 18.34 13084 14.0830 363.19 375.61 18.14 13085 14.0840 371.69 381.48 18.33 13086 14.0850 363.56 385.02 18.18 13087 14.0860 380.16 385.63 18.55 13088 14.0870 370.54 383.05 18.31 13089 14.0880 351.05 377.49 17.85 13090 14.0890 328.48 369.54 17.23 13091 14.0900 368.51 359.96 18.31 13092 14.0910 352.73 349.55 17.86 13093 14.0920 332.06 338.98 17.30 13094 14.0930 335.58 328.75 17.56 13095 14.0940 297.38 319.17 16.50 13096 14.0950 290.47 310.38 16.25 13097 14.0960 291.17 302.47 16.23 13098 14.0970 291.25 295.40 16.22 13099 14.0980 253.16 289.12 15.15 13100 14.0990 256.26 300.65 15.19 13101 14.1000 259.15 295.92 15.32 13102 14.1010 268.21 291.77 15.63 13103 14.1020 257.04 288.12 15.28 13104 14.1030 244.33 284.92 14.86 13105 14.1040 248.21 282.10 15.01 13106 14.1050 252.88 279.62 15.08 13107 14.1060 264.45 277.44 15.45 13108 14.1070 245.23 275.52 14.94 13109 14.1080 258.12 273.82 15.22 13110 14.1090 257.88 272.33 15.29 13111 14.1100 259.27 271.02 15.38 13112 14.1110 252.19 269.86 15.16 13113 14.1120 289.22 268.85 16.22 13114 14.1130 251.55 267.96 15.09 13115 14.1140 250.20 267.19 15.03 13116 14.1150 247.63 266.52 15.03 13117 14.1160 250.91 265.95 15.06 13118 14.1170 239.00 265.45 14.71 13119 14.1180 235.77 265.04 14.59 13120 14.1190 257.18 264.70 15.23 13121 14.1200 261.40 264.43 15.40 13122 14.1210 259.14 264.22 15.34 13123 14.1220 254.46 264.06 15.22 13124 14.1230 257.52 263.96 15.26 13125 14.1240 236.52 263.91 14.66 13126 14.1250 237.43 263.91 14.71 13127 14.1260 233.02 263.95 14.46 13128 14.1270 270.61 264.04 15.60 13129 14.1280 271.75 264.17 15.71 13130 14.1290 273.49 264.34 15.70 13131 14.1300 253.09 264.55 15.10 13132 14.1310 225.81 264.80 14.36 13133 14.1320 255.91 265.09 15.28 13134 14.1330 229.92 265.41 14.43 13135 14.1340 233.17 265.77 14.52 13136 14.1350 241.32 266.17 14.74 13137 14.1360 276.83 266.60 15.83 13138 14.1370 265.46 267.07 15.51 13139 14.1380 250.94 267.57 15.15 13140 14.1390 254.56 268.11 15.23 13141 14.1400 259.95 268.69 15.40 13142 14.1410 270.96 269.30 15.64 13143 14.1420 275.30 269.95 15.76 13144 14.1430 267.91 270.64 15.61 13145 14.1440 250.27 271.37 15.06 13146 14.1450 259.46 272.14 15.31 13147 14.1460 252.77 272.95 15.09 13148 14.1470 268.15 273.81 15.59 13149 14.1480 252.76 274.71 15.15 13150 14.1490 247.13 275.65 14.94 13151 14.1500 249.98 276.65 15.05 13152 14.1510 266.58 277.69 15.48 13153 14.1520 273.98 278.79 15.82 13154 14.1530 254.42 279.94 15.13 13155 14.1540 283.90 281.14 16.08 13156 14.1550 249.48 282.41 15.11 13157 14.1560 276.75 282.87 15.82 13158 14.1570 273.63 284.27 15.74 13159 14.1580 264.28 285.75 15.43 13160 14.1590 248.16 287.30 14.94 13161 14.1600 254.39 288.93 15.18 13162 14.1610 268.35 290.65 15.55 13163 14.1620 270.03 292.45 15.65 13164 14.1630 301.20 294.36 16.50 13165 14.1640 282.13 296.36 16.01 13166 14.1650 272.56 298.47 15.62 13167 14.1660 300.21 300.70 16.49 13168 14.1670 313.00 303.05 16.92 13169 14.1680 295.54 305.54 16.27 13170 14.1690 282.71 308.18 15.92 13171 14.1700 275.73 310.97 15.80 13172 14.1710 285.59 313.93 16.09 13173 14.1720 316.74 317.08 16.95 13174 14.1730 331.23 320.43 17.35 13175 14.1740 313.19 323.99 16.80 13176 14.1750 340.07 327.79 17.52 13177 14.1760 344.56 331.85 17.73 13178 14.1770 315.82 336.20 16.84 13179 14.1780 296.66 340.86 16.36 13180 14.1790 320.00 345.87 17.00 13181 14.1800 331.45 351.26 17.35 13182 14.1810 353.15 357.06 17.81 13183 14.1820 368.37 363.33 18.24 13184 14.1830 361.70 370.12 18.04 13185 14.1840 340.47 377.49 17.63 13186 14.1850 344.77 385.50 17.69 13187 14.1860 395.43 394.23 18.79 13188 14.1870 390.14 403.79 18.80 13189 14.1880 419.02 414.24 19.47 13190 14.1890 396.63 425.75 18.95 13191 14.1900 444.44 438.42 20.11 13192 14.1910 469.30 452.42 20.59 13193 14.1920 463.05 467.96 20.52 13194 14.1930 480.59 485.22 20.86 13195 14.1940 513.09 504.48 21.56 13196 14.1950 505.12 525.98 21.38 13197 14.1960 524.39 550.13 21.86 13198 14.1970 589.40 577.25 23.20 13199 14.1980 620.02 607.80 23.73 13200 14.1990 652.11 642.30 24.36 13201 14.2000 674.59 681.23 24.74 13202 14.2010 689.89 725.19 25.03 13203 14.2020 762.06 774.74 26.33 13204 14.2030 798.36 830.44 26.96 13205 14.2040 869.02 892.57 28.09 13206 14.2050 897.90 961.03 28.44 13207 14.2060 972.82 1035.53 29.62 13208 14.2070 1031.43 1114.52 30.55 13209 14.2080 1106.45 1195.56 31.70 13210 14.2090 1181.67 1274.81 32.77 13211 14.2100 1256.48 1347.08 33.67 13212 14.2110 1279.34 1406.13 34.04 13213 14.2120 1324.72 1446.00 34.71 13214 14.2130 1342.62 1462.12 34.94 13215 14.2140 1299.01 1452.65 34.44 13216 14.2150 1298.26 1419.01 34.33 13217 14.2160 1278.56 1365.56 34.13 13218 14.2170 1232.79 1298.22 33.55 13219 14.2180 1137.06 1223.11 32.18 13220 14.2190 1032.74 1145.72 30.64 13221 14.2200 988.87 1069.96 29.94 13222 14.2210 926.17 998.69 28.98 13223 14.2220 921.55 933.15 28.88 13224 14.2230 865.05 874.12 27.98 13225 14.2240 730.78 821.60 25.76 13226 14.2250 749.43 775.23 26.04 13227 14.2260 745.87 734.64 25.99 13228 14.2270 744.90 699.21 26.00 13229 14.2280 672.16 668.38 24.71 13230 14.2290 669.92 641.59 24.70 13231 14.2300 629.83 618.43 23.87 13232 14.2310 624.17 598.38 23.72 13233 14.2320 623.75 581.09 23.79 13234 14.2330 604.55 566.24 23.40 13235 14.2340 567.56 553.53 22.65 13236 14.2350 562.44 542.72 22.44 13237 14.2360 558.03 533.59 22.53 13238 14.2370 532.62 525.98 21.96 13239 14.2380 541.87 519.73 22.08 13240 14.2390 536.75 514.70 22.05 13241 14.2400 510.40 510.80 21.52 13242 14.2410 558.19 507.92 22.48 13243 14.2420 500.67 506.00 21.27 13244 14.2430 529.20 504.97 21.91 13245 14.2440 572.54 504.77 22.81 13246 14.2450 523.76 505.38 21.77 13247 14.2460 542.99 506.74 22.18 13248 14.2470 557.62 508.84 22.38 13249 14.2480 506.75 510.82 21.38 13250 14.2490 550.95 514.35 22.32 13251 14.2500 576.16 518.59 22.81 13252 14.2510 545.31 523.54 22.24 13253 14.2520 565.26 529.19 22.59 13254 14.2530 530.76 535.57 21.84 13255 14.2540 580.26 542.68 22.96 13256 14.2550 598.75 550.56 23.29 13257 14.2560 608.42 559.24 23.46 13258 14.2570 614.37 568.73 23.61 13259 14.2580 633.34 579.11 23.96 13260 14.2590 690.00 590.40 25.08 13261 14.2600 656.51 602.66 24.42 13262 14.2610 656.89 615.96 24.40 13263 14.2620 674.24 630.38 24.69 13264 14.2630 738.32 645.97 25.87 13265 14.2640 690.23 662.87 24.99 13266 14.2650 710.28 681.17 25.33 13267 14.2660 724.30 700.94 25.59 13268 14.2670 793.22 722.40 26.82 13269 14.2680 810.90 745.63 27.14 13270 14.2690 798.80 770.85 26.94 13271 14.2700 863.68 798.22 27.99 13272 14.2710 895.57 827.97 28.54 13273 14.2720 912.67 860.39 28.79 13274 14.2730 968.72 895.68 29.62 13275 14.2740 993.49 934.28 29.99 13276 14.2750 1009.15 976.48 30.22 13277 14.2760 1076.75 1022.75 31.21 13278 14.2770 1115.87 1073.61 31.76 13279 14.2780 1155.74 1129.57 32.33 13280 14.2790 1246.80 1191.39 33.61 13281 14.2800 1257.61 1259.66 33.72 13282 14.2810 1339.98 1335.52 34.83 13283 14.2820 1401.85 1419.85 35.55 13284 14.2830 1540.93 1513.93 37.38 13285 14.2840 1638.89 1619.31 38.45 13286 14.2850 1789.35 1737.51 40.21 13287 14.2860 1860.97 1870.61 41.06 13288 14.2870 2048.59 2020.99 43.15 13289 14.2880 2134.50 2191.58 43.99 13290 14.2890 2343.63 2385.20 46.06 13291 14.2900 2543.54 2606.35 47.93 13292 14.2910 2661.29 2859.20 49.13 13293 14.2920 3019.83 3148.61 52.34 13294 14.2930 3328.94 3480.56 54.85 13295 14.2940 3612.84 3861.31 57.18 13296 14.2950 4065.87 4297.67 60.73 13297 14.2960 4477.17 4794.36 63.66 13298 14.2970 5033.62 5357.23 67.44 13299 14.2980 5626.82 5985.88 71.42 13300 14.2990 6444.79 6672.76 76.39 13301 14.3000 7382.65 7403.26 81.73 13302 14.3010 8289.47 8143.89 86.69 13303 14.3020 9250.08 8846.90 91.51 13304 14.3030 9896.76 9446.89 94.79 13305 14.3040 10523.60 9874.44 97.65 13306 14.3050 10470.50 10070.50 97.54 13307 14.3060 10364.10 10005.00 96.96 13308 14.3070 9723.50 9687.92 93.92 13309 14.3080 8913.24 9165.84 89.95 13310 14.3090 8209.15 8506.01 86.34 13311 14.3100 7423.76 7776.37 82.09 13312 14.3110 6675.14 7035.50 77.79 13313 14.3120 6055.84 6322.50 74.11 13314 14.3130 5363.23 5663.05 69.64 13315 14.3140 4762.40 5066.05 65.70 13316 14.3150 4329.43 4535.70 62.73 13317 14.3160 3985.97 4068.88 60.19 13318 14.3170 3600.98 3660.06 57.15 13319 14.3180 3320.73 3303.66 54.90 13320 14.3190 3049.96 2992.91 52.65 13321 14.3200 2719.88 2721.75 49.65 13322 14.3210 2498.38 2484.55 47.59 13323 14.3220 2309.95 2277.07 45.69 13324 14.3230 2164.22 2094.45 44.29 13325 14.3240 1914.93 1933.64 41.66 13326 14.3250 1910.39 1791.32 41.65 13327 14.3260 1790.82 1665.07 40.22 13328 14.3270 1612.77 1552.88 38.19 13329 14.3280 1554.98 1452.52 37.52 13330 14.3290 1434.74 1362.60 35.98 13331 14.3300 1346.80 1281.93 34.94 13332 14.3310 1248.23 1209.09 33.61 13333 14.3320 1252.90 1143.34 33.71 13334 14.3330 1171.21 1083.64 32.47 13335 14.3340 1136.12 1029.45 32.02 13336 14.3350 1081.85 979.99 31.29 13337 14.3360 1026.11 934.80 30.47 13338 14.3370 978.70 893.49 29.80 13339 14.3380 951.72 855.51 29.37 13340 14.3390 909.25 820.57 28.76 13341 14.3400 847.51 788.43 27.73 13342 14.3410 795.78 758.69 26.89 13343 14.3420 791.17 731.17 26.78 13344 14.3430 760.01 705.66 26.26 13345 14.3440 727.34 682.02 25.69 13346 14.3450 704.49 659.99 25.28 13347 14.3460 720.06 639.50 25.59 13348 14.3470 695.22 620.34 25.16 13349 14.3480 676.80 602.47 24.75 13350 14.3490 623.22 585.72 23.70 13351 14.3500 637.83 570.03 24.09 13352 14.3510 605.78 555.32 23.46 13353 14.3520 617.27 541.49 23.71 13354 14.3530 559.74 528.49 22.51 13355 14.3540 562.08 516.23 22.58 13356 14.3550 560.62 504.67 22.59 13357 14.3560 539.58 493.76 22.16 13358 14.3570 498.18 483.47 21.28 13359 14.3580 488.16 473.72 20.96 13360 14.3590 474.09 464.49 20.67 13361 14.3600 479.36 455.76 20.81 13362 14.3610 461.08 447.46 20.43 13363 14.3620 442.89 439.58 20.03 13364 14.3630 423.57 432.11 19.58 13365 14.3640 453.63 424.98 20.22 13366 14.3650 417.48 418.22 19.50 13367 14.3660 452.91 411.76 20.27 13368 14.3670 416.47 405.62 19.52 13369 14.3680 401.49 399.75 19.13 13370 14.3690 395.66 394.14 18.90 13371 14.3700 400.79 388.80 19.13 13372 14.3710 368.68 383.68 18.30 13373 14.3720 375.55 378.78 18.47 13374 14.3730 378.67 374.10 18.57 13375 14.3740 366.89 369.61 18.27 13376 14.3750 387.71 365.30 18.67 13377 14.3760 383.80 361.18 18.62 13378 14.3770 364.44 357.23 18.16 13379 14.3780 352.69 353.42 17.86 13380 14.3790 370.29 349.78 18.34 13381 14.3800 319.93 346.27 16.87 13382 14.3810 325.87 342.90 17.16 13383 14.3820 322.72 339.65 17.12 13384 14.3830 302.22 336.52 16.56 13385 14.3840 322.51 333.52 17.07 13386 14.3850 335.45 330.62 17.42 13387 14.3860 297.33 327.83 16.45 13388 14.3870 310.62 325.13 16.74 13389 14.3880 291.45 322.53 16.24 13390 14.3890 266.24 320.03 15.45 13391 14.3900 301.81 317.61 16.45 13392 14.3910 310.64 315.26 16.83 13393 14.3920 300.75 313.00 16.48 13394 14.3930 311.98 310.82 16.86 13395 14.3940 318.09 308.70 16.89 13396 14.3950 312.53 306.66 16.75 13397 14.3960 286.53 304.68 16.07 13398 14.3970 281.33 302.76 15.95 13399 14.3980 294.47 300.91 16.38 13400 14.3990 317.24 299.11 17.00 13401 14.4000 268.18 297.37 15.58 13402 14.4010 299.76 295.68 16.47 13403 14.4020 295.88 294.04 16.38 13404 14.4030 263.11 292.46 15.47 13405 14.4040 273.09 290.91 15.75 13406 14.4050 284.77 289.42 16.03 13407 14.4060 262.11 287.96 15.40 13408 14.4070 279.89 286.55 15.85 13409 14.4080 250.88 285.18 15.02 13410 14.4090 274.13 283.85 15.79 13411 14.4100 287.29 282.55 16.20 13412 14.4110 266.93 281.30 15.49 13413 14.4120 262.14 280.07 15.40 13414 14.4130 269.33 278.88 15.59 13415 14.4140 239.47 277.72 14.73 13416 14.4150 257.85 276.60 15.27 13417 14.4160 277.26 275.50 15.93 13418 14.4170 255.81 274.43 15.24 13419 14.4180 244.78 273.39 14.98 13420 14.4190 236.39 272.37 14.59 13421 14.4200 263.65 271.38 15.42 13422 14.4210 239.90 270.42 14.76 13423 14.4220 265.47 269.48 15.48 13424 14.4230 255.63 268.56 15.26 13425 14.4240 270.80 267.67 15.60 13426 14.4250 256.22 266.80 15.28 13427 14.4260 219.91 265.95 14.06 13428 14.4270 234.54 265.12 14.60 13429 14.4280 266.23 264.31 15.45 13430 14.4290 251.98 263.52 15.11 13431 14.4300 261.42 262.75 15.37 13432 14.4310 247.70 261.99 14.94 13433 14.4320 240.37 261.26 14.75 13434 14.4330 233.41 260.54 14.46 13435 14.4340 236.94 259.83 14.60 13436 14.4350 245.14 259.15 14.90 13437 14.4360 240.81 258.48 14.76 13438 14.4370 259.40 257.82 15.35 13439 14.4380 228.14 257.18 14.33 13440 14.4390 248.85 256.55 15.01 13441 14.4400 266.08 255.93 15.54 13442 14.4410 245.85 253.34 15.03 13443 14.4420 259.56 252.77 15.34 13444 14.4430 227.80 252.21 14.41 13445 14.4440 237.09 251.66 14.61 13446 14.4450 236.04 251.13 14.59 13447 14.4460 227.76 250.60 14.35 13448 14.4470 239.71 250.09 14.73 13449 14.4480 253.75 249.59 15.12 13450 14.4490 236.57 249.10 14.62 13451 14.4500 262.10 248.62 15.38 13452 14.4510 240.42 248.14 14.72 13453 14.4520 224.18 247.68 14.27 13454 14.4530 232.05 247.23 14.46 13455 14.4540 242.65 246.78 14.83 13456 14.4550 244.44 246.35 14.84 13457 14.4560 241.95 245.92 14.78 13458 14.4570 248.72 245.51 15.06 13459 14.4580 220.63 245.10 14.15 13460 14.4590 243.24 244.69 14.85 13461 14.4600 256.88 244.30 15.33 13462 14.4610 221.70 243.91 14.15 13463 14.4620 247.77 243.53 14.87 13464 14.4630 228.71 243.16 14.37 13465 14.4640 237.10 242.80 14.59 13466 14.4650 207.01 242.44 13.61 13467 14.4660 228.23 242.09 14.35 13468 14.4670 256.14 241.74 15.23 13469 14.4680 248.58 241.40 14.94 13470 14.4690 229.62 241.07 14.39 13471 14.4700 253.24 240.74 15.07 13472 14.4710 238.08 240.42 14.65 13473 14.4720 267.65 240.11 15.61 13474 14.4730 244.96 239.80 14.87 13475 14.4740 231.20 239.49 14.49 13476 14.4750 220.61 239.20 14.12 13477 14.4760 231.60 238.90 14.49 13478 14.4770 248.92 238.61 14.96 13479 14.4780 217.45 238.33 14.02 13480 14.4790 209.50 238.05 13.73 13481 14.4800 229.32 237.78 14.39 13482 14.4810 243.30 237.51 14.91 13483 14.4820 246.29 237.24 14.91 13484 14.4830 250.77 236.99 14.99 13485 14.4840 239.57 236.73 14.72 13486 14.4850 238.21 236.48 14.63 13487 14.4860 252.61 236.23 15.08 13488 14.4870 229.92 235.99 14.39 13489 14.4880 220.23 235.75 14.14 13490 14.4890 247.06 235.51 14.87 13491 14.4900 243.12 235.28 14.78 13492 14.4910 246.34 235.05 14.97 13493 14.4920 257.64 234.83 15.29 13494 14.4930 253.09 234.61 15.10 13495 14.4940 233.79 234.39 14.51 13496 14.4950 243.67 234.18 14.86 13497 14.4960 248.95 233.97 14.97 13498 14.4970 213.49 233.76 13.88 13499 14.4980 241.78 233.56 14.74 13500 14.4990 243.39 233.36 14.87 13501 14.5000 245.79 233.16 14.84 13502 14.5010 256.47 232.96 15.27 13503 14.5020 235.13 232.77 14.58 13504 14.5030 238.01 232.58 14.63 13505 14.5040 239.97 232.40 14.69 13506 14.5050 229.63 232.21 14.42 13507 14.5060 238.03 232.03 14.61 13508 14.5070 219.43 231.85 14.12 13509 14.5080 237.98 231.68 14.74 13510 14.5090 239.61 233.01 14.69 13511 14.5100 250.70 232.85 15.01 13512 14.5110 243.37 232.70 14.87 13513 14.5120 239.23 215.55 14.79 13514 14.5130 237.43 215.56 14.72 13515 14.5140 244.98 215.58 14.94 13516 14.5150 249.51 215.59 15.00 13517 14.5160 231.75 215.61 14.47 13518 14.5170 251.76 215.63 15.07 13519 14.5180 237.25 215.64 14.61 13520 14.5190 238.59 215.66 14.63 13521 14.5200 236.14 215.67 14.60 13522 14.5210 234.39 215.69 14.57 13523 14.5220 214.23 215.71 13.93 13524 14.5230 225.02 215.72 14.25 13525 14.5240 220.65 215.74 14.01 13526 14.5250 236.22 215.76 14.66 13527 14.5260 229.00 215.78 14.37 13528 14.5270 242.07 215.79 14.79 13529 14.5280 248.87 215.81 14.97 13530 14.5290 240.92 215.83 14.74 13531 14.5300 251.87 215.85 15.11 13532 14.5310 228.61 215.87 14.43 13533 14.5320 236.64 215.89 14.65 13534 14.5330 247.54 215.91 14.96 13535 14.5340 243.10 215.93 14.79 13536 14.5350 192.81 215.95 13.17 13537 14.5360 243.02 215.97 14.73 13538 14.5370 216.76 215.99 14.00 13539 14.5380 235.98 216.01 14.57 13540 14.5390 256.07 216.04 15.18 13541 14.5400 246.49 216.06 14.89 13542 14.5410 233.41 216.08 14.55 13543 14.5420 243.38 216.10 14.82 13544 14.5430 219.42 216.13 14.02 13545 14.5440 218.62 216.15 14.01 13546 14.5450 241.36 216.17 14.83 13547 14.5460 240.49 216.20 14.78 13548 14.5470 237.00 216.22 14.57 13549 14.5480 220.99 216.25 14.22 13550 14.5490 240.40 216.27 14.79 13551 14.5500 241.26 216.30 14.76 13552 14.5510 248.39 216.33 15.05 13553 14.5520 259.86 216.35 15.38 13554 14.5530 235.81 216.38 14.53 13555 14.5540 219.92 216.41 14.05 13556 14.5550 226.43 216.44 14.29 13557 14.5560 247.01 216.47 14.98 13558 14.5570 232.29 216.50 14.50 13559 14.5580 229.22 216.53 14.42 13560 14.5590 225.44 216.56 14.28 13561 14.5600 219.26 216.59 14.06 13562 14.5610 239.03 216.62 14.69 13563 14.5620 236.27 216.65 14.56 13564 14.5630 228.02 216.69 14.31 13565 14.5640 243.95 216.72 14.90 13566 14.5650 234.56 216.75 14.60 13567 14.5660 228.38 216.79 14.39 13568 14.5670 227.48 216.82 14.31 13569 14.5680 229.42 216.86 14.31 13570 14.5690 248.53 216.90 15.00 13571 14.5700 251.66 216.93 15.00 13572 14.5710 244.79 216.97 14.92 13573 14.5720 259.49 217.01 15.36 13574 14.5730 268.62 217.05 15.65 13575 14.5740 242.96 217.09 14.87 13576 14.5750 224.87 217.13 14.26 13577 14.5760 240.29 217.18 14.69 13578 14.5770 244.88 217.22 14.91 13579 14.5780 240.30 217.26 14.76 13580 14.5790 249.29 217.31 15.02 13581 14.5800 245.43 217.35 14.87 13582 14.5810 225.97 217.40 14.33 13583 14.5820 232.60 217.45 14.59 13584 14.5830 237.78 217.50 14.71 13585 14.5840 234.87 217.55 14.58 13586 14.5850 237.11 217.60 14.65 13587 14.5860 238.40 217.65 14.72 13588 14.5870 251.32 217.70 15.01 13589 14.5880 215.31 217.76 13.90 13590 14.5890 242.89 217.81 14.81 13591 14.5900 249.42 217.87 14.99 13592 14.5910 274.33 217.93 15.77 13593 14.5920 268.76 217.99 15.59 13594 14.5930 249.20 218.05 15.09 13595 14.5940 243.46 218.11 14.91 13596 14.5950 233.73 218.18 14.54 13597 14.5960 271.14 218.24 15.63 13598 14.5970 243.47 218.31 14.82 13599 14.5980 270.24 218.38 15.67 13600 14.5990 257.23 218.45 15.26 13601 14.6000 238.72 218.52 14.76 13602 14.6010 242.89 218.59 14.84 13603 14.6020 247.49 218.66 15.00 13604 14.6030 247.87 218.74 14.97 13605 14.6040 252.02 218.82 15.14 13606 14.6050 245.22 218.90 14.90 13607 14.6060 250.80 218.98 15.02 13608 14.6070 242.59 219.07 14.78 13609 14.6080 245.52 219.16 14.89 13610 14.6090 253.94 219.24 15.08 13611 14.6100 260.62 219.34 15.35 13612 14.6110 255.67 219.43 15.24 13613 14.6120 260.48 219.53 15.34 13614 14.6130 251.63 219.63 15.08 13615 14.6140 237.52 219.73 14.69 13616 14.6150 235.42 219.83 14.64 13617 14.6160 254.34 219.94 15.22 13618 14.6170 241.88 220.05 14.75 13619 14.6180 236.79 220.16 14.69 13620 14.6190 252.14 220.28 15.09 13621 14.6200 229.28 220.40 14.43 13622 14.6210 257.18 220.53 15.29 13623 14.6220 246.79 220.65 14.96 13624 14.6230 240.39 220.79 14.72 13625 14.6240 251.80 220.92 15.05 13626 14.6250 266.64 221.06 15.56 13627 14.6260 249.39 221.20 15.10 13628 14.6270 264.70 221.35 15.54 13629 14.6280 277.93 221.50 15.92 13630 14.6290 250.79 221.66 15.10 13631 14.6300 238.24 221.82 14.67 13632 14.6310 242.89 221.99 14.77 13633 14.6320 239.97 222.16 14.71 13634 14.6330 243.22 222.34 14.79 13635 14.6340 264.72 222.52 15.48 13636 14.6350 267.30 222.71 15.50 13637 14.6360 251.77 222.91 15.06 13638 14.6370 265.39 223.12 15.48 13639 14.6380 260.08 223.32 15.40 13640 14.6390 250.31 223.54 14.98 13641 14.6400 245.03 223.77 14.82 13642 14.6410 237.41 224.00 14.69 13643 14.6420 255.61 224.24 15.28 13644 14.6430 248.88 224.50 15.04 13645 14.6440 234.79 224.76 14.59 13646 14.6450 248.57 225.03 15.04 13647 14.6460 253.23 225.31 15.18 13648 14.6470 250.01 225.60 14.97 13649 14.6480 223.72 225.90 14.13 13650 14.6490 214.23 226.22 13.87 13651 14.6500 233.31 226.54 14.54 13652 14.6510 269.97 226.88 15.63 13653 14.6520 264.94 227.24 15.49 13654 14.6530 234.73 227.61 14.61 13655 14.6540 257.56 227.99 15.21 13656 14.6550 245.91 228.39 14.98 13657 14.6560 254.90 228.81 15.20 13658 14.6570 237.52 229.25 14.70 13659 14.6580 233.13 229.71 14.60 13660 14.6590 241.87 230.18 14.79 13661 14.6600 246.23 230.68 14.89 13662 14.6610 262.66 231.21 15.37 13663 14.6620 263.63 231.75 15.46 13664 14.6630 264.38 232.33 15.46 13665 14.6640 245.07 232.93 14.95 13666 14.6650 241.33 233.56 14.78 13667 14.6660 251.32 234.23 15.03 13668 14.6670 248.12 234.92 15.00 13669 14.6680 271.96 235.66 15.66 13670 14.6690 239.21 236.43 14.67 13671 14.6700 253.47 237.25 15.07 13672 14.6710 243.51 238.10 14.87 13673 14.6720 257.07 239.01 15.25 13674 14.6730 245.06 239.98 14.89 13675 14.6740 250.75 240.99 15.11 13676 14.6750 258.64 242.07 15.38 13677 14.6760 270.46 243.21 15.68 13678 14.6770 281.56 244.42 15.96 13679 14.6780 264.97 245.71 15.53 13680 14.6790 265.24 247.08 15.45 13681 14.6800 283.94 248.54 16.09 13682 14.6810 258.27 250.09 15.38 13683 14.6820 272.68 251.76 15.76 13684 14.6830 265.11 253.53 15.47 13685 14.6840 247.19 255.44 14.92 13686 14.6850 257.15 257.48 15.27 13687 14.6860 277.23 259.68 15.86 13688 14.6870 266.21 262.04 15.57 13689 14.6880 277.28 264.59 15.85 13690 14.6890 263.99 267.34 15.47 13691 14.6900 263.00 270.31 15.37 13692 14.6910 272.70 273.54 15.71 13693 14.6920 284.49 277.05 16.04 13694 14.6930 314.51 280.86 16.93 13695 14.6940 307.69 285.02 16.76 13696 14.6950 316.83 289.57 16.93 13697 14.6960 309.45 294.56 16.74 13698 14.6970 311.66 300.03 16.83 13699 14.6980 330.43 306.06 17.32 13700 14.6990 375.18 312.72 18.37 13701 14.7000 325.90 320.09 17.20 13702 14.7010 316.30 328.28 16.89 13703 14.7020 344.69 337.39 17.69 13704 14.7030 403.81 347.57 19.02 13705 14.7040 390.50 358.99 18.81 13706 14.7050 389.93 371.80 18.87 13707 14.7060 397.38 386.26 18.99 13708 14.7070 382.92 402.58 18.63 13709 14.7080 427.71 421.11 19.65 13710 14.7090 445.20 442.18 20.09 13711 14.7100 456.21 466.12 20.33 13712 14.7110 508.55 493.45 21.48 13713 14.7120 534.82 524.63 21.96 13714 14.7130 533.82 560.15 22.00 13715 14.7140 591.97 600.41 23.17 13716 14.7150 649.64 645.91 24.25 13717 14.7160 652.00 696.66 24.33 13718 14.7170 726.04 752.57 25.66 13719 14.7180 806.73 812.64 27.01 13720 14.7190 876.60 874.85 28.20 13721 14.7200 943.98 936.34 29.33 13722 14.7210 1059.29 992.51 30.94 13723 14.7220 1079.28 1038.29 31.25 13724 14.7230 1129.26 1068.24 32.00 13725 14.7240 1120.24 1078.50 31.84 13726 14.7250 1058.44 1067.54 31.02 13727 14.7260 1009.40 1036.92 30.23 13728 14.7270 926.89 990.77 29.01 13729 14.7280 903.49 934.23 28.64 13730 14.7290 880.06 872.66 28.25 13731 14.7300 793.84 810.48 26.83 13732 14.7310 756.94 750.53 26.14 13733 14.7320 680.00 694.79 24.84 13734 14.7330 608.82 644.23 23.51 13735 14.7340 581.42 598.91 22.93 13736 14.7350 538.16 558.83 22.06 13737 14.7360 467.76 523.47 20.59 13738 14.7370 502.78 492.44 21.30 13739 14.7380 484.26 465.27 20.95 13740 14.7390 435.26 441.40 19.79 13741 14.7400 428.54 420.46 19.71 13742 14.7410 406.31 402.01 19.14 13743 14.7420 393.36 385.73 18.87 13744 14.7430 382.96 371.35 18.65 13745 14.7440 356.88 358.58 18.02 13746 14.7450 346.51 347.21 17.74 13747 14.7460 335.23 337.07 17.37 13748 14.7470 338.09 327.98 17.49 13749 14.7480 337.24 319.83 17.49 13750 14.7490 336.07 312.49 17.46 13751 14.7500 327.16 305.85 17.22 13752 14.7510 330.89 299.84 17.35 13753 14.7520 290.76 294.39 16.24 13754 14.7530 282.28 289.42 16.00 13755 14.7540 264.64 284.89 15.48 13756 14.7550 301.04 280.74 16.44 13757 14.7560 292.51 276.94 16.24 13758 14.7570 271.26 273.44 15.69 13759 14.7580 290.00 270.22 16.26 13760 14.7590 288.87 267.26 16.09 13761 14.7600 260.20 264.51 15.37 13762 14.7610 257.18 261.97 15.20 13763 14.7620 256.38 259.61 15.23 13764 14.7630 254.29 257.42 15.23 13765 14.7640 263.79 255.38 15.51 13766 14.7650 247.26 253.48 14.92 13767 14.7660 251.98 251.71 15.16 13768 14.7670 250.95 250.05 15.03 13769 14.7680 255.37 248.50 15.18 13770 14.7690 250.38 247.04 15.04 13771 14.7700 239.83 245.68 14.73 13772 14.7710 227.14 244.39 14.43 13773 14.7720 244.33 243.18 14.85 13774 14.7730 226.76 242.05 14.25 13775 14.7740 234.94 240.97 14.53 13776 14.7750 238.52 239.96 14.65 13777 14.7760 237.03 239.00 14.64 13778 14.7770 245.34 238.09 14.89 13779 14.7780 235.98 237.23 14.57 13780 14.7790 237.61 236.42 14.62 13781 14.7800 219.21 235.65 14.01 13782 14.7810 241.05 234.92 14.77 13783 14.7820 222.15 234.22 14.20 13784 14.7830 229.90 233.56 14.41 13785 14.7840 233.03 232.93 14.39 13786 14.7850 213.92 232.33 13.91 13787 14.7860 207.41 231.75 13.74 13788 14.7870 219.51 231.21 14.10 13789 14.7880 230.37 230.68 14.41 13790 14.7890 220.16 230.19 14.08 13791 14.7900 232.41 229.71 14.50 13792 14.7910 214.28 229.26 13.88 13793 14.7920 224.53 228.82 14.24 13794 14.7930 223.74 228.40 14.21 13795 14.7940 222.92 228.00 14.16 13796 14.7950 216.33 227.62 13.95 13797 14.7960 222.31 227.25 14.20 13798 14.7970 246.79 226.89 14.87 13799 14.7980 233.77 226.55 14.53 13800 14.7990 225.09 226.23 14.23 13801 14.8000 217.41 225.91 14.04 13802 14.8010 203.34 225.61 13.53 13803 14.8020 203.82 225.32 13.56 13804 14.8030 218.34 225.04 14.08 13805 14.8040 225.97 224.77 14.27 13806 14.8050 230.99 224.51 14.47 13807 14.8060 206.49 224.26 13.65 13808 14.8070 213.86 224.02 13.87 13809 14.8080 205.56 223.79 13.61 13810 14.8090 233.16 223.56 14.52 13811 14.8100 207.53 223.35 13.68 13812 14.8110 203.70 223.13 13.59 13813 14.8120 192.59 222.93 13.18 13814 14.8130 207.11 222.74 13.77 13815 14.8140 229.05 222.54 14.40 13816 14.8150 232.66 222.36 14.52 13817 14.8160 216.89 222.18 14.15 13818 14.8170 207.93 222.01 13.75 13819 14.8180 229.42 221.85 14.35 13820 14.8190 218.88 221.68 14.05 13821 14.8200 209.53 221.53 13.79 13822 14.8210 221.87 221.37 14.15 13823 14.8220 194.25 221.23 13.21 13824 14.8230 208.26 221.08 13.73 13825 14.8240 218.40 220.95 14.05 13826 14.8250 242.86 220.81 14.77 13827 14.8260 225.73 220.68 14.32 13828 14.8270 202.48 220.55 13.55 13829 14.8280 216.57 220.43 13.93 13830 14.8290 234.88 220.31 14.56 13831 14.8300 195.44 220.19 13.30 13832 14.8310 194.60 220.08 13.26 13833 14.8320 205.02 219.97 13.65 13834 14.8330 210.98 219.86 13.80 13835 14.8340 221.64 219.76 14.09 13836 14.8350 218.93 219.66 14.13 13837 14.8360 218.14 219.56 14.04 13838 14.8370 214.81 219.46 13.88 13839 14.8380 213.91 219.37 13.86 13840 14.8390 221.69 219.28 14.10 13841 14.8400 206.63 219.19 13.65 13842 14.8410 223.06 219.10 14.23 13843 14.8420 229.20 219.02 14.43 13844 14.8430 228.38 218.93 14.37 13845 14.8440 228.89 218.85 14.45 13846 14.8450 226.77 218.77 14.34 13847 14.8460 211.30 218.70 13.75 13848 14.8470 233.37 218.62 14.46 13849 14.8480 230.73 218.55 14.42 13850 14.8490 239.17 218.48 14.70 13851 14.8500 232.58 218.41 14.46 13852 14.8510 201.79 218.34 13.47 13853 14.8520 226.43 218.28 14.24 13854 14.8530 253.41 218.21 15.15 13855 14.8540 258.11 218.15 15.24 13856 14.8550 224.14 218.09 14.26 13857 14.8560 226.49 218.03 14.32 13858 14.8570 212.77 217.97 13.87 13859 14.8580 214.18 217.91 13.94 13860 14.8590 223.21 217.85 14.22 13861 14.8600 195.96 217.80 13.28 13862 14.8610 225.01 217.74 14.19 13863 14.8620 208.45 217.69 13.68 13864 14.8630 217.85 217.64 13.96 13865 14.8640 227.88 217.59 14.37 13866 14.8650 213.70 217.54 13.90 13867 14.8660 208.14 217.49 13.77 13868 14.8670 207.67 217.44 13.69 13869 14.8680 202.23 217.40 13.52 13870 14.8690 206.66 217.35 13.70 13871 14.8700 205.59 217.31 13.66 13872 14.8710 204.60 217.26 13.62 13873 14.8720 221.79 217.22 14.12 13874 14.8730 216.38 217.18 13.98 13875 14.8740 214.12 217.14 13.86 13876 14.8750 208.51 217.10 13.71 13877 14.8760 220.11 217.06 14.08 13878 14.8770 226.38 217.02 14.31 13879 14.8780 228.16 216.98 14.42 13880 14.8790 192.34 216.94 13.22 13881 14.8800 200.73 216.91 13.45 13882 14.8810 208.56 216.87 13.66 13883 14.8820 206.33 216.84 13.65 13884 14.8830 204.92 216.80 13.64 13885 14.8840 210.76 216.77 13.83 13886 14.8850 210.46 216.73 13.87 13887 14.8860 207.23 216.70 13.69 13888 14.8870 201.36 216.67 13.51 13889 14.8880 207.59 216.64 13.70 13890 14.8890 204.17 216.61 13.60 13891 14.8900 220.01 216.58 14.14 13892 14.8910 204.84 216.55 13.64 13893 14.8920 220.80 216.52 14.05 13894 14.8930 208.29 216.49 13.71 13895 14.8940 198.19 216.46 13.39 13896 14.8950 196.37 216.43 13.37 13897 14.8960 209.11 216.40 13.77 13898 14.8970 205.18 216.38 13.62 13899 14.8980 213.42 216.35 13.98 13900 14.8990 207.83 216.33 13.74 13901 14.9000 193.25 216.30 13.23 13902 14.9010 207.80 216.28 13.72 13903 14.9020 225.08 216.25 14.30 13904 14.9030 222.59 216.23 14.19 13905 14.9040 199.53 216.20 13.46 13906 14.9050 221.59 216.18 14.13 13907 14.9060 199.64 216.16 13.52 13908 14.9070 208.23 216.13 13.77 13909 14.9080 211.84 216.11 13.90 13910 14.9090 196.77 216.09 13.37 13911 14.9100 194.44 216.07 13.26 13912 14.9110 197.83 216.05 13.41 13913 14.9120 218.62 216.03 14.07 13914 14.9130 209.21 216.01 13.84 13915 14.9140 210.30 215.99 13.76 13916 14.9150 227.94 215.97 14.35 13917 14.9160 214.90 215.95 13.98 13918 14.9170 207.77 215.93 13.63 13919 14.9180 214.08 215.91 13.88 13920 14.9190 197.83 215.89 13.43 13921 14.9200 215.56 215.87 14.04 13922 14.9210 203.45 215.85 13.59 13923 14.9220 193.84 215.84 13.27 13924 14.9230 219.23 215.82 14.04 13925 14.9240 235.16 215.80 14.68 13926 14.9250 231.52 215.78 14.49 13927 14.9260 220.88 215.77 14.21 13928 14.9270 225.18 215.75 14.28 13929 14.9280 221.68 215.73 14.20 13930 14.9290 221.33 215.72 14.22 13931 14.9300 217.87 215.70 13.96 13932 14.9310 224.60 215.69 14.25 13933 14.9320 214.40 215.67 13.90 13934 14.9330 223.86 215.66 14.24 13935 14.9340 217.95 215.64 14.00 13936 14.9350 198.61 215.63 13.43 13937 14.9360 219.45 215.61 14.06 13938 14.9370 212.13 215.60 13.89 13939 14.9380 204.93 215.58 13.66 13940 14.9390 213.08 215.57 13.85 13941 14.9400 206.28 214.07 13.68 13942 14.9410 227.47 214.07 14.28 13943 14.9420 227.69 214.07 14.28 13944 14.9430 210.04 214.07 13.76 13945 14.9440 215.45 214.07 14.00 13946 14.9450 222.58 214.07 14.21 13947 14.9460 248.93 214.07 14.99 13948 14.9470 213.47 214.07 13.88 13949 14.9480 210.13 214.07 13.73 13950 14.9490 216.87 214.07 13.92 13951 14.9500 223.03 214.07 14.19 13952 14.9510 231.45 214.07 14.49 13953 14.9520 224.34 214.07 14.24 13954 14.9530 200.02 214.07 13.48 13955 14.9540 202.41 214.07 13.53 13956 14.9550 219.98 214.07 14.15 13957 14.9560 187.53 214.07 13.01 13958 14.9570 214.63 214.07 13.92 13959 14.9580 216.05 214.07 13.98 13960 14.9590 227.48 214.07 14.34 13961 14.9600 227.92 214.07 14.41 13962 14.9610 205.82 214.07 13.61 13963 14.9620 196.87 214.07 13.32 13964 14.9630 213.55 214.07 13.88 13965 14.9640 195.27 214.07 13.30 13966 14.9650 197.86 214.07 13.39 13967 14.9660 228.36 214.07 14.39 13968 14.9670 215.70 214.07 13.98 13969 14.9680 216.49 214.07 14.07 13970 14.9690 220.69 214.07 14.18 13971 14.9700 208.34 214.07 13.73 13972 14.9710 206.49 214.07 13.68 13973 14.9720 229.97 214.07 14.40 13974 14.9730 208.39 214.07 13.73 13975 14.9740 207.08 214.07 13.67 13976 14.9750 230.36 214.07 14.31 13977 14.9760 206.44 214.07 13.63 13978 14.9770 208.72 214.07 13.71 13979 14.9780 206.73 214.07 13.67 13980 14.9790 240.09 214.07 14.77 13981 14.9800 203.70 214.08 13.58 13982 14.9810 222.28 214.08 14.15 13983 14.9820 235.49 214.08 14.66 13984 14.9830 229.01 214.08 14.40 13985 14.9840 214.53 214.08 13.91 13986 14.9850 208.96 214.08 13.81 13987 14.9860 219.64 214.08 14.09 13988 14.9870 228.80 214.08 14.28 13989 14.9880 206.22 214.08 13.64 13990 14.9890 209.72 214.08 13.79 13991 14.9900 230.81 214.08 14.43 13992 14.9910 233.18 214.08 14.64 13993 14.9920 240.73 214.08 14.71 13994 14.9930 213.28 214.08 13.89 13995 14.9940 228.46 214.08 14.30 13996 14.9950 230.64 214.08 14.45 13997 14.9960 235.21 214.08 14.59 13998 14.9970 237.86 214.08 14.69 13999 14.9980 226.46 214.08 14.26 14000 14.9990 235.70 214.08 14.59 14001 15.0000 233.97 214.08 14.57 14002 15.0010 223.66 214.08 14.22 14003 15.0020 224.39 214.08 14.29 14004 15.0030 224.73 214.08 14.31 14005 15.0040 210.24 214.08 13.79 14006 15.0050 226.81 214.08 14.31 14007 15.0060 227.80 214.08 14.34 14008 15.0070 228.92 214.08 14.45 14009 15.0080 213.05 214.08 13.94 14010 15.0090 233.69 214.08 14.59 14011 15.0100 238.84 214.08 14.72 14012 15.0110 216.22 214.08 14.01 14013 15.0120 235.11 214.08 14.54 14014 15.0130 241.50 214.08 14.76 14015 15.0140 218.16 214.08 14.03 14016 15.0150 230.63 214.08 14.47 14017 15.0160 232.33 214.08 14.51 14018 15.0170 228.57 214.08 14.35 14019 15.0180 231.06 214.08 14.45 14020 15.0190 233.73 214.08 14.46 14021 15.0200 203.26 214.08 13.56 14022 15.0210 229.33 214.08 14.44 14023 15.0220 236.72 214.08 14.61 14024 15.0230 233.45 214.08 14.51 14025 15.0240 235.32 214.08 14.60 14026 15.0250 230.83 214.08 14.48 14027 15.0260 224.97 214.08 14.24 14028 15.0270 250.81 214.08 15.03 14029 15.0280 232.76 214.08 14.48 14030 15.0290 210.65 214.09 13.85 14031 15.0300 238.61 214.09 14.69 14032 15.0310 215.14 214.09 13.96 14033 15.0320 230.04 214.09 14.39 14034 15.0330 246.15 214.09 14.93 14035 15.0340 238.97 214.09 14.63 14036 15.0350 226.43 214.09 14.21 14037 15.0360 219.24 214.09 14.02 14038 15.0370 235.71 214.09 14.61 14039 15.0380 248.97 214.09 15.01 14040 15.0390 231.93 214.09 14.47 14041 15.0400 209.41 214.09 13.75 14042 15.0410 221.81 214.09 14.18 14043 15.0420 240.93 214.09 14.69 14044 15.0430 241.88 214.09 14.65 14045 15.0440 211.20 214.09 13.83 14046 15.0450 253.30 214.09 15.15 14047 15.0460 247.62 214.09 14.93 14048 15.0470 236.08 214.09 14.54 14049 15.0480 225.73 214.09 14.27 14050 15.0490 223.80 214.09 14.18 14051 15.0500 218.27 214.09 14.06 14052 15.0510 236.37 214.09 14.66 14053 15.0520 247.14 214.09 14.97 14054 15.0530 216.94 214.09 13.92 14055 15.0540 227.03 214.09 14.31 14056 15.0550 255.42 214.09 15.22 14057 15.0560 245.82 214.09 14.82 14058 15.0570 247.60 214.09 14.93 14059 15.0580 251.43 214.09 15.01 14060 15.0590 234.07 214.09 14.58 14061 15.0600 260.03 214.09 15.36 14062 15.0610 259.63 214.09 15.35 14063 15.0620 261.65 214.09 15.36 14064 15.0630 204.39 214.09 13.54 14065 15.0640 227.15 214.09 14.29 14066 15.0650 230.62 214.09 14.46 14067 15.0660 249.76 241.53 15.01 14068 15.0670 220.47 241.77 14.12 14069 15.0680 247.21 242.02 14.98 14070 15.0690 261.25 242.27 15.36 14071 15.0700 256.87 242.52 15.28 14072 15.0710 249.88 242.78 15.11 14073 15.0720 239.64 243.05 14.75 14074 15.0730 244.81 243.31 14.92 14075 15.0740 255.76 243.58 15.29 14076 15.0750 261.07 243.85 15.37 14077 15.0760 268.26 244.13 15.61 14078 15.0770 231.99 244.41 14.50 14079 15.0780 273.47 244.70 15.78 14080 15.0790 245.37 244.98 14.93 14081 15.0800 261.57 245.28 15.31 14082 15.0810 269.18 245.57 15.53 14083 15.0820 244.53 245.87 14.88 14084 15.0830 258.61 246.18 15.32 14085 15.0840 268.44 246.49 15.55 14086 15.0850 264.72 246.80 15.49 14087 15.0860 254.16 247.12 15.22 14088 15.0870 248.15 247.45 15.07 14089 15.0880 264.36 247.77 15.52 14090 15.0890 275.98 248.11 15.73 14091 15.0900 252.20 248.45 15.09 14092 15.0910 255.12 248.79 15.29 14093 15.0920 265.88 249.14 15.49 14094 15.0930 232.77 249.49 14.42 14095 15.0940 268.89 249.85 15.55 14096 15.0950 256.37 250.21 15.21 14097 15.0960 271.94 250.58 15.61 14098 15.0970 258.65 250.96 15.34 14099 15.0980 285.86 251.34 16.10 14100 15.0990 270.81 251.73 15.63 14101 15.1000 259.70 252.12 15.29 14102 15.1010 284.38 252.52 16.07 14103 15.1020 285.40 252.93 16.11 14104 15.1030 268.79 253.34 15.63 14105 15.1040 287.06 253.76 16.10 14106 15.1050 278.23 254.19 15.96 14107 15.1060 266.36 254.62 15.60 14108 15.1070 284.67 255.06 15.95 14109 15.1080 246.52 255.51 14.92 14110 15.1090 279.01 255.96 15.88 14111 15.1100 293.45 256.42 16.33 14112 15.1110 278.59 256.89 15.92 14113 15.1120 291.95 257.37 16.29 14114 15.1130 281.97 257.85 16.01 14115 15.1140 280.04 258.35 15.91 14116 15.1150 277.76 258.85 15.89 14117 15.1160 277.57 259.36 15.82 14118 15.1170 274.28 259.88 15.68 14119 15.1180 259.45 260.41 15.39 14120 15.1190 264.07 260.95 15.48 14121 15.1200 277.87 261.49 15.88 14122 15.1210 282.62 262.05 16.02 14123 15.1220 292.01 262.61 16.14 14124 15.1230 286.71 263.19 16.08 14125 15.1240 274.94 263.78 15.76 14126 15.1250 291.72 264.38 16.30 14127 15.1260 285.20 264.98 16.03 14128 15.1270 274.01 265.60 15.70 14129 15.1280 272.54 266.23 15.65 14130 15.1290 282.83 266.88 16.05 14131 15.1300 298.59 267.53 16.39 14132 15.1310 295.44 268.20 16.29 14133 15.1320 264.02 268.88 15.42 14134 15.1330 276.79 269.57 15.89 14135 15.1340 266.33 270.27 15.55 14136 15.1350 265.21 270.99 15.47 14137 15.1360 276.04 271.72 15.84 14138 15.1370 277.12 272.47 15.83 14139 15.1380 283.00 273.23 16.03 14140 15.1390 284.41 274.01 16.07 14141 15.1400 316.25 274.80 16.91 14142 15.1410 304.30 275.60 16.53 14143 15.1420 274.22 276.43 15.71 14144 15.1430 302.70 277.27 16.55 14145 15.1440 326.89 278.12 17.20 14146 15.1450 288.45 279.00 16.17 14147 15.1460 281.26 279.89 16.04 14148 15.1470 292.81 280.80 16.31 14149 15.1480 306.82 281.73 16.68 14150 15.1490 301.23 282.68 16.54 14151 15.1500 291.52 283.65 16.24 14152 15.1510 296.13 284.64 16.36 14153 15.1520 326.22 285.65 17.12 14154 15.1530 314.92 286.68 16.92 14155 15.1540 292.62 287.74 16.24 14156 15.1550 297.93 288.82 16.42 14157 15.1560 295.10 289.92 16.30 14158 15.1570 319.32 291.05 17.01 14159 15.1580 292.48 292.20 16.25 14160 15.1590 319.37 293.38 16.97 14161 15.1600 308.29 294.59 16.65 14162 15.1610 317.13 295.82 16.87 14163 15.1620 320.40 297.08 17.03 14164 15.1630 321.74 298.37 17.13 14165 15.1640 323.67 299.70 17.16 14166 15.1650 308.66 301.05 16.74 14167 15.1660 320.76 302.43 17.04 14168 15.1670 324.99 303.85 17.16 14169 15.1680 323.37 305.30 17.11 14170 15.1690 321.38 306.79 17.07 14171 15.1700 320.71 308.32 17.07 14172 15.1710 313.57 309.88 16.87 14173 15.1720 318.84 311.48 16.90 14174 15.1730 341.29 313.12 17.55 14175 15.1740 350.74 314.80 17.86 14176 15.1750 347.91 316.53 17.79 14177 15.1760 334.58 318.30 17.33 14178 15.1770 323.56 320.12 17.12 14179 15.1780 322.23 321.99 17.11 14180 15.1790 352.74 323.90 17.89 14181 15.1800 355.04 325.87 17.91 14182 15.1810 359.59 327.89 18.04 14183 15.1820 368.30 329.96 18.28 14184 15.1830 341.80 332.10 17.58 14185 15.1840 354.71 334.29 17.90 14186 15.1850 378.57 336.54 18.49 14187 15.1860 364.20 338.86 18.25 14188 15.1870 381.29 341.24 18.59 14189 15.1880 368.60 343.69 18.29 14190 15.1890 364.95 346.22 18.23 14191 15.1900 348.20 348.81 17.79 14192 15.1910 375.88 351.49 18.38 14193 15.1920 371.39 354.24 18.32 14194 15.1930 396.67 357.08 18.99 14195 15.1940 351.70 360.01 17.90 14196 15.1950 394.96 363.02 18.93 14197 15.1960 386.92 366.13 18.87 14198 15.1970 416.13 369.34 19.38 14199 15.1980 386.94 372.64 18.81 14200 15.1990 374.25 390.87 18.41 14201 15.2000 368.59 394.52 18.27 14202 15.2010 388.21 398.29 18.79 14203 15.2020 399.18 402.17 19.05 14204 15.2030 423.77 406.20 19.67 14205 15.2040 435.88 410.35 19.85 14206 15.2050 430.80 414.64 19.77 14207 15.2060 467.58 419.08 20.56 14208 15.2070 438.61 423.66 19.92 14209 15.2080 435.73 428.42 19.80 14210 15.2090 424.53 433.33 19.59 14211 15.2100 435.37 438.43 19.90 14212 15.2110 457.30 443.71 20.36 14213 15.2120 454.76 449.18 20.30 14214 15.2130 447.85 454.86 20.13 14215 15.2140 476.43 460.75 20.81 14216 15.2150 497.76 466.86 21.24 14217 15.2160 517.78 473.22 21.60 14218 15.2170 497.42 479.83 21.25 14219 15.2180 495.63 486.68 21.25 14220 15.2190 525.44 493.82 21.89 14221 15.2200 529.02 501.26 21.89 14222 15.2210 501.82 508.98 21.41 14223 15.2220 513.95 517.05 21.55 14224 15.2230 506.62 525.45 21.42 14225 15.2240 538.44 534.22 22.08 14226 15.2250 591.60 543.37 23.18 14227 15.2260 579.92 552.92 22.99 14228 15.2270 597.47 562.91 23.28 14229 15.2280 597.14 573.34 23.22 14230 15.2290 591.21 584.28 23.18 14231 15.2300 620.39 595.73 23.73 14232 15.2310 634.64 607.71 23.98 14233 15.2320 632.51 620.30 23.94 14234 15.2330 674.37 633.52 24.75 14235 15.2340 672.61 647.37 24.69 14236 15.2350 695.36 661.96 25.14 14237 15.2360 711.72 677.31 25.42 14238 15.2370 732.70 693.47 25.74 14239 15.2380 752.47 710.48 26.12 14240 15.2390 789.91 728.46 26.84 14241 15.2400 791.95 747.40 26.82 14242 15.2410 804.30 767.47 27.00 14243 15.2420 810.33 788.66 27.09 14244 15.2430 827.78 811.14 27.39 14245 15.2440 913.24 834.98 28.83 14246 15.2450 920.05 860.24 28.90 14247 15.2460 895.41 887.14 28.51 14248 15.2470 1000.34 915.71 30.11 14249 15.2480 1014.84 946.20 30.33 14250 15.2490 1024.98 978.72 30.42 14251 15.2500 1083.30 1013.47 31.33 14252 15.2510 1098.17 1050.58 31.52 14253 15.2520 1093.03 1090.40 31.50 14254 15.2530 1229.72 1133.13 33.42 14255 15.2540 1268.99 1178.97 33.89 14256 15.2550 1268.50 1228.39 33.92 14257 15.2560 1374.01 1281.58 35.29 14258 15.2570 1474.13 1339.14 36.51 14259 15.2580 1478.22 1401.42 36.64 14260 15.2590 1562.48 1468.83 37.65 14261 15.2600 1618.05 1542.18 38.27 14262 15.2610 1734.50 1621.89 39.67 14263 15.2620 1771.68 1709.00 40.06 14264 15.2630 1831.47 1804.25 40.71 14265 15.2640 2006.33 1908.46 42.63 14266 15.2650 2105.27 2023.14 43.72 14267 15.2660 2211.31 2149.45 44.78 14268 15.2670 2385.54 2288.69 46.50 14269 15.2680 2446.42 2443.09 47.01 14270 15.2690 2703.44 2614.52 49.48 14271 15.2700 2863.70 2805.02 50.97 14272 15.2710 3079.57 3018.03 52.83 14273 15.2720 3281.65 3256.50 54.59 14274 15.2730 3528.67 3523.69 56.58 14275 15.2740 3776.91 3824.88 58.49 14276 15.2750 4105.60 4164.04 61.06 14277 15.2760 4368.64 4548.05 62.88 14278 15.2770 4870.49 4982.84 66.47 14279 15.2780 5286.77 5474.68 69.20 14280 15.2790 5847.97 6032.92 72.89 14281 15.2800 6457.76 6663.48 76.45 14282 15.2810 7086.45 7375.81 80.20 14283 15.2820 8335.30 8174.48 86.90 14284 15.2830 9158.50 9059.90 91.10 14285 15.2840 10179.00 10030.70 96.11 14286 15.2850 11545.80 11071.10 102.39 14287 15.2860 13217.40 12152.20 109.58 14288 15.2870 14586.70 13225.40 115.09 14289 15.2880 16140.90 14228.40 121.09 14290 15.2890 17053.60 15076.30 124.42 14291 15.2900 17774.60 15686.80 127.06 14292 15.2910 17744.20 15987.20 126.85 14293 15.2920 17187.00 15939.40 124.81 14294 15.2930 16313.50 15549.70 121.64 14295 15.2940 15002.90 14868.10 116.52 14296 15.2950 13690.10 13969.30 111.38 14297 15.2960 12558.90 12941.90 106.70 14298 15.2970 11336.10 11860.40 101.39 14299 15.2980 10150.80 10787.60 95.86 14300 15.2990 9401.92 9765.12 92.32 14301 15.3000 8457.76 8818.91 87.48 14302 15.3010 7591.54 7956.99 82.96 14303 15.3020 6990.52 7183.39 79.53 14304 15.3030 6290.85 6495.95 75.47 14305 15.3040 5843.84 5886.15 72.76 14306 15.3050 5369.24 5347.69 69.66 14307 15.3060 4879.23 4873.48 66.48 14308 15.3070 4558.42 4454.33 64.22 14309 15.3080 4247.95 4084.72 62.05 14310 15.3090 3880.63 3757.12 59.25 14311 15.3100 3643.48 3466.67 57.45 14312 15.3110 3388.59 3208.95 55.41 14313 15.3120 3082.06 2978.91 52.86 14314 15.3130 2958.05 2773.72 51.79 14315 15.3140 2868.50 2589.59 50.93 14316 15.3150 2650.49 2424.19 48.98 14317 15.3160 2545.08 2275.47 47.94 14318 15.3170 2392.83 2140.93 46.55 14319 15.3180 2243.59 2019.13 44.97 14320 15.3190 2152.06 1908.78 44.10 14321 15.3200 2032.28 1808.22 42.91 14322 15.3210 1912.58 1716.53 41.64 14323 15.3220 1817.75 1632.88 40.50 14324 15.3230 1799.39 1556.15 40.36 14325 15.3240 1736.57 1485.76 39.67 14326 15.3250 1621.30 1421.16 38.32 14327 15.3260 1532.76 1361.56 37.28 14328 15.3270 1518.60 1306.67 37.08 14329 15.3280 1442.13 1255.87 36.10 14330 15.3290 1393.99 1208.85 35.47 14331 15.3300 1348.31 1165.36 34.90 14332 15.3310 1268.43 1124.92 33.85 14333 15.3320 1240.39 1087.40 33.48 14334 15.3330 1209.95 1052.44 33.10 14335 15.3340 1126.04 1019.88 31.96 14336 15.3350 1104.84 989.51 31.55 14337 15.3360 1079.75 961.22 31.24 14338 15.3370 1066.52 934.75 31.07 14339 15.3380 1034.36 909.99 30.62 14340 15.3390 1010.15 886.88 30.27 14341 15.3400 947.65 865.19 29.32 14342 15.3410 917.48 844.91 28.78 14343 15.3420 895.04 825.88 28.48 14344 15.3430 871.50 808.03 28.02 14345 15.3440 888.01 791.31 28.37 14346 15.3450 859.64 775.60 27.92 14347 15.3460 780.55 760.89 26.57 14348 15.3470 774.69 747.07 26.49 14349 15.3480 768.77 734.10 26.41 14350 15.3490 778.22 721.96 26.62 14351 15.3500 743.65 710.55 26.02 14352 15.3510 744.63 699.87 25.94 14353 15.3520 752.47 689.88 26.09 14354 15.3530 718.45 680.52 25.53 14355 15.3540 684.66 671.78 24.91 14356 15.3550 658.19 663.64 24.45 14357 15.3560 648.12 656.04 24.28 14358 15.3570 652.98 648.98 24.28 14359 15.3580 619.51 642.44 23.65 14360 15.3590 610.94 636.39 23.56 14361 15.3600 625.15 630.82 23.82 14362 15.3610 613.70 625.70 23.59 14363 15.3620 598.92 621.03 23.23 14364 15.3630 593.37 616.80 23.14 14365 15.3640 624.41 612.98 23.79 14366 15.3650 577.49 609.58 22.95 14367 15.3660 615.56 606.58 23.52 14368 15.3670 597.03 603.97 23.21 14369 15.3680 604.79 601.76 23.41 14370 15.3690 579.09 599.94 22.86 14371 15.3700 555.32 598.50 22.37 14372 15.3710 582.20 597.44 22.90 14373 15.3720 588.49 596.76 23.06 14374 15.3730 580.72 596.46 22.89 14375 15.3740 528.01 596.55 21.90 14376 15.3750 555.83 597.02 22.41 14377 15.3760 556.50 597.89 22.41 14378 15.3770 552.10 599.15 22.36 14379 15.3780 541.27 600.82 22.07 14380 15.3790 549.56 602.90 22.31 14381 15.3800 588.96 605.40 23.08 14382 15.3810 545.75 608.33 22.19 14383 15.3820 564.91 611.72 22.62 14384 15.3830 584.96 615.57 22.95 14385 15.3840 561.92 619.90 22.47 14386 15.3850 599.61 624.73 23.32 14387 15.3860 621.56 630.09 23.74 14388 15.3870 588.54 635.99 23.10 14389 15.3880 590.69 642.45 23.16 14390 15.3890 621.37 649.53 23.76 14391 15.3900 657.52 657.24 24.39 14392 15.3910 633.80 665.61 23.95 14393 15.3920 621.12 674.70 23.65 14394 15.3930 643.06 684.53 24.15 14395 15.3940 647.62 695.18 24.17 14396 15.3950 672.93 706.69 24.67 14397 15.3960 727.32 719.09 25.63 14398 15.3970 682.09 732.50 24.85 14399 15.3980 725.46 746.94 25.55 14400 15.3990 697.68 762.53 25.08 14401 15.4000 765.50 779.35 26.24 14402 15.4010 743.69 797.46 25.89 14403 15.4020 782.01 817.04 26.54 14404 15.4030 828.62 838.17 27.39 14405 15.4040 831.09 861.00 27.49 14406 15.4050 869.10 885.63 28.04 14407 15.4060 913.89 912.32 28.81 14408 15.4070 938.28 941.17 29.15 14409 15.4080 978.25 972.50 29.75 14410 15.4090 946.12 1006.49 29.30 14411 15.4100 1013.03 1043.36 30.25 14412 15.4110 1026.52 1083.54 30.47 14413 15.4120 1107.13 1127.25 31.66 14414 15.4130 1169.22 1175.03 32.51 14415 15.4140 1239.77 1227.17 33.55 14416 15.4150 1285.30 1284.36 34.10 14417 15.4160 1283.26 1347.11 34.10 14418 15.4170 1429.91 1416.08 35.95 14419 15.4180 1515.31 1491.92 37.11 14420 15.4190 1546.44 1575.77 37.43 14421 15.4200 1631.17 1668.52 38.43 14422 15.4210 1768.90 1771.15 40.05 14423 15.4220 1879.46 1885.35 41.25 14424 15.4230 2056.36 2012.49 43.17 14425 15.4240 2163.51 2154.09 44.25 14426 15.4250 2301.67 2312.63 45.67 14427 15.4260 2496.10 2489.86 47.50 14428 15.4270 2730.45 2688.93 49.68 14429 15.4280 2878.10 2912.43 51.19 14430 15.4290 3146.97 3163.00 53.42 14431 15.4300 3399.64 3444.80 55.51 14432 15.4310 3730.80 3760.15 58.25 14433 15.4320 4062.49 4113.19 60.67 14434 15.4330 4458.67 4505.80 63.59 14435 15.4340 4979.96 4938.21 67.21 14436 15.4350 5596.84 5410.58 71.28 14437 15.4360 6117.67 5917.30 74.52 14438 15.4370 6757.05 6447.38 78.32 14439 15.4380 7411.53 6985.98 82.05 14440 15.4390 8040.65 7507.98 85.44 14441 15.4400 8631.50 7981.20 88.47 14442 15.4410 8869.96 8371.36 89.78 14443 15.4420 9113.72 8642.24 90.91 14444 15.4430 9240.79 8765.96 91.54 14445 15.4440 8737.97 8729.27 88.95 14446 15.4450 8300.30 8536.28 86.75 14447 15.4460 7923.02 8206.94 84.75 14448 15.4470 7335.93 7774.28 81.54 14449 15.4480 6888.86 7273.20 79.02 14450 15.4490 6346.06 6738.78 75.80 14451 15.4500 5867.79 6200.35 72.96 14452 15.4510 5409.64 5676.88 69.99 14453 15.4520 4885.00 5182.88 66.52 14454 15.4530 4554.02 4725.93 64.23 14455 15.4540 4159.25 4309.86 61.44 14456 15.4550 3860.59 3933.38 59.10 14457 15.4560 3517.47 3595.52 56.49 14458 15.4570 3275.42 3294.01 54.47 14459 15.4580 3021.16 3024.63 52.34 14460 15.4590 2879.07 2784.95 51.10 14461 15.4600 2584.30 2570.96 48.41 14462 15.4610 2422.56 2380.08 46.87 14463 15.4620 2296.40 2209.85 45.65 14464 15.4630 2117.71 2057.24 43.77 14465 15.4640 1910.87 1920.64 41.61 14466 15.4650 1799.63 1797.66 40.36 14467 15.4660 1710.85 1686.90 39.29 14468 15.4670 1596.65 1587.08 37.92 14469 15.4680 1505.40 1496.58 36.92 14470 15.4690 1440.71 1414.49 36.09 14471 15.4700 1296.03 1339.97 34.25 14472 15.4710 1216.38 1271.94 33.19 14473 15.4720 1289.86 1209.81 34.15 14474 15.4730 1180.90 1153.02 32.72 14475 15.4740 1112.82 1100.84 31.76 14476 15.4750 1023.33 1052.87 30.45 14477 15.4760 992.51 1008.76 30.02 14478 15.4770 1006.97 967.98 30.18 14479 15.4780 922.71 930.34 28.83 14480 15.4790 878.04 895.41 28.18 14481 15.4800 888.45 863.05 28.28 14482 15.4810 863.23 832.93 27.96 14483 15.4820 870.35 804.89 28.11 14484 15.4830 832.30 778.78 27.46 14485 15.4840 831.98 754.36 27.50 14486 15.4850 804.10 731.53 26.99 14487 15.4860 774.98 710.19 26.52 14488 15.4870 726.82 690.14 25.64 14489 15.4880 702.60 671.31 25.24 14490 15.4890 733.44 653.61 25.73 14491 15.4900 726.05 636.98 25.62 14492 15.4910 736.97 621.29 25.80 14493 15.4920 695.13 606.51 25.13 14494 15.4930 679.56 592.52 24.84 14495 15.4940 669.47 579.30 24.61 14496 15.4950 642.45 566.81 24.14 14497 15.4960 648.42 554.96 24.17 14498 15.4970 618.42 543.74 23.66 14499 15.4980 608.83 533.07 23.40 14500 15.4990 638.73 522.96 24.06 14501 15.5000 646.99 513.32 24.22 14502 15.5010 617.44 504.16 23.69 14503 15.5020 589.51 495.43 23.13 14504 15.5030 550.50 487.13 22.23 14505 15.5040 547.22 479.20 22.27 14506 15.5050 542.73 471.63 22.14 14507 15.5060 587.48 464.41 23.06 14508 15.5070 567.73 457.50 22.73 14509 15.5080 578.98 450.89 22.91 14510 15.5090 535.30 444.58 22.03 14511 15.5100 531.81 438.52 21.98 14512 15.5110 528.13 432.73 21.95 14513 15.5120 532.05 427.17 21.99 14514 15.5130 511.68 421.85 21.60 14515 15.5140 514.75 416.73 21.59 14516 15.5150 494.19 411.82 21.05 14517 15.5160 482.90 407.11 20.95 14518 15.5170 503.86 402.58 21.36 14519 15.5180 482.66 371.09 20.92 14520 15.5190 477.53 367.15 20.80 14521 15.5200 477.89 363.35 20.80 14522 15.5210 481.31 359.71 20.86 14523 15.5220 475.93 356.21 20.76 14524 15.5230 481.32 352.85 20.87 14525 15.5240 461.68 349.62 20.39 14526 15.5250 447.33 346.52 20.19 14527 15.5260 457.23 343.54 20.49 14528 15.5270 427.40 340.67 19.82 14529 15.5280 431.72 337.92 19.78 14530 15.5290 410.17 335.28 19.30 14531 15.5300 386.11 332.75 18.66 14532 15.5310 393.31 330.32 18.85 14533 15.5320 399.48 327.99 19.02 14534 15.5330 390.90 325.77 18.82 14535 15.5340 401.43 323.64 19.00 14536 15.5350 387.05 321.62 18.68 14537 15.5360 392.06 319.69 18.78 14538 15.5370 383.70 317.86 18.67 14539 15.5380 387.63 316.13 18.77 14540 15.5390 380.81 314.51 18.57 14541 15.5400 393.67 312.99 18.86 14542 15.5410 371.83 311.58 18.32 14543 15.5420 363.54 310.28 18.18 14544 15.5430 362.89 309.10 18.10 14545 15.5440 338.40 308.04 17.59 14546 15.5450 342.33 307.10 17.61 14547 15.5460 342.57 306.28 17.57 14548 15.5470 340.43 305.58 17.56 14549 15.5480 354.48 305.01 17.95 14550 15.5490 336.90 304.53 17.48 14551 15.5500 347.88 304.13 17.71 14552 15.5510 358.58 303.78 17.99 14553 15.5520 356.41 303.42 18.03 14554 15.5530 378.62 303.00 18.50 14555 15.5540 358.80 302.44 18.13 14556 15.5550 366.90 301.69 18.26 14557 15.5560 333.39 300.69 17.42 14558 15.5570 312.02 299.42 16.72 14559 15.5580 340.82 297.88 17.50 14560 15.5590 331.88 296.11 17.37 14561 15.5600 344.89 294.17 17.63 14562 15.5610 350.93 292.12 17.90 14563 15.5620 311.93 290.03 16.82 14564 15.5630 313.61 287.94 16.74 14565 15.5640 298.66 285.89 16.41 14566 15.5650 318.07 283.93 16.94 14567 15.5660 286.45 282.05 16.07 14568 15.5670 314.21 280.26 16.85 14569 15.5680 306.63 278.58 16.72 14570 15.5690 320.52 276.99 17.04 14571 15.5700 325.23 275.50 17.15 14572 15.5710 312.93 274.08 16.73 14573 15.5720 319.21 272.75 17.02 14574 15.5730 309.49 271.49 16.78 14575 15.5740 318.20 270.30 17.00 14576 15.5750 306.12 269.16 16.65 14577 15.5760 324.16 268.08 17.19 14578 15.5770 288.29 267.05 16.17 14579 15.5780 302.86 266.06 16.57 14580 15.5790 272.65 265.12 15.71 14581 15.5800 290.89 264.21 16.32 14582 15.5810 280.16 263.34 15.83 14583 15.5820 300.30 262.50 16.42 14584 15.5830 313.41 261.69 16.81 14585 15.5840 311.02 260.91 16.76 14586 15.5850 304.11 260.15 16.62 14587 15.5860 324.50 259.42 17.17 14588 15.5870 285.50 258.71 16.13 14589 15.5880 272.18 258.03 15.69 14590 15.5890 262.13 257.36 15.29 14591 15.5900 252.89 256.71 15.13 14592 15.5910 258.15 256.08 15.30 14593 15.5920 244.59 255.46 14.90 14594 15.5930 252.38 254.87 15.07 14595 15.5940 274.29 254.29 15.74 14596 15.5950 276.05 253.72 15.79 14597 15.5960 273.24 253.16 15.74 14598 15.5970 268.67 252.62 15.59 14599 15.5980 264.30 252.10 15.49 14600 15.5990 263.86 251.58 15.45 14601 15.6000 268.85 251.08 15.55 14602 15.6010 264.78 250.59 15.50 14603 15.6020 277.77 250.10 15.80 14604 15.6030 280.11 249.63 15.91 14605 15.6040 273.36 249.17 15.73 14606 15.6050 250.71 248.72 15.07 14607 15.6060 273.64 248.28 15.71 14608 15.6070 274.54 247.85 15.77 14609 15.6080 256.87 247.43 15.30 14610 15.6090 263.22 247.01 15.40 14611 15.6100 256.94 246.60 15.20 14612 15.6110 278.83 246.21 15.79 14613 15.6120 259.66 245.82 15.35 14614 15.6130 250.01 245.43 14.94 14615 15.6140 264.14 245.06 15.48 14616 15.6150 268.56 244.69 15.62 14617 15.6160 265.89 244.33 15.52 14618 15.6170 264.82 243.97 15.52 14619 15.6180 272.50 243.62 15.60 14620 15.6190 264.44 243.28 15.45 14621 15.6200 265.82 242.95 15.51 14622 15.6210 254.79 242.62 15.16 14623 15.6220 256.81 242.29 15.27 14624 15.6230 255.76 241.97 15.21 14625 15.6240 245.76 241.66 15.01 14626 15.6250 248.30 241.35 15.05 14627 15.6260 251.62 241.05 15.13 14628 15.6270 255.46 240.76 15.17 14629 15.6280 271.33 267.90 15.67 14630 15.6290 251.28 267.87 15.05 14631 15.6300 252.36 267.85 15.11 14632 15.6310 260.06 267.84 15.34 14633 15.6320 245.33 267.83 14.87 14634 15.6330 245.73 267.84 14.87 14635 15.6340 227.36 267.85 14.32 14636 15.6350 254.93 267.87 15.15 14637 15.6360 243.61 267.90 14.73 14638 15.6370 255.84 267.94 15.21 14639 15.6380 261.20 267.98 15.41 14640 15.6390 238.89 268.04 14.71 14641 15.6400 236.43 268.10 14.57 14642 15.6410 226.26 268.17 14.23 14643 15.6420 268.63 268.25 15.56 14644 15.6430 256.41 268.34 15.23 14645 15.6440 226.03 268.43 14.35 14646 15.6450 252.93 268.54 15.20 14647 15.6460 255.05 268.65 15.19 14648 15.6470 239.18 268.77 14.73 14649 15.6480 254.39 268.90 15.16 14650 15.6490 254.15 269.04 15.13 14651 15.6500 233.65 269.18 14.60 14652 15.6510 256.28 269.34 15.09 14653 15.6520 261.70 269.50 15.38 14654 15.6530 258.68 269.67 15.30 14655 15.6540 253.25 269.85 15.11 14656 15.6550 248.44 270.04 14.92 14657 15.6560 270.71 270.24 15.64 14658 15.6570 256.43 270.45 15.20 14659 15.6580 249.20 270.66 14.98 14660 15.6590 254.30 270.89 15.15 14661 15.6600 257.61 271.12 15.23 14662 15.6610 249.57 271.36 15.01 14663 15.6620 267.71 271.62 15.59 14664 15.6630 262.91 271.88 15.32 14665 15.6640 265.93 272.15 15.50 14666 15.6650 267.07 272.43 15.62 14667 15.6660 252.41 272.73 15.10 14668 15.6670 258.45 273.03 15.31 14669 15.6680 243.83 273.34 14.84 14670 15.6690 227.86 273.66 14.41 14671 15.6700 257.26 274.00 15.25 14672 15.6710 259.51 274.34 15.30 14673 15.6720 259.07 274.70 15.30 14674 15.6730 281.53 275.06 15.90 14675 15.6740 264.59 275.44 15.46 14676 15.6750 270.90 275.82 15.67 14677 15.6760 244.05 276.22 14.87 14678 15.6770 243.95 276.63 14.86 14679 15.6780 262.54 277.06 15.34 14680 15.6790 257.41 277.49 15.25 14681 15.6800 267.97 277.94 15.67 14682 15.6810 264.76 278.40 15.52 14683 15.6820 259.57 278.87 15.32 14684 15.6830 250.48 279.36 15.03 14685 15.6840 243.42 279.86 14.85 14686 15.6850 274.26 280.37 15.68 14687 15.6860 254.17 280.89 15.15 14688 15.6870 247.02 281.43 14.98 14689 15.6880 243.32 281.99 14.90 14690 15.6890 242.70 267.92 14.74 14691 15.6900 235.17 268.62 14.63 14692 15.6910 250.34 269.34 15.06 14693 15.6920 271.78 270.08 15.67 14694 15.6930 249.28 270.82 15.03 14695 15.6940 266.98 271.58 15.53 14696 15.6950 296.38 272.36 16.42 14697 15.6960 271.06 273.15 15.71 14698 15.6970 261.53 273.96 15.35 14699 15.6980 281.77 274.79 15.96 14700 15.6990 255.24 275.63 15.19 14701 15.7000 263.38 276.49 15.38 14702 15.7010 292.96 277.37 16.28 14703 15.7020 255.56 278.27 15.19 14704 15.7030 264.12 279.19 15.48 14705 15.7040 275.03 280.13 15.80 14706 15.7050 262.64 281.09 15.38 14707 15.7060 283.79 282.07 16.01 14708 15.7070 269.57 283.07 15.62 14709 15.7080 267.88 284.09 15.60 14710 15.7090 292.32 285.14 16.22 14711 15.7100 294.82 286.21 16.32 14712 15.7110 289.62 287.31 16.11 14713 15.7120 262.19 288.43 15.40 14714 15.7130 269.77 289.57 15.67 14715 15.7140 261.21 290.75 15.36 14716 15.7150 271.75 291.95 15.69 14717 15.7160 283.16 293.18 16.04 14718 15.7170 271.47 294.44 15.72 14719 15.7180 252.68 295.73 15.18 14720 15.7190 301.09 297.05 16.44 14721 15.7200 300.06 298.40 16.52 14722 15.7210 289.49 299.79 16.18 14723 15.7220 303.79 301.21 16.63 14724 15.7230 316.86 302.67 16.88 14725 15.7240 298.49 304.16 16.37 14726 15.7250 293.85 305.69 16.31 14727 15.7260 298.07 307.26 16.40 14728 15.7270 308.30 308.88 16.76 14729 15.7280 320.62 310.53 17.05 14730 15.7290 296.65 312.23 16.40 14731 15.7300 304.51 313.97 16.63 14732 15.7310 282.74 315.76 15.97 14733 15.7320 301.16 317.60 16.58 14734 15.7330 338.35 319.49 17.50 14735 15.7340 324.55 321.43 17.17 14736 15.7350 314.79 323.43 16.89 14737 15.7360 325.63 325.48 17.15 14738 15.7370 321.21 327.60 17.10 14739 15.7380 338.88 329.77 17.54 14740 15.7390 315.69 332.00 16.89 14741 15.7400 316.00 334.30 16.85 14742 15.7410 332.51 336.67 17.39 14743 15.7420 306.30 339.11 16.66 14744 15.7430 325.71 341.62 17.14 14745 15.7440 388.51 344.21 18.72 14746 15.7450 364.00 346.88 18.24 14747 15.7460 389.49 349.63 18.76 14748 15.7470 365.56 352.46 18.22 14749 15.7480 358.77 355.39 18.08 14750 15.7490 342.48 358.41 17.63 14751 15.7500 368.87 361.53 18.26 14752 15.7510 365.18 364.75 18.20 14753 15.7520 369.16 368.07 18.30 14754 15.7530 370.31 371.51 18.35 14755 15.7540 387.88 375.07 18.72 14756 15.7550 387.82 378.74 18.77 14757 15.7560 363.08 382.55 18.11 14758 15.7570 378.20 386.49 18.52 14759 15.7580 382.19 390.56 18.61 14760 15.7590 411.91 394.78 19.28 14761 15.7600 377.37 399.16 18.47 14762 15.7610 377.95 403.69 18.49 14763 15.7620 426.09 408.39 19.63 14764 15.7630 424.55 413.27 19.68 14765 15.7640 429.11 418.33 19.67 14766 15.7650 412.49 423.60 19.27 14767 15.7660 451.81 429.05 20.20 14768 15.7670 431.84 434.74 19.73 14769 15.7680 440.29 440.64 20.04 14770 15.7690 458.96 446.79 20.40 14771 15.7700 461.59 453.19 20.41 14772 15.7710 476.62 459.85 20.70 14773 15.7720 524.28 466.80 21.80 14774 15.7730 494.56 474.05 21.08 14775 15.7740 502.77 481.61 21.36 14776 15.7750 508.38 489.50 21.42 14777 15.7760 544.53 497.75 22.23 14778 15.7770 515.37 506.37 21.56 14779 15.7780 534.91 515.38 22.02 14780 15.7790 544.97 524.82 22.19 14781 15.7800 566.13 534.69 22.66 14782 15.7810 602.30 545.06 23.30 14783 15.7820 580.77 555.91 22.93 14784 15.7830 626.16 567.33 23.80 14785 15.7840 620.14 579.32 23.72 14786 15.7850 626.64 591.90 23.84 14787 15.7860 655.15 605.16 24.34 14788 15.7870 705.41 619.13 25.31 14789 15.7880 680.27 633.83 24.86 14790 15.7890 687.16 649.36 25.00 14791 15.7900 704.35 665.77 25.32 14792 15.7910 756.44 683.08 26.14 14793 15.7920 799.07 701.42 26.92 14794 15.7930 819.92 720.85 27.24 14795 15.7940 805.86 741.42 27.07 14796 15.7950 823.22 763.28 27.34 14797 15.7960 884.92 786.48 28.34 14798 15.7970 924.49 811.21 28.96 14799 15.7980 947.73 837.55 29.29 14800 15.7990 952.97 865.59 29.41 14801 15.8000 1005.11 895.60 30.13 14802 15.8010 1011.74 927.63 30.25 14803 15.8020 1012.68 962.01 30.31 14804 15.8030 1076.64 998.88 31.20 14805 15.8040 1131.83 1038.42 31.93 14806 15.8050 1174.00 1081.05 32.65 14807 15.8060 1211.85 1127.00 33.17 14808 15.8070 1263.72 1176.54 33.81 14809 15.8080 1311.60 1230.21 34.51 14810 15.8090 1387.75 1288.39 35.53 14811 15.8100 1455.14 1351.59 36.23 14812 15.8110 1483.96 1420.24 36.64 14813 15.8120 1613.63 1495.21 38.31 14814 15.8130 1629.26 1577.05 38.39 14815 15.8140 1723.54 1666.88 39.53 14816 15.8150 1811.05 1765.38 40.47 14817 15.8160 1895.60 1874.03 41.40 14818 15.8170 2016.47 1994.01 42.63 14819 15.8180 2111.84 2126.62 43.70 14820 15.8190 2212.03 2274.12 44.82 14821 15.8200 2383.31 2438.10 46.43 14822 15.8210 2556.83 2621.57 48.22 14823 15.8220 2721.15 2827.15 49.67 14824 15.8230 2957.19 3058.21 51.78 14825 15.8240 3088.19 3318.23 52.90 14826 15.8250 3322.68 3612.71 54.85 14827 15.8260 3587.21 3946.61 56.98 14828 15.8270 3879.81 4325.45 59.31 14829 15.8280 4243.86 4757.61 61.95 14830 15.8290 4501.01 5250.50 63.88 14831 15.8300 5097.83 5811.83 67.99 14832 15.8310 5773.66 6452.63 72.42 14833 15.8320 6283.65 7179.46 75.52 14834 15.8330 6922.86 8001.92 79.20 14835 15.8340 7787.48 8920.43 84.09 14836 15.8350 8828.18 9934.20 89.50 14837 15.8360 10022.80 11026.00 95.42 14838 15.8370 11561.70 12160.90 102.33 14839 15.8380 13078.20 13287.80 108.94 14840 15.8390 14562.70 14326.20 114.98 14841 15.8400 15875.10 15178.50 120.11 14842 15.8410 16513.50 15749.90 122.53 14843 15.8420 16503.30 15963.30 122.39 14844 15.8430 16217.70 15788.80 121.39 14845 15.8440 15424.10 15250.80 118.23 14846 15.8450 14027.60 14421.20 112.74 14847 15.8460 12812.90 13398.70 107.70 14848 15.8470 11702.70 12276.80 103.01 14849 15.8480 10411.30 11140.00 97.16 14850 15.8490 9362.90 10041.80 92.08 14851 15.8500 8543.66 9019.13 87.96 14852 15.8510 7647.85 8090.80 83.18 14853 15.8520 6842.94 7258.51 78.68 14854 15.8530 6285.01 6522.40 75.41 14855 15.8540 5740.50 5873.13 72.15 14856 15.8550 5239.96 5303.36 68.87 14857 15.8560 4810.25 4804.75 65.98 14858 15.8570 4362.75 4366.80 62.78 14859 15.8580 3973.56 3982.35 59.98 14860 15.8590 3664.72 3644.20 57.59 14861 15.8600 3363.49 3346.53 55.20 14862 15.8610 3095.34 3082.86 52.97 14863 15.8620 2891.70 2849.05 51.13 14864 15.8630 2735.83 2641.42 49.81 14865 15.8640 2566.28 2455.85 48.23 14866 15.8650 2453.43 2290.05 47.16 14867 15.8660 2213.08 2140.95 44.83 14868 15.8670 2100.19 2006.94 43.60 14869 15.8680 2028.81 1885.73 42.82 14870 15.8690 1886.52 1775.99 41.32 14871 15.8700 1805.76 1676.54 40.40 14872 15.8710 1728.51 1585.86 39.52 14873 15.8720 1640.31 1503.12 38.47 14874 15.8730 1569.88 1427.59 37.74 14875 15.8740 1511.02 1358.22 37.02 14876 15.8750 1428.38 1294.50 35.91 14877 15.8760 1377.48 1235.94 35.27 14878 15.8770 1291.40 1181.83 34.17 14879 15.8780 1238.65 1131.82 33.53 14880 15.8790 1192.82 1085.59 32.89 14881 15.8800 1097.78 1042.64 31.49 14882 15.8810 1057.27 1002.80 30.95 14883 15.8820 1079.62 965.67 31.28 14884 15.8830 1015.63 931.05 30.31 14885 15.8840 969.94 898.79 29.65 14886 15.8850 966.04 868.58 29.68 14887 15.8860 933.26 840.35 29.10 14888 15.8870 902.98 813.84 28.58 14889 15.8880 854.11 788.96 27.78 14890 15.8890 781.46 765.61 26.60 14891 15.8900 784.42 743.61 26.58 14892 15.8910 781.06 722.89 26.59 14893 15.8920 753.22 703.35 26.14 14894 15.8930 768.19 684.93 26.36 14895 15.8940 759.87 667.49 26.27 14896 15.8950 685.20 651.00 24.93 14897 15.8960 656.11 635.41 24.43 14898 15.8970 686.13 620.60 24.91 14899 15.8980 618.11 606.59 23.71 14900 15.8990 653.53 593.25 24.33 14901 15.9000 631.20 580.60 23.90 14902 15.9010 645.58 568.55 24.21 14903 15.9020 587.57 557.09 23.07 14904 15.9030 550.78 546.18 22.39 14905 15.9040 566.95 535.76 22.63 14906 15.9050 547.59 525.84 22.27 14907 15.9060 570.58 516.36 22.72 14908 15.9070 522.79 507.30 21.72 14909 15.9080 543.16 498.63 22.20 14910 15.9090 516.11 490.36 21.61 14911 15.9100 490.91 482.43 21.09 14912 15.9110 480.75 474.83 20.86 14913 15.9120 476.03 467.57 20.73 14914 15.9130 474.46 460.59 20.77 14915 15.9140 471.05 453.90 20.66 14916 15.9150 489.73 447.47 21.05 14917 15.9160 432.71 441.30 19.74 14918 15.9170 448.39 435.37 20.12 14919 15.9180 440.14 429.67 19.97 14920 15.9190 462.62 424.19 20.42 14921 15.9200 434.58 419.80 19.79 14922 15.9210 423.22 414.72 19.54 14923 15.9220 434.07 409.84 19.84 14924 15.9230 412.45 405.13 19.33 14925 15.9240 392.20 400.58 18.87 14926 15.9250 399.98 396.21 19.03 14927 15.9260 414.08 391.98 19.33 14928 15.9270 387.28 387.90 18.72 14929 15.9280 377.34 383.95 18.53 14930 15.9290 408.27 380.15 19.21 14931 15.9300 366.30 376.47 18.22 14932 15.9310 366.68 372.92 18.25 14933 15.9320 376.39 369.48 18.47 14934 15.9330 368.01 366.15 18.21 14935 15.9340 354.13 362.93 17.86 14936 15.9350 361.49 359.81 18.12 14937 15.9360 355.80 356.80 18.01 14938 15.9370 355.40 353.87 17.91 14939 15.9380 340.31 351.04 17.52 14940 15.9390 307.97 348.29 16.68 14941 15.9400 327.07 345.63 17.16 14942 15.9410 329.86 343.04 17.30 14943 15.9420 339.15 340.54 17.52 14944 15.9430 320.01 338.10 17.06 14945 15.9440 317.65 335.74 16.95 14946 15.9450 294.26 333.45 16.34 14947 15.9460 296.16 331.22 16.38 14948 15.9470 326.58 329.06 17.17 14949 15.9480 308.26 326.96 16.68 14950 15.9490 289.81 324.91 16.23 14951 15.9500 291.90 322.93 16.25 14952 15.9510 297.57 320.99 16.38 14953 15.9520 288.39 319.12 16.15 14954 15.9530 269.01 317.29 15.65 14955 15.9540 280.55 315.51 15.90 14956 15.9550 293.38 313.78 16.33 14957 15.9560 273.81 312.10 15.82 14958 15.9570 260.60 310.45 15.43 14959 15.9580 297.05 308.86 16.34 14960 15.9590 266.53 307.30 15.51 14961 15.9600 278.68 305.79 15.82 14962 15.9610 290.56 304.31 16.13 14963 15.9620 281.64 302.87 15.89 14964 15.9630 283.55 301.47 15.99 14965 15.9640 308.08 300.11 16.67 14966 15.9650 265.49 298.78 15.59 14967 15.9660 260.39 297.48 15.46 14968 15.9670 269.43 296.22 15.60 14969 15.9680 279.49 294.99 15.93 14970 15.9690 269.19 293.79 15.68 14971 15.9700 261.70 292.62 15.40 14972 15.9710 272.43 291.48 15.63 14973 15.9720 282.67 290.38 15.99 14974 15.9730 273.59 289.30 15.72 14975 15.9740 268.01 288.24 15.62 14976 15.9750 253.61 287.22 15.11 14977 15.9760 250.28 286.23 15.06 14978 15.9770 271.19 285.26 15.63 14979 15.9780 269.07 284.33 15.62 14980 15.9790 266.06 283.42 15.55 14981 15.9800 255.79 282.54 15.17 14982 15.9810 253.74 281.68 15.11 14983 15.9820 236.37 280.86 14.60 14984 15.9830 238.46 280.06 14.62 14985 15.9840 274.22 279.29 15.66 14986 15.9850 249.06 278.55 14.98 14987 15.9860 268.85 277.83 15.56 14988 15.9870 292.00 277.12 16.31 14989 15.9880 279.87 276.44 15.96 14990 15.9890 265.45 275.75 15.47 14991 15.9900 251.07 275.07 15.00 14992 15.9910 273.51 274.38 15.75 14993 15.9920 271.81 273.67 15.72 14994 15.9930 269.37 272.94 15.53 14995 15.9940 243.67 272.20 14.85 14996 15.9950 244.58 271.45 14.89 14997 15.9960 240.74 270.69 14.78 14998 15.9970 266.34 269.94 15.52 14999 15.9980 271.74 269.20 15.69 15000 15.9990 243.71 268.47 14.11 15001 16.0000 239.54 267.76 13.91 15002 16.0010 256.97 267.07 14.36 15003 16.0020 255.46 266.39 14.46 15004 16.0030 267.87 265.74 14.76 15005 16.0040 238.36 265.11 13.96 15006 16.0050 243.82 264.50 14.14 15007 16.0060 235.57 263.90 13.89 15008 16.0070 257.86 263.33 14.48 15009 16.0080 253.82 262.77 14.41 15010 16.0090 236.17 262.22 13.83 15011 16.0100 260.36 261.69 14.54 15012 16.0110 249.61 261.17 14.24 15013 16.0120 264.02 260.67 14.68 15014 16.0130 264.84 260.17 14.73 15015 16.0140 245.04 259.69 14.17 15016 16.0150 254.82 259.23 14.41 15017 16.0160 265.56 258.77 14.74 15018 16.0170 251.87 258.32 14.34 15019 16.0180 248.06 257.89 14.22 15020 16.0190 236.69 257.46 13.85 15021 16.0200 232.84 257.05 13.72 15022 16.0210 253.26 256.64 14.32 15023 16.0220 255.56 256.24 14.42 15024 16.0230 239.56 255.85 14.00 15025 16.0240 266.78 255.48 14.74 15026 16.0250 246.51 255.10 14.21 15027 16.0260 240.52 254.74 14.04 15028 16.0270 243.43 254.39 14.16 15029 16.0280 234.58 254.04 13.87 15030 16.0290 241.90 253.71 14.08 15031 16.0300 237.27 253.38 13.87 15032 16.0310 250.11 253.06 14.29 15033 16.0320 248.87 252.74 14.33 15034 16.0330 236.18 252.44 13.92 15035 16.0340 252.21 252.14 14.37 15036 16.0350 240.21 251.85 14.01 15037 16.0360 233.32 251.57 13.84 15038 16.0370 248.61 251.29 14.26 15039 16.0380 256.93 251.02 14.49 15040 16.0390 254.12 250.76 14.38 15041 16.0400 250.11 250.50 14.26 15042 16.0410 238.55 250.26 13.88 15043 16.0420 239.98 250.01 13.99 15044 16.0430 241.31 249.78 14.03 15045 16.0440 233.73 249.55 13.76 15046 16.0450 221.74 249.34 13.45 15047 16.0460 237.95 249.12 13.91 15048 16.0470 243.20 248.92 14.06 15049 16.0480 217.57 248.72 13.33 15050 16.0490 236.24 248.53 13.86 15051 16.0500 232.79 248.35 13.82 15052 16.0510 237.57 248.17 13.95 15053 16.0520 250.45 248.00 14.26 15054 16.0530 255.76 247.84 14.44 15055 16.0540 246.62 247.68 14.13 15056 16.0550 231.22 247.53 13.79 15057 16.0560 215.58 247.39 13.28 15058 16.0570 221.72 220.05 13.46 15059 16.0580 217.35 220.18 13.36 15060 16.0590 231.69 220.30 13.69 15061 16.0600 246.84 220.44 14.14 15062 16.0610 245.13 220.58 14.13 15063 16.0620 244.30 220.72 14.11 15064 16.0630 251.07 220.87 14.33 15065 16.0640 244.46 221.03 14.15 15066 16.0650 247.38 221.19 14.23 15067 16.0660 229.04 221.36 13.71 15068 16.0670 252.38 221.53 14.35 15069 16.0680 256.74 221.71 14.45 15070 16.0690 241.74 221.90 14.02 15071 16.0700 236.59 222.09 13.93 15072 16.0710 245.91 222.29 14.16 15073 16.0720 251.09 224.02 14.34 15074 16.0730 226.95 224.25 13.64 15075 16.0740 224.82 224.49 13.60 15076 16.0750 231.51 224.74 13.72 15077 16.0760 235.45 224.99 13.91 15078 16.0770 238.51 225.26 13.94 15079 16.0780 249.11 225.54 14.22 15080 16.0790 238.70 225.84 13.95 15081 16.0800 228.02 226.14 13.64 15082 16.0810 257.42 226.46 14.50 15083 16.0820 253.27 226.79 14.39 15084 16.0830 243.40 227.13 14.17 15085 16.0840 251.42 227.50 14.31 15086 16.0850 237.23 227.88 13.88 15087 16.0860 264.81 228.27 14.69 15088 16.0870 266.76 228.69 14.81 15089 16.0880 265.42 229.12 14.78 15090 16.0890 274.78 229.58 15.03 15091 16.0900 268.48 230.06 14.90 15092 16.0910 277.46 230.57 15.02 15093 16.0920 257.60 231.10 14.55 15094 16.0930 237.17 231.66 13.90 15095 16.0940 255.35 232.25 14.41 15096 16.0950 263.99 232.87 14.69 15097 16.0960 267.50 233.52 14.79 15098 16.0970 265.87 234.22 14.69 15099 16.0980 273.15 234.95 14.92 15100 16.0990 276.94 235.73 15.04 15101 16.1000 289.32 236.55 15.32 15102 16.1010 293.64 237.43 15.51 15103 16.1020 282.35 238.36 15.23 15104 16.1030 290.82 239.35 15.40 15105 16.1040 285.74 240.41 15.27 15106 16.1050 307.64 241.53 15.86 15107 16.1060 279.51 242.74 15.06 15108 16.1070 289.34 244.03 15.32 15109 16.1080 285.23 245.41 15.26 15110 16.1090 276.18 246.89 15.03 15111 16.1100 307.39 248.49 15.81 15112 16.1110 330.76 250.20 16.42 15113 16.1120 324.19 252.05 16.28 15114 16.1130 298.79 254.06 15.61 15115 16.1140 316.44 256.23 16.07 15116 16.1150 311.66 258.58 15.95 15117 16.1160 331.76 261.13 16.44 15118 16.1170 321.11 263.93 16.20 15119 16.1180 339.43 266.97 16.69 15120 16.1190 361.55 270.29 17.26 15121 16.1200 339.76 273.96 16.68 15122 16.1210 343.05 277.98 16.68 15123 16.1220 340.05 282.40 16.68 15124 16.1230 333.44 287.31 16.51 15125 16.1240 372.65 292.75 17.44 15126 16.1250 359.35 298.78 17.21 15127 16.1260 362.93 305.52 17.19 15128 16.1270 370.78 313.06 17.34 15129 16.1280 385.35 321.49 17.69 15130 16.1290 376.35 330.98 17.53 15131 16.1300 390.01 341.65 17.81 15132 16.1310 375.51 353.74 17.51 15133 16.1320 392.51 367.38 17.87 15134 16.1330 383.91 382.81 17.70 15135 16.1340 390.51 400.35 17.80 15136 16.1350 412.32 420.14 18.35 15137 16.1360 455.09 442.46 19.28 15138 16.1370 489.35 467.58 19.99 15139 16.1380 504.12 495.58 20.36 15140 16.1390 537.55 526.32 20.96 15141 16.1400 550.33 559.58 21.23 15142 16.1410 551.04 594.57 21.21 15143 16.1420 627.09 629.90 22.63 15144 16.1430 657.02 663.80 23.19 15145 16.1440 677.62 693.65 23.59 15146 16.1450 724.48 716.79 24.38 15147 16.1460 785.66 730.60 25.37 15148 16.1470 756.45 733.39 24.93 15149 16.1480 694.90 724.82 23.85 15150 16.1490 672.30 705.96 23.46 15151 16.1500 660.04 679.08 23.23 15152 16.1510 595.96 646.89 22.09 15153 16.1520 584.25 611.95 21.82 15154 16.1530 535.04 576.70 20.87 15155 16.1540 498.05 542.60 20.13 15156 16.1550 482.99 510.57 19.90 15157 16.1560 481.93 481.33 19.86 15158 16.1570 443.55 454.90 19.05 15159 16.1580 419.96 431.30 18.52 15160 16.1590 419.03 410.39 18.50 15161 16.1600 371.36 391.88 17.37 15162 16.1610 372.42 375.56 17.46 15163 16.1620 361.88 361.13 17.17 15164 16.1630 345.76 348.40 16.74 15165 16.1640 349.00 337.16 16.88 15166 16.1650 327.68 327.18 16.32 15167 16.1660 328.77 318.32 16.34 15168 16.1670 313.88 310.45 16.00 15169 16.1680 303.56 303.43 15.77 15170 16.1690 320.68 300.82 16.11 15171 16.1700 289.05 295.21 15.36 15172 16.1710 297.54 290.17 15.61 15173 16.1720 285.96 285.61 15.27 15174 16.1730 291.95 281.51 15.44 15175 16.1740 265.68 277.80 14.74 15176 16.1750 253.14 274.42 14.42 15177 16.1760 282.05 271.35 15.18 15178 16.1770 278.90 268.55 15.02 15179 16.1780 269.45 266.00 14.84 15180 16.1790 266.40 263.66 14.76 15181 16.1800 263.62 261.52 14.68 15182 16.1810 271.69 259.55 14.85 15183 16.1820 281.51 257.75 15.18 15184 16.1830 251.17 256.08 14.30 15185 16.1840 259.83 254.55 14.55 15186 16.1850 240.88 253.14 14.04 15187 16.1860 254.93 251.83 14.38 15188 16.1870 260.13 250.62 14.57 15189 16.1880 253.32 249.51 14.40 15190 16.1890 257.18 248.47 14.51 15191 16.1900 261.67 247.51 14.65 15192 16.1910 241.90 246.62 14.07 15193 16.1920 236.16 245.79 13.88 15194 16.1930 237.03 245.03 13.91 15195 16.1940 250.63 244.32 14.29 15196 16.1950 263.28 243.65 14.71 15197 16.1960 234.68 243.04 13.89 15198 16.1970 257.87 242.47 14.45 15199 16.1980 250.81 241.94 14.30 15200 16.1990 262.79 241.45 14.65 15201 16.2000 244.16 241.00 14.09 15202 16.2010 224.98 240.58 13.51 15203 16.2020 243.16 240.19 14.05 15204 16.2030 244.34 239.83 14.10 15205 16.2040 252.86 239.50 14.29 15206 16.2050 230.20 239.20 13.73 15207 16.2060 239.26 238.92 13.98 15208 16.2070 245.71 238.66 14.11 15209 16.2080 231.05 238.43 13.78 15210 16.2090 227.00 238.22 13.49 15211 16.2100 232.86 238.03 13.73 15212 16.2110 228.36 237.86 13.71 15213 16.2120 231.75 237.71 13.81 15214 16.2130 223.98 237.58 13.52 15215 16.2140 217.72 237.46 13.31 15216 16.2150 233.54 237.37 13.76 15217 16.2160 258.41 237.28 14.55 15218 16.2170 257.95 237.22 14.56 15219 16.2180 241.26 237.17 14.04 15220 16.2190 231.04 237.13 13.72 15221 16.2200 238.29 237.11 13.96 15222 16.2210 221.69 237.10 13.43 15223 16.2220 248.79 237.11 14.21 15224 16.2230 236.96 237.13 13.91 15225 16.2240 229.68 237.16 13.71 15226 16.2250 249.64 237.21 14.27 15227 16.2260 237.05 237.27 13.91 15228 16.2270 226.54 237.35 13.55 15229 16.2280 226.19 237.43 13.57 15230 16.2290 204.10 237.53 12.83 15231 16.2300 232.27 237.64 13.72 15232 16.2310 241.46 237.77 14.06 15233 16.2320 225.54 237.90 13.56 15234 16.2330 203.65 238.06 12.82 15235 16.2340 230.32 238.22 13.61 15236 16.2350 219.27 238.40 13.33 15237 16.2360 237.57 238.59 13.89 15238 16.2370 232.10 238.79 13.74 15239 16.2380 227.20 239.01 13.57 15240 16.2390 213.03 239.24 13.16 15241 16.2400 217.87 239.49 13.33 15242 16.2410 225.15 239.75 13.58 15243 16.2420 231.74 240.03 13.81 15244 16.2430 232.63 240.32 13.75 15245 16.2440 213.17 240.63 13.20 15246 16.2450 219.24 240.95 13.29 15247 16.2460 234.53 241.29 13.72 15248 16.2470 215.06 241.65 13.24 15249 16.2480 222.93 242.02 13.52 15250 16.2490 241.00 242.42 14.01 15251 16.2500 221.32 242.83 13.41 15252 16.2510 232.27 243.26 13.74 15253 16.2520 251.33 243.71 14.32 15254 16.2530 256.36 244.19 14.50 15255 16.2540 248.40 244.68 14.27 15256 16.2550 225.51 245.20 13.54 15257 16.2560 232.52 245.75 13.71 15258 16.2570 233.27 246.32 13.81 15259 16.2580 230.70 246.91 13.69 15260 16.2590 237.44 247.54 13.96 15261 16.2600 225.63 248.19 13.55 15262 16.2610 217.62 248.87 13.33 15263 16.2620 220.23 249.59 13.43 15264 16.2630 237.31 250.34 13.91 15265 16.2640 229.07 251.13 13.68 15266 16.2650 213.70 251.95 13.18 15267 16.2660 226.14 252.82 13.57 15268 16.2670 231.82 253.73 13.73 15269 16.2680 222.41 254.68 13.45 15270 16.2690 237.01 255.68 13.86 15271 16.2700 239.34 256.73 13.92 15272 16.2710 213.94 257.84 13.28 15273 16.2720 250.97 259.00 14.29 15274 16.2730 247.91 260.23 14.21 15275 16.2740 231.86 261.52 13.70 15276 16.2750 249.34 262.88 14.25 15277 16.2760 246.10 264.32 14.20 15278 16.2770 258.01 265.84 14.49 15279 16.2780 239.37 267.45 14.00 15280 16.2790 255.08 269.14 14.42 15281 16.2800 249.05 270.95 14.21 15282 16.2810 259.69 272.86 14.53 15283 16.2820 274.30 274.88 14.98 15284 16.2830 261.66 277.04 14.62 15285 16.2840 286.01 279.33 15.27 15286 16.2850 255.83 281.77 14.44 15287 16.2860 273.37 284.37 14.93 15288 16.2870 276.50 287.15 14.93 15289 16.2880 245.51 290.12 14.23 15290 16.2890 278.85 293.30 15.10 15291 16.2900 286.02 296.73 15.34 15292 16.2910 282.22 300.39 15.16 15293 16.2920 279.45 304.33 15.13 15294 16.2930 294.91 308.59 15.55 15295 16.2940 306.39 313.18 15.87 15296 16.2950 317.53 318.15 16.08 15297 16.2960 311.72 323.53 15.94 15298 16.2970 302.83 329.38 15.75 15299 16.2980 349.18 335.73 16.88 15300 16.2990 354.65 342.65 17.02 15301 16.3000 325.01 350.21 16.31 15302 16.3010 358.47 358.52 17.15 15303 16.3020 360.99 367.59 17.25 15304 16.3030 362.91 377.58 17.19 15305 16.3040 370.29 388.61 17.36 15306 16.3050 369.76 400.76 17.29 15307 16.3060 399.09 414.21 18.02 15308 16.3070 379.39 429.15 17.61 15309 16.3080 457.56 445.75 19.30 15310 16.3090 463.80 464.20 19.48 15311 16.3100 465.22 484.80 19.50 15312 16.3110 466.17 507.79 19.47 15313 16.3120 510.36 533.41 20.42 15314 16.3130 583.63 562.06 21.91 15315 16.3140 572.35 593.94 21.68 15316 16.3150 591.43 629.43 22.03 15317 16.3160 623.52 668.69 22.60 15318 16.3170 709.09 711.75 24.02 15319 16.3180 750.81 758.65 24.77 15320 16.3190 751.19 808.90 24.78 15321 16.3200 916.35 861.55 27.32 15322 16.3210 939.17 915.27 27.71 15323 16.3220 993.76 968.18 28.50 15324 16.3230 1075.29 1017.19 29.64 15325 16.3240 1107.38 1059.27 30.09 15326 16.3250 1091.00 1091.22 29.88 15327 16.3260 1176.81 1109.93 31.00 15328 16.3270 1153.52 1113.72 30.70 15329 16.3280 1096.90 1102.22 29.95 15330 16.3290 1024.07 1076.61 28.97 15331 16.3300 1016.87 1039.38 28.85 15332 16.3310 984.13 993.82 28.30 15333 16.3320 913.94 943.07 27.31 15334 16.3330 840.17 890.21 26.16 15335 16.3340 767.07 837.69 25.00 15336 16.3350 756.07 787.12 24.81 15337 16.3360 672.98 739.43 23.37 15338 16.3370 670.61 695.53 23.41 15339 16.3380 618.18 655.48 22.43 15340 16.3390 583.25 619.14 21.86 15341 16.3400 573.23 586.60 21.63 15342 16.3410 521.00 557.48 20.62 15343 16.3420 512.96 531.43 20.46 15344 16.3430 498.75 508.20 20.16 15345 16.3440 454.65 487.54 19.27 15346 16.3450 444.70 469.10 19.06 15347 16.3460 408.80 452.66 18.25 15348 16.3470 405.06 437.99 18.14 15349 16.3480 382.26 424.92 17.62 15350 16.3490 375.58 413.21 17.50 15351 16.3500 387.63 402.74 17.78 15352 16.3510 357.31 393.39 17.03 15353 16.3520 380.57 385.02 17.61 15354 16.3530 340.66 377.49 16.67 15355 16.3540 335.62 370.77 16.53 15356 16.3550 363.64 364.76 17.24 15357 16.3560 307.44 359.36 15.79 15358 16.3570 303.43 354.55 15.77 15359 16.3580 312.53 350.26 15.95 15360 16.3590 326.02 346.43 16.30 15361 16.3600 298.82 343.04 15.62 15362 16.3610 289.99 340.06 15.45 15363 16.3620 303.70 337.43 15.79 15364 16.3630 317.81 335.15 16.09 15365 16.3640 313.73 333.19 15.98 15366 16.3650 303.30 331.52 15.69 15367 16.3660 307.95 330.13 15.87 15368 16.3670 292.86 329.01 15.50 15369 16.3680 292.02 328.13 15.44 15370 16.3690 302.03 327.50 15.73 15371 16.3700 305.89 327.10 15.80 15372 16.3710 284.47 326.93 15.24 15373 16.3720 315.41 326.97 16.03 15374 16.3730 327.65 327.23 16.26 15375 16.3740 308.73 326.81 15.83 15376 16.3750 304.58 327.49 15.78 15377 16.3760 301.67 328.39 15.70 15378 16.3770 300.11 329.49 15.71 15379 16.3780 298.04 330.81 15.58 15380 16.3790 309.56 332.35 15.88 15381 16.3800 333.99 334.10 16.52 15382 16.3810 315.08 336.09 16.04 15383 16.3820 304.94 338.30 15.73 15384 16.3830 312.86 340.76 15.95 15385 16.3840 342.79 343.48 16.70 15386 16.3850 335.52 346.46 16.55 15387 16.3860 288.51 349.71 15.36 15388 16.3870 301.48 353.26 15.69 15389 16.3880 318.04 357.14 16.10 15390 16.3890 333.73 361.33 16.48 15391 16.3900 342.88 365.88 16.68 15392 16.3910 364.02 370.82 17.18 15393 16.3920 354.14 376.15 16.99 15394 16.3930 353.14 381.92 16.96 15395 16.3940 356.76 388.17 17.04 15396 16.3950 374.23 394.94 17.45 15397 16.3960 370.41 402.26 17.40 15398 16.3970 365.40 410.17 17.22 15399 16.3980 404.25 418.76 18.11 15400 16.3990 416.88 428.08 18.41 15401 16.4000 403.05 438.17 18.11 15402 16.4010 414.85 449.13 18.39 15403 16.4020 418.84 461.09 18.52 15404 16.4030 444.49 474.07 19.02 15405 16.4040 442.96 488.23 18.99 15406 16.4050 467.33 503.74 19.61 15407 16.4060 491.02 520.65 20.01 15408 16.4070 520.05 539.17 20.60 15409 16.4080 514.02 559.56 20.47 15410 16.4090 547.98 581.91 21.17 15411 16.4100 562.64 606.51 21.42 15412 16.4110 577.71 633.70 21.76 15413 16.4120 617.62 663.75 22.50 15414 16.4130 637.38 696.96 22.88 15415 16.4140 696.87 733.85 23.83 15416 16.4150 687.88 774.81 23.71 15417 16.4160 777.01 820.37 25.13 15418 16.4170 769.49 870.98 25.01 15419 16.4180 824.63 927.32 25.89 15420 16.4190 883.74 990.27 26.85 15421 16.4200 949.55 1060.07 27.83 15422 16.4210 981.13 1137.54 28.29 15423 16.4220 1080.65 1223.56 29.68 15424 16.4230 1182.97 1317.92 31.06 15425 16.4240 1278.21 1420.97 32.33 15426 16.4250 1397.62 1532.50 33.80 15427 16.4260 1530.55 1651.19 35.41 15428 16.4270 1648.56 1774.70 36.72 15429 16.4280 1763.54 1900.08 38.00 15430 16.4290 1878.04 2022.35 39.22 15431 16.4300 2057.42 2135.20 41.02 15432 16.4310 2176.45 2231.96 42.25 15433 16.4320 2245.45 2305.10 42.81 15434 16.4330 2325.91 2348.63 43.62 15435 16.4340 2324.32 2358.39 43.54 15436 16.4350 2264.64 2333.49 42.98 15437 16.4360 2212.47 2276.20 42.50 15438 16.4370 2124.73 2191.64 41.66 15439 16.4380 1964.61 2086.82 40.03 15440 16.4390 1831.87 1968.86 38.72 15441 16.4400 1738.47 1844.04 37.62 15442 16.4410 1541.33 1718.77 35.38 15443 16.4420 1489.38 1596.76 34.94 15444 16.4430 1440.35 1480.44 34.28 15445 16.4440 1258.04 1372.25 32.05 15446 16.4450 1138.78 1272.43 30.48 15447 16.4460 1113.75 1181.49 30.13 15448 16.4470 1060.45 1098.90 29.40 15449 16.4480 974.17 1024.35 28.19 15450 16.4490 924.95 957.33 27.45 15451 16.4500 856.62 896.97 26.42 15452 16.4510 798.93 842.73 25.53 15453 16.4520 828.38 794.04 25.94 15454 16.4530 768.27 750.23 25.04 15455 16.4540 684.75 710.63 23.60 15456 16.4550 677.43 675.03 23.49 15457 16.4560 619.09 642.85 22.47 15458 16.4570 571.21 613.61 21.60 15459 16.4580 529.62 587.19 20.79 15460 16.4590 500.38 563.16 20.19 15461 16.4600 498.69 541.24 20.18 15462 16.4610 486.23 521.24 19.91 15463 16.4620 489.93 502.97 19.97 15464 16.4630 483.44 486.21 19.82 15465 16.4640 451.16 470.81 19.20 15466 16.4650 418.25 456.66 18.41 15467 16.4660 417.40 443.63 18.47 15468 16.4670 403.27 431.60 18.17 15469 16.4680 369.51 420.61 17.37 15470 16.4690 372.44 410.31 17.40 15471 16.4700 369.16 400.75 17.26 15472 16.4710 362.38 391.83 17.15 15473 16.4720 347.77 383.55 16.82 15474 16.4730 333.92 375.84 16.57 15475 16.4740 341.28 368.61 16.74 15476 16.4750 334.83 361.88 16.50 15477 16.4760 321.69 355.58 16.22 15478 16.4770 342.17 349.65 16.75 15479 16.4780 313.23 344.10 15.99 15480 16.4790 335.30 338.89 16.47 15481 16.4800 308.05 333.97 15.80 15482 16.4810 325.65 329.34 16.29 15483 16.4820 308.94 324.99 15.83 15484 16.4830 307.98 320.87 15.85 15485 16.4840 303.98 316.98 15.80 15486 16.4850 298.73 313.30 15.64 15487 16.4860 302.97 309.81 15.65 15488 16.4870 285.12 306.51 15.21 15489 16.4880 285.99 303.38 15.30 15490 16.4890 294.93 300.40 15.40 15491 16.4900 310.21 297.58 15.87 15492 16.4910 283.80 294.90 15.15 15493 16.4920 292.37 292.33 15.47 15494 16.4930 299.68 289.90 15.59 15495 16.4940 304.55 287.58 15.75 15496 16.4950 294.19 285.36 15.46 15497 16.4960 278.45 283.25 15.07 15498 16.4970 301.10 281.23 15.63 15499 16.4980 290.12 279.30 15.44 15500 16.4990 276.65 277.45 15.01 15501 16.5000 297.09 275.68 15.54 15502 16.5010 292.37 273.99 15.44 15503 16.5020 272.22 272.37 14.86 15504 16.5030 279.25 270.81 15.09 15505 16.5040 286.09 269.32 15.32 15506 16.5050 294.65 267.89 15.53 15507 16.5060 307.39 266.51 15.84 15508 16.5070 317.43 265.19 16.11 15509 16.5080 286.70 263.92 15.31 15510 16.5090 287.11 262.69 15.32 15511 16.5100 306.47 261.51 15.76 15512 16.5110 292.92 260.38 15.43 15513 16.5120 285.87 259.29 15.19 15514 16.5130 276.92 258.23 15.04 15515 16.5140 285.95 257.22 15.24 15516 16.5150 296.67 256.24 15.48 15517 16.5160 298.37 255.30 15.58 15518 16.5170 293.17 254.38 15.45 15519 16.5180 283.55 253.50 15.25 15520 16.5190 282.09 252.65 15.15 15521 16.5200 269.56 251.83 14.81 15522 16.5210 273.79 251.03 14.92 15523 16.5220 293.10 250.26 15.46 15524 16.5230 288.02 249.52 15.27 15525 16.5240 298.20 248.80 15.55 15526 16.5250 288.27 248.10 15.37 15527 16.5260 284.03 247.42 15.15 15528 16.5270 291.72 246.77 15.38 15529 16.5280 292.79 246.13 15.46 15530 16.5290 301.85 245.52 15.67 15531 16.5300 275.17 244.92 14.92 15532 16.5310 287.39 244.34 15.33 15533 16.5320 264.48 243.78 14.75 15534 16.5330 279.39 243.23 15.12 15535 16.5340 254.14 242.70 14.31 15536 16.5350 250.69 242.18 14.26 15537 16.5360 252.20 241.69 14.31 15538 16.5370 265.19 241.20 14.69 15539 16.5380 269.21 240.73 14.87 15540 16.5390 267.30 240.27 14.78 15541 16.5400 284.68 239.82 15.21 15542 16.5410 276.39 239.38 15.02 15543 16.5420 285.81 238.96 15.22 15544 16.5430 253.42 238.55 14.37 15545 16.5440 269.38 238.15 14.88 15546 16.5450 251.38 237.76 14.26 15547 16.5460 265.50 237.38 14.62 15548 16.5470 253.59 237.01 14.35 15549 16.5480 258.94 236.65 14.54 15550 16.5490 252.41 236.30 14.32 15551 16.5500 282.66 235.95 15.14 15552 16.5510 259.28 235.62 14.51 15553 16.5520 251.32 235.29 14.25 15554 16.5530 256.95 234.98 14.49 15555 16.5540 241.60 234.66 14.00 15556 16.5550 253.21 234.36 14.35 15557 16.5560 243.50 234.07 14.08 15558 16.5570 236.33 233.78 13.90 15559 16.5580 259.42 233.50 14.55 15560 16.5590 270.48 235.49 14.85 15561 16.5600 242.83 235.24 14.05 15562 16.5610 252.55 234.99 14.33 15563 16.5620 242.74 234.76 14.11 15564 16.5630 252.86 234.52 14.33 15565 16.5640 250.09 234.30 14.24 15566 16.5650 235.83 234.08 13.85 15567 16.5660 234.08 233.87 13.79 15568 16.5670 237.70 233.66 13.85 15569 16.5680 239.58 233.46 13.97 15570 16.5690 234.37 233.26 13.87 15571 16.5700 230.53 233.07 13.69 15572 16.5710 217.20 232.88 13.34 15573 16.5720 240.02 232.70 13.98 15574 16.5730 235.08 232.52 13.85 15575 16.5740 242.89 232.35 14.02 15576 16.5750 208.66 232.18 13.04 15577 16.5760 220.02 232.01 13.40 15578 16.5770 231.85 231.85 13.76 15579 16.5780 227.47 231.70 13.67 15580 16.5790 240.00 231.55 13.99 15581 16.5800 237.92 231.40 13.92 15582 16.5810 220.09 231.25 13.41 15583 16.5820 229.21 229.60 13.66 15584 16.5830 206.25 229.48 12.93 15585 16.5840 228.50 229.36 13.57 15586 16.5850 231.79 229.24 13.75 15587 16.5860 225.60 229.12 13.55 15588 16.5870 232.65 229.01 13.70 15589 16.5880 243.30 228.91 14.12 15590 16.5890 220.84 228.80 13.38 15591 16.5900 216.21 228.70 13.29 15592 16.5910 225.20 228.60 13.58 15593 16.5920 209.14 228.51 13.05 15594 16.5930 223.46 228.42 13.47 15595 16.5940 231.51 228.33 13.74 15596 16.5950 218.87 228.24 13.47 15597 16.5960 226.79 228.16 13.58 15598 16.5970 216.15 228.08 13.23 15599 16.5980 203.98 228.00 12.89 15600 16.5990 208.46 227.93 13.05 15601 16.6000 206.38 227.86 12.91 15602 16.6010 219.99 227.79 13.39 15603 16.6020 223.81 227.72 13.55 15604 16.6030 198.60 227.66 12.78 15605 16.6040 227.59 227.60 13.64 15606 16.6050 205.42 227.54 12.87 15607 16.6060 214.37 227.48 13.21 15608 16.6070 216.93 227.43 13.30 15609 16.6080 204.67 227.38 12.96 15610 16.6090 194.10 227.33 12.54 15611 16.6100 189.31 227.28 12.43 15612 16.6110 218.10 227.24 13.29 15613 16.6120 210.59 227.20 13.10 15614 16.6130 222.11 227.16 13.45 15615 16.6140 214.46 227.12 13.21 15616 16.6150 231.56 227.09 13.71 15617 16.6160 214.69 227.06 13.19 15618 16.6170 196.51 227.03 12.68 15619 16.6180 199.25 227.00 12.72 15620 16.6190 209.23 226.98 13.05 15621 16.6200 222.18 226.96 13.50 15622 16.6210 210.61 226.94 13.12 15623 16.6220 200.07 226.92 12.81 15624 16.6230 220.56 226.91 13.34 15625 16.6240 211.90 226.89 13.18 15626 16.6250 207.51 226.88 13.01 15627 16.6260 210.87 226.88 13.13 15628 16.6270 222.36 226.87 13.50 15629 16.6280 216.70 226.87 13.26 15630 16.6290 207.05 226.87 13.03 15631 16.6300 193.83 226.87 12.53 15632 16.6310 210.39 226.88 13.02 15633 16.6320 215.75 226.88 13.31 15634 16.6330 213.23 226.90 13.20 15635 16.6340 230.81 226.91 13.73 15636 16.6350 228.48 226.92 13.60 15637 16.6360 206.05 226.94 12.97 15638 16.6370 221.20 226.96 13.40 15639 16.6380 205.75 226.99 12.94 15640 16.6390 225.07 227.01 13.52 15641 16.6400 190.94 227.04 12.48 15642 16.6410 230.93 227.07 13.62 15643 16.6420 224.07 227.11 13.45 15644 16.6430 194.34 227.15 12.63 15645 16.6440 226.20 227.19 13.63 15646 16.6450 204.74 227.23 12.81 15647 16.6460 203.54 227.28 12.85 15648 16.6470 222.41 227.33 13.40 15649 16.6480 221.54 227.38 13.46 15650 16.6490 214.05 227.44 13.14 15651 16.6500 198.84 227.50 12.71 15652 16.6510 187.59 227.57 12.42 15653 16.6520 224.23 227.63 13.52 15654 16.6530 219.37 227.71 13.38 15655 16.6540 213.41 227.78 13.24 15656 16.6550 182.93 227.86 12.25 15657 16.6560 205.05 227.95 12.81 15658 16.6570 198.92 228.03 12.72 15659 16.6580 231.48 228.13 13.74 15660 16.6590 214.21 228.22 13.26 15661 16.6600 216.32 228.32 13.29 15662 16.6610 211.77 228.43 13.11 15663 16.6620 195.59 228.54 12.62 15664 16.6630 203.88 228.66 12.93 15665 16.6640 210.29 228.78 13.03 15666 16.6650 209.71 228.91 13.01 15667 16.6660 229.62 229.05 13.71 15668 16.6670 217.99 229.19 13.36 15669 16.6680 195.53 229.34 12.66 15670 16.6690 208.79 229.49 13.07 15671 16.6700 202.65 229.65 12.82 15672 16.6710 203.37 229.82 12.85 15673 16.6720 189.45 229.99 12.35 15674 16.6730 208.86 230.18 13.04 15675 16.6740 206.94 230.37 13.00 15676 16.6750 205.10 230.57 12.88 15677 16.6760 203.90 230.79 12.89 15678 16.6770 202.70 231.01 12.82 15679 16.6780 223.39 231.24 13.52 15680 16.6790 216.53 231.48 13.30 15681 16.6800 202.64 231.74 12.90 15682 16.6810 197.52 232.01 12.65 15683 16.6820 195.26 232.29 12.63 15684 16.6830 217.41 232.58 13.30 15685 16.6840 230.12 232.90 13.72 15686 16.6850 212.62 233.22 13.15 15687 16.6860 197.50 233.57 12.70 15688 16.6870 203.72 233.93 12.89 15689 16.6880 206.65 234.31 13.02 15690 16.6890 195.43 234.72 12.59 15691 16.6900 197.32 235.14 12.64 15692 16.6910 202.55 235.60 12.81 15693 16.6920 219.46 236.07 13.37 15694 16.6930 203.41 236.58 12.89 15695 16.6940 210.62 237.12 13.11 15696 16.6950 211.06 237.70 13.14 15697 16.6960 214.12 238.31 13.24 15698 16.6970 222.81 238.96 13.49 15699 16.6980 212.44 239.66 13.19 15700 16.6990 216.71 236.71 13.20 15701 16.7000 222.95 237.54 13.44 15702 16.7010 227.56 238.43 13.62 15703 16.7020 222.77 239.38 13.48 15704 16.7030 243.40 240.40 14.10 15705 16.7040 232.45 241.50 13.79 15706 16.7050 220.54 242.69 13.35 15707 16.7060 206.93 243.98 12.91 15708 16.7070 221.59 245.38 13.42 15709 16.7080 227.08 246.91 13.64 15710 16.7090 224.46 248.57 13.53 15711 16.7100 225.14 250.38 13.55 15712 16.7110 224.07 252.37 13.53 15713 16.7120 229.56 254.56 13.60 15714 16.7130 244.14 256.96 14.11 15715 16.7140 243.56 259.61 14.04 15716 16.7150 264.62 262.53 14.69 15717 16.7160 250.69 265.76 14.34 15718 16.7170 250.67 269.32 14.40 15719 16.7180 253.84 273.26 14.42 15720 16.7190 243.54 277.59 14.12 15721 16.7200 243.77 282.33 14.08 15722 16.7210 260.67 287.50 14.61 15723 16.7220 259.90 293.09 14.55 15724 16.7230 263.93 299.03 14.72 15725 16.7240 282.70 305.27 15.20 15726 16.7250 281.34 311.63 15.15 15727 16.7260 290.79 317.91 15.36 15728 16.7270 281.77 323.83 15.11 15729 16.7280 285.62 329.09 15.20 15730 16.7290 312.53 333.30 15.93 15731 16.7300 305.48 336.18 15.77 15732 16.7310 308.75 337.52 15.85 15733 16.7320 308.86 337.23 15.88 15734 16.7330 310.22 335.39 15.93 15735 16.7340 301.84 332.25 15.74 15736 16.7350 299.68 328.09 15.65 15737 16.7360 276.49 323.29 15.04 15738 16.7370 267.31 318.16 14.78 15739 16.7380 276.99 312.97 15.02 15740 16.7390 256.68 307.94 14.41 15741 16.7400 272.82 303.21 14.89 15742 16.7410 273.26 298.89 14.92 15743 16.7420 287.71 294.98 15.30 15744 16.7430 294.07 291.53 15.46 15745 16.7440 262.16 288.53 14.66 15746 16.7450 260.21 285.95 14.57 15747 16.7460 271.04 283.77 14.85 15748 16.7470 257.50 281.97 14.48 15749 16.7480 260.99 280.50 14.59 15750 16.7490 251.24 279.35 14.27 15751 16.7500 251.29 278.50 14.30 15752 16.7510 253.42 277.91 14.31 15753 16.7520 232.37 277.58 13.73 15754 16.7530 225.47 277.47 13.50 15755 16.7540 253.58 277.59 14.31 15756 16.7550 254.92 277.92 14.41 15757 16.7560 269.32 278.44 14.86 15758 16.7570 252.11 279.16 14.37 15759 16.7580 254.26 280.07 14.42 15760 16.7590 262.27 281.16 14.60 15761 16.7600 245.67 282.44 14.19 15762 16.7610 265.35 283.91 14.72 15763 16.7620 243.54 285.56 14.11 15764 16.7630 248.68 287.41 14.24 15765 16.7640 252.62 289.46 14.34 15766 16.7650 270.49 291.72 14.81 15767 16.7660 257.37 294.20 14.54 15768 16.7670 266.89 296.90 14.74 15769 16.7680 283.05 299.86 15.21 15770 16.7690 274.36 303.07 14.99 15771 16.7700 281.31 306.56 15.12 15772 16.7710 300.29 310.35 15.59 15773 16.7720 281.16 314.46 15.19 15774 16.7730 297.60 318.93 15.58 15775 16.7740 304.30 323.77 15.78 15776 16.7750 327.69 329.03 16.34 15777 16.7760 301.45 334.74 15.67 15778 16.7770 298.52 340.98 15.58 15779 16.7780 299.52 347.75 15.64 15780 16.7790 332.06 355.14 16.40 15781 16.7800 339.17 363.21 16.65 15782 16.7810 332.63 372.03 16.51 15783 16.7820 335.34 381.70 16.45 15784 16.7830 310.42 392.31 15.91 15785 16.7840 370.46 404.10 17.39 15786 16.7850 387.09 416.95 17.73 15787 16.7860 383.65 431.10 17.70 15788 16.7870 404.52 446.78 18.14 15789 16.7880 451.24 464.16 19.19 15790 16.7890 446.29 483.41 19.15 15791 16.7900 454.33 504.88 19.32 15792 16.7910 475.53 528.80 19.67 15793 16.7920 483.98 555.46 19.92 15794 16.7930 512.20 585.26 20.47 15795 16.7940 580.14 618.72 21.74 15796 16.7950 607.65 656.06 22.27 15797 16.7960 617.82 697.84 22.35 15798 16.7970 652.23 744.69 23.03 15799 16.7980 700.01 796.74 23.85 15800 16.7990 720.44 854.48 24.25 15801 16.8000 839.28 918.18 26.19 15802 16.8010 891.35 987.62 26.94 15803 16.8020 958.18 1062.20 27.93 15804 16.8030 1066.01 1140.52 29.49 15805 16.8040 1105.06 1220.70 30.08 15806 16.8050 1236.07 1299.45 31.72 15807 16.8060 1338.32 1372.45 33.14 15808 16.8070 1370.45 1434.92 33.48 15809 16.8080 1464.28 1481.89 34.54 15810 16.8090 1491.28 1508.66 34.87 15811 16.8100 1483.67 1512.68 34.76 15812 16.8110 1420.36 1493.41 34.02 15813 16.8120 1387.93 1452.98 33.67 15814 16.8130 1396.07 1395.28 33.79 15815 16.8140 1288.84 1325.13 32.45 15816 16.8150 1168.44 1247.71 30.92 15817 16.8160 1101.84 1167.66 29.94 15818 16.8170 1031.15 1088.23 28.95 15819 16.8180 963.62 1012.03 28.03 15820 16.8190 901.18 940.74 27.15 15821 16.8200 820.95 874.91 25.82 15822 16.8210 789.47 815.05 25.27 15823 16.8220 723.67 760.78 24.32 15824 16.8230 729.57 712.18 24.33 15825 16.8240 660.02 668.64 23.18 15826 16.8250 614.36 629.57 22.41 15827 16.8260 568.76 594.78 21.56 15828 16.8270 574.31 563.68 21.66 15829 16.8280 542.24 535.81 21.07 15830 16.8290 516.07 510.84 20.52 15831 16.8300 510.06 488.47 20.44 15832 16.8310 474.16 468.32 19.69 15833 16.8320 442.36 450.17 18.95 15834 16.8330 429.33 433.81 18.66 15835 16.8340 416.64 418.98 18.45 15836 16.8350 413.13 405.56 18.31 15837 16.8360 403.19 393.33 18.15 15838 16.8370 410.78 382.19 18.30 15839 16.8380 365.41 372.04 17.18 15840 16.8390 358.58 362.74 17.09 15841 16.8400 364.08 354.21 17.21 15842 16.8410 358.12 346.39 17.12 15843 16.8420 360.94 339.19 17.14 15844 16.8430 366.26 332.53 17.28 15845 16.8440 357.06 326.40 17.09 15846 16.8450 360.92 320.72 17.21 15847 16.8460 346.79 315.44 16.81 15848 16.8470 323.63 310.55 16.24 15849 16.8480 330.26 306.01 16.33 15850 16.8490 316.31 301.76 16.01 15851 16.8500 319.85 297.81 16.17 15852 16.8510 322.03 294.11 16.21 15853 16.8520 311.81 290.66 15.98 15854 16.8530 311.30 287.42 15.94 15855 16.8540 311.65 284.38 15.94 15856 16.8550 291.44 281.53 15.40 15857 16.8560 281.30 278.85 15.19 15858 16.8570 291.23 276.33 15.43 15859 16.8580 291.07 273.95 15.37 15860 16.8590 280.05 271.71 15.09 15861 16.8600 289.71 269.58 15.39 15862 16.8610 295.02 267.58 15.51 15863 16.8620 269.97 265.69 14.86 15864 16.8630 286.95 263.89 15.25 15865 16.8640 269.44 262.19 14.85 15866 16.8650 268.97 260.58 14.86 15867 16.8660 271.50 259.05 14.86 15868 16.8670 267.30 257.59 14.69 15869 16.8680 264.18 256.21 14.66 15870 16.8690 265.05 254.89 14.73 15871 16.8700 257.70 253.63 14.53 15872 16.8710 255.32 252.43 14.44 15873 16.8720 261.11 251.29 14.58 15874 16.8730 241.15 250.20 14.08 15875 16.8740 254.03 249.16 14.39 15876 16.8750 242.90 248.16 14.09 15877 16.8760 238.71 247.21 13.95 15878 16.8770 227.16 246.30 13.58 15879 16.8780 229.84 245.43 13.70 15880 16.8790 239.51 244.59 13.98 15881 16.8800 238.50 243.79 14.01 15882 16.8810 238.18 243.02 13.95 15883 16.8820 257.00 242.28 14.44 15884 16.8830 247.77 241.57 14.18 15885 16.8840 217.22 240.89 13.28 15886 16.8850 240.49 240.24 13.95 15887 16.8860 242.05 239.61 14.11 15888 16.8870 238.40 239.00 13.95 15889 16.8880 233.72 238.42 13.78 15890 16.8890 217.05 237.86 13.23 15891 16.8900 219.36 237.32 13.32 15892 16.8910 218.99 236.80 13.31 15893 16.8920 227.05 236.30 13.56 15894 16.8930 207.28 235.81 12.95 15895 16.8940 218.16 235.35 13.30 15896 16.8950 225.40 234.90 13.51 15897 16.8960 208.40 234.46 12.93 15898 16.8970 234.64 234.04 13.78 15899 16.8980 223.53 233.63 13.62 15900 16.8990 235.02 233.24 13.90 15901 16.9000 225.82 232.86 13.60 15902 16.9010 219.66 232.50 13.35 15903 16.9020 204.57 232.14 12.89 15904 16.9030 232.02 231.80 13.76 15905 16.9040 232.88 231.47 13.79 15906 16.9050 217.97 231.15 13.34 15907 16.9060 219.90 230.84 13.44 15908 16.9070 223.90 230.54 13.55 15909 16.9080 220.83 230.24 13.37 15910 16.9090 220.38 229.96 13.37 15911 16.9100 231.32 229.69 13.80 15912 16.9110 221.16 229.42 13.47 15913 16.9120 229.64 229.16 13.67 15914 16.9130 214.62 228.92 13.22 15915 16.9140 221.66 228.68 13.39 15916 16.9150 240.74 228.44 13.99 15917 16.9160 224.07 228.21 13.51 15918 16.9170 213.03 227.99 13.19 15919 16.9180 214.84 227.78 13.25 15920 16.9190 205.24 227.57 12.95 15921 16.9200 200.95 227.37 12.84 15922 16.9210 207.21 227.18 13.04 15923 16.9220 219.15 226.99 13.35 15924 16.9230 224.36 226.80 13.51 15925 16.9240 232.71 226.62 13.71 15926 16.9250 209.60 226.45 13.08 15927 16.9260 210.71 226.29 13.06 15928 16.9270 205.28 226.12 12.91 15929 16.9280 211.57 225.96 13.12 15930 16.9290 229.10 225.81 13.66 15931 16.9300 221.88 225.66 13.46 15932 16.9310 213.72 225.52 13.16 15933 16.9320 215.67 225.38 13.30 15934 16.9330 231.39 225.25 13.73 15935 16.9340 236.50 225.12 13.90 15936 16.9350 241.43 224.99 13.99 15937 16.9360 233.17 224.87 13.72 15938 16.9370 205.70 224.75 12.90 15939 16.9380 227.51 224.63 13.61 15940 16.9390 213.94 224.52 13.22 15941 16.9400 219.99 224.42 13.40 15942 16.9410 224.28 224.32 13.58 15943 16.9420 223.94 224.21 13.51 15944 16.9430 228.37 224.12 13.65 15945 16.9440 231.76 224.03 13.76 15946 16.9450 254.49 223.94 14.38 15947 16.9460 245.16 223.85 14.16 15948 16.9470 226.01 223.77 13.53 15949 16.9480 224.90 223.70 13.60 15950 16.9490 228.64 223.62 13.69 15951 16.9500 223.57 223.55 13.50 15952 16.9510 213.93 223.48 13.18 15953 16.9520 199.86 223.42 12.82 15954 16.9530 218.94 223.36 13.39 15955 16.9540 227.04 223.30 13.56 15956 16.9550 224.29 223.25 13.58 15957 16.9560 217.01 223.20 13.35 15958 16.9570 222.38 223.15 13.40 15959 16.9580 226.60 223.11 13.59 15960 16.9590 224.28 223.07 13.48 15961 16.9600 215.78 223.04 13.26 15962 16.9610 211.73 223.00 13.12 15963 16.9620 214.35 222.98 13.19 15964 16.9630 205.86 222.95 12.94 15965 16.9640 207.10 222.93 12.95 15966 16.9650 216.13 222.92 13.27 15967 16.9660 211.39 222.91 13.12 15968 16.9670 214.40 222.90 13.13 15969 16.9680 216.03 222.90 13.20 15970 16.9690 204.73 222.90 12.86 15971 16.9700 187.40 222.91 12.38 15972 16.9710 215.79 222.93 13.27 15973 16.9720 210.23 222.95 13.11 15974 16.9730 197.78 222.97 12.75 15975 16.9740 234.01 223.00 13.84 15976 16.9750 240.71 223.04 13.99 15977 16.9760 217.30 223.08 13.31 15978 16.9770 228.80 223.13 13.65 15979 16.9780 216.85 223.19 13.31 15980 16.9790 229.27 223.26 13.63 15981 16.9800 208.70 223.34 13.00 15982 16.9810 229.66 223.42 13.68 15983 16.9820 233.98 223.51 13.87 15984 16.9830 231.29 223.62 13.71 15985 16.9840 225.06 223.73 13.53 15986 16.9850 225.41 223.86 13.56 15987 16.9860 212.44 224.00 13.12 15988 16.9870 214.24 224.15 13.20 15989 16.9880 194.14 224.32 12.56 15990 16.9890 218.46 224.50 13.30 15991 16.9900 228.94 224.71 13.62 15992 16.9910 228.64 224.93 13.69 15993 16.9920 223.08 225.17 13.50 15994 16.9930 225.74 225.43 13.56 15995 16.9940 211.75 225.72 13.19 15996 16.9950 231.73 225.87 13.74 15997 16.9960 231.96 226.22 13.76 15998 16.9970 216.20 226.60 13.28 15999 16.9980 217.45 227.02 13.31 16000 16.9990 222.49 227.48 13.46 16001 17.0000 217.13 227.99 13.31 16002 17.0010 219.86 228.55 13.39 16003 17.0020 206.76 229.16 13.03 16004 17.0030 225.63 229.84 13.55 16005 17.0040 219.16 230.59 13.30 16006 17.0050 215.97 231.43 13.27 16007 17.0060 214.78 232.35 13.23 16008 17.0070 212.97 233.38 13.12 16009 17.0080 219.71 234.53 13.44 16010 17.0090 212.20 235.81 13.19 16011 17.0100 211.64 237.25 13.23 16012 17.0110 217.00 238.85 13.29 16013 17.0120 235.39 240.65 13.80 16014 17.0130 240.73 242.68 14.00 16015 17.0140 221.16 244.95 13.42 16016 17.0150 235.54 247.51 13.88 16017 17.0160 242.41 250.39 14.09 16018 17.0170 229.58 253.61 13.73 16019 17.0180 242.40 257.21 14.09 16020 17.0190 255.42 261.20 14.37 16021 17.0200 233.92 265.60 13.84 16022 17.0210 265.96 270.38 14.70 16023 17.0220 254.71 275.46 14.38 16024 17.0230 240.86 280.76 14.01 16025 17.0240 282.29 286.06 15.13 16026 17.0250 253.57 291.11 14.32 16027 17.0260 263.94 295.58 14.67 16028 17.0270 293.90 299.13 15.44 16029 17.0280 284.33 301.40 15.22 16030 17.0290 258.71 302.15 14.49 16031 17.0300 263.09 301.31 14.61 16032 17.0310 279.68 298.96 15.09 16033 17.0320 290.57 295.35 15.41 16034 17.0330 259.45 290.79 14.57 16035 17.0340 267.53 285.68 14.75 16036 17.0350 245.83 280.33 14.17 16037 17.0360 255.06 274.98 14.33 16038 17.0370 235.03 269.84 13.89 16039 17.0380 241.33 265.02 14.00 16040 17.0390 246.19 260.58 14.18 16041 17.0400 235.72 256.54 13.87 16042 17.0410 236.99 252.89 13.99 16043 17.0420 252.73 249.63 14.30 16044 17.0430 226.94 246.71 13.56 16045 17.0440 227.41 244.10 13.58 16046 17.0450 232.69 241.78 13.75 16047 17.0460 233.36 239.70 13.84 16048 17.0470 225.98 237.85 13.59 16049 17.0480 219.60 236.19 13.32 16050 17.0490 204.70 234.71 12.92 16051 17.0500 204.16 233.37 12.91 16052 17.0510 201.03 232.17 12.87 16053 17.0520 225.69 231.09 13.60 16054 17.0530 222.95 230.11 13.52 16055 17.0540 221.92 229.22 13.44 16056 17.0550 235.35 228.41 13.91 16057 17.0560 221.09 227.68 13.49 16058 17.0570 216.72 227.00 13.29 16059 17.0580 195.44 226.39 12.62 16060 17.0590 195.16 225.82 12.64 16061 17.0600 216.06 225.30 13.26 16062 17.0610 210.61 224.82 13.10 16063 17.0620 216.73 222.15 13.24 16064 17.0630 212.90 221.76 13.17 16065 17.0640 199.65 221.40 12.76 16066 17.0650 211.66 221.06 13.13 16067 17.0660 207.19 220.75 13.00 16068 17.0670 200.99 220.46 12.83 16069 17.0680 200.94 220.19 12.80 16070 17.0690 219.05 219.94 13.31 16071 17.0700 217.33 219.71 13.28 16072 17.0710 196.47 219.49 12.70 16073 17.0720 201.10 219.28 12.78 16074 17.0730 199.56 219.09 12.66 16075 17.0740 185.66 218.91 12.32 16076 17.0750 187.52 218.74 12.35 16077 17.0760 213.55 218.58 13.19 16078 17.0770 203.46 218.43 12.90 16079 17.0780 215.97 218.29 13.26 16080 17.0790 205.73 218.16 12.98 16081 17.0800 203.74 218.03 12.90 16082 17.0810 201.96 217.91 12.83 16083 17.0820 210.63 217.80 13.06 16084 17.0830 204.04 217.70 12.86 16085 17.0840 206.31 217.60 13.00 16086 17.0850 208.12 217.50 13.08 16087 17.0860 212.29 217.41 13.14 16088 17.0870 198.42 217.32 12.71 16089 17.0880 222.66 217.24 13.50 16090 17.0890 202.62 217.16 12.89 16091 17.0900 208.75 217.09 13.05 16092 17.0910 197.86 217.01 12.71 16093 17.0920 196.06 216.95 12.55 16094 17.0930 185.16 216.88 12.18 16095 17.0940 192.11 216.82 12.47 16096 17.0950 187.46 216.76 12.41 16097 17.0960 197.38 216.70 12.74 16098 17.0970 193.68 216.65 12.54 16099 17.0980 200.51 216.60 12.75 16100 17.0990 211.40 216.55 13.08 16101 17.1000 205.10 216.50 12.84 16102 17.1010 199.84 216.45 12.68 16103 17.1020 197.88 216.41 12.73 16104 17.1030 191.94 216.37 12.49 16105 17.1040 194.81 216.33 12.60 16106 17.1050 198.23 216.29 12.67 16107 17.1060 189.94 216.25 12.47 16108 17.1070 197.93 216.21 12.74 16109 17.1080 192.41 216.18 12.54 16110 17.1090 194.50 216.15 12.52 16111 17.1100 187.72 216.11 12.37 16112 17.1110 186.62 216.08 12.35 16113 17.1120 203.61 216.05 12.93 16114 17.1130 195.34 216.02 12.61 16115 17.1140 198.30 216.00 12.69 16116 17.1150 193.96 215.97 12.53 16117 17.1160 191.78 215.94 12.48 16118 17.1170 217.57 215.92 13.28 16119 17.1180 200.67 215.89 12.86 16120 17.1190 198.31 215.87 12.75 16121 17.1200 201.12 215.85 12.84 16122 17.1210 200.93 215.83 12.82 16123 17.1220 178.18 215.80 12.09 16124 17.1230 193.79 215.78 12.55 16125 17.1240 197.68 215.76 12.72 16126 17.1250 192.77 215.74 12.55 16127 17.1260 216.39 215.73 13.33 16128 17.1270 221.26 215.71 13.39 16129 17.1280 213.98 215.69 13.16 16130 17.1290 189.38 215.67 12.36 16131 17.1300 180.75 215.66 12.12 16132 17.1310 209.83 215.64 13.01 16133 17.1320 204.75 215.62 12.91 16134 17.1330 212.20 215.61 13.12 16135 17.1340 197.33 215.60 12.66 16136 17.1350 192.39 215.58 12.48 16137 17.1360 191.97 215.57 12.48 16138 17.1370 193.55 215.55 12.54 16139 17.1380 204.38 215.54 12.89 16140 17.1390 187.75 215.53 12.31 16141 17.1400 205.92 215.52 12.96 16142 17.1410 211.13 215.50 13.19 16143 17.1420 193.92 215.49 12.60 16144 17.1430 189.84 215.48 12.45 16145 17.1440 202.81 215.47 12.88 16146 17.1450 201.42 215.46 12.83 16147 17.1460 215.51 215.45 13.18 16148 17.1470 216.61 215.44 13.25 16149 17.1480 201.08 215.43 12.76 16150 17.1490 186.43 215.42 12.29 16151 17.1500 196.53 215.41 12.68 16152 17.1510 194.03 215.40 12.58 16153 17.1520 197.11 215.39 12.66 16154 17.1530 201.82 215.38 12.80 16155 17.1540 210.32 215.37 13.05 16156 17.1550 185.26 215.37 12.31 16157 17.1560 175.53 215.36 12.03 16158 17.1570 200.41 215.35 12.80 16159 17.1580 194.40 215.34 12.55 16160 17.1590 191.89 215.33 12.51 16161 17.1600 190.64 215.33 12.45 16162 17.1610 181.33 215.32 12.11 16163 17.1620 191.61 215.31 12.44 16164 17.1630 196.95 215.31 12.67 16165 17.1640 199.55 215.30 12.72 16166 17.1650 193.48 215.29 12.46 16167 17.1660 202.07 215.29 12.85 16168 17.1670 197.21 215.28 12.68 16169 17.1680 194.57 215.27 12.58 16170 17.1690 192.42 215.27 12.54 16171 17.1700 203.97 215.26 12.95 16172 17.1710 193.24 215.26 12.58 16173 17.1720 224.64 215.25 13.47 16174 17.1730 211.00 215.24 13.09 16175 17.1740 225.35 215.24 13.57 16176 17.1750 208.55 215.24 13.04 16177 17.1760 204.45 215.23 12.93 16178 17.1770 178.05 215.23 12.07 16179 17.1780 190.50 215.22 12.44 16180 17.1790 202.15 215.21 12.78 16181 17.1800 194.45 215.21 12.61 16182 17.1810 205.22 215.21 12.96 16183 17.1820 192.07 215.20 12.57 16184 17.1830 201.35 215.20 12.80 16185 17.1840 196.21 215.19 12.64 16186 17.1850 201.67 215.19 12.81 16187 17.1860 189.57 215.18 12.43 16188 17.1870 191.28 215.18 12.48 16189 17.1880 178.43 215.18 12.09 16190 17.1890 179.03 215.17 12.10 16191 17.1900 185.23 215.17 12.30 16192 17.1910 201.73 215.17 12.77 16193 17.1920 204.69 215.16 12.87 16194 17.1930 201.24 215.16 12.81 16195 17.1940 204.61 215.15 12.93 16196 17.1950 218.96 215.15 13.36 16197 17.1960 201.91 215.15 12.84 16198 17.1970 208.32 215.15 13.03 16199 17.1980 198.69 215.14 12.75 16200 17.1990 183.51 215.14 12.23 16201 17.2000 202.22 215.14 12.82 16202 17.2010 208.73 215.13 13.01 16203 17.2020 204.04 215.13 12.87 16204 17.2030 213.17 215.13 13.19 16205 17.2040 193.76 215.12 12.58 16206 17.2050 193.24 215.12 12.58 16207 17.2060 205.02 215.12 12.94 16208 17.2070 209.17 215.12 13.09 16209 17.2080 204.03 215.11 12.93 16210 17.2090 195.87 215.11 12.57 16211 17.2100 207.20 215.11 12.96 16212 17.2110 198.80 215.11 12.77 16213 17.2120 200.77 215.10 12.80 16214 17.2130 191.39 215.10 12.46 16215 17.2140 199.17 215.10 12.77 16216 17.2150 195.90 215.10 12.66 16217 17.2160 208.79 215.10 13.12 16218 17.2170 212.78 215.09 13.22 16219 17.2180 188.51 215.09 12.47 16220 17.2190 215.97 215.09 13.30 16221 17.2200 211.87 215.09 13.12 16222 17.2210 200.68 215.08 12.78 16223 17.2220 182.78 215.08 12.20 16224 17.2230 185.34 215.08 12.28 16225 17.2240 192.85 215.08 12.50 16226 17.2250 204.92 215.08 12.84 16227 17.2260 207.04 215.07 12.97 16228 17.2270 190.15 215.07 12.42 16229 17.2280 210.67 215.07 13.05 16230 17.2290 210.46 215.07 13.07 16231 17.2300 199.47 215.07 12.70 16232 17.2310 193.31 215.07 12.55 16233 17.2320 219.18 215.07 13.39 16234 17.2330 220.08 215.06 13.43 16235 17.2340 214.64 215.06 13.20 16236 17.2350 215.57 215.06 13.28 16237 17.2360 216.43 215.06 13.29 16238 17.2370 203.30 215.06 12.89 16239 17.2380 212.66 215.05 13.21 16240 17.2390 201.00 215.05 12.78 16241 17.2400 188.72 215.05 12.33 16242 17.2410 201.52 215.05 12.82 16243 17.2420 199.22 215.05 12.71 16244 17.2430 205.21 215.05 12.93 16245 17.2440 198.52 215.05 12.69 16246 17.2450 197.99 215.05 12.72 16247 17.2460 223.03 215.04 13.47 16248 17.2470 236.84 215.04 13.92 16249 17.2480 206.48 215.04 13.01 16250 17.2490 202.09 215.04 12.85 16251 17.2500 197.32 215.04 12.71 16252 17.2510 202.24 215.04 12.81 16253 17.2520 204.04 215.04 12.96 16254 17.2530 205.68 215.04 12.95 16255 17.2540 192.69 215.04 12.49 16256 17.2550 197.03 215.04 12.66 16257 17.2560 213.61 215.03 13.16 16258 17.2570 197.13 215.03 12.64 16259 17.2580 183.36 215.03 12.24 16260 17.2590 186.32 215.03 12.32 16261 17.2600 212.83 215.03 13.22 16262 17.2610 203.11 215.03 12.85 16263 17.2620 198.58 215.03 12.66 16264 17.2630 204.73 215.03 12.95 16265 17.2640 210.55 215.03 13.12 16266 17.2650 194.35 215.02 12.62 16267 17.2660 206.26 215.02 12.88 16268 17.2670 212.03 215.02 13.14 16269 17.2680 202.13 215.02 12.88 16270 17.2690 215.52 215.02 13.26 16271 17.2700 204.40 215.02 12.89 16272 17.2710 199.67 215.02 12.75 16273 17.2720 192.91 215.02 12.51 16274 17.2730 200.49 215.02 12.80 16275 17.2740 199.42 215.02 12.77 16276 17.2750 202.01 214.87 12.73 16277 17.2760 195.49 214.87 12.60 16278 17.2770 222.12 214.87 13.46 16279 17.2780 218.67 214.87 13.38 16280 17.2790 200.42 214.87 12.86 16281 17.2800 220.89 214.88 13.47 16282 17.2810 222.02 214.88 13.42 16283 17.2820 205.20 214.88 12.93 16284 17.2830 194.05 214.88 12.61 16285 17.2840 188.73 214.88 12.40 16286 17.2850 201.20 214.88 12.82 16287 17.2860 200.19 214.88 12.84 16288 17.2870 199.49 214.88 12.78 16289 17.2880 211.05 214.88 13.11 16290 17.2890 214.24 214.88 13.24 16291 17.2900 202.84 214.88 12.84 16292 17.2910 208.46 214.88 12.99 16293 17.2920 206.04 214.88 12.94 16294 17.2930 207.29 214.88 12.97 16295 17.2940 211.64 214.88 13.14 16296 17.2950 213.90 214.88 13.17 16297 17.2960 220.44 214.88 13.45 16298 17.2970 209.10 214.88 13.07 16299 17.2980 209.99 214.88 13.12 16300 17.2990 207.90 214.88 13.02 16301 17.3000 207.46 214.88 13.02 16302 17.3010 213.42 214.88 13.23 16303 17.3020 229.47 214.89 13.62 16304 17.3030 216.79 214.89 13.32 16305 17.3040 202.29 214.89 12.97 16306 17.3050 195.67 214.89 12.67 16307 17.3060 206.51 214.89 12.98 16308 17.3070 207.93 214.89 13.00 16309 17.3080 190.46 214.89 12.40 16310 17.3090 197.25 214.89 12.62 16311 17.3100 211.32 214.89 13.05 16312 17.3110 196.49 214.89 12.61 16313 17.3120 197.58 214.89 12.71 16314 17.3130 226.33 214.89 13.60 16315 17.3140 217.40 214.89 13.23 16316 17.3150 206.98 214.89 12.92 16317 17.3160 201.00 214.89 12.75 16318 17.3170 222.61 214.89 13.44 16319 17.3180 215.95 214.89 13.30 16320 17.3190 246.43 214.89 14.21 16321 17.3200 229.93 214.89 13.72 16322 17.3210 225.38 214.90 13.53 16323 17.3220 211.39 214.90 13.14 16324 17.3230 242.56 214.90 14.05 16325 17.3240 229.98 214.90 13.71 16326 17.3250 234.74 214.90 13.86 16327 17.3260 228.55 214.90 13.61 16328 17.3270 251.31 214.90 14.33 16329 17.3280 232.36 214.90 13.80 16330 17.3290 226.57 214.90 13.59 16331 17.3300 233.51 214.90 13.77 16332 17.3310 207.30 214.90 13.03 16333 17.3320 202.13 214.90 12.86 16334 17.3330 231.69 214.90 13.71 16335 17.3340 239.82 214.90 13.97 16336 17.3350 203.13 214.90 12.91 16337 17.3360 212.84 214.90 13.18 16338 17.3370 217.53 214.90 13.27 16339 17.3380 203.94 214.90 12.91 16340 17.3390 223.81 214.90 13.44 16341 17.3400 223.76 214.90 13.54 16342 17.3410 219.73 214.90 13.40 16343 17.3420 205.49 214.90 12.93 16344 17.3430 209.60 214.91 13.10 16345 17.3440 208.31 214.91 13.03 16346 17.3450 202.19 214.91 12.89 16347 17.3460 197.13 214.91 12.62 16348 17.3470 193.69 214.91 12.56 16349 17.3480 204.73 214.91 12.89 16350 17.3490 198.58 214.91 12.73 16351 17.3500 205.86 214.91 12.87 16352 17.3510 206.17 214.91 12.94 16353 17.3520 216.48 214.91 13.23 16354 17.3530 216.05 214.91 13.30 16355 17.3540 198.29 214.91 12.73 16356 17.3550 190.87 214.91 12.44 16357 17.3560 210.82 214.91 13.03 16358 17.3570 195.02 214.91 12.62 16359 17.3580 213.06 214.91 13.18 16360 17.3590 199.90 214.91 12.76 16361 17.3600 213.73 214.91 13.19 16362 17.3610 208.35 214.91 13.04 16363 17.3620 216.76 214.91 13.25 16364 17.3630 204.64 214.92 12.88 16365 17.3640 211.74 214.92 13.17 16366 17.3650 202.87 214.92 12.86 16367 17.3660 202.68 214.92 12.82 16368 17.3670 209.90 214.92 13.10 16369 17.3680 217.56 214.92 13.34 16370 17.3690 213.80 214.92 13.21 16371 17.3700 210.59 214.92 13.08 16372 17.3710 207.57 214.92 13.01 16373 17.3720 188.67 214.92 12.38 16374 17.3730 186.89 214.92 12.40 16375 17.3740 214.23 214.92 13.17 16376 17.3750 185.76 214.92 12.24 16377 17.3760 205.52 214.92 12.89 16378 17.3770 207.16 214.92 12.91 16379 17.3780 200.34 214.92 12.71 16380 17.3790 211.63 214.92 13.11 16381 17.3800 222.70 214.92 13.48 16382 17.3810 206.09 214.93 12.94 16383 17.3820 190.29 214.93 12.46 16384 17.3830 211.27 214.93 13.08 16385 17.3840 202.13 214.93 12.86 16386 17.3850 216.47 214.93 13.26 16387 17.3860 228.04 214.93 13.59 16388 17.3870 233.55 214.93 13.79 16389 17.3880 210.78 214.93 13.08 16390 17.3890 207.94 214.93 13.01 16391 17.3900 204.80 214.93 12.91 16392 17.3910 202.32 214.93 12.74 16393 17.3920 212.84 214.93 13.10 16394 17.3930 212.12 214.93 13.09 16395 17.3940 217.45 214.93 13.29 16396 17.3950 208.59 214.93 13.04 16397 17.3960 213.25 214.93 13.10 16398 17.3970 200.45 214.93 12.72 16399 17.3980 216.02 214.93 13.32 16400 17.3990 205.66 214.93 12.94 16401 17.4000 191.71 214.93 12.51 16402 17.4010 199.47 214.93 12.72 16403 17.4020 198.85 214.93 12.73 16404 17.4030 209.07 214.94 13.04 16405 17.4040 219.35 214.94 13.43 16406 17.4050 201.40 214.94 12.81 16407 17.4060 208.34 214.94 13.00 16408 17.4070 197.65 214.94 12.70 16409 17.4080 209.60 214.94 13.09 16410 17.4090 219.86 214.94 13.45 16411 17.4100 202.74 214.94 12.93 16412 17.4110 200.12 214.94 12.78 16413 17.4120 209.61 214.94 13.09 16414 17.4130 196.86 214.94 12.73 16415 17.4140 203.15 214.94 12.87 16416 17.4150 203.87 214.94 12.83 16417 17.4160 217.00 214.94 13.33 16418 17.4170 220.31 214.94 13.44 16419 17.4180 210.38 214.94 13.08 16420 17.4190 197.39 214.94 12.67 16421 17.4200 202.68 214.94 12.86 16422 17.4210 219.13 214.95 13.40 16423 17.4220 229.92 214.95 13.71 16424 17.4230 222.61 214.95 13.48 16425 17.4240 204.32 214.95 12.89 16426 17.4250 199.94 214.95 12.76 16427 17.4260 194.93 214.95 12.62 16428 17.4270 206.41 214.95 12.93 16429 17.4280 187.76 214.95 12.38 16430 17.4290 199.48 214.95 12.80 16431 17.4300 228.56 214.95 13.61 16432 17.4310 206.23 214.95 12.93 16433 17.4320 193.84 214.95 12.59 16434 17.4330 227.57 214.95 13.70 16435 17.4340 212.27 214.95 13.18 16436 17.4350 210.47 214.95 13.15 16437 17.4360 214.47 214.95 13.23 16438 17.4370 202.27 214.95 12.84 16439 17.4380 207.47 214.95 13.02 16440 17.4390 206.37 214.95 12.98 16441 17.4400 202.89 214.95 12.83 16442 17.4410 196.05 214.96 12.75 16443 17.4420 190.89 214.96 12.51 16444 17.4430 200.99 214.96 12.78 16445 17.4440 207.38 214.96 12.98 16446 17.4450 205.16 214.96 12.96 16447 17.4460 227.20 214.96 13.61 16448 17.4470 209.81 214.96 12.99 16449 17.4480 192.76 214.96 12.50 16450 17.4490 194.12 214.96 12.57 16451 17.4500 207.02 214.96 12.99 16452 17.4510 198.04 214.96 12.71 16453 17.4520 182.52 214.96 12.21 16454 17.4530 192.82 214.96 12.56 16455 17.4540 216.79 214.96 13.23 16456 17.4550 199.66 214.96 12.75 16457 17.4560 216.06 214.96 13.25 16458 17.4570 198.72 214.96 12.77 16459 17.4580 194.90 214.96 12.70 16460 17.4590 206.06 214.96 12.93 16461 17.4600 216.78 214.96 13.28 16462 17.4610 211.67 214.96 13.11 16463 17.4620 207.90 214.96 12.95 16464 17.4630 199.66 215.43 12.73 16465 17.4640 194.96 215.43 12.56 16466 17.4650 200.72 215.43 12.75 16467 17.4660 185.20 215.44 12.25 16468 17.4670 202.60 215.44 12.78 16469 17.4680 200.94 215.45 12.77 16470 17.4690 190.54 215.45 12.47 16471 17.4700 209.79 215.45 13.09 16472 17.4710 192.56 215.46 12.57 16473 17.4720 227.01 215.46 13.55 16474 17.4730 206.40 215.47 12.98 16475 17.4740 204.09 215.47 12.90 16476 17.4750 206.92 215.48 13.08 16477 17.4760 198.14 215.48 12.73 16478 17.4770 183.65 215.48 12.23 16479 17.4780 201.80 215.49 12.80 16480 17.4790 198.52 215.49 12.69 16481 17.4800 202.11 215.50 12.83 16482 17.4810 191.49 215.50 12.50 16483 17.4820 200.91 215.51 12.72 16484 17.4830 194.60 215.51 12.57 16485 17.4840 201.81 215.52 12.76 16486 17.4850 198.71 215.52 12.77 16487 17.4860 205.73 215.53 12.94 16488 17.4870 185.88 215.53 12.35 16489 17.4880 192.91 215.54 12.54 16490 17.4890 190.99 215.54 12.45 16491 17.4900 198.75 215.55 12.73 16492 17.4910 173.08 215.55 11.83 16493 17.4920 185.37 215.56 12.27 16494 17.4930 200.75 215.56 12.77 16495 17.4940 218.44 215.57 13.29 16496 17.4950 186.00 215.57 12.30 16497 17.4960 168.32 215.58 11.76 16498 17.4970 193.21 215.59 12.54 16499 17.4980 189.14 215.59 12.43 16500 17.4990 183.01 215.60 12.23 16501 17.5000 204.74 215.60 12.90 16502 17.5010 211.37 215.61 13.06 16503 17.5020 214.08 215.62 13.18 16504 17.5030 216.38 215.62 13.24 16505 17.5040 205.68 215.63 12.90 16506 17.5050 215.15 215.63 13.27 16507 17.5060 215.36 215.64 13.24 16508 17.5070 216.34 215.65 13.29 16509 17.5080 233.37 215.65 13.79 16510 17.5090 200.02 215.66 12.76 16511 17.5100 177.01 215.67 11.96 16512 17.5110 182.22 215.67 12.21 16513 17.5120 206.23 215.68 12.93 16514 17.5130 213.29 215.69 13.19 16515 17.5140 207.91 215.69 13.01 16516 17.5150 210.51 215.70 13.06 16517 17.5160 214.69 215.71 13.23 16518 17.5170 206.61 215.72 13.01 16519 17.5180 191.50 215.72 12.48 16520 17.5190 204.47 215.73 12.88 16521 17.5200 195.56 215.74 12.64 16522 17.5210 191.92 215.75 12.42 16523 17.5220 184.63 215.75 12.21 16524 17.5230 213.45 215.76 13.19 16525 17.5240 213.01 215.77 13.21 16526 17.5250 198.26 215.78 12.64 16527 17.5260 189.93 215.79 12.46 16528 17.5270 206.97 215.79 13.00 16529 17.5280 203.27 215.80 12.93 16530 17.5290 200.42 215.81 12.81 16531 17.5300 204.80 215.82 12.94 16532 17.5310 189.37 215.83 12.47 16533 17.5320 206.75 215.84 13.02 16534 17.5330 204.37 215.85 12.88 16535 17.5340 190.18 215.85 12.37 16536 17.5350 187.99 215.87 12.35 16537 17.5360 201.62 215.87 12.85 16538 17.5370 216.59 215.88 13.27 16539 17.5380 207.32 215.89 13.06 16540 17.5390 199.16 215.90 12.69 16541 17.5400 210.31 215.91 13.03 16542 17.5410 194.45 215.92 12.58 16543 17.5420 208.47 215.93 12.97 16544 17.5430 192.93 215.94 12.56 16545 17.5440 195.95 215.96 12.64 16546 17.5450 200.34 215.97 12.78 16547 17.5460 203.71 215.98 12.89 16548 17.5470 202.37 215.99 12.86 16549 17.5480 215.31 216.00 13.20 16550 17.5490 208.60 216.01 12.97 16551 17.5500 200.69 216.02 12.76 16552 17.5510 196.33 216.03 12.65 16553 17.5520 187.40 216.05 12.34 16554 17.5530 193.69 216.06 12.56 16555 17.5540 205.45 216.07 12.92 16556 17.5550 211.80 216.08 13.15 16557 17.5560 200.69 216.10 12.83 16558 17.5570 197.98 216.11 12.66 16559 17.5580 197.23 216.12 12.65 16560 17.5590 192.76 216.14 12.49 16561 17.5600 193.34 216.15 12.51 16562 17.5610 210.80 216.16 13.11 16563 17.5620 211.33 216.18 13.12 16564 17.5630 209.66 216.19 13.03 16565 17.5640 195.33 216.21 12.57 16566 17.5650 191.93 216.22 12.52 16567 17.5660 196.52 216.24 12.67 16568 17.5670 190.15 216.25 12.51 16569 17.5680 185.76 216.27 12.33 16570 17.5690 212.02 216.29 13.17 16571 17.5700 225.57 216.30 13.56 16572 17.5710 199.58 216.32 12.77 16573 17.5720 210.73 216.34 13.07 16574 17.5730 204.69 216.35 12.97 16575 17.5740 206.28 216.37 13.00 16576 17.5750 200.13 216.39 12.82 16577 17.5760 195.69 216.41 12.62 16578 17.5770 193.21 216.43 12.49 16579 17.5780 181.58 216.45 12.11 16580 17.5790 200.04 216.46 12.72 16581 17.5800 218.84 216.49 13.35 16582 17.5810 196.95 216.51 12.61 16583 17.5820 195.58 216.52 12.59 16584 17.5830 197.15 216.55 12.64 16585 17.5840 197.16 216.57 12.62 16586 17.5850 204.23 216.59 12.89 16587 17.5860 208.87 216.61 13.09 16588 17.5870 222.77 216.63 13.50 16589 17.5880 222.70 216.66 13.51 16590 17.5890 203.77 216.68 12.87 16591 17.5900 205.89 216.71 12.95 16592 17.5910 219.05 216.73 13.35 16593 17.5920 211.28 216.76 13.11 16594 17.5930 219.57 216.78 13.40 16595 17.5940 214.23 216.81 13.20 16596 17.5950 203.40 216.84 12.88 16597 17.5960 194.55 216.86 12.58 16598 17.5970 205.47 216.89 12.95 16599 17.5980 197.78 216.92 12.76 16600 17.5990 193.44 216.95 12.55 16601 17.6000 203.78 216.98 12.88 16602 17.6010 218.19 217.01 13.29 16603 17.6020 208.59 217.04 13.08 16604 17.6030 204.18 217.07 12.95 16605 17.6040 217.35 217.11 13.26 16606 17.6050 212.62 217.14 13.15 16607 17.6060 183.97 217.18 12.32 16608 17.6070 203.98 217.21 12.90 16609 17.6080 229.79 217.25 13.65 16610 17.6090 227.36 217.29 13.62 16611 17.6100 219.52 217.32 13.40 16612 17.6110 223.29 217.36 13.49 16613 17.6120 204.47 217.40 12.92 16614 17.6130 204.34 217.44 12.97 16615 17.6140 213.34 217.49 13.22 16616 17.6150 228.29 217.53 13.63 16617 17.6160 227.10 217.57 13.52 16618 17.6170 235.97 217.62 13.87 16619 17.6180 215.70 217.66 13.27 16620 17.6190 213.67 217.71 13.20 16621 17.6200 199.89 217.76 12.79 16622 17.6210 224.21 217.81 13.50 16623 17.6220 212.69 217.87 13.17 16624 17.6230 206.20 217.92 12.91 16625 17.6240 203.39 217.97 12.90 16626 17.6250 212.85 218.03 13.13 16627 17.6260 214.80 218.09 13.17 16628 17.6270 207.73 218.15 12.99 16629 17.6280 226.41 218.21 13.51 16630 17.6290 231.90 218.27 13.67 16631 17.6300 211.43 218.34 13.15 16632 17.6310 227.63 218.40 13.60 16633 17.6320 218.00 218.47 13.35 16634 17.6330 203.69 218.55 12.88 16635 17.6340 205.77 218.62 12.94 16636 17.6350 226.19 218.70 13.59 16637 17.6360 219.10 218.77 13.35 16638 17.6370 202.45 218.85 12.76 16639 17.6380 208.10 218.94 12.99 16640 17.6390 231.21 219.02 13.72 16641 17.6400 208.67 219.11 12.97 16642 17.6410 205.38 219.21 12.90 16643 17.6420 224.97 219.30 13.57 16644 17.6430 221.21 219.40 13.44 16645 17.6440 215.03 219.50 13.24 16646 17.6450 231.91 219.60 13.71 16647 17.6460 210.66 219.71 13.10 16648 17.6470 210.34 219.83 13.07 16649 17.6480 208.64 219.94 13.09 16650 17.6490 234.27 220.07 13.82 16651 17.6500 208.62 220.19 13.02 16652 17.6510 216.08 220.32 13.20 16653 17.6520 214.32 220.46 13.18 16654 17.6530 200.39 220.60 12.81 16655 17.6540 227.48 220.74 13.55 16656 17.6550 218.83 220.90 13.34 16657 17.6560 221.90 221.05 13.45 16658 17.6570 228.60 221.22 13.66 16659 17.6580 236.68 221.39 13.90 16660 17.6590 234.76 221.57 13.87 16661 17.6600 252.47 221.76 14.35 16662 17.6610 213.67 221.95 13.23 16663 17.6620 216.95 222.15 13.27 16664 17.6630 207.55 222.36 12.93 16665 17.6640 221.22 222.58 13.39 16666 17.6650 222.12 222.82 13.43 16667 17.6660 219.68 223.06 13.31 16668 17.6670 225.87 223.31 13.54 16669 17.6680 230.91 223.57 13.70 16670 17.6690 237.20 223.85 13.86 16671 17.6700 216.93 224.14 13.23 16672 17.6710 204.39 224.45 12.93 16673 17.6720 227.88 224.77 13.64 16674 17.6730 239.33 225.11 13.92 16675 17.6740 230.18 225.46 13.70 16676 17.6750 224.92 225.84 13.58 16677 17.6760 220.09 226.23 13.42 16678 17.6770 230.83 226.65 13.66 16679 17.6780 230.31 227.09 13.71 16680 17.6790 219.96 227.55 13.39 16681 17.6800 230.64 228.05 13.72 16682 17.6810 238.22 228.57 13.97 16683 17.6820 236.12 229.12 13.87 16684 17.6830 229.49 229.71 13.68 16685 17.6840 230.97 230.33 13.74 16686 17.6850 205.16 230.99 12.96 16687 17.6860 222.34 231.70 13.46 16688 17.6870 240.58 232.45 13.91 16689 17.6880 229.22 233.25 13.70 16690 17.6890 219.57 234.11 13.37 16691 17.6900 224.66 235.03 13.50 16692 17.6910 229.24 236.01 13.70 16693 17.6920 229.99 237.07 13.69 16694 17.6930 221.81 238.20 13.42 16695 17.6940 220.67 239.43 13.38 16696 17.6950 224.28 240.75 13.53 16697 17.6960 238.93 242.17 13.95 16698 17.6970 243.42 243.72 14.14 16699 17.6980 246.34 245.39 14.19 16700 17.6990 223.96 247.21 13.58 16701 17.7000 238.90 249.18 13.95 16702 17.7010 246.69 251.34 14.23 16703 17.7020 246.10 253.69 14.19 16704 17.7030 245.69 256.26 14.18 16705 17.7040 246.28 259.10 14.23 16706 17.7050 253.69 262.20 14.33 16707 17.7060 246.06 265.61 14.12 16708 17.7070 252.73 269.39 14.30 16709 17.7080 275.95 273.55 14.96 16710 17.7090 302.58 278.17 15.70 16711 17.7100 291.26 283.28 15.32 16712 17.7110 277.09 288.97 15.02 16713 17.7120 295.59 295.28 15.52 16714 17.7130 278.40 302.30 15.02 16715 17.7140 297.99 310.11 15.60 16716 17.7150 313.66 318.80 16.01 16717 17.7160 309.81 328.41 15.85 16718 17.7170 325.14 339.03 16.32 16719 17.7180 317.90 350.76 16.16 16720 17.7190 328.38 363.50 16.33 16721 17.7200 347.26 377.26 16.85 16722 17.7210 364.80 391.94 17.23 16723 17.7220 382.49 407.18 17.69 16724 17.7230 401.26 422.62 18.12 16725 17.7240 423.05 437.73 18.57 16726 17.7250 452.96 451.66 19.19 16727 17.7260 441.93 463.61 18.97 16728 17.7270 428.26 472.71 18.70 16729 17.7280 434.22 478.18 18.80 16730 17.7290 452.27 479.51 19.28 16731 17.7300 445.83 476.60 19.07 16732 17.7310 442.90 469.70 18.95 16733 17.7320 409.61 459.43 18.29 16734 17.7330 401.00 446.64 18.05 16735 17.7340 417.93 432.19 18.45 16736 17.7350 392.89 416.86 17.94 16737 17.7360 376.02 401.43 17.56 16738 17.7370 360.57 386.38 17.22 16739 17.7380 356.67 372.01 17.04 16740 17.7390 353.73 358.62 16.97 16741 17.7400 353.27 346.27 17.00 16742 17.7410 353.11 334.97 17.00 16743 17.7420 326.49 324.71 16.32 16744 17.7430 302.47 315.46 15.71 16745 17.7440 302.62 307.11 15.70 16746 17.7450 295.97 299.60 15.53 16747 17.7460 304.90 292.86 15.77 16748 17.7470 305.80 286.79 15.81 16749 17.7480 307.81 281.33 15.81 16750 17.7490 276.33 276.41 14.99 16751 17.7500 269.61 271.97 14.81 16752 17.7510 250.47 267.96 14.21 16753 17.7520 258.86 264.32 14.51 16754 17.7530 301.80 261.03 15.69 16755 17.7540 254.37 258.04 14.39 16756 17.7550 224.91 255.31 13.53 16757 17.7560 249.22 252.82 14.22 16758 17.7570 245.92 250.54 14.11 16759 17.7580 251.24 248.46 14.35 16760 17.7590 246.08 246.54 14.21 16761 17.7600 236.38 244.78 13.90 16762 17.7610 256.16 243.16 14.45 16763 17.7620 255.15 241.66 14.42 16764 17.7630 270.08 240.28 14.82 16765 17.7640 236.49 239.00 13.93 16766 17.7650 256.44 237.81 14.48 16767 17.7660 239.40 236.70 13.98 16768 17.7670 220.99 235.67 13.44 16769 17.7680 259.14 234.72 14.56 16770 17.7690 256.49 233.82 14.46 16771 17.7700 240.44 232.99 14.02 16772 17.7710 248.94 232.20 14.24 16773 17.7720 261.34 231.47 14.62 16774 17.7730 243.80 230.78 14.14 16775 17.7740 245.33 230.14 14.15 16776 17.7750 217.93 229.53 13.33 16777 17.7760 226.57 228.96 13.59 16778 17.7770 240.61 228.42 14.00 16779 17.7780 240.38 227.91 14.00 16780 17.7790 236.26 227.43 13.90 16781 17.7800 247.40 226.98 14.17 16782 17.7810 209.11 226.55 13.03 16783 17.7820 203.01 227.52 12.81 16784 17.7830 223.78 227.14 13.51 16785 17.7840 220.40 226.79 13.38 16786 17.7850 228.27 226.45 13.62 16787 17.7860 236.17 226.13 13.91 16788 17.7870 244.60 225.82 14.16 16789 17.7880 232.33 225.53 13.76 16790 17.7890 221.31 225.26 13.45 16791 17.7900 219.96 225.00 13.40 16792 17.7910 209.56 224.75 13.01 16793 17.7920 232.07 224.51 13.75 16794 17.7930 224.35 224.29 13.50 16795 17.7940 236.34 224.07 13.90 16796 17.7950 216.15 223.87 13.26 16797 17.7960 216.63 223.67 13.27 16798 17.7970 215.43 223.48 13.25 16799 17.7980 226.57 223.31 13.55 16800 17.7990 214.99 223.13 13.23 16801 17.8000 221.27 222.97 13.48 16802 17.8010 216.42 222.82 13.27 16803 17.8020 215.25 222.67 13.22 16804 17.8030 223.96 222.52 13.53 16805 17.8040 210.30 222.39 13.17 16806 17.8050 217.16 222.26 13.31 16807 17.8060 219.48 222.13 13.39 16808 17.8070 228.50 222.01 13.63 16809 17.8080 211.36 221.90 13.06 16810 17.8090 236.03 221.79 13.84 16811 17.8100 224.93 221.68 13.58 16812 17.8110 233.75 221.58 13.78 16813 17.8120 216.72 221.48 13.27 16814 17.8130 227.34 221.39 13.62 16815 17.8140 221.02 221.30 13.41 16816 17.8150 216.41 221.22 13.32 16817 17.8160 210.58 221.13 13.07 16818 17.8170 223.32 221.06 13.41 16819 17.8180 220.53 220.98 13.39 16820 17.8190 219.75 220.91 13.48 16821 17.8200 218.77 220.84 13.35 16822 17.8210 237.87 220.77 13.88 16823 17.8220 232.29 220.71 13.72 16824 17.8230 219.08 220.65 13.33 16825 17.8240 230.35 220.59 13.62 16826 17.8250 214.15 220.54 13.22 16827 17.8260 205.96 220.48 12.89 16828 17.8270 216.96 220.43 13.28 16829 17.8280 229.26 220.38 13.67 16830 17.8290 222.88 220.33 13.46 16831 17.8300 201.66 220.29 12.81 16832 17.8310 222.19 220.25 13.42 16833 17.8320 236.85 220.21 13.83 16834 17.8330 229.26 220.17 13.68 16835 17.8340 221.80 220.13 13.47 16836 17.8350 200.55 220.09 12.80 16837 17.8360 224.38 220.06 13.48 16838 17.8370 226.06 220.03 13.62 16839 17.8380 221.64 220.00 13.44 16840 17.8390 224.55 219.97 13.52 16841 17.8400 218.15 219.94 13.36 16842 17.8410 218.98 219.92 13.34 16843 17.8420 220.11 219.89 13.40 16844 17.8430 234.95 219.87 13.80 16845 17.8440 204.36 219.85 12.93 16846 17.8450 227.89 219.83 13.62 16847 17.8460 214.42 219.81 13.22 16848 17.8470 212.68 219.79 13.18 16849 17.8480 218.26 219.77 13.32 16850 17.8490 223.28 219.76 13.45 16851 17.8500 218.90 219.75 13.36 16852 17.8510 210.23 219.73 13.05 16853 17.8520 218.88 219.72 13.31 16854 17.8530 216.71 219.71 13.29 16855 17.8540 204.30 219.70 12.93 16856 17.8550 214.59 219.70 13.22 16857 17.8560 201.01 219.69 12.82 16858 17.8570 208.09 219.68 13.01 16859 17.8580 201.25 219.68 12.77 16860 17.8590 221.35 219.67 13.43 16861 17.8600 216.94 219.67 13.30 16862 17.8610 229.23 219.67 13.64 16863 17.8620 208.27 219.67 13.04 16864 17.8630 219.31 219.67 13.37 16865 17.8640 216.63 219.67 13.35 16866 17.8650 223.32 219.67 13.51 16867 17.8660 210.62 219.67 13.11 16868 17.8670 228.16 219.68 13.59 16869 17.8680 213.43 219.68 13.20 16870 17.8690 221.64 219.69 13.41 16871 17.8700 212.91 219.70 13.16 16872 17.8710 218.97 219.70 13.31 16873 17.8720 208.53 219.71 13.00 16874 17.8730 222.93 219.72 13.52 16875 17.8740 223.71 219.73 13.53 16876 17.8750 232.80 219.74 13.71 16877 17.8760 202.85 219.76 12.91 16878 17.8770 205.92 219.77 12.99 16879 17.8780 214.22 219.79 13.26 16880 17.8790 223.76 219.80 13.52 16881 17.8800 219.73 219.82 13.38 16882 17.8810 212.66 219.83 13.20 16883 17.8820 217.64 219.85 13.29 16884 17.8830 205.20 219.87 12.93 16885 17.8840 217.69 219.89 13.24 16886 17.8850 196.86 219.91 12.63 16887 17.8860 200.47 219.93 12.77 16888 17.8870 217.98 219.96 13.37 16889 17.8880 223.78 219.98 13.56 16890 17.8890 197.14 220.00 12.62 16891 17.8900 200.24 220.03 12.73 16892 17.8910 193.96 220.06 12.54 16893 17.8920 209.95 220.08 13.06 16894 17.8930 224.90 220.11 13.52 16895 17.8940 207.69 220.14 13.00 16896 17.8950 209.49 220.17 13.06 16897 17.8960 202.63 220.21 12.85 16898 17.8970 209.26 220.24 13.03 16899 17.8980 215.08 220.27 13.24 16900 17.8990 211.77 220.31 13.16 16901 17.9000 208.44 220.34 13.05 16902 17.9010 203.40 220.38 12.92 16903 17.9020 219.01 220.42 13.41 16904 17.9030 205.61 220.46 13.02 16905 17.9040 229.69 220.50 13.70 16906 17.9050 217.20 220.54 13.34 16907 17.9060 212.68 220.58 13.18 16908 17.9070 213.88 220.63 13.22 16909 17.9080 228.30 220.67 13.63 16910 17.9090 219.28 220.72 13.35 16911 17.9100 230.75 220.77 13.71 16912 17.9110 208.97 220.82 13.01 16913 17.9120 202.06 220.87 12.83 16914 17.9130 225.74 220.92 13.57 16915 17.9140 212.12 220.97 13.13 16916 17.9150 227.11 221.03 13.60 16917 17.9160 201.11 221.08 12.74 16918 17.9170 210.97 221.14 13.11 16919 17.9180 224.78 221.20 13.58 16920 17.9190 201.00 221.26 12.82 16921 17.9200 204.18 221.32 12.95 16922 17.9210 221.16 221.39 13.42 16923 17.9220 188.38 221.45 12.44 16924 17.9230 217.93 221.52 13.27 16925 17.9240 218.29 221.59 13.32 16926 17.9250 228.69 221.66 13.62 16927 17.9260 210.03 221.73 13.10 16928 17.9270 218.36 221.81 13.34 16929 17.9280 215.99 221.88 13.22 16930 17.9290 199.24 221.96 12.78 16931 17.9300 221.68 222.04 13.39 16932 17.9310 217.48 222.12 13.29 16933 17.9320 236.48 222.21 13.92 16934 17.9330 214.24 222.30 13.22 16935 17.9340 218.56 222.39 13.28 16936 17.9350 232.20 222.48 13.76 16937 17.9360 211.34 222.57 13.17 16938 17.9370 222.40 222.67 13.43 16939 17.9380 223.14 222.77 13.44 16940 17.9390 200.85 222.87 12.78 16941 17.9400 213.64 222.97 13.20 16942 17.9410 208.86 223.08 13.04 16943 17.9420 215.46 223.19 13.18 16944 17.9430 221.06 223.30 13.40 16945 17.9440 221.01 223.42 13.44 16946 17.9450 239.50 223.54 13.97 16947 17.9460 205.04 223.66 12.91 16948 17.9470 214.24 223.78 13.10 16949 17.9480 212.73 223.91 13.13 16950 17.9490 213.27 224.04 13.11 16951 17.9500 215.61 224.18 13.27 16952 17.9510 229.81 224.32 13.68 16953 17.9520 224.56 224.46 13.58 16954 17.9530 221.90 224.61 13.55 16955 17.9540 213.23 224.76 13.30 16956 17.9550 217.82 224.92 13.31 16957 17.9560 209.95 225.08 13.02 16958 17.9570 226.66 225.24 13.58 16959 17.9580 205.94 225.41 12.92 16960 17.9590 194.41 225.59 12.58 16961 17.9600 201.75 225.77 12.79 16962 17.9610 202.62 225.95 12.76 16963 17.9620 214.60 226.14 13.20 16964 17.9630 219.03 226.34 13.40 16965 17.9640 220.25 226.54 13.40 16966 17.9650 230.27 226.75 13.65 16967 17.9660 218.56 226.97 13.32 16968 17.9670 227.54 227.19 13.59 16969 17.9680 240.77 227.42 14.01 16970 17.9690 224.91 227.65 13.51 16971 17.9700 218.54 227.90 13.31 16972 17.9710 213.90 228.15 13.17 16973 17.9720 213.51 228.41 13.25 16974 17.9730 215.22 228.68 13.22 16975 17.9740 218.95 228.96 13.30 16976 17.9750 221.92 229.24 13.44 16977 17.9760 232.48 229.54 13.73 16978 17.9770 224.91 229.85 13.57 16979 17.9780 218.87 230.16 13.27 16980 17.9790 229.18 230.49 13.57 16981 17.9800 213.46 230.83 13.20 16982 17.9810 228.01 231.18 13.65 16983 17.9820 234.41 231.55 13.81 16984 17.9830 231.30 231.93 13.71 16985 17.9840 211.39 232.32 13.11 16986 17.9850 218.84 232.72 13.32 16987 17.9860 211.92 233.15 13.23 16988 17.9870 224.85 233.58 13.51 16989 17.9880 226.06 234.04 13.54 16990 17.9890 237.16 234.51 13.83 16991 17.9900 212.81 235.00 13.18 16992 17.9910 205.42 235.51 12.96 16993 17.9920 238.61 236.04 13.99 16994 17.9930 241.05 236.60 14.07 16995 17.9940 228.53 237.17 13.63 16996 17.9950 234.51 237.77 13.82 16997 17.9960 228.51 237.94 13.70 16998 17.9970 236.28 238.60 13.87 16999 17.9980 242.63 239.28 14.07 17000 17.9990 247.71 240.00 14.18 17001 18.0000 220.41 240.75 12.74 17002 18.0010 212.10 241.53 12.52 17003 18.0020 234.80 242.34 13.11 17004 18.0030 239.42 243.20 13.29 17005 18.0040 254.70 244.09 13.70 17006 18.0050 235.90 245.03 13.22 17007 18.0060 229.16 246.01 13.02 17008 18.0070 256.07 247.05 13.79 17009 18.0080 259.21 248.13 13.89 17010 18.0090 244.08 249.27 13.46 17011 18.0100 230.52 250.47 13.00 17012 18.0110 252.00 251.73 13.64 17013 18.0120 253.00 253.07 13.70 17014 18.0130 237.34 254.47 13.25 17015 18.0140 258.40 255.95 13.75 17016 18.0150 258.56 257.52 13.79 17017 18.0160 248.22 259.18 13.50 17018 18.0170 237.17 260.93 13.23 17019 18.0180 247.32 262.79 13.51 17020 18.0190 263.37 264.76 13.93 17021 18.0200 272.38 266.85 14.16 17022 18.0210 273.97 269.08 14.16 17023 18.0220 278.19 271.45 14.36 17024 18.0230 280.94 273.98 14.41 17025 18.0240 294.20 276.67 14.75 17026 18.0250 286.65 279.54 14.51 17027 18.0260 284.86 282.62 14.53 17028 18.0270 304.12 285.92 14.93 17029 18.0280 299.84 289.45 14.82 17030 18.0290 308.67 293.26 15.10 17031 18.0300 306.82 297.35 15.03 17032 18.0310 302.99 301.74 14.93 17033 18.0320 309.10 306.50 15.11 17034 18.0330 305.91 311.64 15.00 17035 18.0340 304.36 317.19 14.96 17036 18.0350 313.14 323.23 15.18 17037 18.0360 344.02 329.77 15.92 17038 18.0370 354.68 336.91 16.17 17039 18.0380 339.71 344.67 15.81 17040 18.0390 355.46 353.15 16.16 17041 18.0400 348.51 362.45 16.05 17042 18.0410 349.32 372.61 16.06 17043 18.0420 382.06 383.77 16.78 17044 18.0430 390.74 396.05 16.99 17045 18.0440 374.86 409.58 16.69 17046 18.0450 397.98 424.46 17.11 17047 18.0460 417.41 440.92 17.54 17048 18.0470 433.33 459.11 17.92 17049 18.0480 452.51 479.17 18.26 17050 18.0490 482.99 501.38 18.93 17051 18.0500 505.36 525.86 19.33 17052 18.0510 526.66 552.89 19.70 17053 18.0520 542.34 582.60 19.99 17054 18.0530 607.98 615.05 21.19 17055 18.0540 615.70 650.41 21.33 17056 18.0550 671.54 688.52 22.27 17057 18.0560 681.66 729.04 22.42 17058 18.0570 716.80 771.50 22.95 17059 18.0580 769.19 815.19 23.84 17060 18.0590 832.55 858.56 24.78 17061 18.0600 878.57 900.12 25.49 17062 18.0610 900.85 937.99 25.80 17063 18.0620 954.23 969.72 26.50 17064 18.0630 987.66 993.27 26.95 17065 18.0640 1018.41 1006.89 27.47 17066 18.0650 1020.57 1009.42 27.52 17067 18.0660 1008.94 1000.63 27.31 17068 18.0670 1012.36 981.30 27.34 17069 18.0680 920.40 952.90 26.05 17070 18.0690 868.82 917.49 25.32 17071 18.0700 861.57 877.36 25.20 17072 18.0710 786.64 844.58 24.10 17073 18.0720 758.25 800.87 23.62 17074 18.0730 704.91 757.89 22.82 17075 18.0740 700.10 716.51 22.75 17076 18.0750 659.20 677.28 22.09 17077 18.0760 626.20 640.83 21.54 17078 18.0770 590.47 607.21 20.85 17079 18.0780 536.51 576.35 19.89 17080 18.0790 512.72 548.25 19.47 17081 18.0800 499.38 522.78 19.22 17082 18.0810 499.73 499.66 19.23 17083 18.0820 492.07 478.75 19.07 17084 18.0830 477.24 459.87 18.75 17085 18.0840 429.81 442.77 17.80 17086 18.0850 431.72 427.32 17.85 17087 18.0860 446.73 413.27 18.18 17088 18.0870 415.14 400.58 17.57 17089 18.0880 397.07 389.05 17.14 17090 18.0890 378.28 378.53 16.70 17091 18.0900 367.25 368.99 16.43 17092 18.0910 345.40 360.28 15.96 17093 18.0920 362.27 352.30 16.31 17094 18.0930 335.01 345.01 15.71 17095 18.0940 334.26 338.33 15.67 17096 18.0950 333.61 332.18 15.71 17097 18.0960 302.40 326.53 14.95 17098 18.0970 305.92 321.34 15.04 17099 18.0980 332.20 316.53 15.70 17100 18.0990 316.19 312.10 15.27 17101 18.1000 319.36 308.00 15.33 17102 18.1010 302.20 304.20 14.92 17103 18.1020 299.12 300.68 14.91 17104 18.1030 315.72 297.40 15.23 17105 18.1040 276.43 294.35 14.27 17106 18.1050 291.58 291.52 14.67 17107 18.1060 295.95 288.88 14.78 17108 18.1070 290.68 286.41 14.63 17109 18.1080 278.31 284.12 14.30 17110 18.1090 300.42 281.97 14.85 17111 18.1100 272.02 279.95 14.16 17112 18.1110 280.16 278.07 14.33 17113 18.1120 278.92 276.31 14.33 17114 18.1130 278.46 274.65 14.34 17115 18.1140 264.44 273.11 14.01 17116 18.1150 272.66 271.65 14.21 17117 18.1160 273.33 270.29 14.21 17118 18.1170 253.58 269.01 13.71 17119 18.1180 267.28 267.80 14.04 17120 18.1190 260.72 266.67 13.89 17121 18.1200 261.25 265.60 13.83 17122 18.1210 256.87 264.60 13.76 17123 18.1220 269.34 263.66 14.11 17124 18.1230 271.98 262.78 14.15 17125 18.1240 272.36 261.95 14.09 17126 18.1250 274.05 261.16 14.24 17127 18.1260 253.10 260.43 13.69 17128 18.1270 272.97 259.74 14.20 17129 18.1280 281.14 259.09 14.40 17130 18.1290 267.37 258.48 13.93 17131 18.1300 253.32 257.91 13.67 17132 18.1310 266.00 257.38 14.03 17133 18.1320 272.12 257.04 14.13 17134 18.1330 263.76 256.58 13.90 17135 18.1340 276.29 256.14 14.25 17136 18.1350 273.77 255.73 14.24 17137 18.1360 276.75 255.35 14.33 17138 18.1370 275.32 255.01 14.28 17139 18.1380 274.58 254.68 14.20 17140 18.1390 268.07 256.48 14.03 17141 18.1400 263.21 256.22 13.91 17142 18.1410 250.80 255.98 13.58 17143 18.1420 234.71 255.77 13.11 17144 18.1430 275.83 255.58 14.23 17145 18.1440 259.35 255.40 13.80 17146 18.1450 266.05 255.25 13.92 17147 18.1460 276.29 255.12 14.29 17148 18.1470 275.49 255.00 14.22 17149 18.1480 278.06 254.91 14.24 17150 18.1490 254.67 254.83 13.66 17151 18.1500 275.41 254.77 14.21 17152 18.1510 269.10 254.72 14.11 17153 18.1520 283.49 254.70 14.41 17154 18.1530 296.04 254.69 14.80 17155 18.1540 273.88 254.69 14.17 17156 18.1550 273.97 254.71 14.25 17157 18.1560 278.59 254.75 14.40 17158 18.1570 279.10 254.80 14.40 17159 18.1580 274.25 254.86 14.23 17160 18.1590 275.19 254.94 14.22 17161 18.1600 259.06 255.04 13.81 17162 18.1610 269.36 255.15 14.11 17163 18.1620 269.65 255.27 14.15 17164 18.1630 270.02 255.41 14.15 17165 18.1640 280.01 255.56 14.38 17166 18.1650 283.79 255.73 14.48 17167 18.1660 285.05 255.90 14.56 17168 18.1670 267.36 256.10 14.08 17169 18.1680 283.39 256.30 14.46 17170 18.1690 266.42 256.52 14.07 17171 18.1700 267.32 256.76 14.09 17172 18.1710 267.96 257.01 14.08 17173 18.1720 267.64 257.27 14.03 17174 18.1730 269.98 257.55 14.10 17175 18.1740 281.42 257.83 14.41 17176 18.1750 294.75 258.14 14.77 17177 18.1760 281.61 258.46 14.45 17178 18.1770 258.72 258.79 13.82 17179 18.1780 250.74 259.14 13.59 17180 18.1790 266.22 259.50 13.99 17181 18.1800 280.13 259.88 14.45 17182 18.1810 285.30 260.27 14.51 17183 18.1820 263.65 260.68 13.91 17184 18.1830 249.71 261.10 13.56 17185 18.1840 270.28 261.54 14.14 17186 18.1850 285.62 262.00 14.53 17187 18.1860 276.95 262.47 14.31 17188 18.1870 278.76 262.96 14.34 17189 18.1880 279.94 263.47 14.32 17190 18.1890 280.88 263.99 14.35 17191 18.1900 305.89 264.53 15.02 17192 18.1910 276.78 265.09 14.24 17193 18.1920 281.94 265.67 14.46 17194 18.1930 301.35 266.27 14.92 17195 18.1940 270.57 266.89 14.16 17196 18.1950 271.03 267.52 14.19 17197 18.1960 275.98 268.18 14.24 17198 18.1970 292.25 268.86 14.69 17199 18.1980 280.97 269.57 14.39 17200 18.1990 281.93 270.29 14.42 17201 18.2000 276.48 271.04 14.25 17202 18.2010 267.49 271.81 14.03 17203 18.2020 296.60 272.61 14.78 17204 18.2030 282.13 273.42 14.37 17205 18.2040 292.58 274.27 14.64 17206 18.2050 272.22 275.15 14.18 17207 18.2060 277.38 276.05 14.30 17208 18.2070 294.75 276.98 14.73 17209 18.2080 299.97 277.94 14.85 17210 18.2090 304.93 278.93 14.98 17211 18.2100 296.78 279.95 14.80 17212 18.2110 295.94 281.01 14.73 17213 18.2120 276.60 282.10 14.24 17214 18.2130 298.16 283.23 14.76 17215 18.2140 295.02 284.39 14.74 17216 18.2150 279.85 285.59 14.31 17217 18.2160 275.20 286.83 14.22 17218 18.2170 307.96 288.11 15.03 17219 18.2180 310.99 289.43 15.11 17220 18.2190 309.50 290.80 15.08 17221 18.2200 310.02 292.22 15.10 17222 18.2210 292.73 293.68 14.67 17223 18.2220 286.13 295.19 14.46 17224 18.2230 316.81 296.76 15.25 17225 18.2240 327.87 298.38 15.56 17226 18.2250 316.05 300.05 15.30 17227 18.2260 321.54 301.79 15.41 17228 18.2270 320.84 303.58 15.33 17229 18.2280 342.80 305.45 15.88 17230 18.2290 319.90 307.38 15.38 17231 18.2300 309.39 309.37 15.17 17232 18.2310 343.90 311.45 15.88 17233 18.2320 321.00 313.60 15.41 17234 18.2330 330.33 315.84 15.66 17235 18.2340 346.09 318.16 15.96 17236 18.2350 342.00 320.57 15.84 17237 18.2360 351.17 323.07 16.06 17238 18.2370 370.99 325.67 16.51 17239 18.2380 336.97 328.38 15.71 17240 18.2390 360.06 331.19 16.28 17241 18.2400 332.43 334.12 15.61 17242 18.2410 371.18 337.17 16.54 17243 18.2420 391.97 340.36 17.05 17244 18.2430 375.95 343.67 16.65 17245 18.2440 357.29 347.12 16.25 17246 18.2450 382.19 350.74 16.80 17247 18.2460 411.99 354.50 17.47 17248 18.2470 375.97 358.44 16.66 17249 18.2480 397.89 362.55 17.19 17250 18.2490 405.63 366.86 17.35 17251 18.2500 419.79 371.36 17.58 17252 18.2510 412.28 376.09 17.44 17253 18.2520 435.27 381.04 17.93 17254 18.2530 431.72 386.23 17.73 17255 18.2540 432.29 391.68 17.77 17256 18.2550 436.65 397.39 17.95 17257 18.2560 465.05 403.42 18.51 17258 18.2570 483.81 409.75 18.85 17259 18.2580 427.17 416.40 17.73 17260 18.2590 451.75 423.45 18.25 17261 18.2600 453.28 430.85 18.31 17262 18.2610 459.71 438.66 18.45 17263 18.2620 494.97 446.93 19.04 17264 18.2630 533.34 455.68 19.84 17265 18.2640 532.40 464.93 19.80 17266 18.2650 499.10 474.75 19.19 17267 18.2660 507.00 485.17 19.35 17268 18.2670 546.29 496.23 20.06 17269 18.2680 580.86 508.00 20.68 17270 18.2690 558.05 520.52 20.29 17271 18.2700 573.22 533.89 20.56 17272 18.2710 578.07 548.16 20.66 17273 18.2720 619.76 563.39 21.35 17274 18.2730 590.97 579.72 20.91 17275 18.2740 641.38 597.22 21.74 17276 18.2750 675.82 615.99 22.33 17277 18.2760 651.44 636.16 21.91 17278 18.2770 685.41 657.97 22.49 17279 18.2780 719.41 681.41 23.00 17280 18.2790 749.12 706.75 23.51 17281 18.2800 784.91 734.28 24.05 17282 18.2810 799.64 764.04 24.28 17283 18.2820 854.43 796.45 25.05 17284 18.2830 901.58 831.74 25.76 17285 18.2840 890.20 870.19 25.64 17286 18.2850 955.04 912.32 26.53 17287 18.2860 1023.38 958.42 27.50 17288 18.2870 1032.60 1009.16 27.59 17289 18.2880 1067.47 1065.04 28.02 17290 18.2890 1091.30 1126.63 28.39 17291 18.2900 1195.45 1194.89 29.67 17292 18.2910 1217.23 1270.63 30.00 17293 18.2920 1290.25 1354.70 30.87 17294 18.2930 1394.82 1448.38 32.04 17295 18.2940 1486.84 1553.40 33.10 17296 18.2950 1619.64 1670.55 34.60 17297 18.2960 1685.63 1801.89 35.30 17298 18.2970 1809.33 1949.88 36.54 17299 18.2980 1994.04 2115.62 38.39 17300 18.2990 2107.44 2301.84 39.43 17301 18.3000 2313.84 2511.24 41.28 17302 18.3010 2580.29 2745.75 43.56 17303 18.3020 2800.02 3007.24 45.46 17304 18.3030 3090.77 3296.24 47.82 17305 18.3040 3447.12 3613.38 50.46 17306 18.3050 3925.72 3955.56 53.85 17307 18.3060 4403.01 4316.18 57.00 17308 18.3070 4913.91 4685.47 60.29 17309 18.3080 5549.58 5049.05 64.05 17310 18.3090 5980.23 5383.58 66.52 17311 18.3100 6342.05 5665.69 68.53 17312 18.3110 6523.96 5870.82 69.49 17313 18.3120 6531.98 5976.66 69.55 17314 18.3130 6470.48 5972.35 69.24 17315 18.3140 6132.26 5858.14 67.40 17316 18.3150 5663.77 5646.65 64.69 17317 18.3160 5206.42 5359.93 62.08 17318 18.3170 4763.52 5022.35 59.34 17319 18.3180 4352.92 4658.85 56.74 17320 18.3190 3995.56 4290.57 54.38 17321 18.3200 3600.54 3931.42 51.62 17322 18.3210 3360.58 3592.58 49.83 17323 18.3220 3050.61 3278.52 47.46 17324 18.3230 2829.34 2992.25 45.73 17325 18.3240 2541.61 2734.68 43.29 17326 18.3250 2422.07 2502.85 42.25 17327 18.3260 2188.48 2296.71 40.21 17328 18.3270 2032.97 2113.20 38.79 17329 18.3280 1870.51 1950.00 37.16 17330 18.3290 1721.55 1804.39 35.64 17331 18.3300 1649.90 1675.27 34.93 17332 18.3310 1493.19 1560.03 33.25 17333 18.3320 1438.22 1457.20 32.57 17334 18.3330 1355.42 1365.42 31.62 17335 18.3340 1326.61 1283.05 31.31 17336 18.3350 1243.92 1209.23 30.28 17337 18.3360 1152.37 1142.69 29.12 17338 18.3370 1094.26 1082.72 28.39 17339 18.3380 1032.75 1028.62 27.58 17340 18.3390 995.73 979.57 27.03 17341 18.3400 943.83 935.08 26.38 17342 18.3410 956.37 894.73 26.56 17343 18.3420 923.65 858.01 26.14 17344 18.3430 882.43 824.42 25.54 17345 18.3440 837.43 793.88 24.92 17346 18.3450 791.13 765.97 24.20 17347 18.3460 773.05 740.36 23.88 17348 18.3470 766.41 717.01 23.75 17349 18.3480 681.69 694.25 22.40 17350 18.3490 679.49 674.62 22.37 17351 18.3500 680.35 656.70 22.45 17352 18.3510 690.27 640.29 22.61 17353 18.3520 679.27 625.31 22.43 17354 18.3530 669.92 611.62 22.21 17355 18.3540 585.29 599.16 20.76 17356 18.3550 630.41 587.88 21.52 17357 18.3560 608.49 577.67 21.22 17358 18.3570 592.03 568.50 20.93 17359 18.3580 582.48 560.35 20.73 17360 18.3590 559.94 553.16 20.32 17361 18.3600 583.77 546.88 20.72 17362 18.3610 560.40 541.56 20.34 17363 18.3620 540.19 537.15 19.99 17364 18.3630 563.36 533.64 20.40 17365 18.3640 586.98 531.08 20.81 17366 18.3650 594.13 529.45 20.94 17367 18.3660 585.55 528.79 20.80 17368 18.3670 572.90 529.12 20.50 17369 18.3680 559.86 530.47 20.34 17370 18.3690 550.53 532.86 20.22 17371 18.3700 552.74 536.30 20.21 17372 18.3710 551.19 540.77 20.23 17373 18.3720 573.79 546.22 20.61 17374 18.3730 570.61 552.55 20.56 17375 18.3740 570.93 559.61 20.53 17376 18.3750 592.25 567.09 20.88 17377 18.3760 556.95 574.71 20.37 17378 18.3770 577.97 582.15 20.67 17379 18.3780 617.42 589.01 21.39 17380 18.3790 600.74 595.12 21.09 17381 18.3800 558.39 600.41 20.29 17382 18.3810 598.08 605.04 21.02 17383 18.3820 616.94 609.33 21.35 17384 18.3830 637.99 613.77 21.71 17385 18.3840 610.91 618.85 21.27 17386 18.3850 607.13 625.09 21.16 17387 18.3860 624.49 632.97 21.48 17388 18.3870 646.70 642.86 21.88 17389 18.3880 631.63 655.15 21.65 17390 18.3890 673.65 670.14 22.30 17391 18.3900 688.29 688.09 22.54 17392 18.3910 713.05 709.36 23.01 17393 18.3920 717.36 734.21 23.04 17394 18.3930 744.23 762.91 23.46 17395 18.3940 782.73 795.80 24.00 17396 18.3950 809.45 833.60 24.45 17397 18.3960 820.59 875.82 24.64 17398 18.3970 901.74 923.04 25.81 17399 18.3980 975.00 975.52 26.83 17400 18.3990 1017.18 1032.74 27.41 17401 18.4000 1124.64 1094.51 28.83 17402 18.4010 1181.34 1159.65 29.59 17403 18.4020 1236.66 1226.85 30.18 17404 18.4030 1340.49 1293.70 31.47 17405 18.4040 1381.61 1357.08 31.98 17406 18.4050 1452.43 1413.56 32.75 17407 18.4060 1488.91 1459.10 33.19 17408 18.4070 1506.01 1489.94 33.37 17409 18.4080 1518.78 1503.33 33.46 17410 18.4090 1500.12 1497.79 33.28 17411 18.4100 1433.79 1473.71 32.55 17412 18.4110 1371.01 1433.08 31.85 17413 18.4120 1312.44 1378.91 31.15 17414 18.4130 1236.62 1315.43 30.26 17415 18.4140 1214.48 1246.31 29.95 17416 18.4150 1099.66 1174.71 28.52 17417 18.4160 1040.11 1103.83 27.75 17418 18.4170 973.88 1035.41 26.87 17419 18.4180 936.63 970.62 26.26 17420 18.4190 866.66 910.32 25.28 17421 18.4200 794.93 854.81 24.21 17422 18.4210 756.66 804.21 23.65 17423 18.4220 742.92 758.17 23.41 17424 18.4230 716.11 716.51 23.02 17425 18.4240 684.20 678.94 22.49 17426 18.4250 656.96 645.04 22.00 17427 18.4260 600.40 614.35 21.07 17428 18.4270 594.14 586.74 20.92 17429 18.4280 565.04 561.79 20.38 17430 18.4290 546.66 539.14 20.07 17431 18.4300 550.11 518.68 20.15 17432 18.4310 531.85 500.11 19.86 17433 18.4320 507.40 483.18 19.38 17434 18.4330 498.54 467.75 19.19 17435 18.4340 504.69 453.69 19.29 17436 18.4350 493.21 440.79 19.05 17437 18.4360 465.17 428.96 18.48 17438 18.4370 466.27 418.11 18.54 17439 18.4380 457.12 408.10 18.41 17440 18.4390 426.60 398.88 17.78 17441 18.4400 423.89 390.35 17.67 17442 18.4410 426.53 382.44 17.79 17443 18.4420 430.60 375.11 17.87 17444 18.4430 406.63 368.28 17.34 17445 18.4440 379.63 361.94 16.72 17446 18.4450 373.35 356.03 16.57 17447 18.4460 380.34 350.51 16.76 17448 18.4470 376.39 345.32 16.71 17449 18.4480 381.44 340.48 16.84 17450 18.4490 375.36 335.93 16.63 17451 18.4500 349.60 331.65 16.06 17452 18.4510 349.18 327.64 16.02 17453 18.4520 352.17 323.85 16.11 17454 18.4530 355.49 320.27 16.17 17455 18.4540 366.69 318.02 16.41 17456 18.4550 353.35 314.83 16.12 17457 18.4560 338.41 311.83 15.80 17458 18.4570 330.59 308.97 15.65 17459 18.4580 329.97 306.26 15.59 17460 18.4590 338.81 303.69 15.77 17461 18.4600 332.08 301.25 15.68 17462 18.4610 312.23 298.93 15.15 17463 18.4620 328.81 296.72 15.56 17464 18.4630 327.00 294.61 15.51 17465 18.4640 306.82 292.60 15.06 17466 18.4650 310.31 290.69 15.07 17467 18.4660 288.09 288.86 14.52 17468 18.4670 309.75 287.11 15.09 17469 18.4680 295.69 285.44 14.83 17470 18.4690 312.92 283.83 15.16 17471 18.4700 303.58 282.30 14.98 17472 18.4710 309.31 280.83 15.09 17473 18.4720 308.43 279.43 15.08 17474 18.4730 318.44 278.08 15.35 17475 18.4740 299.94 276.78 14.86 17476 18.4750 269.65 275.54 14.11 17477 18.4760 284.62 274.34 14.48 17478 18.4770 283.66 273.20 14.41 17479 18.4780 289.12 272.09 14.63 17480 18.4790 286.64 271.03 14.55 17481 18.4800 276.05 270.01 14.25 17482 18.4810 285.46 269.02 14.52 17483 18.4820 281.56 268.08 14.37 17484 18.4830 282.12 267.17 14.34 17485 18.4840 270.39 266.29 14.12 17486 18.4850 276.93 265.44 14.28 17487 18.4860 264.50 264.63 14.00 17488 18.4870 269.36 263.84 14.03 17489 18.4880 255.53 263.08 13.70 17490 18.4890 263.15 262.35 13.98 17491 18.4900 262.62 261.65 13.88 17492 18.4910 247.75 260.97 13.55 17493 18.4920 274.90 260.31 14.24 17494 18.4930 262.20 259.68 13.93 17495 18.4940 280.25 259.07 14.39 17496 18.4950 285.12 258.48 14.47 17497 18.4960 260.49 257.92 13.80 17498 18.4970 269.62 257.38 14.11 17499 18.4980 263.89 256.85 13.83 17500 18.4990 266.11 256.35 13.96 17501 18.5000 257.99 255.86 13.79 17502 18.5010 260.33 255.39 13.86 17503 18.5020 270.23 254.94 14.14 17504 18.5030 263.55 254.51 13.98 17505 18.5040 257.69 254.10 13.73 17506 18.5050 244.88 253.70 13.45 17507 18.5060 276.85 253.32 14.27 17508 18.5070 271.30 252.95 14.12 17509 18.5080 246.52 252.61 13.46 17510 18.5090 242.37 252.27 13.32 17511 18.5100 266.54 251.96 14.01 17512 18.5110 249.17 251.66 13.60 17513 18.5120 249.63 251.37 13.58 17514 18.5130 259.62 251.10 13.81 17515 18.5140 268.23 250.85 14.06 17516 18.5150 258.39 250.62 13.73 17517 18.5160 257.20 250.39 13.77 17518 18.5170 241.91 250.19 13.36 17519 18.5180 249.69 250.00 13.49 17520 18.5190 262.33 249.83 13.91 17521 18.5200 259.27 249.67 13.84 17522 18.5210 251.66 249.53 13.63 17523 18.5220 253.14 249.41 13.61 17524 18.5230 249.07 249.31 13.55 17525 18.5240 250.25 249.22 13.60 17526 18.5250 259.86 249.15 13.88 17527 18.5260 253.74 249.11 13.65 17528 18.5270 246.85 249.08 13.49 17529 18.5280 274.41 249.07 14.22 17530 18.5290 255.86 249.09 13.74 17531 18.5300 268.90 249.13 14.09 17532 18.5310 273.76 249.19 14.23 17533 18.5320 249.86 249.28 13.64 17534 18.5330 239.48 249.40 13.30 17535 18.5340 247.35 249.54 13.52 17536 18.5350 257.68 249.72 13.77 17537 18.5360 265.95 249.92 14.00 17538 18.5370 237.99 250.17 13.23 17539 18.5380 259.43 255.28 13.78 17540 18.5390 249.24 255.63 13.57 17541 18.5400 266.62 256.03 14.05 17542 18.5410 257.70 256.47 13.78 17543 18.5420 258.34 256.97 13.81 17544 18.5430 257.68 257.52 13.77 17545 18.5440 222.50 258.13 12.72 17546 18.5450 243.84 258.81 13.45 17547 18.5460 254.06 259.56 13.73 17548 18.5470 253.59 260.39 13.73 17549 18.5480 268.82 261.32 14.01 17550 18.5490 261.26 262.33 13.86 17551 18.5500 252.27 263.46 13.63 17552 18.5510 244.73 264.72 13.43 17553 18.5520 292.34 266.10 14.63 17554 18.5530 251.83 267.64 13.64 17555 18.5540 268.45 269.36 14.07 17556 18.5550 264.84 261.33 14.02 17557 18.5560 267.46 263.53 14.04 17558 18.5570 264.62 265.97 14.02 17559 18.5580 271.15 268.69 14.15 17560 18.5590 270.34 271.72 14.15 17561 18.5600 283.07 275.09 14.48 17562 18.5610 283.84 278.88 14.52 17563 18.5620 300.53 283.09 14.91 17564 18.5630 310.95 287.80 15.13 17565 18.5640 284.96 293.07 14.46 17566 18.5650 291.03 298.98 14.66 17567 18.5660 288.46 305.53 14.57 17568 18.5670 299.95 312.80 14.85 17569 18.5680 295.72 320.81 14.78 17570 18.5690 298.35 329.52 14.77 17571 18.5700 323.46 338.90 15.41 17572 18.5710 355.68 348.75 16.18 17573 18.5720 341.06 358.87 15.84 17574 18.5730 351.00 368.84 16.05 17575 18.5740 364.62 378.16 16.40 17576 18.5750 359.99 386.24 16.26 17577 18.5760 358.15 392.44 16.27 17578 18.5770 383.49 396.20 16.83 17579 18.5780 390.53 397.15 16.97 17580 18.5790 364.39 395.20 16.35 17581 18.5800 355.15 390.56 16.18 17582 18.5810 355.04 383.69 16.17 17583 18.5820 354.08 375.16 16.09 17584 18.5830 350.16 365.64 16.07 17585 18.5840 352.97 355.70 16.12 17586 18.5850 340.29 345.77 15.88 17587 18.5860 311.67 336.19 15.20 17588 18.5870 329.41 327.19 15.58 17589 18.5880 314.27 318.87 15.25 17590 18.5890 321.10 311.27 15.37 17591 18.5900 294.31 304.40 14.71 17592 18.5910 269.23 298.24 14.00 17593 18.5920 276.64 292.73 14.27 17594 18.5930 283.62 287.80 14.47 17595 18.5940 287.02 283.41 14.54 17596 18.5950 275.16 279.51 14.28 17597 18.5960 298.12 276.02 14.82 17598 18.5970 291.63 272.92 14.67 17599 18.5980 258.88 270.15 13.83 17600 18.5990 286.39 267.67 14.53 17601 18.6000 281.09 265.47 14.39 17602 18.6010 290.88 263.50 14.68 17603 18.6020 275.58 261.73 14.24 17604 18.6030 256.42 260.14 13.80 17605 18.6040 288.19 258.73 14.62 17606 18.6050 297.86 257.45 14.87 17607 18.6060 291.94 256.31 14.71 17608 18.6070 269.20 255.29 14.16 17609 18.6080 273.83 254.37 14.16 17610 18.6090 260.31 253.55 13.85 17611 18.6100 267.72 252.81 14.04 17612 18.6110 270.19 252.16 14.11 17613 18.6120 262.17 251.57 13.88 17614 18.6130 260.11 251.06 13.83 17615 18.6140 266.72 250.60 13.98 17616 18.6150 281.50 250.20 14.38 17617 18.6160 278.66 249.85 14.30 17618 18.6170 259.18 249.55 13.77 17619 18.6180 261.09 249.30 13.93 17620 18.6190 264.15 249.09 13.92 17621 18.6200 254.93 248.91 13.72 17622 18.6210 279.11 248.78 14.41 17623 18.6220 279.55 248.68 14.41 17624 18.6230 283.26 248.61 14.46 17625 18.6240 272.03 248.58 14.19 17626 18.6250 275.52 248.57 14.20 17627 18.6260 271.51 248.60 14.18 17628 18.6270 256.45 248.49 13.80 17629 18.6280 266.79 248.57 13.97 17630 18.6290 271.98 248.69 14.15 17631 18.6300 284.04 248.83 14.47 17632 18.6310 286.84 248.99 14.54 17633 18.6320 285.48 249.18 14.56 17634 18.6330 263.71 249.40 13.94 17635 18.6340 277.36 249.65 14.30 17636 18.6350 289.60 249.92 14.63 17637 18.6360 278.66 250.21 14.35 17638 18.6370 267.59 250.54 14.08 17639 18.6380 281.27 250.89 14.38 17640 18.6390 250.08 251.27 13.57 17641 18.6400 284.11 251.67 14.45 17642 18.6410 269.26 252.11 14.10 17643 18.6420 272.70 252.58 14.18 17644 18.6430 276.87 253.38 14.32 17645 18.6440 282.34 253.91 14.53 17646 18.6450 276.51 254.48 14.32 17647 18.6460 261.27 255.09 13.90 17648 18.6470 267.68 255.72 14.08 17649 18.6480 297.56 256.40 14.84 17650 18.6490 284.44 257.12 14.46 17651 18.6500 267.23 257.88 14.02 17652 18.6510 264.54 258.69 13.94 17653 18.6520 294.78 259.55 14.72 17654 18.6530 277.12 260.46 14.33 17655 18.6540 290.96 261.42 14.65 17656 18.6550 275.03 262.45 14.22 17657 18.6560 285.18 263.53 14.50 17658 18.6570 290.81 264.69 14.68 17659 18.6580 284.76 265.92 14.54 17660 18.6590 284.34 267.22 14.46 17661 18.6600 294.47 268.62 14.72 17662 18.6610 264.26 270.10 13.98 17663 18.6620 271.59 271.69 14.17 17664 18.6630 304.29 273.39 14.96 17665 18.6640 299.46 275.21 14.85 17666 18.6650 292.89 277.16 14.68 17667 18.6660 274.54 279.25 14.23 17668 18.6670 267.05 281.50 14.09 17669 18.6680 282.89 283.93 14.46 17670 18.6690 298.23 286.55 14.80 17671 18.6700 300.03 289.37 14.88 17672 18.6710 301.59 292.44 14.93 17673 18.6720 301.37 295.75 14.90 17674 18.6730 310.81 299.35 15.14 17675 18.6740 325.89 303.26 15.52 17676 18.6750 309.76 307.51 15.11 17677 18.6760 306.72 312.13 15.02 17678 18.6770 334.77 317.17 15.68 17679 18.6780 356.54 320.53 16.21 17680 18.6790 350.94 326.51 16.12 17681 18.6800 363.03 332.96 16.37 17682 18.6810 354.45 339.92 16.18 17683 18.6820 352.27 347.41 16.15 17684 18.6830 360.04 355.42 16.26 17685 18.6840 358.30 363.87 16.27 17686 18.6850 384.20 372.70 16.85 17687 18.6860 379.74 381.76 16.72 17688 18.6870 399.10 390.85 17.19 17689 18.6880 445.37 399.75 18.14 17690 18.6890 431.08 408.11 17.84 17691 18.6900 460.91 415.65 18.40 17692 18.6910 494.85 422.02 19.10 17693 18.6920 480.78 426.92 18.84 17694 18.6930 495.02 430.19 19.12 17695 18.6940 482.19 431.74 18.93 17696 18.6950 489.59 431.67 19.02 17697 18.6960 445.13 430.17 18.09 17698 18.6970 446.37 427.54 18.15 17699 18.6980 424.30 424.15 17.71 17700 18.6990 406.10 420.35 17.33 17701 18.7000 402.65 416.45 17.24 17702 18.7010 418.93 412.76 17.61 17703 18.7020 416.27 409.51 17.59 17704 18.7030 435.53 406.84 17.92 17705 18.7040 414.19 404.90 17.50 17706 18.7050 408.26 403.77 17.38 17707 18.7060 420.46 403.52 17.62 17708 18.7070 423.10 404.19 17.61 17709 18.7080 395.60 405.82 17.10 17710 18.7090 425.68 408.44 17.71 17711 18.7100 426.72 412.08 17.70 17712 18.7110 429.13 416.80 17.76 17713 18.7120 437.13 422.62 17.98 17714 18.7130 457.74 429.61 18.36 17715 18.7140 439.53 437.89 18.01 17716 18.7150 435.65 447.48 17.88 17717 18.7160 468.63 458.50 18.61 17718 18.7170 501.93 471.11 19.25 17719 18.7180 496.27 485.40 19.11 17720 18.7190 508.28 501.50 19.30 17721 18.7200 499.49 519.61 19.21 17722 18.7210 545.52 539.85 20.10 17723 18.7220 570.94 562.33 20.53 17724 18.7230 593.84 587.23 20.95 17725 18.7240 598.46 614.58 20.99 17726 18.7250 675.01 644.29 22.32 17727 18.7260 692.53 676.30 22.61 17728 18.7270 736.75 710.17 23.29 17729 18.7280 760.68 745.48 23.70 17730 18.7290 852.84 781.08 25.09 17731 18.7300 861.58 815.89 25.26 17732 18.7310 915.61 848.47 26.00 17733 18.7320 943.24 876.82 26.38 17734 18.7330 948.39 899.26 26.42 17735 18.7340 979.80 914.16 26.93 17736 18.7350 990.00 920.30 27.05 17737 18.7360 960.49 917.22 26.69 17738 18.7370 909.41 905.21 25.94 17739 18.7380 892.00 885.29 25.63 17740 18.7390 844.32 859.05 25.02 17741 18.7400 788.50 828.21 24.15 17742 18.7410 745.60 794.67 23.49 17743 18.7420 742.66 759.92 23.46 17744 18.7430 691.16 725.31 22.55 17745 18.7440 700.14 691.87 22.69 17746 18.7450 646.62 660.13 21.78 17747 18.7460 626.34 630.55 21.43 17748 18.7470 573.38 603.36 20.60 17749 18.7480 599.85 578.57 21.01 17750 18.7490 560.61 556.04 20.29 17751 18.7500 537.50 535.82 19.86 17752 18.7510 488.14 517.69 18.96 17753 18.7520 490.84 501.43 19.06 17754 18.7530 509.21 486.99 19.33 17755 18.7540 471.72 474.16 18.71 17756 18.7550 467.28 462.76 18.64 17757 18.7560 459.13 452.68 18.45 17758 18.7570 427.74 443.80 17.73 17759 18.7580 452.05 436.01 18.28 17760 18.7590 446.83 429.19 18.21 17761 18.7600 409.94 423.26 17.45 17762 18.7610 397.55 418.15 17.12 17763 18.7620 404.48 413.79 17.23 17764 18.7630 413.16 410.10 17.47 17765 18.7640 396.89 407.05 17.09 17766 18.7650 407.02 404.59 17.37 17767 18.7660 423.93 402.67 17.63 17768 18.7670 403.11 401.28 17.26 17769 18.7680 369.32 400.37 16.54 17770 18.7690 382.55 399.93 16.83 17771 18.7700 406.68 399.94 17.31 17772 18.7710 391.88 400.38 16.97 17773 18.7720 371.96 401.25 16.57 17774 18.7730 383.02 402.53 16.84 17775 18.7740 396.20 404.22 17.08 17776 18.7750 389.23 406.32 16.91 17777 18.7760 377.72 408.83 16.71 17778 18.7770 406.85 411.76 17.35 17779 18.7780 383.54 415.10 16.83 17780 18.7790 438.69 418.87 17.96 17781 18.7800 433.42 423.10 17.94 17782 18.7810 442.98 427.78 18.01 17783 18.7820 426.64 432.93 17.71 17784 18.7830 428.14 438.61 17.79 17785 18.7840 430.83 444.80 17.87 17786 18.7850 456.91 451.54 18.34 17787 18.7860 474.46 458.88 18.66 17788 18.7870 477.06 466.86 18.75 17789 18.7880 506.63 475.49 19.34 17790 18.7890 489.51 484.87 19.03 17791 18.7900 505.46 495.02 19.33 17792 18.7910 510.87 506.00 19.42 17793 18.7920 533.97 517.90 19.78 17794 18.7930 523.08 530.77 19.68 17795 18.7940 532.47 544.73 19.83 17796 18.7950 559.82 559.87 20.31 17797 18.7960 587.87 576.26 20.85 17798 18.7970 621.92 594.09 21.44 17799 18.7980 592.42 613.46 20.90 17800 18.7990 626.41 634.50 21.51 17801 18.8000 639.96 657.41 21.69 17802 18.8010 669.96 682.48 22.11 17803 18.8020 685.23 709.75 22.42 17804 18.8030 734.84 739.57 23.28 17805 18.8040 751.67 772.32 23.48 17806 18.8050 758.93 808.09 23.63 17807 18.8060 842.40 847.43 24.84 17808 18.8070 881.37 890.58 25.42 17809 18.8080 856.35 938.14 25.14 17810 18.8090 942.92 990.51 26.38 17811 18.8100 995.33 1048.14 27.14 17812 18.8110 1034.31 1111.80 27.65 17813 18.8120 1072.21 1182.00 28.13 17814 18.8130 1124.99 1259.26 28.70 17815 18.8140 1165.65 1344.33 29.33 17816 18.8150 1277.08 1438.16 30.67 17817 18.8160 1387.76 1540.61 31.99 17818 18.8170 1426.66 1652.36 32.50 17819 18.8180 1569.93 1773.88 34.00 17820 18.8190 1595.49 1903.99 34.28 17821 18.8200 1711.42 2042.11 35.55 17822 18.8210 1886.80 2186.69 37.35 17823 18.8220 2051.86 2334.67 38.93 17824 18.8230 2257.09 2481.73 40.80 17825 18.8240 2326.12 2623.09 41.43 17826 18.8250 2481.03 2752.08 42.81 17827 18.8260 2580.63 2861.65 43.65 17828 18.8270 2662.53 2944.70 44.35 17829 18.8280 2705.63 2995.55 44.74 17830 18.8290 2695.81 3010.28 44.61 17831 18.8300 2663.60 2987.63 44.38 17832 18.8310 2634.62 2929.48 44.17 17833 18.8320 2634.49 2839.57 44.08 17834 18.8330 2477.53 2725.30 42.82 17835 18.8340 2323.32 2593.14 41.47 17836 18.8350 2182.29 2449.80 40.11 17837 18.8360 2080.18 2301.68 39.23 17838 18.8370 1988.62 2154.10 38.33 17839 18.8380 1885.81 2010.33 37.38 17840 18.8390 1777.82 1873.24 36.23 17841 18.8400 1701.95 1744.67 35.43 17842 18.8410 1601.66 1625.00 34.35 17843 18.8420 1503.38 1514.91 33.30 17844 18.8430 1416.20 1413.88 32.30 17845 18.8440 1303.75 1321.73 31.02 17846 18.8450 1218.20 1238.03 29.98 17847 18.8460 1190.87 1161.88 29.61 17848 18.8470 1130.37 1092.79 28.83 17849 18.8480 1033.72 1030.21 27.61 17850 18.8490 1007.41 973.24 27.27 17851 18.8500 976.79 921.69 26.86 17852 18.8510 918.48 874.83 26.04 17853 18.8520 875.40 832.20 25.45 17854 18.8530 849.76 793.23 25.07 17855 18.8540 775.89 757.81 23.91 17856 18.8550 759.33 725.39 23.62 17857 18.8560 753.48 695.74 23.59 17858 18.8570 688.02 668.62 22.53 17859 18.8580 686.23 643.70 22.44 17860 18.8590 662.11 620.85 22.09 17861 18.8600 611.09 599.79 21.25 17862 18.8610 614.47 580.39 21.26 17863 18.8620 582.52 562.54 20.74 17864 18.8630 563.71 546.03 20.42 17865 18.8640 536.79 530.78 19.94 17866 18.8650 543.90 516.70 20.05 17867 18.8660 534.67 503.67 19.84 17868 18.8670 516.33 491.57 19.59 17869 18.8680 479.15 480.41 18.84 17870 18.8690 498.80 470.07 19.19 17871 18.8700 481.05 460.47 18.85 17872 18.8710 468.36 451.62 18.58 17873 18.8720 454.72 443.44 18.29 17874 18.8730 497.12 435.88 19.12 17875 18.8740 488.70 428.92 18.94 17876 18.8750 450.50 422.54 18.21 17877 18.8760 445.77 417.17 18.14 17878 18.8770 439.70 411.86 17.97 17879 18.8780 434.82 407.05 17.93 17880 18.8790 421.49 402.76 17.59 17881 18.8800 431.67 398.96 17.85 17882 18.8810 443.54 395.65 18.06 17883 18.8820 441.81 392.84 18.08 17884 18.8830 433.08 390.54 17.92 17885 18.8840 423.40 388.75 17.70 17886 18.8850 420.72 387.51 17.64 17887 18.8860 450.31 386.82 18.21 17888 18.8870 447.03 386.73 18.16 17889 18.8880 414.66 387.28 17.56 17890 18.8890 426.61 388.49 17.76 17891 18.8900 452.23 390.42 18.26 17892 18.8910 436.07 393.12 17.97 17893 18.8920 452.87 396.61 18.22 17894 18.8930 430.80 400.96 17.82 17895 18.8940 436.60 406.17 17.97 17896 18.8950 438.11 412.24 17.93 17897 18.8960 432.92 419.12 17.87 17898 18.8970 464.64 426.66 18.52 17899 18.8980 480.71 434.69 18.82 17900 18.8990 484.52 442.83 18.94 17901 18.9000 467.03 450.67 18.61 17902 18.9010 516.72 457.64 19.48 17903 18.9020 484.57 463.14 18.89 17904 18.9030 509.27 466.54 19.34 17905 18.9040 517.92 467.36 19.57 17906 18.9050 503.41 465.33 19.31 17907 18.9060 505.99 460.48 19.31 17908 18.9070 513.76 453.08 19.54 17909 18.9080 502.62 443.64 19.21 17910 18.9090 487.34 432.79 19.00 17911 18.9100 473.42 421.09 18.74 17912 18.9110 448.06 409.13 18.21 17913 18.9120 422.18 397.29 17.62 17914 18.9130 432.69 385.90 17.79 17915 18.9140 398.98 375.15 17.19 17916 18.9150 401.71 365.13 17.23 17917 18.9160 397.34 355.88 17.10 17918 18.9170 399.13 347.43 17.16 17919 18.9180 382.01 339.71 16.81 17920 18.9190 391.50 332.66 16.98 17921 18.9200 394.36 326.27 17.11 17922 18.9210 389.87 320.46 17.03 17923 18.9220 378.46 315.14 16.71 17924 18.9230 376.36 310.32 16.64 17925 18.9240 361.01 305.90 16.28 17926 18.9250 348.97 301.87 16.01 17927 18.9260 359.64 298.16 16.29 17928 18.9270 369.08 294.75 16.52 17929 18.9280 352.90 291.61 16.13 17930 18.9290 332.72 288.70 15.67 17931 18.9300 325.35 286.01 15.46 17932 18.9310 322.01 283.51 15.35 17933 18.9320 353.84 281.18 16.16 17934 18.9330 339.42 279.01 15.77 17935 18.9340 309.63 276.98 15.11 17936 18.9350 322.29 275.08 15.44 17937 18.9360 352.09 273.29 16.10 17938 18.9370 337.19 271.61 15.79 17939 18.9380 314.93 270.02 15.25 17940 18.9390 325.79 268.52 15.55 17941 18.9400 344.42 267.11 15.95 17942 18.9410 337.67 265.77 15.79 17943 18.9420 288.65 264.49 14.50 17944 18.9430 292.18 263.28 14.64 17945 18.9440 316.99 262.13 15.28 17946 18.9450 281.14 261.03 14.40 17947 18.9460 309.83 259.99 15.15 17948 18.9470 305.73 258.98 15.05 17949 18.9480 290.80 258.03 14.67 17950 18.9490 289.27 257.12 14.63 17951 18.9500 309.52 256.24 15.06 17952 18.9510 275.43 255.40 14.28 17953 18.9520 295.70 254.59 14.75 17954 18.9530 289.28 253.82 14.58 17955 18.9540 303.25 253.07 14.95 17956 18.9550 290.66 252.35 14.62 17957 18.9560 289.70 251.66 14.63 17958 18.9570 275.51 250.99 14.19 17959 18.9580 250.73 250.35 13.56 17960 18.9590 290.49 249.73 14.61 17961 18.9600 266.10 249.13 14.00 17962 18.9610 281.79 248.55 14.37 17963 18.9620 277.54 247.99 14.24 17964 18.9630 258.47 247.45 13.78 17965 18.9640 262.42 246.93 13.90 17966 18.9650 270.99 246.42 14.15 17967 18.9660 257.69 245.93 13.78 17968 18.9670 270.86 245.46 14.11 17969 18.9680 271.94 244.99 14.13 17970 18.9690 263.14 244.55 13.91 17971 18.9700 258.43 244.11 13.82 17972 18.9710 274.61 243.69 14.18 17973 18.9720 240.62 243.28 13.29 17974 18.9730 272.54 242.89 14.15 17975 18.9740 245.97 242.50 13.47 17976 18.9750 256.69 242.13 13.77 17977 18.9760 250.07 241.76 13.59 17978 18.9770 268.95 241.41 14.12 17979 18.9780 273.69 241.07 14.27 17980 18.9790 264.68 240.73 13.99 17981 18.9800 254.65 240.40 13.67 17982 18.9810 252.98 240.09 13.62 17983 18.9820 239.04 239.78 13.25 17984 18.9830 265.65 239.48 13.94 17985 18.9840 239.58 239.19 13.27 17986 18.9850 229.27 238.90 12.98 17987 18.9860 251.52 238.63 13.56 17988 18.9870 244.76 238.36 13.33 17989 18.9880 265.39 238.10 13.94 17990 18.9890 256.18 237.84 13.76 17991 18.9900 252.31 237.60 13.59 17992 18.9910 254.78 237.35 13.65 17993 18.9920 242.13 236.87 13.36 17994 18.9930 238.61 236.64 13.24 17995 18.9940 247.80 236.42 13.51 17996 18.9950 261.21 236.21 13.89 17997 18.9960 231.65 236.00 13.04 17998 18.9970 251.89 235.79 13.61 17999 18.9980 256.00 235.60 13.78 18000 18.9990 256.83 235.40 13.69 18001 19.0000 260.08 235.21 13.81 18002 19.0010 255.22 235.03 13.67 18003 19.0020 238.06 234.86 13.22 18004 19.0030 236.86 234.68 13.16 18005 19.0040 258.90 234.52 13.82 18006 19.0050 237.57 234.36 13.26 18007 19.0060 248.54 234.20 13.46 18008 19.0070 217.68 234.05 12.66 18009 19.0080 230.20 233.90 13.06 18010 19.0090 239.07 233.76 13.28 18011 19.0100 232.98 233.62 13.06 18012 19.0110 247.89 233.49 13.52 18013 19.0120 252.13 233.36 13.58 18014 19.0130 254.58 233.24 13.69 18015 19.0140 251.32 233.12 13.58 18016 19.0150 247.40 233.01 13.49 18017 19.0160 243.36 232.90 13.43 18018 19.0170 250.58 232.79 13.66 18019 19.0180 263.32 231.58 13.91 18020 19.0190 246.00 231.49 13.42 18021 19.0200 248.39 231.41 13.46 18022 19.0210 244.82 231.33 13.41 18023 19.0220 246.92 231.26 13.44 18024 19.0230 225.85 231.19 12.85 18025 19.0240 242.38 231.13 13.39 18026 19.0250 240.61 231.07 13.37 18027 19.0260 246.00 231.02 13.48 18028 19.0270 237.88 230.97 13.29 18029 19.0280 238.78 230.93 13.29 18030 19.0290 233.98 230.90 13.14 18031 19.0300 240.67 230.87 13.30 18032 19.0310 245.56 230.84 13.47 18033 19.0320 249.75 230.83 13.57 18034 19.0330 238.51 230.82 13.21 18035 19.0340 227.31 230.82 12.90 18036 19.0350 243.20 230.82 13.38 18037 19.0360 233.14 230.84 13.12 18038 19.0370 233.71 230.86 13.13 18039 19.0380 230.42 230.89 13.02 18040 19.0390 227.05 230.94 12.87 18041 19.0400 221.95 230.99 12.73 18042 19.0410 232.35 231.06 13.08 18043 19.0420 246.56 231.13 13.43 18044 19.0430 255.71 231.23 13.73 18045 19.0440 246.01 231.34 13.47 18046 19.0450 229.98 231.46 13.03 18047 19.0460 241.18 231.60 13.36 18048 19.0470 241.49 231.77 13.27 18049 19.0480 238.71 231.96 13.18 18050 19.0490 242.21 232.17 13.38 18051 19.0500 255.27 232.41 13.75 18052 19.0510 243.12 232.68 13.43 18053 19.0520 258.80 232.99 13.80 18054 19.0530 225.34 233.34 12.91 18055 19.0540 255.79 233.73 13.74 18056 19.0550 237.37 234.17 13.24 18057 19.0560 243.06 234.65 13.36 18058 19.0570 236.15 235.19 13.17 18059 19.0580 248.09 235.79 13.51 18060 19.0590 238.94 236.43 13.28 18061 19.0600 249.67 237.11 13.51 18062 19.0610 237.65 241.96 13.26 18063 19.0620 247.83 242.71 13.55 18064 19.0630 246.02 243.44 13.42 18065 19.0640 250.73 244.12 13.59 18066 19.0650 250.56 244.69 13.62 18067 19.0660 244.38 245.13 13.42 18068 19.0670 261.95 245.40 13.92 18069 19.0680 267.56 245.51 14.05 18070 19.0690 251.50 245.45 13.61 18071 19.0700 245.38 245.26 13.47 18072 19.0710 241.00 244.96 13.35 18073 19.0720 264.43 244.61 13.97 18074 19.0730 242.45 244.24 13.41 18075 19.0740 245.91 243.88 13.49 18076 19.0750 250.26 243.56 13.59 18077 19.0760 243.95 243.29 13.43 18078 19.0770 235.83 243.08 13.20 18079 19.0780 269.57 242.94 14.07 18080 19.0790 248.53 242.86 13.53 18081 19.0800 247.80 242.85 13.48 18082 19.0810 232.99 242.91 13.07 18083 19.0820 244.74 243.13 13.46 18084 19.0830 258.42 243.32 13.82 18085 19.0840 261.10 243.56 13.86 18086 19.0850 249.61 243.86 13.56 18087 19.0860 257.64 244.22 13.77 18088 19.0870 251.73 244.63 13.61 18089 19.0880 254.99 245.11 13.66 18090 19.0890 247.33 245.65 13.51 18091 19.0900 250.25 246.25 13.54 18092 19.0910 260.35 246.91 13.80 18093 19.0920 246.45 247.65 13.49 18094 19.0930 245.53 248.45 13.48 18095 19.0940 247.61 249.34 13.52 18096 19.0950 258.65 250.30 13.85 18097 19.0960 257.31 251.35 13.81 18098 19.0970 254.54 252.50 13.71 18099 19.0980 255.05 253.75 13.74 18100 19.0990 244.47 255.12 13.47 18101 19.1000 233.14 256.62 13.07 18102 19.1010 260.46 258.25 13.86 18103 19.1020 272.48 260.03 14.18 18104 19.1030 279.44 261.99 14.37 18105 19.1040 282.42 264.13 14.45 18106 19.1050 282.49 266.48 14.41 18107 19.1060 274.62 269.08 14.26 18108 19.1070 288.29 271.93 14.56 18109 19.1080 283.46 275.08 14.44 18110 19.1090 262.42 278.57 13.85 18111 19.1100 262.36 282.43 13.90 18112 19.1110 263.79 286.72 13.92 18113 19.1120 293.05 291.49 14.71 18114 19.1130 270.93 296.81 14.12 18115 19.1140 283.40 302.74 14.47 18116 19.1150 315.43 309.35 15.27 18117 19.1160 306.84 316.74 15.04 18118 19.1170 306.29 325.02 14.98 18119 19.1180 310.30 334.23 15.14 18120 19.1190 339.77 344.49 15.81 18121 19.1200 341.20 355.91 15.81 18122 19.1210 349.97 363.66 16.05 18123 19.1220 347.38 377.40 16.01 18124 19.1230 357.51 392.26 16.25 18125 19.1240 397.30 408.01 17.11 18126 19.1250 409.39 424.27 17.36 18127 19.1260 434.18 440.57 17.90 18128 19.1270 454.08 457.58 18.29 18129 19.1280 447.16 471.48 18.18 18130 19.1290 468.63 482.74 18.59 18131 19.1300 474.21 490.37 18.69 18132 19.1310 497.35 493.68 19.14 18133 19.1320 489.50 492.31 19.05 18134 19.1330 464.53 486.43 18.53 18135 19.1340 459.34 476.77 18.42 18136 19.1350 444.60 463.93 18.06 18137 19.1360 421.76 449.06 17.66 18138 19.1370 385.58 433.12 16.87 18139 19.1380 386.81 416.88 16.84 18140 19.1390 375.84 401.05 16.70 18141 19.1400 379.42 385.98 16.75 18142 19.1410 360.43 371.93 16.31 18143 19.1420 308.56 359.06 15.10 18144 19.1430 330.32 347.34 15.53 18145 19.1440 315.85 336.78 15.24 18146 19.1450 312.93 327.28 15.17 18147 19.1460 326.38 318.78 15.57 18148 19.1470 315.12 311.19 15.28 18149 19.1480 336.42 304.40 15.80 18150 19.1490 321.36 298.33 15.42 18151 19.1500 283.94 292.92 14.46 18152 19.1510 275.40 288.07 14.20 18153 19.1520 295.19 283.71 14.72 18154 19.1530 278.93 279.81 14.35 18155 19.1540 273.48 276.30 14.23 18156 19.1550 294.65 273.14 14.71 18157 19.1560 286.06 270.29 14.49 18158 19.1570 279.36 267.72 14.35 18159 19.1580 264.40 265.39 14.00 18160 19.1590 276.04 263.28 14.24 18161 19.1600 245.23 261.37 13.43 18162 19.1610 249.61 259.63 13.49 18163 19.1620 259.93 258.05 13.83 18164 19.1630 265.39 256.61 13.94 18165 19.1640 247.60 255.29 13.48 18166 19.1650 239.03 254.10 13.24 18167 19.1660 255.02 253.00 13.77 18168 19.1670 258.94 251.70 13.82 18169 19.1680 265.19 250.80 13.94 18170 19.1690 264.43 249.96 13.91 18171 19.1700 263.77 249.21 13.97 18172 19.1710 273.52 248.52 14.21 18173 19.1720 262.36 247.89 13.89 18174 19.1730 266.69 247.32 14.01 18175 19.1740 269.28 246.80 14.08 18176 19.1750 279.93 246.32 14.40 18177 19.1760 274.99 245.89 14.30 18178 19.1770 261.78 245.51 13.91 18179 19.1780 275.26 245.16 14.22 18180 19.1790 277.65 244.85 14.26 18181 19.1800 252.00 244.57 13.69 18182 19.1810 273.46 244.32 14.24 18183 19.1820 252.61 244.11 13.64 18184 19.1830 237.92 243.92 13.30 18185 19.1840 260.63 243.76 13.80 18186 19.1850 240.54 243.62 13.26 18187 19.1860 233.74 243.51 13.11 18188 19.1870 234.69 243.42 13.14 18189 19.1880 246.05 243.35 13.48 18190 19.1890 263.69 243.31 13.90 18191 19.1900 259.69 243.28 13.84 18192 19.1910 244.65 243.28 13.44 18193 19.1920 269.53 243.29 14.09 18194 19.1930 259.78 243.32 13.84 18195 19.1940 263.36 243.37 13.94 18196 19.1950 248.56 243.44 13.55 18197 19.1960 249.72 243.52 13.55 18198 19.1970 264.76 243.62 14.00 18199 19.1980 282.42 243.73 14.41 18200 19.1990 265.70 243.86 14.04 18201 19.2000 258.48 244.01 13.83 18202 19.2010 245.55 244.17 13.42 18203 19.2020 254.75 244.35 13.70 18204 19.2030 241.83 244.54 13.34 18205 19.2040 264.51 244.74 13.94 18206 19.2050 271.81 244.96 14.17 18207 19.2060 257.48 245.20 13.79 18208 19.2070 271.17 245.45 14.10 18209 19.2080 271.70 245.72 14.16 18210 19.2090 256.59 246.00 13.73 18211 19.2100 268.84 246.29 14.03 18212 19.2110 243.94 246.60 13.40 18213 19.2120 231.09 246.93 13.06 18214 19.2130 238.42 247.27 13.28 18215 19.2140 259.44 247.63 13.88 18216 19.2150 244.56 248.00 13.47 18217 19.2160 262.61 248.39 13.98 18218 19.2170 259.39 248.80 13.81 18219 19.2180 258.37 249.23 13.77 18220 19.2190 280.77 249.67 14.39 18221 19.2200 282.84 250.12 14.41 18222 19.2210 276.67 250.60 14.30 18223 19.2220 278.35 251.10 14.37 18224 19.2230 272.33 251.62 14.17 18225 19.2240 262.51 252.15 13.90 18226 19.2250 262.88 252.71 13.90 18227 19.2260 277.83 253.28 14.30 18228 19.2270 294.87 253.88 14.73 18229 19.2280 276.32 254.50 14.22 18230 19.2290 290.53 255.15 14.61 18231 19.2300 270.69 255.81 14.15 18232 19.2310 270.34 256.51 14.12 18233 19.2320 273.88 257.23 14.22 18234 19.2330 263.95 257.97 13.92 18235 19.2340 273.94 258.74 14.21 18236 19.2350 288.61 259.55 14.61 18237 19.2360 275.83 260.38 14.22 18238 19.2370 281.48 261.24 14.38 18239 19.2380 272.14 262.14 14.14 18240 19.2390 292.47 263.07 14.65 18241 19.2400 285.14 264.03 14.53 18242 19.2410 326.79 265.03 15.53 18243 19.2420 314.68 266.07 15.23 18244 19.2430 287.68 267.15 14.57 18245 19.2440 292.22 268.27 14.71 18246 19.2450 313.75 269.44 15.22 18247 19.2460 290.10 270.65 14.67 18248 19.2470 302.16 271.92 14.87 18249 19.2480 307.27 273.23 15.04 18250 19.2490 312.37 274.60 15.11 18251 19.2500 308.97 276.02 15.07 18252 19.2510 289.13 277.50 14.55 18253 19.2520 297.35 279.05 14.79 18254 19.2530 345.14 280.66 15.95 18255 19.2540 304.91 282.34 15.00 18256 19.2550 296.33 284.10 14.82 18257 19.2560 303.78 285.93 15.00 18258 19.2570 341.70 287.85 15.89 18259 19.2580 330.71 289.85 15.60 18260 19.2590 317.58 291.94 15.30 18261 19.2600 336.23 294.13 15.75 18262 19.2610 354.25 296.43 16.16 18263 19.2620 322.03 298.83 15.39 18264 19.2630 332.22 301.35 15.66 18265 19.2640 328.47 304.00 15.62 18266 19.2650 335.41 306.77 15.78 18267 19.2660 339.61 309.70 15.79 18268 19.2670 350.92 312.77 16.11 18269 19.2680 357.72 316.00 16.24 18270 19.2690 372.27 319.40 16.55 18271 19.2700 364.52 323.00 16.37 18272 19.2710 359.20 326.78 16.26 18273 19.2720 368.61 330.78 16.57 18274 19.2730 392.56 335.02 17.02 18275 19.2740 389.54 339.49 16.97 18276 19.2750 389.85 344.22 17.00 18277 19.2760 385.35 349.25 16.89 18278 19.2770 396.32 354.59 17.08 18279 19.2780 407.05 360.26 17.31 18280 19.2790 408.73 366.29 17.39 18281 19.2800 432.27 372.72 17.83 18282 19.2810 417.12 379.58 17.55 18283 19.2820 443.29 386.89 18.04 18284 19.2830 432.25 394.72 17.86 18285 19.2840 449.60 403.11 18.22 18286 19.2850 451.62 412.09 18.28 18287 19.2860 479.89 421.73 18.82 18288 19.2870 488.47 432.14 18.99 18289 19.2880 495.33 443.31 19.13 18290 19.2890 513.73 455.37 19.45 18291 19.2900 520.90 468.45 19.65 18292 19.2910 552.04 482.56 20.16 18293 19.2920 559.94 497.87 20.37 18294 19.2930 571.02 514.54 20.56 18295 19.2940 595.69 532.69 20.96 18296 19.2950 609.05 552.46 21.19 18297 19.2960 578.97 574.11 20.73 18298 19.2970 631.68 597.83 21.61 18299 19.2980 671.84 623.83 22.22 18300 19.2990 673.00 652.48 22.30 18301 19.3000 701.85 684.00 22.74 18302 19.3010 739.45 718.94 23.36 18303 19.3020 789.92 757.48 24.11 18304 19.3030 776.72 800.21 23.99 18305 19.3040 824.51 847.82 24.64 18306 19.3050 894.05 900.59 25.69 18307 19.3060 950.82 959.32 26.43 18308 19.3070 995.08 1024.84 27.08 18309 19.3080 1105.06 1097.80 28.55 18310 19.3090 1159.83 1178.82 29.25 18311 19.3100 1192.73 1268.89 29.69 18312 19.3110 1267.77 1368.49 30.60 18313 19.3120 1382.95 1477.78 31.95 18314 19.3130 1533.14 1597.10 33.66 18315 19.3140 1604.91 1725.35 34.40 18316 19.3150 1875.50 1861.36 37.19 18317 19.3160 2070.21 2002.08 39.07 18318 19.3170 2246.02 2142.91 40.69 18319 19.3180 2432.21 2278.32 42.43 18320 19.3190 2602.69 2400.65 43.91 18321 19.3200 2742.88 2501.44 45.05 18322 19.3210 2806.24 2572.92 45.61 18323 19.3220 2893.41 2608.80 46.29 18324 19.3230 2812.64 2605.47 45.60 18325 19.3240 2705.51 2563.51 44.78 18326 19.3250 2559.41 2486.64 43.49 18327 19.3260 2412.52 2382.20 42.28 18328 19.3270 2271.06 2258.14 40.91 18329 19.3280 2064.44 2122.40 39.02 18330 19.3290 1885.86 1982.38 37.29 18331 19.3300 1752.76 1843.76 36.02 18332 19.3310 1679.96 1710.82 35.25 18333 19.3320 1527.76 1585.69 33.52 18334 19.3330 1406.04 1470.01 32.24 18335 19.3340 1366.98 1364.50 31.78 18336 19.3350 1294.53 1268.92 30.91 18337 19.3360 1192.38 1182.59 29.65 18338 19.3370 1098.45 1105.48 28.48 18339 19.3380 1044.81 1036.58 27.73 18340 19.3390 966.29 974.93 26.67 18341 19.3400 962.51 920.23 26.64 18342 19.3410 916.48 871.59 26.03 18343 19.3420 900.91 828.30 25.80 18344 19.3430 849.11 789.86 25.09 18345 19.3440 839.39 755.80 24.86 18346 19.3450 770.28 725.50 23.84 18347 19.3460 780.32 698.56 24.03 18348 19.3470 770.16 674.55 23.88 18349 19.3480 741.99 652.95 23.41 18350 19.3490 739.20 633.37 23.39 18351 19.3500 729.61 615.37 23.21 18352 19.3510 694.92 598.57 22.71 18353 19.3520 664.67 582.61 22.12 18354 19.3530 667.97 567.16 22.20 18355 19.3540 642.29 552.15 21.78 18356 19.3550 644.14 537.46 21.77 18357 19.3560 617.28 523.06 21.28 18358 19.3570 590.41 509.13 20.83 18359 19.3580 570.32 495.71 20.55 18360 19.3590 544.35 482.88 20.05 18361 19.3600 532.27 470.75 19.84 18362 19.3610 543.42 459.38 20.01 18363 19.3620 500.18 448.77 19.22 18364 19.3630 500.67 438.92 19.23 18365 19.3640 481.14 429.85 18.89 18366 19.3650 512.43 421.48 19.44 18367 19.3660 483.86 413.81 18.87 18368 19.3670 454.19 406.77 18.35 18369 19.3680 461.78 401.26 18.49 18370 19.3690 465.49 395.39 18.53 18371 19.3700 454.12 390.02 18.28 18372 19.3710 451.78 385.14 18.20 18373 19.3720 438.75 380.71 18.01 18374 19.3730 433.20 376.70 17.86 18375 19.3740 452.79 373.06 18.30 18376 19.3750 415.89 369.81 17.54 18377 19.3760 401.94 366.89 17.21 18378 19.3770 414.85 364.30 17.48 18379 19.3780 394.30 362.02 17.00 18380 19.3790 393.72 360.05 17.06 18381 19.3800 388.60 358.36 16.90 18382 19.3810 408.13 356.94 17.34 18383 19.3820 393.79 355.80 17.09 18384 19.3830 401.60 354.92 17.22 18385 19.3840 383.40 354.30 16.81 18386 19.3850 378.56 353.94 16.71 18387 19.3860 403.47 353.84 17.26 18388 19.3870 386.03 353.54 16.84 18389 19.3880 407.17 353.97 17.36 18390 19.3890 394.57 354.66 17.02 18391 19.3900 387.07 355.63 16.85 18392 19.3910 399.51 356.89 17.15 18393 19.3920 377.19 358.43 16.70 18394 19.3930 378.53 360.28 16.70 18395 19.3940 377.51 362.45 16.66 18396 19.3950 391.52 364.96 16.97 18397 19.3960 384.88 367.83 16.83 18398 19.3970 422.58 371.07 17.64 18399 19.3980 437.42 374.72 17.93 18400 19.3990 398.61 378.81 17.11 18401 19.4000 403.22 383.35 17.21 18402 19.4010 441.34 388.40 17.95 18403 19.4020 429.97 394.01 17.80 18404 19.4030 464.92 400.19 18.54 18405 19.4040 434.83 407.02 17.89 18406 19.4050 416.76 414.59 17.48 18407 19.4060 467.56 422.90 18.53 18408 19.4070 464.91 432.06 18.51 18409 19.4080 454.82 442.19 18.30 18410 19.4090 473.65 453.31 18.65 18411 19.4100 515.10 465.57 19.50 18412 19.4110 519.48 479.10 19.61 18413 19.4120 502.43 494.02 19.26 18414 19.4130 513.41 510.43 19.46 18415 19.4140 513.92 528.56 19.55 18416 19.4150 530.08 548.53 19.79 18417 19.4160 566.08 570.50 20.41 18418 19.4170 560.67 594.71 20.34 18419 19.4180 636.22 621.26 21.70 18420 19.4190 657.06 650.42 22.09 18421 19.4200 720.28 682.28 23.08 18422 19.4210 756.75 716.89 23.62 18423 19.4220 743.82 754.43 23.41 18424 19.4230 821.34 794.56 24.55 18425 19.4240 857.04 837.16 25.12 18426 19.4250 942.29 881.75 26.33 18427 19.4260 960.37 927.77 26.59 18428 19.4270 1010.02 973.85 27.31 18429 19.4280 1060.15 1018.86 28.00 18430 19.4290 1095.47 1061.03 28.46 18431 19.4300 1163.46 1098.37 29.29 18432 19.4310 1211.87 1129.04 29.96 18433 19.4320 1258.94 1151.09 30.46 18434 19.4330 1222.05 1163.16 30.03 18435 19.4340 1246.59 1164.35 30.33 18436 19.4350 1217.00 1154.58 29.98 18437 19.4360 1157.07 1134.49 29.24 18438 19.4370 1134.58 1105.38 28.97 18439 19.4380 1078.14 1069.06 28.22 18440 19.4390 1058.25 1027.44 27.96 18441 19.4400 1000.99 982.28 27.20 18442 19.4410 970.37 935.63 26.75 18443 19.4420 929.47 888.80 26.18 18444 19.4430 825.08 842.77 24.67 18445 19.4440 792.92 798.67 24.22 18446 19.4450 733.07 756.89 23.30 18447 19.4460 697.78 717.68 22.70 18448 19.4470 667.01 681.25 22.17 18449 19.4480 658.78 647.62 22.03 18450 19.4490 615.74 616.76 21.35 18451 19.4500 604.51 588.43 21.11 18452 19.4510 602.61 562.54 21.12 18453 19.4520 558.05 538.93 20.27 18454 19.4530 534.49 517.39 19.78 18455 19.4540 494.45 497.66 19.03 18456 19.4550 506.90 479.71 19.26 18457 19.4560 483.15 463.30 18.83 18458 19.4570 454.41 448.25 18.31 18459 19.4580 448.47 434.52 18.20 18460 19.4590 451.48 421.93 18.21 18461 19.4600 420.78 410.35 17.64 18462 19.4610 420.08 399.71 17.66 18463 19.4620 421.96 389.93 17.67 18464 19.4630 402.69 380.89 17.22 18465 19.4640 376.65 372.55 16.64 18466 19.4650 374.55 364.85 16.63 18467 19.4660 346.09 357.70 15.99 18468 19.4670 350.33 351.08 16.07 18469 19.4680 356.20 344.90 16.15 18470 19.4690 356.74 339.18 16.21 18471 19.4700 344.61 333.85 15.91 18472 19.4710 332.24 328.86 15.60 18473 19.4720 317.13 324.21 15.29 18474 19.4730 341.28 319.86 15.88 18475 19.4740 333.46 315.77 15.65 18476 19.4750 314.10 311.95 15.27 18477 19.4760 332.94 308.36 15.66 18478 19.4770 336.92 304.98 15.74 18479 19.4780 317.28 301.81 15.38 18480 19.4790 305.51 298.82 15.02 18481 19.4800 314.81 295.99 15.21 18482 19.4810 292.74 293.32 14.70 18483 19.4820 266.94 290.81 14.04 18484 19.4830 301.52 288.42 14.92 18485 19.4840 309.89 286.17 15.11 18486 19.4850 302.86 284.03 15.00 18487 19.4860 314.76 282.00 15.23 18488 19.4870 282.12 280.08 14.40 18489 19.4880 294.12 278.25 14.75 18490 19.4890 304.56 276.51 14.97 18491 19.4900 283.58 274.86 14.41 18492 19.4910 282.17 273.29 14.35 18493 19.4920 282.76 271.78 14.40 18494 19.4930 274.07 270.35 14.22 18495 19.4940 298.01 268.99 14.83 18496 19.4950 284.51 267.69 14.51 18497 19.4960 287.23 266.45 14.58 18498 19.4970 298.11 265.26 14.81 18499 19.4980 277.54 264.12 14.33 18500 19.4990 270.10 263.04 14.10 18501 19.5000 277.30 262.00 14.27 18502 19.5010 272.87 261.01 14.17 18503 19.5020 283.22 260.05 14.46 18504 19.5030 253.77 259.14 13.69 18505 19.5040 272.77 258.27 14.18 18506 19.5050 280.04 257.43 14.39 18507 19.5060 279.82 256.63 14.29 18508 19.5070 264.88 255.86 13.97 18509 19.5080 276.07 255.12 14.27 18510 19.5090 280.53 254.41 14.37 18511 19.5100 275.54 253.73 14.26 18512 19.5110 256.48 253.07 13.76 18513 19.5120 268.50 252.45 14.05 18514 19.5130 264.27 251.85 13.95 18515 19.5140 264.55 251.27 13.97 18516 19.5150 280.97 250.71 14.39 18517 19.5160 252.19 250.18 13.64 18518 19.5170 256.02 249.67 13.72 18519 19.5180 257.04 249.24 13.79 18520 19.5190 257.70 248.77 13.79 18521 19.5200 275.71 248.31 14.28 18522 19.5210 285.94 247.88 14.51 18523 19.5220 269.36 247.47 14.10 18524 19.5230 269.84 247.07 14.09 18525 19.5240 270.98 246.69 14.09 18526 19.5250 261.67 246.32 13.89 18527 19.5260 282.85 245.97 14.50 18528 19.5270 272.31 245.64 14.22 18529 19.5280 279.43 245.32 14.34 18530 19.5290 261.29 245.02 13.95 18531 19.5300 271.50 244.73 14.17 18532 19.5310 266.48 244.45 14.01 18533 19.5320 275.75 244.19 14.26 18534 19.5330 279.15 243.94 14.38 18535 19.5340 270.45 243.70 14.15 18536 19.5350 269.18 243.48 14.10 18537 19.5360 280.60 243.27 14.38 18538 19.5370 279.07 243.07 14.33 18539 19.5380 263.59 242.88 13.93 18540 19.5390 264.01 242.71 13.94 18541 19.5400 238.57 242.55 13.27 18542 19.5410 260.67 242.40 13.88 18543 19.5420 268.02 242.26 14.06 18544 19.5430 275.91 242.13 14.28 18545 19.5440 269.93 242.02 14.10 18546 19.5450 273.08 241.92 14.16 18547 19.5460 255.96 241.82 13.76 18548 19.5470 259.49 241.75 13.83 18549 19.5480 259.49 241.68 13.91 18550 19.5490 254.38 241.62 13.70 18551 19.5500 261.66 241.58 13.87 18552 19.5510 267.94 241.55 14.04 18553 19.5520 260.15 241.53 13.87 18554 19.5530 279.41 241.52 14.28 18555 19.5540 261.84 241.53 13.89 18556 19.5550 265.91 241.55 13.98 18557 19.5560 281.64 241.58 14.39 18558 19.5570 273.05 241.63 14.13 18559 19.5580 252.57 241.69 13.58 18560 19.5590 275.74 241.76 14.30 18561 19.5600 274.36 241.85 14.25 18562 19.5610 266.81 241.95 14.02 18563 19.5620 248.61 242.07 13.54 18564 19.5630 275.94 242.20 14.24 18565 19.5640 254.83 242.35 13.65 18566 19.5650 267.75 242.51 14.03 18567 19.5660 262.82 242.70 13.91 18568 19.5670 263.71 242.90 14.01 18569 19.5680 259.50 243.12 13.85 18570 19.5690 269.72 243.36 14.09 18571 19.5700 265.79 243.62 13.94 18572 19.5710 253.98 243.90 13.66 18573 19.5720 249.23 244.21 13.54 18574 19.5730 265.67 244.54 13.99 18575 19.5740 248.86 244.89 13.60 18576 19.5750 267.44 245.27 14.06 18577 19.5760 258.74 245.67 13.81 18578 19.5770 266.05 246.11 14.05 18579 19.5780 263.98 246.57 13.99 18580 19.5790 284.83 247.07 14.54 18581 19.5800 278.01 247.60 14.31 18582 19.5810 256.47 248.17 13.82 18583 19.5820 278.86 248.77 14.39 18584 19.5830 272.26 249.42 14.17 18585 19.5840 255.49 250.11 13.69 18586 19.5850 267.82 246.74 14.05 18587 19.5860 272.32 247.56 14.19 18588 19.5870 260.89 248.43 13.89 18589 19.5880 270.21 249.36 14.10 18590 19.5890 266.40 250.35 14.05 18591 19.5900 269.38 251.40 14.08 18592 19.5910 275.71 252.52 14.14 18593 19.5920 275.75 253.72 14.28 18594 19.5930 274.09 255.00 14.20 18595 19.5940 259.42 256.37 13.84 18596 19.5950 292.73 257.83 14.72 18597 19.5960 286.30 259.41 14.46 18598 19.5970 285.18 261.09 14.48 18599 19.5980 289.37 262.90 14.62 18600 19.5990 289.11 264.84 14.61 18601 19.6000 297.50 266.93 14.87 18602 19.6010 280.14 269.18 14.40 18603 19.6020 284.59 271.61 14.46 18604 19.6030 289.81 274.24 14.59 18605 19.6040 289.00 277.08 14.57 18606 19.6050 295.96 280.15 14.75 18607 19.6060 299.18 283.49 14.89 18608 19.6070 314.29 287.12 15.23 18609 19.6080 312.86 291.07 15.25 18610 19.6090 307.03 295.37 15.08 18611 19.6100 322.03 300.08 15.40 18612 19.6110 345.87 305.23 15.92 18613 19.6120 327.16 310.87 15.56 18614 19.6130 325.42 317.09 15.51 18615 19.6140 355.55 323.92 16.15 18616 19.6150 325.09 331.45 15.45 18617 19.6160 338.04 339.76 15.83 18618 19.6170 356.00 348.97 16.23 18619 19.6180 366.45 359.17 16.46 18620 19.6190 360.71 370.46 16.30 18621 19.6200 383.41 383.03 16.82 18622 19.6210 379.87 396.99 16.73 18623 19.6220 410.13 412.47 17.41 18624 19.6230 421.92 429.65 17.63 18625 19.6240 416.41 448.75 17.55 18626 19.6250 439.45 469.67 17.99 18627 19.6260 474.12 492.77 18.67 18628 19.6270 523.45 518.08 19.57 18629 19.6280 518.61 545.32 19.50 18630 19.6290 538.73 574.35 19.94 18631 19.6300 600.59 604.75 21.05 18632 19.6310 624.38 635.73 21.53 18633 19.6320 671.02 666.16 22.31 18634 19.6330 710.45 694.77 22.89 18635 19.6340 755.36 719.85 23.59 18636 19.6350 754.99 739.64 23.63 18637 19.6360 730.25 752.65 23.23 18638 19.6370 742.51 757.69 23.42 18639 19.6380 697.28 754.30 22.69 18640 19.6390 676.81 742.82 22.31 18641 19.6400 664.59 724.25 22.16 18642 19.6410 654.40 700.01 22.00 18643 19.6420 597.79 671.97 21.01 18644 19.6430 589.59 641.74 20.82 18645 19.6440 557.84 610.70 20.29 18646 19.6450 533.34 580.04 19.84 18647 19.6460 520.18 550.62 19.60 18648 19.6470 508.33 522.87 19.33 18649 19.6480 480.23 497.11 18.80 18650 19.6490 472.47 473.50 18.66 18651 19.6500 439.95 451.94 17.97 18652 19.6510 404.98 432.44 17.20 18653 19.6520 405.71 414.78 17.28 18654 19.6530 397.54 398.87 17.13 18655 19.6540 408.67 384.56 17.31 18656 19.6550 377.34 371.65 16.74 18657 19.6560 370.94 360.01 16.54 18658 19.6570 354.67 349.54 16.16 18659 19.6580 333.22 340.05 15.69 18660 19.6590 355.53 331.49 16.22 18661 19.6600 352.62 323.74 16.11 18662 19.6610 324.86 316.71 15.46 18663 19.6620 341.15 310.29 15.82 18664 19.6630 341.00 304.47 15.84 18665 19.6640 315.07 299.14 15.22 18666 19.6650 310.68 294.27 15.11 18667 19.6660 304.43 289.81 14.99 18668 19.6670 290.35 285.71 14.62 18669 19.6680 302.47 281.94 14.94 18670 19.6690 323.37 278.47 15.44 18671 19.6700 304.28 275.26 14.99 18672 19.6710 308.03 272.30 15.04 18673 19.6720 300.40 269.55 14.90 18674 19.6730 302.14 267.00 14.90 18675 19.6740 303.17 264.63 14.95 18676 19.6750 301.93 262.43 14.93 18677 19.6760 304.95 260.37 15.02 18678 19.6770 291.60 258.45 14.72 18679 19.6780 298.55 256.66 14.81 18680 19.6790 287.71 254.98 14.54 18681 19.6800 274.52 253.41 14.18 18682 19.6810 283.79 251.93 14.50 18683 19.6820 274.20 250.54 14.20 18684 19.6830 278.32 249.24 14.29 18685 19.6840 298.04 248.01 14.88 18686 19.6850 291.10 246.85 14.65 18687 19.6860 295.86 245.76 14.81 18688 19.6870 304.96 244.72 15.04 18689 19.6880 291.40 243.75 14.72 18690 19.6890 285.29 242.82 14.59 18691 19.6900 273.97 241.94 14.22 18692 19.6910 267.72 241.11 14.06 18693 19.6920 259.17 240.32 13.83 18694 19.6930 261.08 239.57 13.85 18695 19.6940 277.37 238.86 14.31 18696 19.6950 269.22 238.18 14.08 18697 19.6960 271.01 237.54 14.14 18698 19.6970 266.14 236.92 14.05 18699 19.6980 273.84 236.34 14.17 18700 19.6990 254.62 235.78 13.77 18701 19.7000 281.30 235.24 14.37 18702 19.7010 267.11 234.73 14.08 18703 19.7020 263.16 234.25 13.94 18704 19.7030 270.76 233.78 14.11 18705 19.7040 274.11 233.33 14.20 18706 19.7050 285.05 232.90 14.49 18707 19.7060 269.14 232.49 14.11 18708 19.7070 269.81 232.10 14.11 18709 19.7080 272.03 231.73 14.17 18710 19.7090 272.08 231.36 14.21 18711 19.7100 282.64 231.02 14.39 18712 19.7110 282.27 230.68 14.40 18713 19.7120 290.73 230.36 14.70 18714 19.7130 274.40 230.05 14.17 18715 19.7140 262.58 229.76 13.88 18716 19.7150 262.07 229.48 13.90 18717 19.7160 256.83 229.20 13.73 18718 19.7170 249.37 228.94 13.59 18719 19.7180 268.05 228.68 14.08 18720 19.7190 262.77 228.44 13.93 18721 19.7200 257.37 228.21 13.79 18722 19.7210 261.70 227.98 13.93 18723 19.7220 270.01 227.76 14.11 18724 19.7230 256.77 227.55 13.74 18725 19.7240 256.44 227.35 13.72 18726 19.7250 235.90 227.15 13.19 18727 19.7260 262.47 226.96 13.84 18728 19.7270 265.68 226.78 14.00 18729 19.7280 268.47 226.60 14.06 18730 19.7290 262.41 226.44 13.93 18731 19.7300 264.93 226.27 13.96 18732 19.7310 257.57 226.12 13.76 18733 19.7320 254.58 225.97 13.65 18734 19.7330 267.03 225.82 13.95 18735 19.7340 268.48 225.68 14.04 18736 19.7350 254.50 225.54 13.69 18737 19.7360 261.76 225.41 13.87 18738 19.7370 275.05 225.29 14.25 18739 19.7380 276.85 225.17 14.29 18740 19.7390 253.16 224.88 13.68 18741 19.7400 242.68 224.77 13.37 18742 19.7410 245.42 223.24 13.45 18743 19.7420 246.39 223.15 13.46 18744 19.7430 246.54 223.06 13.48 18745 19.7440 259.16 222.98 13.81 18746 19.7450 241.98 222.90 13.36 18747 19.7460 258.22 222.82 13.79 18748 19.7470 276.33 222.75 14.21 18749 19.7480 274.18 222.68 14.31 18750 19.7490 265.55 222.62 14.03 18751 19.7500 245.95 222.56 13.47 18752 19.7510 253.81 222.50 13.67 18753 19.7520 249.26 222.45 13.52 18754 19.7530 277.76 222.40 14.28 18755 19.7540 254.43 222.36 13.67 18756 19.7550 234.74 222.32 13.15 18757 19.7560 266.07 222.29 14.00 18758 19.7570 275.88 222.26 14.24 18759 19.7580 270.04 222.23 14.13 18760 19.7590 268.30 222.21 14.10 18761 19.7600 263.00 222.19 13.95 18762 19.7610 276.30 222.17 14.24 18763 19.7620 284.01 222.16 14.45 18764 19.7630 276.34 222.16 14.26 18765 19.7640 266.44 222.16 13.98 18766 19.7650 257.27 222.17 13.74 18767 19.7660 252.23 222.18 13.65 18768 19.7670 261.64 222.20 13.89 18769 19.7680 259.10 222.22 13.84 18770 19.7690 251.05 222.25 13.56 18771 19.7700 221.17 222.28 12.77 18772 19.7710 231.72 222.32 13.05 18773 19.7720 242.41 222.38 13.38 18774 19.7730 267.33 222.43 14.03 18775 19.7740 260.37 222.50 13.83 18776 19.7750 251.66 222.57 13.56 18777 19.7760 246.06 222.66 13.50 18778 19.7770 237.07 222.76 13.28 18779 19.7780 246.62 222.86 13.46 18780 19.7790 279.35 222.98 14.33 18781 19.7800 257.78 223.11 13.80 18782 19.7810 271.03 223.26 14.18 18783 19.7820 266.95 223.42 14.05 18784 19.7830 256.25 223.59 13.71 18785 19.7840 247.92 223.79 13.55 18786 19.7850 277.54 224.01 14.28 18787 19.7860 274.26 224.24 14.22 18788 19.7870 278.68 224.50 14.31 18789 19.7880 258.91 224.79 13.89 18790 19.7890 267.51 225.11 14.02 18791 19.7900 269.89 225.46 14.15 18792 19.7910 248.72 238.06 13.49 18793 19.7920 260.27 238.57 13.83 18794 19.7930 264.59 239.13 13.97 18795 19.7940 267.61 239.74 13.97 18796 19.7950 261.71 240.41 13.92 18797 19.7960 277.69 241.13 14.28 18798 19.7970 257.26 241.93 13.73 18799 19.7980 259.86 242.79 13.82 18800 19.7990 253.12 243.74 13.65 18801 19.8000 271.96 244.78 14.11 18802 19.8010 286.04 245.92 14.52 18803 19.8020 256.33 247.16 13.69 18804 19.8030 274.19 248.51 14.23 18805 19.8040 276.94 249.97 14.23 18806 19.8050 272.70 251.55 14.20 18807 19.8060 299.23 253.23 14.83 18808 19.8070 277.76 255.01 14.30 18809 19.8080 276.66 256.87 14.29 18810 19.8090 275.78 258.76 14.22 18811 19.8100 259.08 260.64 13.84 18812 19.8110 286.48 262.46 14.55 18813 19.8120 293.46 264.12 14.72 18814 19.8130 283.52 265.56 14.49 18815 19.8140 312.80 266.69 15.20 18816 19.8150 300.73 267.44 14.91 18817 19.8160 293.88 267.77 14.78 18818 19.8170 300.88 267.64 14.92 18819 19.8180 304.14 267.09 14.90 18820 19.8190 301.53 266.15 14.92 18821 19.8200 284.83 264.91 14.54 18822 19.8210 263.44 263.43 13.93 18823 19.8220 255.46 261.81 13.69 18824 19.8230 280.07 260.11 14.35 18825 19.8240 269.12 258.40 14.07 18826 19.8250 256.46 256.73 13.78 18827 19.8260 269.07 255.14 14.06 18828 19.8270 263.33 253.64 13.99 18829 19.8280 269.09 252.25 14.11 18830 19.8290 288.22 250.97 14.61 18831 19.8300 273.35 249.81 14.24 18832 19.8310 259.13 248.75 13.81 18833 19.8320 271.77 247.80 14.20 18834 19.8330 283.44 246.95 14.48 18835 19.8340 270.78 246.19 14.14 18836 19.8350 268.86 245.51 14.13 18837 19.8360 275.17 244.91 14.24 18838 19.8370 258.11 244.37 13.81 18839 19.8380 255.80 243.90 13.76 18840 19.8390 282.55 243.48 14.42 18841 19.8400 259.32 243.12 13.84 18842 19.8410 262.99 242.80 13.88 18843 19.8420 278.59 242.52 14.34 18844 19.8430 268.78 242.27 14.06 18845 19.8440 286.25 242.07 14.56 18846 19.8450 288.98 241.89 14.61 18847 19.8460 257.29 241.74 13.79 18848 19.8470 251.71 241.62 13.64 18849 19.8480 255.58 241.52 13.74 18850 19.8490 249.82 241.45 13.61 18851 19.8500 254.96 241.39 13.71 18852 19.8510 258.69 241.35 13.81 18853 19.8520 259.31 241.33 13.87 18854 19.8530 260.61 241.33 13.83 18855 19.8540 257.47 241.34 13.79 18856 19.8550 280.02 241.36 14.35 18857 19.8560 254.83 241.40 13.64 18858 19.8570 252.22 241.45 13.66 18859 19.8580 264.06 241.51 13.99 18860 19.8590 247.22 241.58 13.49 18861 19.8600 264.22 241.66 13.86 18862 19.8610 296.62 241.76 14.81 18863 19.8620 270.74 241.86 14.12 18864 19.8630 275.39 241.97 14.24 18865 19.8640 272.52 242.09 14.18 18866 19.8650 250.62 242.21 13.63 18867 19.8660 251.88 242.35 13.62 18868 19.8670 255.88 242.49 13.75 18869 19.8680 279.07 242.65 14.38 18870 19.8690 290.49 242.80 14.67 18871 19.8700 286.71 242.97 14.54 18872 19.8710 269.61 243.14 14.06 18873 19.8720 284.94 243.32 14.50 18874 19.8730 274.10 243.51 14.21 18875 19.8740 267.95 243.70 14.05 18876 19.8750 268.18 243.90 14.04 18877 19.8760 263.96 244.11 13.90 18878 19.8770 245.79 244.32 13.51 18879 19.8780 274.26 244.54 14.24 18880 19.8790 282.59 244.77 14.40 18881 19.8800 274.82 245.01 14.20 18882 19.8810 280.05 245.25 14.36 18883 19.8820 239.92 245.49 13.32 18884 19.8830 269.93 245.75 14.13 18885 19.8840 268.67 246.01 14.07 18886 19.8850 256.11 246.28 13.78 18887 19.8860 272.59 246.56 14.18 18888 19.8870 283.49 246.84 14.43 18889 19.8880 275.32 247.13 14.21 18890 19.8890 264.08 254.94 13.92 18891 19.8900 271.99 255.30 14.17 18892 19.8910 256.39 255.66 13.75 18893 19.8920 268.61 256.04 14.07 18894 19.8930 279.33 256.42 14.38 18895 19.8940 282.52 256.82 14.46 18896 19.8950 273.10 257.22 14.21 18897 19.8960 254.03 257.63 13.63 18898 19.8970 262.11 258.06 13.88 18899 19.8980 284.54 258.50 14.50 18900 19.8990 286.06 258.94 14.58 18901 19.9000 289.12 259.40 14.59 18902 19.9010 270.52 259.88 14.12 18903 19.9020 272.72 260.37 14.16 18904 19.9030 265.62 260.87 14.01 18905 19.9040 276.14 261.38 14.28 18906 19.9050 268.54 261.91 14.07 18907 19.9060 276.48 262.46 14.30 18908 19.9070 267.05 263.02 14.04 18909 19.9080 255.98 262.66 13.72 18910 19.9090 278.31 263.25 14.27 18911 19.9100 285.52 263.84 14.53 18912 19.9110 302.48 264.43 14.94 18913 19.9120 283.54 265.03 14.52 18914 19.9130 285.25 265.62 14.50 18915 19.9140 274.80 266.20 14.23 18916 19.9150 251.89 266.77 13.60 18917 19.9160 261.47 267.33 13.84 18918 19.9170 285.74 267.87 14.49 18919 19.9180 270.22 268.41 14.11 18920 19.9190 288.91 268.94 14.63 18921 19.9200 281.47 269.48 14.40 18922 19.9210 272.78 270.02 14.18 18923 19.9220 286.41 270.57 14.51 18924 19.9230 300.77 271.14 14.90 18925 19.9240 276.68 271.72 14.28 18926 19.9250 280.87 272.32 14.34 18927 19.9260 298.83 272.93 14.82 18928 19.9270 278.91 273.57 14.42 18929 19.9280 303.07 274.23 14.92 18930 19.9290 303.58 274.91 14.95 18931 19.9300 293.53 275.60 14.76 18932 19.9310 303.54 276.32 14.96 18933 19.9320 307.57 277.06 15.04 18934 19.9330 290.17 277.83 14.62 18935 19.9340 303.08 278.61 14.92 18936 19.9350 284.75 279.41 14.47 18937 19.9360 296.17 280.23 14.76 18938 19.9370 304.98 281.08 14.96 18939 19.9380 299.78 281.94 14.84 18940 19.9390 284.61 282.83 14.48 18941 19.9400 299.85 283.74 14.87 18942 19.9410 298.88 284.67 14.88 18943 19.9420 309.20 285.63 15.15 18944 19.9430 289.55 286.61 14.59 18945 19.9440 301.49 287.61 14.93 18946 19.9450 295.77 288.64 14.78 18947 19.9460 310.94 289.69 15.10 18948 19.9470 318.96 290.77 15.33 18949 19.9480 297.14 291.88 14.81 18950 19.9490 288.74 293.01 14.58 18951 19.9500 302.79 294.17 14.94 18952 19.9510 313.83 295.36 15.21 18953 19.9520 325.84 296.58 15.55 18954 19.9530 312.71 297.83 15.24 18955 19.9540 306.29 299.11 15.05 18956 19.9550 300.45 300.42 14.88 18957 19.9560 296.32 301.77 14.75 18958 19.9570 303.69 303.15 14.92 18959 19.9580 316.78 304.57 15.27 18960 19.9590 311.94 306.03 15.14 18961 19.9600 323.44 307.52 15.35 18962 19.9610 307.65 309.06 15.09 18963 19.9620 337.86 310.63 15.77 18964 19.9630 345.63 312.25 15.98 18965 19.9640 337.41 313.91 15.82 18966 19.9650 339.47 315.62 15.82 18967 19.9660 327.99 317.37 15.49 18968 19.9670 312.55 319.17 15.22 18969 19.9680 339.22 321.03 15.87 18970 19.9690 358.97 322.94 16.27 18971 19.9700 346.82 324.90 16.00 18972 19.9710 330.49 326.92 15.64 18973 19.9720 343.78 329.00 15.90 18974 19.9730 347.13 331.14 15.98 18975 19.9740 327.50 333.35 15.49 18976 19.9750 338.37 335.62 15.75 18977 19.9760 352.51 337.96 16.05 18978 19.9770 339.86 340.37 15.82 18979 19.9780 362.95 342.87 16.37 18980 19.9790 356.12 345.43 16.21 18981 19.9800 356.66 348.08 16.21 18982 19.9810 407.15 350.82 17.35 18983 19.9820 377.87 353.64 16.69 18984 19.9830 347.76 356.56 16.00 18985 19.9840 377.25 359.58 16.67 18986 19.9850 379.62 362.70 16.73 18987 19.9860 370.65 365.92 16.56 18988 19.9870 384.29 369.26 16.90 18989 19.9880 401.61 372.71 17.24 18990 19.9890 384.55 376.28 16.80 18991 19.9900 404.04 379.98 17.24 18992 19.9910 442.58 383.82 18.09 18993 19.9920 426.37 387.80 17.71 18994 19.9930 415.39 391.92 17.47 18995 19.9940 409.40 396.20 17.40 18996 19.9950 411.59 400.66 17.43 18997 19.9960 427.17 405.27 17.69 18998 19.9970 449.30 410.06 18.13 18999 19.9980 446.55 415.05 17.39 19000 19.9990 442.11 420.24 17.34 19001 20.0000 448.46 425.64 17.48 19002 20.0010 465.00 431.27 17.77 19003 20.0020 458.01 437.13 17.62 19004 20.0030 474.13 443.24 17.92 19005 20.0040 463.77 449.62 17.67 19006 20.0050 460.07 456.26 17.58 19007 20.0060 483.46 463.22 18.04 19008 20.0070 510.54 470.48 18.55 19009 20.0080 489.74 478.07 18.16 19010 20.0090 522.01 486.03 18.74 19011 20.0100 526.36 494.36 18.91 19012 20.0110 547.98 503.08 19.26 19013 20.0120 568.48 512.22 19.60 19014 20.0130 555.75 521.85 19.36 19015 20.0140 556.77 531.93 19.36 19016 20.0150 534.20 542.53 19.00 19017 20.0160 601.12 553.72 20.16 19018 20.0170 595.53 565.47 20.01 19019 20.0180 590.22 577.84 19.99 19020 20.0190 625.67 590.92 20.57 19021 20.0200 622.25 604.73 20.45 19022 20.0210 680.26 619.33 21.42 19023 20.0220 689.09 634.75 21.61 19024 20.0230 709.80 651.11 21.89 19025 20.0240 750.56 668.46 22.51 19026 20.0250 738.20 686.84 22.30 19027 20.0260 732.97 706.36 22.23 19028 20.0270 744.49 727.21 22.39 19029 20.0280 797.55 749.34 23.19 19030 20.0290 779.13 772.94 22.93 19031 20.0300 812.57 798.23 23.42 19032 20.0310 852.24 825.17 24.01 19033 20.0320 918.98 854.03 24.88 19034 20.0330 915.77 885.07 24.87 19035 20.0340 945.37 918.29 25.30 19036 20.0350 1021.01 954.02 26.32 19037 20.0360 1040.14 992.56 26.49 19038 20.0370 1071.63 1034.15 26.90 19039 20.0380 1102.24 1079.01 27.27 19040 20.0390 1145.61 1127.65 27.83 19041 20.0400 1156.76 1180.40 27.90 19042 20.0410 1228.58 1237.69 28.75 19043 20.0420 1318.86 1299.93 29.78 19044 20.0430 1345.46 1367.78 30.14 19045 20.0440 1435.96 1442.14 31.18 19046 20.0450 1470.31 1523.23 31.47 19047 20.0460 1616.58 1612.10 33.03 19048 20.0470 1688.16 1710.03 33.74 19049 20.0480 1745.96 1817.39 34.34 19050 20.0490 1813.27 1935.66 35.03 19051 20.0500 1966.35 2066.37 36.40 19052 20.0510 2099.85 2210.76 37.61 19053 20.0520 2186.94 2370.15 38.38 19054 20.0530 2290.33 2546.78 39.34 19055 20.0540 2517.35 2742.21 41.19 19056 20.0550 2715.98 2957.92 42.83 19057 20.0560 2970.40 3196.48 44.75 19058 20.0570 3182.40 3458.69 46.35 19059 20.0580 3438.28 3746.69 48.16 19060 20.0590 3765.60 4060.59 50.42 19061 20.0600 4253.19 4399.18 53.53 19062 20.0610 4631.10 4761.34 55.95 19063 20.0620 5051.02 5141.90 58.39 19064 20.0630 5431.73 5532.59 60.61 19065 20.0640 5999.01 5922.94 63.60 19066 20.0650 6568.22 6299.31 66.59 19067 20.0660 7019.56 6640.89 68.84 19068 20.0670 7576.99 6928.81 71.54 19069 20.0680 7886.36 7143.75 73.05 19070 20.0690 8114.43 7267.62 74.06 19071 20.0700 8025.77 7290.94 73.65 19072 20.0710 7611.13 7211.70 71.73 19073 20.0720 7301.78 7036.47 70.30 19074 20.0730 6902.78 6779.55 68.29 19075 20.0740 6508.35 6460.47 66.42 19076 20.0750 6112.32 6098.62 64.28 19077 20.0760 5545.79 5713.87 61.24 19078 20.0770 5121.56 5323.41 58.84 19079 20.0780 4647.12 4939.34 56.02 19080 20.0790 4268.32 4569.49 53.65 19081 20.0800 4039.84 4222.21 52.24 19082 20.0810 3752.41 3899.39 50.36 19083 20.0820 3517.67 3601.33 48.78 19084 20.0830 3226.65 3329.97 46.69 19085 20.0840 2881.17 3083.27 44.11 19086 20.0850 2702.85 2859.39 42.74 19087 20.0860 2590.16 2657.00 41.81 19088 20.0870 2428.86 2474.55 40.53 19089 20.0880 2284.22 2309.56 39.28 19090 20.0890 2183.01 2160.61 38.38 19091 20.0900 2050.16 2026.05 37.19 19092 20.0910 1899.31 1904.58 35.83 19093 20.0920 1831.94 1794.60 35.21 19094 20.0930 1725.28 1694.57 34.15 19095 20.0940 1683.00 1604.08 33.72 19096 20.0950 1593.72 1521.80 32.83 19097 20.0960 1524.58 1446.64 32.13 19098 20.0970 1398.75 1378.34 30.75 19099 20.0980 1403.57 1315.97 30.76 19100 20.0990 1322.74 1258.74 29.87 19101 20.1000 1268.26 1206.51 29.26 19102 20.1010 1208.74 1158.62 28.59 19103 20.1020 1177.62 1114.58 28.22 19104 20.1030 1135.80 1074.10 27.69 19105 20.1040 1111.47 1036.93 27.39 19106 20.1050 1107.36 1002.65 27.34 19107 20.1060 1077.54 971.05 26.99 19108 20.1070 997.48 941.97 25.95 19109 20.1080 932.60 915.09 25.11 19110 20.1090 950.69 890.34 25.36 19111 20.1100 929.81 867.44 24.99 19112 20.1110 899.63 846.32 24.65 19113 20.1120 911.65 826.86 24.81 19114 20.1130 904.37 808.85 24.72 19115 20.1140 877.28 792.32 24.33 19116 20.1150 828.47 777.04 23.62 19117 20.1160 829.45 763.05 23.63 19118 20.1170 803.34 750.18 23.35 19119 20.1180 786.67 738.43 23.10 19120 20.1190 755.71 727.70 22.61 19121 20.1200 759.02 717.95 22.67 19122 20.1210 777.45 709.15 22.92 19123 20.1220 749.86 701.21 22.50 19124 20.1230 756.12 694.15 22.59 19125 20.1240 696.24 687.89 21.65 19126 20.1250 716.20 682.42 21.94 19127 20.1260 740.29 677.74 22.32 19128 20.1270 724.16 673.79 22.16 19129 20.1280 714.78 670.59 21.98 19130 20.1290 689.23 668.11 21.59 19131 20.1300 707.42 666.35 21.89 19132 20.1310 715.22 665.30 21.94 19133 20.1320 713.03 664.97 22.00 19134 20.1330 700.97 665.35 21.80 19135 20.1340 715.35 666.46 22.02 19136 20.1350 710.06 668.29 21.88 19137 20.1360 711.84 670.88 21.91 19138 20.1370 663.56 674.23 21.18 19139 20.1380 705.48 678.37 21.86 19140 20.1390 728.48 683.33 22.19 19141 20.1400 704.73 689.12 21.83 19142 20.1410 732.18 695.81 22.24 19143 20.1420 747.65 703.42 22.43 19144 20.1430 736.50 711.99 22.34 19145 20.1440 765.69 721.59 22.74 19146 20.1450 765.31 732.32 22.72 19147 20.1460 764.14 744.17 22.65 19148 20.1470 776.05 757.25 22.86 19149 20.1480 771.67 771.71 22.79 19150 20.1490 804.56 787.55 23.27 19151 20.1500 780.48 804.92 23.03 19152 20.1510 821.76 823.99 23.58 19153 20.1520 848.49 844.86 23.99 19154 20.1530 881.41 867.65 24.38 19155 20.1540 860.68 892.62 24.16 19156 20.1550 950.67 919.93 25.34 19157 20.1560 931.34 949.74 25.08 19158 20.1570 936.62 982.41 25.16 19159 20.1580 1001.70 1018.18 26.00 19160 20.1590 1005.26 1057.28 26.03 19161 20.1600 1086.10 1100.21 27.04 19162 20.1610 1125.82 1147.21 27.57 19163 20.1620 1182.37 1198.99 28.22 19164 20.1630 1212.58 1255.69 28.65 19165 20.1640 1280.26 1318.03 29.40 19166 20.1650 1346.72 1386.88 30.15 19167 20.1660 1386.75 1462.45 30.60 19168 20.1670 1442.61 1545.72 31.22 19169 20.1680 1497.54 1637.66 31.80 19170 20.1690 1622.88 1739.03 33.11 19171 20.1700 1671.42 1850.54 33.61 19172 20.1710 1779.45 1973.52 34.67 19173 20.1720 1822.86 2108.71 35.03 19174 20.1730 2040.58 2256.67 37.07 19175 20.1740 2166.38 2418.58 38.20 19176 20.1750 2217.40 2594.20 38.66 19177 20.1760 2484.46 2783.99 40.94 19178 20.1770 2696.92 2986.77 42.67 19179 20.1780 2850.84 3200.29 43.88 19180 20.1790 3114.67 3422.07 45.82 19181 20.1800 3350.76 3647.00 47.55 19182 20.1810 3551.94 3868.15 48.99 19183 20.1820 3807.36 4077.61 50.71 19184 20.1830 3940.60 4266.32 51.56 19185 20.1840 4233.46 4422.60 53.45 19186 20.1850 4331.64 4537.25 54.10 19187 20.1860 4340.32 4602.39 54.12 19188 20.1870 4286.93 4612.64 53.82 19189 20.1880 4240.59 4567.34 53.51 19190 20.1890 4183.63 4469.96 53.23 19191 20.1900 4062.36 4327.07 52.40 19192 20.1910 3783.69 4148.12 50.60 19193 20.1920 3511.47 3943.86 48.67 19194 20.1930 3310.43 3723.69 47.31 19195 20.1940 3144.68 3496.89 46.05 19196 20.1950 2963.46 3271.14 44.71 19197 20.1960 2784.69 3051.51 43.38 19198 20.1970 2590.80 2841.10 41.84 19199 20.1980 2400.49 2643.73 40.30 19200 20.1990 2274.29 2459.90 39.23 19201 20.2000 2160.82 2289.47 38.23 19202 20.2010 2033.98 2133.46 37.06 19203 20.2020 1947.89 1990.71 36.28 19204 20.2030 1841.81 1860.24 35.30 19205 20.2040 1726.82 1741.41 34.19 19206 20.2050 1635.62 1633.44 33.23 19207 20.2060 1540.78 1535.04 32.26 19208 20.2070 1468.38 1445.48 31.51 19209 20.2080 1379.02 1363.93 30.50 19210 20.2090 1340.51 1289.72 30.09 19211 20.2100 1294.46 1222.00 29.59 19212 20.2110 1221.25 1159.90 28.69 19213 20.2120 1167.11 1103.27 28.10 19214 20.2130 1132.55 1051.37 27.67 19215 20.2140 1075.03 1003.56 26.92 19216 20.2150 982.19 959.77 25.73 19217 20.2160 998.61 919.43 25.95 19218 20.2170 990.05 882.16 25.81 19219 20.2180 956.59 847.73 25.36 19220 20.2190 877.89 815.92 24.35 19221 20.2200 874.05 786.39 24.26 19222 20.2210 825.26 758.97 23.61 19223 20.2220 787.53 733.53 23.03 19224 20.2230 801.99 709.80 23.27 19225 20.2240 775.52 687.68 22.89 19226 20.2250 760.93 667.06 22.71 19227 20.2260 745.02 647.74 22.43 19228 20.2270 723.20 629.69 22.12 19229 20.2280 711.71 612.74 21.94 19230 20.2290 715.25 596.82 21.98 19231 20.2300 667.66 581.89 21.25 19232 20.2310 679.19 567.80 21.40 19233 20.2320 662.52 554.57 21.13 19234 20.2330 642.86 542.09 20.79 19235 20.2340 644.98 530.31 20.83 19236 20.2350 642.68 519.14 20.82 19237 20.2360 627.96 508.60 20.56 19238 20.2370 567.73 498.61 19.57 19239 20.2380 604.75 489.14 20.16 19240 20.2390 571.84 480.17 19.63 19241 20.2400 554.14 471.64 19.32 19242 20.2410 544.10 463.55 19.16 19243 20.2420 518.71 455.83 18.71 19244 20.2430 529.64 448.49 18.91 19245 20.2440 540.94 441.51 19.12 19246 20.2450 526.60 434.83 18.90 19247 20.2460 522.01 428.47 18.75 19248 20.2470 525.35 422.40 18.87 19249 20.2480 509.27 416.60 18.56 19250 20.2490 482.23 411.03 18.08 19251 20.2500 460.19 405.72 17.60 19252 20.2510 449.32 400.63 17.38 19253 20.2520 440.85 395.75 17.21 19254 20.2530 474.87 391.07 17.90 19255 20.2540 483.00 386.59 18.07 19256 20.2550 443.20 382.28 17.27 19257 20.2560 453.51 378.14 17.50 19258 20.2570 466.01 374.16 17.76 19259 20.2580 419.14 370.34 16.79 19260 20.2590 410.45 366.66 16.66 19261 20.2600 436.14 363.12 17.18 19262 20.2610 404.53 359.71 16.56 19263 20.2620 421.02 356.43 16.86 19264 20.2630 411.34 353.25 16.69 19265 20.2640 403.66 350.20 16.53 19266 20.2650 425.99 347.25 16.96 19267 20.2660 393.59 344.39 16.29 19268 20.2670 394.85 341.65 16.31 19269 20.2680 373.53 338.99 15.86 19270 20.2690 371.63 336.42 15.84 19271 20.2700 391.59 333.93 16.24 19272 20.2710 394.81 331.53 16.36 19273 20.2720 375.47 329.20 15.92 19274 20.2730 374.65 326.95 15.90 19275 20.2740 360.65 324.77 15.60 19276 20.2750 365.55 322.65 15.66 19277 20.2760 325.89 320.60 14.78 19278 20.2770 354.70 318.61 15.49 19279 20.2780 356.33 316.68 15.53 19280 20.2790 348.60 314.82 15.35 19281 20.2800 361.95 313.00 15.69 19282 20.2810 322.96 311.23 14.79 19283 20.2820 309.43 309.52 14.44 19284 20.2830 317.69 307.86 14.62 19285 20.2840 321.20 306.24 14.68 19286 20.2850 313.42 304.67 14.52 19287 20.2860 324.12 303.14 14.80 19288 20.2870 331.01 301.65 14.98 19289 20.2880 326.04 300.21 14.82 19290 20.2890 308.00 301.38 14.40 19291 20.2900 312.44 300.03 14.52 19292 20.2910 322.53 298.71 14.79 19293 20.2920 305.94 297.43 14.38 19294 20.2930 289.85 296.18 13.96 19295 20.2940 304.40 294.96 14.27 19296 20.2950 319.55 293.78 14.63 19297 20.2960 301.63 292.62 14.24 19298 20.2970 287.21 291.50 13.91 19299 20.2980 313.41 290.40 14.57 19300 20.2990 297.87 289.33 14.19 19301 20.3000 306.77 288.29 14.35 19302 20.3010 310.11 287.27 14.48 19303 20.3020 299.21 286.27 14.19 19304 20.3030 308.59 285.31 14.44 19305 20.3040 294.11 284.36 14.08 19306 20.3050 286.65 283.43 13.89 19307 20.3060 302.71 282.53 14.32 19308 20.3070 298.47 281.65 14.23 19309 20.3080 297.90 280.79 14.19 19310 20.3090 273.01 279.95 13.58 19311 20.3100 277.65 279.13 13.68 19312 20.3110 270.44 278.33 13.51 19313 20.3120 263.62 277.54 13.33 19314 20.3130 281.78 276.78 13.78 19315 20.3140 292.09 276.03 14.02 19316 20.3150 266.66 275.29 13.41 19317 20.3160 267.19 274.58 13.42 19318 20.3170 268.81 273.88 13.48 19319 20.3180 280.02 273.19 13.73 19320 20.3190 268.64 272.52 13.44 19321 20.3200 274.87 271.86 13.58 19322 20.3210 258.38 271.22 13.17 19323 20.3220 267.05 270.59 13.42 19324 20.3230 259.65 269.97 13.23 19325 20.3240 287.97 269.37 13.91 19326 20.3250 260.47 268.78 13.24 19327 20.3260 271.06 268.20 13.61 19328 20.3270 267.73 267.64 13.46 19329 20.3280 273.85 267.08 13.56 19330 20.3290 289.77 266.54 13.99 19331 20.3300 270.75 266.01 13.50 19332 20.3310 273.85 265.49 13.52 19333 20.3320 269.08 264.98 13.46 19334 20.3330 271.02 264.48 13.50 19335 20.3340 256.88 263.99 13.15 19336 20.3350 267.98 263.51 13.43 19337 20.3360 265.53 263.04 13.39 19338 20.3370 265.74 262.58 13.37 19339 20.3380 266.69 262.12 13.42 19340 20.3390 262.26 261.68 13.34 19341 20.3400 257.71 261.25 13.15 19342 20.3410 277.89 260.82 13.68 19343 20.3420 262.33 260.40 13.34 19344 20.3430 284.61 259.99 13.87 19345 20.3440 277.22 259.59 13.65 19346 20.3450 276.89 259.20 13.63 19347 20.3460 253.64 258.81 13.06 19348 20.3470 243.17 258.44 12.83 19349 20.3480 266.23 258.07 13.43 19350 20.3490 265.86 257.70 13.42 19351 20.3500 266.96 245.26 13.47 19352 20.3510 251.10 245.00 13.00 19353 20.3520 241.31 244.74 12.74 19354 20.3530 271.51 244.49 13.52 19355 20.3540 257.60 244.24 13.21 19356 20.3550 256.20 244.00 13.18 19357 20.3560 270.36 243.76 13.53 19358 20.3570 259.05 243.53 13.20 19359 20.3580 244.79 243.30 12.81 19360 20.3590 276.40 243.08 13.67 19361 20.3600 263.68 242.87 13.36 19362 20.3610 268.98 242.66 13.49 19363 20.3620 263.33 242.45 13.38 19364 20.3630 251.86 242.25 12.99 19365 20.3640 262.97 242.05 13.30 19366 20.3650 270.74 241.86 13.49 19367 20.3660 274.32 241.67 13.59 19368 20.3670 267.69 241.49 13.47 19369 20.3680 256.60 241.31 13.13 19370 20.3690 257.58 241.14 13.20 19371 20.3700 253.89 240.97 13.04 19372 20.3710 262.19 240.80 13.24 19373 20.3720 253.57 240.64 13.09 19374 20.3730 262.34 240.48 13.30 19375 20.3740 262.03 240.33 13.32 19376 20.3750 243.30 240.18 12.80 19377 20.3760 249.21 240.03 13.00 19378 20.3770 262.52 239.89 13.28 19379 20.3780 257.84 239.75 13.18 19380 20.3790 251.84 239.62 13.04 19381 20.3800 233.98 239.48 12.54 19382 20.3810 232.60 239.36 12.46 19383 20.3820 250.14 239.23 13.00 19384 20.3830 260.80 239.11 13.29 19385 20.3840 262.76 238.99 13.28 19386 20.3850 251.47 238.88 13.03 19387 20.3860 247.20 238.77 12.92 19388 20.3870 260.96 238.66 13.30 19389 20.3880 255.15 238.56 13.15 19390 20.3890 261.54 238.46 13.28 19391 20.3900 258.59 238.36 13.19 19392 20.3910 249.00 238.27 12.95 19393 20.3920 242.34 238.18 12.79 19394 20.3930 256.03 238.09 13.11 19395 20.3940 251.08 238.01 13.01 19396 20.3950 261.19 237.93 13.25 19397 20.3960 251.92 237.85 13.04 19398 20.3970 250.57 237.78 12.97 19399 20.3980 248.52 237.71 12.97 19400 20.3990 246.69 237.64 12.96 19401 20.4000 264.60 237.57 13.37 19402 20.4010 236.90 237.51 12.66 19403 20.4020 239.53 237.45 12.74 19404 20.4030 260.74 237.40 13.25 19405 20.4040 251.84 237.34 12.99 19406 20.4050 254.18 237.29 13.08 19407 20.4060 250.08 237.25 12.99 19408 20.4070 253.39 237.21 13.08 19409 20.4080 257.74 237.16 13.16 19410 20.4090 253.20 237.13 13.07 19411 20.4100 251.46 237.09 13.04 19412 20.4110 258.41 237.06 13.22 19413 20.4120 267.75 237.04 13.43 19414 20.4130 253.72 237.01 13.07 19415 20.4140 262.62 236.99 13.30 19416 20.4150 251.15 236.97 13.03 19417 20.4160 240.33 236.96 12.77 19418 20.4170 245.15 236.94 12.88 19419 20.4180 245.06 236.93 12.84 19420 20.4190 237.03 236.93 12.62 19421 20.4200 239.00 236.93 12.63 19422 20.4210 235.83 236.93 12.57 19423 20.4220 247.29 236.93 12.84 19424 20.4230 249.76 236.94 12.91 19425 20.4240 254.09 236.95 13.04 19426 20.4250 248.76 236.96 12.94 19427 20.4260 278.82 236.98 13.65 19428 20.4270 247.13 237.00 12.89 19429 20.4280 227.67 237.02 12.37 19430 20.4290 243.13 237.05 12.84 19431 20.4300 270.43 237.08 13.52 19432 20.4310 270.18 237.12 13.48 19433 20.4320 255.03 237.16 13.05 19434 20.4330 225.53 237.20 12.32 19435 20.4340 247.82 237.24 12.93 19436 20.4350 258.94 237.29 13.21 19437 20.4360 246.03 237.35 12.86 19438 20.4370 243.68 237.40 12.81 19439 20.4380 253.14 237.46 13.03 19440 20.4390 255.03 237.53 13.15 19441 20.4400 253.47 237.60 13.04 19442 20.4410 241.84 237.67 12.68 19443 20.4420 247.45 237.75 12.95 19444 20.4430 245.93 237.83 12.91 19445 20.4440 252.17 237.92 13.07 19446 20.4450 244.61 238.01 12.79 19447 20.4460 246.66 238.10 12.93 19448 20.4470 249.57 238.21 12.95 19449 20.4480 244.59 238.31 12.85 19450 20.4490 240.28 238.42 12.69 19451 20.4500 258.96 238.53 13.20 19452 20.4510 244.81 238.65 12.89 19453 20.4520 246.12 238.78 12.91 19454 20.4530 240.20 238.91 12.73 19455 20.4540 248.20 239.04 12.91 19456 20.4550 250.77 239.19 13.07 19457 20.4560 256.91 239.33 13.20 19458 20.4570 242.99 239.49 12.77 19459 20.4580 248.09 239.65 12.94 19460 20.4590 237.29 239.81 12.65 19461 20.4600 248.11 239.98 12.91 19462 20.4610 262.29 240.16 13.32 19463 20.4620 258.65 240.35 13.23 19464 20.4630 245.65 240.54 12.88 19465 20.4640 255.30 240.74 13.08 19466 20.4650 278.37 240.94 13.69 19467 20.4660 269.67 241.15 13.47 19468 20.4670 261.01 241.38 13.22 19469 20.4680 244.13 241.61 12.83 19470 20.4690 268.58 241.84 13.42 19471 20.4700 256.13 242.09 13.11 19472 20.4710 255.92 242.34 13.09 19473 20.4720 258.40 242.61 13.16 19474 20.4730 263.28 242.88 13.33 19475 20.4740 240.05 243.16 12.72 19476 20.4750 232.94 243.46 12.55 19477 20.4760 247.01 243.76 12.89 19478 20.4770 264.16 244.07 13.33 19479 20.4780 246.86 244.40 12.90 19480 20.4790 239.20 244.73 12.72 19481 20.4800 250.11 245.08 13.02 19482 20.4810 272.57 245.44 13.56 19483 20.4820 276.27 245.81 13.64 19484 20.4830 253.68 246.20 13.04 19485 20.4840 255.24 246.60 13.06 19486 20.4850 252.60 239.53 13.00 19487 20.4860 265.89 240.01 13.31 19488 20.4870 274.21 240.50 13.54 19489 20.4880 261.66 241.01 13.27 19490 20.4890 257.11 241.53 13.16 19491 20.4900 252.77 242.07 13.04 19492 20.4910 266.32 242.63 13.41 19493 20.4920 253.28 243.21 13.10 19494 20.4930 264.14 243.81 13.35 19495 20.4940 275.20 244.42 13.61 19496 20.4950 252.33 245.06 13.03 19497 20.4960 258.59 245.72 13.18 19498 20.4970 258.42 246.40 13.18 19499 20.4980 247.55 247.11 12.93 19500 20.4990 250.50 247.84 12.98 19501 20.5000 272.07 248.60 13.55 19502 20.5010 268.20 249.38 13.47 19503 20.5020 268.67 250.19 13.48 19504 20.5030 294.01 251.03 14.13 19505 20.5040 269.94 251.91 13.53 19506 20.5050 266.41 252.82 13.45 19507 20.5060 274.24 253.76 13.64 19508 20.5070 272.15 254.74 13.55 19509 20.5080 269.48 255.75 13.44 19510 20.5090 283.06 256.81 13.81 19511 20.5100 266.36 257.91 13.39 19512 20.5110 278.20 259.06 13.72 19513 20.5120 274.63 260.25 13.60 19514 20.5130 282.92 261.49 13.85 19515 20.5140 279.09 262.79 13.74 19516 20.5150 264.82 264.14 13.32 19517 20.5160 285.14 266.26 13.83 19518 20.5170 311.01 267.74 14.46 19519 20.5180 287.99 269.28 13.93 19520 20.5190 281.84 270.89 13.74 19521 20.5200 292.39 272.59 13.98 19522 20.5210 292.80 274.35 14.04 19523 20.5220 307.50 276.20 14.36 19524 20.5230 306.69 278.15 14.37 19525 20.5240 301.44 280.18 14.23 19526 20.5250 291.44 282.32 14.01 19527 20.5260 303.65 284.56 14.30 19528 20.5270 321.78 286.93 14.70 19529 20.5280 320.11 289.41 14.72 19530 20.5290 307.26 292.03 14.38 19531 20.5300 302.51 294.79 14.26 19532 20.5310 310.54 297.70 14.52 19533 20.5320 298.91 300.77 14.17 19534 20.5330 296.19 304.02 14.17 19535 20.5340 323.47 307.46 14.77 19536 20.5350 318.21 311.09 14.61 19537 20.5360 331.84 314.95 14.93 19538 20.5370 340.41 319.05 15.13 19539 20.5380 347.43 323.39 15.30 19540 20.5390 343.30 328.01 15.20 19541 20.5400 356.63 332.94 15.49 19542 20.5410 356.53 338.18 15.52 19543 20.5420 362.30 343.77 15.61 19544 20.5430 381.26 349.76 16.05 19545 20.5440 382.19 356.17 16.04 19546 20.5450 380.53 363.03 15.98 19547 20.5460 354.74 370.38 15.48 19548 20.5470 405.74 378.29 16.49 19549 20.5480 411.00 386.80 16.60 19550 20.5490 400.13 395.95 16.41 19551 20.5500 415.33 405.83 16.70 19552 20.5510 425.16 416.54 16.91 19553 20.5520 434.14 428.10 17.09 19554 20.5530 437.47 440.63 17.19 19555 20.5540 458.86 454.28 17.58 19556 20.5550 491.89 469.09 18.21 19557 20.5560 486.05 485.22 18.09 19558 20.5570 509.71 502.85 18.51 19559 20.5580 524.07 522.13 18.74 19560 20.5590 527.77 543.20 18.88 19561 20.5600 553.42 566.34 19.37 19562 20.5610 596.81 591.74 20.12 19563 20.5620 615.86 619.62 20.38 19564 20.5630 619.42 650.34 20.46 19565 20.5640 659.78 684.10 21.09 19566 20.5650 719.32 721.40 22.05 19567 20.5660 740.18 762.33 22.35 19568 20.5670 769.99 807.35 22.78 19569 20.5680 842.91 856.95 23.83 19570 20.5690 878.90 911.07 24.33 19571 20.5700 960.13 970.06 25.44 19572 20.5710 1022.27 1034.10 26.28 19573 20.5720 1058.77 1102.92 26.77 19574 20.5730 1189.41 1175.93 28.33 19575 20.5740 1247.60 1252.48 29.00 19576 20.5750 1351.60 1331.06 30.15 19577 20.5760 1399.95 1409.47 30.68 19578 20.5770 1564.15 1485.33 32.49 19579 20.5780 1688.39 1555.09 33.81 19580 20.5790 1666.74 1615.33 33.58 19581 20.5800 1721.29 1662.25 34.12 19582 20.5810 1750.40 1692.56 34.36 19583 20.5820 1757.27 1704.11 34.47 19584 20.5830 1729.30 1695.93 34.18 19585 20.5840 1670.94 1668.72 33.61 19586 20.5850 1616.19 1624.54 33.06 19587 20.5860 1538.73 1566.26 32.21 19588 20.5870 1441.91 1497.91 31.24 19589 20.5880 1349.11 1422.99 30.17 19590 20.5890 1291.93 1344.59 29.54 19591 20.5900 1174.49 1266.03 28.19 19592 20.5910 1153.95 1189.18 27.92 19593 20.5920 1010.83 1115.43 26.14 19594 20.5930 989.14 1045.87 25.85 19595 20.5940 943.24 981.03 25.24 19596 20.5950 871.58 921.24 24.19 19597 20.5960 825.48 866.25 23.53 19598 20.5970 781.19 816.01 22.96 19599 20.5980 789.42 770.31 23.04 19600 20.5990 724.62 728.69 22.10 19601 20.6000 683.24 690.89 21.46 19602 20.6010 659.85 656.62 21.12 19603 20.6020 647.04 625.51 20.89 19604 20.6030 606.63 597.14 20.21 19605 20.6040 594.17 571.44 20.02 19606 20.6050 559.37 548.03 19.39 19607 20.6060 551.28 526.63 19.29 19608 20.6070 555.35 507.16 19.36 19609 20.6080 539.15 489.35 19.05 19610 20.6090 507.58 473.01 18.55 19611 20.6100 510.26 458.02 18.56 19612 20.6110 500.41 444.27 18.40 19613 20.6120 470.56 431.58 17.80 19614 20.6130 456.73 419.87 17.58 19615 20.6140 451.15 409.05 17.43 19616 20.6150 441.27 399.05 17.29 19617 20.6160 456.09 389.77 17.61 19618 20.6170 455.15 381.12 17.56 19619 20.6180 404.67 373.11 16.53 19620 20.6190 411.37 365.64 16.66 19621 20.6200 407.19 358.66 16.58 19622 20.6210 385.35 352.16 16.08 19623 20.6220 356.11 346.09 15.51 19624 20.6230 372.88 340.40 15.90 19625 20.6240 373.66 335.08 15.88 19626 20.6250 363.85 330.09 15.67 19627 20.6260 349.59 325.40 15.28 19628 20.6270 347.47 320.99 15.31 19629 20.6280 350.86 316.85 15.37 19630 20.6290 360.64 312.95 15.64 19631 20.6300 331.43 309.28 14.99 19632 20.6310 338.32 305.81 15.12 19633 20.6320 330.34 302.53 14.95 19634 20.6330 342.53 299.43 15.22 19635 20.6340 324.67 296.50 14.78 19636 20.6350 327.92 293.72 14.85 19637 20.6360 316.15 291.09 14.60 19638 20.6370 328.48 288.60 14.81 19639 20.6380 314.41 286.22 14.54 19640 20.6390 321.32 283.97 14.72 19641 20.6400 317.86 281.83 14.62 19642 20.6410 308.65 279.79 14.45 19643 20.6420 302.81 277.85 14.26 19644 20.6430 290.67 276.00 13.98 19645 20.6440 285.36 274.24 13.86 19646 20.6450 306.79 272.56 14.38 19647 20.6460 300.54 274.63 14.20 19648 20.6470 290.17 273.12 13.97 19649 20.6480 287.95 271.68 13.91 19650 20.6490 292.72 270.30 14.05 19651 20.6500 288.07 268.98 13.95 19652 20.6510 284.04 267.72 13.85 19653 20.6520 281.76 266.51 13.75 19654 20.6530 294.40 265.36 14.04 19655 20.6540 301.55 264.25 14.23 19656 20.6550 290.83 263.18 14.00 19657 20.6560 259.88 262.17 13.21 19658 20.6570 279.89 261.19 13.69 19659 20.6580 289.22 260.26 13.98 19660 20.6590 279.69 259.36 13.78 19661 20.6600 261.63 258.50 13.24 19662 20.6610 249.52 257.67 12.92 19663 20.6620 282.05 256.87 13.82 19664 20.6630 288.57 256.11 13.95 19665 20.6640 269.12 255.37 13.44 19666 20.6650 244.68 254.67 12.88 19667 20.6660 274.33 253.99 13.61 19668 20.6670 268.82 253.33 13.44 19669 20.6680 262.14 252.71 13.32 19670 20.6690 285.14 252.10 13.87 19671 20.6700 274.07 251.52 13.61 19672 20.6710 245.96 250.96 12.91 19673 20.6720 241.23 250.42 12.71 19674 20.6730 254.77 249.90 13.09 19675 20.6740 258.17 249.40 13.18 19676 20.6750 268.45 248.92 13.45 19677 20.6760 264.20 248.46 13.34 19678 20.6770 243.37 248.01 12.77 19679 20.6780 228.88 247.58 12.41 19680 20.6790 264.82 247.17 13.33 19681 20.6800 242.31 246.77 12.84 19682 20.6810 243.59 246.39 12.75 19683 20.6820 237.61 246.02 12.62 19684 20.6830 243.62 245.67 12.75 19685 20.6840 264.29 245.32 13.35 19686 20.6850 251.68 245.00 13.05 19687 20.6860 259.88 244.68 13.25 19688 20.6870 252.02 244.38 13.09 19689 20.6880 257.99 244.09 13.20 19690 20.6890 236.18 243.81 12.60 19691 20.6900 241.48 243.54 12.73 19692 20.6910 239.46 243.28 12.68 19693 20.6920 261.48 243.03 13.29 19694 20.6930 263.16 242.79 13.31 19695 20.6940 235.66 242.56 12.56 19696 20.6950 238.68 242.35 12.68 19697 20.6960 247.87 242.14 12.89 19698 20.6970 232.54 241.94 12.43 19699 20.6980 235.88 241.74 12.60 19700 20.6990 249.47 241.56 12.96 19701 20.7000 241.69 241.39 12.71 19702 20.7010 257.21 241.22 13.12 19703 20.7020 239.25 241.07 12.65 19704 20.7030 227.37 240.92 12.32 19705 20.7040 220.91 240.77 12.24 19706 20.7050 226.91 240.64 12.38 19707 20.7060 226.11 240.51 12.37 19708 20.7070 235.93 240.40 12.60 19709 20.7080 255.62 240.28 13.14 19710 20.7090 243.48 240.18 12.80 19711 20.7100 231.24 240.08 12.45 19712 20.7110 235.00 239.99 12.58 19713 20.7120 226.79 239.91 12.39 19714 20.7130 230.85 239.83 12.48 19715 20.7140 234.49 239.76 12.53 19716 20.7150 228.92 239.70 12.42 19717 20.7160 249.80 239.64 12.99 19718 20.7170 228.39 239.59 12.41 19719 20.7180 244.50 239.55 12.89 19720 20.7190 236.70 239.51 12.63 19721 20.7200 223.94 239.48 12.28 19722 20.7210 228.93 239.46 12.40 19723 20.7220 231.09 239.44 12.46 19724 20.7230 234.53 239.43 12.54 19725 20.7240 237.77 239.42 12.65 19726 20.7250 241.09 239.42 12.78 19727 20.7260 244.37 239.43 12.84 19728 20.7270 218.84 239.45 12.17 19729 20.7280 248.57 239.47 13.00 19730 20.7290 228.05 239.49 12.39 19731 20.7300 254.80 239.53 13.10 19732 20.7310 245.74 239.57 12.89 19733 20.7320 235.79 239.62 12.63 19734 20.7330 230.05 239.67 12.48 19735 20.7340 239.35 239.73 12.72 19736 20.7350 248.19 239.80 12.96 19737 20.7360 249.97 239.87 13.00 19738 20.7370 227.90 239.95 12.37 19739 20.7380 238.32 240.04 12.63 19740 20.7390 211.08 240.14 11.93 19741 20.7400 238.66 240.24 12.67 19742 20.7410 246.02 240.35 12.85 19743 20.7420 239.37 240.47 12.74 19744 20.7430 231.30 240.60 12.52 19745 20.7440 228.77 240.73 12.44 19746 20.7450 253.55 240.87 13.06 19747 20.7460 243.34 241.02 12.83 19748 20.7470 237.01 241.18 12.65 19749 20.7480 223.66 241.35 12.32 19750 20.7490 241.28 241.53 12.79 19751 20.7500 226.91 241.71 12.39 19752 20.7510 225.15 241.91 12.28 19753 20.7520 231.08 242.11 12.51 19754 20.7530 262.25 242.33 13.36 19755 20.7540 241.22 242.55 12.76 19756 20.7550 247.20 242.79 12.85 19757 20.7560 242.82 243.04 12.77 19758 20.7570 252.26 243.30 13.00 19759 20.7580 226.05 243.57 12.35 19760 20.7590 232.34 243.86 12.50 19761 20.7600 214.02 244.15 11.99 19762 20.7610 222.89 244.47 12.25 19763 20.7620 239.94 244.79 12.76 19764 20.7630 254.41 245.13 13.09 19765 20.7640 241.23 245.48 12.73 19766 20.7650 234.83 245.85 12.54 19767 20.7660 243.46 246.24 12.76 19768 20.7670 241.89 246.65 12.75 19769 20.7680 243.51 247.07 12.81 19770 20.7690 236.43 247.51 12.60 19771 20.7700 230.81 247.97 12.46 19772 20.7710 235.96 248.45 12.59 19773 20.7720 234.43 248.95 12.52 19774 20.7730 262.62 249.48 13.24 19775 20.7740 251.08 250.03 13.03 19776 20.7750 239.97 250.61 12.72 19777 20.7760 244.71 251.21 12.81 19778 20.7770 271.32 251.84 13.53 19779 20.7780 257.35 252.50 13.15 19780 20.7790 245.83 253.19 12.92 19781 20.7800 248.88 253.92 12.97 19782 20.7810 266.99 254.68 13.41 19783 20.7820 253.45 255.48 13.07 19784 20.7830 255.10 256.32 13.08 19785 20.7840 249.61 257.20 12.96 19786 20.7850 258.11 258.13 13.19 19787 20.7860 255.48 259.10 13.11 19788 20.7870 247.45 260.13 12.89 19789 20.7880 236.29 261.21 12.60 19790 20.7890 247.40 262.35 12.89 19791 20.7900 247.09 263.55 12.89 19792 20.7910 236.13 264.82 12.61 19793 20.7920 261.75 266.16 13.28 19794 20.7930 263.54 267.58 13.39 19795 20.7940 288.91 269.09 13.95 19796 20.7950 270.81 270.68 13.49 19797 20.7960 245.04 272.37 12.77 19798 20.7970 247.41 274.17 12.90 19799 20.7980 274.24 276.07 13.59 19800 20.7990 292.87 278.11 14.03 19801 20.8000 266.33 280.27 13.34 19802 20.8010 267.83 282.58 13.41 19803 20.8020 291.29 285.05 14.07 19804 20.8030 292.06 287.68 14.02 19805 20.8040 267.48 290.52 13.42 19806 20.8050 285.18 293.55 13.82 19807 20.8060 278.26 296.80 13.67 19808 20.8070 292.04 300.29 14.00 19809 20.8080 291.97 304.07 14.03 19810 20.8090 318.77 308.13 14.62 19811 20.8100 299.12 312.52 14.15 19812 20.8110 313.61 317.27 14.48 19813 20.8120 301.27 322.40 14.25 19814 20.8130 308.75 327.97 14.41 19815 20.8140 343.90 334.01 15.22 19816 20.8150 335.16 340.58 15.03 19817 20.8160 336.74 347.73 15.09 19818 20.8170 335.78 355.51 15.07 19819 20.8180 340.19 363.99 15.11 19820 20.8190 335.40 373.24 15.08 19821 20.8200 369.38 383.30 15.79 19822 20.8210 366.13 394.27 15.70 19823 20.8220 376.61 406.25 15.96 19824 20.8230 392.51 419.22 16.26 19825 20.8240 396.55 433.28 16.40 19826 20.8250 423.54 448.52 16.86 19827 20.8260 406.81 464.85 16.55 19828 20.8270 430.79 482.27 17.04 19829 20.8280 440.99 500.74 17.23 19830 20.8290 470.66 520.05 17.78 19831 20.8300 495.33 539.95 18.27 19832 20.8310 516.31 560.02 18.67 19833 20.8320 530.13 579.84 18.98 19834 20.8330 554.35 598.74 19.37 19835 20.8340 591.92 615.99 19.99 19836 20.8350 563.67 630.85 19.48 19837 20.8360 580.74 642.59 19.76 19838 20.8370 605.90 650.48 20.26 19839 20.8380 631.93 654.10 20.68 19840 20.8390 615.33 653.22 20.37 19841 20.8400 611.33 647.94 20.33 19842 20.8410 607.90 638.61 20.25 19843 20.8420 595.55 625.79 20.06 19844 20.8430 565.73 610.23 19.60 19845 20.8440 570.77 592.73 19.61 19846 20.8450 522.19 573.98 18.75 19847 20.8460 518.94 554.67 18.72 19848 20.8470 499.54 535.41 18.39 19849 20.8480 498.73 516.55 18.33 19850 20.8490 467.81 498.43 17.74 19851 20.8500 441.87 481.30 17.24 19852 20.8510 422.41 465.21 16.91 19853 20.8520 409.81 450.29 16.62 19854 20.8530 431.18 436.46 17.04 19855 20.8540 419.24 423.80 16.85 19856 20.8550 408.03 412.20 16.63 19857 20.8560 398.94 401.59 16.46 19858 20.8570 391.82 391.96 16.27 19859 20.8580 380.20 383.20 16.00 19860 20.8590 343.43 375.23 15.19 19861 20.8600 359.65 368.01 15.55 19862 20.8610 337.96 361.48 15.10 19863 20.8620 320.92 355.55 14.73 19864 20.8630 323.47 350.19 14.69 19865 20.8640 339.32 345.35 15.07 19866 20.8650 333.24 340.98 14.92 19867 20.8660 338.56 337.04 15.08 19868 20.8670 338.77 333.49 15.15 19869 20.8680 330.88 330.30 14.99 19870 20.8690 325.59 327.44 14.85 19871 20.8700 331.15 324.89 14.97 19872 20.8710 310.61 322.61 14.47 19873 20.8720 320.82 320.61 14.75 19874 20.8730 310.67 318.84 14.54 19875 20.8740 309.00 317.29 14.51 19876 20.8750 331.19 315.96 14.96 19877 20.8760 299.60 312.26 14.21 19878 20.8770 317.49 311.32 14.61 19879 20.8780 311.99 310.57 14.47 19880 20.8790 301.83 309.98 14.21 19881 20.8800 318.11 309.55 14.69 19882 20.8810 295.05 309.27 14.15 19883 20.8820 296.34 309.14 14.16 19884 20.8830 301.18 309.16 14.27 19885 20.8840 295.39 309.30 14.09 19886 20.8850 280.93 309.59 13.76 19887 20.8860 288.71 310.00 13.96 19888 20.8870 308.89 310.55 14.40 19889 20.8880 328.67 311.22 14.86 19890 20.8890 313.00 312.02 14.51 19891 20.8900 307.00 312.95 14.40 19892 20.8910 301.17 314.01 14.23 19893 20.8920 303.04 315.20 14.27 19894 20.8930 323.41 316.52 14.76 19895 20.8940 320.82 317.97 14.67 19896 20.8950 301.46 319.55 14.18 19897 20.8960 312.20 321.28 14.51 19898 20.8970 324.20 323.14 14.77 19899 20.8980 317.58 325.16 14.64 19900 20.8990 321.47 327.33 14.68 19901 20.9000 332.52 329.65 14.96 19902 20.9010 313.14 332.14 14.56 19903 20.9020 330.51 334.87 14.96 19904 20.9030 340.98 337.71 15.23 19905 20.9040 341.81 340.74 15.21 19906 20.9050 319.67 343.98 14.70 19907 20.9060 360.07 347.42 15.59 19908 20.9070 359.20 351.07 15.56 19909 20.9080 355.79 354.98 15.46 19910 20.9090 361.90 359.12 15.62 19911 20.9100 356.57 363.52 15.52 19912 20.9110 370.52 368.22 15.82 19913 20.9120 398.18 373.21 16.38 19914 20.9130 374.44 378.52 15.87 19915 20.9140 365.93 384.18 15.73 19916 20.9150 381.48 390.21 16.07 19917 20.9160 398.44 396.63 16.39 19918 20.9170 393.62 403.48 16.29 19919 20.9180 391.99 410.79 16.24 19920 20.9190 440.86 418.60 17.22 19921 20.9200 422.09 426.95 16.84 19922 20.9210 428.99 435.86 16.99 19923 20.9220 442.52 445.45 17.25 19924 20.9230 451.11 455.68 17.44 19925 20.9240 449.30 466.66 17.43 19926 20.9250 487.34 478.45 18.15 19927 20.9260 498.95 491.17 18.35 19928 20.9270 537.29 504.82 19.00 19929 20.9280 516.15 519.55 18.65 19930 20.9290 551.68 535.45 19.31 19931 20.9300 585.00 552.60 19.92 19932 20.9310 595.45 571.19 20.11 19933 20.9320 581.36 591.29 19.78 19934 20.9330 601.38 613.14 20.14 19935 20.9340 630.00 636.86 20.63 19936 20.9350 656.41 662.63 21.01 19937 20.9360 672.79 690.72 21.26 19938 20.9370 678.71 721.36 21.38 19939 20.9380 737.23 754.74 22.27 19940 20.9390 781.94 791.20 22.98 19941 20.9400 787.10 831.21 23.09 19942 20.9410 863.89 874.82 24.11 19943 20.9420 922.90 922.54 24.93 19944 20.9430 899.67 974.93 24.60 19945 20.9440 974.22 1032.04 25.63 19946 20.9450 1049.09 1094.40 26.57 19947 20.9460 1131.43 1162.48 27.61 19948 20.9470 1213.81 1236.48 28.61 19949 20.9480 1266.79 1316.44 29.22 19950 20.9490 1292.40 1402.61 29.55 19951 20.9500 1434.04 1494.64 31.08 19952 20.9510 1553.41 1591.91 32.42 19953 20.9520 1636.70 1693.20 33.24 19954 20.9530 1735.85 1797.05 34.24 19955 20.9540 1887.51 1901.54 35.72 19956 20.9550 1961.00 2002.96 36.44 19957 20.9560 2072.69 2098.06 37.45 19958 20.9570 2150.53 2182.98 38.12 19959 20.9580 2296.16 2254.25 39.36 19960 20.9590 2380.52 2305.39 40.05 19961 20.9600 2374.59 2334.62 40.01 19962 20.9610 2329.75 2339.88 39.65 19963 20.9620 2381.65 2320.87 40.07 19964 20.9630 2355.55 2278.79 39.90 19965 20.9640 2280.61 2216.38 39.26 19966 20.9650 2231.67 2137.52 38.84 19967 20.9660 2134.76 2046.17 37.94 19968 20.9670 1974.87 1946.88 36.48 19969 20.9680 1835.01 1843.20 35.23 19970 20.9690 1778.00 1738.58 34.64 19971 20.9700 1639.84 1635.79 33.27 19972 20.9710 1525.96 1536.22 32.11 19973 20.9720 1508.20 1441.82 31.91 19974 20.9730 1393.01 1353.04 30.66 19975 20.9740 1265.96 1269.99 29.23 19976 20.9750 1226.49 1193.32 28.77 19977 20.9760 1188.89 1122.65 28.30 19978 20.9770 1116.55 1057.60 27.42 19979 20.9780 1010.25 997.99 26.11 19980 20.9790 969.61 943.53 25.54 19981 20.9800 971.51 893.65 25.56 19982 20.9810 885.23 848.04 24.43 19983 20.9820 825.23 806.41 23.59 19984 20.9830 799.97 768.26 23.27 19985 20.9840 759.77 733.40 22.66 19986 20.9850 760.66 701.39 22.64 19987 20.9860 759.73 672.04 22.60 19988 20.9870 720.27 645.12 22.01 19989 20.9880 677.62 620.32 21.39 19990 20.9890 622.63 597.48 20.48 19991 20.9900 588.99 576.45 19.95 19992 20.9910 596.94 557.03 20.04 19993 20.9920 578.00 539.01 19.77 19994 20.9930 591.97 522.38 19.95 19995 20.9940 538.75 506.96 19.01 19996 20.9950 540.51 492.58 19.12 19997 20.9960 500.09 479.26 18.36 19998 20.9970 509.10 466.84 18.55 19999 20.9980 519.87 455.27 18.70 20000 20.9990 484.85 444.45 18.10 20001 21.0000 444.85 434.33 17.29 20002 21.0010 439.47 424.88 17.23 20003 21.0020 444.22 416.01 17.31 20004 21.0030 436.80 407.68 17.16 20005 21.0040 405.91 399.88 16.53 20006 21.0050 448.45 392.54 17.35 20007 21.0060 437.85 385.61 17.17 20008 21.0070 422.11 379.09 16.86 20009 21.0080 400.88 372.95 16.45 20010 21.0090 406.67 367.13 16.58 20011 21.0100 404.20 361.65 16.53 20012 21.0110 395.43 356.47 16.34 20013 21.0120 380.20 351.55 15.99 20014 21.0130 398.96 346.89 16.39 20015 21.0140 400.63 342.48 16.48 20016 21.0150 388.56 338.28 16.20 20017 21.0160 382.91 334.29 16.03 20018 21.0170 374.94 330.51 15.86 20019 21.0180 366.01 326.90 15.67 20020 21.0190 356.34 323.48 15.53 20021 21.0200 364.71 320.20 15.67 20022 21.0210 345.46 317.08 15.31 20023 21.0220 367.68 314.11 15.73 20024 21.0230 358.86 311.27 15.54 20025 21.0240 371.23 308.56 15.84 20026 21.0250 357.65 305.97 15.51 20027 21.0260 365.67 303.48 15.75 20028 21.0270 361.79 301.11 15.62 20029 21.0280 376.76 298.84 15.91 20030 21.0290 362.13 296.65 15.54 20031 21.0300 360.54 294.57 15.60 20032 21.0310 343.56 292.56 15.21 20033 21.0320 337.47 290.64 15.12 20034 21.0330 341.40 288.79 15.18 20035 21.0340 344.18 287.02 15.21 20036 21.0350 326.40 285.32 14.84 20037 21.0360 327.66 283.68 14.86 20038 21.0370 319.74 282.10 14.59 20039 21.0380 302.52 280.59 14.27 20040 21.0390 329.28 279.27 14.93 20041 21.0400 319.93 277.86 14.70 20042 21.0410 313.60 276.51 14.52 20043 21.0420 307.75 275.20 14.39 20044 21.0430 316.92 273.95 14.61 20045 21.0440 318.62 272.73 14.59 20046 21.0450 308.36 271.56 14.36 20047 21.0460 312.02 270.43 14.50 20048 21.0470 317.30 269.34 14.65 20049 21.0480 303.93 268.29 14.33 20050 21.0490 306.25 267.27 14.35 20051 21.0500 300.47 266.29 14.21 20052 21.0510 294.72 265.34 14.08 20053 21.0520 284.82 264.42 13.85 20054 21.0530 293.45 263.53 14.09 20055 21.0540 299.10 262.67 14.20 20056 21.0550 315.02 261.84 14.57 20057 21.0560 291.49 261.04 14.05 20058 21.0570 314.27 260.26 14.56 20059 21.0580 289.28 259.51 13.93 20060 21.0590 278.43 258.78 13.68 20061 21.0600 284.78 258.07 13.85 20062 21.0610 283.43 257.38 13.80 20063 21.0620 279.03 256.72 13.70 20064 21.0630 274.34 256.08 13.61 20065 21.0640 283.69 255.46 13.80 20066 21.0650 299.39 254.85 14.16 20067 21.0660 288.31 254.27 13.96 20068 21.0670 304.98 253.70 14.33 20069 21.0680 309.48 253.15 14.46 20070 21.0690 293.47 252.62 14.06 20071 21.0700 278.59 252.10 13.67 20072 21.0710 263.58 251.60 13.30 20073 21.0720 277.48 251.11 13.74 20074 21.0730 289.00 250.64 13.97 20075 21.0740 284.88 250.18 13.88 20076 21.0750 264.91 249.74 13.36 20077 21.0760 267.61 249.30 13.42 20078 21.0770 280.29 248.89 13.70 20079 21.0780 247.67 248.48 12.90 20080 21.0790 253.28 248.09 13.07 20081 21.0800 261.74 247.71 13.28 20082 21.0810 260.67 247.34 13.25 20083 21.0820 255.35 246.98 13.11 20084 21.0830 270.38 246.64 13.44 20085 21.0840 244.91 246.30 12.78 20086 21.0850 268.65 245.98 13.43 20087 21.0860 250.18 245.66 12.95 20088 21.0870 258.33 245.35 13.18 20089 21.0880 262.87 245.06 13.37 20090 21.0890 276.13 244.77 13.69 20091 21.0900 267.84 244.50 13.44 20092 21.0910 266.41 244.23 13.34 20093 21.0920 241.13 243.97 12.75 20094 21.0930 247.44 243.72 12.91 20095 21.0940 244.83 243.48 12.83 20096 21.0950 243.26 243.25 12.78 20097 21.0960 245.73 243.02 12.86 20098 21.0970 239.86 242.81 12.68 20099 21.0980 258.20 242.60 13.16 20100 21.0990 248.29 242.40 12.88 20101 21.1000 245.35 242.21 12.79 20102 21.1010 246.95 242.02 12.92 20103 21.1020 240.94 241.85 12.72 20104 21.1030 242.11 241.68 12.76 20105 21.1040 236.68 241.52 12.58 20106 21.1050 238.12 241.36 12.67 20107 21.1060 240.61 241.21 12.70 20108 21.1070 225.06 241.08 12.30 20109 21.1080 239.75 240.94 12.70 20110 21.1090 249.51 240.82 12.93 20111 21.1100 228.62 240.70 12.40 20112 21.1110 219.39 240.59 12.16 20113 21.1120 246.95 240.49 12.86 20114 21.1130 254.89 240.40 13.06 20115 21.1140 258.74 240.31 13.21 20116 21.1150 239.82 240.23 12.74 20117 21.1160 254.83 240.15 13.14 20118 21.1170 241.90 240.09 12.83 20119 21.1180 262.20 240.03 13.25 20120 21.1190 246.90 239.98 12.93 20121 21.1200 228.97 239.94 12.39 20122 21.1210 227.23 239.91 12.36 20123 21.1220 234.52 241.36 12.56 20124 21.1230 233.50 241.35 12.51 20125 21.1240 241.83 241.36 12.74 20126 21.1250 232.48 241.37 12.47 20127 21.1260 228.37 241.39 12.40 20128 21.1270 232.30 241.42 12.48 20129 21.1280 224.32 241.46 12.31 20130 21.1290 274.40 241.51 13.56 20131 21.1300 246.24 241.57 12.85 20132 21.1310 231.45 241.64 12.49 20133 21.1320 245.83 241.72 12.86 20134 21.1330 251.63 241.81 13.00 20135 21.1340 263.46 241.92 13.30 20136 21.1350 247.15 242.04 12.93 20137 21.1360 235.40 242.17 12.63 20138 21.1370 251.37 242.32 13.03 20139 21.1380 236.98 242.49 12.64 20140 21.1390 240.06 242.67 12.66 20141 21.1400 253.44 242.86 13.03 20142 21.1410 249.44 243.08 12.98 20143 21.1420 229.87 243.32 12.51 20144 21.1430 228.51 243.58 12.42 20145 21.1440 260.24 243.86 13.20 20146 21.1450 262.61 244.17 13.30 20147 21.1460 253.61 244.50 13.09 20148 21.1470 223.03 244.87 12.23 20149 21.1480 235.02 245.26 12.56 20150 21.1490 242.82 245.70 12.70 20151 21.1500 250.53 246.17 12.93 20152 21.1510 237.92 246.68 12.63 20153 21.1520 229.50 247.25 12.43 20154 21.1530 228.23 247.86 12.45 20155 21.1540 246.94 248.54 12.88 20156 21.1550 244.65 249.27 12.82 20157 21.1560 240.71 250.09 12.71 20158 21.1570 249.78 250.97 12.93 20159 21.1580 240.13 251.95 12.75 20160 21.1590 238.02 253.03 12.68 20161 21.1600 255.07 254.21 13.11 20162 21.1610 263.79 255.51 13.31 20163 21.1620 260.29 256.24 13.23 20164 21.1630 240.28 257.82 12.75 20165 21.1640 226.52 259.54 12.34 20166 21.1650 240.49 261.42 12.69 20167 21.1660 237.85 263.45 12.67 20168 21.1670 250.52 265.62 12.99 20169 21.1680 272.83 267.91 13.53 20170 21.1690 253.44 270.29 13.03 20171 21.1700 242.38 272.69 12.80 20172 21.1710 252.54 275.04 13.05 20173 21.1720 273.29 277.24 13.64 20174 21.1730 297.19 279.19 14.12 20175 21.1740 297.28 280.75 14.09 20176 21.1750 282.66 281.84 13.83 20177 21.1760 270.08 282.40 13.48 20178 21.1770 274.17 282.41 13.58 20179 21.1780 281.40 283.13 13.76 20180 21.1790 274.37 282.19 13.59 20181 21.1800 265.38 280.91 13.37 20182 21.1810 264.65 279.42 13.35 20183 21.1820 252.07 277.82 13.08 20184 21.1830 270.01 276.20 13.51 20185 21.1840 249.71 274.65 13.02 20186 21.1850 264.66 273.20 13.39 20187 21.1860 254.42 271.90 13.12 20188 21.1870 250.10 270.76 12.98 20189 21.1880 262.43 269.78 13.24 20190 21.1890 268.94 268.98 13.42 20191 21.1900 282.27 268.34 13.80 20192 21.1910 278.69 267.86 13.74 20193 21.1920 284.21 267.53 13.82 20194 21.1930 272.29 267.34 13.56 20195 21.1940 265.65 267.29 13.34 20196 21.1950 263.42 267.36 13.32 20197 21.1960 265.46 267.54 13.39 20198 21.1970 266.73 267.84 13.40 20199 21.1980 274.98 268.24 13.60 20200 21.1990 284.82 268.76 13.87 20201 21.2000 262.14 269.37 13.28 20202 21.2010 263.58 270.07 13.36 20203 21.2020 261.49 270.88 13.27 20204 21.2030 269.38 271.78 13.50 20205 21.2040 275.96 272.79 13.62 20206 21.2050 263.33 273.89 13.30 20207 21.2060 255.79 275.09 13.09 20208 21.2070 281.02 276.39 13.70 20209 21.2080 278.53 277.81 13.70 20210 21.2090 282.63 279.33 13.79 20211 21.2100 276.23 280.97 13.60 20212 21.2110 251.33 282.73 12.99 20213 21.2120 277.14 284.62 13.71 20214 21.2130 272.55 286.65 13.60 20215 21.2140 286.86 288.83 13.90 20216 21.2150 291.14 291.16 14.00 20217 21.2160 283.08 293.65 13.78 20218 21.2170 281.90 296.32 13.81 20219 21.2180 272.75 299.19 13.60 20220 21.2190 275.08 302.26 13.58 20221 21.2200 298.68 305.55 14.12 20222 21.2210 300.05 309.09 14.24 20223 21.2220 308.70 312.89 14.38 20224 21.2230 306.65 316.97 14.33 20225 21.2240 307.26 321.36 14.39 20226 21.2250 316.74 326.10 14.63 20227 21.2260 316.57 331.20 14.58 20228 21.2270 332.75 336.71 14.95 20229 21.2280 343.12 342.69 15.23 20230 21.2290 340.95 349.14 15.16 20231 21.2300 353.00 356.13 15.46 20232 21.2310 349.61 363.75 15.37 20233 21.2320 359.23 372.00 15.51 20234 21.2330 362.53 380.99 15.64 20235 21.2340 371.65 390.81 15.89 20236 21.2350 390.56 401.53 16.22 20237 21.2360 384.46 413.25 16.05 20238 21.2370 388.52 426.06 16.17 20239 21.2380 420.69 440.12 16.81 20240 21.2390 445.80 455.55 17.38 20241 21.2400 453.02 472.47 17.48 20242 21.2410 470.01 491.05 17.81 20243 21.2420 471.85 511.53 17.82 20244 21.2430 508.22 533.94 18.53 20245 21.2440 537.91 558.53 19.04 20246 21.2450 549.08 585.54 19.26 20247 21.2460 565.91 614.93 19.57 20248 21.2470 602.64 646.88 20.16 20249 21.2480 647.26 681.46 20.86 20250 21.2490 670.02 718.51 21.22 20251 21.2500 683.97 757.72 21.54 20252 21.2510 764.07 798.76 22.76 20253 21.2520 787.55 840.82 23.09 20254 21.2530 825.69 882.79 23.63 20255 21.2540 901.47 923.47 24.64 20256 21.2550 985.08 961.05 25.76 20257 21.2560 1033.64 993.86 26.38 20258 21.2570 1066.38 1019.81 26.87 20259 21.2580 1085.08 1037.33 27.00 20260 21.2590 1051.43 1045.21 26.65 20261 21.2600 1042.80 1042.82 26.54 20262 21.2610 985.97 1030.40 25.83 20263 21.2620 980.56 1008.79 25.73 20264 21.2630 942.99 979.51 25.22 20265 21.2640 893.34 944.41 24.53 20266 21.2650 812.01 905.27 23.44 20267 21.2660 796.68 863.92 23.18 20268 21.2670 749.07 821.97 22.46 20269 21.2680 728.75 780.48 22.22 20270 21.2690 699.06 740.46 21.73 20271 21.2700 660.45 702.39 21.11 20272 21.2710 619.10 666.69 20.45 20273 21.2720 606.72 633.59 20.22 20274 21.2730 605.51 603.01 20.21 20275 21.2740 564.75 574.96 19.56 20276 21.2750 530.68 549.37 18.90 20277 21.2760 498.50 526.04 18.37 20278 21.2770 496.10 501.08 18.29 20279 21.2780 487.85 481.80 18.14 20280 21.2790 469.18 464.27 17.77 20281 21.2800 445.82 448.27 17.38 20282 21.2810 422.70 433.77 16.87 20283 21.2820 410.46 420.58 16.58 20284 21.2830 409.11 408.52 16.57 20285 21.2840 438.04 397.56 17.16 20286 21.2850 401.11 387.53 16.50 20287 21.2860 359.15 378.39 15.59 20288 21.2870 365.00 370.01 15.70 20289 21.2880 370.99 362.34 15.81 20290 21.2890 378.53 355.31 15.95 20291 21.2900 378.18 348.86 15.96 20292 21.2910 382.46 342.92 16.05 20293 21.2920 339.92 337.48 15.17 20294 21.2930 365.94 332.47 15.74 20295 21.2940 340.74 327.85 15.14 20296 21.2950 355.85 323.60 15.53 20297 21.2960 352.41 319.69 15.41 20298 21.2970 324.92 316.08 14.79 20299 21.2980 337.43 312.76 15.07 20300 21.2990 363.94 309.71 15.70 20301 21.3000 345.86 306.89 15.33 20302 21.3010 337.39 304.30 15.08 20303 21.3020 327.49 301.93 14.79 20304 21.3030 302.19 299.76 14.24 20305 21.3040 322.48 297.77 14.75 20306 21.3050 329.35 295.96 14.93 20307 21.3060 314.47 294.32 14.62 20308 21.3070 310.70 292.83 14.52 20309 21.3080 301.02 291.50 14.26 20310 21.3090 299.60 290.32 14.22 20311 21.3100 321.27 289.28 14.73 20312 21.3110 298.75 288.38 14.18 20313 21.3120 301.57 287.62 14.20 20314 21.3130 288.45 286.99 13.88 20315 21.3140 305.49 286.49 14.33 20316 21.3150 280.10 286.13 13.72 20317 21.3160 286.17 285.91 13.93 20318 21.3170 298.78 285.82 14.23 20319 21.3180 323.45 285.87 14.76 20320 21.3190 302.86 286.07 14.29 20321 21.3200 294.71 286.42 14.04 20322 21.3210 292.48 286.92 14.01 20323 21.3220 288.87 287.59 13.91 20324 21.3230 292.16 288.43 14.03 20325 21.3240 283.08 289.46 13.81 20326 21.3250 284.49 290.68 13.86 20327 21.3260 302.63 292.12 14.29 20328 21.3270 312.29 293.77 14.44 20329 21.3280 268.30 295.67 13.39 20330 21.3290 305.73 297.82 14.34 20331 21.3300 302.80 300.24 14.28 20332 21.3310 300.49 302.94 14.23 20333 21.3320 309.82 305.94 14.48 20334 21.3330 327.59 309.22 14.86 20335 21.3340 320.74 312.80 14.61 20336 21.3350 302.24 316.64 14.24 20337 21.3360 318.65 320.72 14.73 20338 21.3370 333.48 324.97 14.98 20339 21.3380 332.20 329.29 14.96 20340 21.3390 316.44 333.59 14.59 20341 21.3400 319.10 337.72 14.67 20342 21.3410 349.37 341.49 15.36 20343 21.3420 334.01 344.73 14.95 20344 21.3430 335.02 347.30 14.98 20345 21.3440 349.51 349.03 15.34 20346 21.3450 340.07 349.85 15.17 20347 21.3460 346.45 349.74 15.24 20348 21.3470 341.64 348.76 15.15 20349 21.3480 341.91 347.03 15.16 20350 21.3490 338.58 344.70 15.10 20351 21.3500 336.72 341.96 15.06 20352 21.3510 326.20 338.99 14.75 20353 21.3520 313.33 335.94 14.55 20354 21.3530 323.16 332.95 14.75 20355 21.3540 338.00 330.13 15.09 20356 21.3550 313.26 327.56 14.55 20357 21.3560 314.74 325.29 14.57 20358 21.3570 299.82 323.35 14.20 20359 21.3580 316.36 321.76 14.58 20360 21.3590 333.80 320.53 14.99 20361 21.3600 340.43 319.66 15.14 20362 21.3610 296.09 319.15 14.09 20363 21.3620 317.37 318.99 14.60 20364 21.3630 318.53 319.17 14.66 20365 21.3640 305.64 319.70 14.35 20366 21.3650 318.61 320.56 14.66 20367 21.3660 319.63 321.76 14.68 20368 21.3670 332.62 323.30 14.91 20369 21.3680 318.92 325.17 14.68 20370 21.3690 338.35 327.41 15.08 20371 21.3700 335.24 330.00 15.02 20372 21.3710 298.96 332.96 14.14 20373 21.3720 345.03 336.32 15.26 20374 21.3730 357.14 340.08 15.54 20375 21.3740 348.12 344.29 15.31 20376 21.3750 355.43 348.97 15.45 20377 21.3760 359.55 354.15 15.57 20378 21.3770 379.13 359.90 15.97 20379 21.3780 369.61 366.23 15.82 20380 21.3790 375.10 373.20 15.93 20381 21.3800 370.39 380.89 15.83 20382 21.3810 388.57 389.39 16.19 20383 21.3820 394.77 398.74 16.31 20384 21.3830 420.17 409.06 16.86 20385 21.3840 397.34 420.45 16.39 20386 21.3850 407.92 433.00 16.57 20387 21.3860 437.00 446.90 17.17 20388 21.3870 486.78 462.23 18.10 20389 21.3880 462.27 479.23 17.61 20390 21.3890 466.69 498.03 17.70 20391 21.3900 482.35 518.81 17.98 20392 21.3910 524.21 541.83 18.75 20393 21.3920 502.48 567.28 18.42 20394 21.3930 535.44 595.30 18.94 20395 21.3940 570.31 626.14 19.55 20396 21.3950 617.08 660.04 20.39 20397 21.3960 653.54 696.85 20.98 20398 21.3970 659.01 736.62 21.07 20399 21.3980 724.39 779.27 22.06 20400 21.3990 759.11 824.01 22.64 20401 21.4000 813.26 870.17 23.39 20402 21.4010 921.40 916.66 24.91 20403 21.4020 990.33 961.76 25.80 20404 21.4030 1042.71 1003.46 26.57 20405 21.4040 1060.09 1039.43 26.72 20406 21.4050 1147.65 1067.48 27.82 20407 21.4060 1134.26 1085.51 27.71 20408 21.4070 1174.81 1092.09 28.17 20409 21.4080 1045.67 1086.72 26.53 20410 21.4090 1034.54 1069.80 26.47 20411 21.4100 1006.65 1042.77 26.08 20412 21.4110 950.03 1007.57 25.32 20413 21.4120 884.36 966.36 24.41 20414 21.4130 817.81 921.71 23.49 20415 21.4140 791.84 875.50 23.11 20416 21.4150 755.99 829.24 22.57 20417 21.4160 724.64 784.49 22.11 20418 21.4170 683.56 741.91 21.48 20419 21.4180 660.89 701.95 21.12 20420 21.4190 622.54 664.95 20.50 20421 21.4200 585.02 631.03 19.86 20422 21.4210 532.58 600.02 18.93 20423 21.4220 536.05 571.84 19.05 20424 21.4230 531.07 546.34 18.93 20425 21.4240 487.33 523.24 18.13 20426 21.4250 467.33 502.40 17.77 20427 21.4260 477.31 483.52 17.93 20428 21.4270 482.29 466.52 17.99 20429 21.4280 430.33 451.16 17.05 20430 21.4290 459.20 437.23 17.61 20431 21.4300 410.00 424.67 16.63 20432 21.4310 410.86 413.29 16.66 20433 21.4320 398.69 402.96 16.40 20434 21.4330 374.81 393.60 15.90 20435 21.4340 397.42 385.11 16.41 20436 21.4350 357.79 377.39 15.55 20437 21.4360 368.37 370.38 15.74 20438 21.4370 354.14 364.01 15.46 20439 21.4380 338.39 358.22 15.12 20440 21.4390 365.78 352.96 15.68 20441 21.4400 362.89 348.18 15.62 20442 21.4410 349.00 343.84 15.36 20443 21.4420 344.91 339.92 15.23 20444 21.4430 345.03 336.36 15.22 20445 21.4440 342.78 333.15 15.17 20446 21.4450 302.46 330.27 14.28 20447 21.4460 324.98 327.69 14.79 20448 21.4470 333.91 325.38 15.01 20449 21.4480 327.42 323.35 14.86 20450 21.4490 328.01 321.56 14.86 20451 21.4500 319.74 319.95 14.65 20452 21.4510 334.49 318.63 14.99 20453 21.4520 346.02 317.53 15.28 20454 21.4530 320.75 316.64 14.68 20455 21.4540 328.63 315.96 14.89 20456 21.4550 322.77 315.47 14.76 20457 21.4560 312.91 315.19 14.51 20458 21.4570 335.25 315.10 15.02 20459 21.4580 312.39 315.20 14.49 20460 21.4590 301.95 315.49 14.28 20461 21.4600 300.07 315.99 14.24 20462 21.4610 309.96 316.68 14.43 20463 21.4620 321.82 317.57 14.69 20464 21.4630 336.09 318.67 15.02 20465 21.4640 317.82 319.98 14.62 20466 21.4650 322.86 321.52 14.73 20467 21.4660 329.14 323.28 14.90 20468 21.4670 303.20 325.29 14.33 20469 21.4680 331.51 327.55 14.93 20470 21.4690 326.74 330.08 14.88 20471 21.4700 340.90 332.90 15.21 20472 21.4710 336.98 336.03 15.11 20473 21.4720 336.23 339.48 15.07 20474 21.4730 349.53 343.27 15.32 20475 21.4740 362.54 347.44 15.60 20476 21.4750 368.83 352.02 15.75 20477 21.4760 360.26 357.03 15.57 20478 21.4770 364.62 362.52 15.64 20479 21.4780 375.56 368.54 15.91 20480 21.4790 384.63 375.11 16.07 20481 21.4800 372.36 382.29 15.81 20482 21.4810 377.10 390.18 15.97 20483 21.4820 398.42 398.77 16.39 20484 21.4830 410.26 408.17 16.65 20485 21.4840 430.60 418.48 17.02 20486 21.4850 425.57 429.76 16.93 20487 21.4860 445.00 442.07 17.30 20488 21.4870 472.39 455.57 17.92 20489 21.4880 461.31 470.34 17.64 20490 21.4890 468.47 486.46 17.72 20491 21.4900 480.86 504.11 17.97 20492 21.4910 554.38 523.32 19.32 20493 21.4920 554.84 544.27 19.34 20494 21.4930 568.64 567.03 19.50 20495 21.4940 579.11 591.59 19.76 20496 21.4950 614.65 618.14 20.39 20497 21.4960 661.32 646.42 21.05 20498 21.4970 672.19 676.41 21.27 20499 21.4980 723.03 707.88 22.03 20500 21.4990 764.21 740.54 22.65 20501 21.5000 772.07 773.62 22.83 20502 21.5010 840.98 806.54 23.84 20503 21.5020 901.21 838.42 24.61 20504 21.5030 926.34 867.87 25.02 20505 21.5040 962.07 893.86 25.42 20506 21.5050 978.55 915.08 25.72 20507 21.5060 1010.37 930.43 26.11 20508 21.5070 1014.18 938.98 26.25 20509 21.5080 994.32 940.19 25.88 20510 21.5090 985.51 933.98 25.75 20511 21.5100 943.82 920.71 25.20 20512 21.5110 920.52 901.18 24.89 20513 21.5120 897.40 876.45 24.65 20514 21.5130 841.34 847.62 23.87 20515 21.5140 827.18 816.14 23.66 20516 21.5150 791.54 783.09 23.11 20517 21.5160 712.32 749.36 21.86 20518 21.5170 696.93 716.00 21.65 20519 21.5180 651.36 683.53 21.02 20520 21.5190 627.37 652.33 20.59 20521 21.5200 616.82 622.76 20.41 20522 21.5210 600.63 594.98 20.14 20523 21.5220 549.03 569.12 19.23 20524 21.5230 540.43 545.07 19.12 20525 21.5240 526.78 522.84 18.85 20526 21.5250 538.88 502.39 19.09 20527 21.5260 501.07 483.56 18.38 20528 21.5270 456.31 466.20 17.56 20529 21.5280 425.81 450.31 16.94 20530 21.5290 407.64 435.72 16.59 20531 21.5300 430.10 422.26 17.04 20532 21.5310 423.16 409.94 16.86 20533 21.5320 382.97 398.61 16.11 20534 21.5330 371.14 388.14 15.79 20535 21.5340 372.12 378.52 15.82 20536 21.5350 343.63 369.65 15.22 20537 21.5360 358.40 361.44 15.54 20538 21.5370 355.50 353.85 15.49 20539 21.5380 325.58 346.83 14.80 20540 21.5390 333.14 340.31 15.00 20541 21.5400 336.81 334.26 15.07 20542 21.5410 327.62 328.64 14.88 20543 21.5420 311.36 323.40 14.46 20544 21.5430 304.70 318.53 14.32 20545 21.5440 306.20 313.96 14.31 20546 21.5450 314.15 309.71 14.57 20547 21.5460 301.95 305.73 14.26 20548 21.5470 304.89 301.99 14.33 20549 21.5480 315.10 298.49 14.55 20550 21.5490 298.97 295.21 14.21 20551 21.5500 267.13 292.12 13.45 20552 21.5510 283.88 289.21 13.82 20553 21.5520 275.49 286.47 13.63 20554 21.5530 299.81 283.88 14.21 20555 21.5540 285.75 281.44 13.88 20556 21.5550 278.85 279.13 13.69 20557 21.5560 280.87 276.95 13.76 20558 21.5570 267.00 274.88 13.44 20559 21.5580 261.14 272.92 13.27 20560 21.5590 272.03 271.06 13.55 20561 21.5600 266.80 269.30 13.42 20562 21.5610 280.46 266.21 13.73 20563 21.5620 251.08 264.62 12.99 20564 21.5630 256.04 263.12 13.14 20565 21.5640 259.59 261.68 13.20 20566 21.5650 258.56 260.30 13.20 20567 21.5660 271.14 259.00 13.55 20568 21.5670 253.93 257.75 13.10 20569 21.5680 256.15 256.56 13.11 20570 21.5690 266.00 255.42 13.42 20571 21.5700 265.24 254.33 13.41 20572 21.5710 242.72 253.28 12.73 20573 21.5720 241.18 252.28 12.70 20574 21.5730 236.79 251.32 12.68 20575 21.5740 248.96 250.41 12.97 20576 21.5750 266.95 249.52 13.39 20577 21.5760 243.25 248.68 12.81 20578 21.5770 249.19 247.87 12.92 20579 21.5780 233.67 247.09 12.54 20580 21.5790 231.39 246.33 12.46 20581 21.5800 250.13 245.61 12.97 20582 21.5810 235.17 244.91 12.58 20583 21.5820 237.23 244.24 12.64 20584 21.5830 242.75 243.60 12.75 20585 21.5840 223.31 242.98 12.28 20586 21.5850 246.21 242.38 12.88 20587 21.5860 236.32 241.80 12.51 20588 21.5870 220.38 241.24 12.10 20589 21.5880 231.76 240.70 12.47 20590 21.5890 255.42 240.18 13.13 20591 21.5900 233.64 239.67 12.53 20592 21.5910 228.04 239.18 12.39 20593 21.5920 261.97 238.71 13.24 20594 21.5930 256.18 238.26 13.18 20595 21.5940 249.22 237.82 12.96 20596 21.5950 264.62 237.39 13.34 20597 21.5960 239.85 236.97 12.75 20598 21.5970 221.52 236.57 12.23 20599 21.5980 244.77 236.18 12.84 20600 21.5990 234.91 235.81 12.54 20601 21.6000 232.27 235.44 12.46 20602 21.6010 229.72 235.09 12.39 20603 21.6020 256.16 234.74 13.13 20604 21.6030 260.55 234.41 13.27 20605 21.6040 249.21 234.08 12.95 20606 21.6050 229.08 233.77 12.47 20607 21.6060 222.04 233.46 12.25 20608 21.6070 228.86 233.16 12.41 20609 21.6080 250.51 232.87 13.00 20610 21.6090 254.18 232.59 13.12 20611 21.6100 231.15 232.32 12.46 20612 21.6110 228.86 232.05 12.36 20613 21.6120 231.10 231.79 12.44 20614 21.6130 242.56 231.54 12.79 20615 21.6140 252.85 231.29 13.08 20616 21.6150 238.36 231.05 12.70 20617 21.6160 232.99 230.82 12.52 20618 21.6170 250.08 230.59 12.93 20619 21.6180 244.27 230.37 12.81 20620 21.6190 235.88 230.15 12.61 20621 21.6200 229.57 229.94 12.44 20622 21.6210 230.67 229.74 12.47 20623 21.6220 225.68 229.54 12.30 20624 21.6230 233.65 229.34 12.57 20625 21.6240 251.41 229.15 13.01 20626 21.6250 235.17 228.97 12.59 20627 21.6260 238.29 228.78 12.65 20628 21.6270 233.49 228.61 12.50 20629 21.6280 216.48 228.43 12.09 20630 21.6290 214.42 228.26 11.99 20631 21.6300 231.71 228.10 12.50 20632 21.6310 247.43 227.94 12.92 20633 21.6320 228.12 227.78 12.44 20634 21.6330 237.91 227.63 12.63 20635 21.6340 230.09 227.48 12.39 20636 21.6350 224.84 227.33 12.27 20637 21.6360 236.92 227.18 12.63 20638 21.6370 235.10 227.04 12.56 20639 21.6380 237.09 226.90 12.63 20640 21.6390 238.88 226.77 12.73 20641 21.6400 223.90 226.64 12.30 20642 21.6410 207.13 226.51 11.79 20643 21.6420 214.46 226.38 11.98 20644 21.6430 239.22 226.26 12.67 20645 21.6440 228.72 226.14 12.39 20646 21.6450 231.83 226.02 12.54 20647 21.6460 210.20 225.90 11.96 20648 21.6470 237.46 225.79 12.63 20649 21.6480 215.63 225.68 12.03 20650 21.6490 220.75 225.57 12.19 20651 21.6500 232.10 225.46 12.52 20652 21.6510 234.11 225.36 12.53 20653 21.6520 236.55 225.12 12.63 20654 21.6530 235.97 225.02 12.62 20655 21.6540 214.29 224.92 12.03 20656 21.6550 237.03 224.82 12.59 20657 21.6560 228.87 224.73 12.41 20658 21.6570 221.84 224.64 12.20 20659 21.6580 215.72 224.55 12.08 20660 21.6590 222.67 224.46 12.21 20661 21.6600 214.00 224.38 12.03 20662 21.6610 233.89 224.29 12.58 20663 21.6620 235.93 224.21 12.58 20664 21.6630 224.27 224.13 12.22 20665 21.6640 221.51 224.05 12.19 20666 21.6650 220.27 223.97 12.17 20667 21.6660 217.74 223.89 12.07 20668 21.6670 226.87 223.82 12.33 20669 21.6680 227.95 223.74 12.35 20670 21.6690 213.48 223.67 11.97 20671 21.6700 212.54 223.60 11.92 20672 21.6710 202.99 223.53 11.70 20673 21.6720 210.32 223.46 11.95 20674 21.6730 215.70 223.40 12.07 20675 21.6740 236.24 223.33 12.62 20676 21.6750 232.20 223.27 12.46 20677 21.6760 220.28 223.20 12.21 20678 21.6770 216.56 223.14 12.03 20679 21.6780 218.21 223.08 12.11 20680 21.6790 240.68 223.02 12.76 20681 21.6800 229.09 222.96 12.34 20682 21.6810 198.84 222.91 11.54 20683 21.6820 224.25 222.85 12.29 20684 21.6830 209.91 222.80 11.90 20685 21.6840 212.37 222.74 11.98 20686 21.6850 202.15 222.69 11.69 20687 21.6860 216.43 223.06 12.07 20688 21.6870 225.96 223.01 12.33 20689 21.6880 219.22 222.96 12.17 20690 21.6890 218.00 222.92 12.16 20691 21.6900 221.05 222.87 12.19 20692 21.6910 218.04 222.83 12.11 20693 21.6920 227.55 222.79 12.38 20694 21.6930 220.33 221.27 12.15 20695 21.6940 224.60 221.24 12.27 20696 21.6950 198.07 221.21 11.49 20697 21.6960 226.75 221.18 12.34 20698 21.6970 222.53 221.15 12.25 20699 21.6980 215.19 221.13 12.08 20700 21.6990 235.29 221.10 12.59 20701 21.7000 208.22 221.07 11.88 20702 21.7010 222.85 221.05 12.28 20703 21.7020 213.18 221.03 12.02 20704 21.7030 215.35 221.00 12.03 20705 21.7040 221.51 220.98 12.21 20706 21.7050 212.84 220.96 11.95 20707 21.7060 192.99 220.94 11.38 20708 21.7070 204.05 220.92 11.75 20709 21.7080 224.54 220.90 12.31 20710 21.7090 221.87 220.88 12.21 20711 21.7100 228.00 220.86 12.38 20712 21.7110 226.22 220.84 12.38 20713 21.7120 224.40 220.83 12.25 20714 21.7130 222.27 220.81 12.14 20715 21.7140 213.01 220.80 11.99 20716 21.7150 227.74 220.78 12.40 20717 21.7160 209.37 220.77 11.90 20718 21.7170 217.12 220.76 12.06 20719 21.7180 224.67 220.75 12.30 20720 21.7190 222.09 220.73 12.27 20721 21.7200 220.24 220.72 12.18 20722 21.7210 224.05 220.71 12.31 20723 21.7220 229.10 220.71 12.39 20724 21.7230 209.67 220.70 11.90 20725 21.7240 205.15 220.69 11.79 20726 21.7250 214.18 220.68 12.03 20727 21.7260 217.23 220.68 12.15 20728 21.7270 211.31 220.67 11.95 20729 21.7280 215.68 220.67 12.05 20730 21.7290 201.79 220.67 11.65 20731 21.7300 235.55 220.66 12.57 20732 21.7310 211.05 220.66 11.91 20733 21.7320 224.45 220.66 12.28 20734 21.7330 198.50 220.66 11.55 20735 21.7340 198.31 220.66 11.51 20736 21.7350 219.40 220.67 12.14 20737 21.7360 215.17 220.67 12.02 20738 21.7370 225.64 220.67 12.35 20739 21.7380 230.73 220.68 12.47 20740 21.7390 216.29 220.68 12.07 20741 21.7400 219.66 220.69 12.16 20742 21.7410 213.90 220.70 12.04 20743 21.7420 207.20 220.71 11.85 20744 21.7430 227.71 220.72 12.38 20745 21.7440 239.14 220.73 12.68 20746 21.7450 235.55 220.74 12.61 20747 21.7460 203.54 220.75 11.72 20748 21.7470 217.46 220.77 12.05 20749 21.7480 229.31 220.78 12.47 20750 21.7490 209.05 220.80 11.82 20751 21.7500 208.31 220.82 11.87 20752 21.7510 208.55 220.84 11.84 20753 21.7520 202.39 220.86 11.65 20754 21.7530 202.01 220.88 11.69 20755 21.7540 219.42 220.90 12.13 20756 21.7550 202.85 220.93 11.68 20757 21.7560 212.29 220.96 11.96 20758 21.7570 211.28 220.98 11.92 20759 21.7580 226.96 221.01 12.37 20760 21.7590 239.23 221.04 12.73 20761 21.7600 216.82 221.08 12.11 20762 21.7610 227.45 221.11 12.36 20763 21.7620 222.25 221.15 12.23 20764 21.7630 198.66 221.19 11.58 20765 21.7640 201.41 221.23 11.61 20766 21.7650 193.64 221.27 11.39 20767 21.7660 209.60 221.32 11.84 20768 21.7670 227.89 221.36 12.34 20769 21.7680 232.18 221.41 12.49 20770 21.7690 217.75 221.46 12.10 20771 21.7700 233.80 221.52 12.56 20772 21.7710 252.57 221.58 13.06 20773 21.7720 226.82 221.64 12.40 20774 21.7730 218.68 221.70 12.14 20775 21.7740 232.70 221.77 12.50 20776 21.7750 226.99 221.84 12.39 20777 21.7760 221.93 221.91 12.26 20778 21.7770 215.77 221.99 12.03 20779 21.7780 220.65 222.07 12.19 20780 21.7790 218.15 222.15 12.13 20781 21.7800 223.58 222.24 12.30 20782 21.7810 229.45 222.34 12.48 20783 21.7820 227.91 222.44 12.40 20784 21.7830 227.15 222.54 12.36 20785 21.7840 228.85 222.65 12.44 20786 21.7850 225.38 222.76 12.35 20787 21.7860 213.73 226.25 11.96 20788 21.7870 212.29 226.40 11.91 20789 21.7880 212.14 226.55 11.97 20790 21.7890 223.16 226.72 12.26 20791 21.7900 230.91 226.89 12.51 20792 21.7910 233.68 227.07 12.55 20793 21.7920 238.33 227.26 12.68 20794 21.7930 243.39 227.46 12.79 20795 21.7940 216.10 227.67 12.08 20796 21.7950 219.79 227.89 12.22 20797 21.7960 243.95 228.12 12.78 20798 21.7970 229.05 228.36 12.41 20799 21.7980 236.12 228.62 12.67 20800 21.7990 232.25 228.89 12.49 20801 21.8000 231.43 229.18 12.50 20802 21.8010 219.54 229.48 12.18 20803 21.8020 236.64 229.80 12.60 20804 21.8030 235.24 230.14 12.57 20805 21.8040 223.33 230.51 12.31 20806 21.8050 226.21 230.89 12.37 20807 21.8060 225.52 231.30 12.38 20808 21.8070 243.97 231.73 12.85 20809 21.8080 226.76 232.20 12.37 20810 21.8090 227.87 232.69 12.42 20811 21.8100 234.79 233.22 12.56 20812 21.8110 211.53 233.79 12.03 20813 21.8120 247.37 234.40 12.90 20814 21.8130 247.71 235.05 12.93 20815 21.8140 228.93 235.75 12.40 20816 21.8150 213.53 236.50 11.91 20817 21.8160 221.61 237.31 12.19 20818 21.8170 224.52 238.18 12.30 20819 21.8180 242.50 239.13 12.75 20820 21.8190 253.06 240.15 13.05 20821 21.8200 243.71 241.25 12.79 20822 21.8210 231.18 242.44 12.52 20823 21.8220 264.15 243.73 13.36 20824 21.8230 242.12 245.13 12.78 20825 21.8240 253.32 246.65 13.10 20826 21.8250 257.21 248.30 13.19 20827 21.8260 246.69 250.08 12.92 20828 21.8270 239.07 252.07 12.73 20829 21.8280 270.07 254.15 13.53 20830 21.8290 259.78 256.41 13.27 20831 21.8300 256.05 258.83 13.11 20832 21.8310 253.42 261.41 13.08 20833 21.8320 274.57 264.17 13.54 20834 21.8330 280.14 267.07 13.69 20835 21.8340 267.79 270.10 13.37 20836 21.8350 267.42 273.23 13.43 20837 21.8360 290.23 276.41 13.97 20838 21.8370 292.16 279.56 14.06 20839 21.8380 309.55 282.62 14.45 20840 21.8390 287.48 284.26 13.86 20841 21.8400 296.34 286.83 14.14 20842 21.8410 314.86 288.98 14.55 20843 21.8420 299.25 290.63 14.23 20844 21.8430 305.09 291.67 14.33 20845 21.8440 336.98 292.07 15.05 20846 21.8450 322.51 291.80 14.70 20847 21.8460 317.27 290.88 14.62 20848 21.8470 322.33 289.36 14.71 20849 21.8480 295.66 287.33 14.15 20850 21.8490 314.12 284.89 14.58 20851 21.8500 314.30 282.15 14.55 20852 21.8510 314.30 279.21 14.53 20853 21.8520 303.84 276.18 14.30 20854 21.8530 279.04 273.12 13.69 20855 21.8540 275.69 270.12 13.60 20856 21.8550 262.40 267.22 13.34 20857 21.8560 269.79 264.43 13.48 20858 21.8570 269.35 261.80 13.43 20859 21.8580 276.07 259.34 13.71 20860 21.8590 279.38 257.05 13.75 20861 21.8600 276.86 254.92 13.71 20862 21.8610 247.11 252.96 12.91 20863 21.8620 258.42 251.16 13.19 20864 21.8630 254.79 249.50 13.12 20865 21.8640 240.95 247.98 12.76 20866 21.8650 244.70 246.59 12.81 20867 21.8660 250.73 245.32 12.95 20868 21.8670 249.90 244.15 12.96 20869 21.8680 247.10 243.09 12.96 20870 21.8690 267.68 242.12 13.46 20871 21.8700 243.94 241.23 12.79 20872 21.8710 235.74 240.43 12.60 20873 21.8720 249.13 239.69 12.97 20874 21.8730 248.15 239.01 12.91 20875 21.8740 225.52 242.45 12.38 20876 21.8750 235.11 241.91 12.59 20877 21.8760 241.63 241.43 12.77 20878 21.8770 255.71 240.99 13.10 20879 21.8780 249.96 240.59 12.99 20880 21.8790 228.72 240.23 12.36 20881 21.8800 231.93 239.90 12.51 20882 21.8810 223.72 239.61 12.28 20883 21.8820 234.65 239.35 12.54 20884 21.8830 220.97 239.12 12.14 20885 21.8840 225.66 238.92 12.31 20886 21.8850 245.12 238.74 12.82 20887 21.8860 255.93 238.58 13.14 20888 21.8870 232.09 238.45 12.51 20889 21.8880 230.90 238.33 12.48 20890 21.8890 230.25 238.23 12.47 20891 21.8900 232.59 238.15 12.52 20892 21.8910 232.52 238.09 12.48 20893 21.8920 249.45 238.05 12.95 20894 21.8930 255.55 238.02 13.13 20895 21.8940 222.21 238.00 12.23 20896 21.8950 250.45 238.00 12.97 20897 21.8960 235.09 238.01 12.60 20898 21.8970 209.33 238.04 11.86 20899 21.8980 228.79 238.08 12.47 20900 21.8990 227.12 238.12 12.34 20901 21.9000 220.17 238.18 12.17 20902 21.9010 221.56 238.26 12.22 20903 21.9020 224.44 238.34 12.23 20904 21.9030 220.77 238.43 12.16 20905 21.9040 232.65 238.54 12.53 20906 21.9050 243.66 238.65 12.77 20907 21.9060 219.58 238.77 12.19 20908 21.9070 221.58 238.91 12.25 20909 21.9080 242.27 239.05 12.75 20910 21.9090 236.61 239.20 12.66 20911 21.9100 242.53 239.37 12.77 20912 21.9110 225.96 239.54 12.36 20913 21.9120 243.35 239.72 12.76 20914 21.9130 244.26 239.91 12.83 20915 21.9140 250.21 240.11 12.99 20916 21.9150 238.45 240.32 12.72 20917 21.9160 230.86 240.54 12.49 20918 21.9170 228.77 240.78 12.38 20919 21.9180 235.07 241.02 12.55 20920 21.9190 220.19 241.27 12.17 20921 21.9200 212.79 241.53 11.96 20922 21.9210 239.92 241.80 12.70 20923 21.9220 252.77 242.09 13.07 20924 21.9230 234.76 242.38 12.57 20925 21.9240 234.73 242.80 12.57 20926 21.9250 248.30 243.12 12.93 20927 21.9260 248.13 243.45 12.91 20928 21.9270 242.49 243.79 12.78 20929 21.9280 235.04 244.15 12.59 20930 21.9290 249.74 244.52 12.97 20931 21.9300 242.37 244.90 12.77 20932 21.9310 219.15 245.30 12.08 20933 21.9320 220.23 245.71 12.12 20934 21.9330 232.86 246.14 12.52 20935 21.9340 230.39 246.59 12.44 20936 21.9350 240.62 247.05 12.72 20937 21.9360 249.62 247.53 13.01 20938 21.9370 260.47 248.03 13.26 20939 21.9380 254.59 248.54 13.09 20940 21.9390 262.83 249.08 13.33 20941 21.9400 272.12 249.64 13.54 20942 21.9410 250.75 250.22 13.00 20943 21.9420 260.52 250.82 13.20 20944 21.9430 259.46 251.45 13.24 20945 21.9440 251.60 252.12 13.03 20946 21.9450 255.89 252.81 13.16 20947 21.9460 252.50 253.52 13.03 20948 21.9470 250.23 254.26 13.02 20949 21.9480 260.25 255.04 13.23 20950 21.9490 246.92 255.85 12.90 20951 21.9500 242.07 256.70 12.75 20952 21.9510 237.18 257.58 12.59 20953 21.9520 265.39 258.51 13.33 20954 21.9530 269.10 259.49 13.44 20955 21.9540 260.50 260.51 13.27 20956 21.9550 263.38 261.58 13.39 20957 21.9560 265.29 262.71 13.37 20958 21.9570 272.02 263.90 13.50 20959 21.9580 265.24 265.15 13.36 20960 21.9590 270.65 266.48 13.49 20961 21.9600 282.06 267.87 13.79 20962 21.9610 260.05 269.35 13.26 20963 21.9620 272.14 270.91 13.52 20964 21.9630 303.54 272.57 14.29 20965 21.9640 281.18 274.33 13.75 20966 21.9650 275.32 276.20 13.60 20967 21.9660 286.38 278.19 13.87 20968 21.9670 271.36 280.31 13.48 20969 21.9680 300.65 282.58 14.20 20970 21.9690 287.29 285.00 13.92 20971 21.9700 275.98 287.60 13.61 20972 21.9710 293.72 290.40 14.06 20973 21.9720 279.23 293.39 13.69 20974 21.9730 290.44 296.61 13.95 20975 21.9740 297.22 300.10 14.17 20976 21.9750 291.61 303.86 14.07 20977 21.9760 303.85 307.93 14.32 20978 21.9770 293.61 312.33 14.07 20979 21.9780 325.64 317.11 14.82 20980 21.9790 318.78 322.31 14.73 20981 21.9800 302.14 327.95 14.27 20982 21.9810 323.06 334.09 14.75 20983 21.9820 344.21 340.77 15.33 20984 21.9830 328.24 348.02 14.93 20985 21.9840 330.33 355.91 14.96 20986 21.9850 346.85 364.49 15.32 20987 21.9860 389.55 373.75 16.19 20988 21.9870 384.11 383.73 16.06 20989 21.9880 364.72 394.47 15.71 20990 21.9890 362.49 405.86 15.63 20991 21.9900 386.93 417.86 16.16 20992 21.9910 404.35 430.36 16.50 20993 21.9920 424.50 443.14 16.92 20994 21.9930 422.35 455.89 16.86 20995 21.9940 443.69 468.32 17.30 20996 21.9950 486.09 479.95 18.05 20997 21.9960 454.01 490.30 17.48 20998 21.9970 469.00 498.87 17.82 20999 21.9980 481.88 505.21 18.03 21000 21.9990 500.83 509.00 18.35 21001 22.0000 467.79 510.02 17.72 21002 22.0010 470.98 508.28 17.79 21003 22.0020 481.17 503.95 18.00 21004 22.0030 462.85 497.41 17.68 21005 22.0040 480.30 489.10 18.05 21006 22.0050 458.01 479.51 17.62 21007 22.0060 456.94 469.12 17.55 21008 22.0070 420.12 458.40 16.82 21009 22.0080 434.18 447.69 17.12 21010 22.0090 431.73 437.27 17.07 21011 22.0100 431.26 427.37 17.02 21012 22.0110 392.51 418.09 16.26 21013 22.0120 420.47 409.55 16.81 21014 22.0130 398.19 401.75 16.38 21015 22.0140 403.87 394.71 16.47 21016 22.0150 376.56 388.44 15.85 21017 22.0160 363.24 382.87 15.64 21018 22.0170 380.02 377.99 16.01 21019 22.0180 374.20 373.75 15.91 21020 22.0190 382.23 370.12 16.09 21021 22.0200 355.41 367.04 15.48 21022 22.0210 364.70 364.49 15.68 21023 22.0220 354.27 362.42 15.45 21024 22.0230 342.45 360.81 15.19 21025 22.0240 371.58 359.63 15.84 21026 22.0250 369.29 358.85 15.77 21027 22.0260 363.89 358.44 15.60 21028 22.0270 335.49 358.40 15.04 21029 22.0280 355.27 358.71 15.44 21030 22.0290 365.26 359.35 15.70 21031 22.0300 363.07 360.31 15.65 21032 22.0310 378.89 361.59 15.97 21033 22.0320 384.02 363.17 16.11 21034 22.0330 368.92 365.08 15.76 21035 22.0340 387.59 367.29 16.18 21036 22.0350 386.84 369.80 16.13 21037 22.0360 393.30 372.63 16.22 21038 22.0370 408.82 375.80 16.61 21039 22.0380 417.28 379.28 16.79 21040 22.0390 393.51 383.11 16.31 21041 22.0400 390.03 387.31 16.23 21042 22.0410 410.99 391.87 16.63 21043 22.0420 378.51 396.81 15.97 21044 22.0430 405.40 402.18 16.50 21045 22.0440 415.63 407.99 16.74 21046 22.0450 438.77 414.26 17.22 21047 22.0460 437.88 421.02 17.15 21048 22.0470 442.30 428.32 17.27 21049 22.0480 464.13 436.20 17.65 21050 22.0490 448.73 444.67 17.44 21051 22.0500 448.96 453.82 17.37 21052 22.0510 488.30 463.72 18.10 21053 22.0520 475.19 474.38 17.91 21054 22.0530 489.66 485.89 18.14 21055 22.0540 490.59 498.38 18.14 21056 22.0550 515.85 511.86 18.61 21057 22.0560 520.57 526.45 18.76 21058 22.0570 538.78 542.31 19.07 21059 22.0580 563.55 559.52 19.52 21060 22.0590 562.94 578.21 19.50 21061 22.0600 593.80 598.58 19.96 21062 22.0610 600.47 620.79 20.13 21063 22.0620 618.55 644.98 20.45 21064 22.0630 622.37 671.47 20.49 21065 22.0640 668.10 700.39 21.21 21066 22.0650 681.07 732.13 21.41 21067 22.0660 725.95 766.93 22.16 21068 22.0670 776.28 805.05 22.88 21069 22.0680 796.64 847.07 23.17 21070 22.0690 836.22 893.06 23.69 21071 22.0700 879.38 943.56 24.35 21072 22.0710 982.72 998.98 25.71 21073 22.0720 966.59 1059.94 25.53 21074 22.0730 1057.70 1126.36 26.67 21075 22.0740 1132.55 1198.86 27.61 21076 22.0750 1244.03 1277.46 28.95 21077 22.0760 1320.11 1361.95 29.83 21078 22.0770 1461.07 1452.23 31.41 21079 22.0780 1584.32 1547.19 32.67 21080 22.0790 1752.15 1645.80 34.38 21081 22.0800 1859.66 1745.87 35.44 21082 22.0810 2023.78 1844.44 36.93 21083 22.0820 2234.45 1938.32 38.79 21084 22.0830 2312.57 2023.18 39.52 21085 22.0840 2408.04 2094.47 40.34 21086 22.0850 2481.70 2148.04 40.93 21087 22.0860 2536.30 2180.40 41.38 21088 22.0870 2497.27 2189.05 41.07 21089 22.0880 2414.34 2173.54 40.42 21090 22.0890 2383.22 2134.88 40.14 21091 22.0900 2196.89 2076.11 38.51 21092 22.0910 2063.87 2001.01 37.31 21093 22.0920 1972.46 1913.81 36.48 21094 22.0930 1833.67 1819.04 35.24 21095 22.0940 1744.33 1720.67 34.30 21096 22.0950 1677.32 1622.16 33.61 21097 22.0960 1544.66 1525.71 32.22 21098 22.0970 1464.56 1433.28 31.43 21099 22.0980 1362.38 1346.17 30.33 21100 22.0990 1258.73 1264.74 29.15 21101 22.1000 1202.53 1189.42 28.53 21102 22.1010 1128.27 1120.30 27.69 21103 22.1020 1067.36 1057.07 26.86 21104 22.1030 1047.76 999.22 26.59 21105 22.1040 958.78 946.77 25.48 21106 22.1050 928.13 899.14 25.05 21107 22.1060 862.78 855.76 24.12 21108 22.1070 852.30 816.55 23.98 21109 22.1080 830.09 780.99 23.70 21110 22.1090 766.96 748.66 22.73 21111 22.1100 722.77 719.33 22.08 21112 22.1110 679.36 692.74 21.40 21113 22.1120 695.58 668.55 21.60 21114 22.1130 687.65 646.56 21.56 21115 22.1140 641.17 626.61 20.77 21116 22.1150 636.80 608.43 20.76 21117 22.1160 610.34 591.93 20.29 21118 22.1170 604.09 576.87 20.16 21119 22.1180 588.04 563.22 19.95 21120 22.1190 564.84 550.82 19.49 21121 22.1200 555.74 539.52 19.32 21122 22.1210 545.88 529.31 19.18 21123 22.1220 574.09 520.07 19.71 21124 22.1230 534.97 511.71 19.02 21125 22.1240 542.05 504.18 19.15 21126 22.1250 516.52 497.43 18.66 21127 22.1260 509.10 491.40 18.52 21128 22.1270 520.64 486.06 18.74 21129 22.1280 509.72 481.36 18.52 21130 22.1290 489.35 477.27 18.11 21131 22.1300 517.69 473.76 18.69 21132 22.1310 519.03 470.80 18.70 21133 22.1320 482.53 468.38 18.05 21134 22.1330 478.85 466.48 18.00 21135 22.1340 492.56 465.08 18.25 21136 22.1350 518.72 464.24 18.66 21137 22.1360 486.43 463.83 18.07 21138 22.1370 494.98 463.89 18.25 21139 22.1380 488.95 464.44 18.10 21140 22.1390 497.14 465.47 18.32 21141 22.1400 482.60 466.98 18.04 21142 22.1410 464.84 469.00 17.66 21143 22.1420 493.45 471.51 18.27 21144 22.1430 491.36 474.54 18.20 21145 22.1440 488.91 478.09 18.18 21146 22.1450 494.83 482.19 18.24 21147 22.1460 513.44 486.86 18.65 21148 22.1470 513.97 492.10 18.62 21149 22.1480 501.91 497.95 18.38 21150 22.1490 533.57 504.43 18.97 21151 22.1500 527.99 511.54 18.86 21152 22.1510 497.19 519.31 18.30 21153 22.1520 556.43 527.78 19.37 21154 22.1530 559.26 536.92 19.45 21155 22.1540 565.89 546.76 19.56 21156 22.1550 613.76 557.34 20.34 21157 22.1560 573.81 568.59 19.70 21158 22.1570 555.51 580.58 19.34 21159 22.1580 600.38 593.35 20.08 21160 22.1590 624.52 606.87 20.50 21161 22.1600 608.10 621.24 20.29 21162 22.1610 661.62 636.56 21.15 21163 22.1620 660.32 652.93 21.11 21164 22.1630 662.97 670.48 21.18 21165 22.1640 663.02 689.43 21.17 21166 22.1650 718.43 709.97 22.02 21167 22.1660 724.28 732.32 22.10 21168 22.1670 744.79 756.67 22.39 21169 22.1680 768.60 783.33 22.76 21170 22.1690 821.28 812.67 23.53 21171 22.1700 827.18 844.78 23.55 21172 22.1710 878.35 880.08 24.28 21173 22.1720 874.44 919.02 24.20 21174 22.1730 905.87 961.70 24.68 21175 22.1740 954.96 1008.60 25.33 21176 22.1750 1047.19 1060.23 26.62 21177 22.1760 1100.78 1116.89 27.28 21178 22.1770 1114.80 1178.89 27.47 21179 22.1780 1164.10 1246.83 28.01 21180 22.1790 1279.44 1320.95 29.39 21181 22.1800 1337.14 1401.37 30.04 21182 22.1810 1478.37 1488.52 31.56 21183 22.1820 1553.97 1582.02 32.33 21184 22.1830 1642.46 1681.85 33.27 21185 22.1840 1833.25 1787.13 35.13 21186 22.1850 1918.59 1896.42 35.93 21187 22.1860 2102.35 2008.46 37.62 21188 22.1870 2299.72 2119.83 39.39 21189 22.1880 2332.14 2227.90 39.63 21190 22.1890 2514.37 2328.63 41.19 21191 22.1900 2638.45 2417.96 42.15 21192 22.1910 2771.87 2490.77 43.22 21193 22.1920 2755.99 2543.34 43.13 21194 22.1930 2789.80 2572.26 43.45 21195 22.1940 2747.05 2575.62 43.07 21196 22.1950 2679.37 2553.17 42.55 21197 22.1960 2599.29 2506.41 41.89 21198 22.1970 2384.15 2438.06 40.11 21199 22.1980 2347.57 2352.11 39.86 21200 22.1990 2226.49 2253.18 38.79 21201 22.2000 2102.07 2145.39 37.69 21202 22.2010 1973.86 2032.99 36.50 21203 22.2020 1864.76 1919.65 35.47 21204 22.2030 1768.76 1807.93 34.58 21205 22.2040 1663.86 1699.50 33.52 21206 22.2050 1540.83 1596.50 32.25 21207 22.2060 1491.84 1499.44 31.72 21208 22.2070 1379.84 1408.44 30.50 21209 22.2080 1314.95 1324.28 29.79 21210 22.2090 1230.67 1246.54 28.83 21211 22.2100 1194.97 1174.86 28.36 21212 22.2110 1127.00 1109.05 27.57 21213 22.2120 1056.55 1048.83 26.73 21214 22.2130 1023.70 993.58 26.31 21215 22.2140 987.94 943.00 25.82 21216 22.2150 938.53 896.70 25.14 21217 22.2160 891.99 854.37 24.47 21218 22.2170 826.27 815.57 23.58 21219 22.2180 803.98 779.86 23.23 21220 22.2190 773.99 747.20 22.83 21221 22.2200 739.28 717.18 22.33 21222 22.2210 744.16 689.47 22.41 21223 22.2220 697.21 664.04 21.63 21224 22.2230 663.33 640.58 21.13 21225 22.2240 671.48 618.85 21.30 21226 22.2250 652.71 598.84 20.94 21227 22.2260 586.92 580.32 19.89 21228 22.2270 578.54 563.14 19.77 21229 22.2280 606.16 547.20 20.21 21230 22.2290 576.47 532.44 19.72 21231 22.2300 588.49 518.70 19.96 21232 22.2310 550.05 505.93 19.29 21233 22.2320 554.18 494.08 19.35 21234 22.2330 539.37 483.02 19.03 21235 22.2340 501.57 472.75 18.38 21236 22.2350 503.43 463.15 18.47 21237 22.2360 514.39 454.24 18.66 21238 22.2370 499.74 445.95 18.37 21239 22.2380 487.49 438.21 18.12 21240 22.2390 478.09 431.04 17.97 21241 22.2400 481.17 424.38 17.97 21242 22.2410 486.21 418.20 18.11 21243 22.2420 461.45 412.48 17.66 21244 22.2430 439.23 407.21 17.20 21245 22.2440 456.19 402.36 17.53 21246 22.2450 468.57 397.92 17.76 21247 22.2460 427.17 393.89 16.99 21248 22.2470 420.12 390.24 16.84 21249 22.2480 422.00 386.98 16.81 21250 22.2490 413.97 384.09 16.71 21251 22.2500 408.46 381.57 16.63 21252 22.2510 415.84 379.41 16.73 21253 22.2520 412.32 377.61 16.65 21254 22.2530 418.40 376.17 16.80 21255 22.2540 428.07 375.06 17.00 21256 22.2550 396.83 374.28 16.37 21257 22.2560 410.62 373.80 16.62 21258 22.2570 388.97 373.58 16.19 21259 22.2580 416.25 373.60 16.77 21260 22.2590 405.11 373.79 16.56 21261 22.2600 406.48 374.08 16.56 21262 22.2610 396.33 374.38 16.35 21263 22.2620 405.68 374.60 16.50 21264 22.2630 396.83 374.64 16.29 21265 22.2640 401.15 374.37 16.44 21266 22.2650 421.46 373.72 16.85 21267 22.2660 414.67 372.59 16.71 21268 22.2670 407.00 370.93 16.55 21269 22.2680 416.33 368.73 16.74 21270 22.2690 424.13 366.00 16.88 21271 22.2700 399.00 362.76 16.39 21272 22.2710 409.27 359.11 16.59 21273 22.2720 382.01 355.12 16.09 21274 22.2730 383.17 350.85 16.04 21275 22.2740 399.82 346.42 16.41 21276 22.2750 377.90 341.90 16.04 21277 22.2760 353.71 337.35 15.40 21278 22.2770 366.59 332.85 15.73 21279 22.2780 357.78 328.43 15.58 21280 22.2790 346.05 324.14 15.27 21281 22.2800 348.68 320.02 15.35 21282 22.2810 344.08 316.07 15.23 21283 22.2820 350.88 312.31 15.36 21284 22.2830 353.98 308.74 15.38 21285 22.2840 346.94 305.38 15.33 21286 22.2850 347.98 302.20 15.32 21287 22.2860 332.46 299.21 14.95 21288 22.2870 309.85 296.39 14.46 21289 22.2880 302.74 293.75 14.24 21290 22.2890 310.37 291.26 14.44 21291 22.2900 321.70 288.90 14.74 21292 22.2910 293.51 286.69 14.00 21293 22.2920 298.66 284.61 14.16 21294 22.2930 292.73 282.64 14.08 21295 22.2940 297.92 280.77 14.24 21296 22.2950 317.02 279.01 14.57 21297 22.2960 301.06 277.34 14.22 21298 22.2970 303.51 275.75 14.31 21299 22.2980 278.62 274.25 13.67 21300 22.2990 277.38 272.81 13.67 21301 22.3000 296.61 271.45 14.08 21302 22.3010 286.54 270.14 13.90 21303 22.3020 266.34 268.90 13.42 21304 22.3030 271.94 267.71 13.50 21305 22.3040 274.83 266.57 13.61 21306 22.3050 273.05 265.48 13.56 21307 22.3060 276.21 264.44 13.66 21308 22.3070 282.64 263.44 13.78 21309 22.3080 243.10 262.47 12.75 21310 22.3090 252.96 261.54 13.08 21311 22.3100 260.40 260.65 13.20 21312 22.3110 262.46 259.79 13.26 21313 22.3120 256.99 258.96 13.16 21314 22.3130 263.47 258.16 13.28 21315 22.3140 272.68 256.97 13.53 21316 22.3150 265.59 256.22 13.43 21317 22.3160 253.45 255.50 13.05 21318 22.3170 255.45 254.81 13.11 21319 22.3180 288.55 254.13 13.94 21320 22.3190 251.68 253.48 13.01 21321 22.3200 254.12 252.85 13.04 21322 22.3210 238.74 252.24 12.70 21323 22.3220 252.53 251.64 12.99 21324 22.3230 264.17 251.06 13.30 21325 22.3240 259.28 250.50 13.19 21326 22.3250 260.22 249.96 13.28 21327 22.3260 252.43 249.43 13.11 21328 22.3270 231.79 248.91 12.49 21329 22.3280 236.90 248.41 12.64 21330 22.3290 237.14 247.92 12.63 21331 22.3300 238.28 247.45 12.66 21332 22.3310 242.24 246.99 12.75 21333 22.3320 247.14 246.54 12.89 21334 22.3330 231.19 246.10 12.46 21335 22.3340 222.13 245.67 12.21 21336 22.3350 250.82 245.25 13.01 21337 22.3360 240.89 244.85 12.73 21338 22.3370 243.95 244.45 12.80 21339 22.3380 241.21 244.06 12.76 21340 22.3390 227.42 243.68 12.37 21341 22.3400 240.07 243.32 12.73 21342 22.3410 247.63 242.96 12.93 21343 22.3420 251.65 242.60 13.02 21344 22.3430 233.20 242.26 12.50 21345 22.3440 230.15 241.92 12.43 21346 22.3450 258.35 241.59 13.18 21347 22.3460 223.88 241.27 12.32 21348 22.3470 219.05 240.96 12.20 21349 22.3480 255.98 240.65 13.16 21350 22.3490 239.70 240.35 12.62 21351 22.3500 234.45 240.06 12.50 21352 22.3510 234.96 239.77 12.56 21353 22.3520 213.96 239.49 12.05 21354 22.3530 228.97 239.21 12.43 21355 22.3540 245.92 238.94 12.84 21356 22.3550 249.13 238.68 12.93 21357 22.3560 246.02 238.42 12.90 21358 22.3570 221.48 238.16 12.21 21359 22.3580 226.88 237.92 12.38 21360 22.3590 234.19 237.67 12.51 21361 22.3600 222.79 237.43 12.20 21362 22.3610 233.12 237.20 12.53 21363 22.3620 251.67 236.97 13.02 21364 22.3630 231.27 236.75 12.42 21365 22.3640 230.11 236.53 12.42 21366 22.3650 223.85 236.31 12.25 21367 22.3660 217.60 236.10 12.14 21368 22.3670 223.91 235.90 12.24 21369 22.3680 237.55 235.69 12.59 21370 22.3690 212.88 235.49 11.95 21371 22.3700 216.22 235.30 12.05 21372 22.3710 217.50 235.11 12.07 21373 22.3720 222.01 234.92 12.19 21374 22.3730 231.50 234.74 12.47 21375 22.3740 234.10 234.56 12.54 21376 22.3750 239.43 234.38 12.74 21377 22.3760 243.57 234.21 12.82 21378 22.3770 232.98 234.04 12.52 21379 22.3780 223.99 233.87 12.27 21380 22.3790 227.31 233.71 12.40 21381 22.3800 235.91 233.55 12.64 21382 22.3810 225.62 233.40 12.33 21383 22.3820 216.40 233.24 12.06 21384 22.3830 227.32 233.09 12.34 21385 22.3840 235.99 232.95 12.56 21386 22.3850 239.76 232.80 12.70 21387 22.3860 220.20 232.66 12.19 21388 22.3870 230.71 232.52 12.46 21389 22.3880 235.34 232.39 12.60 21390 22.3890 219.64 228.92 12.14 21391 22.3900 216.30 228.81 12.10 21392 22.3910 225.64 228.71 12.31 21393 22.3920 233.95 228.60 12.53 21394 22.3930 225.02 228.51 12.33 21395 22.3940 239.99 228.41 12.74 21396 22.3950 255.19 228.31 13.09 21397 22.3960 231.47 228.22 12.46 21398 22.3970 227.09 228.13 12.38 21399 22.3980 237.00 228.05 12.59 21400 22.3990 219.03 227.96 12.14 21401 22.4000 227.18 227.88 12.41 21402 22.4010 224.02 227.80 12.27 21403 22.4020 237.26 227.72 12.59 21404 22.4030 219.22 227.65 12.14 21405 22.4040 241.91 227.58 12.75 21406 22.4050 233.84 227.51 12.55 21407 22.4060 228.05 227.44 12.40 21408 22.4070 214.21 227.38 12.01 21409 22.4080 218.68 227.32 12.13 21410 22.4090 249.69 227.26 13.03 21411 22.4100 227.82 227.20 12.45 21412 22.4110 224.88 227.15 12.27 21413 22.4120 226.48 227.10 12.33 21414 22.4130 210.13 227.05 11.90 21415 22.4140 221.21 227.01 12.22 21416 22.4150 228.95 226.96 12.40 21417 22.4160 223.44 226.93 12.24 21418 22.4170 204.43 226.89 11.74 21419 22.4180 234.98 226.86 12.58 21420 22.4190 239.81 226.83 12.73 21421 22.4200 216.94 226.80 12.07 21422 22.4210 212.11 226.78 11.95 21423 22.4220 217.78 226.76 12.10 21424 22.4230 217.74 226.75 12.05 21425 22.4240 220.51 226.74 12.23 21426 22.4250 222.48 226.74 12.20 21427 22.4260 218.01 226.73 12.10 21428 22.4270 222.53 226.74 12.30 21429 22.4280 231.54 226.74 12.50 21430 22.4290 212.86 226.76 11.97 21431 22.4300 204.39 226.77 11.70 21432 22.4310 226.55 226.79 12.31 21433 22.4320 219.02 226.82 12.16 21434 22.4330 233.64 226.86 12.55 21435 22.4340 215.39 226.90 12.03 21436 22.4350 227.12 226.95 12.36 21437 22.4360 221.59 227.00 12.23 21438 22.4370 225.33 227.06 12.36 21439 22.4380 213.68 227.13 11.92 21440 22.4390 211.19 227.21 11.91 21441 22.4400 196.01 227.30 11.50 21442 22.4410 223.15 227.40 12.24 21443 22.4420 233.93 227.51 12.53 21444 22.4430 236.42 227.62 12.61 21445 22.4440 224.47 227.76 12.28 21446 22.4450 222.30 227.90 12.17 21447 22.4460 238.63 228.06 12.65 21448 22.4470 214.28 228.23 12.00 21449 22.4480 217.40 228.42 12.10 21450 22.4490 232.49 228.63 12.52 21451 22.4500 214.51 228.86 12.03 21452 22.4510 223.37 229.10 12.26 21453 22.4520 240.92 229.37 12.65 21454 22.4530 236.64 229.67 12.61 21455 22.4540 243.70 229.99 12.83 21456 22.4550 219.60 230.34 12.14 21457 22.4560 234.00 230.72 12.52 21458 22.4570 234.97 231.14 12.56 21459 22.4580 232.14 231.59 12.58 21460 22.4590 236.47 232.08 12.62 21461 22.4600 224.57 232.62 12.32 21462 22.4610 237.73 233.21 12.66 21463 22.4620 233.44 233.86 12.54 21464 22.4630 215.21 234.56 12.03 21465 22.4640 249.22 235.33 12.91 21466 22.4650 234.36 236.16 12.53 21467 22.4660 256.71 237.07 13.14 21468 22.4670 248.65 238.06 12.94 21469 22.4680 235.31 239.13 12.55 21470 22.4690 239.58 240.29 12.72 21471 22.4700 247.30 241.55 12.90 21472 22.4710 235.94 242.90 12.55 21473 22.4720 241.54 244.34 12.75 21474 22.4730 236.98 245.88 12.63 21475 22.4740 239.19 247.49 12.71 21476 22.4750 255.85 249.18 13.13 21477 22.4760 254.84 250.90 13.12 21478 22.4770 249.36 252.65 12.96 21479 22.4780 256.54 254.38 13.13 21480 22.4790 254.18 256.04 13.09 21481 22.4800 267.02 257.58 13.44 21482 22.4810 280.05 258.95 13.66 21483 22.4820 256.69 260.07 13.14 21484 22.4830 272.74 260.90 13.53 21485 22.4840 256.41 261.39 13.12 21486 22.4850 266.98 261.51 13.43 21487 22.4860 264.69 261.26 13.39 21488 22.4870 270.19 260.65 13.53 21489 22.4880 263.86 259.70 13.36 21490 22.4890 270.23 258.47 13.47 21491 22.4900 267.47 257.00 13.44 21492 22.4910 247.47 255.37 12.91 21493 22.4920 262.09 253.62 13.26 21494 22.4930 267.25 251.81 13.36 21495 22.4940 264.63 249.94 13.33 21496 22.4950 239.18 248.14 12.73 21497 22.4960 241.95 246.39 12.80 21498 22.4970 243.50 244.71 12.82 21499 22.4980 234.40 243.49 12.54 21500 22.4990 228.77 241.98 12.39 21501 22.5000 236.07 240.57 12.65 21502 22.5010 238.22 239.26 12.67 21503 22.5020 246.73 238.04 12.92 21504 22.5030 247.48 236.90 12.94 21505 22.5040 227.01 235.85 12.35 21506 22.5050 222.60 234.88 12.24 21507 22.5060 233.56 233.98 12.57 21508 22.5070 253.39 233.15 13.04 21509 22.5080 231.58 232.38 12.46 21510 22.5090 248.97 231.67 12.88 21511 22.5100 252.32 231.02 13.03 21512 22.5110 234.28 230.41 12.55 21513 22.5120 241.09 229.84 12.75 21514 22.5130 232.65 229.32 12.50 21515 22.5140 234.43 228.83 12.59 21516 22.5150 248.70 224.37 12.92 21517 22.5160 237.27 223.97 12.68 21518 22.5170 217.16 223.60 12.13 21519 22.5180 218.79 223.26 12.12 21520 22.5190 217.07 222.94 12.08 21521 22.5200 217.54 222.64 12.10 21522 22.5210 215.33 222.36 12.04 21523 22.5220 235.64 222.10 12.61 21524 22.5230 233.37 221.86 12.51 21525 22.5240 235.54 221.63 12.58 21526 22.5250 221.95 221.42 12.21 21527 22.5260 201.69 221.22 11.66 21528 22.5270 228.98 221.03 12.43 21529 22.5280 240.09 220.85 12.70 21530 22.5290 213.53 220.69 12.01 21531 22.5300 219.62 220.53 12.17 21532 22.5310 228.78 220.38 12.47 21533 22.5320 223.45 220.24 12.28 21534 22.5330 207.91 220.11 11.81 21535 22.5340 222.26 219.99 12.24 21536 22.5350 216.92 219.87 12.09 21537 22.5360 215.91 219.76 12.08 21538 22.5370 206.99 219.65 11.82 21539 22.5380 214.34 219.55 12.05 21540 22.5390 227.38 219.46 12.40 21541 22.5400 212.85 219.37 11.99 21542 22.5410 215.15 219.28 12.06 21543 22.5420 211.52 219.20 11.97 21544 22.5430 226.19 219.12 12.37 21545 22.5440 241.39 219.05 12.74 21546 22.5450 221.87 218.98 12.24 21547 22.5460 232.76 218.91 12.46 21548 22.5470 225.61 218.85 12.35 21549 22.5480 236.16 218.79 12.60 21550 22.5490 228.34 218.73 12.43 21551 22.5500 225.20 218.68 12.32 21552 22.5510 228.94 218.62 12.37 21553 22.5520 207.78 218.57 11.84 21554 22.5530 239.47 218.52 12.68 21555 22.5540 230.92 218.48 12.42 21556 22.5550 187.06 218.43 11.23 21557 22.5560 215.31 218.39 12.00 21558 22.5570 224.73 218.35 12.27 21559 22.5580 205.42 218.31 11.69 21560 22.5590 203.75 218.27 11.73 21561 22.5600 220.38 218.24 12.18 21562 22.5610 204.15 218.20 11.69 21563 22.5620 217.38 218.17 12.08 21564 22.5630 219.04 218.14 12.14 21565 22.5640 203.37 218.11 11.69 21566 22.5650 213.94 218.08 11.92 21567 22.5660 207.05 218.05 11.81 21568 22.5670 193.08 218.02 11.45 21569 22.5680 209.34 218.00 11.83 21570 22.5690 213.09 217.98 11.93 21571 22.5700 210.93 217.95 11.89 21572 22.5710 203.82 217.93 11.69 21573 22.5720 223.56 217.91 12.23 21574 22.5730 209.28 217.89 11.86 21575 22.5740 207.18 217.87 11.78 21576 22.5750 205.33 217.85 11.69 21577 22.5760 212.13 217.83 11.93 21578 22.5770 214.69 217.81 12.02 21579 22.5780 218.82 217.80 12.13 21580 22.5790 223.65 217.78 12.27 21581 22.5800 220.08 217.76 12.20 21582 22.5810 199.53 217.75 11.54 21583 22.5820 218.00 217.74 12.12 21584 22.5830 223.98 217.72 12.28 21585 22.5840 200.55 217.71 11.63 21586 22.5850 220.21 217.70 12.18 21587 22.5860 218.93 217.68 12.09 21588 22.5870 221.91 217.67 12.18 21589 22.5880 220.00 217.66 12.18 21590 22.5890 220.78 217.65 12.17 21591 22.5900 218.50 217.64 12.13 21592 22.5910 209.95 217.63 11.92 21593 22.5920 215.97 217.62 12.09 21594 22.5930 222.85 217.62 12.25 21595 22.5940 206.07 217.61 11.78 21596 22.5950 208.40 217.60 11.87 21597 22.5960 208.29 217.60 11.84 21598 22.5970 225.75 217.59 12.30 21599 22.5980 209.29 217.58 11.89 21600 22.5990 233.18 217.58 12.57 21601 22.6000 230.43 217.57 12.47 21602 22.6010 205.65 217.57 11.79 21603 22.6020 221.53 217.56 12.19 21604 22.6030 212.02 217.56 11.96 21605 22.6040 226.66 217.54 12.38 21606 22.6050 233.33 217.54 12.52 21607 22.6060 211.83 217.53 11.90 21608 22.6070 213.97 217.53 11.98 21609 22.6080 215.96 217.53 12.06 21610 22.6090 209.27 217.52 11.81 21611 22.6100 210.22 217.41 11.89 21612 22.6110 217.63 217.41 12.12 21613 22.6120 225.94 217.41 12.34 21614 22.6130 214.94 217.41 12.08 21615 22.6140 212.91 217.41 11.98 21616 22.6150 232.15 217.41 12.52 21617 22.6160 211.30 217.41 11.94 21618 22.6170 204.36 217.41 11.74 21619 22.6180 204.13 217.41 11.77 21620 22.6190 222.93 217.42 12.28 21621 22.6200 210.53 217.42 11.86 21622 22.6210 201.33 217.42 11.64 21623 22.6220 219.53 217.42 12.18 21624 22.6230 214.05 217.43 11.95 21625 22.6240 211.03 217.43 11.87 21626 22.6250 222.88 217.43 12.26 21627 22.6260 224.84 217.43 12.32 21628 22.6270 216.85 217.44 12.09 21629 22.6280 204.50 217.44 11.74 21630 22.6290 216.86 217.45 12.10 21631 22.6300 208.47 217.45 11.79 21632 22.6310 197.13 217.46 11.48 21633 22.6320 202.36 217.46 11.63 21634 22.6330 211.28 217.47 11.93 21635 22.6340 220.90 217.47 12.17 21636 22.6350 210.74 217.48 11.91 21637 22.6360 212.03 217.48 11.96 21638 22.6370 193.61 217.49 11.38 21639 22.6380 208.33 217.50 11.88 21640 22.6390 208.83 217.50 11.83 21641 22.6400 213.18 217.51 11.98 21642 22.6410 210.97 217.52 11.91 21643 22.6420 205.19 217.53 11.76 21644 22.6430 226.49 217.54 12.37 21645 22.6440 216.79 217.54 12.10 21646 22.6450 212.44 217.55 12.00 21647 22.6460 221.69 217.56 12.21 21648 22.6470 210.49 217.57 11.93 21649 22.6480 208.50 217.58 11.83 21650 22.6490 175.00 217.59 10.84 21651 22.6500 199.67 217.60 11.60 21652 22.6510 206.80 217.61 11.80 21653 22.6520 206.83 217.62 11.78 21654 22.6530 224.84 217.63 12.29 21655 22.6540 213.73 217.64 11.97 21656 22.6550 181.91 217.66 11.05 21657 22.6560 198.92 217.67 11.54 21658 22.6570 202.81 217.68 11.68 21659 22.6580 214.86 217.69 12.02 21660 22.6590 214.41 217.71 12.00 21661 22.6600 205.79 217.72 11.78 21662 22.6610 218.70 217.74 12.13 21663 22.6620 206.37 217.75 11.79 21664 22.6630 218.08 217.76 12.15 21665 22.6640 211.02 217.78 11.87 21666 22.6650 194.62 217.79 11.44 21667 22.6660 196.07 217.81 11.44 21668 22.6670 204.67 217.83 11.72 21669 22.6680 187.22 217.84 11.19 21670 22.6690 204.41 217.86 11.74 21671 22.6700 200.07 217.88 11.61 21672 22.6710 208.65 217.90 11.83 21673 22.6720 220.84 217.92 12.22 21674 22.6730 217.35 217.93 12.07 21675 22.6740 217.69 217.95 12.08 21676 22.6750 207.82 217.97 11.88 21677 22.6760 207.93 217.99 11.86 21678 22.6770 210.02 218.02 11.91 21679 22.6780 228.40 218.04 12.42 21680 22.6790 195.94 218.06 11.54 21681 22.6800 212.78 218.08 11.96 21682 22.6810 224.51 218.10 12.32 21683 22.6820 224.70 218.13 12.30 21684 22.6830 198.18 218.15 11.54 21685 22.6840 203.67 218.18 11.66 21686 22.6850 202.95 218.20 11.65 21687 22.6860 203.03 218.23 11.75 21688 22.6870 196.63 218.26 11.55 21689 22.6880 226.14 218.28 12.39 21690 22.6890 211.88 218.31 11.99 21691 22.6900 215.38 218.34 12.00 21692 22.6910 216.38 218.37 12.06 21693 22.6920 208.78 218.40 11.85 21694 22.6930 222.23 218.43 12.21 21695 22.6940 217.06 218.46 12.08 21696 22.6950 197.36 218.50 11.53 21697 22.6960 195.50 218.53 11.50 21698 22.6970 195.41 218.56 11.47 21699 22.6980 211.46 218.60 11.94 21700 22.6990 221.70 218.64 12.25 21701 22.7000 215.71 218.67 12.06 21702 22.7010 203.48 218.71 11.66 21703 22.7020 185.50 218.75 11.15 21704 22.7030 220.17 218.79 12.16 21705 22.7040 202.00 218.83 11.68 21706 22.7050 190.12 218.87 11.31 21707 22.7060 193.46 218.92 11.42 21708 22.7070 217.19 218.96 12.09 21709 22.7080 217.46 219.01 12.12 21710 22.7090 213.43 219.05 12.00 21711 22.7100 219.97 219.10 12.12 21712 22.7110 227.05 219.15 12.36 21713 22.7120 203.18 219.20 11.66 21714 22.7130 217.56 219.26 12.12 21715 22.7140 217.75 219.31 12.13 21716 22.7150 218.80 219.36 12.13 21717 22.7160 213.47 219.42 12.00 21718 22.7170 207.80 219.48 11.81 21719 22.7180 198.95 219.54 11.58 21720 22.7190 212.27 219.60 11.95 21721 22.7200 208.36 219.66 11.87 21722 22.7210 218.90 219.73 12.13 21723 22.7220 204.08 219.80 11.70 21724 22.7230 204.67 219.87 11.75 21725 22.7240 215.95 219.94 12.04 21726 22.7250 209.77 220.01 11.92 21727 22.7260 212.65 220.09 11.97 21728 22.7270 217.04 220.17 12.04 21729 22.7280 200.08 220.25 11.56 21730 22.7290 217.31 220.33 12.09 21731 22.7300 202.73 220.42 11.71 21732 22.7310 210.99 220.51 11.93 21733 22.7320 211.77 220.60 11.95 21734 22.7330 208.20 220.69 11.80 21735 22.7340 195.43 220.79 11.48 21736 22.7350 208.39 220.89 11.84 21737 22.7360 210.65 220.99 11.95 21738 22.7370 199.39 221.10 11.54 21739 22.7380 199.02 221.21 11.56 21740 22.7390 216.76 221.33 12.10 21741 22.7400 220.49 221.45 12.21 21742 22.7410 224.47 221.57 12.32 21743 22.7420 210.41 221.70 11.84 21744 22.7430 196.66 221.83 11.51 21745 22.7440 204.05 221.97 11.74 21746 22.7450 190.63 222.11 11.35 21747 22.7460 210.25 222.26 11.91 21748 22.7470 218.75 222.41 12.15 21749 22.7480 214.25 222.57 11.99 21750 22.7490 226.44 222.74 12.37 21751 22.7500 222.46 222.91 12.23 21752 22.7510 196.87 223.09 11.49 21753 22.7520 215.18 223.27 12.05 21754 22.7530 219.45 223.46 12.08 21755 22.7540 224.93 223.66 12.27 21756 22.7550 221.04 223.87 12.18 21757 22.7560 215.42 224.09 12.09 21758 22.7570 224.00 224.32 12.34 21759 22.7580 215.76 224.55 12.07 21760 22.7590 209.94 224.80 11.91 21761 22.7600 234.12 225.06 12.55 21762 22.7610 216.92 225.33 12.07 21763 22.7620 219.63 225.61 12.19 21764 22.7630 223.61 225.90 12.29 21765 22.7640 227.17 226.21 12.34 21766 22.7650 243.64 226.53 12.78 21767 22.7660 229.81 226.87 12.43 21768 22.7670 227.38 227.23 12.36 21769 22.7680 223.30 227.60 12.25 21770 22.7690 222.18 227.99 12.25 21771 22.7700 220.31 228.40 12.16 21772 22.7710 222.79 228.83 12.28 21773 22.7720 224.10 229.28 12.30 21774 22.7730 233.12 229.76 12.53 21775 22.7740 228.88 230.27 12.36 21776 22.7750 233.65 230.80 12.53 21777 22.7760 231.84 231.36 12.44 21778 22.7770 231.07 231.95 12.46 21779 22.7780 217.00 232.58 12.09 21780 22.7790 217.59 233.24 12.07 21781 22.7800 224.83 233.95 12.26 21782 22.7810 226.39 234.70 12.32 21783 22.7820 221.27 235.49 12.21 21784 22.7830 227.73 236.33 12.40 21785 22.7840 223.16 237.23 12.27 21786 22.7850 232.04 238.19 12.51 21787 22.7860 243.48 239.21 12.82 21788 22.7870 242.87 240.29 12.78 21789 22.7880 233.14 241.46 12.55 21790 22.7890 238.96 242.70 12.67 21791 22.7900 218.69 244.04 12.17 21792 22.7910 245.95 245.47 12.90 21793 22.7920 226.62 247.01 12.42 21794 22.7930 231.87 248.66 12.50 21795 22.7940 246.35 250.45 12.88 21796 22.7950 233.09 252.37 12.50 21797 22.7960 244.02 254.44 12.82 21798 22.7970 253.21 256.69 13.05 21799 22.7980 240.09 259.11 12.78 21800 22.7990 253.12 261.74 13.07 21801 22.8000 252.66 264.60 13.06 21802 22.8010 244.35 267.71 12.83 21803 22.8020 263.60 271.09 13.33 21804 22.8030 273.69 274.77 13.57 21805 22.8040 283.19 278.77 13.79 21806 22.8050 270.76 283.14 13.53 21807 22.8060 294.51 288.49 14.06 21808 22.8070 281.09 293.68 13.77 21809 22.8080 276.46 299.35 13.65 21810 22.8090 292.25 305.50 14.04 21811 22.8100 308.31 312.18 14.39 21812 22.8110 312.26 319.45 14.53 21813 22.8120 307.80 327.26 14.42 21814 22.8130 328.00 335.65 14.85 21815 22.8140 327.71 344.60 14.82 21816 22.8150 346.91 354.06 15.26 21817 22.8160 355.31 363.92 15.46 21818 22.8170 377.64 374.07 15.96 21819 22.8180 410.83 384.31 16.63 21820 22.8190 381.46 394.37 15.95 21821 22.8200 415.88 403.95 16.74 21822 22.8210 446.09 412.68 17.37 21823 22.8220 439.09 420.19 17.22 21824 22.8230 445.34 426.08 17.30 21825 22.8240 455.02 430.02 17.48 21826 22.8250 443.11 431.77 17.30 21827 22.8260 466.70 431.24 17.76 21828 22.8270 442.28 428.45 17.23 21829 22.8280 425.76 423.57 16.92 21830 22.8290 399.93 416.88 16.42 21831 22.8300 389.45 408.76 16.17 21832 22.8310 411.59 399.60 16.68 21833 22.8320 386.07 389.74 16.14 21834 22.8330 378.73 379.58 15.92 21835 22.8340 399.28 369.36 16.46 21836 22.8350 370.32 359.34 15.85 21837 22.8360 338.19 349.58 15.10 21838 22.8370 331.35 340.36 14.91 21839 22.8380 319.14 331.68 14.64 21840 22.8390 307.60 323.56 14.34 21841 22.8400 307.88 316.01 14.38 21842 22.8410 295.39 309.05 14.09 21843 22.8420 298.07 302.62 14.18 21844 22.8430 274.10 296.70 13.57 21845 22.8440 283.58 291.27 13.82 21846 22.8450 283.63 286.30 13.83 21847 22.8460 268.34 281.72 13.48 21848 22.8470 274.46 277.53 13.56 21849 22.8480 250.23 273.69 12.95 21850 22.8490 256.59 270.15 13.15 21851 22.8500 249.31 266.92 12.98 21852 22.8510 240.60 263.94 12.74 21853 22.8520 249.14 261.19 12.92 21854 22.8530 254.35 258.66 13.12 21855 22.8540 237.23 256.33 12.62 21856 22.8550 234.16 254.46 12.58 21857 22.8560 243.05 252.46 12.77 21858 22.8570 244.00 250.61 12.85 21859 22.8580 238.78 248.90 12.68 21860 22.8590 246.29 247.31 12.86 21861 22.8600 225.55 245.83 12.34 21862 22.8610 226.37 244.45 12.37 21863 22.8620 218.66 243.17 12.06 21864 22.8630 215.70 241.97 12.08 21865 22.8640 235.12 240.85 12.59 21866 22.8650 226.32 239.80 12.41 21867 22.8660 238.64 238.82 12.61 21868 22.8670 227.47 237.90 12.37 21869 22.8680 232.50 237.04 12.49 21870 22.8690 225.09 236.23 12.27 21871 22.8700 233.39 235.46 12.53 21872 22.8710 224.07 234.74 12.29 21873 22.8720 224.78 234.07 12.29 21874 22.8730 231.63 233.43 12.47 21875 22.8740 214.16 232.83 11.98 21876 22.8750 220.45 232.26 12.20 21877 22.8760 235.21 231.72 12.58 21878 22.8770 243.71 231.21 12.78 21879 22.8780 238.99 230.73 12.65 21880 22.8790 222.95 230.27 12.23 21881 22.8800 231.37 229.84 12.54 21882 22.8810 217.76 229.43 12.05 21883 22.8820 229.40 229.03 12.40 21884 22.8830 228.98 228.66 12.43 21885 22.8840 231.56 228.31 12.50 21886 22.8850 211.99 227.97 11.90 21887 22.8860 212.96 227.65 12.05 21888 22.8870 211.61 227.35 11.92 21889 22.8880 203.64 227.06 11.73 21890 22.8890 224.00 226.78 12.27 21891 22.8900 219.27 226.52 12.18 21892 22.8910 233.88 226.26 12.55 21893 22.8920 240.25 226.02 12.71 21894 22.8930 219.49 225.79 12.14 21895 22.8940 222.00 225.57 12.21 21896 22.8950 214.32 225.36 11.98 21897 22.8960 207.66 225.16 11.77 21898 22.8970 209.69 224.97 11.89 21899 22.8980 215.08 224.78 12.02 21900 22.8990 204.93 224.61 11.73 21901 22.9000 194.49 224.44 11.41 21902 22.9010 207.08 224.28 11.72 21903 22.9020 214.71 224.12 11.99 21904 22.9030 210.58 223.97 11.93 21905 22.9040 222.14 223.83 12.24 21906 22.9050 221.85 223.70 12.26 21907 22.9060 210.43 223.56 11.92 21908 22.9070 216.00 223.44 12.04 21909 22.9080 217.73 223.32 12.12 21910 22.9090 201.62 223.20 11.64 21911 22.9100 217.13 223.09 12.06 21912 22.9110 204.63 222.99 11.75 21913 22.9120 213.16 222.88 11.95 21914 22.9130 217.40 222.79 12.12 21915 22.9140 209.96 222.69 11.87 21916 22.9150 196.83 222.60 11.50 21917 22.9160 206.87 222.52 11.77 21918 22.9170 220.69 222.44 12.13 21919 22.9180 195.60 222.36 11.47 21920 22.9190 224.98 222.28 12.31 21921 22.9200 223.25 222.21 12.28 21922 22.9210 217.96 222.14 12.16 21923 22.9220 209.10 222.07 11.91 21924 22.9230 220.48 222.01 12.22 21925 22.9240 214.50 221.95 12.00 21926 22.9250 247.07 221.89 12.93 21927 22.9260 232.99 221.84 12.47 21928 22.9270 206.69 221.79 11.78 21929 22.9280 200.42 221.74 11.65 21930 22.9290 217.47 221.69 12.10 21931 22.9300 214.85 221.64 12.03 21932 22.9310 209.02 221.60 11.84 21933 22.9320 216.29 221.56 12.04 21934 22.9330 215.13 221.52 12.06 21935 22.9340 224.56 221.49 12.32 21936 22.9350 210.01 221.45 11.96 21937 22.9360 216.40 221.42 12.07 21938 22.9370 226.70 221.39 12.36 21939 22.9380 212.65 221.36 11.97 21940 22.9390 193.64 221.33 11.40 21941 22.9400 204.08 221.31 11.70 21942 22.9410 211.66 221.29 11.96 21943 22.9420 199.05 221.26 11.63 21944 22.9430 208.71 221.24 11.95 21945 22.9440 207.03 221.23 11.82 21946 22.9450 202.60 221.21 11.69 21947 22.9460 196.27 221.20 11.51 21948 22.9470 205.73 221.18 11.78 21949 22.9480 215.35 221.17 12.03 21950 22.9490 200.75 221.16 11.60 21951 22.9500 196.25 221.16 11.45 21952 22.9510 220.76 221.15 12.15 21953 22.9520 210.26 221.15 11.91 21954 22.9530 231.20 221.14 12.47 21955 22.9540 198.36 221.14 11.51 21956 22.9550 202.80 221.14 11.68 21957 22.9560 201.14 221.15 11.61 21958 22.9570 193.41 221.15 11.41 21959 22.9580 211.17 221.15 11.91 21960 22.9590 248.06 221.16 12.99 21961 22.9600 227.52 221.17 12.45 21962 22.9610 212.73 221.18 11.98 21963 22.9620 204.25 221.19 11.75 21964 22.9630 207.02 221.20 11.77 21965 22.9640 206.70 221.21 11.79 21966 22.9650 208.75 221.23 11.86 21967 22.9660 230.11 221.25 12.46 21968 22.9670 228.33 221.27 12.38 21969 22.9680 203.77 221.29 11.70 21970 22.9690 218.21 221.31 12.15 21971 22.9700 215.14 221.33 12.01 21972 22.9710 222.62 221.36 12.25 21973 22.9720 218.85 221.38 12.08 21974 22.9730 211.63 221.41 11.91 21975 22.9740 229.26 221.44 12.44 21976 22.9750 212.32 221.48 11.95 21977 22.9760 207.36 221.51 11.86 21978 22.9770 220.33 221.54 12.17 21979 22.9780 214.15 221.58 12.06 21980 22.9790 206.02 221.62 11.77 21981 22.9800 212.29 221.66 11.97 21982 22.9810 218.55 221.71 12.13 21983 22.9820 201.50 221.75 11.66 21984 22.9830 201.94 221.80 11.74 21985 22.9840 210.27 221.85 11.93 21986 22.9850 196.36 221.90 11.54 21987 22.9860 200.92 221.95 11.70 21988 22.9870 203.40 222.00 11.66 21989 22.9880 229.26 222.06 12.43 21990 22.9890 229.38 222.12 12.43 21991 22.9900 220.66 222.18 12.15 21992 22.9910 198.14 222.25 11.56 21993 22.9920 207.57 222.31 11.83 21994 22.9930 215.27 222.38 12.00 21995 22.9940 220.64 222.45 12.17 21996 22.9950 209.21 222.53 11.86 21997 22.9960 213.33 222.61 11.92 21998 22.9970 215.91 222.69 12.09 21999 22.9980 232.48 222.77 12.50 22000 22.9990 212.29 222.85 11.94 22001 23.0000 214.21 222.94 12.00 22002 23.0010 202.36 223.04 11.65 22003 23.0020 213.19 223.13 11.99 22004 23.0030 214.05 223.23 12.00 22005 23.0040 202.03 223.33 11.65 22006 23.0050 207.56 223.44 11.81 22007 23.0060 213.48 223.55 12.03 22008 23.0070 209.98 223.66 11.87 22009 23.0080 227.52 226.26 12.42 22010 23.0090 211.60 226.40 11.92 22011 23.0100 224.33 226.54 12.31 22012 23.0110 209.68 226.69 11.88 22013 23.0120 195.60 226.84 11.52 22014 23.0130 226.33 227.00 12.34 22015 23.0140 229.31 227.16 12.42 22016 23.0150 215.08 227.33 12.02 22017 23.0160 204.87 227.51 11.72 22018 23.0170 228.25 227.69 12.33 22019 23.0180 213.08 227.88 11.97 22020 23.0190 218.12 228.07 12.10 22021 23.0200 216.95 228.27 12.03 22022 23.0210 220.81 228.48 12.16 22023 23.0220 209.43 228.69 11.86 22024 23.0230 205.88 228.92 11.83 22025 23.0240 207.09 229.15 11.81 22026 23.0250 204.79 229.39 11.71 22027 23.0260 217.56 229.63 12.07 22028 23.0270 225.85 229.89 12.37 22029 23.0280 212.50 230.16 11.96 22030 23.0290 215.16 230.44 12.06 22031 23.0300 235.26 230.73 12.56 22032 23.0310 217.76 231.03 12.11 22033 23.0320 238.36 231.34 12.67 22034 23.0330 225.65 231.67 12.25 22035 23.0340 228.08 232.01 12.35 22036 23.0350 223.30 232.36 12.25 22037 23.0360 228.55 232.73 12.41 22038 23.0370 217.66 233.12 12.15 22039 23.0380 246.37 233.52 12.86 22040 23.0390 231.52 233.94 12.50 22041 23.0400 223.29 234.38 12.27 22042 23.0410 214.16 234.83 12.02 22043 23.0420 221.33 235.31 12.21 22044 23.0430 237.71 235.81 12.68 22045 23.0440 237.75 236.34 12.63 22046 23.0450 232.38 236.89 12.48 22047 23.0460 231.37 237.47 12.47 22048 23.0470 217.04 238.08 12.07 22049 23.0480 212.95 238.72 11.94 22050 23.0490 235.91 239.39 12.60 22051 23.0500 225.07 240.10 12.31 22052 23.0510 245.28 240.84 12.91 22053 23.0520 228.01 241.63 12.41 22054 23.0530 225.29 242.46 12.36 22055 23.0540 227.37 243.34 12.38 22056 23.0550 229.84 245.79 12.42 22057 23.0560 233.21 246.79 12.46 22058 23.0570 235.52 247.84 12.57 22059 23.0580 250.10 248.95 12.99 22060 23.0590 233.72 250.14 12.54 22061 23.0600 253.66 251.40 13.08 22062 23.0610 248.77 252.74 13.01 22063 23.0620 236.18 254.17 12.64 22064 23.0630 248.86 255.70 12.97 22065 23.0640 243.42 257.33 12.81 22066 23.0650 267.44 259.08 13.39 22067 23.0660 251.19 260.95 13.01 22068 23.0670 231.76 262.96 12.51 22069 23.0680 256.26 265.13 13.15 22070 23.0690 263.00 267.46 13.30 22071 23.0700 249.24 269.97 12.95 22072 23.0710 249.23 272.69 12.92 22073 23.0720 246.32 275.63 12.92 22074 23.0730 283.91 278.82 13.82 22075 23.0740 255.83 282.27 13.13 22076 23.0750 273.68 286.04 13.57 22077 23.0760 269.93 290.14 13.50 22078 23.0770 274.79 294.61 13.60 22079 23.0780 269.84 299.50 13.48 22080 23.0790 251.48 304.86 13.01 22081 23.0800 274.53 310.72 13.54 22082 23.0810 273.34 317.15 13.55 22083 23.0820 296.54 324.24 14.14 22084 23.0830 307.83 332.00 14.42 22085 23.0840 307.41 340.54 14.42 22086 23.0850 340.07 349.93 15.13 22087 23.0860 324.85 360.24 14.79 22088 23.0870 343.52 371.52 15.21 22089 23.0880 371.29 383.86 15.76 22090 23.0890 359.84 397.27 15.54 22091 23.0900 378.75 411.74 15.99 22092 23.0910 419.91 427.27 16.86 22093 23.0920 417.34 443.66 16.81 22094 23.0930 439.70 460.81 17.23 22095 23.0940 445.31 478.24 17.30 22096 23.0950 469.71 495.54 17.75 22097 23.0960 494.30 512.17 18.24 22098 23.0970 530.01 527.27 18.84 22099 23.0980 536.96 540.10 18.99 22100 23.0990 508.80 549.92 18.50 22101 23.1000 549.18 556.01 19.26 22102 23.1010 537.58 557.96 19.07 22103 23.1020 545.48 555.67 19.20 22104 23.1030 507.19 549.32 18.47 22105 23.1040 502.66 539.44 18.40 22106 23.1050 505.45 526.70 18.48 22107 23.1060 486.42 511.91 18.15 22108 23.1070 455.12 495.89 17.49 22109 23.1080 446.90 479.29 17.34 22110 23.1090 403.09 462.74 16.48 22111 23.1100 428.41 446.63 16.96 22112 23.1110 406.35 431.29 16.53 22113 23.1120 395.31 416.91 16.34 22114 23.1130 398.36 403.56 16.40 22115 23.1140 344.14 391.28 15.22 22116 23.1150 359.00 380.07 15.57 22117 23.1160 359.67 369.85 15.58 22118 23.1170 326.00 360.52 14.85 22119 23.1180 342.26 352.06 15.17 22120 23.1190 326.05 344.35 14.83 22121 23.1200 296.09 337.30 14.10 22122 23.1210 313.23 330.88 14.52 22123 23.1220 315.89 324.99 14.54 22124 23.1230 291.84 319.60 14.00 22125 23.1240 299.32 314.65 14.14 22126 23.1250 306.80 310.12 14.37 22127 23.1260 280.89 305.98 13.77 22128 23.1270 307.63 302.19 14.44 22129 23.1280 290.56 298.74 14.03 22130 23.1290 260.76 295.61 13.21 22131 23.1300 270.81 292.78 13.49 22132 23.1310 279.66 290.22 13.73 22133 23.1320 277.62 287.92 13.68 22134 23.1330 282.22 285.88 13.80 22135 23.1340 273.15 284.06 13.57 22136 23.1350 260.31 282.47 13.23 22137 23.1360 272.44 281.08 13.54 22138 23.1370 261.14 279.89 13.24 22139 23.1380 259.63 278.89 13.23 22140 23.1390 254.67 278.07 13.10 22141 23.1400 249.89 277.42 12.97 22142 23.1410 252.45 276.95 13.00 22143 23.1420 250.38 276.64 12.98 22144 23.1430 253.83 276.49 13.05 22145 23.1440 263.90 276.51 13.25 22146 23.1450 263.70 276.69 13.28 22147 23.1460 249.76 277.04 12.95 22148 23.1470 249.98 277.56 13.05 22149 23.1480 253.86 278.26 13.10 22150 23.1490 249.85 279.14 12.96 22151 23.1500 247.65 280.20 12.90 22152 23.1510 291.92 281.47 13.99 22153 23.1520 275.75 282.95 13.60 22154 23.1530 258.77 284.29 13.24 22155 23.1540 281.64 286.24 13.82 22156 23.1550 266.66 288.45 13.41 22157 23.1560 288.13 290.94 13.91 22158 23.1570 282.55 293.74 13.79 22159 23.1580 299.30 296.87 14.16 22160 23.1590 300.12 300.34 14.22 22161 23.1600 298.85 304.20 14.14 22162 23.1610 291.44 308.45 13.96 22163 23.1620 291.80 313.15 14.01 22164 23.1630 286.27 318.30 13.90 22165 23.1640 314.85 323.92 14.55 22166 23.1650 337.26 330.04 15.08 22167 23.1660 324.57 336.62 14.76 22168 23.1670 332.86 343.64 15.01 22169 23.1680 368.40 351.06 15.78 22170 23.1690 348.72 358.82 15.33 22171 23.1700 342.13 366.73 15.19 22172 23.1710 355.31 374.65 15.46 22173 23.1720 367.45 382.34 15.73 22174 23.1730 379.12 389.51 16.02 22175 23.1740 390.35 395.88 16.24 22176 23.1750 388.10 401.11 16.15 22177 23.1760 403.97 404.92 16.50 22178 23.1770 416.05 407.08 16.76 22179 23.1780 405.36 407.43 16.54 22180 23.1790 413.26 405.97 16.69 22181 23.1800 400.63 402.78 16.40 22182 23.1810 408.51 398.07 16.61 22183 23.1820 391.19 392.11 16.26 22184 23.1830 402.58 385.17 16.48 22185 23.1840 365.90 377.63 15.71 22186 23.1850 378.79 369.74 15.97 22187 23.1860 369.52 361.74 15.76 22188 23.1870 346.82 353.87 15.29 22189 23.1880 325.92 346.26 14.85 22190 23.1890 330.02 338.99 14.92 22191 23.1900 304.10 332.15 14.27 22192 23.1910 333.02 325.76 14.99 22193 23.1920 315.23 319.86 14.60 22194 23.1930 304.60 314.42 14.32 22195 23.1940 303.45 309.43 14.32 22196 23.1950 294.99 304.87 14.09 22197 23.1960 297.70 300.72 14.18 22198 23.1970 290.78 296.93 14.01 22199 23.1980 283.74 293.49 13.86 22200 23.1990 283.33 290.38 13.82 22201 23.2000 304.87 287.54 14.32 22202 23.2010 300.93 284.98 14.24 22203 23.2020 296.83 282.67 14.12 22204 23.2030 279.39 280.57 13.67 22205 23.2040 283.50 278.68 13.81 22206 23.2050 274.97 276.97 13.60 22207 23.2060 268.29 275.43 13.42 22208 23.2070 259.50 274.05 13.22 22209 23.2080 256.40 272.80 13.13 22210 23.2090 279.21 271.69 13.73 22211 23.2100 286.80 270.70 13.88 22212 23.2110 265.95 269.83 13.42 22213 23.2120 270.78 269.05 13.51 22214 23.2130 257.71 268.37 13.18 22215 23.2140 279.46 267.78 13.76 22216 23.2150 262.89 267.28 13.34 22217 23.2160 265.28 266.85 13.39 22218 23.2170 262.94 266.50 13.29 22219 23.2180 257.40 266.22 13.18 22220 23.2190 282.98 266.00 13.76 22221 23.2200 277.48 265.85 13.66 22222 23.2210 250.63 265.76 13.04 22223 23.2220 264.09 265.72 13.32 22224 23.2230 268.12 265.74 13.45 22225 23.2240 258.36 265.82 13.24 22226 23.2250 248.74 265.95 12.94 22227 23.2260 266.98 266.12 13.44 22228 23.2270 267.22 266.35 13.42 22229 23.2280 266.87 266.63 13.44 22230 23.2290 265.65 266.96 13.47 22231 23.2300 258.88 267.33 13.18 22232 23.2310 255.53 267.75 13.11 22233 23.2320 274.55 268.22 13.56 22234 23.2330 271.12 268.74 13.50 22235 23.2340 272.21 269.31 13.52 22236 23.2350 261.70 269.92 13.27 22237 23.2360 284.90 270.59 13.83 22238 23.2370 274.94 271.30 13.58 22239 23.2380 281.01 272.07 13.70 22240 23.2390 291.43 272.88 13.99 22241 23.2400 280.71 273.75 13.75 22242 23.2410 287.50 274.68 13.94 22243 23.2420 251.37 275.66 13.01 22244 23.2430 258.03 276.70 13.14 22245 23.2440 288.28 277.80 13.94 22246 23.2450 298.57 278.97 14.27 22247 23.2460 292.43 280.20 14.05 22248 23.2470 265.54 281.49 13.35 22249 23.2480 276.24 282.86 13.61 22250 23.2490 295.01 284.31 14.12 22251 23.2500 279.37 285.83 13.72 22252 23.2510 266.32 287.43 13.38 22253 23.2520 293.05 289.12 14.05 22254 23.2530 301.85 290.89 14.30 22255 23.2540 293.50 292.77 14.06 22256 23.2550 294.32 294.74 14.09 22257 23.2560 298.58 296.82 14.15 22258 23.2570 296.03 299.02 14.11 22259 23.2580 325.77 301.33 14.78 22260 23.2590 308.33 303.77 14.41 22261 23.2600 303.17 306.35 14.29 22262 23.2610 304.11 309.07 14.29 22263 23.2620 322.83 311.93 14.72 22264 23.2630 306.52 314.98 14.36 22265 23.2640 314.23 318.19 14.53 22266 23.2650 322.15 321.58 14.70 22267 23.2660 324.08 325.19 14.78 22268 23.2670 331.57 329.00 14.92 22269 23.2680 340.06 333.05 15.10 22270 23.2690 353.45 337.35 15.44 22271 23.2700 357.58 341.92 15.58 22272 23.2710 352.53 346.78 15.36 22273 23.2720 352.70 351.96 15.43 22274 23.2730 375.24 357.48 15.92 22275 23.2740 366.97 363.36 15.70 22276 23.2750 375.12 369.65 15.91 22277 23.2760 388.29 376.37 16.20 22278 23.2770 379.85 383.57 16.02 22279 23.2780 368.28 391.30 15.76 22280 23.2790 396.09 399.58 16.32 22281 23.2800 361.07 408.49 15.62 22282 23.2810 372.37 418.09 15.83 22283 23.2820 430.21 428.41 17.00 22284 23.2830 430.28 439.60 17.00 22285 23.2840 420.39 451.65 16.83 22286 23.2850 466.46 464.69 17.71 22287 23.2860 485.73 478.83 18.07 22288 23.2870 512.89 494.24 18.55 22289 23.2880 491.30 510.93 18.22 22290 23.2890 499.27 529.14 18.33 22291 23.2900 499.47 549.00 18.30 22292 23.2910 565.32 570.65 19.49 22293 23.2920 540.79 594.36 19.05 22294 23.2930 587.83 620.26 19.88 22295 23.2940 607.02 648.67 20.17 22296 23.2950 616.01 679.81 20.36 22297 23.2960 665.17 713.90 21.15 22298 23.2970 688.30 751.32 21.54 22299 23.2980 732.08 792.31 22.19 22300 23.2990 771.08 837.06 22.80 22301 23.3000 809.39 885.89 23.33 22302 23.3010 855.46 939.15 23.99 22303 23.3020 907.04 996.59 24.71 22304 23.3030 995.00 1058.29 25.86 22305 23.3040 1086.30 1124.20 27.05 22306 23.3050 1147.10 1193.28 27.79 22307 23.3060 1186.34 1264.76 28.22 22308 23.3070 1288.23 1337.33 29.45 22309 23.3080 1396.47 1408.90 30.70 22310 23.3090 1457.23 1476.97 31.34 22311 23.3100 1495.08 1538.54 31.72 22312 23.3110 1609.67 1590.69 32.92 22313 23.3120 1582.27 1630.28 32.65 22314 23.3130 1617.75 1654.72 33.02 22315 23.3140 1624.19 1662.44 33.12 22316 23.3150 1591.16 1652.84 32.75 22317 23.3160 1551.65 1626.72 32.33 22318 23.3170 1514.14 1585.89 31.96 22319 23.3180 1455.31 1532.79 31.35 22320 23.3190 1340.37 1470.85 30.11 22321 23.3200 1279.49 1403.01 29.41 22322 23.3210 1204.95 1332.00 28.55 22323 23.3220 1176.44 1260.33 28.16 22324 23.3230 1088.02 1190.01 27.12 22325 23.3240 1060.43 1122.18 26.75 22326 23.3250 970.90 1057.88 25.63 22327 23.3260 940.10 997.74 25.20 22328 23.3270 857.02 941.82 24.04 22329 23.3280 818.57 890.34 23.50 22330 23.3290 769.58 843.04 22.79 22331 23.3300 733.02 799.81 22.20 22332 23.3310 674.11 760.47 21.29 22333 23.3320 675.81 724.54 21.36 22334 23.3330 669.36 691.99 21.25 22335 23.3340 612.54 662.41 20.35 22336 23.3350 600.60 635.55 20.14 22337 23.3360 597.22 611.06 20.12 22338 23.3370 582.62 588.89 19.80 22339 23.3380 557.79 568.70 19.42 22340 23.3390 530.28 550.34 18.91 22341 23.3400 508.71 533.68 18.53 22342 23.3410 513.70 518.49 18.57 22343 23.3420 506.96 504.69 18.48 22344 23.3430 514.77 492.12 18.66 22345 23.3440 474.77 480.68 17.96 22346 23.3450 476.65 470.29 17.94 22347 23.3460 447.23 460.84 17.33 22348 23.3470 451.46 452.26 17.44 22349 23.3480 457.35 444.49 17.54 22350 23.3490 453.49 437.46 17.50 22351 23.3500 431.23 431.12 17.06 22352 23.3510 422.02 425.43 16.85 22353 23.3520 403.18 420.33 16.46 22354 23.3530 433.60 415.79 17.10 22355 23.3540 415.91 413.59 16.80 22356 23.3550 409.66 410.11 16.61 22357 23.3560 439.15 407.10 17.19 22358 23.3570 419.90 404.56 16.81 22359 23.3580 409.40 402.47 16.60 22360 23.3590 404.17 400.81 16.51 22361 23.3600 422.58 399.57 16.89 22362 23.3610 383.80 398.74 16.07 22363 23.3620 381.12 398.33 15.99 22364 23.3630 389.77 398.33 16.19 22365 23.3640 379.27 398.73 15.99 22366 23.3650 418.97 399.55 16.74 22367 23.3660 385.77 400.79 16.11 22368 23.3670 405.88 402.46 16.56 22369 23.3680 407.43 404.58 16.56 22370 23.3690 419.23 407.14 16.78 22371 23.3700 419.46 410.20 16.79 22372 23.3710 414.91 413.74 16.75 22373 23.3720 396.63 417.80 16.33 22374 23.3730 436.09 422.42 17.14 22375 23.3740 453.08 427.64 17.49 22376 23.3750 468.72 433.46 17.84 22377 23.3760 439.17 439.97 17.18 22378 23.3770 448.37 447.20 17.40 22379 23.3780 456.14 455.18 17.54 22380 23.3790 471.39 464.01 17.86 22381 23.3800 456.83 473.72 17.55 22382 23.3810 467.12 484.44 17.75 22383 23.3820 522.75 496.18 18.80 22384 23.3830 512.41 509.06 18.57 22385 23.3840 496.77 523.23 18.33 22386 23.3850 558.35 538.69 19.40 22387 23.3860 562.59 555.66 19.49 22388 23.3870 531.88 574.16 18.88 22389 23.3880 557.40 594.33 19.40 22390 23.3890 603.40 616.26 20.20 22391 23.3900 614.50 640.13 20.34 22392 23.3910 640.68 665.99 20.72 22393 23.3920 674.91 693.85 21.31 22394 23.3930 708.96 723.84 21.84 22395 23.3940 740.52 755.84 22.30 22396 23.3950 813.48 789.84 23.42 22397 23.3960 825.03 825.59 23.65 22398 23.3970 870.12 862.12 24.23 22399 23.3980 929.70 900.21 25.04 22400 23.3990 980.89 938.56 25.67 22401 23.4000 1030.20 976.24 26.33 22402 23.4010 1057.73 1012.30 26.75 22403 23.4020 1098.82 1045.65 27.22 22404 23.4030 1162.58 1074.77 28.01 22405 23.4040 1182.60 1098.52 28.23 22406 23.4050 1196.86 1115.79 28.46 22407 23.4060 1123.26 1125.54 27.57 22408 23.4070 1135.77 1127.28 27.68 22409 23.4080 1133.58 1120.88 27.64 22410 23.4090 1141.33 1106.66 27.78 22411 23.4100 1078.94 1085.32 27.03 22412 23.4110 1040.35 1057.96 26.51 22413 23.4120 965.11 1025.71 25.53 22414 23.4130 909.67 989.90 24.82 22415 23.4140 902.62 951.87 24.70 22416 23.4150 903.12 912.59 24.67 22417 23.4160 832.60 873.11 23.67 22418 23.4170 790.98 834.26 23.10 22419 23.4180 766.47 796.54 22.80 22420 23.4190 722.99 760.26 22.10 22421 23.4200 742.62 725.92 22.35 22422 23.4210 680.82 693.57 21.39 22423 23.4220 640.43 663.17 20.77 22424 23.4230 625.10 634.92 20.57 22425 23.4240 618.02 608.67 20.38 22426 23.4250 603.34 584.29 20.14 22427 23.4260 557.46 561.73 19.42 22428 23.4270 552.47 540.92 19.28 22429 23.4280 527.70 521.67 18.91 22430 23.4290 525.70 503.89 18.85 22431 23.4300 496.64 487.46 18.37 22432 23.4310 472.29 472.32 17.82 22433 23.4320 459.10 458.32 17.58 22434 23.4330 439.02 445.32 17.19 22435 23.4340 411.08 433.33 16.63 22436 23.4350 429.81 422.22 17.03 22437 23.4360 404.35 411.88 16.50 22438 23.4370 389.34 402.31 16.22 22439 23.4380 370.33 393.41 15.82 22440 23.4390 370.66 385.11 15.76 22441 23.4400 357.58 377.39 15.49 22442 23.4410 350.23 370.19 15.39 22443 23.4420 387.99 363.45 16.25 22444 23.4430 357.06 357.15 15.49 22445 23.4440 363.11 351.27 15.64 22446 23.4450 343.15 345.74 15.22 22447 23.4460 327.96 340.57 14.82 22448 23.4470 338.87 335.70 15.11 22449 23.4480 332.30 331.13 14.94 22450 23.4490 328.79 326.83 14.88 22451 23.4500 322.18 322.76 14.73 22452 23.4510 316.88 318.94 14.66 22453 23.4520 312.20 315.33 14.55 22454 23.4530 316.67 311.92 14.58 22455 23.4540 305.97 308.68 14.38 22456 23.4550 283.06 305.63 13.80 22457 23.4560 306.05 302.72 14.32 22458 23.4570 286.34 299.97 13.90 22459 23.4580 309.33 297.37 14.43 22460 23.4590 291.72 294.89 14.04 22461 23.4600 293.04 292.54 14.05 22462 23.4610 283.44 290.30 13.85 22463 23.4620 278.06 288.16 13.69 22464 23.4630 285.51 286.13 13.86 22465 23.4640 277.23 284.20 13.71 22466 23.4650 285.13 282.35 13.90 22467 23.4660 305.43 280.58 14.39 22468 23.4670 294.12 278.90 14.07 22469 23.4680 275.90 277.28 13.62 22470 23.4690 290.22 275.74 14.00 22471 23.4700 266.54 274.27 13.43 22472 23.4710 270.11 272.85 13.49 22473 23.4720 271.37 271.50 13.53 22474 23.4730 261.37 270.20 13.27 22475 23.4740 262.97 268.96 13.29 22476 23.4750 270.26 267.76 13.46 22477 23.4760 255.88 266.62 13.15 22478 23.4770 267.92 265.52 13.43 22479 23.4780 263.25 264.46 13.31 22480 23.4790 267.03 263.44 13.43 22481 23.4800 261.06 262.46 13.24 22482 23.4810 269.64 261.52 13.47 22483 23.4820 274.82 260.61 13.61 22484 23.4830 289.04 259.74 13.98 22485 23.4840 245.17 258.90 12.90 22486 23.4850 262.14 258.09 13.33 22487 23.4860 262.61 257.30 13.31 22488 23.4870 273.87 256.55 13.58 22489 23.4880 260.51 255.82 13.27 22490 23.4890 251.54 255.12 13.02 22491 23.4900 230.07 254.45 12.50 22492 23.4910 257.18 253.79 13.16 22493 23.4920 260.26 253.16 13.26 22494 23.4930 266.52 252.55 13.38 22495 23.4940 262.59 251.96 13.31 22496 23.4950 248.73 251.40 12.94 22497 23.4960 249.77 250.85 12.96 22498 23.4970 233.66 250.31 12.52 22499 23.4980 248.62 249.80 12.96 22500 23.4990 235.15 249.30 12.65 22501 23.5000 238.90 248.82 12.69 22502 23.5010 260.51 248.07 13.27 22503 23.5020 253.24 247.62 13.07 22504 23.5030 259.21 247.19 13.25 22505 23.5040 256.65 246.77 13.14 22506 23.5050 279.36 246.36 13.67 22507 23.5060 235.16 245.97 12.54 22508 23.5070 234.73 245.59 12.53 22509 23.5080 239.31 245.22 12.72 22510 23.5090 267.77 244.86 13.46 22511 23.5100 253.96 244.52 13.07 22512 23.5110 261.77 244.18 13.25 22513 23.5120 243.08 243.86 12.77 22514 23.5130 244.16 243.55 12.79 22515 23.5140 258.03 243.25 13.23 22516 23.5150 258.40 242.96 13.19 22517 23.5160 235.61 242.67 12.54 22518 23.5170 244.65 242.40 12.80 22519 23.5180 262.09 242.13 13.31 22520 23.5190 244.66 241.88 12.81 22521 23.5200 237.63 241.63 12.63 22522 23.5210 236.12 241.39 12.62 22523 23.5220 225.35 241.16 12.31 22524 23.5230 238.65 240.93 12.61 22525 23.5240 245.24 240.72 12.82 22526 23.5250 213.91 240.51 12.00 22527 23.5260 232.55 240.31 12.49 22528 23.5270 242.50 240.12 12.80 22529 23.5280 238.61 239.93 12.68 22530 23.5290 234.29 239.75 12.59 22531 23.5300 232.35 239.57 12.55 22532 23.5310 231.64 239.41 12.53 22533 23.5320 228.36 239.25 12.42 22534 23.5330 228.77 239.09 12.43 22535 23.5340 221.98 238.94 12.22 22536 23.5350 239.92 238.80 12.69 22537 23.5360 233.03 238.67 12.55 22538 23.5370 235.28 238.54 12.63 22539 23.5380 255.54 238.41 13.16 22540 23.5390 229.07 238.29 12.42 22541 23.5400 230.37 238.18 12.49 22542 23.5410 232.08 238.07 12.54 22543 23.5420 240.53 237.97 12.74 22544 23.5430 255.39 237.87 13.10 22545 23.5440 225.07 237.78 12.34 22546 23.5450 227.51 237.69 12.45 22547 23.5460 233.07 237.61 12.44 22548 23.5470 224.66 237.53 12.29 22549 23.5480 224.61 237.46 12.34 22550 23.5490 232.48 237.39 12.56 22551 23.5500 246.24 237.33 12.86 22552 23.5510 243.17 237.27 12.80 22553 23.5520 246.14 237.22 12.87 22554 23.5530 245.20 237.17 12.88 22555 23.5540 216.96 237.13 12.11 22556 23.5550 216.43 237.09 12.10 22557 23.5560 233.36 237.06 12.56 22558 23.5570 235.05 237.03 12.60 22559 23.5580 211.41 237.01 11.92 22560 23.5590 226.23 236.99 12.33 22561 23.5600 212.90 236.97 11.93 22562 23.5610 228.93 236.96 12.47 22563 23.5620 239.48 236.96 12.67 22564 23.5630 209.92 236.96 11.89 22565 23.5640 232.87 236.96 12.52 22566 23.5650 214.54 236.97 11.99 22567 23.5660 197.43 236.99 11.52 22568 23.5670 214.94 237.01 12.00 22569 23.5680 219.69 237.03 12.12 22570 23.5690 211.02 237.06 11.89 22571 23.5700 230.89 237.09 12.46 22572 23.5710 229.80 237.13 12.42 22573 23.5720 208.12 237.18 11.80 22574 23.5730 219.37 237.23 12.18 22575 23.5740 236.50 237.28 12.62 22576 23.5750 216.61 237.34 12.06 22577 23.5760 228.61 237.40 12.39 22578 23.5770 246.25 237.47 12.91 22579 23.5780 225.98 237.54 12.35 22580 23.5790 230.97 237.62 12.45 22581 23.5800 225.74 237.70 12.36 22582 23.5810 216.58 237.79 12.07 22583 23.5820 228.65 237.88 12.39 22584 23.5830 227.17 237.98 12.36 22585 23.5840 228.69 238.09 12.40 22586 23.5850 222.88 238.20 12.21 22587 23.5860 217.29 238.31 12.08 22588 23.5870 213.95 238.43 12.03 22589 23.5880 236.23 238.56 12.62 22590 23.5890 212.91 238.70 12.00 22591 23.5900 215.69 238.84 12.08 22592 23.5910 212.99 238.99 11.99 22593 23.5920 221.26 239.14 12.16 22594 23.5930 215.02 239.30 12.01 22595 23.5940 236.69 239.47 12.62 22596 23.5950 237.26 239.65 12.67 22597 23.5960 218.29 239.83 12.14 22598 23.5970 210.15 240.02 11.85 22599 23.5980 222.39 240.22 12.21 22600 23.5990 220.92 240.43 12.19 22601 23.6000 221.01 240.64 12.17 22602 23.6010 224.64 240.86 12.30 22603 23.6020 232.69 241.09 12.55 22604 23.6030 211.24 241.33 11.91 22605 23.6040 228.80 241.58 12.41 22606 23.6050 222.01 241.84 12.18 22607 23.6060 223.36 242.11 12.27 22608 23.6070 235.98 242.38 12.59 22609 23.6080 227.91 242.67 12.39 22610 23.6090 235.77 242.97 12.54 22611 23.6100 233.06 243.28 12.47 22612 23.6110 214.93 243.60 12.06 22613 23.6120 230.74 243.93 12.52 22614 23.6130 202.11 244.27 11.66 22615 23.6140 228.69 244.63 12.42 22616 23.6150 226.13 244.99 12.32 22617 23.6160 218.50 245.38 12.12 22618 23.6170 217.85 245.77 12.05 22619 23.6180 233.25 246.18 12.52 22620 23.6190 252.94 246.60 13.05 22621 23.6200 244.54 249.88 12.87 22622 23.6210 235.57 247.90 12.60 22623 23.6220 239.54 248.40 12.75 22624 23.6230 239.23 248.92 12.65 22625 23.6240 238.82 249.46 12.68 22626 23.6250 236.41 250.01 12.63 22627 23.6260 219.86 250.59 12.24 22628 23.6270 243.58 251.18 12.75 22629 23.6280 240.96 251.80 12.67 22630 23.6290 258.22 252.44 13.23 22631 23.6300 248.91 253.10 12.97 22632 23.6310 234.00 253.78 12.54 22633 23.6320 238.94 254.49 12.69 22634 23.6330 252.46 255.22 13.07 22635 23.6340 223.48 255.98 12.29 22636 23.6350 222.22 256.76 12.23 22637 23.6360 237.10 257.58 12.59 22638 23.6370 248.82 258.42 12.90 22639 23.6380 252.56 259.30 13.00 22640 23.6390 259.89 260.20 13.21 22641 23.6400 268.65 261.15 13.50 22642 23.6410 251.65 262.13 13.01 22643 23.6420 256.36 263.15 13.15 22644 23.6430 253.90 264.20 13.07 22645 23.6440 247.55 265.30 12.90 22646 23.6450 264.01 266.45 13.30 22647 23.6460 244.62 267.64 12.90 22648 23.6470 256.95 268.88 13.15 22649 23.6480 245.58 270.17 12.88 22650 23.6490 255.70 271.51 13.08 22651 23.6500 251.24 272.91 13.01 22652 23.6510 252.64 274.37 13.04 22653 23.6520 275.26 275.90 13.60 22654 23.6530 277.63 277.49 13.68 22655 23.6540 272.80 279.15 13.56 22656 23.6550 268.43 280.89 13.48 22657 23.6560 284.04 282.70 13.84 22658 23.6570 264.89 284.60 13.36 22659 23.6580 283.21 286.60 13.76 22660 23.6590 275.18 288.68 13.57 22661 23.6600 300.08 290.86 14.19 22662 23.6610 272.87 293.15 13.59 22663 23.6620 289.65 295.56 13.99 22664 23.6630 274.86 298.08 13.63 22665 23.6640 277.97 300.74 13.77 22666 23.6650 295.57 303.53 14.11 22667 23.6660 306.59 306.48 14.36 22668 23.6670 297.58 309.57 14.19 22669 23.6680 279.16 312.83 13.69 22670 23.6690 299.83 316.28 14.17 22671 23.6700 301.86 319.91 14.27 22672 23.6710 328.15 323.75 14.95 22673 23.6720 328.85 327.82 14.95 22674 23.6730 327.43 332.12 14.88 22675 23.6740 306.94 336.67 14.40 22676 23.6750 337.95 341.51 15.12 22677 23.6760 316.92 346.65 14.62 22678 23.6770 362.04 352.10 15.62 22679 23.6780 349.61 357.90 15.35 22680 23.6790 358.67 364.08 15.55 22681 23.6800 361.04 370.66 15.53 22682 23.6810 354.28 377.69 15.45 22683 23.6820 359.12 385.18 15.51 22684 23.6830 366.85 393.21 15.70 22685 23.6840 385.61 401.80 16.12 22686 23.6850 392.78 410.99 16.27 22687 23.6860 381.26 420.87 16.04 22688 23.6870 424.19 431.47 16.92 22689 23.6880 430.06 442.84 17.01 22690 23.6890 434.38 455.08 17.10 22691 23.6900 444.80 468.30 17.33 22692 23.6910 460.96 482.51 17.59 22693 23.6920 477.16 497.83 17.90 22694 23.6930 504.07 514.43 18.41 22695 23.6940 512.26 532.29 18.56 22696 23.6950 545.00 551.62 19.12 22697 23.6960 540.09 572.48 19.07 22698 23.6970 526.44 595.05 18.83 22699 23.6980 560.91 619.44 19.51 22700 23.6990 598.04 645.72 20.07 22701 23.7000 620.80 674.09 20.46 22702 23.7010 654.06 704.62 21.02 22703 23.7020 672.93 737.34 21.31 22704 23.7030 665.04 772.32 21.19 22705 23.7040 749.15 809.71 22.51 22706 23.7050 806.50 849.16 23.31 22707 23.7060 823.27 890.61 23.56 22708 23.7070 861.49 933.93 24.06 22709 23.7080 891.50 978.37 24.48 22710 23.7090 935.35 1023.46 25.09 22711 23.7100 991.01 1068.47 25.84 22712 23.7110 1038.68 1112.31 26.49 22713 23.7120 1035.48 1153.75 26.46 22714 23.7130 1084.57 1191.60 27.03 22715 23.7140 1123.13 1224.44 27.48 22716 23.7150 1208.52 1250.94 28.51 22717 23.7160 1253.02 1269.93 29.08 22718 23.7170 1159.76 1280.62 28.03 22719 23.7180 1207.47 1282.52 28.51 22720 23.7190 1202.32 1275.60 28.47 22721 23.7200 1178.31 1260.31 28.14 22722 23.7210 1136.67 1237.34 27.71 22723 23.7220 1137.52 1207.94 27.69 22724 23.7230 1137.35 1173.31 27.69 22725 23.7240 1099.63 1134.61 27.28 22726 23.7250 1061.53 1093.34 26.82 22727 23.7260 1025.95 1050.52 26.31 22728 23.7270 947.58 1007.01 25.23 22729 23.7280 902.79 963.68 24.69 22730 23.7290 901.76 921.22 24.66 22731 23.7300 837.93 879.94 23.81 22732 23.7310 771.02 840.25 22.80 22733 23.7320 746.65 802.45 22.46 22734 23.7330 755.03 766.55 22.59 22735 23.7340 734.97 732.76 22.23 22736 23.7350 705.11 700.98 21.82 22737 23.7360 633.40 671.26 20.65 22738 23.7370 615.09 643.59 20.34 22739 23.7380 616.91 617.75 20.37 22740 23.7390 600.71 593.84 20.11 22741 23.7400 556.57 571.66 19.39 22742 23.7410 572.18 551.10 19.67 22743 23.7420 559.55 532.00 19.42 22744 23.7430 521.54 514.36 18.70 22745 23.7440 482.41 498.00 18.04 22746 23.7450 479.16 482.84 17.97 22747 23.7460 459.00 468.81 17.61 22748 23.7470 451.26 455.78 17.43 22749 23.7480 453.85 443.70 17.48 22750 23.7490 423.04 432.47 16.86 22751 23.7500 398.00 422.02 16.40 22752 23.7510 418.09 412.32 16.82 22753 23.7520 409.11 403.26 16.58 22754 23.7530 381.07 394.82 16.03 22755 23.7540 391.31 386.95 16.24 22756 23.7550 358.62 379.60 15.55 22757 23.7560 369.11 372.70 15.74 22758 23.7570 377.31 366.26 15.95 22759 23.7580 368.40 360.23 15.79 22760 23.7590 361.48 353.03 15.67 22761 23.7600 324.73 347.73 14.83 22762 23.7610 326.68 342.75 14.85 22763 23.7620 336.03 338.06 15.03 22764 23.7630 316.05 333.64 14.63 22765 23.7640 322.73 329.48 14.75 22766 23.7650 343.05 325.73 15.21 22767 23.7660 304.21 322.03 14.32 22768 23.7670 305.96 318.54 14.32 22769 23.7680 285.03 315.24 13.86 22770 23.7690 317.08 312.12 14.61 22771 23.7700 313.12 309.17 14.53 22772 23.7710 298.60 306.38 14.17 22773 23.7720 293.29 303.73 14.07 22774 23.7730 292.48 301.22 14.07 22775 23.7740 309.10 298.84 14.44 22776 23.7750 299.73 296.58 14.18 22777 23.7760 298.66 294.44 14.15 22778 23.7770 278.68 292.40 13.72 22779 23.7780 276.20 290.47 13.61 22780 23.7790 272.36 288.63 13.56 22781 23.7800 293.46 286.88 14.10 22782 23.7810 291.91 285.21 14.06 22783 23.7820 283.61 283.63 13.86 22784 23.7830 266.24 282.12 13.38 22785 23.7840 268.85 280.69 13.46 22786 23.7850 273.12 279.32 13.51 22787 23.7860 274.87 278.02 13.61 22788 23.7870 280.67 276.78 13.71 22789 23.7880 264.67 275.60 13.41 22790 23.7890 280.29 274.48 13.74 22791 23.7900 284.34 273.40 13.85 22792 23.7910 268.46 272.39 13.46 22793 23.7920 271.56 271.42 13.53 22794 23.7930 279.61 270.49 13.79 22795 23.7940 281.14 269.61 13.80 22796 23.7950 258.10 268.77 13.16 22797 23.7960 277.51 267.97 13.69 22798 23.7970 270.30 267.21 13.54 22799 23.7980 255.54 266.50 13.11 22800 23.7990 254.20 265.81 13.10 22801 23.8000 270.37 265.16 13.49 22802 23.8010 253.27 264.55 13.11 22803 23.8020 262.34 263.96 13.31 22804 23.8030 261.75 263.41 13.23 22805 23.8040 244.82 262.89 12.82 22806 23.8050 252.89 262.39 13.03 22807 23.8060 268.44 261.92 13.46 22808 23.8070 263.59 261.49 13.31 22809 23.8080 262.69 261.08 13.28 22810 23.8090 266.08 260.69 13.34 22811 23.8100 268.53 260.33 13.48 22812 23.8110 250.14 259.99 13.03 22813 23.8120 264.23 259.68 13.33 22814 23.8130 279.02 259.39 13.72 22815 23.8140 275.31 259.12 13.59 22816 23.8150 254.39 258.88 13.10 22817 23.8160 269.01 258.66 13.44 22818 23.8170 258.70 258.46 13.22 22819 23.8180 252.51 258.28 13.04 22820 23.8190 266.91 258.12 13.41 22821 23.8200 275.64 257.98 13.62 22822 23.8210 269.96 257.86 13.50 22823 23.8220 270.79 257.77 13.51 22824 23.8230 276.46 257.69 13.62 22825 23.8240 275.34 257.63 13.60 22826 23.8250 275.17 257.59 13.64 22827 23.8260 287.91 257.58 13.95 22828 23.8270 266.52 257.58 13.38 22829 23.8280 260.66 257.60 13.24 22830 23.8290 269.58 257.64 13.44 22831 23.8300 276.52 257.70 13.63 22832 23.8310 274.41 257.77 13.55 22833 23.8320 277.57 257.87 13.64 22834 23.8330 253.91 257.99 13.06 22835 23.8340 256.49 258.13 13.12 22836 23.8350 242.85 258.29 12.76 22837 23.8360 250.58 258.46 12.96 22838 23.8370 271.00 258.66 13.51 22839 23.8380 287.24 258.88 13.89 22840 23.8390 300.43 259.12 14.21 22841 23.8400 304.36 259.38 14.34 22842 23.8410 293.36 259.66 14.08 22843 23.8420 285.36 259.97 13.84 22844 23.8430 273.26 260.30 13.56 22845 23.8440 287.70 260.65 13.90 22846 23.8450 261.66 261.02 13.24 22847 23.8460 271.84 261.42 13.53 22848 23.8470 260.51 261.84 13.26 22849 23.8480 291.20 262.29 14.01 22850 23.8490 272.17 262.76 13.57 22851 23.8500 264.34 263.26 13.34 22852 23.8510 276.06 263.79 13.63 22853 23.8520 277.25 264.35 13.64 22854 23.8530 278.43 264.93 13.69 22855 23.8540 267.28 265.55 13.45 22856 23.8550 285.43 266.19 13.88 22857 23.8560 301.12 266.87 14.23 22858 23.8570 293.55 267.58 14.05 22859 23.8580 292.57 268.33 14.02 22860 23.8590 299.24 269.11 14.24 22861 23.8600 297.37 269.93 14.19 22862 23.8610 293.51 270.79 14.09 22863 23.8620 301.93 271.69 14.28 22864 23.8630 271.59 272.64 13.53 22865 23.8640 272.46 273.62 13.54 22866 23.8650 304.19 274.65 14.32 22867 23.8660 283.56 275.73 13.85 22868 23.8670 291.90 276.86 14.00 22869 23.8680 297.19 278.05 14.15 22870 23.8690 286.94 279.28 13.89 22871 23.8700 284.82 280.58 13.82 22872 23.8710 269.66 281.94 13.44 22873 23.8720 295.62 283.36 14.09 22874 23.8730 295.67 284.84 14.11 22875 23.8740 305.57 286.40 14.35 22876 23.8750 282.09 288.03 13.81 22877 23.8760 289.62 289.74 13.95 22878 23.8770 313.13 291.54 14.55 22879 23.8780 279.88 293.42 13.69 22880 23.8790 287.96 295.39 13.91 22881 23.8800 305.67 297.45 14.34 22882 23.8810 316.26 299.63 14.56 22883 23.8820 325.62 301.91 14.79 22884 23.8830 343.02 304.31 15.15 22885 23.8840 300.37 306.83 14.18 22886 23.8850 319.95 309.48 14.69 22887 23.8860 329.51 312.27 14.92 22888 23.8870 314.97 315.21 14.53 22889 23.8880 324.43 318.31 14.74 22890 23.8890 325.67 321.58 14.77 22891 23.8900 333.65 325.02 15.00 22892 23.8910 335.05 328.67 15.03 22893 23.8920 350.47 332.51 15.39 22894 23.8930 348.36 336.57 15.33 22895 23.8940 364.27 340.88 15.63 22896 23.8950 354.48 345.44 15.45 22897 23.8960 361.30 350.27 15.59 22898 23.8970 375.71 355.41 15.92 22899 23.8980 358.00 360.86 15.52 22900 23.8990 389.27 366.65 16.17 22901 23.9000 394.27 372.81 16.32 22902 23.9010 384.72 379.37 16.08 22903 23.9020 375.46 386.38 15.88 22904 23.9030 367.28 393.86 15.71 22905 23.9040 386.93 401.84 16.11 22906 23.9050 432.08 410.41 17.06 22907 23.9060 413.66 419.55 16.72 22908 23.9070 430.20 429.36 17.04 22909 23.9080 439.39 439.93 17.17 22910 23.9090 455.83 451.26 17.55 22911 23.9100 468.78 463.45 17.79 22912 23.9110 485.37 476.61 18.06 22913 23.9120 498.99 490.83 18.36 22914 23.9130 478.61 506.16 17.99 22915 23.9140 485.90 522.78 18.10 22916 23.9150 521.70 540.79 18.75 22917 23.9160 554.39 560.30 19.35 22918 23.9170 556.71 581.54 19.39 22919 23.9180 585.29 604.59 19.82 22920 23.9190 595.22 629.73 19.97 22921 23.9200 639.52 657.14 20.76 22922 23.9210 636.52 686.98 20.65 22923 23.9220 681.90 719.61 21.44 22924 23.9230 741.03 755.23 22.31 22925 23.9240 753.89 794.05 22.53 22926 23.9250 798.03 836.41 23.19 22927 23.9260 829.10 882.76 23.66 22928 23.9270 890.61 933.03 24.49 22929 23.9280 923.06 987.60 24.93 22930 23.9290 990.17 1046.84 25.82 22931 23.9300 1053.53 1110.37 26.66 22932 23.9310 1172.05 1178.42 28.04 22933 23.9320 1250.95 1250.40 28.99 22934 23.9330 1294.34 1325.94 29.47 22935 23.9340 1396.63 1403.91 30.65 22936 23.9350 1566.97 1482.74 32.48 22937 23.9360 1657.54 1560.76 33.45 22938 23.9370 1782.96 1635.41 34.64 22939 23.9380 1882.03 1703.75 35.57 22940 23.9390 1989.07 1762.85 36.60 22941 23.9400 1987.40 1809.80 36.57 22942 23.9410 2088.47 1841.60 37.52 22943 23.9420 2035.25 1856.47 37.04 22944 23.9430 2026.70 1853.42 37.05 22945 23.9440 2051.53 1832.67 37.20 22946 23.9450 1980.91 1795.54 36.55 22947 23.9460 1832.44 1744.17 35.21 22948 23.9470 1755.30 1681.48 34.46 22949 23.9480 1609.87 1610.67 33.01 22950 23.9490 1576.32 1534.53 32.63 22951 23.9500 1439.57 1455.88 31.16 22952 23.9510 1365.53 1377.11 30.38 22953 23.9520 1296.85 1299.74 29.62 22954 23.9530 1175.72 1225.31 28.18 22955 23.9540 1087.26 1154.31 27.12 22956 23.9550 1029.67 1087.75 26.40 22957 23.9560 983.98 1025.64 25.74 22958 23.9570 992.95 967.83 25.88 22959 23.9580 905.01 914.64 24.71 22960 23.9590 863.83 865.68 24.16 22961 23.9600 819.14 820.64 23.55 22962 23.9610 810.16 779.34 23.38 22963 23.9620 742.38 741.56 22.39 22964 23.9630 739.15 706.90 22.34 22965 23.9640 685.08 675.13 21.50 22966 23.9650 652.46 646.07 20.94 22967 23.9660 632.99 619.36 20.67 22968 23.9670 628.27 594.89 20.57 22969 23.9680 616.07 572.35 20.36 22970 23.9690 565.11 551.62 19.55 22971 23.9700 525.92 532.56 18.83 22972 23.9710 511.51 514.95 18.57 22973 23.9720 513.80 498.68 18.64 22974 23.9730 504.12 483.66 18.43 22975 23.9740 479.97 469.71 17.98 22976 23.9750 454.82 456.81 17.51 22977 23.9760 463.36 444.83 17.63 22978 23.9770 454.72 433.70 17.49 22979 23.9780 456.05 423.29 17.57 22980 23.9790 436.32 413.63 17.16 22981 23.9800 398.58 404.59 16.41 22982 23.9810 407.89 396.15 16.58 22983 23.9820 410.17 388.26 16.63 22984 23.9830 370.62 380.85 15.78 22985 23.9840 395.69 373.92 16.32 22986 23.9850 377.59 367.40 16.00 22987 23.9860 372.11 361.27 15.82 22988 23.9870 399.16 355.51 16.36 22989 23.9880 371.08 350.08 15.84 22990 23.9890 346.61 344.96 15.30 22991 23.9900 356.91 340.13 15.55 22992 23.9910 368.59 335.57 15.75 22993 23.9920 357.93 331.24 15.56 22994 23.9930 342.38 327.16 15.22 22995 23.9940 325.71 323.30 14.83 22996 23.9950 335.46 324.27 15.09 22997 23.9960 317.22 320.82 14.62 22998 23.9970 313.58 317.55 14.54 22999 23.9980 312.64 314.44 14.50 23000 23.9990 303.55 311.48 14.31 23001 24.0000 291.81 308.66 13.99 23002 24.0010 310.97 305.99 14.43 23003 24.0020 309.72 303.44 14.46 23004 24.0030 297.92 301.01 14.19 23005 24.0040 291.46 298.69 13.96 23006 24.0050 297.51 296.49 14.10 23007 24.0060 298.91 294.37 14.19 23008 24.0070 287.95 292.36 13.95 23009 24.0080 276.83 290.44 13.63 23010 24.0090 281.17 288.59 13.76 23011 24.0100 303.83 286.83 14.33 23012 24.0110 273.73 285.15 13.49 23013 24.0120 253.87 283.54 13.07 23014 24.0130 273.45 281.99 13.53 23015 24.0140 268.45 280.52 13.43 23016 24.0150 273.84 279.10 13.58 23017 24.0160 274.12 277.74 13.58 23018 24.0170 272.91 276.43 13.56 23019 24.0180 249.33 275.18 12.95 23020 24.0190 274.74 273.98 13.61 23021 24.0200 258.31 272.83 13.18 23022 24.0210 245.69 271.73 12.87 23023 24.0220 255.47 270.67 13.10 23024 24.0230 274.83 269.65 13.61 23025 24.0240 276.52 268.67 13.59 23026 24.0250 250.25 267.73 12.93 23027 24.0260 262.80 266.83 13.23 23028 24.0270 245.35 265.96 12.83 23029 24.0280 252.48 265.13 13.06 23030 24.0290 273.66 264.33 13.60 23031 24.0300 260.76 263.56 13.29 23032 24.0310 259.39 262.82 13.21 23033 24.0320 243.96 262.11 12.83 23034 24.0330 263.63 261.43 13.31 23035 24.0340 237.35 260.78 12.66 23036 24.0350 240.77 260.15 12.72 23037 24.0360 250.15 259.55 12.97 23038 24.0370 244.54 258.98 12.87 23039 24.0380 239.58 258.42 12.69 23040 24.0390 249.44 257.90 12.96 23041 24.0400 247.94 257.39 12.93 23042 24.0410 245.91 256.91 12.88 23043 24.0420 247.44 256.45 12.96 23044 24.0430 264.40 256.01 13.37 23045 24.0440 222.23 255.59 12.19 23046 24.0450 231.60 255.19 12.46 23047 24.0460 242.51 254.81 12.77 23048 24.0470 263.66 254.45 13.35 23049 24.0480 251.11 254.11 12.99 23050 24.0490 212.50 253.79 11.98 23051 24.0500 249.59 253.49 12.99 23052 24.0510 265.56 253.21 13.32 23053 24.0520 242.74 252.94 12.78 23054 24.0530 233.19 252.70 12.53 23055 24.0540 240.71 252.47 12.69 23056 24.0550 256.30 252.26 13.09 23057 24.0560 271.74 252.07 13.53 23058 24.0570 249.30 251.90 12.95 23059 24.0580 224.12 251.75 12.28 23060 24.0590 224.06 251.62 12.25 23061 24.0600 222.96 251.50 12.32 23062 24.0610 235.19 251.41 12.61 23063 24.0620 239.94 251.34 12.79 23064 24.0630 242.30 251.28 12.82 23065 24.0640 260.96 251.25 13.23 23066 24.0650 234.99 251.24 12.53 23067 24.0660 220.91 251.25 12.17 23068 24.0670 246.84 251.29 12.84 23069 24.0680 234.69 251.35 12.52 23070 24.0690 221.80 251.44 12.21 23071 24.0700 247.15 251.55 12.85 23072 24.0710 259.01 251.62 13.18 23073 24.0720 237.11 251.79 12.63 23074 24.0730 235.47 251.98 12.58 23075 24.0740 227.64 252.21 12.36 23076 24.0750 239.06 252.48 12.68 23077 24.0760 243.98 252.78 12.78 23078 24.0770 245.50 253.12 12.90 23079 24.0780 228.87 253.50 12.44 23080 24.0790 232.75 253.92 12.48 23081 24.0800 242.55 254.39 12.79 23082 24.0810 248.79 254.91 12.92 23083 24.0820 231.80 253.70 12.48 23084 24.0830 274.37 254.34 13.54 23085 24.0840 264.97 255.05 13.41 23086 24.0850 231.19 255.83 12.48 23087 24.0860 226.83 256.68 12.39 23088 24.0870 246.53 257.61 12.86 23089 24.0880 243.08 258.62 12.81 23090 24.0890 268.33 259.73 13.43 23091 24.0900 245.36 260.95 12.85 23092 24.0910 250.26 262.28 13.00 23093 24.0920 268.03 263.73 13.47 23094 24.0930 262.76 265.31 13.28 23095 24.0940 254.61 267.04 13.09 23096 24.0950 255.51 268.92 13.13 23097 24.0960 265.32 270.98 13.38 23098 24.0970 255.10 273.21 13.11 23099 24.0980 260.07 275.63 13.21 23100 24.0990 271.09 278.26 13.49 23101 24.1000 277.46 281.10 13.68 23102 24.1010 274.92 284.15 13.64 23103 24.1020 284.19 287.43 13.83 23104 24.1030 287.27 290.92 13.87 23105 24.1040 300.52 294.60 14.29 23106 24.1050 299.95 298.45 14.26 23107 24.1060 294.42 302.44 14.10 23108 24.1070 318.00 306.50 14.66 23109 24.1080 325.07 310.55 14.86 23110 24.1090 308.22 314.49 14.39 23111 24.1100 303.01 318.23 14.28 23112 24.1110 326.17 321.60 14.83 23113 24.1120 322.85 324.49 14.74 23114 24.1130 344.08 326.77 15.26 23115 24.1140 327.23 328.32 14.85 23116 24.1150 328.63 329.06 14.93 23117 24.1160 327.63 328.95 14.91 23118 24.1170 329.47 328.00 14.87 23119 24.1180 304.67 326.27 14.31 23120 24.1190 296.58 323.83 14.11 23121 24.1200 321.95 320.81 14.67 23122 24.1210 308.04 317.35 14.39 23123 24.1220 301.50 313.58 14.22 23124 24.1230 312.48 309.63 14.54 23125 24.1240 330.61 305.60 14.97 23126 24.1250 291.70 301.59 14.03 23127 24.1260 281.22 297.68 13.73 23128 24.1270 289.71 293.89 13.97 23129 24.1280 270.91 290.30 13.55 23130 24.1290 291.71 286.92 13.97 23131 24.1300 272.96 283.74 13.56 23132 24.1310 271.29 280.78 13.55 23133 24.1320 267.84 278.04 13.50 23134 24.1330 269.76 275.51 13.50 23135 24.1340 264.34 273.18 13.38 23136 24.1350 258.96 271.04 13.20 23137 24.1360 240.98 269.07 12.71 23138 24.1370 242.61 267.27 12.79 23139 24.1380 255.99 265.62 13.14 23140 24.1390 255.44 264.11 13.12 23141 24.1400 280.14 262.73 13.71 23142 24.1410 260.46 261.47 13.20 23143 24.1420 245.49 260.32 12.82 23144 24.1430 249.69 259.27 12.94 23145 24.1440 252.43 258.31 13.04 23146 24.1450 264.95 257.44 13.34 23147 24.1460 249.76 256.65 12.91 23148 24.1470 251.96 255.92 13.03 23149 24.1480 250.10 255.27 12.96 23150 24.1490 248.07 254.68 12.89 23151 24.1500 264.06 254.14 13.27 23152 24.1510 250.67 253.66 13.02 23153 24.1520 246.29 253.22 12.93 23154 24.1530 242.19 252.84 12.78 23155 24.1540 252.99 252.49 13.05 23156 24.1550 276.12 252.18 13.59 23157 24.1560 238.37 251.91 12.70 23158 24.1570 263.40 251.68 13.30 23159 24.1580 263.01 251.48 13.27 23160 24.1590 254.28 251.31 13.09 23161 24.1600 254.87 251.17 13.10 23162 24.1610 243.42 251.06 12.79 23163 24.1620 241.71 250.97 12.81 23164 24.1630 246.26 250.91 12.90 23165 24.1640 243.55 250.88 12.83 23166 24.1650 271.62 250.87 13.53 23167 24.1660 245.77 250.88 12.91 23168 24.1670 245.73 250.91 12.88 23169 24.1680 260.51 250.96 13.26 23170 24.1690 255.58 251.03 13.13 23171 24.1700 263.97 251.13 13.32 23172 24.1710 238.88 251.24 12.66 23173 24.1720 247.45 251.37 12.89 23174 24.1730 272.06 251.52 13.52 23175 24.1740 259.36 251.68 13.22 23176 24.1750 253.05 251.87 13.03 23177 24.1760 264.77 252.07 13.37 23178 24.1770 245.17 252.29 12.81 23179 24.1780 260.84 252.53 13.21 23180 24.1790 273.39 252.79 13.56 23181 24.1800 260.00 253.06 13.20 23182 24.1810 262.21 253.35 13.29 23183 24.1820 259.83 253.65 13.24 23184 24.1830 246.82 253.98 12.91 23185 24.1840 258.66 254.32 13.19 23186 24.1850 267.16 254.67 13.42 23187 24.1860 240.81 255.05 12.72 23188 24.1870 271.91 255.62 13.56 23189 24.1880 270.93 256.04 13.52 23190 24.1890 271.51 256.47 13.49 23191 24.1900 255.02 256.92 13.14 23192 24.1910 253.30 257.39 13.03 23193 24.1920 239.81 257.88 12.71 23194 24.1930 247.21 258.39 12.93 23195 24.1940 266.22 258.91 13.36 23196 24.1950 256.05 259.46 13.11 23197 24.1960 255.51 260.03 13.11 23198 24.1970 260.72 260.62 13.27 23199 24.1980 259.04 261.24 13.19 23200 24.1990 268.80 261.88 13.46 23201 24.2000 262.81 262.54 13.30 23202 24.2010 258.11 263.22 13.21 23203 24.2020 243.18 263.93 12.76 23204 24.2030 264.99 264.67 13.36 23205 24.2040 270.50 265.43 13.52 23206 24.2050 271.47 266.22 13.58 23207 24.2060 277.82 267.04 13.68 23208 24.2070 265.20 267.89 13.32 23209 24.2080 247.59 268.77 12.91 23210 24.2090 266.74 269.68 13.39 23211 24.2100 261.90 270.62 13.25 23212 24.2110 296.60 271.60 14.14 23213 24.2120 281.60 272.61 13.75 23214 24.2130 285.20 273.65 13.89 23215 24.2140 284.60 274.74 13.82 23216 24.2150 271.97 275.87 13.56 23217 24.2160 281.96 277.03 13.77 23218 24.2170 287.21 278.24 13.90 23219 24.2180 283.27 279.50 13.79 23220 24.2190 280.93 280.80 13.81 23221 24.2200 312.49 282.15 14.41 23222 24.2210 300.24 283.55 14.21 23223 24.2220 303.24 285.01 14.27 23224 24.2230 300.72 286.52 14.15 23225 24.2240 277.96 288.09 13.69 23226 24.2250 312.78 289.72 14.53 23227 24.2260 310.44 291.41 14.51 23228 24.2270 338.36 293.17 15.12 23229 24.2280 317.99 295.01 14.63 23230 24.2290 293.94 296.91 14.08 23231 24.2300 327.45 298.89 14.82 23232 24.2310 302.42 301.35 14.26 23233 24.2320 299.83 303.50 14.24 23234 24.2330 300.60 305.75 14.22 23235 24.2340 333.23 308.09 15.00 23236 24.2350 317.56 310.53 14.60 23237 24.2360 331.84 313.07 14.95 23238 24.2370 324.46 315.73 14.76 23239 24.2380 323.95 318.51 14.73 23240 24.2390 326.14 321.42 14.84 23241 24.2400 328.28 324.45 14.85 23242 24.2410 350.70 327.62 15.37 23243 24.2420 348.40 330.96 15.30 23244 24.2430 334.30 334.43 15.05 23245 24.2440 342.76 338.08 15.22 23246 24.2450 345.24 341.92 15.24 23247 24.2460 378.52 345.94 15.96 23248 24.2470 377.52 350.15 15.95 23249 24.2480 394.24 354.60 16.27 23250 24.2490 376.24 359.27 15.86 23251 24.2500 370.41 364.17 15.80 23252 24.2510 392.89 369.36 16.30 23253 24.2520 386.34 374.82 16.12 23254 24.2530 377.70 380.57 15.96 23255 24.2540 389.48 386.65 16.15 23256 24.2550 425.99 393.07 16.96 23257 24.2560 426.38 399.88 16.91 23258 24.2570 416.62 407.08 16.68 23259 24.2580 409.65 414.71 16.64 23260 24.2590 438.41 422.83 17.20 23261 24.2600 464.01 431.42 17.63 23262 24.2610 473.52 440.56 17.84 23263 24.2620 484.10 450.29 18.10 23264 24.2630 478.35 460.68 17.99 23265 24.2640 520.64 471.74 18.75 23266 24.2650 506.47 483.57 18.49 23267 24.2660 514.69 493.40 18.60 23268 24.2670 518.86 506.94 18.64 23269 24.2680 532.02 521.48 18.94 23270 24.2690 535.13 537.06 18.99 23271 24.2700 554.35 553.84 19.30 23272 24.2710 589.75 571.90 19.91 23273 24.2720 594.78 591.34 19.99 23274 24.2730 619.62 612.36 20.45 23275 24.2740 623.18 635.08 20.51 23276 24.2750 631.08 659.64 20.61 23277 24.2760 685.31 686.27 21.49 23278 24.2770 713.90 715.29 21.93 23279 24.2780 747.02 746.74 22.47 23280 24.2790 771.45 780.98 22.81 23281 24.2800 790.65 818.62 23.06 23282 24.2810 802.74 859.40 23.27 23283 24.2820 888.09 903.96 24.44 23284 24.2830 887.41 952.90 24.49 23285 24.2840 931.76 1006.31 25.05 23286 24.2850 1023.47 1064.82 26.22 23287 24.2860 1038.07 1129.04 26.40 23288 24.2870 1111.75 1199.41 27.38 23289 24.2880 1213.53 1276.44 28.58 23290 24.2890 1313.19 1360.47 29.72 23291 24.2900 1363.80 1452.24 30.30 23292 24.2910 1453.88 1551.92 31.27 23293 24.2920 1580.58 1659.45 32.66 23294 24.2930 1706.13 1774.82 33.91 23295 24.2940 1858.95 1897.89 35.35 23296 24.2950 2039.02 2026.68 37.08 23297 24.2960 2210.51 2159.74 38.57 23298 24.2970 2377.90 2294.82 40.01 23299 24.2980 2571.43 2427.34 41.57 23300 24.2990 2782.96 2553.16 43.29 23301 24.3000 2905.01 2667.13 44.26 23302 24.3010 3070.97 2763.28 45.54 23303 24.3020 3206.90 2835.95 46.50 23304 24.3030 3153.87 2880.74 46.17 23305 24.3040 3065.12 2894.46 45.47 23306 24.3050 2920.95 2876.18 44.39 23307 24.3060 2988.34 2827.15 44.88 23308 24.3070 2798.85 2750.84 43.51 23309 24.3080 2639.18 2651.63 42.30 23310 24.3090 2506.44 2535.81 41.19 23311 24.3100 2294.06 2408.76 39.41 23312 24.3110 2189.62 2275.28 38.44 23313 24.3120 2079.38 2140.75 37.50 23314 24.3130 1910.47 2008.21 35.94 23315 24.3140 1787.69 1880.05 34.75 23316 24.3150 1674.33 1758.23 33.65 23317 24.3160 1526.72 1644.00 32.13 23318 24.3170 1468.79 1537.48 31.49 23319 24.3180 1320.42 1438.98 29.89 23320 24.3190 1318.49 1348.50 29.79 23321 24.3200 1240.81 1265.40 28.92 23322 24.3210 1094.92 1189.50 27.21 23323 24.3220 1077.74 1120.05 27.00 23324 24.3230 1057.11 1056.67 26.69 23325 24.3240 972.58 998.97 25.59 23326 24.3250 901.54 946.17 24.60 23327 24.3260 900.31 897.96 24.61 23328 24.3270 828.98 853.96 23.65 23329 24.3280 806.80 813.70 23.33 23330 24.3290 777.78 776.71 22.90 23331 24.3300 727.98 742.89 22.15 23332 24.3310 701.80 711.83 21.75 23333 24.3320 681.40 683.17 21.49 23334 24.3330 664.68 656.87 21.15 23335 24.3340 639.32 632.61 20.81 23336 24.3350 633.51 610.16 20.65 23337 24.3360 592.22 589.40 19.99 23338 24.3370 592.14 570.17 19.93 23339 24.3380 591.45 552.36 19.99 23340 24.3390 555.10 535.79 19.35 23341 24.3400 542.25 520.38 19.17 23342 24.3410 569.58 506.05 19.61 23343 24.3420 535.47 492.70 19.01 23344 24.3430 504.28 481.48 18.47 23345 24.3440 499.25 469.83 18.36 23346 24.3450 489.15 458.92 18.22 23347 24.3460 485.78 448.67 18.08 23348 24.3470 435.29 439.09 17.11 23349 24.3480 447.32 430.09 17.36 23350 24.3490 438.22 421.59 17.22 23351 24.3500 423.53 413.62 16.90 23352 24.3510 425.80 406.11 16.97 23353 24.3520 420.33 399.00 16.82 23354 24.3530 422.92 392.27 16.90 23355 24.3540 422.01 385.91 16.89 23356 24.3550 388.82 379.87 16.19 23357 24.3560 378.58 374.14 15.96 23358 24.3570 372.47 368.68 15.85 23359 24.3580 366.00 363.51 15.71 23360 24.3590 372.85 358.58 15.82 23361 24.3600 351.49 353.87 15.38 23362 24.3610 347.85 349.39 15.33 23363 24.3620 363.42 345.13 15.66 23364 24.3630 349.74 341.06 15.39 23365 24.3640 358.20 337.18 15.58 23366 24.3650 356.72 333.49 15.54 23367 24.3660 347.14 329.96 15.30 23368 24.3670 332.50 326.59 14.94 23369 24.3680 338.72 323.37 15.10 23370 24.3690 343.74 320.30 15.20 23371 24.3700 314.45 317.36 14.52 23372 24.3710 295.14 314.55 14.07 23373 24.3720 322.41 311.86 14.71 23374 24.3730 306.35 309.28 14.30 23375 24.3740 305.16 306.81 14.29 23376 24.3750 302.94 304.45 14.32 23377 24.3760 292.77 302.18 14.09 23378 24.3770 324.34 300.00 14.77 23379 24.3780 288.98 297.91 13.90 23380 24.3790 256.42 295.91 13.11 23381 24.3800 285.38 293.98 13.86 23382 24.3810 291.22 292.13 14.02 23383 24.3820 284.51 290.35 13.82 23384 24.3830 284.03 288.64 13.82 23385 24.3840 281.35 286.98 13.77 23386 24.3850 259.25 285.40 13.22 23387 24.3860 275.85 283.87 13.56 23388 24.3870 278.95 282.40 13.63 23389 24.3880 277.74 280.98 13.69 23390 24.3890 286.10 279.61 13.86 23391 24.3900 279.30 278.29 13.68 23392 24.3910 275.47 277.01 13.65 23393 24.3920 277.24 275.79 13.70 23394 24.3930 271.84 274.60 13.55 23395 24.3940 292.04 273.46 13.99 23396 24.3950 264.75 272.35 13.35 23397 24.3960 242.58 271.29 12.78 23398 24.3970 262.79 270.26 13.28 23399 24.3980 262.38 269.26 13.28 23400 24.3990 283.00 268.30 13.76 23401 24.4000 274.96 267.37 13.57 23402 24.4010 262.12 266.46 13.24 23403 24.4020 269.78 265.59 13.45 23404 24.4030 267.96 264.75 13.43 23405 24.4040 290.57 263.94 14.05 23406 24.4050 271.68 263.15 13.53 23407 24.4060 264.11 262.38 13.34 23408 24.4070 241.07 261.64 12.71 23409 24.4080 265.19 260.93 13.38 23410 24.4090 249.53 260.24 13.02 23411 24.4100 247.63 259.57 12.97 23412 24.4110 243.31 258.92 12.84 23413 24.4120 251.85 258.29 13.02 23414 24.4130 246.85 257.68 12.86 23415 24.4140 250.12 257.10 12.97 23416 24.4150 231.08 256.53 12.49 23417 24.4160 254.74 255.98 13.11 23418 24.4170 234.94 255.45 12.59 23419 24.4180 238.59 254.94 12.65 23420 24.4190 243.83 254.45 12.79 23421 24.4200 259.49 253.97 13.23 23422 24.4210 230.71 253.51 12.51 23423 24.4220 246.02 253.06 12.92 23424 24.4230 249.43 252.63 13.00 23425 24.4240 236.24 252.22 12.64 23426 24.4250 250.98 251.82 12.90 23427 24.4260 246.12 251.44 12.87 23428 24.4270 246.39 251.07 12.86 23429 24.4280 234.81 250.72 12.60 23430 24.4290 240.04 250.38 12.73 23431 24.4300 227.38 250.05 12.39 23432 24.4310 224.19 249.74 12.32 23433 24.4320 239.85 249.44 12.70 23434 24.4330 236.43 249.16 12.60 23435 24.4340 221.94 248.89 12.27 23436 24.4350 233.75 248.63 12.53 23437 24.4360 225.93 248.38 12.35 23438 24.4370 230.47 248.15 12.48 23439 24.4380 236.39 247.93 12.64 23440 24.4390 246.32 247.73 12.90 23441 24.4400 233.84 247.53 12.60 23442 24.4410 238.25 247.35 12.64 23443 24.4420 244.05 247.19 12.80 23444 24.4430 230.21 247.03 12.40 23445 24.4440 230.84 246.89 12.43 23446 24.4450 225.74 246.77 12.31 23447 24.4460 230.74 246.66 12.50 23448 24.4470 223.02 246.56 12.24 23449 24.4480 222.09 246.48 12.17 23450 24.4490 230.97 246.41 12.47 23451 24.4500 225.99 246.35 12.33 23452 24.4510 216.83 246.31 12.07 23453 24.4520 199.76 246.29 11.67 23454 24.4530 227.55 246.28 12.35 23455 24.4540 223.58 246.29 12.23 23456 24.4550 227.79 246.32 12.32 23457 24.4560 209.06 246.37 11.86 23458 24.4570 218.25 246.43 12.13 23459 24.4580 230.76 246.52 12.39 23460 24.4590 242.58 246.62 12.81 23461 24.4600 232.13 246.75 12.53 23462 24.4610 231.65 246.90 12.47 23463 24.4620 223.00 247.08 12.27 23464 24.4630 247.19 247.28 12.91 23465 24.4640 222.44 247.51 12.26 23466 24.4650 250.83 247.76 12.93 23467 24.4660 249.35 248.05 12.94 23468 24.4670 258.04 248.21 13.17 23469 24.4680 239.22 248.56 12.67 23470 24.4690 226.92 248.96 12.33 23471 24.4700 225.16 249.39 12.27 23472 24.4710 224.82 249.87 12.26 23473 24.4720 234.42 250.39 12.56 23474 24.4730 240.14 250.97 12.67 23475 24.4740 242.85 251.60 12.80 23476 24.4750 250.57 252.29 13.02 23477 24.4760 248.12 253.04 12.94 23478 24.4770 252.74 253.87 13.06 23479 24.4780 236.47 254.77 12.60 23480 24.4790 240.81 255.76 12.64 23481 24.4800 225.33 256.85 12.29 23482 24.4810 241.86 258.03 12.79 23483 24.4820 244.21 259.33 12.83 23484 24.4830 242.88 260.75 12.85 23485 24.4840 247.80 262.31 12.89 23486 24.4850 261.41 264.02 13.18 23487 24.4860 231.78 265.88 12.50 23488 24.4870 253.70 267.93 13.10 23489 24.4880 240.57 270.18 12.76 23490 24.4890 268.64 272.64 13.45 23491 24.4900 268.47 275.33 13.46 23492 24.4910 248.48 278.27 12.90 23493 24.4920 237.65 281.48 12.66 23494 24.4930 262.66 284.97 13.31 23495 24.4940 278.25 288.74 13.68 23496 24.4950 269.11 292.81 13.39 23497 24.4960 270.69 297.17 13.48 23498 24.4970 274.83 301.77 13.60 23499 24.4980 291.18 306.59 13.94 23500 24.4990 278.90 311.57 13.71 23501 24.5000 300.05 316.59 14.23 23502 24.5010 345.53 321.53 15.27 23503 24.5020 345.54 326.25 15.22 23504 24.5030 306.56 330.53 14.38 23505 24.5040 321.78 334.20 14.72 23506 24.5050 320.87 337.05 14.71 23507 24.5060 310.46 338.93 14.44 23508 24.5070 329.94 339.73 14.95 23509 24.5080 326.35 339.39 14.79 23510 24.5090 318.50 337.95 14.64 23511 24.5100 309.52 335.50 14.47 23512 24.5110 317.75 332.21 14.61 23513 24.5120 300.16 328.26 14.24 23514 24.5130 312.29 323.83 14.52 23515 24.5140 295.18 319.15 14.05 23516 24.5150 279.11 314.35 13.66 23517 24.5160 278.90 309.57 13.67 23518 24.5170 292.04 304.94 14.03 23519 24.5180 275.34 300.51 13.60 23520 24.5190 267.72 296.33 13.42 23521 24.5200 262.94 292.43 13.32 23522 24.5210 273.11 288.84 13.58 23523 24.5220 262.43 285.54 13.29 23524 24.5230 263.86 282.52 13.34 23525 24.5240 264.24 279.79 13.36 23526 24.5250 242.13 277.32 12.78 23527 24.5260 254.03 275.09 13.05 23528 24.5270 259.66 273.08 13.17 23529 24.5280 258.69 271.30 13.20 23530 24.5290 273.95 269.70 13.58 23531 24.5300 267.88 268.28 13.40 23532 24.5310 244.70 267.02 12.80 23533 24.5320 251.62 265.92 12.98 23534 24.5330 254.64 264.96 13.08 23535 24.5340 264.40 264.13 13.35 23536 24.5350 263.04 263.42 13.29 23537 24.5360 262.19 262.82 13.32 23538 24.5370 253.60 262.32 13.08 23539 24.5380 238.02 261.93 12.67 23540 24.5390 243.71 261.63 12.81 23541 24.5400 254.49 261.42 13.12 23542 24.5410 250.48 261.29 12.94 23543 24.5420 240.81 261.25 12.72 23544 24.5430 257.07 261.29 13.19 23545 24.5440 236.80 261.40 12.57 23546 24.5450 245.91 261.59 12.86 23547 24.5460 260.62 261.86 13.27 23548 24.5470 249.51 262.20 13.01 23549 24.5480 255.69 262.62 13.11 23550 24.5490 256.14 263.12 13.14 23551 24.5500 247.70 263.69 12.92 23552 24.5510 264.73 264.34 13.34 23553 24.5520 279.09 265.08 13.70 23554 24.5530 261.93 265.89 13.28 23555 24.5540 242.31 266.80 12.79 23556 24.5550 249.48 267.80 12.94 23557 24.5560 266.85 268.89 13.34 23558 24.5570 256.58 270.08 13.19 23559 24.5580 263.28 271.38 13.33 23560 24.5590 273.75 272.79 13.62 23561 24.5600 269.84 274.32 13.51 23562 24.5610 260.29 275.99 13.25 23563 24.5620 253.08 277.79 13.06 23564 24.5630 277.61 279.73 13.64 23565 24.5640 256.96 281.83 13.15 23566 24.5650 285.49 284.11 13.78 23567 24.5660 282.03 286.56 13.71 23568 24.5670 277.70 289.22 13.66 23569 24.5680 290.37 292.10 13.98 23570 24.5690 282.81 295.20 13.81 23571 24.5700 293.02 298.55 14.01 23572 24.5710 290.08 302.19 13.95 23573 24.5720 281.13 306.12 13.76 23574 24.5730 282.09 310.37 13.82 23575 24.5740 306.84 314.96 14.40 23576 24.5750 313.02 319.93 14.47 23577 24.5760 306.20 325.30 14.32 23578 24.5770 307.54 331.08 14.39 23579 24.5780 314.61 337.32 14.57 23580 24.5790 314.01 344.05 14.55 23581 24.5800 349.08 351.25 15.32 23582 24.5810 341.03 358.96 15.11 23583 24.5820 348.45 367.20 15.27 23584 24.5830 364.45 375.90 15.65 23585 24.5840 354.71 385.06 15.42 23586 24.5850 365.85 394.63 15.70 23587 24.5860 387.08 404.51 16.12 23588 24.5870 387.11 414.56 16.18 23589 24.5880 409.77 424.65 16.61 23590 24.5890 445.01 434.55 17.32 23591 24.5900 429.04 444.01 17.01 23592 24.5910 443.55 452.79 17.30 23593 24.5920 481.00 460.56 17.97 23594 24.5930 472.04 467.08 17.86 23595 24.5940 463.52 472.07 17.69 23596 24.5950 473.53 475.35 17.86 23597 24.5960 476.55 476.81 17.89 23598 24.5970 473.83 476.43 17.88 23599 24.5980 484.68 474.29 18.12 23600 24.5990 462.69 470.55 17.72 23601 24.6000 455.42 465.48 17.57 23602 24.6010 433.57 459.33 17.10 23603 24.6020 449.78 452.40 17.44 23604 24.6030 425.56 445.00 16.93 23605 24.6040 385.81 437.41 16.13 23606 24.6050 408.68 429.83 16.58 23607 24.6060 404.39 422.49 16.51 23608 24.6070 366.00 415.54 15.70 23609 24.6080 374.88 409.09 15.90 23610 24.6090 365.37 403.25 15.70 23611 24.6100 375.02 398.04 15.90 23612 24.6110 357.37 393.53 15.50 23613 24.6120 361.00 389.74 15.62 23614 24.6130 369.85 386.65 15.78 23615 24.6140 352.02 379.74 15.39 23616 24.6150 334.67 378.08 15.00 23617 24.6160 352.59 377.08 15.40 23618 24.6170 351.74 376.69 15.40 23619 24.6180 379.00 376.86 15.98 23620 24.6190 382.56 377.51 16.08 23621 24.6200 359.66 378.57 15.57 23622 24.6210 365.56 379.90 15.70 23623 24.6220 385.18 381.40 16.13 23624 24.6230 375.05 382.90 15.99 23625 24.6240 382.29 384.28 16.05 23626 24.6250 388.28 385.31 16.15 23627 24.6260 376.35 385.87 15.93 23628 24.6270 397.81 385.83 16.39 23629 24.6280 388.95 385.09 16.16 23630 24.6290 358.58 383.61 15.50 23631 24.6300 362.68 381.41 15.62 23632 24.6310 377.34 378.52 15.96 23633 24.6320 381.46 375.07 16.04 23634 24.6330 374.66 371.17 15.86 23635 24.6340 361.89 366.95 15.59 23636 24.6350 349.91 362.57 15.32 23637 24.6360 353.15 358.15 15.36 23638 24.6370 336.51 353.80 15.04 23639 24.6380 325.32 349.61 14.78 23640 24.6390 335.81 345.67 15.04 23641 24.6400 351.76 342.00 15.38 23642 24.6410 325.27 338.64 14.74 23643 24.6420 318.80 335.64 14.65 23644 24.6430 339.33 332.97 15.09 23645 24.6440 325.17 330.67 14.77 23646 24.6450 333.45 328.70 14.94 23647 24.6460 323.18 327.09 14.72 23648 24.6470 317.84 325.81 14.61 23649 24.6480 320.24 324.85 14.74 23650 24.6490 337.75 324.22 15.09 23651 24.6500 299.32 323.90 14.14 23652 24.6510 329.90 323.88 14.84 23653 24.6520 315.08 324.16 14.58 23654 24.6530 327.17 324.74 14.89 23655 24.6540 334.42 325.61 15.05 23656 24.6550 340.12 326.77 15.14 23657 24.6560 329.07 328.22 14.89 23658 24.6570 333.21 329.98 15.00 23659 24.6580 338.24 332.03 15.08 23660 24.6590 339.65 334.40 15.10 23661 24.6600 352.81 337.09 15.39 23662 24.6610 350.68 340.12 15.38 23663 24.6620 347.03 343.49 15.30 23664 24.6630 325.59 347.24 14.82 23665 24.6640 348.83 351.37 15.32 23666 24.6650 355.08 355.92 15.45 23667 24.6660 352.13 360.89 15.36 23668 24.6670 368.62 366.34 15.77 23669 24.6680 373.12 372.28 15.87 23670 24.6690 381.38 378.78 16.11 23671 24.6700 404.07 385.84 16.51 23672 24.6710 391.27 393.54 16.22 23673 24.6720 397.73 401.92 16.30 23674 24.6730 399.81 411.02 16.34 23675 24.6740 437.07 420.94 17.15 23676 24.6750 419.92 431.70 16.85 23677 24.6760 452.88 443.42 17.48 23678 24.6770 465.84 456.16 17.71 23679 24.6780 477.76 469.97 17.96 23680 24.6790 499.99 485.00 18.32 23681 24.6800 498.50 501.31 18.34 23682 24.6810 538.22 518.96 19.07 23683 24.6820 552.53 538.06 19.26 23684 24.6830 592.18 558.78 19.96 23685 24.6840 597.47 581.04 20.09 23686 24.6850 629.27 604.96 20.58 23687 24.6860 659.04 630.65 21.04 23688 24.6870 663.80 657.92 21.17 23689 24.6880 690.91 686.77 21.59 23690 24.6890 738.25 717.11 22.32 23691 24.6900 771.74 748.65 22.73 23692 24.6910 798.59 780.97 23.16 23693 24.6920 868.85 813.69 24.15 23694 24.6930 888.44 846.15 24.44 23695 24.6940 963.54 877.57 25.48 23696 24.6950 1007.39 907.01 26.07 23697 24.6960 1022.99 933.54 26.22 23698 24.6970 1049.63 956.21 26.58 23699 24.6980 1032.32 973.88 26.38 23700 24.6990 1055.70 985.79 26.70 23701 24.7000 1058.72 991.33 26.74 23702 24.7010 1056.74 990.15 26.74 23703 24.7020 1018.99 982.31 26.23 23704 24.7030 1026.19 968.16 26.31 23705 24.7040 987.25 948.36 25.78 23706 24.7050 961.05 923.88 25.46 23707 24.7060 886.08 895.63 24.48 23708 24.7070 857.46 864.70 24.13 23709 24.7080 843.90 832.16 23.90 23710 24.7090 802.88 798.78 23.25 23711 24.7100 762.07 765.42 22.68 23712 24.7110 738.69 732.57 22.33 23713 24.7120 703.00 700.73 21.75 23714 24.7130 662.16 670.29 21.14 23715 24.7140 624.73 641.29 20.55 23716 24.7150 612.71 614.06 20.34 23717 24.7160 609.13 588.54 20.30 23718 24.7170 585.84 564.72 19.86 23719 24.7180 553.35 542.50 19.31 23720 24.7190 530.80 521.95 18.98 23721 24.7200 543.80 502.88 19.20 23722 24.7210 484.25 485.24 18.04 23723 24.7220 437.77 468.96 17.12 23724 24.7230 458.43 453.89 17.57 23725 24.7240 448.55 439.95 17.38 23726 24.7250 435.94 427.09 17.12 23727 24.7260 432.16 415.18 17.06 23728 24.7270 413.29 404.16 16.65 23729 24.7280 407.24 393.95 16.58 23730 24.7290 401.43 384.47 16.50 23731 24.7300 398.75 375.70 16.41 23732 24.7310 405.01 367.53 16.54 23733 24.7320 377.94 359.94 15.99 23734 24.7330 365.23 352.89 15.69 23735 24.7340 367.37 346.32 15.71 23736 24.7350 339.36 340.17 15.13 23737 24.7360 342.18 334.45 15.21 23738 24.7370 362.83 329.11 15.65 23739 24.7380 336.56 324.09 15.05 23740 24.7390 353.46 319.41 15.40 23741 24.7400 327.88 315.02 14.85 23742 24.7410 314.81 310.90 14.57 23743 24.7420 337.82 307.03 15.09 23744 24.7430 336.93 303.40 15.08 23745 24.7440 330.83 299.98 14.96 23746 24.7450 334.22 296.77 15.02 23747 24.7460 299.47 293.74 14.24 23748 24.7470 302.82 290.90 14.29 23749 24.7480 300.18 288.21 14.26 23750 24.7490 294.27 285.67 14.12 23751 24.7500 294.82 283.28 14.13 23752 24.7510 307.44 281.01 14.42 23753 24.7520 281.09 278.86 13.74 23754 24.7530 287.03 276.83 13.92 23755 24.7540 285.63 274.89 13.89 23756 24.7550 293.66 273.04 14.04 23757 24.7560 287.61 271.27 13.92 23758 24.7570 266.85 269.58 13.37 23759 24.7580 293.27 267.95 14.04 23760 24.7590 291.30 266.38 14.02 23761 24.7600 302.35 264.86 14.30 23762 24.7610 287.86 263.39 13.92 23763 24.7620 283.84 261.96 13.76 23764 24.7630 282.93 260.58 13.80 23765 24.7640 277.46 259.25 13.66 23766 24.7650 285.32 257.97 13.86 23767 24.7660 267.93 256.73 13.49 23768 24.7670 251.53 255.53 13.00 23769 24.7680 246.53 254.39 12.90 23770 24.7690 261.23 253.28 13.26 23771 24.7700 270.18 252.22 13.45 23772 24.7710 277.42 251.21 13.67 23773 24.7720 259.85 250.32 13.17 23774 24.7730 243.22 249.39 12.77 23775 24.7740 278.42 248.49 13.71 23776 24.7750 258.63 247.63 13.24 23777 24.7760 248.65 246.80 12.98 23778 24.7770 250.58 246.00 12.98 23779 24.7780 252.79 245.24 13.06 23780 24.7790 262.45 244.50 13.29 23781 24.7800 272.59 243.79 13.54 23782 24.7810 250.18 243.11 13.00 23783 24.7820 230.51 242.45 12.49 23784 24.7830 275.65 241.82 13.62 23785 24.7840 263.14 241.21 13.35 23786 24.7850 253.62 240.62 13.07 23787 24.7860 258.85 240.05 13.21 23788 24.7870 245.41 239.50 12.82 23789 24.7880 240.79 238.97 12.73 23790 24.7890 236.38 238.46 12.59 23791 24.7900 266.28 237.96 13.38 23792 24.7910 241.47 237.48 12.71 23793 24.7920 227.32 237.02 12.34 23794 24.7930 242.04 236.57 12.72 23795 24.7940 244.61 236.14 12.79 23796 24.7950 225.68 235.71 12.30 23797 24.7960 243.50 235.31 12.78 23798 24.7970 236.54 234.91 12.60 23799 24.7980 228.14 234.53 12.43 23800 24.7990 241.51 234.16 12.80 23801 24.8000 242.75 233.79 12.74 23802 24.8010 233.17 233.44 12.56 23803 24.8020 254.23 233.10 13.09 23804 24.8030 240.83 232.77 12.77 23805 24.8040 228.38 232.45 12.38 23806 24.8050 239.80 232.17 12.72 23807 24.8060 226.08 231.87 12.33 23808 24.8070 212.06 231.58 11.92 23809 24.8080 233.55 231.29 12.52 23810 24.8090 239.86 231.01 12.72 23811 24.8100 241.22 230.74 12.76 23812 24.8110 229.06 230.48 12.43 23813 24.8120 240.81 230.22 12.73 23814 24.8130 219.87 229.97 12.14 23815 24.8140 220.54 229.73 12.20 23816 24.8150 215.75 229.49 12.05 23817 24.8160 203.90 229.26 11.71 23818 24.8170 228.31 229.04 12.36 23819 24.8180 226.37 228.82 12.34 23820 24.8190 236.21 228.61 12.60 23821 24.8200 215.35 228.40 12.01 23822 24.8210 234.87 228.20 12.53 23823 24.8220 255.16 228.01 13.09 23824 24.8230 234.25 227.82 12.54 23825 24.8240 220.59 227.63 12.19 23826 24.8250 211.11 227.45 11.89 23827 24.8260 190.18 227.27 11.29 23828 24.8270 201.16 227.10 11.62 23829 24.8280 222.09 226.75 12.21 23830 24.8290 224.41 226.59 12.28 23831 24.8300 235.13 226.43 12.51 23832 24.8310 225.99 226.28 12.30 23833 24.8320 243.53 226.13 12.77 23834 24.8330 221.46 225.98 12.21 23835 24.8340 219.30 225.84 12.12 23836 24.8350 213.02 225.70 11.97 23837 24.8360 222.04 225.56 12.23 23838 24.8370 206.93 225.43 11.78 23839 24.8380 203.29 225.30 11.71 23840 24.8390 217.45 225.17 12.09 23841 24.8400 193.66 225.05 11.41 23842 24.8410 218.11 224.93 12.05 23843 24.8420 206.42 224.81 11.75 23844 24.8430 204.37 224.70 11.76 23845 24.8440 215.90 224.59 12.05 23846 24.8450 214.94 224.48 12.04 23847 24.8460 233.11 224.38 12.53 23848 24.8470 229.11 224.28 12.41 23849 24.8480 223.51 224.18 12.22 23850 24.8490 196.24 224.08 11.42 23851 24.8500 205.86 223.99 11.72 23852 24.8510 204.21 223.90 11.67 23853 24.8520 206.16 223.81 11.73 23854 24.8530 209.70 223.72 11.83 23855 24.8540 216.01 223.64 11.99 23856 24.8550 207.12 223.56 11.83 23857 24.8560 211.21 223.48 11.86 23858 24.8570 211.57 223.41 11.91 23859 24.8580 186.96 223.33 11.22 23860 24.8590 211.56 223.26 11.91 23861 24.8600 222.04 223.20 12.24 23862 24.8610 225.33 223.13 12.32 23863 24.8620 212.23 223.07 12.00 23864 24.8630 203.86 223.01 11.74 23865 24.8640 203.68 222.95 11.67 23866 24.8650 212.77 222.89 11.96 23867 24.8660 218.81 222.84 12.14 23868 24.8670 226.83 222.79 12.38 23869 24.8680 204.06 222.74 11.71 23870 24.8690 223.83 222.69 12.22 23871 24.8700 213.42 222.65 11.98 23872 24.8710 229.22 222.60 12.37 23873 24.8720 207.51 222.56 11.77 23874 24.8730 196.44 222.53 11.52 23875 24.8740 224.82 222.49 12.31 23876 24.8750 202.16 222.46 11.68 23877 24.8760 209.82 222.43 11.93 23878 24.8770 213.44 222.40 11.97 23879 24.8780 220.66 222.38 12.18 23880 24.8790 226.39 222.36 12.37 23881 24.8800 229.40 222.34 12.45 23882 24.8810 227.89 222.33 12.41 23883 24.8820 212.41 222.31 11.98 23884 24.8830 207.48 222.30 11.80 23885 24.8840 199.59 222.30 11.60 23886 24.8850 209.63 222.29 11.88 23887 24.8860 218.66 222.29 12.10 23888 24.8870 218.67 222.30 12.12 23889 24.8880 224.13 222.30 12.25 23890 24.8890 199.83 222.31 11.56 23891 24.8900 226.66 222.32 12.32 23892 24.8910 202.76 222.34 11.69 23893 24.8920 224.80 222.36 12.33 23894 24.8930 222.68 222.39 12.27 23895 24.8940 217.39 222.42 12.10 23896 24.8950 213.93 222.45 12.01 23897 24.8960 212.91 222.49 11.96 23898 24.8970 197.12 222.54 11.52 23899 24.8980 208.76 222.58 11.85 23900 24.8990 212.35 222.64 11.91 23901 24.9000 213.24 222.70 11.96 23902 24.9010 212.13 222.76 11.95 23903 24.9020 203.36 222.84 11.74 23904 24.9030 216.15 222.91 12.07 23905 24.9040 219.93 223.00 12.16 23906 24.9050 204.89 223.09 11.75 23907 24.9060 216.72 223.19 12.12 23908 24.9070 192.02 223.30 11.39 23909 24.9080 202.21 223.42 11.65 23910 24.9090 186.09 223.55 11.20 23911 24.9100 214.62 223.68 12.00 23912 24.9110 204.33 223.83 11.70 23913 24.9120 195.27 223.99 11.47 23914 24.9130 202.40 224.17 11.67 23915 24.9140 220.46 224.35 12.16 23916 24.9150 199.83 224.55 11.63 23917 24.9160 211.14 224.77 11.93 23918 24.9170 206.12 225.00 11.81 23919 24.9180 197.73 225.25 11.50 23920 24.9190 190.44 225.52 11.33 23921 24.9200 204.96 225.81 11.76 23922 24.9210 199.12 226.12 11.57 23923 24.9220 210.93 226.46 11.92 23924 24.9230 209.35 226.83 11.90 23925 24.9240 213.78 227.23 12.01 23926 24.9250 193.11 227.65 11.38 23927 24.9260 211.68 228.12 11.92 23928 24.9270 202.33 228.61 11.70 23929 24.9280 215.42 229.16 12.08 23930 24.9290 210.69 229.74 11.90 23931 24.9300 212.92 230.38 11.96 23932 24.9310 207.17 231.07 11.83 23933 24.9320 203.06 231.83 11.74 23934 24.9330 222.19 232.65 12.24 23935 24.9340 215.34 233.53 12.10 23936 24.9350 220.04 234.50 12.13 23937 24.9360 216.39 235.55 12.04 23938 24.9370 207.56 236.70 11.84 23939 24.9380 226.82 237.94 12.40 23940 24.9390 225.37 239.29 12.36 23941 24.9400 224.50 240.76 12.30 23942 24.9410 224.49 242.34 12.26 23943 24.9420 233.51 244.05 12.56 23944 24.9430 226.91 245.89 12.35 23945 24.9440 213.02 247.85 11.94 23946 24.9450 217.76 249.93 12.07 23947 24.9460 241.82 252.12 12.72 23948 24.9470 234.48 254.40 12.53 23949 24.9480 208.95 256.73 11.84 23950 24.9490 231.32 259.08 12.47 23951 24.9500 251.06 261.40 12.99 23952 24.9510 254.31 263.61 13.10 23953 24.9520 255.58 265.64 13.11 23954 24.9530 255.47 267.41 13.14 23955 24.9540 270.16 268.85 13.53 23956 24.9550 267.95 269.87 13.42 23957 24.9560 264.23 270.43 13.28 23958 24.9570 232.80 270.50 12.52 23959 24.9580 239.41 270.08 12.64 23960 24.9590 249.88 269.18 12.90 23961 24.9600 242.50 267.87 12.75 23962 24.9610 253.64 266.20 13.05 23963 24.9620 244.27 263.89 12.83 23964 24.9630 230.41 261.77 12.44 23965 24.9640 239.33 259.54 12.77 23966 24.9650 239.38 257.27 12.76 23967 24.9660 237.20 255.01 12.63 23968 24.9670 236.50 252.81 12.62 23969 24.9680 217.35 250.69 12.14 23970 24.9690 238.57 248.69 12.71 23971 24.9700 231.72 246.81 12.50 23972 24.9710 214.72 245.05 12.00 23973 24.9720 212.85 243.43 11.96 23974 24.9730 226.11 241.95 12.34 23975 24.9740 225.13 240.58 12.26 23976 24.9750 238.09 239.35 12.64 23977 24.9760 232.52 238.23 12.49 23978 24.9770 216.93 237.04 12.08 23979 24.9780 217.17 236.13 12.08 23980 24.9790 206.13 235.32 11.82 23981 24.9800 225.50 234.60 12.35 23982 24.9810 234.05 233.97 12.54 23983 24.9820 233.64 233.41 12.55 23984 24.9830 222.87 232.93 12.27 23985 24.9840 237.04 232.53 12.70 23986 24.9850 204.88 232.19 11.71 23987 24.9860 217.56 231.92 12.05 23988 24.9870 229.22 231.71 12.39 23989 24.9880 236.58 231.57 12.67 23990 24.9890 221.01 231.48 12.21 23991 24.9900 214.14 231.46 12.02 23992 24.9910 215.01 231.49 12.01 23993 24.9920 213.70 231.58 11.99 23994 24.9930 229.34 231.73 12.41 23995 24.9940 238.96 231.94 12.66 23996 24.9950 217.24 232.21 12.11 23997 24.9960 235.86 232.53 12.60 23998 24.9970 204.56 232.90 11.74 23999 24.9980 233.66 233.33 12.48 24000 24.9990 232.46 233.81 12.51 24001 25.0000 210.07 234.34 11.99 24002 25.0010 216.56 234.89 12.10 24003 25.0020 225.49 235.48 12.32 24004 25.0030 220.01 236.09 12.17 24005 25.0040 218.50 236.70 12.11 24006 25.0050 218.96 237.29 12.12 24007 25.0060 220.71 237.85 12.21 24008 25.0070 238.29 238.35 12.63 24009 25.0080 232.99 238.78 12.51 24010 25.0090 213.22 239.11 11.95 24011 25.0100 227.32 239.32 12.36 24012 25.0110 232.61 239.40 12.49 24013 25.0120 233.24 239.34 12.49 24014 25.0130 234.16 239.14 12.54 24015 25.0140 238.63 238.80 12.70 24016 25.0150 226.86 238.34 12.35 24017 25.0160 210.97 237.76 11.93 24018 25.0170 230.20 237.10 12.44 24019 25.0180 234.08 236.36 12.57 24020 25.0190 241.91 235.58 12.76 24021 25.0200 224.05 234.76 12.21 24022 25.0210 214.74 233.93 12.03 24023 25.0220 233.76 233.10 12.55 24024 25.0230 214.03 232.29 11.97 24025 25.0240 215.90 231.50 12.01 24026 25.0250 237.71 230.75 12.61 24027 25.0260 233.92 230.02 12.56 24028 25.0270 233.88 229.34 12.49 24029 25.0280 220.66 228.70 12.17 24030 25.0290 238.34 228.10 12.66 24031 25.0300 199.57 227.54 11.55 24032 25.0310 219.87 227.02 12.16 24033 25.0320 225.79 226.54 12.37 24034 25.0330 219.07 226.09 12.20 24035 25.0340 189.83 225.68 11.33 24036 25.0350 214.28 225.29 12.02 24037 25.0360 216.33 224.95 12.02 24038 25.0370 214.23 224.62 12.03 24039 25.0380 234.54 224.33 12.56 24040 25.0390 222.54 224.06 12.24 24041 25.0400 216.65 223.82 12.02 24042 25.0410 205.76 223.60 11.74 24043 25.0420 187.68 223.40 11.20 24044 25.0430 194.83 223.21 11.41 24045 25.0440 223.57 223.05 12.24 24046 25.0450 222.62 222.91 12.22 24047 25.0460 218.40 222.78 12.14 24048 25.0470 225.68 222.67 12.33 24049 25.0480 206.93 222.57 11.78 24050 25.0490 223.29 222.49 12.21 24051 25.0500 212.11 222.42 11.95 24052 25.0510 217.86 222.37 12.07 24053 25.0520 218.49 222.33 12.11 24054 25.0530 215.24 222.30 12.03 24055 25.0540 216.16 222.29 12.03 24056 25.0550 221.27 222.29 12.21 24057 25.0560 208.30 222.31 11.84 24058 25.0570 205.53 222.34 11.76 24059 25.0580 200.39 222.38 11.63 24060 25.0590 221.23 221.14 12.18 24061 25.0600 229.99 221.22 12.43 24062 25.0610 234.21 221.31 12.57 24063 25.0620 227.37 221.41 12.36 24064 25.0630 220.33 221.53 12.21 24065 25.0640 222.03 221.67 12.24 24066 25.0650 226.22 221.82 12.34 24067 25.0660 209.59 221.95 11.83 24068 25.0670 188.96 222.14 11.28 24069 25.0680 223.09 222.35 12.25 24070 25.0690 223.09 222.57 12.26 24071 25.0700 199.55 222.82 11.66 24072 25.0710 216.74 223.10 12.05 24073 25.0720 223.02 223.40 12.21 24074 25.0730 219.07 223.73 12.14 24075 25.0740 220.04 224.09 12.17 24076 25.0750 234.38 224.48 12.57 24077 25.0760 220.50 224.91 12.17 24078 25.0770 223.12 225.37 12.27 24079 25.0780 217.56 225.88 12.12 24080 25.0790 202.12 226.43 11.67 24081 25.0800 218.09 227.03 12.09 24082 25.0810 227.12 227.68 12.37 24083 25.0820 227.76 228.39 12.40 24084 25.0830 224.41 229.17 12.31 24085 25.0840 216.97 230.02 12.09 24086 25.0850 206.71 230.94 11.86 24087 25.0860 215.79 231.95 12.05 24088 25.0870 211.23 233.05 11.93 24089 25.0880 209.20 234.25 11.86 24090 25.0890 228.81 235.56 12.40 24091 25.0900 225.33 236.99 12.35 24092 25.0910 224.39 238.54 12.26 24093 25.0920 234.42 240.22 12.54 24094 25.0930 241.04 242.04 12.76 24095 25.0940 242.58 244.00 12.77 24096 25.0950 229.43 246.10 12.41 24097 25.0960 214.47 248.34 11.99 24098 25.0970 230.15 250.69 12.43 24099 25.0980 232.90 253.14 12.52 24100 25.0990 250.69 255.66 12.98 24101 25.1000 256.26 258.20 13.10 24102 25.1010 266.96 260.69 13.39 24103 25.1020 270.85 263.06 13.49 24104 25.1030 245.44 265.24 12.83 24105 25.1040 267.85 267.12 13.44 24106 25.1050 271.00 268.61 13.55 24107 25.1060 263.90 269.65 13.32 24108 25.1070 276.34 270.16 13.63 24109 25.1080 278.27 270.12 13.67 24110 25.1090 263.21 269.53 13.30 24111 25.1100 267.25 268.43 13.43 24112 25.1110 258.92 266.88 13.22 24113 25.1120 254.28 264.96 13.07 24114 25.1130 258.50 262.76 13.18 24115 25.1140 254.95 260.38 13.11 24116 25.1150 253.40 257.89 13.08 24117 25.1160 259.41 255.37 13.21 24118 25.1170 254.32 252.88 13.05 24119 25.1180 238.82 250.46 12.69 24120 25.1190 235.42 248.15 12.60 24121 25.1200 231.52 245.95 12.48 24122 25.1210 246.30 243.90 12.88 24123 25.1220 247.89 241.99 12.91 24124 25.1230 242.29 240.22 12.81 24125 25.1240 238.94 238.58 12.72 24126 25.1250 230.31 237.08 12.47 24127 25.1260 221.40 235.71 12.22 24128 25.1270 222.37 234.45 12.25 24129 25.1280 220.87 233.30 12.23 24130 25.1290 235.20 232.25 12.59 24131 25.1300 226.99 231.30 12.34 24132 25.1310 216.69 230.44 12.02 24133 25.1320 192.68 229.65 11.33 24134 25.1330 214.07 228.94 11.95 24135 25.1340 233.30 228.29 12.59 24136 25.1350 210.66 227.71 11.95 24137 25.1360 206.39 227.19 11.80 24138 25.1370 205.01 226.72 11.77 24139 25.1380 217.14 226.30 12.08 24140 25.1390 238.26 225.93 12.68 24141 25.1400 228.78 225.61 12.44 24142 25.1410 207.84 225.32 11.86 24143 25.1420 227.30 225.09 12.35 24144 25.1430 221.05 224.88 12.19 24145 25.1440 223.11 224.72 12.27 24146 25.1450 217.57 224.60 12.12 24147 25.1460 236.04 224.51 12.60 24148 25.1470 232.80 224.46 12.51 24149 25.1480 235.28 224.44 12.59 24150 25.1490 230.33 224.46 12.47 24151 25.1500 207.23 224.52 11.80 24152 25.1510 221.27 224.62 12.22 24153 25.1520 229.28 224.76 12.41 24154 25.1530 207.45 224.93 11.77 24155 25.1540 207.03 225.15 11.79 24156 25.1550 203.06 225.40 11.68 24157 25.1560 213.29 225.70 11.95 24158 25.1570 212.84 226.05 11.97 24159 25.1580 213.81 226.43 11.99 24160 25.1590 222.34 226.86 12.22 24161 25.1600 230.64 227.32 12.47 24162 25.1610 213.39 227.83 12.01 24163 25.1620 212.12 228.37 11.97 24164 25.1630 226.64 228.92 12.40 24165 25.1640 208.98 229.50 11.91 24166 25.1650 210.56 230.08 11.91 24167 25.1660 203.20 230.64 11.68 24168 25.1670 220.72 231.18 12.19 24169 25.1680 209.49 231.66 11.88 24170 25.1690 210.59 232.08 11.92 24171 25.1700 219.37 232.41 12.17 24172 25.1710 225.50 232.63 12.35 24173 25.1720 221.60 232.74 12.20 24174 25.1730 213.35 232.73 11.95 24175 25.1740 204.61 232.60 11.74 24176 25.1750 215.80 232.35 12.04 24177 25.1760 236.96 232.00 12.62 24178 25.1770 221.38 231.57 12.17 24179 25.1780 209.29 231.06 11.88 24180 25.1790 238.77 230.51 12.64 24181 25.1800 203.71 229.92 11.69 24182 25.1810 203.36 229.31 11.70 24183 25.1820 215.51 228.70 12.02 24184 25.1830 215.18 228.09 12.00 24185 25.1840 217.75 227.49 12.08 24186 25.1850 220.01 226.90 12.17 24187 25.1860 216.93 226.32 12.09 24188 25.1870 202.31 225.76 11.71 24189 25.1880 208.88 225.22 11.87 24190 25.1890 216.93 224.69 12.03 24191 25.1900 203.94 224.18 11.71 24192 25.1910 221.94 223.68 12.19 24193 25.1920 220.20 223.20 12.17 24194 25.1930 200.17 222.73 11.62 24195 25.1940 200.90 222.29 11.61 24196 25.1950 213.67 221.86 11.97 24197 25.1960 211.21 221.45 11.91 24198 25.1970 210.80 221.06 11.91 24199 25.1980 216.36 220.68 12.04 24200 25.1990 200.87 220.33 11.64 24201 25.2000 215.63 220.00 12.04 24202 25.2010 202.10 219.69 11.65 24203 25.2020 209.03 219.39 11.86 24204 25.2030 198.97 219.12 11.57 24205 25.2040 209.49 219.27 11.91 24206 25.2050 211.74 219.03 11.96 24207 25.2060 202.37 218.80 11.68 24208 25.2070 202.84 218.59 11.68 24209 25.2080 216.56 218.39 12.10 24210 25.2090 207.98 218.21 11.87 24211 25.2100 206.01 218.03 11.83 24212 25.2110 213.09 217.87 12.01 24213 25.2120 201.85 217.71 11.62 24214 25.2130 199.82 217.57 11.56 24215 25.2140 211.94 217.43 11.89 24216 25.2150 212.52 217.30 11.96 24217 25.2160 188.43 217.18 11.29 24218 25.2170 203.02 217.06 11.68 24219 25.2180 208.38 216.95 11.81 24220 25.2190 215.41 216.85 12.04 24221 25.2200 207.35 216.75 11.82 24222 25.2210 202.44 216.66 11.67 24223 25.2220 209.81 216.57 11.90 24224 25.2230 197.77 216.49 11.52 24225 25.2240 208.77 216.41 11.78 24226 25.2250 204.16 216.34 11.71 24227 25.2260 195.28 216.26 11.44 24228 25.2270 196.63 216.20 11.47 24229 25.2280 204.94 216.13 11.73 24230 25.2290 202.03 216.07 11.66 24231 25.2300 199.50 216.01 11.56 24232 25.2310 206.47 215.95 11.76 24233 25.2320 189.03 215.90 11.25 24234 25.2330 197.65 215.85 11.53 24235 25.2340 194.41 215.80 11.49 24236 25.2350 207.41 215.75 11.79 24237 25.2360 210.77 215.71 11.87 24238 25.2370 189.86 215.66 11.28 24239 25.2380 209.62 215.62 11.89 24240 25.2390 223.00 215.58 12.28 24241 25.2400 205.01 215.54 11.72 24242 25.2410 207.23 215.51 11.85 24243 25.2420 188.27 215.47 11.29 24244 25.2430 195.18 215.43 11.47 24245 25.2440 194.99 215.40 11.45 24246 25.2450 202.84 215.37 11.71 24247 25.2460 203.34 215.34 11.67 24248 25.2470 186.62 215.31 11.22 24249 25.2480 212.36 215.28 11.94 24250 25.2490 225.93 215.26 12.36 24251 25.2500 199.80 215.23 11.59 24252 25.2510 196.49 215.20 11.55 24253 25.2520 202.59 215.18 11.63 24254 25.2530 205.24 215.15 11.73 24255 25.2540 190.35 215.13 11.32 24256 25.2550 205.41 215.11 11.79 24257 25.2560 196.71 215.09 11.52 24258 25.2570 205.16 215.07 11.73 24259 25.2580 209.85 215.05 11.88 24260 25.2590 192.41 215.03 11.39 24261 25.2600 197.63 215.01 11.55 24262 25.2610 218.84 214.99 12.16 24263 25.2620 218.59 214.97 12.13 24264 25.2630 206.95 214.96 11.79 24265 25.2640 196.56 214.94 11.53 24266 25.2650 202.10 214.92 11.69 24267 25.2660 205.58 214.91 11.76 24268 25.2670 220.95 214.89 12.20 24269 25.2680 218.84 214.88 12.17 24270 25.2690 200.16 214.87 11.54 24271 25.2700 188.49 214.85 11.21 24272 25.2710 201.08 214.84 11.70 24273 25.2720 215.75 214.83 12.07 24274 25.2730 199.08 214.81 11.57 24275 25.2740 211.64 214.80 11.96 24276 25.2750 212.30 214.79 11.95 24277 25.2760 210.05 214.78 11.88 24278 25.2770 212.09 214.77 11.90 24279 25.2780 201.85 214.76 11.62 24280 25.2790 226.58 214.75 12.37 24281 25.2800 193.05 214.74 11.41 24282 25.2810 198.38 214.73 11.51 24283 25.2820 216.54 214.72 12.05 24284 25.2830 213.00 214.71 12.01 24285 25.2840 230.69 214.70 12.51 24286 25.2850 207.38 214.70 11.77 24287 25.2860 199.55 214.69 11.56 24288 25.2870 219.04 214.68 12.12 24289 25.2880 236.62 214.67 12.60 24290 25.2890 209.97 214.67 11.88 24291 25.2900 205.85 214.66 11.76 24292 25.2910 213.94 214.65 11.99 24293 25.2920 204.71 214.65 11.75 24294 25.2930 189.20 214.64 11.25 24295 25.2940 198.35 214.63 11.55 24296 25.2950 180.74 214.63 11.03 24297 25.2960 199.17 214.62 11.60 24298 25.2970 212.05 214.62 12.00 24299 25.2980 195.24 214.61 11.49 24300 25.2990 208.04 214.61 11.82 24301 25.3000 192.97 214.60 11.41 24302 25.3010 218.12 214.51 12.10 24303 25.3020 222.27 214.51 12.22 24304 25.3030 200.78 214.51 11.60 24305 25.3040 208.81 214.50 11.84 24306 25.3050 203.16 214.50 11.71 24307 25.3060 202.19 214.50 11.68 24308 25.3070 209.28 214.49 11.86 24309 25.3080 190.75 214.49 11.30 24310 25.3090 192.39 214.49 11.35 24311 25.3100 200.26 214.49 11.62 24312 25.3110 203.77 214.49 11.69 24313 25.3120 211.49 214.48 11.92 24314 25.3130 207.49 214.48 11.85 24315 25.3140 209.77 214.48 11.89 24316 25.3150 210.75 214.48 11.95 24317 25.3160 226.56 214.48 12.35 24318 25.3170 199.18 214.48 11.56 24319 25.3180 201.85 214.48 11.65 24320 25.3190 216.24 214.48 12.09 24321 25.3200 220.32 214.48 12.19 24322 25.3210 214.42 214.48 11.97 24323 25.3220 192.01 214.48 11.37 24324 25.3230 214.09 214.48 12.00 24325 25.3240 205.22 214.48 11.80 24326 25.3250 211.56 214.48 11.92 24327 25.3260 216.96 214.48 12.05 24328 25.3270 222.74 214.48 12.22 24329 25.3280 208.70 214.48 11.81 24330 25.3290 206.28 214.48 11.79 24331 25.3300 211.52 214.48 11.92 24332 25.3310 205.53 214.49 11.70 24333 25.3320 228.47 214.49 12.42 24334 25.3330 204.28 214.49 11.75 24335 25.3340 189.34 214.49 11.32 24336 25.3350 217.34 214.49 12.10 24337 25.3360 214.82 214.50 12.00 24338 25.3370 204.73 214.50 11.73 24339 25.3380 214.31 214.50 12.02 24340 25.3390 210.04 214.50 11.97 24341 25.3400 202.10 214.51 11.67 24342 25.3410 188.42 214.51 11.21 24343 25.3420 193.10 214.51 11.36 24344 25.3430 200.58 214.52 11.67 24345 25.3440 194.80 214.52 11.46 24346 25.3450 207.42 214.52 11.81 24347 25.3460 205.18 214.53 11.74 24348 25.3470 187.33 214.53 11.21 24349 25.3480 208.87 214.54 11.89 24350 25.3490 204.31 214.54 11.73 24351 25.3500 201.72 214.55 11.66 24352 25.3510 205.93 214.55 11.76 24353 25.3520 207.38 214.56 11.81 24354 25.3530 210.28 214.56 11.87 24355 25.3540 210.82 214.57 11.93 24356 25.3550 213.01 214.57 11.99 24357 25.3560 207.49 214.58 11.81 24358 25.3570 219.68 214.59 12.15 24359 25.3580 201.02 214.59 11.64 24360 25.3590 186.86 214.60 11.21 24361 25.3600 176.94 214.60 10.91 24362 25.3610 208.67 214.68 11.85 24363 25.3620 228.78 214.68 12.37 24364 25.3630 213.47 214.69 12.00 24365 25.3640 209.62 214.70 11.89 24366 25.3650 198.67 214.71 11.55 24367 25.3660 195.92 214.72 11.48 24368 25.3670 205.22 214.72 11.70 24369 25.3680 203.68 214.73 11.67 24370 25.3690 197.05 214.74 11.50 24371 25.3700 196.47 214.75 11.49 24372 25.3710 198.43 214.76 11.57 24373 25.3720 214.36 214.77 12.04 24374 25.3730 198.11 214.78 11.53 24375 25.3740 194.06 214.79 11.51 24376 25.3750 211.70 214.80 11.95 24377 25.3760 211.07 214.81 11.88 24378 25.3770 193.07 214.82 11.42 24379 25.3780 194.79 214.83 11.50 24380 25.3790 184.85 214.84 11.16 24381 25.3800 186.47 214.85 11.23 24382 25.3810 220.07 214.86 12.15 24383 25.3820 220.06 214.88 12.19 24384 25.3830 202.57 214.89 11.73 24385 25.3840 211.54 214.90 11.93 24386 25.3850 213.48 214.91 12.01 24387 25.3860 188.72 214.93 11.26 24388 25.3870 224.54 214.94 12.28 24389 25.3880 211.26 214.95 11.98 24390 25.3890 212.48 214.97 11.93 24391 25.3900 212.82 214.98 11.95 24392 25.3910 225.20 214.99 12.33 24393 25.3920 213.54 215.01 12.03 24394 25.3930 203.36 215.02 11.63 24395 25.3940 207.37 215.04 11.79 24396 25.3950 203.51 215.05 11.71 24397 25.3960 197.25 215.07 11.57 24398 25.3970 205.18 215.09 11.76 24399 25.3980 229.22 215.10 12.39 24400 25.3990 208.33 215.12 11.83 24401 25.4000 213.31 215.10 12.00 24402 25.4010 186.79 215.12 11.21 24403 25.4020 193.27 215.14 11.42 24404 25.4030 191.76 215.16 11.36 24405 25.4040 201.59 215.18 11.67 24406 25.4050 208.12 215.20 11.86 24407 25.4060 203.99 215.22 11.70 24408 25.4070 221.95 215.24 12.21 24409 25.4080 204.86 215.26 11.72 24410 25.4090 209.16 215.28 11.85 24411 25.4100 198.08 215.30 11.53 24412 25.4110 200.62 215.32 11.60 24413 25.4120 203.10 215.35 11.64 24414 25.4130 206.93 215.37 11.84 24415 25.4140 217.24 215.39 12.03 24416 25.4150 201.90 215.41 11.64 24417 25.4160 199.77 215.44 11.61 24418 25.4170 201.59 215.46 11.66 24419 25.4180 200.96 215.49 11.66 24420 25.4190 208.51 215.52 11.83 24421 25.4200 204.14 215.54 11.73 24422 25.4210 215.96 215.57 12.04 24423 25.4220 216.62 215.60 12.07 24424 25.4230 234.78 215.62 12.56 24425 25.4240 195.16 215.65 11.40 24426 25.4250 199.30 215.68 11.56 24427 25.4260 206.78 215.71 11.75 24428 25.4270 197.40 215.74 11.46 24429 25.4280 201.57 215.77 11.65 24430 25.4290 203.74 215.81 11.69 24431 25.4300 202.57 215.84 11.72 24432 25.4310 204.53 215.87 11.75 24433 25.4320 209.71 215.91 11.88 24434 25.4330 220.75 215.94 12.16 24435 25.4340 221.03 215.98 12.17 24436 25.4350 208.87 216.02 11.86 24437 25.4360 194.22 216.05 11.45 24438 25.4370 199.23 216.09 11.59 24439 25.4380 199.80 216.13 11.63 24440 25.4390 223.01 216.17 12.26 24441 25.4400 216.91 216.21 12.08 24442 25.4410 197.44 216.25 11.53 24443 25.4420 186.05 216.30 11.18 24444 25.4430 204.65 216.34 11.69 24445 25.4440 210.87 216.29 11.95 24446 25.4450 225.19 216.34 12.29 24447 25.4460 211.59 216.38 11.95 24448 25.4470 219.05 216.43 12.15 24449 25.4480 207.37 216.48 11.79 24450 25.4490 201.42 216.53 11.68 24451 25.4500 205.00 216.59 11.78 24452 25.4510 210.29 216.64 11.95 24453 25.4520 191.05 216.70 11.34 24454 25.4530 207.62 216.75 11.83 24455 25.4540 182.25 216.81 11.10 24456 25.4550 215.17 216.87 12.00 24457 25.4560 211.04 216.93 11.97 24458 25.4570 202.83 216.99 11.70 24459 25.4580 196.26 217.05 11.46 24460 25.4590 199.62 217.12 11.55 24461 25.4600 197.48 217.18 11.55 24462 25.4610 215.08 217.25 12.06 24463 25.4620 215.81 217.32 12.02 24464 25.4630 197.30 217.40 11.47 24465 25.4640 209.03 217.47 11.86 24466 25.4650 211.22 217.55 11.93 24467 25.4660 204.90 217.62 11.80 24468 25.4670 211.95 217.70 11.93 24469 25.4680 201.13 217.79 11.61 24470 25.4690 212.29 217.87 11.94 24471 25.4700 213.99 217.96 12.03 24472 25.4710 198.55 218.05 11.53 24473 25.4720 193.82 218.14 11.39 24474 25.4730 203.08 218.23 11.66 24475 25.4740 217.84 218.33 12.12 24476 25.4750 222.37 218.43 12.25 24477 25.4760 210.22 218.53 11.86 24478 25.4770 204.92 218.64 11.74 24479 25.4780 202.79 218.75 11.67 24480 25.4790 215.11 218.86 12.03 24481 25.4800 211.17 218.98 11.90 24482 25.4810 194.61 219.10 11.43 24483 25.4820 208.91 219.22 11.85 24484 25.4830 194.95 219.35 11.47 24485 25.4840 208.72 219.48 11.83 24486 25.4850 198.60 219.61 11.56 24487 25.4860 205.10 219.75 11.80 24488 25.4870 198.60 219.90 11.56 24489 25.4880 189.90 220.04 11.30 24490 25.4890 199.06 220.20 11.58 24491 25.4900 210.32 220.35 11.89 24492 25.4910 199.81 220.52 11.62 24493 25.4920 197.56 220.69 11.54 24494 25.4930 197.85 220.86 11.55 24495 25.4940 219.18 221.04 12.12 24496 25.4950 217.15 221.23 12.10 24497 25.4960 205.26 221.43 11.73 24498 25.4970 213.72 221.62 11.90 24499 25.4980 205.12 221.83 11.74 24500 25.4990 217.56 222.05 12.11 24501 25.5000 213.97 222.27 11.98 24502 25.5010 215.70 222.51 12.01 24503 25.5020 220.65 222.75 12.19 24504 25.5030 212.80 223.00 11.98 24505 25.5040 221.57 223.26 12.19 24506 25.5050 216.62 223.53 12.07 24507 25.5060 210.11 223.81 11.88 24508 25.5070 221.60 224.10 12.21 24509 25.5080 222.67 224.40 12.22 24510 25.5090 221.57 224.72 12.21 24511 25.5100 211.13 225.05 11.97 24512 25.5110 222.18 225.39 12.26 24513 25.5120 225.57 225.75 12.30 24514 25.5130 222.98 226.12 12.26 24515 25.5140 218.67 226.51 12.16 24516 25.5150 210.71 226.92 11.92 24517 25.5160 213.64 227.35 12.01 24518 25.5170 217.44 227.79 12.07 24519 25.5180 207.53 228.26 11.85 24520 25.5190 211.87 228.74 11.91 24521 25.5200 211.62 229.26 11.89 24522 25.5210 222.81 229.79 12.24 24523 25.5220 234.99 230.35 12.55 24524 25.5230 230.35 230.94 12.37 24525 25.5240 200.76 231.56 11.64 24526 25.5250 218.87 232.21 12.14 24527 25.5260 224.45 232.90 12.29 24528 25.5270 233.55 233.62 12.52 24529 25.5280 234.03 234.38 12.53 24530 25.5290 227.38 235.18 12.41 24531 25.5300 235.63 236.03 12.54 24532 25.5310 237.54 236.92 12.61 24533 25.5320 224.27 237.86 12.22 24534 25.5330 231.66 238.86 12.49 24535 25.5340 237.89 239.91 12.58 24536 25.5350 228.56 241.03 12.40 24537 25.5360 224.82 242.22 12.28 24538 25.5370 230.87 243.48 12.47 24539 25.5380 219.63 244.81 12.14 24540 25.5390 232.11 246.23 12.49 24541 25.5400 236.45 247.74 12.62 24542 25.5410 243.04 249.32 12.74 24543 25.5420 235.80 251.03 12.64 24544 25.5430 242.91 252.85 12.80 24545 25.5440 230.52 254.79 12.45 24546 25.5450 250.81 256.86 12.94 24547 25.5460 246.61 259.07 12.88 24548 25.5470 245.09 261.43 12.85 24549 25.5480 257.30 263.95 13.15 24550 25.5490 245.22 266.64 12.79 24551 25.5500 247.88 269.53 12.86 24552 25.5510 251.01 272.62 12.96 24553 25.5520 248.69 275.95 12.98 24554 25.5530 281.08 279.50 13.77 24555 25.5540 275.39 283.33 13.62 24556 25.5550 251.82 287.44 12.98 24557 25.5560 255.08 291.84 13.08 24558 25.5570 272.13 296.57 13.54 24559 25.5580 272.57 301.66 13.53 24560 25.5590 290.22 307.10 13.93 24561 25.5600 278.30 312.92 13.75 24562 25.5610 324.31 319.15 14.77 24563 25.5620 322.21 325.75 14.78 24564 25.5630 334.46 332.75 15.01 24565 25.5640 328.20 340.14 14.82 24566 25.5650 333.19 347.89 14.98 24567 25.5660 344.45 355.92 15.19 24568 25.5670 332.77 364.21 14.93 24569 25.5680 360.49 372.64 15.57 24570 25.5690 397.45 381.09 16.33 24571 25.5700 409.33 389.42 16.62 24572 25.5710 421.65 397.44 16.89 24573 25.5720 410.33 404.97 16.64 24574 25.5730 418.91 411.76 16.80 24575 25.5740 424.22 417.60 16.87 24576 25.5750 422.34 422.30 16.84 24577 25.5760 447.15 425.64 17.32 24578 25.5770 427.38 427.50 16.97 24579 25.5780 426.76 427.80 16.98 24580 25.5790 448.04 426.52 17.36 24581 25.5800 431.64 423.72 17.07 24582 25.5810 428.13 419.52 17.02 24583 25.5820 454.53 414.08 17.47 24584 25.5830 388.81 407.62 16.21 24585 25.5840 387.45 400.34 16.14 24586 25.5850 403.45 392.48 16.44 24587 25.5860 363.63 384.23 15.67 24588 25.5870 369.29 375.79 15.80 24589 25.5880 344.40 367.34 15.26 24590 25.5890 367.56 358.97 15.72 24591 25.5900 331.67 350.81 14.91 24592 25.5910 334.42 342.94 14.98 24593 25.5920 325.88 335.41 14.83 24594 25.5930 302.88 328.23 14.31 24595 25.5940 297.70 321.45 14.20 24596 25.5950 313.13 315.08 14.51 24597 25.5960 300.52 309.07 14.24 24598 25.5970 277.18 303.47 13.66 24599 25.5980 280.65 298.24 13.72 24600 25.5990 276.48 293.34 13.65 24601 25.6000 292.91 288.80 14.04 24602 25.6010 274.68 284.56 13.64 24603 25.6020 271.23 280.62 13.48 24604 25.6030 254.54 276.95 13.06 24605 25.6040 272.65 273.53 13.47 24606 25.6050 250.50 270.35 12.96 24607 25.6060 235.48 267.39 12.56 24608 25.6070 266.36 264.63 13.40 24609 25.6080 252.23 262.06 13.03 24610 25.6090 250.91 259.66 12.94 24611 25.6100 249.50 257.41 12.94 24612 25.6110 256.53 255.32 13.16 24613 25.6120 253.25 253.36 13.07 24614 25.6130 240.67 251.52 12.74 24615 25.6140 232.46 249.81 12.51 24616 25.6150 226.18 248.20 12.35 24617 25.6160 242.36 246.68 12.72 24618 25.6170 226.72 245.26 12.31 24619 25.6180 208.70 243.93 11.85 24620 25.6190 233.90 242.68 12.59 24621 25.6200 229.77 241.49 12.49 24622 25.6210 245.98 240.38 12.87 24623 25.6220 227.55 239.33 12.40 24624 25.6230 208.54 238.34 11.87 24625 25.6240 222.82 237.40 12.27 24626 25.6250 225.38 236.51 12.32 24627 25.6260 244.20 235.68 12.78 24628 25.6270 224.59 234.93 12.30 24629 25.6280 229.40 234.18 12.45 24630 25.6290 217.52 233.46 12.04 24631 25.6300 210.87 232.79 11.89 24632 25.6310 205.99 232.15 11.80 24633 25.6320 216.08 231.54 12.00 24634 25.6330 217.30 230.96 12.05 24635 25.6340 208.41 230.41 11.85 24636 25.6350 216.03 229.89 12.06 24637 25.6360 231.41 229.39 12.48 24638 25.6370 214.80 228.91 11.97 24639 25.6380 204.78 228.46 11.76 24640 25.6390 221.81 228.03 12.22 24641 25.6400 221.89 227.62 12.23 24642 25.6410 227.62 227.23 12.38 24643 25.6420 227.68 226.86 12.35 24644 25.6430 211.63 226.50 11.90 24645 25.6440 205.13 226.16 11.72 24646 25.6450 230.07 225.84 12.38 24647 25.6460 213.67 225.53 11.98 24648 25.6470 221.45 225.24 12.24 24649 25.6480 200.42 224.95 11.61 24650 25.6490 223.18 224.68 12.21 24651 25.6500 219.85 224.43 12.16 24652 25.6510 215.34 224.18 12.07 24653 25.6520 207.82 223.95 11.81 24654 25.6530 207.46 223.73 11.79 24655 25.6540 227.49 223.51 12.36 24656 25.6550 211.95 223.31 11.94 24657 25.6560 202.31 223.12 11.67 24658 25.6570 227.50 222.93 12.34 24659 25.6580 205.31 222.76 11.75 24660 25.6590 229.15 222.59 12.44 24661 25.6600 206.62 222.43 11.81 24662 25.6610 196.89 222.29 11.53 24663 25.6620 214.92 222.14 11.99 24664 25.6630 205.37 222.01 11.75 24665 25.6640 216.89 221.88 12.07 24666 25.6650 202.13 221.77 11.66 24667 25.6660 208.52 221.65 11.85 24668 25.6670 200.53 221.55 11.63 24669 25.6680 203.91 221.45 11.70 24670 25.6690 198.87 221.36 11.56 24671 25.6700 210.04 221.28 11.88 24672 25.6710 203.05 221.20 11.73 24673 25.6720 205.77 221.13 11.75 24674 25.6730 225.75 221.07 12.33 24675 25.6740 209.41 221.02 11.89 24676 25.6750 211.50 220.97 11.92 24677 25.6760 197.84 220.93 11.54 24678 25.6770 206.23 220.89 11.81 24679 25.6780 212.66 220.87 11.98 24680 25.6790 186.58 220.85 11.16 24681 25.6800 219.24 220.83 12.11 24682 25.6810 217.33 220.83 12.10 24683 25.6820 210.96 220.83 11.91 24684 25.6830 208.43 220.84 11.83 24685 25.6840 211.58 220.86 11.93 24686 25.6850 207.02 220.89 11.76 24687 25.6860 220.41 220.93 12.17 24688 25.6870 191.32 220.97 11.34 24689 25.6880 216.96 221.03 12.08 24690 25.6890 223.25 221.09 12.25 24691 25.6900 208.15 221.17 11.87 24692 25.6910 209.53 221.26 11.85 24693 25.6920 221.78 221.36 12.21 24694 25.6930 212.01 221.47 11.95 24695 25.6940 216.07 221.60 12.04 24696 25.6950 207.38 221.74 11.83 24697 25.6960 208.63 221.90 11.80 24698 25.6970 200.57 222.07 11.59 24699 25.6980 200.69 222.26 11.62 24700 25.6990 220.47 222.47 12.15 24701 25.7000 210.77 222.69 11.91 24702 25.7010 214.65 222.94 12.04 24703 25.7020 225.73 223.22 12.31 24704 25.7030 218.47 223.52 12.11 24705 25.7040 225.91 223.84 12.27 24706 25.7050 221.94 224.20 12.21 24707 25.7060 211.93 224.59 11.96 24708 25.7070 228.51 225.01 12.37 24709 25.7080 215.36 225.47 12.05 24710 25.7090 228.23 225.97 12.37 24711 25.7100 221.74 226.51 12.22 24712 25.7110 226.51 227.10 12.34 24713 25.7120 214.68 227.74 12.05 24714 25.7130 231.48 228.44 12.47 24715 25.7140 225.02 229.20 12.32 24716 25.7150 236.99 230.02 12.61 24717 25.7160 230.65 230.90 12.44 24718 25.7170 227.02 231.87 12.36 24719 25.7180 221.14 232.90 12.18 24720 25.7190 241.73 234.01 12.76 24721 25.7200 229.17 235.20 12.46 24722 25.7210 232.76 236.47 12.53 24723 25.7220 225.86 237.82 12.33 24724 25.7230 230.90 241.49 12.47 24725 25.7240 226.04 242.99 12.34 24726 25.7250 241.64 244.52 12.73 24727 25.7260 245.76 246.09 12.88 24728 25.7270 245.32 247.65 12.90 24729 25.7280 245.29 249.19 12.88 24730 25.7290 223.59 250.65 12.29 24731 25.7300 220.31 252.00 12.23 24732 25.7310 233.67 253.19 12.55 24733 25.7320 228.30 254.18 12.40 24734 25.7330 249.59 254.91 12.97 24735 25.7340 268.50 255.37 13.41 24736 25.7350 243.20 255.52 12.81 24737 25.7360 254.81 255.36 13.12 24738 25.7370 264.40 254.89 13.35 24739 25.7380 231.72 254.14 12.52 24740 25.7390 227.82 253.14 12.42 24741 25.7400 230.03 251.93 12.48 24742 25.7410 226.45 250.56 12.31 24743 25.7420 204.98 249.07 11.74 24744 25.7430 238.70 247.51 12.68 24745 25.7440 247.84 245.91 12.93 24746 25.7450 220.31 244.31 12.24 24747 25.7460 228.11 242.74 12.42 24748 25.7470 214.44 241.21 12.05 24749 25.7480 214.68 239.74 12.03 24750 25.7490 227.01 238.34 12.38 24751 25.7500 231.22 237.02 12.49 24752 25.7510 219.61 235.77 12.19 24753 25.7520 240.68 234.60 12.72 24754 25.7530 233.55 233.51 12.56 24755 25.7540 245.87 232.50 12.88 24756 25.7550 238.63 231.56 12.64 24757 25.7560 247.13 230.68 12.92 24758 25.7570 222.37 229.87 12.30 24759 25.7580 234.65 229.12 12.57 24760 25.7590 220.45 228.42 12.20 24761 25.7600 204.50 227.77 11.72 24762 25.7610 215.08 227.18 12.00 24763 25.7620 224.90 226.62 12.27 24764 25.7630 222.98 226.10 12.30 24765 25.7640 220.23 225.63 12.20 24766 25.7650 203.60 225.18 11.66 24767 25.7660 202.06 224.77 11.69 24768 25.7670 220.48 224.38 12.21 24769 25.7680 224.32 224.02 12.31 24770 25.7690 234.54 223.69 12.55 24771 25.7700 227.73 223.38 12.37 24772 25.7710 219.11 223.09 12.15 24773 25.7720 220.70 222.82 12.19 24774 25.7730 213.83 222.56 11.99 24775 25.7740 209.33 222.33 11.88 24776 25.7750 201.37 222.10 11.65 24777 25.7760 207.86 221.90 11.84 24778 25.7770 207.46 221.70 11.82 24779 25.7780 220.82 221.52 12.13 24780 25.7790 224.82 221.35 12.27 24781 25.7800 224.64 221.18 12.31 24782 25.7810 208.20 221.03 11.82 24783 25.7820 202.56 220.89 11.68 24784 25.7830 209.65 220.76 11.88 24785 25.7840 207.89 220.63 11.81 24786 25.7850 199.86 220.51 11.60 24787 25.7860 202.15 220.40 11.69 24788 25.7870 231.41 220.29 12.47 24789 25.7880 204.33 220.20 11.71 24790 25.7890 202.60 220.10 11.68 24791 25.7900 214.04 220.01 12.02 24792 25.7910 215.84 219.93 12.07 24793 25.7920 212.83 219.85 12.00 24794 25.7930 220.66 219.78 12.20 24795 25.7940 195.68 219.71 11.48 24796 25.7950 224.03 219.65 12.28 24797 25.7960 214.58 219.59 12.06 24798 25.7970 222.77 219.53 12.28 24799 25.7980 221.11 219.48 12.19 24800 25.7990 213.75 219.43 12.02 24801 25.8000 204.18 219.38 11.79 24802 25.8010 193.03 219.34 11.39 24803 25.8020 219.76 219.29 12.20 24804 25.8030 209.09 219.26 11.87 24805 25.8040 218.64 219.22 12.07 24806 25.8050 218.82 219.19 12.15 24807 25.8060 210.04 219.16 11.89 24808 25.8070 217.82 219.13 12.11 24809 25.8080 197.99 219.10 11.50 24810 25.8090 220.24 219.08 12.19 24811 25.8100 217.24 219.06 12.09 24812 25.8110 207.63 219.04 11.83 24813 25.8120 215.69 219.02 12.07 24814 25.8130 193.03 219.01 11.41 24815 25.8140 209.35 218.99 11.91 24816 25.8150 215.02 218.98 12.03 24817 25.8160 205.57 218.97 11.73 24818 25.8170 203.60 218.96 11.71 24819 25.8180 238.69 218.95 12.70 24820 25.8190 224.87 218.95 12.35 24821 25.8200 215.26 218.94 12.03 24822 25.8210 208.27 218.94 11.86 24823 25.8220 207.56 218.94 11.79 24824 25.8230 209.61 218.93 11.85 24825 25.8240 204.36 218.94 11.71 24826 25.8250 212.16 218.94 11.95 24827 25.8260 219.90 218.94 12.21 24828 25.8270 217.78 218.95 12.12 24829 25.8280 215.64 218.95 12.04 24830 25.8290 209.57 218.96 11.89 24831 25.8300 210.85 218.97 11.93 24832 25.8310 218.04 218.98 12.12 24833 25.8320 197.59 218.99 11.50 24834 25.8330 200.71 219.00 11.65 24835 25.8340 202.19 219.02 11.68 24836 25.8350 210.29 219.03 11.90 24837 25.8360 221.57 219.05 12.25 24838 25.8370 203.43 219.06 11.67 24839 25.8380 205.17 219.08 11.79 24840 25.8390 207.34 219.10 11.82 24841 25.8400 221.36 219.12 12.20 24842 25.8410 206.70 219.14 11.79 24843 25.8420 226.21 219.16 12.33 24844 25.8430 208.84 219.19 11.85 24845 25.8440 231.09 219.21 12.44 24846 25.8450 198.21 219.24 11.49 24847 25.8460 214.98 219.26 12.08 24848 25.8470 199.00 219.29 11.59 24849 25.8480 205.13 219.32 11.72 24850 25.8490 218.21 219.35 12.09 24851 25.8500 205.72 219.38 11.79 24852 25.8510 214.40 219.41 12.00 24853 25.8520 220.56 219.44 12.19 24854 25.8530 207.63 219.48 11.79 24855 25.8540 223.70 219.51 12.32 24856 25.8550 207.72 219.54 11.81 24857 25.8560 215.16 219.58 12.02 24858 25.8570 212.38 219.62 11.96 24859 25.8580 232.52 219.66 12.53 24860 25.8590 226.39 219.70 12.34 24861 25.8600 218.60 219.74 12.14 24862 25.8610 215.97 219.78 12.07 24863 25.8620 218.59 219.82 12.12 24864 25.8630 219.27 219.87 12.16 24865 25.8640 208.87 219.91 11.83 24866 25.8650 225.35 219.96 12.34 24867 25.8660 201.85 220.01 11.63 24868 25.8670 212.54 220.05 11.92 24869 25.8680 216.25 220.10 12.04 24870 25.8690 216.67 220.15 12.12 24871 25.8700 231.00 220.21 12.51 24872 25.8710 212.66 220.26 11.94 24873 25.8720 220.12 220.31 12.16 24874 25.8730 195.52 220.37 11.46 24875 25.8740 208.08 220.43 11.82 24876 25.8750 222.95 220.48 12.27 24877 25.8760 219.38 220.54 12.17 24878 25.8770 221.37 220.60 12.19 24879 25.8780 225.44 220.66 12.27 24880 25.8790 215.17 220.73 12.02 24881 25.8800 211.88 220.79 11.98 24882 25.8810 201.21 220.86 11.61 24883 25.8820 191.00 220.93 11.30 24884 25.8830 202.05 220.99 11.63 24885 25.8840 210.74 221.06 11.89 24886 25.8850 207.69 221.13 11.77 24887 25.8860 219.83 221.21 12.10 24888 25.8870 229.41 221.28 12.38 24889 25.8880 230.64 221.36 12.47 24890 25.8890 214.69 221.44 12.00 24891 25.8900 206.03 221.51 11.76 24892 25.8910 204.82 221.60 11.71 24893 25.8920 216.62 221.68 12.06 24894 25.8930 204.88 221.76 11.77 24895 25.8940 218.52 221.85 12.14 24896 25.8950 215.73 221.93 12.05 24897 25.8960 232.50 222.02 12.53 24898 25.8970 221.36 222.11 12.17 24899 25.8980 208.74 222.21 11.88 24900 25.8990 222.19 222.30 12.20 24901 25.9000 203.42 222.69 11.69 24902 25.9010 210.32 222.79 11.87 24903 25.9020 217.08 222.89 12.04 24904 25.9030 238.69 222.99 12.64 24905 25.9040 229.45 223.10 12.43 24906 25.9050 240.23 223.21 12.74 24907 25.9060 233.88 223.32 12.58 24908 25.9070 207.42 223.43 11.84 24909 25.9080 222.21 223.55 12.23 24910 25.9090 218.62 223.66 12.12 24911 25.9100 204.72 223.78 11.78 24912 25.9110 206.54 223.90 11.79 24913 25.9120 227.41 224.03 12.32 24914 25.9130 204.46 224.15 11.70 24915 25.9140 204.24 224.29 11.73 24916 25.9150 196.33 224.42 11.49 24917 25.9160 222.11 224.55 12.23 24918 25.9170 227.01 224.69 12.34 24919 25.9180 212.16 224.83 11.94 24920 25.9190 223.91 224.97 12.30 24921 25.9200 225.61 225.12 12.29 24922 25.9210 225.84 225.27 12.28 24923 25.9220 214.06 225.42 11.92 24924 25.9230 216.67 225.58 12.02 24925 25.9240 229.01 225.74 12.45 24926 25.9250 214.05 225.90 12.02 24927 25.9260 221.62 226.07 12.24 24928 25.9270 222.29 226.24 12.22 24929 25.9280 238.06 226.41 12.68 24930 25.9290 216.35 226.59 12.05 24931 25.9300 223.01 226.77 12.24 24932 25.9310 220.94 226.96 12.18 24933 25.9320 213.98 227.15 12.01 24934 25.9330 219.12 227.34 12.18 24935 25.9340 220.03 227.54 12.22 24936 25.9350 220.16 227.74 12.13 24937 25.9360 230.62 227.95 12.44 24938 25.9370 210.79 228.16 11.92 24939 25.9380 208.25 228.38 11.85 24940 25.9390 219.66 228.61 12.16 24941 25.9400 214.16 228.83 11.99 24942 25.9410 211.83 229.07 11.93 24943 25.9420 221.26 229.31 12.18 24944 25.9430 203.57 229.55 11.70 24945 25.9440 215.38 229.80 11.99 24946 25.9450 217.12 230.06 12.05 24947 25.9460 223.13 230.32 12.23 24948 25.9470 224.25 231.05 12.32 24949 25.9480 224.84 231.33 12.28 24950 25.9490 217.61 231.62 12.02 24951 25.9500 219.79 231.91 12.15 24952 25.9510 237.08 232.22 12.61 24953 25.9520 211.96 232.53 11.93 24954 25.9530 226.62 232.84 12.32 24955 25.9540 235.37 233.17 12.60 24956 25.9550 240.16 233.51 12.66 24957 25.9560 251.11 233.85 12.95 24958 25.9570 218.38 234.21 12.13 24959 25.9580 238.55 234.57 12.66 24960 25.9590 226.63 234.94 12.31 24961 25.9600 240.44 235.33 12.69 24962 25.9610 215.09 235.73 12.01 24963 25.9620 231.27 236.13 12.48 24964 25.9630 226.78 236.55 12.37 24965 25.9640 222.84 236.99 12.25 24966 25.9650 200.07 237.43 11.62 24967 25.9660 217.81 237.89 12.08 24968 25.9670 230.39 238.36 12.46 24969 25.9680 234.67 238.85 12.60 24970 25.9690 230.20 239.35 12.44 24971 25.9700 222.25 239.87 12.25 24972 25.9710 215.44 240.41 12.11 24973 25.9720 224.93 240.96 12.28 24974 25.9730 219.89 241.17 12.18 24975 25.9740 236.00 241.76 12.63 24976 25.9750 243.13 242.38 12.79 24977 25.9760 241.57 243.01 12.75 24978 25.9770 241.09 243.68 12.70 24979 25.9780 226.52 244.36 12.33 24980 25.9790 226.57 245.07 12.35 24981 25.9800 219.27 245.80 12.12 24982 25.9810 217.30 246.57 12.12 24983 25.9820 249.37 247.36 12.94 24984 25.9830 239.78 248.19 12.71 24985 25.9840 244.69 249.05 12.83 24986 25.9850 234.04 249.94 12.57 24987 25.9860 243.84 250.87 12.80 24988 25.9870 234.44 251.84 12.53 24989 25.9880 227.62 252.86 12.35 24990 25.9890 246.38 253.92 12.83 24991 25.9900 251.87 255.02 13.01 24992 25.9910 259.37 256.18 13.19 24993 25.9920 265.38 257.39 13.30 24994 25.9930 253.25 258.66 13.03 24995 25.9940 243.24 259.98 12.82 24996 25.9950 258.59 261.38 13.16 24997 25.9960 251.41 262.84 12.95 24998 25.9970 268.69 264.37 13.44 24999 25.9980 270.22 265.98 13.52 25000 25.9990 269.41 267.67 13.49 25001 26.0000 269.39 269.45 13.48 25002 26.0010 260.89 271.31 13.23 25003 26.0020 274.66 273.26 13.59 25004 26.0030 281.18 275.30 13.78 25005 26.0040 265.76 277.43 13.43 25006 26.0050 265.56 279.66 13.36 25007 26.0060 271.38 282.63 13.52 25008 26.0070 286.95 285.03 13.85 25009 26.0080 282.53 287.50 13.73 25010 26.0090 286.22 290.04 13.86 25011 26.0100 290.59 292.63 13.97 25012 26.0110 303.93 295.24 14.28 25013 26.0120 298.88 297.86 14.16 25014 26.0130 294.76 300.47 14.12 25015 26.0140 308.94 303.03 14.46 25016 26.0150 308.78 305.53 14.36 25017 26.0160 287.49 307.96 13.90 25018 26.0170 311.23 310.29 14.45 25019 26.0180 304.33 312.52 14.29 25020 26.0190 293.53 314.66 14.07 25021 26.0200 321.81 316.72 14.74 25022 26.0210 305.08 318.72 14.34 25023 26.0220 318.74 320.69 14.64 25024 26.0230 319.69 322.66 14.70 25025 26.0240 301.85 324.67 14.29 25026 26.0250 319.36 326.77 14.69 25027 26.0260 325.53 328.97 14.85 25028 26.0270 325.80 331.32 14.82 25029 26.0280 335.05 333.84 15.00 25030 26.0290 344.21 336.57 15.24 25031 26.0300 330.85 339.54 14.92 25032 26.0310 360.93 342.76 15.54 25033 26.0320 337.00 346.25 15.03 25034 26.0330 319.88 350.06 14.64 25035 26.0340 341.06 354.17 15.14 25036 26.0350 339.28 358.63 15.08 25037 26.0360 348.96 363.46 15.33 25038 26.0370 357.81 368.67 15.53 25039 26.0380 362.43 374.30 15.64 25040 26.0390 348.31 380.37 15.32 25041 26.0400 374.46 386.92 15.87 25042 26.0410 375.35 393.95 15.86 25043 26.0420 393.00 401.55 16.19 25044 26.0430 395.55 409.71 16.31 25045 26.0440 433.84 418.51 17.08 25046 26.0450 445.10 427.99 17.32 25047 26.0460 418.54 438.20 16.84 25048 26.0470 404.21 449.23 16.48 25049 26.0480 428.95 461.08 16.97 25050 26.0490 442.52 473.88 17.25 25051 26.0500 455.61 487.68 17.53 25052 26.0510 495.27 502.66 18.31 25053 26.0520 478.68 518.79 17.95 25054 26.0530 462.87 536.26 17.66 25055 26.0540 490.12 555.18 18.20 25056 26.0550 512.02 575.63 18.59 25057 26.0560 540.65 597.83 19.12 25058 26.0570 575.25 621.83 19.69 25059 26.0580 558.41 647.89 19.41 25060 26.0590 598.69 676.12 20.10 25061 26.0600 614.61 706.64 20.34 25062 26.0610 660.91 739.72 21.07 25063 26.0620 666.03 775.45 21.15 25064 26.0630 720.22 813.91 22.05 25065 26.0640 734.81 855.27 22.28 25066 26.0650 779.21 899.72 22.91 25067 26.0660 857.34 946.94 23.99 25068 26.0670 886.67 996.97 24.40 25069 26.0680 982.12 1049.73 25.73 25070 26.0690 1017.39 1104.44 26.19 25071 26.0700 1070.63 1160.64 26.83 25072 26.0710 1155.84 1217.57 27.88 25073 26.0720 1201.00 1273.98 28.41 25074 26.0730 1284.32 1328.40 29.41 25075 26.0740 1378.67 1379.36 30.46 25076 26.0750 1405.16 1425.00 30.79 25077 26.0760 1448.39 1463.46 31.30 25078 26.0770 1500.17 1492.99 31.81 25079 26.0780 1498.48 1512.20 31.80 25080 26.0790 1492.25 1520.13 31.73 25081 26.0800 1444.31 1516.30 31.20 25082 26.0810 1454.69 1500.95 31.31 25083 26.0820 1391.10 1474.78 30.63 25084 26.0830 1339.01 1439.26 30.06 25085 26.0840 1270.54 1395.97 29.30 25086 26.0850 1252.77 1346.62 29.09 25087 26.0860 1199.84 1293.11 28.48 25088 26.0870 1135.45 1237.23 27.70 25089 26.0880 1090.05 1180.28 27.12 25090 26.0890 995.30 1123.58 25.92 25091 26.0900 948.42 1068.18 25.31 25092 26.0910 939.42 1014.63 25.21 25093 26.0920 856.34 963.58 24.06 25094 26.0930 811.59 915.18 23.44 25095 26.0940 809.89 869.68 23.41 25096 26.0950 766.68 827.20 22.74 25097 26.0960 739.95 787.49 22.35 25098 26.0970 737.80 750.75 22.31 25099 26.0980 672.97 716.70 21.33 25100 26.0990 633.84 685.10 20.70 25101 26.1000 616.23 655.99 20.40 25102 26.1010 639.52 629.09 20.78 25103 26.1020 599.67 604.21 20.07 25104 26.1030 587.80 581.24 19.90 25105 26.1040 582.33 560.04 19.81 25106 26.1050 556.07 540.41 19.38 25107 26.1060 525.94 522.26 18.82 25108 26.1070 528.53 505.48 18.85 25109 26.1080 507.88 489.90 18.52 25110 26.1090 506.73 475.48 18.52 25111 26.1100 482.66 462.00 18.01 25112 26.1110 457.18 449.54 17.55 25113 26.1120 434.68 437.96 17.11 25114 26.1130 427.33 427.16 16.92 25115 26.1140 416.60 417.09 16.81 25116 26.1150 422.91 407.71 16.88 25117 26.1160 428.89 398.94 16.98 25118 26.1170 402.87 390.71 16.48 25119 26.1180 372.56 383.03 15.86 25120 26.1190 387.49 375.83 16.20 25121 26.1200 376.38 369.05 15.99 25122 26.1210 377.06 362.70 15.95 25123 26.1220 389.42 356.73 16.23 25124 26.1230 358.13 351.11 15.60 25125 26.1240 346.43 345.81 15.27 25126 26.1250 342.45 340.81 15.23 25127 26.1260 346.94 336.10 15.28 25128 26.1270 358.56 331.65 15.53 25129 26.1280 338.88 327.43 15.13 25130 26.1290 369.12 323.46 15.74 25131 26.1300 328.12 319.69 14.88 25132 26.1310 313.95 316.11 14.51 25133 26.1320 325.43 312.72 14.79 25134 26.1330 325.20 309.51 14.83 25135 26.1340 321.11 306.45 14.69 25136 26.1350 328.91 303.55 14.91 25137 26.1360 319.18 300.79 14.69 25138 26.1370 344.09 298.16 15.20 25139 26.1380 320.29 295.66 14.69 25140 26.1390 290.52 293.28 13.95 25141 26.1400 292.32 291.01 13.99 25142 26.1410 285.49 288.84 13.87 25143 26.1420 284.76 286.77 13.87 25144 26.1430 289.65 284.80 13.98 25145 26.1440 302.40 282.91 14.24 25146 26.1450 296.83 281.11 14.12 25147 26.1460 290.45 279.39 14.03 25148 26.1470 293.48 277.74 14.04 25149 26.1480 285.44 276.16 13.86 25150 26.1490 274.67 274.65 13.61 25151 26.1500 280.49 273.21 13.70 25152 26.1510 299.41 271.82 14.19 25153 26.1520 287.29 270.49 13.88 25154 26.1530 259.18 269.23 13.25 25155 26.1540 285.80 268.01 13.92 25156 26.1550 279.69 266.84 13.75 25157 26.1560 265.66 265.72 13.37 25158 26.1570 286.64 264.64 13.83 25159 26.1580 260.27 263.61 13.23 25160 26.1590 276.44 262.62 13.64 25161 26.1600 271.74 261.67 13.54 25162 26.1610 274.24 260.75 13.54 25163 26.1620 279.65 259.88 13.67 25164 26.1630 270.67 259.04 13.48 25165 26.1640 259.03 258.23 13.19 25166 26.1650 254.02 257.45 13.08 25167 26.1660 265.22 256.71 13.35 25168 26.1670 274.91 255.99 13.63 25169 26.1680 262.70 255.31 13.31 25170 26.1690 268.30 254.65 13.45 25171 26.1700 266.51 254.02 13.39 25172 26.1710 252.10 253.41 13.00 25173 26.1720 251.36 252.83 12.96 25174 26.1730 260.28 252.28 13.25 25175 26.1740 254.24 251.74 13.11 25176 26.1750 235.53 251.23 12.61 25177 26.1760 273.34 250.74 13.59 25178 26.1770 253.04 250.28 13.08 25179 26.1780 267.76 249.83 13.42 25180 26.1790 256.63 249.40 13.10 25181 26.1800 232.66 248.99 12.51 25182 26.1810 236.66 248.61 12.63 25183 26.1820 274.45 248.24 13.56 25184 26.1830 247.83 247.88 12.90 25185 26.1840 250.16 247.55 12.96 25186 26.1850 262.00 247.23 13.31 25187 26.1860 245.21 246.93 12.80 25188 26.1870 217.47 246.65 12.06 25189 26.1880 240.85 246.38 12.71 25190 26.1890 247.40 246.13 12.88 25191 26.1900 235.15 245.90 12.56 25192 26.1910 253.60 245.68 13.08 25193 26.1920 227.49 245.47 12.41 25194 26.1930 228.93 245.28 12.42 25195 26.1940 226.08 245.11 12.28 25196 26.1950 234.71 244.95 12.56 25197 26.1960 230.36 244.81 12.48 25198 26.1970 258.05 244.68 13.19 25199 26.1980 257.13 244.57 13.14 25200 26.1990 246.42 244.47 12.91 25201 26.2000 241.03 244.38 12.71 25202 26.2010 260.04 244.31 13.25 25203 26.2020 238.48 244.26 12.67 25204 26.2030 238.23 244.22 12.64 25205 26.2040 221.91 244.19 12.22 25206 26.2050 250.59 244.18 12.96 25207 26.2060 248.98 244.19 12.95 25208 26.2070 235.68 244.21 12.63 25209 26.2080 221.93 244.24 12.23 25210 26.2090 237.06 244.29 12.63 25211 26.2100 228.73 244.36 12.39 25212 26.2110 224.95 244.45 12.28 25213 26.2120 233.12 244.55 12.52 25214 26.2130 256.89 244.67 13.11 25215 26.2140 231.37 244.80 12.47 25216 26.2150 221.10 244.96 12.23 25217 26.2160 251.97 245.13 13.02 25218 26.2170 249.87 245.32 12.97 25219 26.2180 241.16 245.53 12.78 25220 26.2190 264.27 245.76 13.31 25221 26.2200 231.27 246.01 12.48 25222 26.2210 224.54 246.56 12.26 25223 26.2220 261.89 246.86 13.26 25224 26.2230 249.97 247.18 13.03 25225 26.2240 238.11 247.53 12.66 25226 26.2250 230.52 247.90 12.45 25227 26.2260 230.08 248.29 12.44 25228 26.2270 244.40 248.71 12.83 25229 26.2280 230.22 249.17 12.46 25230 26.2290 257.34 249.65 13.15 25231 26.2300 248.74 250.16 12.96 25232 26.2310 250.15 250.71 13.01 25233 26.2320 251.32 251.29 12.97 25234 26.2330 249.79 251.91 12.96 25235 26.2340 248.79 252.57 12.92 25236 26.2350 256.14 253.26 13.13 25237 26.2360 248.70 254.00 12.94 25238 26.2370 248.50 254.79 12.96 25239 26.2380 249.22 255.63 12.97 25240 26.2390 234.66 256.51 12.55 25241 26.2400 252.93 257.45 13.08 25242 26.2410 260.01 258.45 13.20 25243 26.2420 239.87 259.52 12.68 25244 26.2430 246.52 260.64 12.92 25245 26.2440 263.74 261.84 13.34 25246 26.2450 270.48 263.12 13.53 25247 26.2460 255.23 264.48 13.11 25248 26.2470 278.67 265.92 13.68 25249 26.2480 268.53 267.45 13.45 25250 26.2490 256.80 269.10 13.17 25251 26.2500 260.25 270.84 13.24 25252 26.2510 263.06 272.70 13.29 25253 26.2520 251.66 274.70 13.00 25254 26.2530 270.58 276.82 13.49 25255 26.2540 268.12 279.08 13.48 25256 26.2550 278.28 281.52 13.71 25257 26.2560 292.58 284.11 14.05 25258 26.2570 288.27 286.89 13.92 25259 26.2580 274.09 289.88 13.64 25260 26.2590 297.71 293.08 14.13 25261 26.2600 299.15 296.50 14.21 25262 26.2610 306.21 300.18 14.39 25263 26.2620 287.13 304.12 13.87 25264 26.2630 293.00 308.36 14.01 25265 26.2640 305.70 312.90 14.36 25266 26.2650 331.95 317.76 14.97 25267 26.2660 319.62 322.98 14.65 25268 26.2670 321.24 328.54 14.74 25269 26.2680 344.10 334.48 15.20 25270 26.2690 342.01 341.27 15.19 25271 26.2700 345.59 348.00 15.30 25272 26.2710 356.98 355.10 15.48 25273 26.2720 357.57 362.57 15.48 25274 26.2730 362.67 370.38 15.60 25275 26.2740 379.89 378.46 15.93 25276 26.2750 377.87 386.76 15.91 25277 26.2760 410.47 395.17 16.56 25278 26.2770 422.84 403.59 16.80 25279 26.2780 408.12 411.86 16.55 25280 26.2790 436.30 419.82 17.18 25281 26.2800 431.41 427.31 17.03 25282 26.2810 430.96 434.14 17.06 25283 26.2820 447.52 440.14 17.37 25284 26.2830 454.04 445.18 17.51 25285 26.2840 456.85 449.17 17.54 25286 26.2850 465.43 452.06 17.70 25287 26.2860 457.97 453.87 17.57 25288 26.2870 472.11 454.69 17.83 25289 26.2880 457.87 454.63 17.59 25290 26.2890 442.08 453.89 17.27 25291 26.2900 463.17 452.66 17.72 25292 26.2910 436.79 451.15 17.13 25293 26.2920 432.58 449.58 17.06 25294 26.2930 404.65 448.15 16.45 25295 26.2940 404.84 447.04 16.47 25296 26.2950 421.00 446.40 16.85 25297 26.2960 435.87 446.37 17.14 25298 26.2970 406.49 447.05 16.53 25299 26.2980 429.98 448.52 17.04 25300 26.2990 424.55 450.84 16.91 25301 26.3000 405.63 454.04 16.50 25302 26.3010 402.60 458.14 16.49 25303 26.3020 449.74 463.12 17.43 25304 26.3030 454.80 468.93 17.51 25305 26.3040 449.79 475.53 17.44 25306 26.3050 457.19 482.75 17.55 25307 26.3060 475.64 490.47 17.92 25308 26.3070 482.70 498.49 18.05 25309 26.3080 504.95 506.56 18.43 25310 26.3090 495.05 514.36 18.21 25311 26.3100 504.42 521.60 18.42 25312 26.3110 516.91 527.90 18.61 25313 26.3120 544.37 532.92 19.11 25314 26.3130 527.91 536.34 18.89 25315 26.3140 560.07 537.91 19.45 25316 26.3150 542.60 537.46 19.14 25317 26.3160 541.71 534.92 19.15 25318 26.3170 497.05 530.36 18.36 25319 26.3180 516.60 523.91 18.70 25320 26.3190 511.32 515.85 18.54 25321 26.3200 491.77 506.47 18.20 25322 26.3210 462.61 496.07 17.63 25323 26.3220 460.65 485.00 17.66 25324 26.3230 462.12 473.60 17.68 25325 26.3240 442.82 462.08 17.35 25326 26.3250 431.54 450.70 17.07 25327 26.3260 425.49 439.65 16.97 25328 26.3270 415.66 429.03 16.77 25329 26.3280 397.76 418.97 16.38 25330 26.3290 379.95 409.50 16.00 25331 26.3300 399.43 400.67 16.39 25332 26.3310 361.13 392.51 15.60 25333 26.3320 375.12 384.99 15.85 25334 26.3330 368.12 378.11 15.79 25335 26.3340 367.60 371.85 15.71 25336 26.3350 335.33 366.20 15.07 25337 26.3360 343.49 361.10 15.27 25338 26.3370 349.80 356.55 15.39 25339 26.3380 349.42 352.53 15.34 25340 26.3390 343.55 348.98 15.17 25341 26.3400 317.68 345.92 14.61 25342 26.3410 336.80 343.29 15.03 25343 26.3420 330.55 341.10 14.96 25344 26.3430 341.76 339.32 15.20 25345 26.3440 330.54 337.94 14.97 25346 26.3450 334.11 336.95 15.02 25347 26.3460 330.61 336.34 14.95 25348 26.3470 343.65 336.11 15.20 25349 26.3480 337.92 336.25 15.10 25350 26.3490 336.45 336.77 15.06 25351 26.3500 316.87 337.66 14.56 25352 26.3510 343.25 338.93 15.14 25353 26.3520 325.01 340.60 14.77 25354 26.3530 322.66 342.68 14.75 25355 26.3540 335.78 345.17 15.05 25356 26.3550 347.49 348.09 15.33 25357 26.3560 367.56 351.48 15.77 25358 26.3570 356.26 355.34 15.51 25359 26.3580 367.26 359.70 15.68 25360 26.3590 363.12 364.61 15.63 25361 26.3600 379.28 370.08 16.03 25362 26.3610 395.71 376.15 16.34 25363 26.3620 378.05 382.85 15.96 25364 26.3630 391.60 390.22 16.20 25365 26.3640 404.89 398.30 16.47 25366 26.3650 381.52 407.10 16.02 25367 26.3660 392.47 416.67 16.29 25368 26.3670 425.75 427.05 16.91 25369 26.3680 446.25 438.20 17.35 25370 26.3690 468.84 450.12 17.82 25371 26.3700 495.16 462.85 18.27 25372 26.3710 506.32 476.22 18.46 25373 26.3720 516.46 490.18 18.69 25374 26.3730 527.75 504.61 18.89 25375 26.3740 527.05 519.29 18.86 25376 26.3750 563.47 533.94 19.48 25377 26.3760 597.59 548.29 20.04 25378 26.3770 582.57 561.94 19.84 25379 26.3780 600.17 574.45 20.07 25380 26.3790 634.58 585.43 20.65 25381 26.3800 622.94 594.40 20.51 25382 26.3810 646.92 600.99 20.91 25383 26.3820 670.84 604.89 21.28 25384 26.3830 618.74 605.87 20.44 25385 26.3840 620.69 603.87 20.44 25386 26.3850 592.28 598.98 19.98 25387 26.3860 587.66 591.40 19.88 25388 26.3870 576.25 581.45 19.71 25389 26.3880 535.28 569.47 19.01 25390 26.3890 541.91 555.98 19.12 25391 26.3900 523.09 541.37 18.76 25392 26.3910 508.48 526.05 18.51 25393 26.3920 501.88 510.43 18.45 25394 26.3930 461.69 494.78 17.58 25395 26.3940 488.51 479.39 18.13 25396 26.3950 489.45 464.40 18.20 25397 26.3960 473.57 449.98 17.87 25398 26.3970 449.58 436.26 17.41 25399 26.3980 431.66 423.96 17.05 25400 26.3990 413.91 411.70 16.73 25401 26.4000 400.48 400.21 16.42 25402 26.4010 404.02 389.47 16.48 25403 26.4020 376.56 379.42 15.85 25404 26.4030 367.71 370.09 15.70 25405 26.4040 384.94 361.42 16.09 25406 26.4050 344.58 353.33 15.21 25407 26.4060 351.63 345.84 15.38 25408 26.4070 354.24 338.88 15.42 25409 26.4080 329.20 332.40 14.92 25410 26.4090 323.52 326.35 14.76 25411 26.4100 330.80 320.77 14.92 25412 26.4110 325.98 315.58 14.86 25413 26.4120 299.97 310.74 14.23 25414 26.4130 298.41 306.23 14.16 25415 26.4140 304.90 302.04 14.33 25416 26.4150 293.10 298.12 14.06 25417 26.4160 322.04 294.46 14.73 25418 26.4170 300.50 291.04 14.19 25419 26.4180 268.92 287.84 13.43 25420 26.4190 279.59 284.84 13.69 25421 26.4200 300.85 282.03 14.22 25422 26.4210 298.68 279.39 14.23 25423 26.4220 290.00 276.91 14.02 25424 26.4230 271.86 274.58 13.59 25425 26.4240 265.93 272.39 13.39 25426 26.4250 268.87 270.33 13.45 25427 26.4260 259.82 268.38 13.21 25428 26.4270 255.99 266.54 13.07 25429 26.4280 288.84 264.81 13.95 25430 26.4290 270.01 263.17 13.54 25431 26.4300 267.09 261.62 13.40 25432 26.4310 261.68 260.15 13.29 25433 26.4320 267.00 258.76 13.43 25434 26.4330 262.45 257.44 13.34 25435 26.4340 289.85 257.01 13.97 25436 26.4350 270.15 255.83 13.54 25437 26.4360 266.39 252.45 13.38 25438 26.4370 270.16 251.40 13.45 25439 26.4380 250.47 250.40 12.94 25440 26.4390 242.54 249.44 12.76 25441 26.4400 241.70 248.54 12.76 25442 26.4410 254.24 247.68 13.02 25443 26.4420 250.01 246.85 12.98 25444 26.4430 248.28 246.07 12.93 25445 26.4440 262.62 245.33 13.26 25446 26.4450 250.60 244.62 12.96 25447 26.4460 248.78 243.95 12.95 25448 26.4470 239.96 243.30 12.68 25449 26.4480 241.48 242.69 12.71 25450 26.4490 257.82 242.10 13.18 25451 26.4500 244.21 241.54 12.78 25452 26.4510 248.75 241.01 12.93 25453 26.4520 276.42 240.50 13.65 25454 26.4530 246.72 240.02 12.87 25455 26.4540 236.90 239.56 12.61 25456 26.4550 236.68 239.12 12.58 25457 26.4560 237.53 238.70 12.60 25458 26.4570 230.64 238.30 12.48 25459 26.4580 234.24 237.92 12.59 25460 26.4590 241.90 237.56 12.75 25461 26.4600 231.77 237.22 12.50 25462 26.4610 248.94 236.89 12.93 25463 26.4620 233.29 236.58 12.56 25464 26.4630 239.22 236.29 12.72 25465 26.4640 240.86 236.01 12.79 25466 26.4650 247.48 235.75 12.94 25467 26.4660 245.80 235.50 12.89 25468 26.4670 251.50 235.26 13.03 25469 26.4680 240.22 235.04 12.72 25470 26.4690 254.74 234.84 13.10 25471 26.4700 232.06 234.64 12.48 25472 26.4710 243.36 234.46 12.75 25473 26.4720 234.34 234.29 12.50 25474 26.4730 250.00 234.14 12.97 25475 26.4740 229.24 233.99 12.47 25476 26.4750 235.95 233.86 12.60 25477 26.4760 253.09 233.74 13.03 25478 26.4770 231.10 233.64 12.50 25479 26.4780 230.69 233.54 12.49 25480 26.4790 253.49 233.46 13.10 25481 26.4800 236.91 233.38 12.62 25482 26.4810 233.16 233.32 12.52 25483 26.4820 224.12 233.28 12.27 25484 26.4830 231.45 233.24 12.45 25485 26.4840 223.56 233.21 12.28 25486 26.4850 246.66 233.20 12.89 25487 26.4860 229.26 233.20 12.42 25488 26.4870 230.42 233.21 12.44 25489 26.4880 233.57 233.24 12.55 25490 26.4890 232.32 233.27 12.51 25491 26.4900 243.00 233.32 12.76 25492 26.4910 224.26 233.39 12.25 25493 26.4920 215.38 233.46 12.05 25494 26.4930 229.85 233.56 12.42 25495 26.4940 212.54 233.66 11.87 25496 26.4950 222.71 233.78 12.18 25497 26.4960 232.07 233.92 12.48 25498 26.4970 238.24 234.07 12.70 25499 26.4980 239.97 234.24 12.73 25500 26.4990 242.61 234.42 12.81 25501 26.5000 241.69 234.63 12.76 25502 26.5010 224.75 234.85 12.31 25503 26.5020 250.16 235.09 12.94 25504 26.5030 228.94 235.35 12.43 25505 26.5040 218.94 235.64 12.15 25506 26.5050 221.28 235.95 12.18 25507 26.5060 237.74 236.28 12.59 25508 26.5070 240.72 236.64 12.69 25509 26.5080 247.91 237.03 12.89 25510 26.5090 228.63 237.44 12.42 25511 26.5100 225.53 237.89 12.35 25512 26.5110 240.57 238.37 12.75 25513 26.5120 239.80 238.89 12.70 25514 26.5130 234.01 239.44 12.54 25515 26.5140 215.41 240.03 12.03 25516 26.5150 248.75 240.67 12.94 25517 26.5160 245.83 241.36 12.86 25518 26.5170 241.42 242.09 12.73 25519 26.5180 234.36 242.88 12.52 25520 26.5190 230.23 243.73 12.39 25521 26.5200 234.38 244.65 12.55 25522 26.5210 228.26 245.63 12.48 25523 26.5220 235.97 246.69 12.60 25524 26.5230 239.27 247.83 12.71 25525 26.5240 249.61 249.06 12.92 25526 26.5250 252.84 250.39 13.00 25527 26.5260 245.69 251.83 12.86 25528 26.5270 250.77 253.38 12.97 25529 26.5280 246.30 255.06 12.85 25530 26.5290 259.32 256.89 13.18 25531 26.5300 264.13 258.86 13.35 25532 26.5310 254.94 261.01 13.11 25533 26.5320 252.61 263.33 13.04 25534 26.5330 268.46 265.87 13.39 25535 26.5340 264.49 268.62 13.32 25536 26.5350 245.99 271.62 12.84 25537 26.5360 258.88 274.88 13.15 25538 26.5370 291.08 278.44 13.96 25539 26.5380 279.59 282.30 13.67 25540 26.5390 269.84 286.50 13.48 25541 26.5400 274.78 291.07 13.57 25542 26.5410 282.78 296.01 13.80 25543 26.5420 280.30 301.35 13.75 25544 26.5430 307.19 307.11 14.34 25545 26.5440 289.62 313.27 13.95 25546 26.5450 291.17 319.82 14.01 25547 26.5460 316.42 326.73 14.60 25548 26.5470 329.19 333.94 14.86 25549 26.5480 321.47 341.33 14.72 25550 26.5490 332.80 348.80 15.00 25551 26.5500 368.54 356.14 15.71 25552 26.5510 339.94 363.18 15.08 25553 26.5520 380.14 369.62 15.95 25554 26.5530 369.98 375.22 15.82 25555 26.5540 389.20 379.73 16.16 25556 26.5550 388.03 382.88 16.14 25557 26.5560 388.74 384.52 16.16 25558 26.5570 363.30 384.55 15.65 25559 26.5580 359.29 382.98 15.62 25560 26.5590 378.84 379.89 15.98 25561 26.5600 387.52 375.48 16.10 25562 26.5610 337.07 369.97 15.07 25563 26.5620 321.31 363.64 14.71 25564 26.5630 335.75 356.74 15.07 25565 26.5640 306.73 349.54 14.42 25566 26.5650 309.70 342.23 14.42 25567 26.5660 300.35 335.00 14.27 25568 26.5670 275.74 327.98 13.64 25569 26.5680 296.10 321.24 14.11 25570 26.5690 311.08 314.86 14.50 25571 26.5700 280.58 308.89 13.79 25572 26.5710 300.28 303.33 14.20 25573 26.5720 307.63 298.17 14.42 25574 26.5730 292.39 293.42 14.07 25575 26.5740 275.50 289.05 13.63 25576 26.5750 263.88 285.03 13.34 25577 26.5760 276.56 281.36 13.62 25578 26.5770 256.82 278.00 13.17 25579 26.5780 251.99 274.94 13.02 25580 26.5790 278.28 272.14 13.69 25581 26.5800 268.09 269.58 13.41 25582 26.5810 266.49 267.26 13.38 25583 26.5820 257.94 265.14 13.15 25584 26.5830 261.65 263.20 13.28 25585 26.5840 256.48 261.44 13.14 25586 26.5850 241.88 259.83 12.75 25587 26.5860 250.64 258.37 12.99 25588 26.5870 245.26 257.04 12.87 25589 26.5880 264.93 255.84 13.32 25590 26.5890 233.64 254.74 12.53 25591 26.5900 250.22 253.75 12.99 25592 26.5910 264.34 252.86 13.37 25593 26.5920 249.33 252.05 12.92 25594 26.5930 258.92 251.32 13.17 25595 26.5940 237.55 250.68 12.65 25596 26.5950 229.36 250.10 12.40 25597 26.5960 238.02 249.59 12.65 25598 26.5970 251.06 249.15 13.02 25599 26.5980 249.88 248.76 12.94 25600 26.5990 225.34 248.43 12.29 25601 26.6000 245.59 248.15 12.84 25602 26.6010 253.00 247.93 13.08 25603 26.6020 243.14 247.75 12.83 25604 26.6030 249.10 247.62 12.93 25605 26.6040 240.98 247.53 12.67 25606 26.6050 258.04 247.49 13.15 25607 26.6060 245.66 247.50 12.88 25608 26.6070 228.81 247.54 12.38 25609 26.6080 232.16 247.63 12.51 25610 26.6090 256.73 247.75 13.14 25611 26.6100 246.71 247.92 12.86 25612 26.6110 248.65 248.13 12.96 25613 26.6120 249.37 248.38 12.91 25614 26.6130 242.54 248.66 12.80 25615 26.6140 242.44 248.99 12.80 25616 26.6150 247.10 249.36 12.85 25617 26.6160 243.17 249.77 12.84 25618 26.6170 247.47 250.23 12.93 25619 26.6180 250.08 250.72 12.98 25620 26.6190 266.39 251.27 13.36 25621 26.6200 235.77 251.86 12.63 25622 26.6210 247.59 252.49 12.94 25623 26.6220 234.04 253.18 12.58 25624 26.6230 253.89 253.91 13.10 25625 26.6240 240.87 254.71 12.75 25626 26.6250 237.87 255.55 12.63 25627 26.6260 260.39 256.46 13.20 25628 26.6270 260.02 257.43 13.24 25629 26.6280 252.45 258.46 13.04 25630 26.6290 257.01 259.56 13.17 25631 26.6300 277.87 260.73 13.71 25632 26.6310 252.78 261.99 13.05 25633 26.6320 255.43 263.32 13.11 25634 26.6330 250.99 264.74 13.00 25635 26.6340 275.89 266.25 13.58 25636 26.6350 253.28 267.86 13.07 25637 26.6360 271.04 269.58 13.51 25638 26.6370 265.17 271.40 13.38 25639 26.6380 268.38 273.36 13.41 25640 26.6390 249.20 275.44 12.91 25641 26.6400 276.60 277.65 13.63 25642 26.6410 280.37 280.03 13.71 25643 26.6420 282.35 282.55 13.80 25644 26.6430 267.61 285.25 13.44 25645 26.6440 278.25 288.14 13.67 25646 26.6450 284.93 291.23 13.91 25647 26.6460 285.26 294.53 13.88 25648 26.6470 294.71 298.06 14.10 25649 26.6480 313.97 301.85 14.57 25650 26.6490 300.54 305.91 14.24 25651 26.6500 314.17 310.25 14.52 25652 26.6510 321.37 314.90 14.73 25653 26.6520 317.63 319.90 14.56 25654 26.6530 286.73 325.23 13.87 25655 26.6540 303.40 330.95 14.26 25656 26.6550 302.38 337.09 14.26 25657 26.6560 309.04 343.63 14.39 25658 26.6570 336.15 350.61 15.03 25659 26.6580 348.01 358.07 15.30 25660 26.6590 342.80 365.98 15.16 25661 26.6600 369.16 374.36 15.76 25662 26.6610 386.64 383.23 16.18 25663 26.6620 393.64 392.54 16.30 25664 26.6630 375.12 402.25 15.90 25665 26.6640 374.81 412.34 15.85 25666 26.6650 430.55 422.70 17.00 25667 26.6660 399.25 433.21 16.37 25668 26.6670 401.97 443.77 16.47 25669 26.6680 403.54 454.17 16.50 25670 26.6690 442.25 464.26 17.29 25671 26.6700 456.52 473.45 17.53 25672 26.6710 474.53 482.13 17.85 25673 26.6720 475.34 489.76 17.90 25674 26.6730 465.12 496.07 17.68 25675 26.6740 495.63 500.85 18.27 25676 26.6750 474.31 503.97 17.87 25677 26.6760 497.50 505.30 18.27 25678 26.6770 498.88 504.81 18.37 25679 26.6780 499.92 502.55 18.37 25680 26.6790 484.37 498.64 18.03 25681 26.6800 451.08 493.26 17.41 25682 26.6810 457.21 486.62 17.51 25683 26.6820 470.61 478.98 17.82 25684 26.6830 443.00 470.56 17.38 25685 26.6840 450.90 461.18 17.45 25686 26.6850 430.80 451.98 17.01 25687 26.6860 412.62 442.68 16.63 25688 26.6870 409.30 433.46 16.62 25689 26.6880 403.21 424.46 16.51 25690 26.6890 414.01 415.78 16.72 25691 26.6900 415.25 407.46 16.73 25692 26.6910 365.00 399.62 15.70 25693 26.6920 372.98 392.26 15.88 25694 26.6930 377.55 385.38 15.95 25695 26.6940 368.83 379.02 15.76 25696 26.6950 370.63 373.18 15.79 25697 26.6960 338.75 368.35 15.12 25698 26.6970 352.30 363.50 15.43 25699 26.6980 369.34 359.13 15.76 25700 26.6990 343.81 355.23 15.24 25701 26.7000 360.03 351.78 15.58 25702 26.7010 369.21 348.78 15.80 25703 26.7020 340.61 346.20 15.17 25704 26.7030 342.59 344.05 15.20 25705 26.7040 348.55 342.29 15.32 25706 26.7050 344.03 340.94 15.21 25707 26.7060 329.18 339.98 14.87 25708 26.7070 319.77 339.41 14.66 25709 26.7080 330.52 339.22 14.91 25710 26.7090 347.48 339.42 15.32 25711 26.7100 337.03 340.02 15.00 25712 26.7110 342.51 341.01 15.14 25713 26.7120 340.97 342.40 15.14 25714 26.7130 328.24 344.21 14.87 25715 26.7140 363.21 346.46 15.66 25716 26.7150 344.10 349.15 15.20 25717 26.7160 359.53 352.32 15.58 25718 26.7170 351.56 355.98 15.36 25719 26.7180 344.92 360.18 15.23 25720 26.7190 357.54 364.94 15.50 25721 26.7200 359.61 370.29 15.57 25722 26.7210 358.07 376.30 15.47 25723 26.7220 366.91 382.98 15.65 25724 26.7230 385.06 390.39 16.13 25725 26.7240 378.58 398.62 15.99 25726 26.7250 368.58 407.66 15.80 25727 26.7260 394.05 417.58 16.29 25728 26.7270 429.06 428.47 17.01 25729 26.7280 410.23 440.35 16.59 25730 26.7290 431.11 453.21 16.97 25731 26.7300 422.84 467.13 16.83 25732 26.7310 450.83 482.07 17.45 25733 26.7320 460.73 497.95 17.63 25734 26.7330 471.89 514.73 17.83 25735 26.7340 533.91 532.18 18.97 25736 26.7350 554.16 550.14 19.29 25737 26.7360 565.64 568.24 19.53 25738 26.7370 609.40 586.05 20.25 25739 26.7380 665.68 603.11 21.17 25740 26.7390 677.87 618.82 21.32 25741 26.7400 693.71 632.51 21.58 25742 26.7410 688.47 643.62 21.53 25743 26.7420 718.35 651.60 22.01 25744 26.7430 749.41 655.97 22.51 25745 26.7440 721.51 656.52 22.08 25746 26.7450 669.87 653.20 21.24 25747 26.7460 680.00 646.22 21.46 25748 26.7470 636.08 635.92 20.68 25749 26.7480 604.41 622.87 20.16 25750 26.7490 607.49 607.63 20.26 25751 26.7500 567.90 590.84 19.59 25752 26.7510 547.20 573.14 19.22 25753 26.7520 535.15 555.00 18.93 25754 26.7530 518.90 536.88 18.69 25755 26.7540 522.64 519.18 18.74 25756 26.7550 474.49 502.11 17.92 25757 26.7560 436.09 485.81 17.20 25758 26.7570 469.50 470.50 17.77 25759 26.7580 455.07 456.18 17.50 25760 26.7590 416.83 442.84 16.74 25761 26.7600 408.57 430.55 16.58 25762 26.7610 404.11 418.60 16.46 25763 26.7620 409.89 408.22 16.61 25764 26.7630 389.42 398.73 16.20 25765 26.7640 378.71 390.09 16.00 25766 26.7650 387.73 382.22 16.14 25767 26.7660 391.25 375.08 16.24 25768 26.7670 385.21 368.62 16.10 25769 26.7680 336.71 362.80 15.00 25770 26.7690 352.62 357.56 15.37 25771 26.7700 379.91 352.84 15.99 25772 26.7710 377.13 348.65 15.98 25773 26.7720 351.49 344.92 15.35 25774 26.7730 328.81 341.62 14.80 25775 26.7740 336.73 338.74 15.00 25776 26.7750 328.54 336.25 14.89 25777 26.7760 320.95 334.12 14.71 25778 26.7770 331.39 332.34 14.92 25779 26.7780 327.87 330.90 14.81 25780 26.7790 335.72 329.77 15.01 25781 26.7800 336.85 328.96 15.07 25782 26.7810 342.83 328.45 15.21 25783 26.7820 341.29 328.23 15.17 25784 26.7830 329.67 328.31 14.90 25785 26.7840 339.61 328.68 15.12 25786 26.7850 319.15 329.35 14.71 25787 26.7860 337.70 330.30 15.12 25788 26.7870 333.62 331.56 15.02 25789 26.7880 343.20 333.12 15.20 25790 26.7890 338.48 334.99 15.05 25791 26.7900 326.47 337.20 14.83 25792 26.7910 373.34 339.74 15.79 25793 26.7920 362.59 342.62 15.62 25794 26.7930 377.53 345.88 15.92 25795 26.7940 350.62 349.54 15.37 25796 26.7950 344.63 353.60 15.21 25797 26.7960 341.73 358.25 15.16 25798 26.7970 358.60 363.22 15.49 25799 26.7980 349.54 368.68 15.38 25800 26.7990 368.86 374.68 15.79 25801 26.8000 356.65 381.23 15.51 25802 26.8010 382.18 388.39 16.03 25803 26.8020 374.83 396.20 15.92 25804 26.8030 404.73 404.69 16.51 25805 26.8040 399.98 413.92 16.41 25806 26.8050 424.72 423.92 16.89 25807 26.8060 404.35 434.73 16.51 25808 26.8070 431.30 446.38 17.06 25809 26.8080 460.38 458.96 17.60 25810 26.8090 462.42 472.40 17.68 25811 26.8100 466.53 486.76 17.76 25812 26.8110 468.08 502.07 17.81 25813 26.8120 496.57 518.19 18.30 25814 26.8130 537.64 535.09 19.05 25815 26.8140 546.45 552.70 19.19 25816 26.8150 557.36 570.82 19.35 25817 26.8160 604.97 589.21 20.20 25818 26.8170 645.77 607.55 20.86 25819 26.8180 577.33 625.56 19.71 25820 26.8190 607.42 642.78 20.21 25821 26.8200 622.43 658.70 20.44 25822 26.8210 657.57 672.87 21.04 25823 26.8220 683.70 684.81 21.46 25824 26.8230 685.04 693.99 21.50 25825 26.8240 694.37 700.05 21.61 25826 26.8250 675.69 702.73 21.35 25827 26.8260 673.65 701.88 21.32 25828 26.8270 687.37 697.52 21.51 25829 26.8280 666.43 689.83 21.15 25830 26.8290 640.70 679.12 20.78 25831 26.8300 629.66 665.83 20.62 25832 26.8310 604.33 650.38 20.19 25833 26.8320 576.84 633.32 19.70 25834 26.8330 564.90 615.16 19.54 25835 26.8340 559.27 596.29 19.44 25836 26.8350 524.69 577.20 18.80 25837 26.8360 513.37 558.10 18.58 25838 26.8370 527.02 539.41 18.85 25839 26.8380 499.31 521.27 18.38 25840 26.8390 479.91 503.76 17.99 25841 26.8400 500.87 487.11 18.36 25842 26.8410 451.02 471.32 17.37 25843 26.8420 439.81 456.39 17.22 25844 26.8430 451.46 442.36 17.45 25845 26.8440 406.12 429.23 16.53 25846 26.8450 405.58 416.93 16.58 25847 26.8460 417.29 405.45 16.80 25848 26.8470 404.17 394.76 16.49 25849 26.8480 367.98 384.79 15.72 25850 26.8490 399.74 375.50 16.39 25851 26.8500 367.65 366.87 15.77 25852 26.8510 372.12 358.82 15.84 25853 26.8520 379.70 351.33 15.95 25854 26.8530 350.84 344.35 15.33 25855 26.8540 327.73 337.84 14.84 25856 26.8550 326.94 331.77 14.84 25857 26.8560 326.16 326.11 14.80 25858 26.8570 311.76 320.81 14.49 25859 26.8580 320.27 315.87 14.71 25860 26.8590 334.75 311.25 15.02 25861 26.8600 319.28 306.90 14.68 25862 26.8610 308.09 302.84 14.36 25863 26.8620 299.77 299.03 14.20 25864 26.8630 307.19 295.45 14.34 25865 26.8640 285.17 292.08 13.84 25866 26.8650 294.51 288.91 14.07 25867 26.8660 292.48 285.93 14.06 25868 26.8670 294.81 283.12 14.07 25869 26.8680 291.82 280.47 14.05 25870 26.8690 270.03 277.96 13.53 25871 26.8700 261.38 275.60 13.28 25872 26.8710 273.58 273.36 13.53 25873 26.8720 277.46 271.24 13.63 25874 26.8730 273.27 269.23 13.56 25875 26.8740 279.37 267.32 13.71 25876 26.8750 260.14 265.51 13.20 25877 26.8760 274.84 263.80 13.57 25878 26.8770 275.15 262.16 13.64 25879 26.8780 272.31 260.61 13.53 25880 26.8790 291.74 259.13 14.03 25881 26.8800 282.51 257.72 13.78 25882 26.8810 277.86 256.38 13.67 25883 26.8820 254.64 255.10 13.02 25884 26.8830 256.69 253.87 13.12 25885 26.8840 236.85 252.70 12.55 25886 26.8850 251.38 251.59 13.00 25887 26.8860 261.45 250.52 13.28 25888 26.8870 243.67 249.50 12.81 25889 26.8880 259.80 248.52 13.26 25890 26.8890 245.94 247.58 12.84 25891 26.8900 243.23 246.69 12.76 25892 26.8910 253.71 245.82 12.99 25893 26.8920 229.21 245.00 12.43 25894 26.8930 239.82 243.93 12.68 25895 26.8940 249.72 243.17 12.94 25896 26.8950 273.79 242.44 13.60 25897 26.8960 255.11 241.74 13.08 25898 26.8970 255.66 241.06 13.10 25899 26.8980 245.20 240.41 12.87 25900 26.8990 246.12 239.79 12.90 25901 26.9000 261.94 239.19 13.29 25902 26.9010 263.13 238.61 13.28 25903 26.9020 245.97 238.05 12.87 25904 26.9030 258.57 237.51 13.20 25905 26.9040 254.36 237.00 13.11 25906 26.9050 252.39 236.50 13.04 25907 26.9060 239.06 236.01 12.66 25908 26.9070 239.22 235.55 12.70 25909 26.9080 232.24 235.10 12.52 25910 26.9090 234.68 234.67 12.52 25911 26.9100 242.08 234.25 12.73 25912 26.9110 237.51 233.85 12.62 25913 26.9120 225.72 233.45 12.30 25914 26.9130 237.65 233.08 12.61 25915 26.9140 245.95 232.71 12.86 25916 26.9150 249.12 232.36 12.94 25917 26.9160 223.96 232.02 12.27 25918 26.9170 221.56 231.69 12.25 25919 26.9180 226.01 231.37 12.29 25920 26.9190 237.77 231.06 12.65 25921 26.9200 231.09 230.76 12.45 25922 26.9210 226.68 230.48 12.37 25923 26.9220 233.57 230.20 12.53 25924 26.9230 242.98 229.93 12.78 25925 26.9240 240.16 229.66 12.74 25926 26.9250 239.73 229.41 12.70 25927 26.9260 225.90 229.17 12.35 25928 26.9270 252.79 228.93 13.03 25929 26.9280 236.29 228.70 12.63 25930 26.9290 236.74 228.48 12.60 25931 26.9300 231.60 228.26 12.46 25932 26.9310 238.79 228.06 12.71 25933 26.9320 247.42 227.85 12.90 25934 26.9330 232.39 227.66 12.50 25935 26.9340 239.16 227.47 12.67 25936 26.9350 234.74 227.29 12.59 25937 26.9360 238.01 227.12 12.59 25938 26.9370 221.23 227.45 12.21 25939 26.9380 225.04 227.29 12.35 25940 26.9390 231.15 227.14 12.45 25941 26.9400 228.08 226.99 12.35 25942 26.9410 233.12 226.84 12.51 25943 26.9420 233.67 226.70 12.56 25944 26.9430 214.07 226.57 11.96 25945 26.9440 215.64 226.44 12.03 25946 26.9450 225.44 226.32 12.32 25947 26.9460 229.02 226.20 12.38 25948 26.9470 233.50 226.08 12.54 25949 26.9480 234.15 225.97 12.56 25950 26.9490 235.15 225.87 12.59 25951 26.9500 253.40 225.76 13.10 25952 26.9510 234.60 225.67 12.59 25953 26.9520 240.20 225.57 12.68 25954 26.9530 219.45 225.49 12.17 25955 26.9540 218.55 225.40 12.18 25956 26.9550 250.18 225.32 12.98 25957 26.9560 240.52 225.24 12.75 25958 26.9570 225.94 225.17 12.30 25959 26.9580 226.19 225.10 12.31 25960 26.9590 231.58 225.04 12.49 25961 26.9600 241.63 224.98 12.72 25962 26.9610 224.10 224.92 12.22 25963 26.9620 227.28 224.87 12.35 25964 26.9630 227.76 224.82 12.31 25965 26.9640 207.38 224.78 11.81 25966 26.9650 218.91 224.74 12.13 25967 26.9660 226.87 224.70 12.39 25968 26.9670 233.42 224.66 12.53 25969 26.9680 223.59 224.63 12.35 25970 26.9690 223.67 224.61 12.31 25971 26.9700 245.35 224.58 12.88 25972 26.9710 224.35 224.57 12.26 25973 26.9720 217.19 224.55 12.08 25974 26.9730 213.51 224.54 11.96 25975 26.9740 215.88 224.53 12.02 25976 26.9750 205.64 224.52 11.77 25977 26.9760 212.40 224.52 11.95 25978 26.9770 210.21 224.53 11.84 25979 26.9780 187.12 224.54 11.17 25980 26.9790 218.20 224.55 12.09 25981 26.9800 221.33 224.56 12.21 25982 26.9810 233.53 224.58 12.56 25983 26.9820 241.17 224.60 12.76 25984 26.9830 216.59 224.63 12.05 25985 26.9840 222.26 224.66 12.23 25986 26.9850 243.40 224.70 12.80 25987 26.9860 233.53 224.74 12.55 25988 26.9870 224.50 224.78 12.31 25989 26.9880 228.31 224.83 12.40 25990 26.9890 224.19 224.88 12.29 25991 26.9900 221.52 224.94 12.24 25992 26.9910 228.17 225.00 12.43 25993 26.9920 225.21 225.07 12.34 25994 26.9930 229.34 225.13 12.44 25995 26.9940 220.86 225.21 12.17 25996 26.9950 216.15 225.29 12.04 25997 26.9960 222.05 225.38 12.25 25998 26.9970 225.82 225.47 12.33 25999 26.9980 223.98 225.57 12.19 26000 26.9990 219.47 225.67 12.13 26001 27.0000 222.50 225.77 12.25 26002 27.0010 227.49 225.89 12.36 26003 27.0020 231.46 226.01 12.47 26004 27.0030 238.07 226.13 12.63 26005 27.0040 225.01 226.27 12.25 26006 27.0050 221.05 226.40 12.15 26007 27.0060 228.42 229.42 12.37 26008 27.0070 236.02 229.59 12.56 26009 27.0080 238.54 229.76 12.68 26010 27.0090 237.62 229.95 12.66 26011 27.0100 224.71 230.13 12.31 26012 27.0110 219.69 230.33 12.16 26013 27.0120 236.63 230.54 12.62 26014 27.0130 219.45 230.76 12.12 26015 27.0140 212.85 230.98 11.96 26016 27.0150 210.51 231.22 11.92 26017 27.0160 224.97 231.46 12.28 26018 27.0170 220.51 231.71 12.16 26019 27.0180 219.01 231.98 12.09 26020 27.0190 202.09 232.26 11.63 26021 27.0200 227.59 232.54 12.32 26022 27.0210 229.92 232.84 12.50 26023 27.0220 229.20 233.16 12.45 26024 27.0230 224.15 233.48 12.31 26025 27.0240 224.45 233.82 12.33 26026 27.0250 250.34 234.17 12.94 26027 27.0260 237.41 234.54 12.65 26028 27.0270 249.75 234.93 12.94 26029 27.0280 240.45 235.33 12.71 26030 27.0290 239.71 235.75 12.72 26031 27.0300 244.55 236.18 12.83 26032 27.0310 246.11 236.64 12.86 26033 27.0320 251.31 237.11 13.02 26034 27.0330 217.55 237.61 12.09 26035 27.0340 235.24 238.13 12.53 26036 27.0350 216.82 238.67 12.07 26037 27.0360 220.73 239.24 12.19 26038 27.0370 231.18 239.83 12.43 26039 27.0380 231.30 240.45 12.44 26040 27.0390 232.07 241.10 12.48 26041 27.0400 218.76 241.78 12.10 26042 27.0410 225.86 242.50 12.31 26043 27.0420 247.80 243.24 12.91 26044 27.0430 218.37 244.04 12.14 26045 27.0440 231.08 244.87 12.50 26046 27.0450 256.55 245.73 13.17 26047 27.0460 232.96 246.64 12.51 26048 27.0470 246.65 247.60 12.87 26049 27.0480 257.75 248.60 13.18 26050 27.0490 259.70 249.66 13.19 26051 27.0500 250.30 250.77 12.95 26052 27.0510 249.64 251.95 12.97 26053 27.0520 249.66 253.19 12.93 26054 27.0530 252.16 254.50 13.04 26055 27.0540 256.56 255.88 13.12 26056 27.0550 269.85 257.34 13.47 26057 27.0560 250.41 258.89 12.99 26058 27.0570 259.87 260.52 13.21 26059 27.0580 267.71 262.26 13.41 26060 27.0590 250.67 264.10 12.96 26061 27.0600 259.41 266.05 13.19 26062 27.0610 284.10 268.14 13.79 26063 27.0620 281.75 270.34 13.81 26064 27.0630 272.34 272.69 13.53 26065 27.0640 293.00 275.19 14.03 26066 27.0650 287.67 277.86 13.89 26067 27.0660 273.55 280.71 13.56 26068 27.0670 299.71 283.75 14.19 26069 27.0680 290.59 287.00 14.01 26070 27.0690 278.33 290.47 13.71 26071 27.0700 291.46 294.19 14.02 26072 27.0710 298.39 298.17 14.17 26073 27.0720 289.40 302.44 13.97 26074 27.0730 288.17 307.01 13.91 26075 27.0740 292.75 311.91 14.03 26076 27.0750 315.29 317.18 14.57 26077 27.0760 309.67 322.81 14.47 26078 27.0770 317.32 328.85 14.64 26079 27.0780 332.56 335.31 14.99 26080 27.0790 348.07 342.27 15.31 26081 27.0800 362.88 349.67 15.60 26082 27.0810 370.45 357.60 15.76 26083 27.0820 356.37 366.05 15.52 26084 27.0830 349.90 375.01 15.34 26085 27.0840 373.46 384.05 15.85 26086 27.0850 396.45 394.05 16.31 26087 27.0860 391.16 404.55 16.25 26088 27.0870 432.07 415.48 17.06 26089 27.0880 437.73 426.75 17.19 26090 27.0890 412.13 438.28 16.70 26091 27.0900 447.12 449.91 17.32 26092 27.0910 449.52 460.73 17.39 26093 27.0920 474.07 471.96 17.90 26094 27.0930 471.33 482.69 17.83 26095 27.0940 487.32 492.56 18.13 26096 27.0950 517.86 501.31 18.68 26097 27.0960 510.65 508.69 18.52 26098 27.0970 512.62 514.38 18.50 26099 27.0980 503.40 518.19 18.39 26100 27.0990 525.78 519.98 18.85 26101 27.1000 516.77 519.66 18.70 26102 27.1010 517.71 517.25 18.68 26103 27.1020 532.78 512.87 18.95 26104 27.1030 526.03 506.67 18.84 26105 27.1040 512.50 498.90 18.62 26106 27.1050 492.35 489.85 18.25 26107 27.1060 475.41 479.77 17.93 26108 27.1070 458.04 468.98 17.58 26109 27.1080 446.34 457.76 17.33 26110 27.1090 425.23 446.33 16.91 26111 27.1100 440.90 434.85 17.24 26112 27.1110 431.19 423.56 17.02 26113 27.1120 421.84 412.57 16.84 26114 27.1130 387.83 401.92 16.14 26115 27.1140 421.33 391.76 16.84 26116 27.1150 381.12 382.10 16.02 26117 27.1160 369.32 372.95 15.75 26118 27.1170 386.59 364.32 16.11 26119 27.1180 347.80 356.24 15.34 26120 27.1190 359.04 348.66 15.57 26121 27.1200 347.09 341.58 15.28 26122 27.1210 328.49 334.98 14.90 26123 27.1220 309.89 328.83 14.46 26124 27.1230 347.38 323.11 15.27 26125 27.1240 332.85 317.77 14.99 26126 27.1250 294.20 312.82 14.10 26127 27.1260 307.43 308.22 14.36 26128 27.1270 328.21 303.93 14.91 26129 27.1280 295.01 299.95 14.10 26130 27.1290 292.26 296.25 14.03 26131 27.1300 290.03 292.81 13.95 26132 27.1310 301.27 289.60 14.21 26133 27.1320 298.72 286.63 14.18 26134 27.1330 303.57 283.85 14.27 26135 27.1340 288.59 281.27 13.96 26136 27.1350 297.14 278.86 14.16 26137 27.1360 273.19 276.62 13.59 26138 27.1370 283.30 274.54 13.79 26139 27.1380 291.58 272.60 13.99 26140 27.1390 287.31 270.79 13.91 26141 27.1400 291.53 269.10 14.00 26142 27.1410 274.96 267.53 13.57 26143 27.1420 287.38 266.07 13.87 26144 27.1430 279.34 264.71 13.67 26145 27.1440 277.32 263.45 13.66 26146 27.1450 261.57 262.28 13.31 26147 27.1460 243.17 261.19 12.82 26148 27.1470 266.79 260.18 13.41 26149 27.1480 284.55 259.25 13.83 26150 27.1490 279.73 258.39 13.72 26151 27.1500 265.12 257.59 13.40 26152 27.1510 265.83 256.87 13.37 26153 27.1520 263.36 256.20 13.31 26154 27.1530 247.43 255.60 12.92 26155 27.1540 235.29 255.05 12.59 26156 27.1550 255.62 254.55 13.13 26157 27.1560 272.76 254.12 13.51 26158 27.1570 255.55 253.73 13.15 26159 27.1580 263.73 253.40 13.35 26160 27.1590 255.73 253.11 13.09 26161 27.1600 249.51 252.87 12.97 26162 27.1610 256.16 252.69 13.18 26163 27.1620 256.94 252.55 13.18 26164 27.1630 248.99 252.46 12.96 26165 27.1640 249.51 252.41 13.00 26166 27.1650 261.83 252.41 13.22 26167 27.1660 236.88 252.47 12.61 26168 27.1670 276.41 252.57 13.61 26169 27.1680 257.99 252.72 13.12 26170 27.1690 232.86 252.92 12.50 26171 27.1700 265.80 253.18 13.31 26172 27.1710 266.30 253.49 13.41 26173 27.1720 266.92 253.85 13.41 26174 27.1730 274.75 254.28 13.62 26175 27.1740 270.15 254.76 13.50 26176 27.1750 262.88 255.30 13.30 26177 27.1760 250.69 255.92 13.03 26178 27.1770 249.41 256.60 12.95 26179 27.1780 245.20 257.36 12.85 26180 27.1790 254.41 258.19 13.07 26181 27.1800 261.11 259.11 13.28 26182 27.1810 267.68 260.11 13.44 26183 27.1820 269.96 261.21 13.48 26184 27.1830 255.68 262.40 13.13 26185 27.1840 258.64 263.70 13.19 26186 27.1850 271.04 265.11 13.49 26187 27.1860 286.53 266.63 13.88 26188 27.1870 255.14 268.28 13.12 26189 27.1880 268.72 270.06 13.48 26190 27.1890 277.03 271.97 13.70 26191 27.1900 257.58 274.03 13.17 26192 27.1910 272.14 276.24 13.54 26193 27.1920 277.05 278.60 13.66 26194 27.1930 283.52 281.11 13.78 26195 27.1940 292.03 283.77 14.00 26196 27.1950 294.84 286.58 14.13 26197 27.1960 288.96 289.53 13.93 26198 27.1970 299.62 292.61 14.18 26199 27.1980 313.01 295.79 14.53 26200 27.1990 321.47 299.05 14.75 26201 27.2000 319.62 302.34 14.70 26202 27.2010 314.49 305.62 14.61 26203 27.2020 317.66 308.84 14.63 26204 27.2030 330.57 311.92 14.93 26205 27.2040 309.30 314.80 14.45 26206 27.2050 295.29 317.40 14.11 26207 27.2060 338.31 319.64 15.06 26208 27.2070 324.34 321.46 14.82 26209 27.2080 340.87 322.79 15.10 26210 27.2090 341.47 323.59 15.11 26211 27.2100 333.67 323.83 15.00 26212 27.2110 329.03 323.52 14.88 26213 27.2120 318.80 322.68 14.67 26214 27.2130 349.44 321.34 15.34 26215 27.2140 318.48 319.56 14.64 26216 27.2150 329.74 317.43 14.85 26217 27.2160 323.34 315.00 14.72 26218 27.2170 308.94 312.36 14.43 26219 27.2180 303.94 308.76 14.29 26220 27.2190 310.96 305.91 14.47 26221 27.2200 332.73 303.05 14.99 26222 27.2210 324.10 300.22 14.71 26223 27.2220 322.49 297.46 14.75 26224 27.2230 312.75 294.82 14.53 26225 27.2240 297.12 292.30 14.17 26226 27.2250 286.50 289.92 13.91 26227 27.2260 303.11 287.71 14.28 26228 27.2270 301.72 285.65 14.24 26229 27.2280 275.22 283.75 13.57 26230 27.2290 290.63 282.01 13.98 26231 27.2300 288.33 280.43 13.93 26232 27.2310 293.85 279.00 14.08 26233 27.2320 293.97 277.73 14.08 26234 27.2330 285.81 276.60 13.86 26235 27.2340 311.79 275.60 14.48 26236 27.2350 279.13 274.73 13.68 26237 27.2360 288.69 273.99 13.95 26238 27.2370 294.89 273.38 14.12 26239 27.2380 273.52 272.87 13.54 26240 27.2390 286.03 272.48 13.81 26241 27.2400 285.89 272.20 13.84 26242 27.2410 287.68 272.02 13.93 26243 27.2420 264.95 271.94 13.33 26244 27.2430 290.77 271.95 13.97 26245 27.2440 295.91 272.07 14.13 26246 27.2450 285.58 272.27 13.90 26247 27.2460 272.40 272.58 13.57 26248 27.2470 268.74 272.97 13.47 26249 27.2480 284.08 273.45 13.84 26250 27.2490 282.05 274.03 13.78 26251 27.2500 295.12 274.70 14.10 26252 27.2510 298.80 275.47 14.12 26253 27.2520 303.16 276.33 14.24 26254 27.2530 277.58 277.30 13.70 26255 27.2540 298.18 278.36 14.14 26256 27.2550 299.05 279.54 14.19 26257 27.2560 273.89 280.82 13.59 26258 27.2570 275.36 282.22 13.53 26259 27.2580 300.10 283.74 14.21 26260 27.2590 286.74 285.39 13.93 26261 27.2600 309.68 287.17 14.46 26262 27.2610 303.90 289.10 14.29 26263 27.2620 312.76 291.17 14.50 26264 27.2630 300.84 293.42 14.23 26265 27.2640 299.73 295.83 14.14 26266 27.2650 314.85 298.43 14.57 26267 27.2660 307.33 301.24 14.38 26268 27.2670 314.56 304.26 14.53 26269 27.2680 309.22 307.51 14.41 26270 27.2690 310.41 311.02 14.45 26271 27.2700 321.34 314.81 14.73 26272 27.2710 314.66 320.30 14.58 26273 27.2720 339.22 324.71 15.09 26274 27.2730 329.72 329.46 14.87 26275 27.2740 332.54 334.60 14.94 26276 27.2750 347.69 340.13 15.25 26277 27.2760 351.27 346.11 15.34 26278 27.2770 336.11 352.58 15.02 26279 27.2780 364.92 359.54 15.69 26280 27.2790 370.46 367.05 15.81 26281 27.2800 377.89 375.16 15.95 26282 27.2810 384.39 383.87 16.09 26283 27.2820 378.48 393.21 15.97 26284 27.2830 392.69 403.25 16.26 26285 27.2840 382.84 413.92 16.05 26286 27.2850 414.94 425.25 16.72 26287 27.2860 424.05 437.22 16.91 26288 27.2870 443.79 449.74 17.31 26289 27.2880 451.20 462.70 17.47 26290 27.2890 468.14 475.99 17.76 26291 27.2900 495.52 489.38 18.23 26292 27.2910 517.43 502.61 18.60 26293 27.2920 525.10 515.36 18.76 26294 27.2930 554.58 527.27 19.34 26295 27.2940 564.14 538.01 19.49 26296 27.2950 567.35 547.11 19.51 26297 27.2960 565.89 554.25 19.55 26298 27.2970 541.49 559.14 19.08 26299 27.2980 559.79 561.57 19.39 26300 27.2990 573.63 561.48 19.64 26301 27.3000 546.80 558.93 19.18 26302 27.3010 585.65 554.10 19.83 26303 27.3020 565.72 547.30 19.53 26304 27.3030 548.45 538.87 19.27 26305 27.3040 528.91 529.21 18.90 26306 27.3050 550.71 518.73 19.25 26307 27.3060 510.37 507.76 18.53 26308 27.3070 482.10 496.66 18.04 26309 27.3080 478.14 485.65 17.94 26310 27.3090 480.80 474.97 18.02 26311 27.3100 470.93 464.79 17.86 26312 27.3110 450.23 455.17 17.44 26313 27.3120 460.10 446.24 17.60 26314 27.3130 424.36 438.01 16.93 26315 27.3140 433.88 430.50 17.08 26316 27.3150 416.35 423.68 16.73 26317 27.3160 428.59 417.59 17.01 26318 27.3170 420.30 412.18 16.83 26319 27.3180 430.45 407.42 17.04 26320 27.3190 423.40 403.30 16.89 26321 27.3200 404.40 399.76 16.52 26322 27.3210 410.50 396.80 16.65 26323 27.3220 413.96 394.38 16.69 26324 27.3230 391.49 392.46 16.20 26325 27.3240 414.53 391.04 16.66 26326 27.3250 391.05 390.08 16.26 26327 27.3260 409.12 389.58 16.58 26328 27.3270 399.35 389.51 16.38 26329 27.3280 413.70 389.85 16.72 26330 27.3290 399.52 390.61 16.42 26331 27.3300 406.83 391.76 16.57 26332 27.3310 405.37 393.31 16.56 26333 27.3320 407.65 395.26 16.58 26334 27.3330 420.75 397.59 16.84 26335 27.3340 412.25 400.32 16.69 26336 27.3350 433.43 403.45 17.09 26337 27.3360 412.70 406.98 16.71 26338 27.3370 417.14 410.92 16.78 26339 27.3380 420.69 415.29 16.85 26340 27.3390 447.96 420.11 17.36 26341 27.3400 428.16 425.38 16.96 26342 27.3410 445.33 431.12 17.31 26343 27.3420 447.04 437.36 17.35 26344 27.3430 472.47 444.15 17.81 26345 27.3440 484.59 451.47 18.05 26346 27.3450 472.58 459.38 17.79 26347 27.3460 486.90 467.94 18.12 26348 27.3470 480.78 477.14 18.03 26349 27.3480 466.81 487.06 17.76 26350 27.3490 511.56 497.77 18.54 26351 27.3500 520.37 509.27 18.72 26352 27.3510 509.05 521.65 18.56 26353 27.3520 528.41 534.99 18.85 26354 27.3530 537.20 549.37 19.02 26355 27.3540 574.22 564.82 19.68 26356 27.3550 590.45 581.50 19.94 26357 27.3560 602.83 599.48 20.12 26358 27.3570 620.02 618.82 20.43 26359 27.3580 672.39 639.72 21.27 26360 27.3590 689.52 662.23 21.59 26361 27.3600 704.37 686.59 21.78 26362 27.3610 681.40 712.81 21.41 26363 27.3620 697.69 741.09 21.66 26364 27.3630 711.44 771.72 21.91 26365 27.3640 769.71 804.66 22.76 26366 27.3650 775.12 840.18 22.86 26367 27.3660 864.01 878.51 24.09 26368 27.3670 887.57 919.76 24.43 26369 27.3680 896.08 964.00 24.57 26370 27.3690 946.46 1011.50 25.29 26371 27.3700 1042.66 1062.27 26.48 26372 27.3710 1068.02 1116.22 26.82 26373 27.3720 1107.38 1173.49 27.28 26374 27.3730 1183.72 1233.70 28.25 26375 27.3740 1233.78 1296.73 28.81 26376 27.3750 1303.87 1362.00 29.62 26377 27.3760 1404.59 1428.68 30.74 26378 27.3770 1482.07 1496.05 31.59 26379 27.3780 1576.01 1562.80 32.61 26380 27.3790 1596.13 1627.36 32.77 26381 27.3800 1732.61 1688.16 34.14 26382 27.3810 1767.50 1743.55 34.51 26383 27.3820 1817.58 1791.22 34.98 26384 27.3830 1896.00 1829.55 35.75 26385 27.3840 1908.92 1857.00 35.87 26386 27.3850 1896.41 1872.17 35.75 26387 27.3860 1889.94 1874.44 35.71 26388 27.3870 1817.51 1863.69 35.01 26389 27.3880 1836.28 1840.39 35.20 26390 27.3890 1796.59 1805.58 34.85 26391 27.3900 1734.48 1760.85 34.22 26392 27.3910 1613.04 1707.81 33.02 26393 27.3920 1559.09 1648.43 32.46 26394 27.3930 1526.92 1584.72 32.10 26395 27.3940 1430.19 1518.34 31.06 26396 27.3950 1354.72 1450.58 30.27 26397 27.3960 1321.30 1383.22 29.90 26398 27.3970 1229.84 1317.05 28.86 26399 27.3980 1153.01 1252.66 27.92 26400 27.3990 1119.13 1191.04 27.52 26401 27.4000 1075.71 1132.35 26.95 26402 27.4010 1003.85 1076.73 26.08 26403 27.4020 991.98 1024.38 25.87 26404 27.4030 946.47 975.38 25.26 26405 27.4040 905.52 929.52 24.75 26406 27.4050 873.20 886.76 24.26 26407 27.4060 843.48 847.04 23.83 26408 27.4070 823.36 810.06 23.58 26409 27.4080 787.06 775.72 23.09 26410 27.4090 782.02 743.84 22.98 26411 27.4100 713.57 714.31 21.92 26412 27.4110 683.70 686.90 21.47 26413 27.4120 663.03 661.38 21.13 26414 27.4130 637.92 637.75 20.76 26415 27.4140 641.37 615.81 20.81 26416 27.4150 647.89 595.33 20.95 26417 27.4160 603.54 576.36 20.18 26418 27.4170 594.16 558.69 19.99 26419 27.4180 572.57 542.21 19.67 26420 27.4190 564.33 526.85 19.47 26421 27.4200 552.62 512.54 19.28 26422 27.4210 518.80 499.16 18.69 26423 27.4220 545.57 486.66 19.11 26424 27.4230 519.20 474.99 18.69 26425 27.4240 492.19 464.05 18.23 26426 27.4250 515.58 453.84 18.62 26427 27.4260 515.15 444.25 18.61 26428 27.4270 488.95 435.26 18.16 26429 27.4280 482.50 426.85 18.00 26430 27.4290 453.16 418.94 17.44 26431 27.4300 444.20 411.52 17.34 26432 27.4310 453.55 404.56 17.44 26433 27.4320 408.61 398.02 16.56 26434 27.4330 432.59 391.85 17.06 26435 27.4340 419.14 386.07 16.84 26436 27.4350 386.73 380.61 16.21 26437 27.4360 420.00 375.46 16.86 26438 27.4370 395.77 370.60 16.32 26439 27.4380 400.10 365.99 16.40 26440 27.4390 387.96 361.63 16.19 26441 27.4400 390.94 357.47 16.22 26442 27.4410 382.97 353.56 16.08 26443 27.4420 372.62 349.75 15.86 26444 27.4430 386.06 346.08 16.10 26445 27.4440 363.68 342.53 15.65 26446 27.4450 383.65 339.08 16.11 26447 27.4460 359.92 335.73 15.60 26448 27.4470 344.11 332.45 15.22 26449 27.4480 378.90 329.25 15.96 26450 27.4490 351.15 326.13 15.41 26451 27.4500 348.78 323.07 15.31 26452 27.4510 333.19 320.09 15.01 26453 27.4520 348.12 317.19 15.34 26454 27.4530 360.00 314.37 15.57 26455 27.4540 358.27 311.63 15.50 26456 27.4550 324.65 308.98 14.78 26457 27.4560 331.78 306.42 14.98 26458 27.4570 343.86 303.95 15.23 26459 27.4580 351.66 301.58 15.39 26460 27.4590 318.84 299.30 14.66 26461 27.4600 306.09 297.11 14.32 26462 27.4610 333.24 295.00 14.96 26463 27.4620 325.09 292.99 14.77 26464 27.4630 313.95 291.06 14.50 26465 27.4640 315.86 289.20 14.61 26466 27.4650 310.21 287.43 14.46 26467 27.4660 308.54 285.73 14.41 26468 27.4670 313.13 284.10 14.54 26469 27.4680 284.11 282.54 13.89 26470 27.4690 289.47 281.05 14.00 26471 27.4700 280.31 279.61 13.75 26472 27.4710 279.68 278.24 13.72 26473 27.4720 286.06 276.92 13.89 26474 27.4730 301.06 275.66 14.20 26475 27.4740 287.75 274.44 13.88 26476 27.4750 291.66 273.28 14.01 26477 27.4760 292.17 272.16 14.06 26478 27.4770 284.96 271.09 13.87 26479 27.4780 283.17 270.07 13.79 26480 27.4790 284.45 269.08 13.85 26481 27.4800 287.87 268.13 13.86 26482 27.4810 291.15 267.22 13.96 26483 27.4820 275.41 266.34 13.59 26484 27.4830 279.78 265.51 13.73 26485 27.4840 284.08 264.70 13.80 26486 27.4850 285.09 263.93 13.79 26487 27.4860 272.00 263.18 13.47 26488 27.4870 277.04 262.47 13.61 26489 27.4880 281.51 261.79 13.78 26490 27.4890 276.99 261.13 13.68 26491 27.4900 262.64 260.50 13.27 26492 27.4910 251.33 259.90 12.98 26493 27.4920 263.89 259.33 13.33 26494 27.4930 265.81 258.77 13.39 26495 27.4940 279.06 258.25 13.72 26496 27.4950 256.06 257.74 13.10 26497 27.4960 263.23 257.26 13.33 26498 27.4970 268.28 256.80 13.43 26499 27.4980 284.25 256.36 13.84 26500 27.4990 268.94 255.95 13.47 26501 27.5000 255.70 255.55 13.12 26502 27.5010 269.70 255.18 13.44 26503 27.5020 284.70 254.82 13.85 26504 27.5030 265.12 254.49 13.35 26505 27.5040 284.46 253.65 13.83 26506 27.5050 263.75 253.36 13.35 26507 27.5060 277.51 253.08 13.68 26508 27.5070 263.76 252.83 13.30 26509 27.5080 263.99 252.59 13.30 26510 27.5090 272.57 252.37 13.51 26511 27.5100 266.51 252.16 13.38 26512 27.5110 281.05 251.98 13.75 26513 27.5120 267.49 251.81 13.44 26514 27.5130 265.74 251.66 13.39 26515 27.5140 256.37 251.53 13.14 26516 27.5150 233.70 251.42 12.55 26517 27.5160 251.23 251.32 12.98 26518 27.5170 269.88 251.24 13.45 26519 27.5180 278.39 251.18 13.68 26520 27.5190 266.07 251.14 13.40 26521 27.5200 268.12 251.12 13.47 26522 27.5210 279.55 251.11 13.73 26523 27.5220 265.77 251.12 13.39 26524 27.5230 266.24 251.15 13.41 26525 27.5240 241.80 251.20 12.75 26526 27.5250 253.52 251.27 13.03 26527 27.5260 267.26 251.36 13.42 26528 27.5270 270.61 251.46 13.53 26529 27.5280 262.05 251.59 13.27 26530 27.5290 260.10 251.74 13.25 26531 27.5300 277.43 251.91 13.66 26532 27.5310 254.13 252.10 13.09 26533 27.5320 269.27 252.31 13.43 26534 27.5330 289.50 252.54 13.99 26535 27.5340 258.53 252.80 13.21 26536 27.5350 247.49 253.08 12.87 26537 27.5360 255.85 253.39 13.14 26538 27.5370 276.89 253.72 13.66 26539 27.5380 254.09 254.07 13.10 26540 27.5390 270.30 254.46 13.50 26541 27.5400 273.14 254.87 13.58 26542 27.5410 261.11 255.31 13.25 26543 27.5420 263.16 255.78 13.28 26544 27.5430 269.29 256.28 13.46 26545 27.5440 267.56 256.82 13.36 26546 27.5450 264.92 257.38 13.32 26547 27.5460 244.07 257.98 12.79 26548 27.5470 257.13 258.62 13.08 26549 27.5480 276.70 259.30 13.64 26550 27.5490 273.32 260.02 13.55 26551 27.5500 270.71 260.78 13.50 26552 27.5510 270.54 261.58 13.54 26553 27.5520 291.43 262.43 13.99 26554 27.5530 268.61 263.33 13.43 26555 27.5540 273.75 264.28 13.57 26556 27.5550 294.64 265.28 14.08 26557 27.5560 296.30 266.34 14.10 26558 27.5570 259.49 267.53 13.23 26559 27.5580 271.70 268.71 13.50 26560 27.5590 294.24 269.96 14.01 26561 27.5600 281.45 271.28 13.75 26562 27.5610 282.98 272.67 13.81 26563 27.5620 299.52 274.15 14.17 26564 27.5630 286.26 275.70 13.87 26565 27.5640 276.85 277.35 13.68 26566 27.5650 292.92 279.10 14.06 26567 27.5660 296.94 280.94 14.15 26568 27.5670 325.20 282.89 14.78 26569 27.5680 309.96 284.97 14.48 26570 27.5690 301.56 287.16 14.26 26571 27.5700 311.45 289.48 14.49 26572 27.5710 304.15 291.95 14.33 26573 27.5720 303.30 294.57 14.27 26574 27.5730 290.88 297.35 13.93 26575 27.5740 292.83 300.31 14.01 26576 27.5750 318.61 305.12 14.66 26577 27.5760 327.93 308.48 14.83 26578 27.5770 321.52 312.06 14.66 26579 27.5780 318.17 315.88 14.60 26580 27.5790 315.68 319.96 14.60 26581 27.5800 327.74 324.32 14.82 26582 27.5810 332.82 328.97 14.92 26583 27.5820 343.97 333.97 15.22 26584 27.5830 345.78 339.31 15.22 26585 27.5840 337.47 345.04 15.08 26586 27.5850 359.82 351.20 15.64 26587 27.5860 355.97 357.82 15.45 26588 27.5870 363.22 364.94 15.60 26589 27.5880 378.04 372.62 15.94 26590 27.5890 381.69 380.90 16.05 26591 27.5900 382.80 389.82 16.06 26592 27.5910 370.97 399.48 15.80 26593 27.5920 408.33 409.92 16.55 26594 27.5930 422.75 421.23 16.87 26595 27.5940 433.69 433.49 17.09 26596 27.5950 473.51 446.76 17.82 26597 27.5960 485.44 461.17 18.07 26598 27.5970 490.36 476.82 18.16 26599 27.5980 481.85 493.77 18.01 26600 27.5990 508.98 512.24 18.52 26601 27.6000 510.91 532.19 18.48 26602 27.6010 508.57 553.81 18.48 26603 27.6020 581.51 577.19 19.72 26604 27.6030 596.96 602.52 20.00 26605 27.6040 638.34 629.68 20.73 26606 27.6050 652.63 658.83 20.95 26607 27.6060 706.01 689.89 21.74 26608 27.6070 739.66 722.70 22.27 26609 27.6080 771.05 757.16 22.77 26610 27.6090 866.25 792.82 24.14 26611 27.6100 875.19 829.30 24.30 26612 27.6110 958.66 865.89 25.41 26613 27.6120 1015.66 901.67 26.18 26614 27.6130 1055.73 935.74 26.70 26615 27.6140 1095.78 966.89 27.16 26616 27.6150 1116.26 993.82 27.47 26617 27.6160 1136.44 1015.40 27.70 26618 27.6170 1155.53 1030.59 27.92 26619 27.6180 1128.32 1038.48 27.58 26620 27.6190 1079.11 1038.71 27.00 26621 27.6200 1082.25 1031.22 27.03 26622 27.6210 1017.84 1016.47 26.20 26623 27.6220 943.46 995.23 25.28 26624 27.6230 916.17 968.51 24.94 26625 27.6240 911.92 937.40 24.76 26626 27.6250 845.78 903.43 23.88 26627 27.6260 832.22 867.68 23.70 26628 27.6270 782.29 831.07 22.97 26629 27.6280 735.24 794.52 22.28 26630 27.6290 693.97 758.76 21.62 26631 27.6300 693.45 724.24 21.59 26632 27.6310 641.40 691.17 20.80 26633 27.6320 604.61 660.02 20.21 26634 27.6330 594.70 630.77 20.00 26635 27.6340 553.12 603.38 19.28 26636 27.6350 560.57 578.01 19.47 26637 27.6360 556.06 554.50 19.34 26638 27.6370 516.12 532.73 18.66 26639 27.6380 482.57 512.65 18.05 26640 27.6390 446.13 494.17 17.33 26641 27.6400 450.72 477.12 17.40 26642 27.6410 452.66 461.42 17.48 26643 27.6420 447.59 447.00 17.37 26644 27.6430 416.97 433.70 16.72 26645 27.6440 433.10 421.47 17.06 26646 27.6450 405.41 410.18 16.52 26647 27.6460 380.57 399.78 16.03 26648 27.6470 383.07 390.20 16.06 26649 27.6480 380.84 381.34 16.02 26650 27.6490 379.27 373.18 15.98 26651 27.6500 396.48 365.65 16.37 26652 27.6510 370.27 358.69 15.80 26653 27.6520 338.64 352.23 15.08 26654 27.6530 338.80 346.27 15.16 26655 27.6540 351.46 340.73 15.36 26656 27.6550 341.84 335.60 15.12 26657 27.6560 328.51 330.83 14.86 26658 27.6570 333.23 326.38 14.96 26659 27.6580 360.94 322.25 15.58 26660 27.6590 332.47 318.34 14.97 26661 27.6600 323.72 314.14 14.78 26662 27.6610 308.09 310.64 14.40 26663 27.6620 306.77 307.30 14.35 26664 27.6630 299.78 304.09 14.16 26665 27.6640 288.61 301.00 13.90 26666 27.6650 293.89 298.00 14.01 26667 27.6660 316.12 295.09 14.58 26668 27.6670 295.10 292.27 14.09 26669 27.6680 290.72 289.54 13.96 26670 27.6690 295.51 286.89 14.10 26671 27.6700 297.54 284.33 14.12 26672 27.6710 296.65 281.86 14.16 26673 27.6720 298.24 279.48 14.18 26674 27.6730 273.72 277.21 13.57 26675 27.6740 292.92 275.03 14.02 26676 27.6750 284.12 272.96 13.82 26677 27.6760 265.70 270.98 13.37 26678 27.6770 292.41 269.09 14.05 26679 27.6780 280.33 267.30 13.68 26680 27.6790 262.12 265.59 13.25 26681 27.6800 270.60 263.96 13.48 26682 27.6810 277.29 262.42 13.64 26683 27.6820 265.88 260.96 13.37 26684 27.6830 259.07 259.56 13.20 26685 27.6840 265.07 258.23 13.35 26686 27.6850 269.18 256.96 13.44 26687 27.6860 259.05 255.76 13.16 26688 27.6870 253.91 254.61 13.08 26689 27.6880 246.68 253.51 12.88 26690 27.6890 241.70 252.47 12.75 26691 27.6900 247.82 251.47 12.91 26692 27.6910 270.67 250.51 13.47 26693 27.6920 250.84 249.60 12.99 26694 27.6930 270.38 248.73 13.50 26695 27.6940 267.24 247.89 13.44 26696 27.6950 239.48 247.09 12.68 26697 27.6960 241.24 246.32 12.74 26698 27.6970 254.37 245.59 13.05 26699 27.6980 252.33 244.88 13.04 26700 27.6990 248.63 244.21 12.97 26701 27.7000 262.28 243.55 13.30 26702 27.7010 233.92 242.93 12.54 26703 27.7020 259.16 242.34 13.17 26704 27.7030 258.79 241.76 13.18 26705 27.7040 260.99 241.21 13.25 26706 27.7050 239.07 240.68 12.68 26707 27.7060 246.70 240.16 12.90 26708 27.7070 260.46 239.67 13.22 26709 27.7080 249.17 239.20 12.93 26710 27.7090 230.72 238.75 12.39 26711 27.7100 249.48 238.31 12.93 26712 27.7110 238.71 237.89 12.65 26713 27.7120 220.23 237.49 12.17 26714 27.7130 212.73 237.10 12.00 26715 27.7140 230.31 236.72 12.43 26716 27.7150 247.98 236.36 12.92 26717 27.7160 254.32 236.02 13.06 26718 27.7170 257.85 235.68 13.16 26719 27.7180 240.36 235.36 12.68 26720 27.7190 230.77 235.06 12.42 26721 27.7200 230.97 234.76 12.47 26722 27.7210 235.45 234.48 12.55 26723 27.7220 234.40 234.21 12.54 26724 27.7230 233.43 233.95 12.56 26725 27.7240 229.19 233.70 12.42 26726 27.7250 225.24 233.46 12.31 26727 27.7260 226.31 233.23 12.36 26728 27.7270 239.94 233.01 12.72 26729 27.7280 234.25 232.80 12.53 26730 27.7290 219.66 232.60 12.11 26731 27.7300 228.97 232.42 12.37 26732 27.7310 228.87 232.24 12.35 26733 27.7320 227.24 232.07 12.33 26734 27.7330 233.62 231.90 12.54 26735 27.7340 231.13 231.75 12.45 26736 27.7350 228.74 231.61 12.40 26737 27.7360 236.68 231.48 12.64 26738 27.7370 255.37 231.35 13.11 26739 27.7380 247.04 231.24 12.85 26740 27.7390 240.69 231.13 12.76 26741 27.7400 233.09 231.04 12.54 26742 27.7410 238.71 230.95 12.66 26743 27.7420 219.18 230.87 12.13 26744 27.7430 222.79 230.80 12.23 26745 27.7440 243.20 230.74 12.78 26746 27.7450 247.85 230.69 12.88 26747 27.7460 242.23 230.65 12.74 26748 27.7470 243.52 230.62 12.81 26749 27.7480 244.27 230.60 12.83 26750 27.7490 241.66 230.59 12.74 26751 27.7500 241.93 230.59 12.76 26752 27.7510 242.29 230.61 12.75 26753 27.7520 243.20 230.63 12.80 26754 27.7530 239.40 230.67 12.71 26755 27.7540 215.42 230.72 12.07 26756 27.7550 230.97 230.78 12.47 26757 27.7560 248.09 230.86 12.92 26758 27.7570 229.93 230.95 12.47 26759 27.7580 237.50 231.06 12.63 26760 27.7590 222.90 231.18 12.24 26761 27.7600 217.50 231.33 12.12 26762 27.7610 240.89 231.49 12.76 26763 27.7620 228.40 231.67 12.43 26764 27.7630 236.90 231.87 12.65 26765 27.7640 219.65 232.09 12.19 26766 27.7650 221.47 232.34 12.24 26767 27.7660 218.51 232.61 12.09 26768 27.7670 228.88 230.06 12.43 26769 27.7680 238.92 230.41 12.66 26770 27.7690 243.84 230.79 12.76 26771 27.7700 230.81 231.20 12.44 26772 27.7710 237.45 231.65 12.67 26773 27.7720 228.05 232.14 12.38 26774 27.7730 247.49 232.68 12.87 26775 27.7740 255.54 233.26 13.04 26776 27.7750 235.71 233.90 12.54 26777 27.7760 240.57 234.59 12.73 26778 27.7770 243.70 235.35 12.81 26779 27.7780 218.17 236.17 12.10 26780 27.7790 230.63 237.06 12.47 26781 27.7800 229.01 238.03 12.41 26782 27.7810 238.03 239.08 12.66 26783 27.7820 239.87 240.27 12.72 26784 27.7830 244.91 241.50 12.79 26785 27.7840 240.78 242.82 12.73 26786 27.7850 263.60 244.23 13.31 26787 27.7860 254.02 245.73 13.05 26788 27.7870 259.38 247.33 13.21 26789 27.7880 246.81 249.00 12.85 26790 27.7890 262.19 250.74 13.27 26791 27.7900 254.35 252.53 13.06 26792 27.7910 267.27 254.33 13.42 26793 27.7920 266.96 256.11 13.44 26794 27.7930 243.60 257.83 12.82 26795 27.7940 239.34 259.44 12.72 26796 27.7950 252.36 260.88 13.05 26797 27.7960 255.61 262.09 13.16 26798 27.7970 268.37 263.02 13.45 26799 27.7980 266.92 263.63 13.41 26800 27.7990 270.53 263.89 13.53 26801 27.8000 245.26 263.78 12.87 26802 27.8010 244.17 263.32 12.81 26803 27.8020 274.02 262.54 13.57 26804 27.8030 273.01 261.47 13.53 26805 27.8040 261.36 260.15 13.28 26806 27.8050 253.90 258.67 13.09 26807 27.8060 252.04 257.05 12.99 26808 27.8070 247.90 255.37 12.89 26809 27.8080 240.63 253.65 12.72 26810 27.8090 245.96 251.96 12.90 26811 27.8100 257.50 250.30 13.18 26812 27.8110 264.61 248.70 13.41 26813 27.8120 266.18 247.19 13.42 26814 27.8130 254.23 245.76 13.11 26815 27.8140 242.02 244.42 12.73 26816 27.8150 238.44 243.18 12.70 26817 27.8160 252.11 242.03 13.06 26818 27.8170 252.18 240.98 13.06 26819 27.8180 224.50 240.01 12.25 26820 27.8190 228.34 239.12 12.34 26821 27.8200 251.69 238.31 13.01 26822 27.8210 224.02 237.58 12.27 26823 27.8220 230.48 236.98 12.41 26824 27.8230 223.26 236.37 12.28 26825 27.8240 221.04 235.83 12.18 26826 27.8250 234.65 235.34 12.53 26827 27.8260 228.80 234.90 12.37 26828 27.8270 244.20 234.50 12.81 26829 27.8280 219.12 234.15 12.12 26830 27.8290 249.85 233.84 12.97 26831 27.8300 259.28 233.57 13.17 26832 27.8310 262.33 233.33 13.31 26833 27.8320 238.42 233.12 12.68 26834 27.8330 250.54 232.94 12.95 26835 27.8340 233.64 232.79 12.54 26836 27.8350 249.45 232.67 12.98 26837 27.8360 233.22 232.57 12.55 26838 27.8370 229.76 232.49 12.47 26839 27.8380 245.17 232.43 12.85 26840 27.8390 229.71 232.40 12.45 26841 27.8400 237.91 232.38 12.63 26842 27.8410 236.85 232.39 12.58 26843 27.8420 238.77 232.41 12.62 26844 27.8430 259.88 232.45 13.21 26845 27.8440 240.05 232.50 12.73 26846 27.8450 222.70 232.57 12.23 26847 27.8460 234.43 232.66 12.50 26848 27.8470 239.61 232.76 12.66 26849 27.8480 239.14 232.87 12.67 26850 27.8490 246.56 233.00 12.84 26851 27.8500 233.81 233.13 12.55 26852 27.8510 243.11 233.29 12.83 26853 27.8520 242.68 233.46 12.79 26854 27.8530 224.99 233.64 12.31 26855 27.8540 219.18 233.84 12.14 26856 27.8550 232.83 234.05 12.50 26857 27.8560 237.01 234.28 12.62 26858 27.8570 255.49 234.51 13.09 26859 27.8580 242.27 234.77 12.77 26860 27.8590 224.35 235.03 12.30 26861 27.8600 243.33 235.31 12.81 26862 27.8610 238.93 235.60 12.68 26863 27.8620 231.70 235.91 12.47 26864 27.8630 229.82 236.23 12.45 26865 27.8640 225.79 236.56 12.33 26866 27.8650 247.55 236.91 12.90 26867 27.8660 250.87 237.27 12.98 26868 27.8670 256.96 237.65 13.09 26869 27.8680 243.51 238.04 12.77 26870 27.8690 234.87 238.45 12.60 26871 27.8700 236.69 238.88 12.66 26872 27.8710 244.11 239.32 12.83 26873 27.8720 237.30 239.78 12.64 26874 27.8730 249.92 240.25 12.99 26875 27.8740 255.82 240.75 13.13 26876 27.8750 240.68 241.26 12.75 26877 27.8760 240.73 241.79 12.69 26878 27.8770 269.00 242.35 13.45 26879 27.8780 245.33 242.92 12.79 26880 27.8790 259.23 243.51 13.12 26881 27.8800 256.82 244.13 13.12 26882 27.8810 236.52 244.77 12.57 26883 27.8820 248.30 245.43 12.92 26884 27.8830 247.14 246.12 12.93 26885 27.8840 245.88 246.83 12.91 26886 27.8850 246.14 247.57 12.85 26887 27.8860 246.55 248.34 12.89 26888 27.8870 252.65 249.13 13.07 26889 27.8880 262.52 249.96 13.31 26890 27.8890 253.62 250.81 13.10 26891 27.8900 254.57 251.70 13.08 26892 27.8910 257.19 252.63 13.16 26893 27.8920 275.49 253.59 13.61 26894 27.8930 272.26 254.59 13.56 26895 27.8940 256.92 255.62 13.15 26896 27.8950 249.54 256.70 12.93 26897 27.8960 264.00 257.82 13.34 26898 27.8970 270.58 258.98 13.47 26899 27.8980 258.38 260.19 13.18 26900 27.8990 258.83 261.46 13.16 26901 27.9000 265.20 262.77 13.34 26902 27.9010 260.84 264.14 13.24 26903 27.9020 275.15 265.57 13.57 26904 27.9030 274.96 267.05 13.57 26905 27.9040 284.10 268.60 13.81 26906 27.9050 286.05 270.22 13.91 26907 27.9060 288.83 271.91 14.01 26908 27.9070 292.41 273.67 14.06 26909 27.9080 293.78 275.52 14.13 26910 27.9090 268.99 277.44 13.44 26911 27.9100 281.55 279.45 13.76 26912 27.9110 292.50 281.57 14.01 26913 27.9120 280.75 283.77 13.74 26914 27.9130 305.12 286.09 14.35 26915 27.9140 289.68 288.52 14.01 26916 27.9150 295.59 291.06 14.07 26917 27.9160 308.20 293.73 14.39 26918 27.9170 303.87 296.54 14.26 26919 27.9180 291.54 299.48 13.98 26920 27.9190 307.75 302.60 14.34 26921 27.9200 311.69 305.86 14.42 26922 27.9210 328.34 309.29 14.85 26923 27.9220 312.33 312.92 14.53 26924 27.9230 316.77 316.74 14.60 26925 27.9240 320.29 320.78 14.68 26926 27.9250 349.69 325.04 15.34 26927 27.9260 345.31 329.55 15.21 26928 27.9270 350.57 334.32 15.34 26929 27.9280 346.25 339.37 15.32 26930 27.9290 372.07 344.73 15.84 26931 27.9300 380.08 350.41 15.99 26932 27.9310 373.23 356.44 15.88 26933 27.9320 357.96 362.84 15.55 26934 27.9330 376.99 369.68 15.86 26935 27.9340 396.11 376.93 16.26 26936 27.9350 377.84 384.65 15.94 26937 27.9360 404.00 392.92 16.49 26938 27.9370 422.36 401.71 16.88 26939 27.9380 433.73 411.10 17.11 26940 27.9390 434.54 421.16 17.14 26941 27.9400 451.69 431.92 17.43 26942 27.9410 441.20 443.43 17.21 26943 27.9420 440.30 455.77 17.27 26944 27.9430 466.20 469.02 17.73 26945 27.9440 486.59 483.19 18.12 26946 27.9450 496.28 498.43 18.28 26947 27.9460 519.40 514.77 18.72 26948 27.9470 537.58 532.34 19.06 26949 27.9480 526.37 551.20 18.83 26950 27.9490 575.67 572.07 19.66 26951 27.9500 553.07 593.79 19.31 26952 27.9510 563.89 617.06 19.47 26953 27.9520 646.71 641.93 20.83 26954 27.9530 669.88 668.50 21.23 26955 27.9540 687.67 696.91 21.50 26956 27.9550 743.22 727.01 22.39 26957 27.9560 743.50 758.86 22.38 26958 27.9570 778.71 792.54 22.90 26959 27.9580 793.61 827.69 23.13 26960 27.9590 872.68 864.24 24.26 26961 27.9600 932.35 901.96 25.12 26962 27.9610 977.65 940.42 25.68 26963 27.9620 1072.35 979.09 26.85 26964 27.9630 1100.13 1017.30 27.22 26965 27.9640 1153.67 1054.41 27.82 26966 27.9650 1222.47 1089.50 28.66 26967 27.9660 1233.73 1121.57 28.81 26968 27.9670 1289.78 1148.30 29.47 26969 27.9680 1340.10 1171.63 30.07 26970 27.9690 1343.18 1189.12 30.16 26971 27.9700 1358.19 1200.16 30.26 26972 27.9710 1375.11 1204.28 30.42 26973 27.9720 1334.82 1201.27 30.03 26974 27.9730 1325.07 1191.27 29.91 26975 27.9740 1306.20 1174.61 29.68 26976 27.9750 1258.30 1152.08 29.11 26977 27.9760 1207.14 1124.46 28.54 26978 27.9770 1181.81 1092.66 28.24 26979 27.9780 1101.74 1057.72 27.31 26980 27.9790 1047.78 1020.68 26.61 26981 27.9800 1024.35 982.32 26.31 26982 27.9810 973.93 943.83 25.64 26983 27.9820 968.38 905.18 25.58 26984 27.9830 915.96 867.32 24.88 26985 27.9840 837.88 830.58 23.80 26986 27.9850 801.64 795.14 23.33 26987 27.9860 756.90 761.44 22.58 26988 27.9870 737.75 729.48 22.28 26989 27.9880 751.89 699.23 22.49 26990 27.9890 701.85 670.89 21.76 26991 27.9900 674.21 644.34 21.35 26992 27.9910 614.63 619.48 20.35 26993 27.9920 606.06 596.29 20.23 26994 27.9930 581.02 574.72 19.82 26995 27.9940 590.48 554.62 19.97 26996 27.9950 580.60 535.93 19.82 26997 27.9960 543.76 518.58 19.16 26998 27.9970 538.69 502.44 19.04 26999 27.9980 518.82 487.48 18.71 27000 27.9990 508.38 473.55 18.49 27001 28.0000 483.03 460.62 18.03 27002 28.0010 476.77 448.63 17.93 27003 28.0020 455.26 437.48 17.46 27004 28.0030 458.03 427.12 17.51 27005 28.0040 450.05 417.51 17.44 27006 28.0050 453.68 408.59 17.45 27007 28.0060 423.43 400.29 16.92 27008 28.0070 434.94 392.60 17.15 27009 28.0080 420.88 385.47 16.84 27010 28.0090 414.64 378.83 16.75 27011 28.0100 387.34 372.70 16.18 27012 28.0110 377.83 367.00 15.98 27013 28.0120 392.09 361.73 16.27 27014 28.0130 393.85 356.82 16.33 27015 28.0140 381.03 352.26 16.00 27016 28.0150 349.78 348.01 15.36 27017 28.0160 385.54 344.04 16.08 27018 28.0170 379.81 340.28 15.99 27019 28.0180 360.30 336.73 15.58 27020 28.0190 354.99 333.34 15.45 27021 28.0200 346.84 330.05 15.28 27022 28.0210 358.95 326.85 15.53 27023 28.0220 369.04 323.69 15.75 27024 28.0230 350.95 320.54 15.39 27025 28.0240 349.70 317.40 15.34 27026 28.0250 335.75 314.26 15.03 27027 28.0260 356.05 311.10 15.43 27028 28.0270 341.67 307.94 15.19 27029 28.0280 347.36 304.80 15.30 27030 28.0290 331.82 301.69 14.92 27031 28.0300 354.41 298.63 15.41 27032 28.0310 313.29 295.63 14.56 27033 28.0320 314.64 292.71 14.49 27034 28.0330 335.72 289.89 15.03 27035 28.0340 310.47 287.16 14.48 27036 28.0350 303.39 284.54 14.26 27037 28.0360 317.68 282.04 14.61 27038 28.0370 311.34 279.64 14.49 27039 28.0380 293.51 277.35 14.01 27040 28.0390 294.66 275.17 14.04 27041 28.0400 290.70 273.09 13.99 27042 28.0410 299.21 271.12 14.20 27043 28.0420 281.44 269.24 13.78 27044 28.0430 285.63 267.45 13.87 27045 28.0440 297.60 265.74 14.15 27046 28.0450 280.69 264.12 13.73 27047 28.0460 279.22 262.58 13.68 27048 28.0470 298.52 261.10 14.16 27049 28.0480 291.61 259.70 14.02 27050 28.0490 292.42 258.36 14.06 27051 28.0500 291.45 257.08 14.00 27052 28.0510 268.56 255.86 13.46 27053 28.0520 274.76 254.69 13.59 27054 28.0530 296.40 253.57 14.14 27055 28.0540 273.86 252.50 13.63 27056 28.0550 274.97 251.47 13.63 27057 28.0560 304.48 250.49 14.33 27058 28.0570 290.52 249.55 14.00 27059 28.0580 257.58 248.64 13.22 27060 28.0590 276.23 247.77 13.60 27061 28.0600 248.42 246.94 12.92 27062 28.0610 248.88 246.14 12.92 27063 28.0620 262.33 245.37 13.31 27064 28.0630 269.35 244.62 13.48 27065 28.0640 264.76 243.91 13.32 27066 28.0650 240.81 243.23 12.67 27067 28.0660 253.96 242.57 13.03 27068 28.0670 274.48 241.93 13.59 27069 28.0680 269.02 241.32 13.47 27070 28.0690 278.19 240.73 13.69 27071 28.0700 255.32 240.16 13.09 27072 28.0710 230.86 239.61 12.45 27073 28.0720 259.16 239.08 13.27 27074 28.0730 246.73 238.57 12.92 27075 28.0740 254.62 238.08 13.12 27076 28.0750 256.97 237.61 13.20 27077 28.0760 256.10 237.16 13.13 27078 28.0770 245.04 236.72 12.86 27079 28.0780 252.08 236.29 13.02 27080 28.0790 243.51 235.89 12.84 27081 28.0800 253.48 235.49 13.05 27082 28.0810 255.19 235.12 13.11 27083 28.0820 263.65 234.75 13.32 27084 28.0830 252.39 234.40 13.01 27085 28.0840 246.62 234.07 12.84 27086 28.0850 245.61 233.74 12.83 27087 28.0860 243.53 233.43 12.84 27088 28.0870 243.28 233.13 12.79 27089 28.0880 240.46 232.85 12.67 27090 28.0890 224.31 232.58 12.31 27091 28.0900 227.36 232.32 12.33 27092 28.0910 239.71 232.07 12.63 27093 28.0920 235.46 231.83 12.60 27094 28.0930 226.43 231.60 12.36 27095 28.0940 235.88 231.39 12.62 27096 28.0950 256.78 231.19 13.16 27097 28.0960 257.93 230.99 13.16 27098 28.0970 246.27 230.82 12.88 27099 28.0980 243.75 230.65 12.78 27100 28.0990 247.31 230.49 12.90 27101 28.1000 252.60 230.35 13.06 27102 28.1010 243.73 230.22 12.86 27103 28.1020 231.56 230.10 12.47 27104 28.1030 223.97 229.99 12.22 27105 28.1040 230.89 229.90 12.42 27106 28.1050 244.60 229.81 12.81 27107 28.1060 237.89 229.75 12.62 27108 28.1070 236.98 229.69 12.64 27109 28.1080 234.70 229.65 12.57 27110 28.1090 233.17 229.63 12.54 27111 28.1100 221.99 229.63 12.20 27112 28.1110 245.37 229.64 12.79 27113 28.1120 238.70 229.66 12.72 27114 28.1130 228.57 229.71 12.39 27115 28.1140 238.32 229.78 12.68 27116 28.1150 248.28 229.86 12.92 27117 28.1160 263.38 229.97 13.24 27118 28.1170 242.90 230.10 12.77 27119 28.1180 224.43 230.26 12.27 27120 28.1190 256.61 230.44 13.15 27121 28.1200 238.15 230.65 12.70 27122 28.1210 225.58 230.88 12.29 27123 28.1220 244.65 231.14 12.80 27124 28.1230 250.11 231.43 12.94 27125 28.1240 241.58 231.74 12.73 27126 28.1250 255.02 232.08 13.13 27127 28.1260 254.11 232.44 13.11 27128 28.1270 244.07 232.82 12.80 27129 28.1280 237.51 233.21 12.60 27130 28.1290 231.50 233.61 12.47 27131 28.1300 243.84 234.00 12.84 27132 28.1310 242.90 234.38 12.79 27133 28.1320 255.64 234.73 13.13 27134 28.1330 229.09 235.05 12.46 27135 28.1340 252.02 235.32 13.01 27136 28.1350 250.28 235.54 12.93 27137 28.1360 250.65 235.71 12.97 27138 28.1370 227.46 235.83 12.35 27139 28.1380 235.66 235.89 12.55 27140 28.1390 243.71 235.91 12.79 27141 28.1400 242.39 235.90 12.79 27142 28.1410 231.49 235.87 12.47 27143 28.1420 247.26 235.84 12.89 27144 28.1430 240.82 235.81 12.71 27145 28.1440 252.15 235.79 13.08 27146 28.1450 248.70 235.81 12.91 27147 28.1460 241.53 235.86 12.74 27148 28.1470 247.59 235.95 12.93 27149 28.1480 230.10 236.09 12.43 27150 28.1490 243.64 236.29 12.75 27151 28.1500 248.43 236.54 12.95 27152 28.1510 231.26 236.86 12.50 27153 28.1520 233.21 237.24 12.52 27154 28.1530 233.00 237.70 12.53 27155 28.1540 236.19 238.22 12.58 27156 28.1550 237.61 238.82 12.66 27157 28.1560 245.47 239.51 12.83 27158 28.1570 238.30 240.27 12.64 27159 28.1580 236.53 241.13 12.61 27160 28.1590 245.86 242.00 12.88 27161 28.1600 255.11 243.05 13.08 27162 28.1610 261.95 244.19 13.26 27163 28.1620 251.28 245.56 13.00 27164 28.1630 238.20 246.92 12.65 27165 28.1640 249.97 248.39 12.98 27166 28.1650 262.03 249.97 13.26 27167 28.1660 247.35 251.65 12.92 27168 28.1670 233.22 253.44 12.49 27169 28.1680 252.59 255.32 13.03 27170 28.1690 252.95 257.29 13.03 27171 28.1700 239.90 259.32 12.76 27172 28.1710 271.40 261.38 13.53 27173 28.1720 276.38 263.45 13.67 27174 28.1730 252.05 265.48 13.05 27175 28.1740 257.04 267.41 13.13 27176 28.1750 258.98 269.20 13.20 27177 28.1760 271.41 270.79 13.51 27178 28.1770 263.85 272.11 13.33 27179 28.1780 281.46 273.12 13.77 27180 28.1790 276.17 273.77 13.68 27181 28.1800 274.28 274.04 13.60 27182 28.1810 264.85 273.90 13.31 27183 28.1820 258.53 273.38 13.16 27184 28.1830 275.27 272.50 13.60 27185 28.1840 290.10 271.30 13.91 27186 28.1850 251.53 269.84 13.01 27187 28.1860 293.42 268.17 14.07 27188 28.1870 254.75 266.35 13.12 27189 28.1880 255.77 264.44 13.09 27190 28.1890 256.37 262.50 13.15 27191 28.1900 272.83 260.54 13.51 27192 28.1910 266.90 258.62 13.41 27193 28.1920 236.19 256.76 12.59 27194 28.1930 252.00 254.97 12.97 27195 28.1940 265.28 253.26 13.34 27196 28.1950 257.03 251.65 13.11 27197 28.1960 245.77 250.12 12.83 27198 28.1970 226.41 248.68 12.38 27199 28.1980 239.62 247.32 12.67 27200 28.1990 242.02 246.05 12.72 27201 28.2000 257.52 244.85 13.15 27202 28.2010 242.55 243.72 12.72 27203 28.2020 248.07 242.67 12.90 27204 28.2030 252.07 241.67 13.07 27205 28.2040 269.63 240.74 13.51 27206 28.2050 250.76 239.87 12.98 27207 28.2060 231.22 239.05 12.51 27208 28.2070 232.23 238.29 12.46 27209 28.2080 244.75 237.58 12.81 27210 28.2090 244.21 236.93 12.81 27211 28.2100 250.68 236.32 13.01 27212 28.2110 240.88 235.76 12.75 27213 28.2120 234.06 235.25 12.55 27214 28.2130 235.30 234.78 12.60 27215 28.2140 236.59 234.36 12.60 27216 28.2150 246.45 233.98 12.85 27217 28.2160 235.30 233.63 12.57 27218 28.2170 236.92 233.33 12.60 27219 28.2180 248.16 233.06 12.94 27220 28.2190 230.82 232.82 12.43 27221 28.2200 229.06 232.61 12.43 27222 28.2210 234.16 232.44 12.55 27223 28.2220 245.15 232.30 12.82 27224 28.2230 245.38 232.18 12.86 27225 28.2240 221.20 232.09 12.24 27226 28.2250 232.08 232.03 12.52 27227 28.2260 241.58 231.99 12.76 27228 28.2270 224.35 231.98 12.32 27229 28.2280 237.23 232.00 12.66 27230 28.2290 233.87 232.71 12.58 27231 28.2300 234.49 232.77 12.54 27232 28.2310 226.24 232.85 12.36 27233 28.2320 242.83 232.96 12.76 27234 28.2330 227.05 233.09 12.28 27235 28.2340 236.30 233.24 12.60 27236 28.2350 245.25 233.41 12.83 27237 28.2360 252.76 233.61 13.01 27238 28.2370 248.94 233.83 12.95 27239 28.2380 243.38 234.07 12.76 27240 28.2390 234.90 234.33 12.59 27241 28.2400 249.45 234.62 12.96 27242 28.2410 239.51 234.92 12.68 27243 28.2420 233.24 235.26 12.55 27244 28.2430 243.44 235.61 12.77 27245 28.2440 232.17 236.00 12.50 27246 28.2450 245.27 236.40 12.88 27247 28.2460 235.46 236.84 12.52 27248 28.2470 222.72 237.30 12.20 27249 28.2480 237.85 237.79 12.66 27250 28.2490 229.07 238.32 12.42 27251 28.2500 236.57 238.87 12.62 27252 28.2510 256.69 239.45 13.16 27253 28.2520 243.25 240.07 12.72 27254 28.2530 229.73 240.73 12.44 27255 28.2540 242.75 241.42 12.81 27256 28.2550 250.84 242.15 13.03 27257 28.2560 242.30 242.92 12.73 27258 28.2570 258.44 243.74 13.14 27259 28.2580 256.28 244.60 13.16 27260 28.2590 250.87 245.51 13.04 27261 28.2600 249.28 246.48 12.99 27262 28.2610 256.98 247.49 13.18 27263 28.2620 240.92 248.57 12.77 27264 28.2630 237.55 249.71 12.64 27265 28.2640 245.22 250.91 12.85 27266 28.2650 266.96 252.19 13.39 27267 28.2660 281.47 253.81 13.76 27268 28.2670 263.74 255.25 13.32 27269 28.2680 270.87 256.77 13.47 27270 28.2690 261.08 258.38 13.26 27271 28.2700 281.47 260.10 13.76 27272 28.2710 269.75 261.92 13.50 27273 28.2720 282.19 263.86 13.77 27274 28.2730 264.52 265.92 13.37 27275 28.2740 264.20 268.12 13.34 27276 28.2750 263.13 270.46 13.35 27277 28.2760 277.55 272.96 13.68 27278 28.2770 272.95 275.63 13.55 27279 28.2780 272.44 278.49 13.55 27280 28.2790 288.18 281.55 13.95 27281 28.2800 268.90 284.82 13.45 27282 28.2810 286.66 288.33 13.86 27283 28.2820 286.55 292.10 13.92 27284 28.2830 289.50 296.16 14.01 27285 28.2840 300.03 300.51 14.24 27286 28.2850 287.12 305.20 13.92 27287 28.2860 296.24 310.24 14.17 27288 28.2870 310.10 315.70 14.46 27289 28.2880 310.69 321.58 14.44 27290 28.2890 319.20 327.91 14.64 27291 28.2900 343.00 334.78 15.15 27292 28.2910 329.12 342.17 14.85 27293 28.2920 346.51 350.16 15.27 27294 28.2930 350.81 358.79 15.40 27295 28.2940 358.02 368.14 15.55 27296 28.2950 369.61 378.18 15.76 27297 28.2960 381.28 389.02 16.02 27298 28.2970 384.67 400.67 16.12 27299 28.2980 392.04 413.12 16.29 27300 28.2990 410.01 426.44 16.63 27301 28.3000 452.10 440.56 17.44 27302 28.3010 453.30 455.48 17.50 27303 28.3020 460.01 471.11 17.59 27304 28.3030 473.13 487.29 17.79 27305 28.3040 488.36 503.87 18.06 27306 28.3050 493.97 520.57 18.19 27307 28.3060 534.12 537.05 18.95 27308 28.3070 560.48 552.93 19.42 27309 28.3080 599.42 567.80 20.08 27310 28.3090 602.61 581.07 20.17 27311 28.3100 621.31 592.27 20.47 27312 28.3110 619.20 600.98 20.45 27313 28.3120 629.06 606.72 20.58 27314 28.3130 612.58 609.28 20.31 27315 28.3140 609.91 608.52 20.27 27316 28.3150 589.16 604.48 19.87 27317 28.3160 615.01 597.41 20.38 27318 28.3170 585.47 587.63 19.85 27319 28.3180 565.28 575.59 19.50 27320 28.3190 561.20 561.80 19.46 27321 28.3200 534.21 546.79 19.02 27322 28.3210 520.08 531.02 18.75 27323 28.3220 528.49 514.85 18.86 27324 28.3230 471.89 498.75 17.83 27325 28.3240 493.02 482.94 18.26 27326 28.3250 437.46 467.60 17.23 27327 28.3260 438.78 452.97 17.24 27328 28.3270 416.12 439.11 16.75 27329 28.3280 411.79 426.05 16.64 27330 28.3290 391.17 413.83 16.19 27331 28.3300 392.93 402.49 16.26 27332 28.3310 398.24 391.95 16.39 27333 28.3320 374.67 382.20 15.84 27334 28.3330 356.11 373.23 15.45 27335 28.3340 362.57 364.95 15.63 27336 28.3350 369.56 357.36 15.80 27337 28.3360 339.60 350.37 15.09 27338 28.3370 329.31 343.97 14.86 27339 28.3380 331.76 338.12 14.98 27340 28.3390 347.28 332.76 15.28 27341 28.3400 325.89 327.88 14.79 27342 28.3410 336.93 323.44 15.05 27343 28.3420 309.21 319.41 14.43 27344 28.3430 312.58 315.74 14.52 27345 28.3440 329.81 312.45 14.88 27346 28.3450 331.21 309.49 14.91 27347 28.3460 314.92 306.84 14.54 27348 28.3470 308.77 304.97 14.40 27349 28.3480 322.65 302.91 14.69 27350 28.3490 292.84 301.13 14.01 27351 28.3500 290.99 299.61 14.01 27352 28.3510 315.64 298.34 14.56 27353 28.3520 312.34 297.31 14.50 27354 28.3530 299.02 296.52 14.18 27355 28.3540 292.22 295.96 14.02 27356 28.3550 287.71 295.64 13.96 27357 28.3560 304.73 295.54 14.35 27358 28.3570 305.94 295.67 14.35 27359 28.3580 305.93 296.03 14.37 27360 28.3590 302.22 296.62 14.27 27361 28.3600 290.54 297.45 13.96 27362 28.3610 305.87 298.52 14.33 27363 28.3620 287.89 299.84 13.95 27364 28.3630 314.89 301.43 14.62 27365 28.3640 307.24 303.27 14.40 27366 28.3650 300.03 305.40 14.21 27367 28.3660 296.79 307.82 14.07 27368 28.3670 338.30 310.54 15.08 27369 28.3680 338.67 311.92 15.05 27370 28.3690 309.19 315.30 14.45 27371 28.3700 307.46 319.02 14.36 27372 28.3710 297.67 323.10 14.14 27373 28.3720 313.66 327.54 14.49 27374 28.3730 337.55 332.36 15.04 27375 28.3740 348.60 337.58 15.27 27376 28.3750 338.63 343.16 15.11 27377 28.3760 336.76 349.04 15.08 27378 28.3770 340.53 355.36 15.14 27379 28.3780 343.61 361.98 15.18 27380 28.3790 368.25 368.86 15.73 27381 28.3800 401.40 375.97 16.42 27382 28.3810 377.64 383.18 15.97 27383 28.3820 394.38 390.39 16.30 27384 28.3830 394.32 397.48 16.29 27385 28.3840 408.10 404.27 16.57 27386 28.3850 415.50 410.59 16.69 27387 28.3860 418.89 416.26 16.79 27388 28.3870 443.53 421.09 17.29 27389 28.3880 441.03 424.90 17.24 27390 28.3890 417.81 427.54 16.82 27391 28.3900 439.23 428.85 17.19 27392 28.3910 423.67 428.83 16.94 27393 28.3920 444.60 427.45 17.35 27394 28.3930 423.05 424.73 16.93 27395 28.3940 409.06 420.78 16.67 27396 28.3950 418.78 415.72 16.79 27397 28.3960 393.84 409.74 16.21 27398 28.3970 373.64 403.01 15.82 27399 28.3980 373.62 395.71 15.83 27400 28.3990 398.48 388.04 16.40 27401 28.4000 389.32 380.15 16.21 27402 28.4010 357.92 372.20 15.54 27403 28.4020 338.89 364.29 15.16 27404 28.4030 353.06 356.53 15.45 27405 28.4040 355.11 349.00 15.47 27406 28.4050 347.81 341.74 15.29 27407 28.4060 333.19 334.80 15.02 27408 28.4070 340.26 328.21 15.10 27409 28.4080 339.61 321.95 15.10 27410 28.4090 302.39 316.06 14.22 27411 28.4100 294.72 310.52 14.05 27412 28.4110 309.13 305.33 14.43 27413 28.4120 302.65 300.44 14.27 27414 28.4130 296.59 295.88 14.16 27415 28.4140 309.67 291.62 14.47 27416 28.4150 307.12 287.63 14.35 27417 28.4160 277.30 283.91 13.71 27418 28.4170 291.39 280.44 14.04 27419 28.4180 275.51 277.19 13.64 27420 28.4190 284.29 274.16 13.85 27421 28.4200 276.25 271.32 13.64 27422 28.4210 263.00 268.67 13.35 27423 28.4220 249.18 266.19 12.98 27424 28.4230 265.82 263.87 13.40 27425 28.4240 251.96 261.70 13.05 27426 28.4250 253.94 259.67 13.06 27427 28.4260 249.85 257.75 12.98 27428 28.4270 236.61 255.96 12.61 27429 28.4280 259.51 254.28 13.24 27430 28.4290 259.33 252.69 13.22 27431 28.4300 246.98 251.21 12.86 27432 28.4310 255.49 249.81 13.12 27433 28.4320 258.28 248.49 13.17 27434 28.4330 253.19 247.25 13.03 27435 28.4340 244.28 246.08 12.85 27436 28.4350 244.89 244.98 12.83 27437 28.4360 233.79 243.93 12.52 27438 28.4370 259.26 242.95 13.21 27439 28.4380 255.24 242.02 13.10 27440 28.4390 240.54 241.14 12.71 27441 28.4400 246.66 240.31 12.83 27442 28.4410 243.27 239.52 12.76 27443 28.4420 235.33 238.78 12.55 27444 28.4430 250.49 238.08 12.97 27445 28.4440 258.02 237.41 13.15 27446 28.4450 231.13 236.78 12.45 27447 28.4460 240.62 236.19 12.69 27448 28.4470 240.51 235.62 12.72 27449 28.4480 255.65 235.09 13.12 27450 28.4490 236.53 234.58 12.57 27451 28.4500 232.84 234.10 12.49 27452 28.4510 249.26 233.65 12.96 27453 28.4520 237.27 233.23 12.68 27454 28.4530 233.23 232.82 12.54 27455 28.4540 220.80 232.44 12.14 27456 28.4550 226.02 232.08 12.24 27457 28.4560 218.36 231.74 12.06 27458 28.4570 232.47 231.42 12.52 27459 28.4580 226.60 231.12 12.38 27460 28.4590 242.36 230.85 12.79 27461 28.4600 244.16 232.64 12.82 27462 28.4610 231.12 232.40 12.43 27463 28.4620 232.73 232.18 12.50 27464 28.4630 233.92 231.98 12.51 27465 28.4640 236.99 231.80 12.58 27466 28.4650 222.86 231.63 12.23 27467 28.4660 244.24 231.48 12.78 27468 28.4670 236.37 231.34 12.57 27469 28.4680 246.21 231.21 12.86 27470 28.4690 245.55 231.11 12.83 27471 28.4700 226.67 231.01 12.39 27472 28.4710 223.15 230.93 12.20 27473 28.4720 231.87 230.87 12.45 27474 28.4730 233.16 230.82 12.55 27475 28.4740 220.22 230.78 12.16 27476 28.4750 219.22 230.76 12.08 27477 28.4760 217.10 230.76 12.07 27478 28.4770 226.67 230.76 12.30 27479 28.4780 209.22 230.79 11.89 27480 28.4790 217.94 230.83 12.12 27481 28.4800 208.50 230.88 11.84 27482 28.4810 228.86 230.95 12.37 27483 28.4820 226.85 231.04 12.34 27484 28.4830 248.59 231.14 12.93 27485 28.4840 228.42 231.26 12.41 27486 28.4850 211.58 231.40 11.92 27487 28.4860 222.57 231.56 12.23 27488 28.4870 235.58 231.74 12.56 27489 28.4880 222.20 231.93 12.24 27490 28.4890 238.98 232.15 12.68 27491 28.4900 240.09 232.38 12.70 27492 28.4910 224.99 232.65 12.29 27493 28.4920 227.59 232.94 12.38 27494 28.4930 233.13 233.26 12.51 27495 28.4940 233.53 233.60 12.56 27496 28.4950 229.70 233.98 12.41 27497 28.4960 231.40 234.39 12.47 27498 28.4970 231.06 234.83 12.47 27499 28.4980 226.19 235.30 12.33 27500 28.4990 230.72 235.82 12.46 27501 28.5000 240.72 236.38 12.75 27502 28.5010 217.58 236.99 12.12 27503 28.5020 242.07 237.64 12.77 27504 28.5030 267.77 238.35 13.40 27505 28.5040 239.60 239.11 12.67 27506 28.5050 228.45 239.93 12.38 27507 28.5060 240.24 240.83 12.73 27508 28.5070 237.01 241.79 12.60 27509 28.5080 244.95 242.83 12.84 27510 28.5090 252.14 243.96 13.02 27511 28.5100 240.73 245.17 12.75 27512 28.5110 218.63 246.49 12.11 27513 28.5120 241.28 247.91 12.71 27514 28.5130 236.31 249.44 12.58 27515 28.5140 244.89 251.09 12.87 27516 28.5150 256.93 252.88 13.14 27517 28.5160 272.58 254.80 13.46 27518 28.5170 248.70 256.86 12.88 27519 28.5180 233.47 259.07 12.52 27520 28.5190 246.49 261.42 12.84 27521 28.5200 248.37 263.92 12.92 27522 28.5210 260.20 266.57 13.23 27523 28.5220 278.62 269.34 13.69 27524 28.5230 263.01 272.22 13.33 27525 28.5240 261.20 275.18 13.26 27526 28.5250 260.04 278.18 13.25 27527 28.5260 255.62 281.16 13.14 27528 28.5270 277.17 284.08 13.66 27529 28.5280 282.94 286.83 13.81 27530 28.5290 290.35 289.36 13.96 27531 28.5300 295.83 291.57 14.10 27532 28.5310 302.60 293.38 14.28 27533 28.5320 300.06 294.71 14.21 27534 28.5330 283.86 295.51 13.81 27535 28.5340 288.73 295.75 13.94 27536 28.5350 279.87 295.42 13.76 27537 28.5360 271.86 294.55 13.51 27538 28.5370 265.22 293.17 13.35 27539 28.5380 261.70 291.37 13.26 27540 28.5390 276.85 289.23 13.60 27541 28.5400 259.24 286.76 13.15 27542 28.5410 266.67 284.17 13.38 27543 28.5420 274.37 281.49 13.56 27544 28.5430 248.57 278.78 12.95 27545 28.5440 245.77 276.08 12.86 27546 28.5450 234.16 273.46 12.55 27547 28.5460 255.55 270.94 13.08 27548 28.5470 258.07 268.54 13.18 27549 28.5480 258.68 266.28 13.14 27550 28.5490 248.78 264.18 12.93 27551 28.5500 257.50 262.22 13.17 27552 28.5510 252.89 260.41 13.08 27553 28.5520 253.94 258.76 13.10 27554 28.5530 266.73 257.24 13.39 27555 28.5540 236.80 255.86 12.61 27556 28.5550 241.46 254.61 12.70 27557 28.5560 236.99 253.48 12.60 27558 28.5570 232.96 252.46 12.49 27559 28.5580 240.45 251.55 12.70 27560 28.5590 248.03 250.74 12.90 27561 28.5600 250.12 250.03 12.96 27562 28.5610 258.14 249.40 13.16 27563 28.5620 239.82 248.85 12.66 27564 28.5630 245.15 248.38 12.80 27565 28.5640 245.28 247.98 12.87 27566 28.5650 232.38 247.64 12.52 27567 28.5660 242.11 247.37 12.78 27568 28.5670 242.76 247.16 12.79 27569 28.5680 240.08 247.01 12.70 27570 28.5690 254.18 246.90 13.04 27571 28.5700 253.16 246.85 13.03 27572 28.5710 250.14 246.85 12.97 27573 28.5720 247.22 246.90 12.91 27574 28.5730 243.19 247.00 12.81 27575 28.5740 240.15 247.13 12.70 27576 28.5750 239.86 247.32 12.66 27577 28.5760 241.98 247.54 12.79 27578 28.5770 232.40 247.99 12.53 27579 28.5780 265.51 248.29 13.33 27580 28.5790 247.66 248.64 12.90 27581 28.5800 242.44 249.03 12.75 27582 28.5810 238.16 249.46 12.62 27583 28.5820 252.80 249.93 12.98 27584 28.5830 236.45 250.45 12.62 27585 28.5840 243.80 251.00 12.76 27586 28.5850 251.22 251.60 12.99 27587 28.5860 246.15 252.24 12.89 27588 28.5870 242.56 252.93 12.79 27589 28.5880 254.06 253.66 13.04 27590 28.5890 248.29 254.44 12.89 27591 28.5900 253.00 255.27 13.01 27592 28.5910 287.16 256.15 13.86 27593 28.5920 270.21 257.08 13.48 27594 28.5930 254.42 258.07 13.05 27595 28.5940 286.79 259.12 13.89 27596 28.5950 274.87 260.22 13.60 27597 28.5960 251.14 261.39 13.00 27598 28.5970 270.46 262.62 13.53 27599 28.5980 262.23 263.93 13.31 27600 28.5990 265.63 265.31 13.36 27601 28.6000 284.96 266.76 13.81 27602 28.6010 269.57 268.29 13.51 27603 28.6020 284.20 269.92 13.86 27604 28.6030 299.41 271.63 14.20 27605 28.6040 272.94 273.44 13.60 27606 28.6050 307.85 275.36 14.42 27607 28.6060 288.35 277.39 13.95 27608 28.6070 278.64 279.53 13.64 27609 28.6080 296.63 281.80 14.10 27610 28.6090 283.27 284.20 13.82 27611 28.6100 291.68 286.72 14.07 27612 28.6110 313.04 289.42 14.55 27613 28.6120 321.76 292.28 14.70 27614 28.6130 326.88 295.33 14.83 27615 28.6140 315.13 298.56 14.59 27616 28.6150 302.47 301.99 14.30 27617 28.6160 316.97 305.64 14.57 27618 28.6170 314.07 309.54 14.50 27619 28.6180 301.12 313.67 14.24 27620 28.6190 311.75 318.09 14.51 27621 28.6200 310.41 322.80 14.49 27622 28.6210 333.18 327.82 14.96 27623 28.6220 337.45 333.18 15.10 27624 28.6230 335.41 338.89 15.06 27625 28.6240 354.78 345.02 15.45 27626 28.6250 341.29 351.54 15.14 27627 28.6260 369.78 358.51 15.80 27628 28.6270 342.00 365.98 15.15 27629 28.6280 371.85 373.93 15.79 27630 28.6290 395.04 382.41 16.36 27631 28.6300 423.04 391.48 16.88 27632 28.6310 419.30 401.13 16.81 27633 28.6320 424.16 411.38 16.91 27634 28.6330 406.30 422.28 16.56 27635 28.6340 423.42 433.82 16.84 27636 28.6350 465.32 445.97 17.68 27637 28.6360 469.18 458.76 17.82 27638 28.6370 483.39 472.11 18.04 27639 28.6380 501.92 486.01 18.36 27640 28.6390 505.36 500.33 18.47 27641 28.6400 506.73 514.94 18.45 27642 28.6410 513.49 529.72 18.56 27643 28.6420 564.37 544.46 19.52 27644 28.6430 546.59 558.89 19.19 27645 28.6440 572.37 572.75 19.56 27646 28.6450 604.97 585.79 20.16 27647 28.6460 627.32 597.58 20.57 27648 28.6470 607.41 607.86 20.23 27649 28.6480 616.19 616.32 20.39 27650 28.6490 593.94 622.68 20.00 27651 28.6500 624.67 626.72 20.51 27652 28.6510 610.30 628.32 20.25 27653 28.6520 613.24 627.46 20.34 27654 28.6530 606.36 624.19 20.25 27655 28.6540 596.40 618.65 20.05 27656 28.6550 609.09 611.08 20.26 27657 28.6560 600.16 601.76 20.11 27658 28.6570 596.76 591.05 20.07 27659 28.6580 588.13 579.17 19.93 27660 28.6590 555.90 566.60 19.33 27661 28.6600 543.49 553.52 19.14 27662 28.6610 529.82 540.25 18.91 27663 28.6620 541.58 527.02 19.07 27664 28.6630 528.42 514.01 18.86 27665 28.6640 502.62 501.44 18.36 27666 28.6650 515.88 489.32 18.65 27667 28.6660 472.46 477.80 17.87 27668 28.6670 450.66 466.92 17.45 27669 28.6680 444.01 456.76 17.29 27670 28.6690 443.69 447.24 17.32 27671 28.6700 478.73 438.50 18.02 27672 28.6710 455.35 430.43 17.52 27673 28.6720 460.97 423.06 17.61 27674 28.6730 420.60 416.36 16.86 27675 28.6740 419.21 410.35 16.82 27676 28.6750 421.44 404.95 16.84 27677 28.6760 412.78 400.18 16.69 27678 28.6770 407.30 396.00 16.56 27679 28.6780 403.35 392.40 16.48 27680 28.6790 398.81 388.69 16.35 27681 28.6800 405.74 386.20 16.51 27682 28.6810 418.87 384.23 16.80 27683 28.6820 400.29 382.77 16.45 27684 28.6830 377.06 381.82 15.94 27685 28.6840 399.25 381.36 16.40 27686 28.6850 376.91 381.38 15.86 27687 28.6860 412.54 381.87 16.62 27688 28.6870 393.90 382.83 16.26 27689 28.6880 404.96 384.24 16.47 27690 28.6890 385.88 386.08 16.09 27691 28.6900 402.58 388.38 16.46 27692 28.6910 389.44 391.07 16.21 27693 28.6920 399.12 394.15 16.41 27694 28.6930 418.11 397.60 16.77 27695 28.6940 401.58 401.36 16.45 27696 28.6950 415.91 405.40 16.76 27697 28.6960 426.43 409.64 16.96 27698 28.6970 442.67 414.03 17.25 27699 28.6980 467.21 418.47 17.78 27700 28.6990 473.36 422.87 17.85 27701 28.7000 466.73 427.12 17.69 27702 28.7010 452.77 431.11 17.51 27703 28.7020 483.52 434.69 18.09 27704 28.7030 478.66 437.78 17.94 27705 28.7040 466.46 440.27 17.71 27706 28.7050 475.92 442.05 17.89 27707 28.7060 518.60 443.07 18.71 27708 28.7070 489.09 443.29 18.16 27709 28.7080 473.43 442.70 17.85 27710 28.7090 472.70 441.34 17.87 27711 28.7100 472.58 439.26 17.84 27712 28.7110 481.19 436.55 18.01 27713 28.7120 469.74 433.31 17.82 27714 28.7130 460.93 429.67 17.63 27715 28.7140 458.50 425.73 17.61 27716 28.7150 436.07 421.61 17.15 27717 28.7160 436.13 417.42 17.15 27718 28.7170 432.61 413.29 17.00 27719 28.7180 414.23 409.26 16.68 27720 28.7190 415.02 405.45 16.75 27721 28.7200 437.04 401.90 17.18 27722 28.7210 413.31 398.67 16.70 27723 28.7220 398.12 395.80 16.38 27724 28.7230 408.56 393.41 16.63 27725 28.7240 418.66 391.35 16.76 27726 28.7250 415.11 389.73 16.72 27727 28.7260 403.81 388.57 16.51 27728 28.7270 388.47 387.87 16.22 27729 28.7280 404.01 387.64 16.52 27730 28.7290 411.54 387.90 16.70 27731 28.7300 411.31 388.65 16.68 27732 28.7310 415.71 389.89 16.75 27733 28.7320 407.90 391.64 16.59 27734 28.7330 385.67 393.90 16.10 27735 28.7340 410.30 396.67 16.56 27736 28.7350 410.75 399.98 16.62 27737 28.7360 418.50 403.80 16.77 27738 28.7370 416.80 408.15 16.76 27739 28.7380 448.05 413.02 17.34 27740 28.7390 405.29 418.41 16.49 27741 28.7400 427.25 424.28 16.92 27742 28.7410 433.71 430.64 17.08 27743 28.7420 438.46 437.44 17.20 27744 28.7430 419.44 444.64 16.88 27745 28.7440 475.73 452.15 17.90 27746 28.7450 458.66 459.90 17.58 27747 28.7460 483.39 467.75 18.04 27748 28.7470 468.89 475.62 17.77 27749 28.7480 495.29 483.34 18.25 27750 28.7490 520.74 490.73 18.71 27751 28.7500 485.34 497.61 18.09 27752 28.7510 509.40 503.76 18.50 27753 28.7520 490.17 509.04 18.21 27754 28.7530 516.81 513.24 18.70 27755 28.7540 523.90 516.23 18.79 27756 28.7550 500.17 517.88 18.34 27757 28.7560 506.08 518.14 18.48 27758 28.7570 524.16 517.00 18.78 27759 28.7580 511.83 514.50 18.59 27760 28.7590 520.63 510.74 18.75 27761 28.7600 495.82 505.85 18.30 27762 28.7610 492.32 500.00 18.20 27763 28.7620 477.76 493.40 17.96 27764 28.7630 483.47 486.18 18.04 27765 28.7640 460.38 478.58 17.60 27766 28.7650 443.72 470.74 17.28 27767 28.7660 446.66 462.83 17.31 27768 28.7670 450.50 454.99 17.42 27769 28.7680 443.42 447.36 17.28 27770 28.7690 433.13 439.96 17.07 27771 28.7700 447.48 432.90 17.42 27772 28.7710 436.33 426.22 17.19 27773 28.7720 434.31 419.99 17.09 27774 28.7730 441.93 414.16 17.26 27775 28.7740 417.55 408.83 16.78 27776 28.7750 413.71 403.94 16.72 27777 28.7760 414.54 399.52 16.70 27778 28.7770 413.97 395.55 16.62 27779 28.7780 394.47 392.05 16.25 27780 28.7790 402.76 388.97 16.49 27781 28.7800 403.97 386.32 16.50 27782 28.7810 395.13 384.09 16.31 27783 28.7820 428.56 382.27 16.94 27784 28.7830 396.57 380.84 16.31 27785 28.7840 392.10 379.80 16.27 27786 28.7850 391.82 379.14 16.25 27787 28.7860 385.95 378.85 16.07 27788 28.7870 383.98 378.93 16.02 27789 28.7880 383.27 379.38 16.03 27790 28.7890 371.27 380.18 15.80 27791 28.7900 402.90 381.36 16.46 27792 28.7910 410.14 382.90 16.63 27793 28.7920 407.86 384.81 16.55 27794 28.7930 396.44 387.10 16.29 27795 28.7940 435.78 389.77 17.12 27796 28.7950 397.11 392.83 16.38 27797 28.7960 395.06 396.31 16.29 27798 28.7970 397.88 400.21 16.35 27799 28.7980 409.64 404.55 16.58 27800 28.7990 409.49 409.36 16.57 27801 28.8000 416.15 414.64 16.76 27802 28.8010 434.41 420.46 17.07 27803 28.8020 445.11 426.46 17.24 27804 28.8030 445.24 433.40 17.31 27805 28.8040 448.99 440.96 17.40 27806 28.8050 452.38 449.17 17.47 27807 28.8060 448.91 458.06 17.39 27808 28.8070 447.10 467.74 17.39 27809 28.8080 473.61 478.24 17.85 27810 28.8090 475.80 489.62 17.90 27811 28.8100 494.21 501.94 18.24 27812 28.8110 499.57 515.29 18.31 27813 28.8120 485.85 529.70 18.10 27814 28.8130 545.05 545.35 19.12 27815 28.8140 549.47 562.83 19.19 27816 28.8150 557.09 581.17 19.36 27817 28.8160 563.44 601.02 19.48 27818 28.8170 602.43 622.42 20.13 27819 28.8180 622.69 645.63 20.48 27820 28.8190 634.40 670.70 20.67 27821 28.8200 621.19 697.77 20.43 27822 28.8210 662.77 726.84 21.09 27823 28.8220 696.30 758.33 21.64 27824 28.8230 702.38 791.90 21.73 27825 28.8240 743.36 827.95 22.34 27826 28.8250 808.96 866.38 23.31 27827 28.8260 856.00 907.14 24.01 27828 28.8270 880.31 949.97 24.35 27829 28.8280 930.28 994.95 25.01 27830 28.8290 976.97 1041.58 25.69 27831 28.8300 1042.38 1089.36 26.52 27832 28.8310 1096.16 1137.63 27.18 27833 28.8320 1186.56 1185.53 28.29 27834 28.8330 1233.59 1232.02 28.86 27835 28.8340 1313.40 1275.74 29.77 27836 28.8350 1351.75 1315.69 30.24 27837 28.8360 1388.35 1350.30 30.57 27838 28.8370 1439.96 1378.25 31.12 27839 28.8380 1460.36 1398.31 31.36 27840 28.8390 1468.51 1409.72 31.48 27841 28.8400 1475.07 1411.79 31.54 27842 28.8410 1466.74 1404.48 31.43 27843 28.8420 1348.93 1388.09 30.12 27844 28.8430 1313.58 1363.35 29.75 27845 28.8440 1261.01 1331.45 29.16 27846 28.8450 1249.26 1293.43 29.10 27847 28.8460 1168.63 1250.77 28.12 27848 28.8470 1103.66 1204.83 27.30 27849 28.8480 1092.03 1156.88 27.12 27850 28.8490 1063.77 1108.05 26.77 27851 28.8500 991.36 1059.47 25.87 27852 28.8510 938.91 1011.54 25.15 27853 28.8520 911.94 965.03 24.82 27854 28.8530 850.54 920.35 23.94 27855 28.8540 810.63 877.78 23.42 27856 28.8550 812.35 837.61 23.47 27857 28.8560 764.67 799.54 22.71 27858 28.8570 742.96 764.08 22.37 27859 28.8580 742.05 730.82 22.39 27860 28.8590 713.44 699.80 21.90 27861 28.8600 649.58 670.92 20.96 27862 28.8610 639.55 644.17 20.78 27863 28.8620 596.51 619.23 20.03 27864 28.8630 541.44 596.07 19.05 27865 28.8640 552.05 574.57 19.28 27866 28.8650 566.48 554.61 19.55 27867 28.8660 536.83 536.14 18.97 27868 28.8670 514.25 518.91 18.60 27869 28.8680 507.16 502.90 18.46 27870 28.8690 489.45 488.00 18.18 27871 28.8700 495.63 474.14 18.28 27872 28.8710 475.32 461.22 17.90 27873 28.8720 463.78 449.21 17.69 27874 28.8730 450.01 437.97 17.39 27875 28.8740 445.08 427.46 17.30 27876 28.8750 421.65 417.64 16.86 27877 28.8760 446.38 408.48 17.33 27878 28.8770 417.51 399.84 16.74 27879 28.8780 416.78 391.79 16.77 27880 28.8790 414.89 384.20 16.77 27881 28.8800 381.04 377.08 16.04 27882 28.8810 394.64 370.38 16.26 27883 28.8820 390.70 364.08 16.23 27884 28.8830 369.38 358.16 15.79 27885 28.8840 379.36 352.55 15.98 27886 28.8850 353.59 347.27 15.36 27887 28.8860 355.29 342.27 15.41 27888 28.8870 348.75 337.57 15.31 27889 28.8880 358.58 333.09 15.53 27890 28.8890 340.29 328.87 15.15 27891 28.8900 357.96 324.87 15.51 27892 28.8910 343.18 321.07 15.20 27893 28.8920 325.23 317.46 14.85 27894 28.8930 326.80 314.05 14.87 27895 28.8940 345.59 310.80 15.28 27896 28.8950 349.80 307.71 15.32 27897 28.8960 347.82 304.77 15.30 27898 28.8970 351.64 301.97 15.37 27899 28.8980 326.78 299.31 14.79 27900 28.8990 303.35 296.78 14.26 27901 28.9000 308.67 294.36 14.40 27902 28.9010 312.83 292.05 14.51 27903 28.9020 302.48 289.85 14.27 27904 28.9030 304.08 287.75 14.33 27905 28.9040 319.48 285.76 14.65 27906 28.9050 302.21 283.84 14.22 27907 28.9060 294.08 281.90 14.04 27908 28.9070 291.58 280.16 14.00 27909 28.9080 298.20 278.49 14.19 27910 28.9090 289.21 276.90 13.97 27911 28.9100 298.90 275.39 14.18 27912 28.9110 295.35 273.94 14.10 27913 28.9120 285.61 272.55 13.88 27914 28.9130 268.44 271.23 13.46 27915 28.9140 283.54 269.96 13.80 27916 28.9150 285.55 268.76 13.91 27917 28.9160 295.07 267.61 14.12 27918 28.9170 291.26 266.51 14.01 27919 28.9180 273.97 265.47 13.60 27920 28.9190 273.60 264.47 13.60 27921 28.9200 282.07 263.53 13.79 27922 28.9210 284.91 262.63 13.85 27923 28.9220 277.17 261.77 13.62 27924 28.9230 266.26 260.96 13.39 27925 28.9240 277.43 260.20 13.67 27926 28.9250 287.25 259.48 13.94 27927 28.9260 263.58 258.79 13.34 27928 28.9270 261.13 258.15 13.23 27929 28.9280 270.15 257.55 13.49 27930 28.9290 257.57 256.99 13.16 27931 28.9300 273.22 256.47 13.53 27932 28.9310 254.65 255.99 13.06 27933 28.9320 253.79 255.55 13.07 27934 28.9330 250.55 255.14 12.98 27935 28.9340 262.40 254.78 13.29 27936 28.9350 259.41 254.46 13.18 27937 28.9360 260.29 254.18 13.21 27938 28.9370 277.38 253.93 13.66 27939 28.9380 272.74 253.74 13.52 27940 28.9390 260.55 253.58 13.22 27941 28.9400 265.45 253.46 13.34 27942 28.9410 251.09 253.40 13.03 27943 28.9420 245.53 253.37 12.85 27944 28.9430 260.41 253.40 13.25 27945 28.9440 285.39 253.47 13.89 27946 28.9450 238.69 253.60 12.68 27947 28.9460 251.40 253.78 13.03 27948 28.9470 265.03 254.02 13.34 27949 28.9480 270.43 254.32 13.48 27950 28.9490 270.27 254.68 13.52 27951 28.9500 265.98 255.10 13.42 27952 28.9510 257.83 255.60 13.22 27953 28.9520 253.85 256.17 13.08 27954 28.9530 247.61 256.82 12.93 27955 28.9540 260.63 257.55 13.23 27956 28.9550 270.23 258.37 13.47 27957 28.9560 260.90 259.29 13.26 27958 28.9570 272.86 260.31 13.51 27959 28.9580 252.04 261.44 13.05 27960 28.9590 245.77 262.68 12.91 27961 28.9600 272.27 264.05 13.53 27962 28.9610 275.40 265.55 13.61 27963 28.9620 277.50 267.20 13.62 27964 28.9630 274.83 268.99 13.65 27965 28.9640 267.76 270.95 13.40 27966 28.9650 267.11 273.06 13.38 27967 28.9660 269.45 275.35 13.48 27968 28.9670 283.85 277.83 13.83 27969 28.9680 291.90 280.49 14.03 27970 28.9690 277.95 283.34 13.67 27971 28.9700 294.35 286.37 14.08 27972 28.9710 300.96 289.61 14.23 27973 28.9720 259.36 293.00 13.21 27974 28.9730 270.37 296.55 13.48 27975 28.9740 296.02 300.23 14.10 27976 28.9750 297.76 304.00 14.16 27977 28.9760 293.99 307.81 14.08 27978 28.9770 298.18 311.60 14.14 27979 28.9780 313.32 315.30 14.53 27980 28.9790 326.27 318.83 14.83 27981 28.9800 353.44 322.08 15.41 27982 28.9810 318.21 324.95 14.60 27983 28.9820 323.30 327.36 14.73 27984 28.9830 340.90 329.20 15.15 27985 28.9840 337.51 330.41 15.04 27986 28.9850 328.95 330.92 14.87 27987 28.9860 314.43 330.71 14.54 27988 28.9870 299.50 329.78 14.17 27989 28.9880 307.94 328.15 14.38 27990 28.9890 291.30 325.89 13.97 27991 28.9900 321.47 323.07 14.69 27992 28.9910 323.68 319.79 14.74 27993 28.9920 286.34 316.12 13.82 27994 28.9930 297.33 312.21 14.11 27995 28.9940 298.69 308.11 14.22 27996 28.9950 301.67 303.92 14.27 27997 28.9960 276.71 299.71 13.60 27998 28.9970 296.16 295.55 14.08 27999 28.9980 277.96 291.48 13.66 28000 28.9990 282.06 287.54 13.80 28001 29.0000 269.59 283.74 13.47 28002 29.0010 286.58 280.12 13.86 28003 29.0020 276.55 276.67 13.64 28004 29.0030 277.61 273.42 13.66 28005 29.0040 265.78 270.36 13.38 28006 29.0050 274.58 267.47 13.62 28007 29.0060 288.70 264.75 13.91 28008 29.0070 265.05 262.21 13.32 28009 29.0080 256.18 259.84 13.13 28010 29.0090 247.11 257.61 12.92 28011 29.0100 241.18 255.53 12.72 28012 29.0110 243.55 253.58 12.82 28013 29.0120 244.31 251.76 12.84 28014 29.0130 237.57 250.05 12.61 28015 29.0140 229.98 248.46 12.41 28016 29.0150 241.31 247.15 12.76 28017 29.0160 244.84 245.75 12.81 28018 29.0170 247.06 244.44 12.90 28019 29.0180 241.06 243.21 12.72 28020 29.0190 218.05 242.06 12.11 28021 29.0200 233.96 240.98 12.54 28022 29.0210 237.40 239.96 12.61 28023 29.0220 221.75 239.00 12.22 28024 29.0230 230.49 238.10 12.43 28025 29.0240 238.95 237.25 12.71 28026 29.0250 235.21 236.45 12.59 28027 29.0260 233.64 235.70 12.54 28028 29.0270 233.91 234.98 12.52 28029 29.0280 228.82 234.31 12.44 28030 29.0290 238.89 233.67 12.71 28031 29.0300 240.19 233.07 12.73 28032 29.0310 226.68 232.50 12.29 28033 29.0320 234.02 231.96 12.49 28034 29.0330 248.95 231.45 12.94 28035 29.0340 261.98 230.96 13.29 28036 29.0350 231.14 230.50 12.50 28037 29.0360 235.38 230.06 12.65 28038 29.0370 235.60 229.65 12.64 28039 29.0380 229.62 229.25 12.46 28040 29.0390 236.65 228.87 12.59 28041 29.0400 239.45 228.52 12.69 28042 29.0410 240.10 228.18 12.68 28043 29.0420 243.58 227.86 12.79 28044 29.0430 226.56 227.55 12.31 28045 29.0440 218.16 227.26 12.09 28046 29.0450 223.47 226.98 12.27 28047 29.0460 227.00 226.72 12.37 28048 29.0470 225.30 226.47 12.28 28049 29.0480 232.37 226.23 12.51 28050 29.0490 220.76 226.01 12.19 28051 29.0500 210.23 225.79 11.88 28052 29.0510 242.91 225.59 12.79 28053 29.0520 234.96 225.40 12.59 28054 29.0530 227.33 225.22 12.35 28055 29.0540 243.49 225.04 12.77 28056 29.0550 230.35 224.88 12.38 28057 29.0560 224.68 224.73 12.36 28058 29.0570 228.36 224.59 12.42 28059 29.0580 227.54 224.45 12.36 28060 29.0590 230.52 224.32 12.46 28061 29.0600 214.13 224.20 12.01 28062 29.0610 223.30 224.09 12.21 28063 29.0620 221.94 223.99 12.21 28064 29.0630 218.91 223.90 12.15 28065 29.0640 201.33 223.81 11.57 28066 29.0650 200.02 223.73 11.56 28067 29.0660 234.73 223.65 12.55 28068 29.0670 209.19 223.59 11.88 28069 29.0680 224.42 223.53 12.31 28070 29.0690 233.37 223.48 12.53 28071 29.0700 243.24 223.43 12.79 28072 29.0710 215.05 223.39 12.03 28073 29.0720 223.99 223.36 12.23 28074 29.0730 209.18 223.34 11.84 28075 29.0740 220.04 222.65 12.18 28076 29.0750 216.17 222.65 12.15 28077 29.0760 227.46 222.65 12.37 28078 29.0770 222.14 222.65 12.22 28079 29.0780 232.74 222.67 12.48 28080 29.0790 213.48 222.69 12.02 28081 29.0800 242.22 222.72 12.77 28082 29.0810 233.04 222.75 12.50 28083 29.0820 223.08 222.79 12.28 28084 29.0830 231.29 222.85 12.46 28085 29.0840 255.92 222.90 13.06 28086 29.0850 230.25 222.97 12.44 28087 29.0860 230.65 223.04 12.44 28088 29.0870 227.18 223.12 12.38 28089 29.0880 224.94 223.22 12.28 28090 29.0890 222.27 223.32 12.17 28091 29.0900 223.92 223.42 12.25 28092 29.0910 220.21 223.54 12.18 28093 29.0920 187.93 223.67 11.29 28094 29.0930 231.87 223.80 12.49 28095 29.0940 209.21 223.95 11.91 28096 29.0950 209.18 224.11 11.87 28097 29.0960 213.67 224.27 12.00 28098 29.0970 221.12 224.45 12.22 28099 29.0980 240.74 224.65 12.74 28100 29.0990 218.91 224.85 12.12 28101 29.1000 225.12 225.07 12.25 28102 29.1010 229.07 225.30 12.40 28103 29.1020 207.48 225.54 11.79 28104 29.1030 217.60 225.80 12.09 28105 29.1040 232.75 226.08 12.54 28106 29.1050 232.58 226.37 12.49 28107 29.1060 219.99 226.68 12.17 28108 29.1070 235.72 227.01 12.52 28109 29.1080 231.73 227.35 12.41 28110 29.1090 223.26 227.72 12.24 28111 29.1100 237.02 228.11 12.61 28112 29.1110 232.05 228.53 12.47 28113 29.1120 250.54 228.97 13.00 28114 29.1130 227.47 229.43 12.36 28115 29.1140 240.36 229.92 12.72 28116 29.1150 237.59 230.45 12.68 28117 29.1160 239.22 231.00 12.69 28118 29.1170 222.39 231.59 12.23 28119 29.1180 238.39 232.22 12.67 28120 29.1190 217.47 232.88 12.07 28121 29.1200 237.07 233.58 12.61 28122 29.1210 250.47 234.33 13.03 28123 29.1220 256.20 235.13 13.21 28124 29.1230 247.65 235.97 12.93 28125 29.1240 235.79 236.87 12.63 28126 29.1250 240.87 237.82 12.70 28127 29.1260 217.09 238.84 12.07 28128 29.1270 229.95 239.92 12.43 28129 29.1280 251.50 241.07 12.99 28130 29.1290 247.53 242.29 12.91 28131 29.1300 230.31 243.59 12.52 28132 29.1310 246.19 244.96 12.87 28133 29.1320 239.15 246.42 12.70 28134 29.1330 258.17 247.97 13.24 28135 29.1340 282.32 249.60 13.79 28136 29.1350 267.50 251.31 13.42 28137 29.1360 249.08 253.12 12.95 28138 29.1370 273.20 255.00 13.54 28139 29.1380 263.42 256.96 13.30 28140 29.1390 275.76 259.00 13.65 28141 29.1400 283.84 261.08 13.84 28142 29.1410 267.61 263.21 13.41 28143 29.1420 260.77 265.35 13.22 28144 29.1430 266.56 267.49 13.37 28145 29.1440 266.56 269.60 13.40 28146 29.1450 272.91 271.64 13.50 28147 29.1460 276.14 273.57 13.65 28148 29.1470 282.34 275.36 13.77 28149 29.1480 279.10 276.72 13.72 28150 29.1490 274.87 278.15 13.59 28151 29.1500 280.02 279.35 13.76 28152 29.1510 288.31 280.31 13.93 28153 29.1520 292.71 281.02 14.03 28154 29.1530 298.45 281.49 14.19 28155 29.1540 296.09 281.75 14.13 28156 29.1550 261.32 281.80 13.26 28157 29.1560 280.01 281.69 13.74 28158 29.1570 284.36 281.45 13.85 28159 29.1580 289.87 281.13 13.96 28160 29.1590 259.78 280.76 13.19 28161 29.1600 273.42 280.38 13.53 28162 29.1610 286.74 280.04 13.86 28163 29.1620 280.71 279.76 13.75 28164 29.1630 279.96 279.58 13.75 28165 29.1640 293.92 279.51 14.02 28166 29.1650 299.46 279.58 14.15 28167 29.1660 278.92 279.82 13.72 28168 29.1670 276.09 280.22 13.59 28169 29.1680 275.62 280.82 13.62 28170 29.1690 299.83 281.61 14.21 28171 29.1700 283.18 282.62 13.83 28172 29.1710 290.49 283.84 14.01 28173 29.1720 289.15 285.30 14.01 28174 29.1730 291.62 287.01 14.05 28175 29.1740 289.28 288.96 14.00 28176 29.1750 301.10 291.19 14.21 28177 29.1760 301.57 293.70 14.26 28178 29.1770 304.42 296.52 14.36 28179 29.1780 313.25 299.63 14.50 28180 29.1790 318.26 303.10 14.62 28181 29.1800 309.00 306.90 14.43 28182 29.1810 313.19 311.08 14.51 28183 29.1820 322.99 315.67 14.73 28184 29.1830 308.37 320.68 14.42 28185 29.1840 323.12 326.12 14.78 28186 29.1850 334.71 332.05 14.99 28187 29.1860 321.20 338.49 14.68 28188 29.1870 324.94 345.46 14.77 28189 29.1880 345.39 352.99 15.27 28190 29.1890 370.65 360.64 15.82 28191 29.1900 374.02 369.36 15.85 28192 29.1910 377.65 378.62 15.96 28193 29.1920 366.91 388.49 15.72 28194 29.1930 377.24 398.92 15.88 28195 29.1940 402.85 409.88 16.48 28196 29.1950 426.31 421.25 16.91 28197 29.1960 470.20 433.01 17.74 28198 29.1970 465.97 444.98 17.68 28199 29.1980 476.15 456.98 17.95 28200 29.1990 503.84 468.80 18.40 28201 29.2000 497.24 480.15 18.31 28202 29.2010 537.26 490.72 19.03 28203 29.2020 545.45 500.26 19.19 28204 29.2030 542.47 508.40 19.08 28205 29.2040 565.85 514.83 19.54 28206 29.2050 568.89 519.30 19.64 28207 29.2060 530.01 521.61 18.91 28208 29.2070 517.37 521.65 18.62 28209 29.2080 540.40 519.43 19.07 28210 29.2090 529.01 515.01 18.87 28211 29.2100 540.55 508.61 19.07 28212 29.2110 514.84 500.41 18.59 28213 29.2120 487.81 490.81 18.13 28214 29.2130 459.31 480.06 17.60 28215 29.2140 483.71 468.49 18.08 28216 29.2150 465.12 456.42 17.74 28217 29.2160 469.43 444.11 17.82 28218 29.2170 429.93 431.83 17.00 28219 29.2180 409.61 419.68 16.59 28220 29.2190 403.65 407.85 16.49 28221 29.2200 423.83 394.39 16.94 28222 29.2210 390.47 383.50 16.24 28223 29.2220 370.59 373.15 15.84 28224 29.2230 356.19 363.40 15.50 28225 29.2240 354.93 354.20 15.46 28226 29.2250 356.66 345.56 15.48 28227 29.2260 330.22 337.48 14.91 28228 29.2270 335.28 329.95 15.03 28229 29.2280 321.34 322.89 14.71 28230 29.2290 321.82 316.35 14.73 28231 29.2300 290.18 310.23 13.97 28232 29.2310 309.62 304.54 14.46 28233 29.2320 323.87 299.24 14.82 28234 29.2330 297.81 294.32 14.22 28235 29.2340 311.51 289.71 14.45 28236 29.2350 315.11 285.42 14.54 28237 29.2360 280.78 281.43 13.77 28238 29.2370 283.61 277.70 13.85 28239 29.2380 279.57 274.21 13.76 28240 29.2390 294.99 270.96 14.13 28241 29.2400 271.11 267.92 13.55 28242 29.2410 280.96 265.07 13.74 28243 29.2420 282.69 262.41 13.81 28244 29.2430 284.25 259.91 13.86 28245 29.2440 265.84 257.57 13.40 28246 29.2450 267.60 255.36 13.39 28247 29.2460 258.66 253.29 13.17 28248 29.2470 255.09 251.35 13.08 28249 29.2480 261.57 249.51 13.24 28250 29.2490 279.07 247.79 13.64 28251 29.2500 259.07 246.16 13.20 28252 29.2510 258.22 244.62 13.18 28253 29.2520 244.25 243.17 12.87 28254 29.2530 246.01 241.79 12.92 28255 29.2540 244.67 240.49 12.80 28256 29.2550 235.49 239.27 12.60 28257 29.2560 251.62 238.10 13.03 28258 29.2570 268.92 236.99 13.42 28259 29.2580 260.38 235.94 13.26 28260 29.2590 234.87 234.95 12.55 28261 29.2600 236.09 234.00 12.61 28262 29.2610 238.20 233.10 12.66 28263 29.2620 226.87 232.24 12.35 28264 29.2630 253.99 231.42 13.04 28265 29.2640 239.86 230.64 12.71 28266 29.2650 238.99 229.90 12.71 28267 29.2660 247.68 229.21 12.90 28268 29.2670 225.11 228.54 12.31 28269 29.2680 234.69 227.89 12.54 28270 29.2690 221.90 227.28 12.20 28271 29.2700 232.52 226.69 12.47 28272 29.2710 234.91 226.12 12.61 28273 29.2720 245.73 225.58 12.88 28274 29.2730 249.72 225.07 12.92 28275 29.2740 239.95 224.57 12.73 28276 29.2750 230.77 224.09 12.50 28277 29.2760 225.24 223.64 12.35 28278 29.2770 229.67 223.20 12.42 28279 29.2780 223.32 222.79 12.25 28280 29.2790 239.27 222.38 12.69 28281 29.2800 213.57 222.00 11.97 28282 29.2810 213.30 221.63 11.96 28283 29.2820 208.24 221.27 11.84 28284 29.2830 230.31 220.93 12.45 28285 29.2840 234.79 220.60 12.57 28286 29.2850 240.47 220.29 12.74 28287 29.2860 235.50 219.98 12.58 28288 29.2870 242.11 219.69 12.81 28289 29.2880 217.62 219.41 12.03 28290 29.2890 224.71 219.14 12.30 28291 29.2900 229.92 218.88 12.44 28292 29.2910 227.81 218.63 12.42 28293 29.2920 224.98 218.39 12.32 28294 29.2930 222.02 218.16 12.24 28295 29.2940 201.88 217.94 11.67 28296 29.2950 209.81 217.73 11.87 28297 29.2960 236.47 217.52 12.58 28298 29.2970 231.83 217.32 12.49 28299 29.2980 231.33 217.13 12.48 28300 29.2990 235.56 216.95 12.58 28301 29.3000 228.59 216.78 12.40 28302 29.3010 249.01 216.61 12.93 28303 29.3020 232.98 216.45 12.53 28304 29.3030 219.64 216.29 12.17 28305 29.3040 214.68 216.64 11.98 28306 29.3050 220.78 216.50 12.22 28307 29.3060 235.67 216.37 12.61 28308 29.3070 209.12 216.24 11.88 28309 29.3080 222.07 216.12 12.21 28310 29.3090 230.57 216.00 12.46 28311 29.3100 226.74 215.89 12.34 28312 29.3110 224.59 215.78 12.25 28313 29.3120 209.83 215.68 11.86 28314 29.3130 226.95 215.58 12.37 28315 29.3140 221.45 215.49 12.26 28316 29.3150 209.56 215.41 11.92 28317 29.3160 213.13 215.32 11.91 28318 29.3170 212.68 215.25 11.96 28319 29.3180 213.54 215.18 11.97 28320 29.3190 212.67 215.11 11.96 28321 29.3200 212.92 215.05 12.01 28322 29.3210 218.02 214.99 12.09 28323 29.3220 210.44 214.94 11.90 28324 29.3230 231.25 214.89 12.49 28325 29.3240 228.14 214.84 12.44 28326 29.3250 209.02 214.80 11.89 28327 29.3260 209.54 214.77 11.90 28328 29.3270 206.48 214.74 11.80 28329 29.3280 208.87 214.71 11.86 28330 29.3290 203.51 214.69 11.71 28331 29.3300 206.02 214.67 11.76 28332 29.3310 219.74 214.66 12.13 28333 29.3320 229.08 214.65 12.41 28334 29.3330 211.89 214.65 11.93 28335 29.3340 203.47 214.65 11.75 28336 29.3350 210.41 214.65 11.93 28337 29.3360 224.05 214.67 12.31 28338 29.3370 207.35 214.68 11.79 28339 29.3380 213.51 214.70 11.94 28340 29.3390 209.81 214.73 11.87 28341 29.3400 225.70 214.76 12.33 28342 29.3410 226.51 214.80 12.37 28343 29.3420 207.31 214.84 11.79 28344 29.3430 204.39 214.89 11.74 28345 29.3440 230.10 214.94 12.45 28346 29.3450 213.58 215.00 11.99 28347 29.3460 225.24 215.07 12.35 28348 29.3470 226.51 215.14 12.32 28349 29.3480 214.76 215.22 12.01 28350 29.3490 212.29 215.31 11.93 28351 29.3500 223.95 215.40 12.30 28352 29.3510 206.03 215.50 11.79 28353 29.3520 228.96 215.61 12.36 28354 29.3530 213.47 215.73 12.00 28355 29.3540 217.68 215.85 12.06 28356 29.3550 221.36 215.99 12.20 28357 29.3560 230.49 216.13 12.42 28358 29.3570 242.78 216.30 12.77 28359 29.3580 226.14 216.47 12.31 28360 29.3590 232.86 216.64 12.48 28361 29.3600 228.72 216.83 12.41 28362 29.3610 204.13 217.02 11.71 28363 29.3620 214.70 217.24 12.01 28364 29.3630 198.10 217.46 11.54 28365 29.3640 214.48 217.70 11.99 28366 29.3650 230.65 217.95 12.40 28367 29.3660 210.29 218.21 11.88 28368 29.3670 219.01 218.50 12.14 28369 29.3680 207.71 218.80 11.80 28370 29.3690 207.60 219.12 11.84 28371 29.3700 214.09 219.46 11.99 28372 29.3710 216.42 219.82 12.03 28373 29.3720 226.05 220.21 12.29 28374 29.3730 221.97 220.61 12.21 28375 29.3740 217.69 221.05 12.08 28376 29.3750 223.48 221.51 12.21 28377 29.3760 216.16 222.00 12.06 28378 29.3770 234.61 222.53 12.59 28379 29.3780 219.49 223.08 12.17 28380 29.3790 227.77 223.68 12.37 28381 29.3800 233.61 224.31 12.56 28382 29.3810 206.95 224.99 11.76 28383 29.3820 208.64 225.71 11.78 28384 29.3830 225.52 226.48 12.28 28385 29.3840 229.00 227.30 12.42 28386 29.3850 233.91 228.18 12.54 28387 29.3860 233.12 229.13 12.52 28388 29.3870 224.29 230.13 12.27 28389 29.3880 226.94 231.22 12.34 28390 29.3890 208.67 232.38 11.89 28391 29.3900 222.06 233.62 12.23 28392 29.3910 235.59 234.96 12.57 28393 29.3920 237.35 236.39 12.64 28394 29.3930 241.76 237.92 12.77 28395 29.3940 256.01 239.39 13.10 28396 29.3950 248.20 241.17 12.90 28397 29.3960 231.59 243.07 12.47 28398 29.3970 243.87 245.11 12.80 28399 29.3980 237.88 247.32 12.64 28400 29.3990 252.25 249.66 13.03 28401 29.4000 254.76 252.18 13.02 28402 29.4010 247.68 254.87 12.91 28403 29.4020 267.45 257.73 13.44 28404 29.4030 249.36 260.78 12.98 28405 29.4040 246.84 263.99 12.92 28406 29.4050 266.09 267.38 13.39 28407 29.4060 265.13 270.94 13.33 28408 29.4070 283.47 274.64 13.79 28409 29.4080 260.62 278.45 13.22 28410 29.4090 257.02 282.34 13.13 28411 29.4100 273.00 286.24 13.54 28412 29.4110 276.91 290.12 13.66 28413 29.4120 291.58 293.88 14.04 28414 29.4130 273.09 297.45 13.60 28415 29.4140 298.48 300.71 14.14 28416 29.4150 301.93 303.60 14.25 28417 29.4160 293.91 305.98 14.04 28418 29.4170 312.53 307.80 14.52 28419 29.4180 303.42 308.97 14.23 28420 29.4190 289.93 309.44 13.94 28421 29.4200 307.94 309.21 14.39 28422 29.4210 284.84 308.27 13.88 28423 29.4220 309.09 306.66 14.45 28424 29.4230 305.56 304.44 14.36 28425 29.4240 327.70 302.23 14.93 28426 29.4250 320.84 299.08 14.69 28427 29.4260 291.54 295.58 14.03 28428 29.4270 279.63 291.87 13.68 28429 29.4280 277.14 288.00 13.59 28430 29.4290 275.17 284.07 13.56 28431 29.4300 254.17 280.14 13.06 28432 29.4310 264.92 276.28 13.32 28433 29.4320 261.43 272.51 13.29 28434 29.4330 266.13 268.87 13.37 28435 29.4340 266.48 265.39 13.44 28436 29.4350 248.20 262.08 12.94 28437 29.4360 249.70 258.94 12.93 28438 29.4370 268.46 255.99 13.52 28439 29.4380 237.47 253.21 12.66 28440 29.4390 242.21 250.61 12.71 28441 29.4400 249.64 248.17 12.93 28442 29.4410 230.75 245.89 12.49 28443 29.4420 216.99 243.77 12.11 28444 29.4430 233.70 241.79 12.54 28445 29.4440 238.59 239.93 12.62 28446 29.4450 232.49 238.21 12.51 28447 29.4460 255.78 236.61 13.08 28448 29.4470 242.83 235.10 12.76 28449 29.4480 226.14 233.71 12.36 28450 29.4490 217.66 232.40 12.11 28451 29.4500 236.39 231.18 12.57 28452 29.4510 234.66 230.04 12.59 28453 29.4520 212.13 228.98 11.94 28454 29.4530 206.37 228.56 11.74 28455 29.4540 211.74 227.63 11.95 28456 29.4550 221.34 226.76 12.20 28457 29.4560 230.72 225.94 12.47 28458 29.4570 247.01 225.17 12.93 28459 29.4580 226.99 224.45 12.36 28460 29.4590 224.73 223.78 12.30 28461 29.4600 244.49 223.14 12.79 28462 29.4610 231.13 222.54 12.51 28463 29.4620 222.13 221.98 12.24 28464 29.4630 220.42 221.45 12.16 28465 29.4640 226.18 220.94 12.33 28466 29.4650 235.16 220.47 12.57 28467 29.4660 224.06 220.02 12.33 28468 29.4670 210.65 219.60 11.92 28469 29.4680 192.76 219.20 11.32 28470 29.4690 222.28 218.82 12.18 28471 29.4700 226.01 218.46 12.33 28472 29.4710 212.19 218.12 11.93 28473 29.4720 229.01 217.79 12.38 28474 29.4730 202.70 217.49 11.71 28475 29.4740 220.18 217.19 12.19 28476 29.4750 200.86 216.92 11.62 28477 29.4760 219.96 216.65 12.14 28478 29.4770 232.84 216.40 12.53 28479 29.4780 221.23 216.17 12.20 28480 29.4790 232.47 215.94 12.54 28481 29.4800 229.33 215.72 12.44 28482 29.4810 201.31 215.52 11.63 28483 29.4820 202.18 215.32 11.68 28484 29.4830 204.39 215.14 11.75 28485 29.4840 222.07 214.96 12.25 28486 29.4850 197.47 214.79 11.50 28487 29.4860 204.57 214.63 11.71 28488 29.4870 210.66 214.48 11.87 28489 29.4880 226.83 214.33 12.36 28490 29.4890 208.60 214.19 11.87 28491 29.4900 232.11 214.05 12.46 28492 29.4910 226.73 213.93 12.35 28493 29.4920 213.35 213.80 11.97 28494 29.4930 219.66 213.69 12.13 28495 29.4940 203.43 213.58 11.67 28496 29.4950 225.35 213.47 12.32 28497 29.4960 209.90 213.37 11.84 28498 29.4970 210.55 213.28 11.89 28499 29.4980 231.49 213.18 12.49 28500 29.4990 218.84 213.10 12.17 28501 29.5000 219.88 213.01 12.15 28502 29.5010 219.31 212.94 12.18 28503 29.5020 212.48 212.86 11.99 28504 29.5030 203.73 212.79 11.74 28505 29.5040 214.44 212.72 12.05 28506 29.5050 220.88 212.66 12.19 28507 29.5060 212.27 212.60 11.97 28508 29.5070 234.86 212.54 12.55 28509 29.5080 223.84 212.48 12.31 28510 29.5090 219.42 212.43 12.16 28511 29.5100 218.23 212.38 12.14 28512 29.5110 201.42 212.34 11.72 28513 29.5120 214.16 212.29 12.02 28514 29.5130 208.00 212.25 11.81 28515 29.5140 226.76 212.22 12.34 28516 29.5150 209.69 212.18 11.93 28517 29.5160 217.57 212.15 12.14 28518 29.5170 220.32 212.12 12.17 28519 29.5180 219.14 212.09 12.14 28520 29.5190 234.51 212.06 12.56 28521 29.5200 219.45 212.04 12.15 28522 29.5210 230.99 212.02 12.49 28523 29.5220 216.07 212.00 12.05 28524 29.5230 194.87 211.98 11.47 28525 29.5240 206.37 211.96 11.78 28526 29.5250 223.35 211.95 12.24 28527 29.5260 201.11 211.94 11.63 28528 29.5270 207.12 211.93 11.78 28529 29.5280 207.10 211.92 11.78 28530 29.5290 202.58 211.92 11.68 28531 29.5300 210.83 211.91 11.89 28532 29.5310 220.16 211.91 12.15 28533 29.5320 207.50 211.91 11.82 28534 29.5330 210.14 211.91 11.87 28535 29.5340 217.23 211.92 12.12 28536 29.5350 206.96 211.92 11.84 28537 29.5360 221.26 211.93 12.22 28538 29.5370 206.04 211.94 11.74 28539 29.5380 210.70 211.95 11.94 28540 29.5390 193.01 211.96 11.38 28541 29.5400 207.69 211.98 11.84 28542 29.5410 209.60 211.99 11.87 28543 29.5420 205.52 212.01 11.79 28544 29.5430 210.48 212.03 11.88 28545 29.5440 182.55 212.05 11.08 28546 29.5450 200.38 212.07 11.61 28547 29.5460 215.55 212.10 12.05 28548 29.5470 196.09 212.12 11.51 28549 29.5480 213.75 212.15 11.97 28550 29.5490 208.76 212.18 11.90 28551 29.5500 202.49 212.21 11.69 28552 29.5510 207.72 212.25 11.81 28553 29.5520 206.61 212.28 11.81 28554 29.5530 212.90 212.32 11.98 28555 29.5540 211.64 212.36 11.92 28556 29.5550 215.12 212.40 11.98 28557 29.5560 216.03 212.44 12.02 28558 29.5570 232.32 212.49 12.53 28559 29.5580 234.96 212.53 12.57 28560 29.5590 226.61 212.58 12.33 28561 29.5600 209.32 212.63 11.90 28562 29.5610 213.25 212.69 11.96 28563 29.5620 213.87 212.74 12.01 28564 29.5630 217.46 212.80 12.07 28565 29.5640 211.23 212.86 11.89 28566 29.5650 214.17 212.92 11.97 28567 29.5660 203.36 212.99 11.69 28568 29.5670 206.77 213.05 11.75 28569 29.5680 208.02 213.12 11.83 28570 29.5690 229.89 213.20 12.36 28571 29.5700 207.53 213.27 11.80 28572 29.5710 214.37 213.35 12.00 28573 29.5720 211.46 213.43 11.94 28574 29.5730 209.92 213.51 11.86 28575 29.5740 203.70 213.60 11.70 28576 29.5750 222.93 213.68 12.24 28577 29.5760 213.98 213.78 11.98 28578 29.5770 213.72 213.87 11.97 28579 29.5780 230.00 213.97 12.44 28580 29.5790 221.47 214.07 12.17 28581 29.5800 197.73 214.10 11.50 28582 29.5810 217.34 214.21 12.12 28583 29.5820 210.36 214.32 11.88 28584 29.5830 206.65 214.44 11.78 28585 29.5840 203.53 214.56 11.73 28586 29.5850 203.84 214.69 11.72 28587 29.5860 217.19 214.82 12.06 28588 29.5870 224.94 214.95 12.33 28589 29.5880 229.37 215.09 12.48 28590 29.5890 235.88 215.24 12.56 28591 29.5900 201.82 215.39 11.65 28592 29.5910 208.56 215.55 11.85 28593 29.5920 215.69 215.71 12.05 28594 29.5930 220.13 215.88 12.15 28595 29.5940 226.04 216.05 12.29 28596 29.5950 215.43 216.24 12.03 28597 29.5960 228.84 216.43 12.41 28598 29.5970 229.69 216.62 12.44 28599 29.5980 206.76 216.83 11.83 28600 29.5990 209.85 217.04 11.85 28601 29.6000 204.46 216.74 11.70 28602 29.6010 209.36 216.97 11.88 28603 29.6020 235.78 217.22 12.58 28604 29.6030 221.33 217.48 12.19 28605 29.6040 224.98 217.75 12.31 28606 29.6050 214.22 218.03 11.93 28607 29.6060 214.63 218.33 11.99 28608 29.6070 242.34 218.64 12.72 28609 29.6080 228.59 218.96 12.43 28610 29.6090 218.23 219.31 12.14 28611 29.6100 232.39 219.67 12.48 28612 29.6110 212.59 220.05 11.89 28613 29.6120 221.54 220.45 12.16 28614 29.6130 215.35 220.87 12.03 28615 29.6140 232.78 221.32 12.50 28616 29.6150 222.15 221.79 12.24 28617 29.6160 211.66 222.29 12.02 28618 29.6170 220.33 222.81 12.18 28619 29.6180 231.62 223.37 12.47 28620 29.6190 239.02 223.96 12.60 28621 29.6200 228.35 224.58 12.37 28622 29.6210 231.04 225.24 12.44 28623 29.6220 215.30 225.94 12.03 28624 29.6230 203.42 226.67 11.68 28625 29.6240 235.49 227.44 12.58 28626 29.6250 246.09 228.25 12.84 28627 29.6260 225.86 229.09 12.34 28628 29.6270 234.01 229.96 12.54 28629 29.6280 227.42 230.85 12.43 28630 29.6290 250.78 231.76 12.91 28631 29.6300 228.65 232.67 12.34 28632 29.6310 223.67 233.58 12.28 28633 29.6320 242.63 234.48 12.77 28634 29.6330 241.42 235.33 12.78 28635 29.6340 242.94 236.13 12.80 28636 29.6350 240.41 236.87 12.70 28637 29.6360 242.73 237.54 12.76 28638 29.6370 249.99 238.11 12.98 28639 29.6380 265.06 238.60 13.33 28640 29.6390 269.00 239.00 13.44 28641 29.6400 246.09 239.32 12.82 28642 29.6410 230.89 239.57 12.49 28643 29.6420 259.90 239.77 13.13 28644 29.6430 254.51 239.93 13.01 28645 29.6440 235.40 240.08 12.62 28646 29.6450 243.53 240.23 12.83 28647 29.6460 246.29 240.39 12.88 28648 29.6470 262.85 240.58 13.33 28649 29.6480 246.35 240.82 12.92 28650 29.6490 242.33 241.10 12.79 28651 29.6500 248.32 241.45 12.93 28652 29.6510 252.05 241.87 13.05 28653 29.6520 248.71 242.35 12.93 28654 29.6530 229.92 242.92 12.46 28655 29.6540 228.28 243.57 12.43 28656 29.6550 243.25 244.30 12.78 28657 29.6560 259.56 245.11 13.19 28658 29.6570 253.14 246.02 13.06 28659 29.6580 255.23 247.02 13.06 28660 29.6590 245.55 248.12 12.88 28661 29.6600 246.42 249.32 12.92 28662 29.6610 247.65 250.63 12.93 28663 29.6620 237.41 252.05 12.67 28664 29.6630 252.27 253.58 13.06 28665 29.6640 255.12 255.24 13.13 28666 29.6650 251.10 257.04 12.98 28667 29.6660 266.04 258.96 13.36 28668 29.6670 264.73 261.04 13.32 28669 29.6680 272.27 263.27 13.50 28670 29.6690 265.54 265.67 13.39 28671 29.6700 254.78 268.25 13.11 28672 29.6710 283.71 271.02 13.85 28673 29.6720 291.70 273.99 14.07 28674 29.6730 287.78 277.17 13.94 28675 29.6740 277.02 280.59 13.64 28676 29.6750 296.73 284.25 14.15 28677 29.6760 296.36 288.18 14.15 28678 29.6770 285.71 292.38 13.86 28679 29.6780 296.59 296.85 14.13 28680 29.6790 292.99 301.64 14.08 28681 29.6800 311.71 306.74 14.51 28682 29.6810 287.72 312.16 13.90 28683 29.6820 309.19 317.89 14.38 28684 29.6830 323.30 323.97 14.78 28685 29.6840 324.90 330.32 14.81 28686 29.6850 334.22 336.98 15.00 28687 29.6860 343.95 343.89 15.21 28688 29.6870 364.83 351.00 15.67 28689 29.6880 356.36 358.23 15.49 28690 29.6890 364.10 365.52 15.69 28691 29.6900 370.03 372.76 15.83 28692 29.6910 398.09 379.81 16.42 28693 29.6920 434.20 386.52 17.11 28694 29.6930 427.54 392.73 16.98 28695 29.6940 408.47 398.28 16.58 28696 29.6950 421.54 402.98 16.77 28697 29.6960 439.79 406.72 17.16 28698 29.6970 451.64 409.36 17.46 28699 29.6980 429.84 410.81 17.05 28700 29.6990 429.73 411.04 17.02 28701 29.7000 405.38 410.07 16.55 28702 29.7010 392.87 407.95 16.32 28703 29.7020 426.14 404.79 16.98 28704 29.7030 435.30 400.73 17.13 28705 29.7040 387.18 395.94 16.15 28706 29.7050 372.57 390.60 15.83 28707 29.7060 388.48 384.85 16.14 28708 29.7070 370.14 378.87 15.79 28709 29.7080 347.37 372.79 15.31 28710 29.7090 347.31 366.75 15.28 28711 29.7100 348.13 360.86 15.34 28712 29.7110 344.57 355.16 15.24 28713 29.7120 351.44 349.77 15.36 28714 29.7130 357.59 344.68 15.52 28715 29.7140 334.99 339.95 15.03 28716 29.7150 331.07 335.60 14.89 28717 29.7160 322.28 331.65 14.72 28718 29.7170 313.83 328.08 14.58 28719 29.7180 329.23 324.90 14.93 28720 29.7190 313.73 322.12 14.54 28721 29.7200 317.70 319.72 14.61 28722 29.7210 323.96 317.69 14.77 28723 29.7220 333.40 316.04 14.95 28724 29.7230 325.05 314.74 14.78 28725 29.7240 310.65 314.07 14.43 28726 29.7250 295.34 313.46 14.09 28727 29.7260 297.21 313.18 14.15 28728 29.7270 307.32 313.22 14.37 28729 29.7280 329.03 313.56 14.88 28730 29.7290 322.02 314.20 14.75 28731 29.7300 294.99 315.13 14.07 28732 29.7310 312.48 316.31 14.48 28733 29.7320 322.24 317.74 14.75 28734 29.7330 304.04 319.38 14.29 28735 29.7340 303.71 321.21 14.26 28736 29.7350 310.17 323.20 14.47 28737 29.7360 329.36 325.29 14.89 28738 29.7370 341.22 327.44 15.20 28739 29.7380 326.81 329.60 14.84 28740 29.7390 347.88 331.70 15.27 28741 29.7400 350.78 333.69 15.33 28742 29.7410 329.32 335.50 14.88 28743 29.7420 308.09 337.07 14.42 28744 29.7430 337.60 338.34 15.07 28745 29.7440 338.61 339.28 15.10 28746 29.7450 333.27 339.85 14.95 28747 29.7460 326.97 340.03 14.82 28748 29.7470 341.51 339.83 15.14 28749 29.7480 353.65 339.26 15.48 28750 29.7490 347.88 338.34 15.35 28751 29.7500 345.17 337.13 15.25 28752 29.7510 333.17 335.67 14.94 28753 29.7520 345.17 334.01 15.24 28754 29.7530 338.97 332.21 15.15 28755 29.7540 335.10 330.32 15.05 28756 29.7550 302.96 328.37 14.28 28757 29.7560 320.38 326.42 14.74 28758 29.7570 307.14 324.49 14.42 28759 29.7580 318.48 322.62 14.63 28760 29.7590 311.50 320.81 14.48 28761 29.7600 321.28 319.10 14.71 28762 29.7610 308.17 317.49 14.45 28763 29.7620 277.86 315.99 13.69 28764 29.7630 296.70 314.63 14.10 28765 29.7640 302.65 313.41 14.27 28766 29.7650 316.57 312.36 14.61 28767 29.7660 322.80 311.47 14.71 28768 29.7670 323.57 310.78 14.77 28769 29.7680 311.42 310.29 14.49 28770 29.7690 299.32 310.03 14.19 28771 29.7700 291.91 310.00 14.02 28772 29.7710 319.89 310.22 14.66 28773 29.7720 314.07 310.71 14.59 28774 29.7730 312.83 311.47 14.52 28775 29.7740 310.53 312.52 14.44 28776 29.7750 292.76 313.88 14.03 28777 29.7760 306.37 315.56 14.35 28778 29.7770 297.26 317.57 14.13 28779 29.7780 295.25 319.93 14.13 28780 29.7790 338.33 322.66 15.08 28781 29.7800 314.26 325.78 14.55 28782 29.7810 335.38 329.30 15.02 28783 29.7820 314.35 333.24 14.53 28784 29.7830 321.26 337.67 14.65 28785 29.7840 330.55 342.55 14.92 28786 29.7850 324.88 347.95 14.81 28787 29.7860 346.60 353.88 15.27 28788 29.7870 344.36 360.38 15.23 28789 29.7880 363.66 367.44 15.62 28790 29.7890 352.04 375.14 15.39 28791 29.7900 353.40 383.48 15.43 28792 29.7910 363.40 392.45 15.65 28793 29.7920 363.54 402.07 15.62 28794 29.7930 377.63 412.29 15.91 28795 29.7940 395.01 423.12 16.28 28796 29.7950 426.09 434.49 16.95 28797 29.7960 433.13 446.30 17.05 28798 29.7970 458.05 458.41 17.55 28799 29.7980 481.12 470.65 18.01 28800 29.7990 478.79 482.76 17.97 28801 29.8000 502.13 494.55 18.36 28802 29.8010 526.33 505.67 18.84 28803 29.8020 529.60 515.78 18.88 28804 29.8030 542.25 524.51 19.12 28805 29.8040 606.33 531.61 20.19 28806 29.8050 567.63 536.68 19.54 28807 29.8060 586.76 539.57 19.86 28808 29.8070 564.36 540.13 19.47 28809 29.8080 560.24 538.34 19.41 28810 29.8090 527.53 534.29 18.86 28811 29.8100 540.88 528.19 19.10 28812 29.8110 512.20 520.27 18.57 28813 29.8120 524.82 510.87 18.82 28814 29.8130 519.43 500.33 18.73 28815 29.8140 458.06 489.05 17.55 28816 29.8150 456.50 477.21 17.54 28817 29.8160 452.64 465.27 17.48 28818 29.8170 441.13 453.35 17.23 28819 29.8180 441.84 441.67 17.30 28820 29.8190 456.75 430.38 17.52 28821 29.8200 420.24 419.63 16.81 28822 29.8210 400.89 409.42 16.42 28823 29.8220 414.88 399.83 16.74 28824 29.8230 393.50 390.87 16.34 28825 29.8240 405.19 382.39 16.53 28826 29.8250 389.08 374.73 16.11 28827 29.8260 370.42 367.70 15.77 28828 29.8270 356.81 361.26 15.51 28829 29.8280 360.80 355.39 15.65 28830 29.8290 372.36 350.07 15.82 28831 29.8300 360.44 345.26 15.59 28832 29.8310 362.89 340.97 15.64 28833 29.8320 327.00 337.11 14.88 28834 29.8330 311.73 333.72 14.47 28835 29.8340 336.54 330.73 14.99 28836 29.8350 329.85 328.23 14.88 28837 29.8360 347.78 326.02 15.29 28838 29.8370 320.96 324.19 14.69 28839 29.8380 328.87 322.69 14.84 28840 29.8390 352.74 321.54 15.43 28841 29.8400 338.66 320.72 15.14 28842 29.8410 324.63 320.21 14.77 28843 29.8420 313.55 320.03 14.54 28844 29.8430 323.17 320.16 14.74 28845 29.8440 327.69 320.60 14.84 28846 29.8450 334.65 321.35 15.01 28847 29.8460 331.20 322.41 14.91 28848 29.8470 298.14 323.80 14.14 28849 29.8480 307.41 325.51 14.36 28850 29.8490 340.83 327.56 15.11 28851 29.8500 350.58 329.95 15.36 28852 29.8510 338.37 332.70 15.08 28853 29.8520 323.50 335.81 14.76 28854 29.8530 331.46 339.33 14.91 28855 29.8540 351.02 343.23 15.37 28856 29.8550 345.11 347.57 15.21 28857 29.8560 366.42 352.34 15.64 28858 29.8570 377.79 357.58 15.93 28859 29.8580 373.25 363.31 15.87 28860 29.8590 386.74 369.51 16.12 28861 29.8600 377.50 376.26 15.96 28862 29.8610 398.99 383.56 16.42 28863 29.8620 425.69 391.40 16.93 28864 29.8630 403.11 399.81 16.47 28865 29.8640 436.11 408.78 17.14 28866 29.8650 448.62 418.27 17.38 28867 29.8660 424.31 428.32 16.93 28868 29.8670 435.31 438.86 17.12 28869 29.8680 469.58 449.83 17.78 28870 29.8690 460.84 461.10 17.66 28871 29.8700 469.57 472.68 17.80 28872 29.8710 478.91 484.27 17.97 28873 29.8720 526.30 495.81 18.84 28874 29.8730 527.36 507.04 18.82 28875 29.8740 530.07 517.73 18.89 28876 29.8750 546.69 527.58 19.19 28877 29.8760 559.57 536.40 19.37 28878 29.8770 535.29 543.87 18.99 28879 29.8780 570.51 549.74 19.59 28880 29.8790 578.35 553.80 19.72 28881 29.8800 575.55 555.88 19.63 28882 29.8810 566.41 555.90 19.58 28883 29.8820 560.08 553.86 19.46 28884 29.8830 548.23 549.79 19.21 28885 29.8840 529.79 543.84 18.90 28886 29.8850 549.34 536.20 19.26 28887 29.8860 566.82 527.14 19.57 28888 29.8870 550.28 516.87 19.27 28889 29.8880 520.43 505.68 18.67 28890 29.8890 492.22 493.84 18.20 28891 29.8900 494.30 481.60 18.31 28892 29.8910 491.16 469.18 18.21 28893 29.8920 503.78 456.80 18.39 28894 29.8930 426.11 444.54 16.92 28895 29.8940 441.42 432.55 17.26 28896 29.8950 411.30 420.94 16.69 28897 29.8960 429.42 409.77 17.06 28898 29.8970 390.32 399.12 16.25 28899 29.8980 389.73 388.95 16.19 28900 29.8990 379.24 379.31 15.97 28901 29.9000 375.51 370.19 15.96 28902 29.9010 361.28 361.62 15.59 28903 29.9020 364.21 353.49 15.64 28904 29.9030 365.26 345.91 15.68 28905 29.9040 336.38 338.76 15.07 28906 29.9050 338.40 332.06 15.09 28907 29.9060 323.36 325.78 14.77 28908 29.9070 308.98 319.89 14.42 28909 29.9080 313.18 314.37 14.48 28910 29.9090 310.88 309.21 14.47 28911 29.9100 323.39 304.36 14.75 28912 29.9110 303.22 299.81 14.26 28913 29.9120 300.38 296.95 14.23 28914 29.9130 312.24 292.95 14.50 28915 29.9140 288.42 289.21 13.90 28916 29.9150 298.32 285.68 14.17 28917 29.9160 290.37 282.36 14.00 28918 29.9170 281.61 279.23 13.77 28919 29.9180 267.38 276.30 13.41 28920 29.9190 283.42 273.52 13.82 28921 29.9200 274.34 270.92 13.63 28922 29.9210 276.28 268.45 13.68 28923 29.9220 290.35 266.12 13.99 28924 29.9230 279.25 263.91 13.70 28925 29.9240 279.87 261.84 13.71 28926 29.9250 280.84 259.86 13.74 28927 29.9260 267.01 257.99 13.39 28928 29.9270 268.66 256.22 13.51 28929 29.9280 270.69 254.54 13.50 28930 29.9290 265.69 252.94 13.35 28931 29.9300 273.25 251.43 13.55 28932 29.9310 282.05 249.99 13.80 28933 29.9320 267.87 248.61 13.46 28934 29.9330 256.08 247.31 13.12 28935 29.9340 247.08 246.06 12.86 28936 29.9350 240.50 244.88 12.71 28937 29.9360 261.30 243.74 13.25 28938 29.9370 249.01 242.66 12.88 28939 29.9380 260.29 241.62 13.19 28940 29.9390 250.14 240.63 13.02 28941 29.9400 235.47 239.69 12.60 28942 29.9410 257.92 238.79 13.14 28943 29.9420 258.83 237.92 13.22 28944 29.9430 250.50 237.09 12.97 28945 29.9440 244.49 236.29 12.81 28946 29.9450 239.24 235.53 12.68 28947 29.9460 257.84 234.80 13.14 28948 29.9470 263.41 234.10 13.37 28949 29.9480 246.57 233.42 12.87 28950 29.9490 232.49 232.77 12.45 28951 29.9500 252.58 232.15 13.01 28952 29.9510 243.18 231.55 12.80 28953 29.9520 235.20 230.98 12.58 28954 29.9530 256.75 230.42 13.14 28955 29.9540 243.32 229.89 12.82 28956 29.9550 227.48 229.37 12.36 28957 29.9560 261.27 228.88 13.22 28958 29.9570 251.55 228.40 13.00 28959 29.9580 224.47 227.94 12.32 28960 29.9590 250.03 227.49 13.00 28961 29.9600 231.38 227.06 12.51 28962 29.9610 241.19 226.65 12.77 28963 29.9620 229.84 226.25 12.41 28964 29.9630 255.34 225.87 13.11 28965 29.9640 250.38 225.49 12.97 28966 29.9650 227.00 225.13 12.38 28967 29.9660 242.36 224.78 12.79 28968 29.9670 241.90 224.45 12.78 28969 29.9680 237.79 224.12 12.64 28970 29.9690 234.92 223.81 12.58 28971 29.9700 240.81 223.51 12.75 28972 29.9710 252.78 223.21 13.04 28973 29.9720 245.57 222.93 12.84 28974 29.9730 229.13 223.58 12.45 28975 29.9740 236.99 223.32 12.67 28976 29.9750 254.61 223.07 13.12 28977 29.9760 230.65 222.82 12.51 28978 29.9770 230.58 222.58 12.45 28979 29.9780 230.14 222.35 12.48 28980 29.9790 225.70 222.13 12.36 28981 29.9800 229.15 221.92 12.46 28982 29.9810 238.22 221.71 12.62 28983 29.9820 252.75 221.51 12.96 28984 29.9830 260.00 221.32 13.24 28985 29.9840 243.50 221.13 12.77 28986 29.9850 241.80 220.95 12.67 28987 29.9860 238.75 220.77 12.68 28988 29.9870 232.61 220.60 12.54 28989 29.9880 236.62 220.44 12.64 28990 29.9890 241.87 220.28 12.78 28991 29.9900 220.65 220.13 12.21 28992 29.9910 235.11 219.98 12.58 28993 29.9920 240.08 219.84 12.72 28994 29.9930 253.38 219.70 13.01 28995 29.9940 233.21 219.57 12.57 28996 29.9950 234.98 219.44 12.58 28997 29.9960 237.38 219.32 12.65 28998 29.9970 227.82 219.20 12.38 28999 29.9980 234.86 219.09 12.56 29000 29.9990 235.50 218.98 12.54 29001 30.0000 233.02 218.88 12.49 29002 30.0010 227.12 218.78 12.33 29003 30.0020 233.20 218.68 12.54 29004 30.0030 229.81 218.59 12.51 29005 30.0040 221.90 218.50 12.30 29006 30.0050 224.64 218.42 12.31 29007 30.0060 226.40 218.34 12.33 29008 30.0070 225.38 218.26 12.30 29009 30.0080 240.91 218.19 12.68 29010 30.0090 231.60 218.12 12.52 29011 30.0100 237.52 218.03 12.63 29012 30.0110 216.50 217.96 12.10 29013 30.0120 214.40 217.90 11.97 29014 30.0130 225.23 217.84 12.25 29015 30.0140 230.02 217.79 12.45 29016 30.0150 229.41 217.73 12.38 29017 30.0160 217.35 217.68 12.09 29018 30.0170 219.51 217.62 12.15 29019 30.0180 210.35 217.57 11.91 29020 30.0190 218.69 217.52 12.16 29021 30.0200 216.70 217.47 12.08 29022 30.0210 225.19 217.42 12.30 29023 30.0220 209.89 217.37 11.87 29024 30.0230 224.94 217.32 12.28 29025 30.0240 216.67 217.28 12.08 29026 30.0250 217.67 217.24 12.09 29027 30.0260 216.70 217.20 12.05 29028 30.0270 216.23 217.16 11.99 29029 30.0280 230.94 217.12 12.43 29030 30.0290 218.77 217.09 12.19 29031 30.0300 227.57 217.06 12.40 29032 30.0310 235.80 217.04 12.64 29033 30.0320 217.62 217.01 12.12 29034 30.0330 208.88 216.99 11.86 29035 30.0340 229.33 216.97 12.40 29036 30.0350 230.17 216.96 12.46 29037 30.0360 235.77 216.94 12.63 29038 30.0370 235.14 216.93 12.57 29039 30.0380 225.81 216.93 12.30 29040 30.0390 201.39 216.92 11.58 29041 30.0400 224.96 216.92 12.27 29042 30.0410 230.19 216.92 12.44 29043 30.0420 212.25 216.93 11.95 29044 30.0430 235.68 216.93 12.59 29045 30.0440 232.57 216.94 12.49 29046 30.0450 212.06 216.96 11.96 29047 30.0460 222.37 216.97 12.19 29048 30.0470 224.95 216.99 12.23 29049 30.0480 216.03 217.01 12.08 29050 30.0490 224.48 217.03 12.32 29051 30.0500 223.66 217.06 12.30 29052 30.0510 224.78 217.09 12.34 29053 30.0520 223.59 217.12 12.29 29054 30.0530 204.73 217.15 11.77 29055 30.0540 209.78 217.18 11.87 29056 30.0550 229.82 217.22 12.42 29057 30.0560 219.07 217.27 12.10 29058 30.0570 203.29 217.31 11.71 29059 30.0580 221.43 217.36 12.23 29060 30.0590 223.80 217.41 12.23 29061 30.0600 203.87 217.46 11.69 29062 30.0610 214.74 217.52 11.98 29063 30.0620 224.83 217.57 12.28 29064 30.0630 224.87 217.64 12.31 29065 30.0640 222.12 217.70 12.25 29066 30.0650 239.52 217.77 12.73 29067 30.0660 202.83 217.84 11.70 29068 30.0670 211.18 217.91 11.93 29069 30.0680 226.60 217.99 12.32 29070 30.0690 225.89 218.07 12.30 29071 30.0700 233.11 218.16 12.47 29072 30.0710 246.95 218.24 12.94 29073 30.0720 212.70 218.34 11.98 29074 30.0730 218.15 218.43 12.10 29075 30.0740 216.32 218.53 12.00 29076 30.0750 231.35 218.63 12.46 29077 30.0760 230.69 218.74 12.46 29078 30.0770 236.85 218.85 12.60 29079 30.0780 225.47 218.96 12.33 29080 30.0790 218.66 219.08 12.11 29081 30.0800 217.62 219.20 12.08 29082 30.0810 230.38 219.33 12.42 29083 30.0820 198.78 219.46 11.54 29084 30.0830 221.43 219.60 12.20 29085 30.0840 239.33 219.74 12.67 29086 30.0850 238.48 219.88 12.65 29087 30.0860 230.79 220.03 12.48 29088 30.0870 222.04 220.19 12.25 29089 30.0880 239.85 220.35 12.69 29090 30.0890 208.03 220.52 11.82 29091 30.0900 217.27 220.69 12.09 29092 30.0910 210.31 220.87 11.87 29093 30.0920 223.06 221.06 12.21 29094 30.0930 219.25 221.25 12.13 29095 30.0940 222.20 221.45 12.18 29096 30.0950 224.88 221.65 12.32 29097 30.0960 217.58 221.86 12.09 29098 30.0970 221.97 222.08 12.25 29099 30.0980 225.26 222.08 12.37 29100 30.0990 220.69 222.31 12.27 29101 30.1000 226.31 222.56 12.27 29102 30.1010 226.36 222.81 12.32 29103 30.1020 214.71 223.07 12.01 29104 30.1030 224.38 223.35 12.27 29105 30.1040 234.31 223.63 12.55 29106 30.1050 239.76 223.92 12.70 29107 30.1060 238.49 224.22 12.67 29108 30.1070 223.00 224.54 12.22 29109 30.1080 236.43 224.86 12.60 29110 30.1090 225.41 225.20 12.31 29111 30.1100 244.67 225.55 12.81 29112 30.1110 244.53 225.91 12.78 29113 30.1120 228.14 226.29 12.40 29114 30.1130 219.47 226.68 12.13 29115 30.1140 219.06 227.09 12.17 29116 30.1150 216.00 227.51 12.07 29117 30.1160 258.33 227.95 13.17 29118 30.1170 243.65 228.41 12.80 29119 30.1180 242.68 228.88 12.76 29120 30.1190 231.56 229.38 12.44 29121 30.1200 219.99 229.90 12.15 29122 30.1210 244.26 230.44 12.79 29123 30.1220 235.01 231.00 12.54 29124 30.1230 243.57 231.58 12.79 29125 30.1240 231.56 232.20 12.47 29126 30.1250 254.17 232.84 13.06 29127 30.1260 251.76 233.51 13.03 29128 30.1270 236.98 234.21 12.65 29129 30.1280 242.79 234.94 12.78 29130 30.1290 255.32 235.70 13.10 29131 30.1300 248.69 236.51 12.94 29132 30.1310 250.59 237.35 13.02 29133 30.1320 249.31 238.23 12.92 29134 30.1330 226.12 239.15 12.37 29135 30.1340 236.40 240.13 12.56 29136 30.1350 239.33 241.15 12.63 29137 30.1360 240.75 242.23 12.65 29138 30.1370 246.67 243.36 12.77 29139 30.1380 275.14 244.55 13.59 29140 30.1390 264.44 245.80 13.34 29141 30.1400 251.54 247.13 12.98 29142 30.1410 252.10 248.52 12.96 29143 30.1420 241.44 250.00 12.71 29144 30.1430 276.90 251.55 13.64 29145 30.1440 257.47 253.19 13.17 29146 30.1450 256.00 254.93 13.11 29147 30.1460 262.37 256.76 13.32 29148 30.1470 276.47 258.70 13.69 29149 30.1480 276.51 260.75 13.66 29150 30.1490 265.85 262.91 13.32 29151 30.1500 308.87 265.19 14.38 29152 30.1510 275.19 267.52 13.64 29153 30.1520 266.71 270.07 13.42 29154 30.1530 267.66 272.76 13.41 29155 30.1540 282.87 275.59 13.77 29156 30.1550 276.99 278.59 13.62 29157 30.1560 264.12 281.72 13.31 29158 30.1570 282.79 285.02 13.75 29159 30.1580 314.63 288.49 14.55 29160 30.1590 304.93 292.12 14.33 29161 30.1600 302.87 295.92 14.25 29162 30.1610 300.36 299.89 14.21 29163 30.1620 322.41 304.06 14.70 29164 30.1630 293.42 308.39 14.06 29165 30.1640 310.28 312.89 14.46 29166 30.1650 349.01 317.57 15.36 29167 30.1660 348.34 322.39 15.30 29168 30.1670 342.95 327.38 15.16 29169 30.1680 356.92 332.53 15.50 29170 30.1690 359.07 337.81 15.52 29171 30.1700 334.66 343.18 15.02 29172 30.1710 358.71 348.58 15.55 29173 30.1720 344.55 354.03 15.23 29174 30.1730 376.32 359.39 15.91 29175 30.1740 386.02 364.62 16.08 29176 30.1750 380.33 369.63 16.00 29177 30.1760 377.95 374.33 15.93 29178 30.1770 366.52 378.58 15.70 29179 30.1780 367.57 382.33 15.76 29180 30.1790 380.02 385.45 16.01 29181 30.1800 399.40 387.86 16.40 29182 30.1810 396.50 389.49 16.35 29183 30.1820 408.80 390.28 16.59 29184 30.1830 404.76 390.22 16.53 29185 30.1840 386.49 389.31 16.11 29186 30.1850 407.22 387.58 16.56 29187 30.1860 387.50 385.10 16.16 29188 30.1870 394.62 381.93 16.30 29189 30.1880 385.17 378.20 16.07 29190 30.1890 369.36 373.97 15.76 29191 30.1900 373.72 368.71 15.90 29192 30.1910 396.54 363.84 16.38 29193 30.1920 360.31 358.81 15.57 29194 30.1930 371.23 353.69 15.76 29195 30.1940 359.40 348.59 15.50 29196 30.1950 346.38 343.54 15.23 29197 30.1960 344.02 338.60 15.21 29198 30.1970 354.80 333.82 15.42 29199 30.1980 364.90 329.24 15.69 29200 30.1990 336.63 324.88 15.04 29201 30.2000 327.86 320.75 14.89 29202 30.2010 339.42 316.86 15.07 29203 30.2020 331.17 313.22 14.92 29204 30.2030 331.13 309.83 14.94 29205 30.2040 323.61 306.68 14.75 29206 30.2050 309.20 303.78 14.43 29207 30.2060 314.77 301.12 14.52 29208 30.2070 313.40 298.68 14.51 29209 30.2080 300.96 296.47 14.24 29210 30.2090 310.36 294.48 14.42 29211 30.2100 306.14 292.70 14.40 29212 30.2110 317.88 291.11 14.66 29213 30.2120 290.55 289.72 14.02 29214 30.2130 308.24 288.52 14.39 29215 30.2140 297.89 287.50 14.15 29216 30.2150 314.12 286.65 14.53 29217 30.2160 308.31 285.99 14.41 29218 30.2170 304.84 285.48 14.32 29219 30.2180 303.22 285.15 14.27 29220 30.2190 287.03 284.98 13.89 29221 30.2200 295.64 284.97 14.14 29222 30.2210 286.85 285.12 13.92 29223 30.2220 276.04 285.43 13.63 29224 30.2230 304.51 285.90 14.30 29225 30.2240 288.13 286.53 13.92 29226 30.2250 303.06 287.32 14.27 29227 30.2260 303.19 288.27 14.25 29228 30.2270 293.52 289.38 14.01 29229 30.2280 290.01 290.65 13.93 29230 30.2290 300.91 292.08 14.17 29231 30.2300 290.27 293.65 13.96 29232 30.2310 317.30 295.38 14.60 29233 30.2320 316.92 297.23 14.65 29234 30.2330 314.98 299.22 14.64 29235 30.2340 313.62 301.31 14.58 29236 30.2350 293.51 303.49 14.10 29237 30.2360 289.10 305.73 13.91 29238 30.2370 320.57 307.99 14.68 29239 30.2380 313.28 310.26 14.49 29240 30.2390 316.15 312.45 14.57 29241 30.2400 324.37 314.57 14.76 29242 30.2410 319.38 316.55 14.68 29243 30.2420 308.87 318.35 14.40 29244 30.2430 332.23 319.95 14.91 29245 30.2440 310.65 321.32 14.44 29246 30.2450 307.28 322.45 14.34 29247 30.2460 330.74 323.34 14.91 29248 30.2470 333.71 324.02 15.00 29249 30.2480 332.04 324.49 14.98 29250 30.2490 332.84 324.80 14.95 29251 30.2500 350.37 325.01 15.34 29252 30.2510 322.47 325.14 14.73 29253 30.2520 330.18 325.25 14.93 29254 30.2530 327.05 325.39 14.84 29255 30.2540 328.97 325.60 14.95 29256 30.2550 331.69 325.92 14.96 29257 30.2560 323.73 326.38 14.78 29258 30.2570 338.54 327.00 15.08 29259 30.2580 337.40 327.82 15.08 29260 30.2590 345.75 328.86 15.30 29261 30.2600 330.11 330.13 14.91 29262 30.2610 342.71 331.64 15.16 29263 30.2620 348.81 333.42 15.33 29264 30.2630 334.56 335.47 15.01 29265 30.2640 339.56 337.80 15.09 29266 30.2650 347.56 340.41 15.28 29267 30.2660 352.67 343.34 15.36 29268 30.2670 373.39 346.60 15.88 29269 30.2680 354.36 350.18 15.43 29270 30.2690 352.19 354.11 15.42 29271 30.2700 355.35 358.42 15.46 29272 30.2710 349.83 363.10 15.32 29273 30.2720 370.22 368.20 15.75 29274 30.2730 363.05 373.73 15.60 29275 30.2740 398.48 379.73 16.38 29276 30.2750 403.17 386.18 16.54 29277 30.2760 382.23 393.19 16.10 29278 30.2770 373.09 400.75 15.84 29279 30.2780 405.28 408.91 16.49 29280 30.2790 450.36 417.71 17.38 29281 30.2800 421.79 427.21 16.84 29282 30.2810 422.30 437.41 16.88 29283 30.2820 441.63 448.43 17.23 29284 30.2830 464.18 460.32 17.67 29285 30.2840 439.39 473.12 17.19 29286 30.2850 488.15 486.92 18.15 29287 30.2860 487.58 501.72 18.14 29288 30.2870 505.88 517.76 18.43 29289 30.2880 526.63 534.89 18.81 29290 30.2890 538.53 553.36 19.02 29291 30.2900 527.85 573.18 18.83 29292 30.2910 556.88 594.41 19.37 29293 30.2920 589.03 617.04 19.89 29294 30.2930 591.86 641.24 19.93 29295 30.2940 635.90 666.96 20.62 29296 30.2950 665.90 694.18 21.18 29297 30.2960 739.20 722.82 22.30 29298 30.2970 760.71 752.77 22.56 29299 30.2980 783.85 783.72 22.93 29300 30.2990 843.47 815.62 23.82 29301 30.3000 903.19 847.99 24.71 29302 30.3010 961.80 880.35 25.45 29303 30.3020 998.91 912.11 25.90 29304 30.3030 1018.92 942.49 26.19 29305 30.3040 1059.85 971.01 26.71 29306 30.3050 1084.24 996.47 27.03 29307 30.3060 1136.09 1018.32 27.62 29308 30.3070 1204.73 1035.62 28.48 29309 30.3080 1184.78 1047.86 28.26 29310 30.3090 1135.45 1053.83 27.72 29311 30.3100 1128.86 1054.50 27.63 29312 30.3110 1110.18 1049.26 27.40 29313 30.3120 1080.93 1038.35 26.99 29314 30.3130 1061.41 1022.24 26.71 29315 30.3140 1019.78 1001.68 26.28 29316 30.3150 969.89 977.28 25.59 29317 30.3160 905.43 949.94 24.73 29318 30.3170 879.07 920.49 24.40 29319 30.3180 867.73 889.72 24.23 29320 30.3190 820.02 858.31 23.55 29321 30.3200 763.15 826.98 22.69 29322 30.3210 748.99 795.99 22.47 29323 30.3220 734.06 765.83 22.26 29324 30.3230 723.80 736.79 22.12 29325 30.3240 674.04 709.16 21.33 29326 30.3250 641.83 682.78 20.84 29327 30.3260 633.00 658.10 20.69 29328 30.3270 609.64 634.87 20.31 29329 30.3280 572.10 613.18 19.61 29330 30.3290 575.55 592.99 19.65 29331 30.3300 554.90 574.32 19.33 29332 30.3310 525.74 556.97 18.82 29333 30.3320 544.93 540.96 19.15 29334 30.3330 500.65 526.20 18.37 29335 30.3340 503.27 512.62 18.39 29336 30.3350 494.10 500.20 18.23 29337 30.3360 506.59 488.75 18.46 29338 30.3370 441.33 478.35 17.28 29339 30.3380 447.83 468.84 17.39 29340 30.3390 456.27 460.20 17.57 29341 30.3400 494.46 452.37 18.29 29342 30.3410 447.93 445.33 17.39 29343 30.3420 434.39 439.00 17.09 29344 30.3430 448.98 433.36 17.31 29345 30.3440 410.87 428.37 16.60 29346 30.3450 440.05 424.01 17.23 29347 30.3460 422.97 420.25 16.89 29348 30.3470 418.86 417.08 16.84 29349 30.3480 430.07 414.46 17.02 29350 30.3490 420.23 412.38 16.84 29351 30.3500 408.39 410.84 16.62 29352 30.3510 397.82 409.83 16.43 29353 30.3520 410.17 409.35 16.65 29354 30.3530 400.09 409.39 16.42 29355 30.3540 435.41 409.95 17.15 29356 30.3550 413.86 411.04 16.69 29357 30.3560 405.67 412.67 16.52 29358 30.3570 447.36 414.85 17.39 29359 30.3580 420.19 417.58 16.85 29360 30.3590 458.88 420.91 17.59 29361 30.3600 440.52 424.84 17.28 29362 30.3610 447.41 429.40 17.37 29363 30.3620 442.70 434.62 17.27 29364 30.3630 436.80 440.52 17.13 29365 30.3640 435.71 447.11 17.12 29366 30.3650 411.18 454.48 16.67 29367 30.3660 461.21 462.63 17.57 29368 30.3670 455.51 471.60 17.47 29369 30.3680 462.21 481.44 17.60 29370 30.3690 500.10 492.13 18.36 29371 30.3700 497.82 503.78 18.29 29372 30.3710 500.20 516.38 18.31 29373 30.3720 547.47 529.93 19.18 29374 30.3730 535.95 544.40 19.02 29375 30.3740 530.31 559.91 18.86 29376 30.3750 586.90 576.22 19.89 29377 30.3760 599.62 593.40 20.11 29378 30.3770 602.11 611.31 20.13 29379 30.3780 612.10 629.78 20.31 29380 30.3790 601.44 648.55 20.14 29381 30.3800 678.80 667.47 21.36 29382 30.3810 680.13 686.17 21.36 29383 30.3820 672.42 704.26 21.30 29384 30.3830 707.24 721.32 21.80 29385 30.3840 742.91 736.89 22.31 29386 30.3850 751.10 750.47 22.45 29387 30.3860 803.65 761.59 23.26 29388 30.3870 744.74 769.88 22.39 29389 30.3880 764.38 774.98 22.69 29390 30.3890 775.02 776.64 22.88 29391 30.3900 765.88 774.79 22.75 29392 30.3910 728.17 769.41 22.17 29393 30.3920 738.68 760.77 22.33 29394 30.3930 729.65 749.08 22.22 29395 30.3940 694.42 734.74 21.65 29396 30.3950 681.03 718.22 21.44 29397 30.3960 642.82 700.04 20.76 29398 30.3970 617.14 680.56 20.40 29399 30.3980 650.97 660.50 20.96 29400 30.3990 606.32 639.81 20.23 29401 30.4000 576.53 619.05 19.72 29402 30.4010 562.78 598.59 19.53 29403 30.4020 541.93 578.45 19.10 29404 30.4030 516.66 559.06 18.67 29405 30.4040 516.69 540.35 18.70 29406 30.4050 509.65 522.47 18.52 29407 30.4060 487.71 505.47 18.14 29408 30.4070 461.73 489.43 17.65 29409 30.4080 449.61 474.18 17.38 29410 30.4090 460.39 459.93 17.59 29411 30.4100 429.92 446.49 17.01 29412 30.4110 426.64 433.89 16.96 29413 30.4120 433.12 422.08 17.08 29414 30.4130 423.69 411.06 16.86 29415 30.4140 394.39 400.71 16.27 29416 30.4150 393.58 391.02 16.24 29417 30.4160 386.92 381.96 16.19 29418 30.4170 403.79 373.48 16.49 29419 30.4180 367.87 365.56 15.77 29420 30.4190 363.78 358.12 15.65 29421 30.4200 365.21 351.15 15.68 29422 30.4210 357.01 344.61 15.48 29423 30.4220 347.83 338.48 15.32 29424 30.4230 340.68 332.72 15.13 29425 30.4240 343.52 327.33 15.19 29426 30.4250 324.45 322.24 14.80 29427 30.4260 312.75 317.45 14.48 29428 30.4270 334.00 312.94 15.01 29429 30.4280 341.42 308.70 15.23 29430 30.4290 334.07 304.67 15.02 29431 30.4300 319.94 300.89 14.64 29432 30.4310 314.48 297.31 14.54 29433 30.4320 309.90 293.92 14.44 29434 30.4330 297.43 290.71 14.12 29435 30.4340 304.72 287.67 14.29 29436 30.4350 311.33 284.79 14.49 29437 30.4360 297.14 282.05 14.14 29438 30.4370 293.05 279.45 14.04 29439 30.4380 296.25 276.98 14.10 29440 30.4390 293.41 274.63 14.01 29441 30.4400 277.97 272.39 13.66 29442 30.4410 296.48 270.26 14.15 29443 30.4420 299.34 268.32 14.19 29444 30.4430 309.79 266.38 14.41 29445 30.4440 293.00 264.52 14.08 29446 30.4450 295.88 262.76 14.12 29447 30.4460 276.22 261.06 13.66 29448 30.4470 272.26 259.44 13.56 29449 30.4480 259.86 257.88 13.21 29450 30.4490 260.90 256.40 13.25 29451 30.4500 270.18 254.97 13.50 29452 30.4510 253.70 253.60 13.09 29453 30.4520 263.73 252.29 13.34 29454 30.4530 269.57 251.03 13.43 29455 30.4540 282.45 249.82 13.78 29456 30.4550 259.78 248.65 13.21 29457 30.4560 248.26 247.54 12.94 29458 30.4570 251.56 246.45 12.96 29459 30.4580 252.69 245.42 13.03 29460 30.4590 252.69 244.42 13.06 29461 30.4600 267.87 243.45 13.44 29462 30.4610 266.88 242.52 13.43 29463 30.4620 248.77 241.63 12.98 29464 30.4630 232.47 240.76 12.52 29465 30.4640 260.14 239.93 13.23 29466 30.4650 252.55 239.12 13.07 29467 30.4660 265.38 238.34 13.36 29468 30.4670 247.89 237.59 12.89 29469 30.4680 261.54 236.86 13.24 29470 30.4690 252.68 236.15 13.03 29471 30.4700 248.22 235.47 12.96 29472 30.4710 263.34 234.81 13.28 29473 30.4720 266.32 234.17 13.40 29474 30.4730 258.73 233.55 13.22 29475 30.4740 257.73 232.95 13.23 29476 30.4750 259.99 232.36 13.28 29477 30.4760 253.76 231.80 13.10 29478 30.4770 224.08 231.25 12.30 29479 30.4780 230.22 230.72 12.44 29480 30.4790 244.54 230.20 12.80 29481 30.4800 251.07 229.70 13.04 29482 30.4810 251.36 229.21 13.04 29483 30.4820 242.72 228.74 12.83 29484 30.4830 228.92 228.27 12.42 29485 30.4840 238.02 227.83 12.66 29486 30.4850 237.83 227.39 12.70 29487 30.4860 250.28 226.97 12.96 29488 30.4870 243.25 226.56 12.80 29489 30.4880 248.14 226.16 12.91 29490 30.4890 229.23 225.76 12.43 29491 30.4900 230.59 225.39 12.45 29492 30.4910 242.33 225.69 12.72 29493 30.4920 243.94 225.33 12.76 29494 30.4930 236.41 224.98 12.58 29495 30.4940 256.08 224.64 13.11 29496 30.4950 226.02 224.31 12.37 29497 30.4960 239.50 223.99 12.71 29498 30.4970 215.15 223.68 12.05 29499 30.4980 221.39 223.37 12.18 29500 30.4990 233.41 223.07 12.50 29501 30.5000 224.52 222.78 12.29 29502 30.5010 240.61 222.50 12.73 29503 30.5020 235.11 222.22 12.58 29504 30.5030 230.39 221.95 12.43 29505 30.5040 223.16 221.68 12.29 29506 30.5050 230.42 221.43 12.46 29507 30.5060 244.43 221.18 12.78 29508 30.5070 237.17 220.93 12.60 29509 30.5080 242.40 220.69 12.80 29510 30.5090 254.48 220.46 13.04 29511 30.5100 226.47 220.23 12.31 29512 30.5110 233.85 220.01 12.55 29513 30.5120 235.04 219.79 12.55 29514 30.5130 220.78 219.58 12.19 29515 30.5140 229.49 219.37 12.42 29516 30.5150 235.46 219.17 12.59 29517 30.5160 232.14 218.97 12.52 29518 30.5170 240.53 218.78 12.74 29519 30.5180 220.38 218.59 12.16 29520 30.5190 224.53 218.40 12.29 29521 30.5200 214.42 218.22 12.01 29522 30.5210 211.23 218.05 11.89 29523 30.5220 221.82 217.88 12.19 29524 30.5230 219.85 217.71 12.19 29525 30.5240 213.40 217.54 12.00 29526 30.5250 222.56 217.38 12.21 29527 30.5260 212.07 217.23 11.93 29528 30.5270 206.08 217.07 11.76 29529 30.5280 217.43 216.93 12.04 29530 30.5290 230.73 216.78 12.46 29531 30.5300 239.26 216.64 12.69 29532 30.5310 228.22 216.50 12.40 29533 30.5320 215.58 216.36 12.04 29534 30.5330 208.23 216.23 11.84 29535 30.5340 209.32 216.10 11.89 29536 30.5350 229.13 215.98 12.40 29537 30.5360 245.50 215.86 12.84 29538 30.5370 214.17 215.74 12.00 29539 30.5380 211.05 215.62 11.91 29540 30.5390 204.93 215.51 11.75 29541 30.5400 223.27 215.40 12.21 29542 30.5410 243.73 215.29 12.79 29543 30.5420 243.18 215.19 12.82 29544 30.5430 240.66 215.09 12.73 29545 30.5440 216.45 214.99 12.04 29546 30.5450 218.11 214.90 12.09 29547 30.5460 203.42 214.81 11.71 29548 30.5470 192.96 214.72 11.43 29549 30.5480 208.21 214.63 11.83 29550 30.5490 210.69 214.55 11.86 29551 30.5500 215.09 214.48 11.97 29552 30.5510 226.54 214.40 12.34 29553 30.5520 212.40 214.33 11.92 29554 30.5530 223.38 214.26 12.25 29555 30.5540 238.72 214.19 12.70 29556 30.5550 231.32 214.13 12.42 29557 30.5560 205.66 214.07 11.73 29558 30.5570 211.25 214.02 11.89 29559 30.5580 210.55 213.96 11.88 29560 30.5590 243.55 213.92 12.82 29561 30.5600 223.84 213.87 12.29 29562 30.5610 237.86 213.83 12.62 29563 30.5620 228.03 213.79 12.39 29564 30.5630 219.78 213.76 12.17 29565 30.5640 220.10 213.74 12.20 29566 30.5650 216.90 213.71 12.12 29567 30.5660 239.00 213.69 12.70 29568 30.5670 232.07 213.68 12.49 29569 30.5680 208.47 213.67 11.82 29570 30.5690 196.22 213.67 11.48 29571 30.5700 225.20 213.67 12.30 29572 30.5710 225.43 213.68 12.32 29573 30.5720 213.74 213.69 11.99 29574 30.5730 214.95 213.71 12.03 29575 30.5740 232.97 213.74 12.49 29576 30.5750 212.99 213.78 12.01 29577 30.5760 197.21 213.82 11.55 29578 30.5770 199.16 213.87 11.61 29579 30.5780 220.08 213.93 12.23 29580 30.5790 219.88 214.00 12.19 29581 30.5800 210.24 214.08 11.86 29582 30.5810 215.65 214.17 12.00 29583 30.5820 219.24 214.27 12.14 29584 30.5830 208.92 214.38 11.91 29585 30.5840 199.17 214.51 11.60 29586 30.5850 238.53 214.65 12.71 29587 30.5860 239.54 214.80 12.70 29588 30.5870 226.75 214.96 12.38 29589 30.5880 217.40 215.14 12.08 29590 30.5890 221.72 215.33 12.19 29591 30.5900 206.67 215.54 11.79 29592 30.5910 222.92 215.76 12.22 29593 30.5920 240.69 215.99 12.71 29594 30.5930 222.56 216.24 12.24 29595 30.5940 222.72 216.49 12.30 29596 30.5950 207.16 216.76 11.81 29597 30.5960 202.56 217.03 11.65 29598 30.5970 230.59 217.31 12.49 29599 30.5980 230.23 217.59 12.47 29600 30.5990 221.69 217.86 12.21 29601 30.6000 221.13 218.12 12.21 29602 30.6010 223.02 218.36 12.24 29603 30.6020 234.27 218.57 12.59 29604 30.6030 221.63 218.76 12.24 29605 30.6040 222.16 218.91 12.20 29606 30.6050 235.00 219.02 12.58 29607 30.6060 225.99 219.08 12.33 29608 30.6070 208.89 219.09 11.88 29609 30.6080 244.45 219.05 12.79 29610 30.6090 219.16 218.95 12.13 29611 30.6100 227.06 218.81 12.33 29612 30.6110 208.26 218.62 11.80 29613 30.6120 224.02 218.38 12.24 29614 30.6130 230.68 218.12 12.47 29615 30.6140 244.80 217.82 12.83 29616 30.6150 224.31 217.50 12.28 29617 30.6160 218.17 217.17 12.10 29618 30.6170 225.64 216.83 12.31 29619 30.6180 231.65 216.46 12.45 29620 30.6190 218.30 216.12 12.08 29621 30.6200 221.73 215.77 12.24 29622 30.6210 225.48 215.44 12.35 29623 30.6220 226.61 215.11 12.35 29624 30.6230 226.99 214.79 12.38 29625 30.6240 216.88 214.49 12.07 29626 30.6250 203.43 214.20 11.70 29627 30.6260 200.02 213.93 11.57 29628 30.6270 208.32 213.67 11.86 29629 30.6280 214.32 213.42 11.98 29630 30.6290 215.37 213.19 11.98 29631 30.6300 230.19 212.97 12.40 29632 30.6310 225.60 212.76 12.32 29633 30.6320 234.35 212.57 12.54 29634 30.6330 218.57 212.38 12.13 29635 30.6340 229.12 212.21 12.43 29636 30.6350 230.59 212.04 12.46 29637 30.6360 220.64 211.89 12.18 29638 30.6370 215.60 211.75 12.04 29639 30.6380 220.46 211.61 12.17 29640 30.6390 217.90 211.49 12.12 29641 30.6400 208.33 211.37 11.83 29642 30.6410 210.79 210.98 11.89 29643 30.6420 227.93 210.88 12.32 29644 30.6430 219.54 210.78 12.09 29645 30.6440 215.69 210.69 12.06 29646 30.6450 195.59 210.60 11.43 29647 30.6460 205.77 210.52 11.74 29648 30.6470 204.71 210.44 11.72 29649 30.6480 202.14 210.37 11.65 29650 30.6490 218.70 210.31 12.15 29651 30.6500 217.36 210.24 12.09 29652 30.6510 217.48 210.18 12.06 29653 30.6520 215.25 210.13 12.05 29654 30.6530 208.89 210.08 11.88 29655 30.6540 218.97 210.03 12.15 29656 30.6550 225.08 209.91 12.31 29657 30.6560 226.06 209.87 12.29 29658 30.6570 219.50 209.83 12.17 29659 30.6580 222.32 209.79 12.20 29660 30.6590 230.13 209.76 12.41 29661 30.6600 223.31 209.74 12.28 29662 30.6610 231.65 209.71 12.51 29663 30.6620 219.94 209.68 12.15 29664 30.6630 221.93 209.66 12.20 29665 30.6640 220.50 209.64 12.19 29666 30.6650 232.29 209.62 12.51 29667 30.6660 229.60 209.61 12.45 29668 30.6670 209.78 209.59 11.88 29669 30.6680 220.28 209.58 12.17 29670 30.6690 219.16 209.57 12.11 29671 30.6700 213.43 209.57 11.98 29672 30.6710 205.66 209.56 11.74 29673 30.6720 222.37 209.55 12.25 29674 30.6730 211.17 209.55 11.96 29675 30.6740 203.02 209.55 11.70 29676 30.6750 211.80 209.55 11.90 29677 30.6760 223.46 209.55 12.24 29678 30.6770 230.84 209.56 12.47 29679 30.6780 211.50 209.56 11.93 29680 30.6790 217.60 209.57 12.13 29681 30.6800 208.25 209.57 11.84 29682 30.6810 221.93 209.58 12.17 29683 30.6820 215.02 209.59 12.02 29684 30.6830 213.96 209.60 12.03 29685 30.6840 212.71 209.61 12.02 29686 30.6850 228.41 209.62 12.45 29687 30.6860 202.87 209.63 11.71 29688 30.6870 216.42 209.64 12.02 29689 30.6880 230.29 209.65 12.43 29690 30.6890 209.60 209.67 11.84 29691 30.6900 209.81 209.69 11.87 29692 30.6910 221.35 209.70 12.20 29693 30.6920 211.82 209.72 11.90 29694 30.6930 202.66 209.74 11.58 29695 30.6940 203.10 209.76 11.61 29696 30.6950 221.27 209.79 12.19 29697 30.6960 228.59 209.81 12.38 29698 30.6970 219.52 209.84 12.16 29699 30.6980 205.56 209.87 11.76 29700 30.6990 200.82 209.89 11.65 29701 30.7000 210.05 209.93 11.89 29702 30.7010 214.49 209.96 12.02 29703 30.7020 226.02 209.99 12.35 29704 30.7030 221.19 210.03 12.21 29705 30.7040 223.50 210.07 12.24 29706 30.7050 208.78 210.11 11.86 29707 30.7060 223.45 210.15 12.26 29708 30.7070 198.55 210.19 11.56 29709 30.7080 205.68 208.82 11.75 29710 30.7090 235.72 208.88 12.62 29711 30.7100 210.63 208.93 11.93 29712 30.7110 207.63 208.99 11.85 29713 30.7120 200.16 209.05 11.61 29714 30.7130 229.46 209.11 12.40 29715 30.7140 242.15 209.17 12.71 29716 30.7150 225.06 209.54 12.32 29717 30.7160 217.29 209.61 12.10 29718 30.7170 230.59 209.68 12.43 29719 30.7180 210.07 209.75 11.85 29720 30.7190 235.86 209.83 12.64 29721 30.7200 226.84 209.90 12.37 29722 30.7210 211.03 209.98 11.92 29723 30.7220 212.14 210.06 11.98 29724 30.7230 224.28 210.15 12.29 29725 30.7240 226.02 210.23 12.35 29726 30.7250 231.66 210.32 12.49 29727 30.7260 218.14 210.41 12.11 29728 30.7270 218.91 210.50 12.14 29729 30.7280 236.79 210.60 12.61 29730 30.7290 218.57 210.70 12.14 29731 30.7300 221.39 210.80 12.23 29732 30.7310 215.94 210.90 12.04 29733 30.7320 198.59 211.01 11.56 29734 30.7330 209.46 211.12 11.84 29735 30.7340 201.13 211.23 11.61 29736 30.7350 199.41 211.34 11.57 29737 30.7360 212.04 211.46 11.91 29738 30.7370 228.78 211.59 12.40 29739 30.7380 240.33 211.71 12.69 29740 30.7390 222.60 211.84 12.25 29741 30.7400 213.06 211.97 11.95 29742 30.7410 209.67 212.11 11.87 29743 30.7420 213.81 212.25 11.95 29744 30.7430 234.35 212.39 12.50 29745 30.7440 231.70 212.54 12.47 29746 30.7450 225.37 212.70 12.27 29747 30.7460 208.74 212.85 11.81 29748 30.7470 231.16 213.01 12.47 29749 30.7480 199.09 213.18 11.56 29750 30.7490 196.69 213.35 11.45 29751 30.7500 226.86 213.53 12.32 29752 30.7510 216.85 213.71 12.07 29753 30.7520 219.45 213.90 12.15 29754 30.7530 221.87 214.10 12.22 29755 30.7540 237.40 214.30 12.66 29756 30.7550 210.20 214.51 11.86 29757 30.7560 212.29 214.72 11.93 29758 30.7570 214.86 214.94 12.01 29759 30.7580 208.69 215.16 11.83 29760 30.7590 216.37 215.40 12.10 29761 30.7600 227.70 215.64 12.41 29762 30.7610 238.04 215.89 12.65 29763 30.7620 211.05 216.15 11.91 29764 30.7630 197.31 216.41 11.55 29765 30.7640 197.14 216.69 11.54 29766 30.7650 211.53 216.98 11.97 29767 30.7660 205.55 217.27 11.72 29768 30.7670 229.75 217.58 12.42 29769 30.7680 213.65 217.89 12.02 29770 30.7690 237.22 218.22 12.64 29771 30.7700 220.76 218.56 12.16 29772 30.7710 210.12 218.91 11.83 29773 30.7720 209.95 219.28 11.85 29774 30.7730 211.93 219.66 11.91 29775 30.7740 238.26 220.05 12.63 29776 30.7750 250.05 220.46 12.97 29777 30.7760 242.58 220.89 12.78 29778 30.7770 221.06 221.33 12.21 29779 30.7780 217.14 221.79 12.11 29780 30.7790 227.56 222.27 12.36 29781 30.7800 238.19 222.77 12.59 29782 30.7810 246.30 223.29 12.82 29783 30.7820 248.55 223.83 12.95 29784 30.7830 236.85 224.40 12.65 29785 30.7840 234.84 224.99 12.55 29786 30.7850 233.97 225.60 12.55 29787 30.7860 233.78 226.25 12.55 29788 30.7870 240.76 226.92 12.71 29789 30.7880 235.81 227.63 12.60 29790 30.7890 226.97 228.37 12.33 29791 30.7900 214.09 229.14 12.02 29792 30.7910 206.32 229.95 11.80 29793 30.7920 207.11 230.80 11.81 29794 30.7930 223.09 231.70 12.22 29795 30.7940 242.25 232.64 12.75 29796 30.7950 246.70 233.63 12.83 29797 30.7960 235.34 234.66 12.59 29798 30.7970 239.20 235.76 12.68 29799 30.7980 248.03 236.92 12.96 29800 30.7990 246.40 238.14 12.88 29801 30.8000 225.44 239.42 12.31 29802 30.8010 260.58 240.78 13.26 29803 30.8020 239.74 242.22 12.74 29804 30.8030 254.29 243.74 13.03 29805 30.8040 246.51 245.35 12.84 29806 30.8050 240.99 247.06 12.72 29807 30.8060 255.36 247.94 13.13 29808 30.8070 249.72 249.85 12.92 29809 30.8080 260.85 251.90 13.23 29810 30.8090 259.92 254.06 13.22 29811 30.8100 263.69 256.36 13.27 29812 30.8110 253.76 258.81 13.06 29813 30.8120 277.39 261.41 13.70 29814 30.8130 272.68 264.16 13.58 29815 30.8140 261.78 267.09 13.23 29816 30.8150 272.17 270.21 13.54 29817 30.8160 276.34 273.52 13.65 29818 30.8170 272.37 277.02 13.51 29819 30.8180 277.64 280.74 13.58 29820 30.8190 292.64 284.65 13.94 29821 30.8200 293.68 288.79 14.07 29822 30.8210 289.27 293.15 13.93 29823 30.8220 294.48 297.72 14.05 29824 30.8230 285.86 302.49 13.87 29825 30.8240 300.70 307.43 14.22 29826 30.8250 309.83 312.55 14.42 29827 30.8260 287.75 317.81 13.84 29828 30.8270 315.68 323.14 14.57 29829 30.8280 321.59 328.50 14.75 29830 30.8290 325.71 333.85 14.76 29831 30.8300 337.02 339.06 15.02 29832 30.8310 358.68 344.09 15.50 29833 30.8320 332.58 348.83 14.99 29834 30.8330 350.32 353.19 15.33 29835 30.8340 389.87 357.08 16.16 29836 30.8350 374.07 360.39 15.86 29837 30.8360 358.90 363.09 15.49 29838 30.8370 372.72 365.11 15.82 29839 30.8380 375.85 366.44 15.92 29840 30.8390 382.83 367.07 16.09 29841 30.8400 354.35 367.04 15.49 29842 30.8410 358.31 366.41 15.57 29843 30.8420 375.02 365.24 15.90 29844 30.8430 370.28 363.64 15.80 29845 30.8440 364.62 361.69 15.69 29846 30.8450 356.15 359.52 15.45 29847 30.8460 342.99 357.20 15.18 29848 30.8470 344.72 354.85 15.20 29849 30.8480 357.30 352.52 15.50 29850 30.8490 362.50 350.29 15.61 29851 30.8500 348.07 348.22 15.30 29852 30.8510 358.62 346.35 15.56 29853 30.8520 354.42 344.68 15.42 29854 30.8530 366.99 343.24 15.71 29855 30.8540 328.81 342.02 14.88 29856 30.8550 320.59 341.01 14.72 29857 30.8560 319.55 340.17 14.67 29858 30.8570 343.94 339.46 15.17 29859 30.8580 340.24 338.85 15.09 29860 30.8590 328.62 338.27 14.87 29861 30.8600 343.57 337.69 15.22 29862 30.8610 360.78 337.04 15.60 29863 30.8620 365.96 336.27 15.70 29864 30.8630 345.26 335.36 15.24 29865 30.8640 356.38 334.28 15.47 29866 30.8650 353.83 333.01 15.43 29867 30.8660 365.96 331.56 15.68 29868 30.8670 342.84 329.95 15.23 29869 30.8680 336.62 328.21 15.06 29870 30.8690 333.86 326.37 15.00 29871 30.8700 342.16 324.47 15.16 29872 30.8710 339.52 322.56 15.12 29873 30.8720 345.25 320.70 15.25 29874 30.8730 339.32 318.92 15.13 29875 30.8740 317.33 317.26 14.64 29876 30.8750 325.34 315.75 14.76 29877 30.8760 305.53 314.43 14.31 29878 30.8770 330.88 313.32 14.91 29879 30.8780 332.68 312.43 14.99 29880 30.8790 324.91 311.80 14.80 29881 30.8800 311.28 311.42 14.44 29882 30.8810 317.25 311.30 14.62 29883 30.8820 325.01 311.47 14.76 29884 30.8830 303.99 311.92 14.32 29885 30.8840 320.92 312.65 14.68 29886 30.8850 317.88 313.69 14.64 29887 30.8860 337.07 315.03 15.04 29888 30.8870 338.72 316.68 15.15 29889 30.8880 333.91 318.66 15.00 29890 30.8890 323.63 320.98 14.72 29891 30.8900 343.84 323.62 15.19 29892 30.8910 339.84 326.64 15.10 29893 30.8920 341.69 330.03 15.15 29894 30.8930 337.98 333.80 15.09 29895 30.8940 347.36 337.97 15.27 29896 30.8950 346.57 342.60 15.29 29897 30.8960 360.40 347.64 15.50 29898 30.8970 348.68 353.17 15.31 29899 30.8980 354.49 359.20 15.46 29900 30.8990 364.65 365.74 15.66 29901 30.9000 349.66 372.80 15.36 29902 30.9010 374.82 380.45 15.88 29903 30.9020 380.63 388.69 16.01 29904 30.9030 393.40 397.53 16.29 29905 30.9040 401.08 407.00 16.46 29906 30.9050 411.53 417.10 16.61 29907 30.9060 424.26 427.83 16.83 29908 30.9070 431.79 439.14 17.06 29909 30.9080 433.20 451.08 17.07 29910 30.9090 461.43 463.55 17.61 29911 30.9100 469.39 476.49 17.81 29912 30.9110 462.93 489.75 17.69 29913 30.9120 504.90 503.34 18.41 29914 30.9130 513.02 516.91 18.56 29915 30.9140 482.30 530.38 17.96 29916 30.9150 532.18 543.48 18.91 29917 30.9160 581.99 555.92 19.77 29918 30.9170 608.50 567.39 20.22 29919 30.9180 565.66 577.63 19.53 29920 30.9190 619.78 586.31 20.40 29921 30.9200 627.94 593.15 20.59 29922 30.9210 644.32 597.90 20.85 29923 30.9220 621.31 600.39 20.44 29924 30.9230 613.52 600.52 20.33 29925 30.9240 615.59 598.27 20.38 29926 30.9250 616.95 593.72 20.34 29927 30.9260 602.86 587.01 20.17 29928 30.9270 577.67 578.45 19.76 29929 30.9280 544.32 568.18 19.18 29930 30.9290 529.06 556.47 18.91 29931 30.9300 540.08 543.78 19.08 29932 30.9310 492.74 530.29 18.23 29933 30.9320 494.19 516.33 18.24 29934 30.9330 461.56 502.15 17.66 29935 30.9340 452.48 488.00 17.47 29936 30.9350 455.01 473.98 17.46 29937 30.9360 427.20 460.26 16.96 29938 30.9370 420.77 446.97 16.87 29939 30.9380 446.76 434.17 17.34 29940 30.9390 406.28 421.97 16.57 29941 30.9400 385.29 410.31 16.11 29942 30.9410 382.34 399.25 16.05 29943 30.9420 385.25 388.80 16.11 29944 30.9430 378.91 378.94 15.99 29945 30.9440 370.75 369.66 15.81 29946 30.9450 365.80 360.97 15.69 29947 30.9460 366.80 352.79 15.73 29948 30.9470 353.77 345.12 15.43 29949 30.9480 333.67 337.92 14.98 29950 30.9490 321.53 331.20 14.68 29951 30.9500 328.23 324.87 14.85 29952 30.9510 315.11 318.97 14.57 29953 30.9520 328.17 313.43 14.89 29954 30.9530 291.19 308.23 14.00 29955 30.9540 307.99 303.36 14.40 29956 30.9550 316.98 298.78 14.63 29957 30.9560 299.91 294.51 14.20 29958 30.9570 296.47 290.47 14.17 29959 30.9580 294.88 286.68 14.09 29960 30.9590 281.26 283.12 13.76 29961 30.9600 298.89 279.78 14.22 29962 30.9610 287.30 276.61 13.90 29963 30.9620 278.38 273.64 13.71 29964 30.9630 281.59 270.83 13.79 29965 30.9640 280.50 268.18 13.77 29966 30.9650 289.56 265.68 13.97 29967 30.9660 277.11 263.32 13.68 29968 30.9670 268.99 261.08 13.42 29969 30.9680 279.91 258.97 13.74 29970 30.9690 264.82 256.96 13.35 29971 30.9700 265.40 255.05 13.42 29972 30.9710 263.32 253.25 13.34 29973 30.9720 246.16 251.54 12.84 29974 30.9730 265.46 249.91 13.31 29975 30.9740 259.17 248.36 13.18 29976 30.9750 248.99 246.89 12.91 29977 30.9760 243.41 245.49 12.75 29978 30.9770 241.02 244.16 12.74 29979 30.9780 249.86 242.88 12.94 29980 30.9790 238.48 241.67 12.72 29981 30.9800 249.50 240.51 12.99 29982 30.9810 245.60 239.41 12.83 29983 30.9820 266.52 238.35 13.41 29984 30.9830 262.08 237.35 13.27 29985 30.9840 248.44 236.38 12.93 29986 30.9850 236.98 235.46 12.62 29987 30.9860 232.03 234.58 12.50 29988 30.9870 264.01 233.73 13.30 29989 30.9880 264.25 232.92 13.32 29990 30.9890 259.05 232.15 13.15 29991 30.9900 254.13 231.40 13.05 29992 30.9910 269.94 230.69 13.42 29993 30.9920 247.00 230.01 12.90 29994 30.9930 222.91 229.35 12.22 29995 30.9940 236.56 228.72 12.59 29996 30.9950 229.71 228.11 12.39 29997 30.9960 244.52 227.53 12.79 29998 30.9970 236.56 226.97 12.59 29999 30.9980 234.54 226.44 12.49 30000 30.9990 239.39 225.92 12.69 30001 31.0000 238.03 225.43 12.67 30002 31.0010 232.41 224.95 12.52 30003 31.0020 242.71 224.49 12.74 30004 31.0030 234.56 224.05 12.52 30005 31.0040 232.12 223.62 12.54 30006 31.0050 223.11 223.22 12.25 30007 31.0060 230.62 222.82 12.45 30008 31.0070 226.65 222.45 12.35 30009 31.0080 228.20 222.08 12.38 30010 31.0090 244.56 221.73 12.81 30011 31.0100 236.50 221.39 12.60 30012 31.0110 235.09 221.07 12.55 30013 31.0120 235.74 220.76 12.62 30014 31.0130 216.43 220.46 12.08 30015 31.0140 218.66 220.17 12.14 30016 31.0150 234.56 219.90 12.56 30017 31.0160 222.09 219.63 12.22 30018 31.0170 215.26 219.38 12.03 30019 31.0180 223.01 219.13 12.20 30020 31.0190 243.34 218.90 12.74 30021 31.0200 229.62 218.67 12.41 30022 31.0210 215.20 218.45 12.03 30023 31.0220 225.54 218.25 12.32 30024 31.0230 242.68 218.05 12.75 30025 31.0240 225.26 217.86 12.30 30026 31.0250 232.16 217.68 12.49 30027 31.0260 217.54 217.51 12.13 30028 31.0270 224.81 217.34 12.30 30029 31.0280 217.05 217.18 12.09 30030 31.0290 242.44 217.04 12.74 30031 31.0300 227.91 216.90 12.40 30032 31.0310 241.86 216.76 12.72 30033 31.0320 228.63 216.64 12.35 30034 31.0330 205.95 216.52 11.76 30035 31.0340 230.08 216.41 12.44 30036 31.0350 224.00 216.30 12.29 30037 31.0360 208.69 216.21 11.85 30038 31.0370 198.88 216.12 11.56 30039 31.0380 225.67 216.04 12.27 30040 31.0390 220.20 215.96 12.16 30041 31.0400 229.84 215.90 12.43 30042 31.0410 230.67 215.84 12.46 30043 31.0420 226.08 215.78 12.38 30044 31.0430 221.41 215.74 12.23 30045 31.0440 199.01 215.70 11.56 30046 31.0450 209.17 215.67 11.84 30047 31.0460 193.71 215.64 11.36 30048 31.0470 217.73 215.63 12.08 30049 31.0480 222.84 215.62 12.25 30050 31.0490 216.27 215.62 12.06 30051 31.0500 230.58 215.63 12.47 30052 31.0510 225.58 215.64 12.29 30053 31.0520 218.21 215.67 12.11 30054 31.0530 203.00 215.70 11.66 30055 31.0540 209.94 215.73 11.85 30056 31.0550 226.20 215.78 12.29 30057 31.0560 235.67 215.84 12.53 30058 31.0570 228.33 215.91 12.39 30059 31.0580 216.35 215.99 12.05 30060 31.0590 220.21 216.08 12.19 30061 31.0600 227.61 216.18 12.38 30062 31.0610 230.94 216.29 12.48 30063 31.0620 227.77 216.41 12.41 30064 31.0630 232.48 216.55 12.50 30065 31.0640 212.53 216.70 11.96 30066 31.0650 208.03 216.86 11.79 30067 31.0660 228.84 217.04 12.46 30068 31.0670 221.42 217.23 12.24 30069 31.0680 214.40 217.43 12.02 30070 31.0690 225.91 217.65 12.34 30071 31.0700 217.52 217.89 12.09 30072 31.0710 214.63 218.14 12.00 30073 31.0720 222.77 218.41 12.17 30074 31.0730 235.40 218.69 12.56 30075 31.0740 228.41 219.00 12.36 30076 31.0750 228.96 219.32 12.42 30077 31.0760 215.12 219.65 12.00 30078 31.0770 224.32 220.01 12.25 30079 31.0780 221.91 220.38 12.22 30080 31.0790 216.60 220.76 12.07 30081 31.0800 210.87 221.16 11.88 30082 31.0810 230.64 221.58 12.49 30083 31.0820 240.93 222.00 12.72 30084 31.0830 218.05 222.44 12.15 30085 31.0840 245.28 222.88 12.83 30086 31.0850 234.27 223.34 12.53 30087 31.0860 215.00 223.80 12.06 30088 31.0870 216.87 224.27 12.12 30089 31.0880 218.45 224.76 12.15 30090 31.0890 232.63 225.25 12.49 30091 31.0900 223.51 225.76 12.19 30092 31.0910 229.55 226.29 12.43 30093 31.0920 234.06 226.85 12.57 30094 31.0930 241.10 227.43 12.69 30095 31.0940 224.53 228.05 12.33 30096 31.0950 215.85 228.70 12.07 30097 31.0960 231.40 229.40 12.49 30098 31.0970 233.33 230.15 12.54 30099 31.0980 234.46 230.96 12.54 30100 31.0990 236.12 231.84 12.61 30101 31.1000 240.04 232.77 12.66 30102 31.1010 227.96 233.79 12.35 30103 31.1020 227.93 234.88 12.35 30104 31.1030 222.31 236.06 12.24 30105 31.1040 237.74 237.33 12.63 30106 31.1050 225.88 238.71 12.33 30107 31.1060 227.03 240.19 12.34 30108 31.1070 239.35 241.79 12.62 30109 31.1080 240.98 243.51 12.75 30110 31.1090 250.36 245.35 12.96 30111 31.1100 251.61 247.33 13.01 30112 31.1110 260.17 249.45 13.24 30113 31.1120 260.01 251.72 13.23 30114 31.1130 262.53 254.14 13.25 30115 31.1140 247.99 256.72 12.89 30116 31.1150 256.26 259.45 13.15 30117 31.1160 271.34 262.34 13.48 30118 31.1170 261.26 265.38 13.24 30119 31.1180 262.95 268.58 13.29 30120 31.1190 263.96 271.87 13.34 30121 31.1200 266.34 275.65 13.40 30122 31.1210 281.91 279.11 13.81 30123 31.1220 299.83 282.61 14.19 30124 31.1230 277.75 286.09 13.67 30125 31.1240 283.98 289.49 13.83 30126 31.1250 304.26 292.73 14.34 30127 31.1260 296.10 295.75 14.13 30128 31.1270 314.41 298.47 14.53 30129 31.1280 309.70 300.83 14.44 30130 31.1290 298.69 302.74 14.15 30131 31.1300 302.17 304.16 14.24 30132 31.1310 307.53 305.06 14.37 30133 31.1320 314.61 305.40 14.57 30134 31.1330 290.98 305.21 14.00 30135 31.1340 318.47 304.52 14.68 30136 31.1350 324.83 303.36 14.80 30137 31.1360 298.87 301.81 14.16 30138 31.1370 288.90 299.94 13.90 30139 31.1380 294.20 297.83 14.05 30140 31.1390 305.67 295.55 14.37 30141 31.1400 293.87 293.18 14.10 30142 31.1410 313.60 290.79 14.55 30143 31.1420 310.02 288.44 14.42 30144 31.1430 270.36 286.18 13.50 30145 31.1440 279.21 284.05 13.74 30146 31.1450 270.49 282.08 13.50 30147 31.1460 277.47 280.30 13.66 30148 31.1470 286.28 278.73 13.87 30149 31.1480 258.92 277.38 13.20 30150 31.1490 280.65 276.25 13.71 30151 31.1500 270.52 275.36 13.45 30152 31.1510 271.53 274.71 13.51 30153 31.1520 279.77 274.29 13.74 30154 31.1530 271.98 274.12 13.55 30155 31.1540 279.72 274.18 13.68 30156 31.1550 271.35 274.47 13.54 30157 31.1560 254.73 275.00 13.09 30158 31.1570 271.89 275.76 13.48 30159 31.1580 285.21 276.74 13.84 30160 31.1590 277.93 277.92 13.67 30161 31.1600 278.52 279.32 13.62 30162 31.1610 287.25 280.91 13.95 30163 31.1620 272.77 282.67 13.57 30164 31.1630 280.14 284.59 13.73 30165 31.1640 271.76 286.63 13.51 30166 31.1650 290.71 288.79 13.98 30167 31.1660 284.93 290.99 13.85 30168 31.1670 296.33 293.22 14.13 30169 31.1680 321.27 295.42 14.70 30170 31.1690 309.08 297.54 14.41 30171 31.1700 291.51 299.51 14.02 30172 31.1710 296.81 301.29 14.10 30173 31.1720 284.53 302.79 13.79 30174 31.1730 297.40 303.97 14.07 30175 31.1740 307.73 305.12 14.41 30176 31.1750 301.74 305.51 14.30 30177 31.1760 303.70 305.45 14.34 30178 31.1770 307.11 304.93 14.34 30179 31.1780 291.63 303.95 13.99 30180 31.1790 295.79 302.53 14.14 30181 31.1800 299.00 300.69 14.16 30182 31.1810 303.97 298.48 14.28 30183 31.1820 297.77 295.95 14.18 30184 31.1830 293.18 293.15 14.01 30185 31.1840 274.71 290.14 13.58 30186 31.1850 275.71 287.00 13.60 30187 31.1860 288.38 283.73 13.90 30188 31.1870 273.82 280.44 13.56 30189 31.1880 259.01 277.14 13.18 30190 31.1890 262.56 273.86 13.28 30191 31.1900 244.73 270.64 12.84 30192 31.1910 259.78 267.51 13.22 30193 31.1920 285.46 264.48 13.87 30194 31.1930 258.30 261.57 13.22 30195 31.1940 264.44 258.77 13.36 30196 31.1950 240.70 256.10 12.79 30197 31.1960 258.32 253.57 13.21 30198 31.1970 252.79 251.16 13.04 30199 31.1980 243.53 248.89 12.77 30200 31.1990 238.85 246.73 12.71 30201 31.2000 239.84 244.70 12.73 30202 31.2010 268.19 242.78 13.41 30203 31.2020 253.70 240.98 13.04 30204 31.2030 248.55 239.28 12.94 30205 31.2040 253.91 237.68 13.05 30206 31.2050 217.64 236.17 12.07 30207 31.2060 222.90 234.76 12.28 30208 31.2070 227.02 233.42 12.35 30209 31.2080 244.35 232.17 12.81 30210 31.2090 237.92 230.99 12.65 30211 31.2100 213.00 229.88 11.98 30212 31.2110 226.84 228.83 12.30 30213 31.2120 232.48 227.85 12.52 30214 31.2130 223.68 226.92 12.30 30215 31.2140 227.70 226.04 12.40 30216 31.2150 256.20 225.22 13.14 30217 31.2160 245.12 224.44 12.86 30218 31.2170 242.38 223.71 12.73 30219 31.2180 216.83 223.01 12.08 30220 31.2190 222.90 222.36 12.28 30221 31.2200 209.88 221.74 11.91 30222 31.2210 232.14 221.15 12.51 30223 31.2220 226.51 220.59 12.41 30224 31.2230 226.21 220.05 12.37 30225 31.2240 229.41 219.55 12.42 30226 31.2250 227.81 219.06 12.34 30227 31.2260 202.80 218.60 11.67 30228 31.2270 216.40 218.15 12.05 30229 31.2280 205.25 217.72 11.75 30230 31.2290 226.36 217.31 12.32 30231 31.2300 226.16 216.91 12.28 30232 31.2310 197.85 216.52 11.53 30233 31.2320 197.04 216.15 11.51 30234 31.2330 211.82 215.79 11.93 30235 31.2340 201.89 215.43 11.65 30236 31.2350 194.07 215.09 11.44 30237 31.2360 194.19 214.76 11.44 30238 31.2370 218.01 214.44 12.10 30239 31.2380 209.78 214.13 11.88 30240 31.2390 216.53 213.82 12.01 30241 31.2400 212.45 213.53 11.90 30242 31.2410 213.34 213.25 11.98 30243 31.2420 203.80 212.98 11.70 30244 31.2430 218.00 212.72 12.14 30245 31.2440 217.72 212.47 12.07 30246 31.2450 215.25 212.23 12.01 30247 31.2460 220.89 211.99 12.18 30248 31.2470 209.95 211.77 11.95 30249 31.2480 203.62 211.55 11.69 30250 31.2490 210.62 211.34 11.86 30251 31.2500 202.29 211.14 11.72 30252 31.2510 202.26 210.95 11.72 30253 31.2520 216.43 210.77 12.08 30254 31.2530 222.85 210.59 12.23 30255 31.2540 220.16 210.42 12.13 30256 31.2550 206.22 210.26 11.79 30257 31.2560 202.28 210.10 11.74 30258 31.2570 203.08 209.95 11.69 30259 31.2580 202.28 209.80 11.65 30260 31.2590 207.80 209.66 11.82 30261 31.2600 207.78 209.53 11.85 30262 31.2610 227.45 209.40 12.36 30263 31.2620 232.54 209.28 12.49 30264 31.2630 213.94 209.16 11.99 30265 31.2640 199.64 209.04 11.59 30266 31.2650 196.39 208.93 11.47 30267 31.2660 210.68 208.83 11.90 30268 31.2670 232.79 208.72 12.51 30269 31.2680 207.33 208.63 11.80 30270 31.2690 204.08 208.53 11.71 30271 31.2700 213.86 208.44 11.93 30272 31.2710 213.79 208.35 11.98 30273 31.2720 201.09 208.27 11.60 30274 31.2730 211.20 208.19 11.89 30275 31.2740 219.80 208.11 12.17 30276 31.2750 223.15 208.04 12.23 30277 31.2760 208.42 207.97 11.81 30278 31.2770 210.71 207.90 11.91 30279 31.2780 208.43 207.61 11.82 30280 31.2790 197.05 207.55 11.49 30281 31.2800 214.20 207.49 11.97 30282 31.2810 201.58 207.44 11.62 30283 31.2820 198.81 207.38 11.51 30284 31.2830 197.94 207.33 11.54 30285 31.2840 206.64 207.28 11.80 30286 31.2850 211.42 207.24 11.94 30287 31.2860 199.45 207.10 11.63 30288 31.2870 213.10 207.05 11.94 30289 31.2880 214.87 207.01 12.01 30290 31.2890 209.80 206.98 11.85 30291 31.2900 220.23 206.95 12.17 30292 31.2910 232.12 206.91 12.48 30293 31.2920 220.66 206.88 12.21 30294 31.2930 207.56 206.85 11.79 30295 31.2940 205.31 206.83 11.71 30296 31.2950 199.61 206.81 11.62 30297 31.2960 196.13 206.79 11.51 30298 31.2970 212.78 206.76 11.93 30299 31.2980 218.76 206.75 12.13 30300 31.2990 205.17 206.73 11.75 30301 31.3000 195.18 206.72 11.43 30302 31.3010 203.15 206.71 11.67 30303 31.3020 210.30 206.70 11.80 30304 31.3030 205.97 206.69 11.75 30305 31.3040 219.17 206.68 12.13 30306 31.3050 206.07 206.68 11.76 30307 31.3060 195.97 206.68 11.51 30308 31.3070 189.58 206.68 11.34 30309 31.3080 204.17 206.68 11.74 30310 31.3090 215.76 206.69 12.08 30311 31.3100 192.52 206.70 11.39 30312 31.3110 202.98 206.70 11.62 30313 31.3120 209.61 206.71 11.87 30314 31.3130 196.05 206.73 11.50 30315 31.3140 216.45 206.74 12.08 30316 31.3150 184.02 206.76 11.15 30317 31.3160 182.87 206.78 11.07 30318 31.3170 189.47 206.80 11.28 30319 31.3180 200.29 206.83 11.62 30320 31.3190 191.58 206.85 11.34 30321 31.3200 188.03 206.88 11.19 30322 31.3210 189.00 206.92 11.16 30323 31.3220 238.21 206.95 12.64 30324 31.3230 193.76 206.99 11.39 30325 31.3240 195.54 207.03 11.47 30326 31.3250 209.95 207.07 11.84 30327 31.3260 187.97 207.11 11.25 30328 31.3270 202.38 207.16 11.66 30329 31.3280 206.31 207.21 11.80 30330 31.3290 217.14 207.27 12.09 30331 31.3300 218.15 207.32 12.13 30332 31.3310 216.84 207.39 12.09 30333 31.3320 213.47 207.45 11.99 30334 31.3330 217.63 207.52 12.10 30335 31.3340 206.94 207.59 11.79 30336 31.3350 204.68 207.66 11.73 30337 31.3360 197.31 207.74 11.48 30338 31.3370 195.90 207.83 11.44 30339 31.3380 198.14 207.91 11.55 30340 31.3390 222.27 208.01 12.21 30341 31.3400 219.60 208.10 12.16 30342 31.3410 208.61 208.21 11.87 30343 31.3420 211.72 208.31 11.91 30344 31.3430 219.01 208.42 12.10 30345 31.3440 207.26 208.54 11.77 30346 31.3450 228.87 208.66 12.42 30347 31.3460 208.77 208.79 11.87 30348 31.3470 204.57 208.93 11.69 30349 31.3480 202.32 209.07 11.68 30350 31.3490 214.88 209.23 12.04 30351 31.3500 212.38 209.38 11.95 30352 31.3510 219.69 209.55 12.15 30353 31.3520 194.73 209.72 11.42 30354 31.3530 220.06 209.90 12.13 30355 31.3540 218.82 210.10 12.11 30356 31.3550 210.70 209.63 11.91 30357 31.3560 208.39 209.84 11.83 30358 31.3570 221.23 210.07 12.18 30359 31.3580 213.51 210.31 11.97 30360 31.3590 207.35 210.56 11.81 30361 31.3600 201.24 210.82 11.65 30362 31.3610 200.32 211.10 11.62 30363 31.3620 213.85 211.39 11.95 30364 31.3630 202.35 211.69 11.67 30365 31.3640 204.22 212.02 11.70 30366 31.3650 218.95 212.36 12.11 30367 31.3660 213.06 212.72 11.99 30368 31.3670 217.99 213.10 12.13 30369 31.3680 203.73 213.50 11.69 30370 31.3690 209.43 213.92 11.88 30371 31.3700 228.32 214.37 12.42 30372 31.3710 207.72 214.84 11.83 30373 31.3720 216.20 215.34 12.06 30374 31.3730 210.82 215.87 11.90 30375 31.3740 186.90 216.43 11.21 30376 31.3750 209.33 217.03 11.85 30377 31.3760 222.56 217.66 12.21 30378 31.3770 230.84 218.33 12.43 30379 31.3780 226.17 219.03 12.30 30380 31.3790 216.54 219.79 12.04 30381 31.3800 243.79 220.58 12.80 30382 31.3810 212.95 221.43 12.02 30383 31.3820 224.33 222.32 12.35 30384 31.3830 231.93 223.27 12.52 30385 31.3840 221.15 224.27 12.19 30386 31.3850 218.98 225.33 12.12 30387 31.3860 229.22 226.46 12.40 30388 31.3870 234.39 227.65 12.58 30389 31.3880 233.86 228.90 12.56 30390 31.3890 230.94 230.21 12.49 30391 31.3900 228.95 231.60 12.43 30392 31.3910 210.71 233.05 11.86 30393 31.3920 198.15 234.56 11.46 30394 31.3930 233.33 236.13 12.51 30395 31.3940 244.27 237.75 12.81 30396 31.3950 235.95 239.42 12.61 30397 31.3960 246.75 241.12 12.88 30398 31.3970 250.35 242.85 12.99 30399 31.3980 253.10 244.58 13.08 30400 31.3990 243.14 246.30 12.77 30401 31.4000 255.74 247.97 13.05 30402 31.4010 256.37 249.59 13.11 30403 31.4020 233.97 251.11 12.56 30404 31.4030 231.97 252.51 12.47 30405 31.4040 242.95 253.76 12.73 30406 31.4050 256.66 254.83 13.18 30407 31.4060 269.38 255.69 13.50 30408 31.4070 255.65 256.32 13.13 30409 31.4080 271.19 256.70 13.52 30410 31.4090 278.13 256.88 13.68 30411 31.4100 287.78 256.74 13.91 30412 31.4110 284.42 256.35 13.89 30413 31.4120 258.38 255.71 13.25 30414 31.4130 261.38 254.85 13.29 30415 31.4140 265.84 253.79 13.37 30416 31.4150 267.23 252.55 13.41 30417 31.4160 266.01 251.17 13.39 30418 31.4170 226.52 249.68 12.34 30419 31.4180 237.28 248.10 12.66 30420 31.4190 234.60 246.47 12.58 30421 31.4200 231.05 244.80 12.45 30422 31.4210 238.27 243.13 12.66 30423 31.4220 239.06 241.46 12.71 30424 31.4230 242.09 239.83 12.79 30425 31.4240 239.84 238.23 12.71 30426 31.4250 241.47 236.67 12.73 30427 31.4260 232.09 235.18 12.48 30428 31.4270 217.02 233.74 12.09 30429 31.4280 218.15 232.37 12.09 30430 31.4290 240.51 231.07 12.70 30431 31.4300 220.86 229.82 12.19 30432 31.4310 234.12 228.65 12.51 30433 31.4320 210.69 227.54 11.85 30434 31.4330 225.98 226.49 12.33 30435 31.4340 218.28 225.51 12.09 30436 31.4350 218.14 224.59 12.10 30437 31.4360 204.48 223.72 11.66 30438 31.4370 213.63 222.90 11.94 30439 31.4380 228.54 222.13 12.37 30440 31.4390 241.05 221.41 12.73 30441 31.4400 231.38 220.74 12.50 30442 31.4410 201.16 220.11 11.63 30443 31.4420 212.23 219.52 11.91 30444 31.4430 209.61 218.97 11.87 30445 31.4440 214.70 218.45 12.01 30446 31.4450 201.52 217.97 11.67 30447 31.4460 207.30 217.52 11.81 30448 31.4470 205.89 217.10 11.77 30449 31.4480 213.12 216.70 11.97 30450 31.4490 208.38 216.34 11.86 30451 31.4500 216.35 215.99 12.04 30452 31.4510 220.18 215.68 12.14 30453 31.4520 227.69 215.38 12.35 30454 31.4530 226.67 215.10 12.34 30455 31.4540 206.83 214.84 11.84 30456 31.4550 212.10 214.61 11.91 30457 31.4560 209.25 214.39 11.87 30458 31.4570 212.18 214.18 11.94 30459 31.4580 206.27 213.99 11.75 30460 31.4590 203.14 213.82 11.71 30461 31.4600 219.48 213.66 12.20 30462 31.4610 214.87 213.52 12.07 30463 31.4620 218.72 213.38 12.16 30464 31.4630 204.37 213.26 11.76 30465 31.4640 216.81 213.16 12.05 30466 31.4650 214.41 213.06 12.00 30467 31.4660 210.78 212.97 11.90 30468 31.4670 183.48 212.90 11.07 30469 31.4680 193.08 212.83 11.31 30470 31.4690 205.64 212.78 11.73 30471 31.4700 199.45 212.73 11.61 30472 31.4710 206.75 212.70 11.75 30473 31.4720 221.16 212.67 12.18 30474 31.4730 222.68 212.65 12.20 30475 31.4740 191.94 212.64 11.38 30476 31.4750 224.01 212.64 12.27 30477 31.4760 208.00 212.64 11.88 30478 31.4770 222.09 212.66 12.28 30479 31.4780 213.80 212.68 12.01 30480 31.4790 204.51 212.71 11.72 30481 31.4800 208.90 212.74 11.84 30482 31.4810 212.93 212.79 11.99 30483 31.4820 213.56 212.84 11.98 30484 31.4830 208.23 212.90 11.86 30485 31.4840 207.91 212.97 11.84 30486 31.4850 214.71 213.04 12.02 30487 31.4860 202.11 213.12 11.66 30488 31.4870 207.70 213.21 11.87 30489 31.4880 206.19 213.31 11.76 30490 31.4890 209.06 213.41 11.87 30491 31.4900 205.76 213.52 11.82 30492 31.4910 188.93 213.64 11.30 30493 31.4920 216.16 213.77 12.06 30494 31.4930 206.56 213.90 11.79 30495 31.4940 200.56 214.04 11.65 30496 31.4950 227.08 214.20 12.38 30497 31.4960 208.14 214.35 11.81 30498 31.4970 199.89 214.52 11.59 30499 31.4980 203.70 214.70 11.69 30500 31.4990 210.81 214.88 11.85 30501 31.5000 216.98 215.08 12.14 30502 31.5010 211.43 215.28 11.94 30503 31.5020 195.74 215.49 11.46 30504 31.5030 200.83 215.71 11.57 30505 31.5040 216.38 215.95 12.09 30506 31.5050 222.54 216.19 12.28 30507 31.5060 206.91 216.44 11.80 30508 31.5070 205.22 216.71 11.73 30509 31.5080 214.60 216.99 12.03 30510 31.5090 213.14 217.28 11.98 30511 31.5100 225.13 217.58 12.27 30512 31.5110 214.48 217.89 12.00 30513 31.5120 215.79 218.22 12.06 30514 31.5130 211.34 218.56 11.93 30515 31.5140 219.53 218.92 12.15 30516 31.5150 207.09 219.29 11.78 30517 31.5160 198.15 219.68 11.51 30518 31.5170 196.30 220.09 11.49 30519 31.5180 218.62 220.51 12.03 30520 31.5190 222.41 220.95 12.16 30521 31.5200 238.89 221.42 12.66 30522 31.5210 234.71 221.90 12.56 30523 31.5220 215.17 222.40 12.07 30524 31.5230 235.45 222.93 12.57 30525 31.5240 224.54 223.48 12.28 30526 31.5250 216.12 224.06 12.05 30527 31.5260 217.02 224.66 12.07 30528 31.5270 226.55 225.30 12.36 30529 31.5280 231.21 225.96 12.51 30530 31.5290 217.28 226.65 12.13 30531 31.5300 236.31 227.38 12.63 30532 31.5310 227.82 228.14 12.35 30533 31.5320 214.59 228.93 12.01 30534 31.5330 219.93 229.76 12.21 30535 31.5340 207.94 230.64 11.79 30536 31.5350 230.56 231.55 12.44 30537 31.5360 249.04 232.50 12.94 30538 31.5370 238.58 233.51 12.67 30539 31.5380 231.65 234.55 12.43 30540 31.5390 235.19 235.64 12.57 30541 31.5400 222.18 236.77 12.25 30542 31.5410 230.18 237.95 12.44 30543 31.5420 226.89 239.18 12.33 30544 31.5430 266.18 240.45 13.43 30545 31.5440 250.09 241.76 12.97 30546 31.5450 228.56 243.12 12.35 30547 31.5460 228.21 244.51 12.39 30548 31.5470 247.23 245.93 12.86 30549 31.5480 240.62 247.24 12.75 30550 31.5490 252.92 248.72 13.08 30551 31.5500 247.70 250.24 12.90 30552 31.5510 251.03 251.78 12.99 30553 31.5520 246.18 253.35 12.86 30554 31.5530 247.74 254.95 12.90 30555 31.5540 260.49 256.60 13.20 30556 31.5550 258.36 258.28 13.12 30557 31.5560 247.39 260.02 12.84 30558 31.5570 236.11 261.82 12.57 30559 31.5580 260.73 263.71 13.26 30560 31.5590 261.76 265.67 13.25 30561 31.5600 283.48 267.75 13.78 30562 31.5610 263.84 269.95 13.34 30563 31.5620 270.03 272.28 13.49 30564 31.5630 300.44 274.77 14.19 30565 31.5640 300.01 277.40 14.23 30566 31.5650 300.21 280.22 14.24 30567 31.5660 293.27 283.24 14.07 30568 31.5670 288.85 286.45 13.93 30569 31.5680 297.68 289.89 14.13 30570 31.5690 311.84 293.56 14.51 30571 31.5700 310.42 297.45 14.47 30572 31.5710 298.85 301.62 14.15 30573 31.5720 306.48 306.05 14.37 30574 31.5730 321.88 310.76 14.75 30575 31.5740 298.24 315.75 14.15 30576 31.5750 336.96 321.04 15.05 30577 31.5760 352.50 326.60 15.42 30578 31.5770 345.86 332.48 15.26 30579 31.5780 357.02 338.65 15.49 30580 31.5790 340.35 345.10 15.14 30581 31.5800 353.39 351.82 15.44 30582 31.5810 373.70 358.76 15.87 30583 31.5820 361.92 365.92 15.63 30584 31.5830 363.23 373.25 15.68 30585 31.5840 385.57 380.68 16.08 30586 31.5850 387.06 388.11 16.11 30587 31.5860 413.18 395.53 16.64 30588 31.5870 402.04 402.76 16.44 30589 31.5880 416.27 409.74 16.71 30590 31.5890 436.94 416.34 17.16 30591 31.5900 422.46 422.43 16.89 30592 31.5910 442.17 427.89 17.22 30593 31.5920 414.67 432.62 16.72 30594 31.5930 431.48 436.50 17.04 30595 31.5940 442.47 439.46 17.28 30596 31.5950 439.20 441.45 17.20 30597 31.5960 430.80 442.42 17.03 30598 31.5970 470.67 442.40 17.85 30599 31.5980 452.38 442.02 17.50 30600 31.5990 437.66 440.17 17.22 30601 31.6000 425.74 437.52 16.97 30602 31.6010 434.91 434.19 17.13 30603 31.6020 421.51 430.32 16.83 30604 31.6030 413.77 426.00 16.66 30605 31.6040 425.41 421.42 16.94 30606 31.6050 406.07 416.66 16.55 30607 31.6060 405.65 411.84 16.50 30608 31.6070 420.95 407.08 16.82 30609 31.6080 405.24 402.48 16.47 30610 31.6090 395.41 398.10 16.35 30611 31.6100 399.71 394.00 16.43 30612 31.6110 389.87 390.24 16.18 30613 31.6120 391.07 386.88 16.15 30614 31.6130 396.25 383.94 16.30 30615 31.6140 411.29 381.46 16.69 30616 31.6150 384.77 379.44 16.10 30617 31.6160 358.71 377.90 15.55 30618 31.6170 353.60 376.86 15.45 30619 31.6180 375.46 376.32 15.88 30620 31.6190 368.50 376.27 15.73 30621 31.6200 386.38 376.73 16.14 30622 31.6210 362.79 377.68 15.63 30623 31.6220 356.96 379.11 15.48 30624 31.6230 385.45 381.01 16.12 30625 31.6240 385.86 383.37 16.10 30626 31.6250 394.57 386.14 16.30 30627 31.6260 383.73 389.30 16.06 30628 31.6270 393.82 392.81 16.24 30629 31.6280 412.12 396.62 16.66 30630 31.6290 402.75 400.64 16.49 30631 31.6300 424.57 404.80 16.88 30632 31.6310 434.58 409.03 17.10 30633 31.6320 433.17 413.21 17.06 30634 31.6330 446.25 417.22 17.33 30635 31.6340 412.67 420.94 16.69 30636 31.6350 418.55 424.24 16.80 30637 31.6360 450.06 426.98 17.39 30638 31.6370 448.73 429.07 17.37 30639 31.6380 463.06 430.22 17.64 30640 31.6390 458.14 430.66 17.53 30641 31.6400 449.80 430.17 17.41 30642 31.6410 444.68 428.72 17.33 30643 31.6420 412.08 426.33 16.65 30644 31.6430 411.80 423.00 16.60 30645 31.6440 408.61 418.82 16.51 30646 31.6450 415.13 413.85 16.68 30647 31.6460 393.28 408.22 16.30 30648 31.6470 383.34 402.05 16.10 30649 31.6480 391.71 395.43 16.27 30650 31.6490 395.86 388.49 16.40 30651 31.6500 384.86 381.34 16.14 30652 31.6510 343.34 374.12 15.26 30653 31.6520 368.81 366.83 15.77 30654 31.6530 341.69 359.65 15.16 30655 31.6540 350.71 352.58 15.35 30656 31.6550 337.86 345.68 15.11 30657 31.6560 332.71 338.99 14.95 30658 31.6570 311.51 332.57 14.41 30659 31.6580 309.20 326.37 14.45 30660 31.6590 302.59 320.48 14.24 30661 31.6600 288.08 314.85 13.92 30662 31.6610 325.35 309.49 14.78 30663 31.6620 320.42 304.41 14.68 30664 31.6630 317.11 299.62 14.62 30665 31.6640 293.58 295.07 14.02 30666 31.6650 270.55 290.77 13.50 30667 31.6660 284.67 286.71 13.89 30668 31.6670 274.28 282.88 13.57 30669 31.6680 268.61 279.27 13.43 30670 31.6690 272.00 275.85 13.54 30671 31.6700 289.57 272.64 14.01 30672 31.6710 263.61 269.60 13.34 30673 31.6720 256.35 266.73 13.14 30674 31.6730 257.79 264.02 13.20 30675 31.6740 261.32 261.48 13.26 30676 31.6750 272.98 259.06 13.52 30677 31.6760 266.95 256.78 13.38 30678 31.6770 249.41 254.62 12.93 30679 31.6780 245.96 252.57 12.90 30680 31.6790 247.34 250.64 12.88 30681 31.6800 232.96 248.81 12.49 30682 31.6810 256.08 247.07 13.08 30683 31.6820 243.55 245.42 12.78 30684 31.6830 229.90 243.85 12.44 30685 31.6840 248.17 242.37 12.88 30686 31.6850 241.67 240.96 12.76 30687 31.6860 234.53 239.61 12.56 30688 31.6870 229.22 238.33 12.38 30689 31.6880 237.39 237.11 12.62 30690 31.6890 241.84 235.96 12.77 30691 31.6900 236.62 234.84 12.61 30692 31.6910 223.17 233.79 12.24 30693 31.6920 230.82 232.78 12.45 30694 31.6930 226.72 231.82 12.35 30695 31.6940 220.10 230.90 12.16 30696 31.6950 219.48 230.02 12.15 30697 31.6960 237.45 229.18 12.67 30698 31.6970 230.88 228.37 12.44 30699 31.6980 226.49 227.60 12.31 30700 31.6990 223.82 226.85 12.34 30701 31.7000 240.10 226.14 12.76 30702 31.7010 235.05 225.46 12.58 30703 31.7020 221.33 224.81 12.23 30704 31.7030 222.66 224.18 12.24 30705 31.7040 238.34 223.58 12.62 30706 31.7050 222.07 223.00 12.22 30707 31.7060 228.20 222.44 12.39 30708 31.7070 223.60 221.90 12.28 30709 31.7080 220.57 221.39 12.19 30710 31.7090 211.21 220.89 11.94 30711 31.7100 218.02 220.41 12.09 30712 31.7110 225.31 219.95 12.31 30713 31.7120 227.64 219.50 12.43 30714 31.7130 201.88 219.07 11.70 30715 31.7140 219.72 218.66 12.13 30716 31.7150 228.15 218.26 12.38 30717 31.7160 219.14 217.88 12.14 30718 31.7170 213.69 217.51 11.98 30719 31.7180 229.47 217.14 12.45 30720 31.7190 214.19 216.80 12.02 30721 31.7200 223.50 216.46 12.25 30722 31.7210 200.90 216.14 11.66 30723 31.7220 224.05 215.82 12.33 30724 31.7230 222.46 215.52 12.25 30725 31.7240 226.32 215.23 12.35 30726 31.7250 214.54 214.95 12.05 30727 31.7260 215.17 214.67 12.04 30728 31.7270 226.06 214.41 12.33 30729 31.7280 226.39 214.15 12.35 30730 31.7290 222.79 213.90 12.23 30731 31.7300 217.71 213.66 12.11 30732 31.7310 214.33 213.43 11.98 30733 31.7320 222.07 213.20 12.21 30734 31.7330 210.70 212.98 11.92 30735 31.7340 216.08 212.77 12.02 30736 31.7350 201.75 212.57 11.65 30737 31.7360 219.66 212.37 12.15 30738 31.7370 220.80 212.18 12.18 30739 31.7380 207.43 211.99 11.86 30740 31.7390 215.09 211.81 12.04 30741 31.7400 220.21 211.63 12.18 30742 31.7410 216.35 211.46 12.07 30743 31.7420 212.75 211.30 11.98 30744 31.7430 220.48 211.14 12.18 30745 31.7440 228.84 210.99 12.42 30746 31.7450 215.48 210.87 12.05 30747 31.7460 220.67 210.73 12.21 30748 31.7470 213.25 210.59 11.94 30749 31.7480 199.74 210.45 11.56 30750 31.7490 208.30 210.32 11.78 30751 31.7500 215.77 210.19 12.03 30752 31.7510 233.47 210.07 12.54 30753 31.7520 222.70 209.95 12.27 30754 31.7530 224.05 209.84 12.28 30755 31.7540 221.84 209.73 12.22 30756 31.7550 220.21 209.62 12.17 30757 31.7560 215.29 209.52 12.02 30758 31.7570 222.55 209.42 12.12 30759 31.7580 215.31 209.32 11.96 30760 31.7590 221.29 209.23 12.11 30761 31.7600 221.35 209.14 12.25 30762 31.7610 219.47 209.06 12.21 30763 31.7620 195.37 208.98 11.43 30764 31.7630 202.50 208.90 11.66 30765 31.7640 225.49 208.82 12.33 30766 31.7650 213.99 208.75 11.99 30767 31.7660 224.51 208.68 12.30 30768 31.7670 215.82 208.61 12.08 30769 31.7680 225.11 208.55 12.36 30770 31.7690 228.43 208.49 12.43 30771 31.7700 218.52 208.43 12.09 30772 31.7710 236.43 208.38 12.65 30773 31.7720 213.67 208.33 12.06 30774 31.7730 207.30 208.28 11.84 30775 31.7740 225.30 208.24 12.33 30776 31.7750 220.56 208.20 12.23 30777 31.7760 219.80 208.16 12.21 30778 31.7770 210.45 208.12 11.86 30779 31.7780 212.93 208.09 11.97 30780 31.7790 214.51 208.06 12.05 30781 31.7800 213.58 208.04 12.02 30782 31.7810 211.01 208.01 11.92 30783 31.7820 213.89 207.99 12.00 30784 31.7830 217.70 207.98 12.08 30785 31.7840 191.21 207.97 11.33 30786 31.7850 219.01 207.96 12.11 30787 31.7860 209.32 207.95 11.86 30788 31.7870 220.31 207.95 12.12 30789 31.7880 225.28 207.95 12.27 30790 31.7890 209.81 207.95 11.89 30791 31.7900 202.98 207.96 11.73 30792 31.7910 190.65 207.97 11.33 30793 31.7920 217.32 207.99 12.07 30794 31.7930 233.92 208.01 12.55 30795 31.7940 211.28 208.03 11.91 30796 31.7950 212.49 208.05 11.90 30797 31.7960 209.08 208.09 11.86 30798 31.7970 215.61 208.12 12.01 30799 31.7980 204.43 208.16 11.77 30800 31.7990 215.59 208.21 12.06 30801 31.8000 208.93 208.26 11.88 30802 31.8010 223.56 208.32 12.32 30803 31.8020 218.09 208.38 12.15 30804 31.8030 222.68 208.45 12.22 30805 31.8040 225.89 208.52 12.24 30806 31.8050 223.51 208.60 12.28 30807 31.8060 209.23 208.68 11.88 30808 31.8070 228.68 208.78 12.42 30809 31.8080 211.63 208.88 11.94 30810 31.8090 217.74 208.99 12.09 30811 31.8100 219.14 209.10 12.10 30812 31.8110 228.56 209.23 12.37 30813 31.8120 207.85 209.46 11.79 30814 31.8130 205.62 209.60 11.75 30815 31.8140 210.21 209.75 11.90 30816 31.8150 201.43 209.92 11.66 30817 31.8160 214.27 210.09 12.02 30818 31.8170 207.97 210.28 11.82 30819 31.8180 210.47 210.48 11.90 30820 31.8190 201.67 210.69 11.66 30821 31.8200 205.06 210.92 11.77 30822 31.8210 219.94 211.16 12.16 30823 31.8220 214.74 211.43 12.04 30824 31.8230 216.67 211.70 12.08 30825 31.8240 204.58 212.00 11.74 30826 31.8250 216.94 212.32 12.02 30827 31.8260 207.25 212.65 11.76 30828 31.8270 198.95 213.01 11.58 30829 31.8280 209.29 213.40 11.86 30830 31.8290 203.22 213.80 11.70 30831 31.8300 212.23 214.24 11.97 30832 31.8310 209.60 214.70 11.88 30833 31.8320 197.09 215.19 11.48 30834 31.8330 223.33 215.71 12.23 30835 31.8340 213.08 216.25 11.95 30836 31.8350 203.05 216.83 11.63 30837 31.8360 202.19 217.44 11.68 30838 31.8370 215.77 218.08 12.03 30839 31.8380 205.29 218.74 11.72 30840 31.8390 218.00 219.43 12.06 30841 31.8400 227.33 220.14 12.36 30842 31.8410 210.03 220.88 11.86 30843 31.8420 213.67 221.62 11.98 30844 31.8430 213.92 222.37 11.99 30845 31.8440 231.12 223.12 12.48 30846 31.8450 214.82 223.87 11.99 30847 31.8460 212.41 224.59 11.94 30848 31.8470 217.02 225.29 12.09 30849 31.8480 227.71 225.95 12.36 30850 31.8490 214.68 226.57 12.00 30851 31.8500 213.50 227.14 12.02 30852 31.8510 225.16 227.66 12.29 30853 31.8520 228.81 228.12 12.38 30854 31.8530 220.32 228.53 12.17 30855 31.8540 235.00 228.88 12.57 30856 31.8550 216.61 229.18 12.05 30857 31.8560 222.26 229.44 12.26 30858 31.8570 221.63 229.66 12.23 30859 31.8580 212.65 229.85 11.93 30860 31.8590 249.32 230.37 12.93 30861 31.8600 246.77 230.50 12.90 30862 31.8610 230.82 230.60 12.46 30863 31.8620 223.23 230.68 12.24 30864 31.8630 221.41 230.74 12.14 30865 31.8640 214.48 230.76 12.04 30866 31.8650 214.73 230.74 11.99 30867 31.8660 216.14 230.69 12.04 30868 31.8670 230.18 230.59 12.42 30869 31.8680 243.53 230.43 12.80 30870 31.8690 231.78 230.22 12.47 30871 31.8700 231.61 229.95 12.46 30872 31.8710 235.74 229.62 12.59 30873 31.8720 226.53 229.24 12.33 30874 31.8730 235.24 228.79 12.58 30875 31.8740 241.31 228.31 12.76 30876 31.8750 230.26 227.77 12.42 30877 31.8760 233.32 227.21 12.54 30878 31.8770 220.30 226.61 12.21 30879 31.8780 236.22 226.00 12.62 30880 31.8790 226.31 225.38 12.38 30881 31.8800 223.56 224.76 12.29 30882 31.8810 217.94 224.14 12.12 30883 31.8820 211.06 223.53 11.93 30884 31.8830 199.83 222.94 11.57 30885 31.8840 219.07 222.37 12.08 30886 31.8850 202.09 221.82 11.67 30887 31.8860 214.88 221.30 12.02 30888 31.8870 218.58 220.80 12.11 30889 31.8880 225.50 220.34 12.35 30890 31.8890 220.77 219.91 12.16 30891 31.8900 230.33 219.50 12.43 30892 31.8910 225.35 219.13 12.29 30893 31.8920 219.03 218.70 12.16 30894 31.8930 221.13 218.38 12.19 30895 31.8940 219.59 218.10 12.14 30896 31.8950 211.70 217.84 11.87 30897 31.8960 223.69 217.62 12.29 30898 31.8970 225.44 217.41 12.33 30899 31.8980 214.43 217.23 12.02 30900 31.8990 205.03 217.08 11.75 30901 31.9000 220.22 216.95 12.18 30902 31.9010 220.58 216.85 12.22 30903 31.9020 232.98 216.76 12.56 30904 31.9030 230.39 216.70 12.47 30905 31.9040 240.34 216.65 12.67 30906 31.9050 221.77 216.63 12.19 30907 31.9060 212.99 216.63 12.00 30908 31.9070 213.46 216.64 11.97 30909 31.9080 213.56 216.68 11.94 30910 31.9090 219.31 216.73 12.07 30911 31.9100 232.66 216.80 12.50 30912 31.9110 241.17 216.89 12.77 30913 31.9120 228.76 217.00 12.44 30914 31.9130 228.47 217.12 12.44 30915 31.9140 204.61 217.26 11.77 30916 31.9150 212.93 217.42 11.96 30917 31.9160 211.07 217.60 11.88 30918 31.9170 227.37 217.79 12.34 30919 31.9180 212.05 218.01 11.96 30920 31.9190 219.50 218.23 12.16 30921 31.9200 209.20 218.48 11.89 30922 31.9210 203.11 218.75 11.63 30923 31.9220 203.19 219.03 11.63 30924 31.9230 220.17 219.34 12.18 30925 31.9240 215.32 219.66 12.06 30926 31.9250 220.81 220.01 12.17 30927 31.9260 227.90 220.38 12.34 30928 31.9270 198.82 220.76 11.57 30929 31.9280 205.00 221.18 11.73 30930 31.9290 210.05 221.61 11.85 30931 31.9300 208.83 222.07 11.81 30932 31.9310 214.69 222.55 12.03 30933 31.9320 215.11 223.06 12.02 30934 31.9330 216.93 223.60 12.09 30935 31.9340 222.78 224.17 12.28 30936 31.9350 236.16 224.77 12.65 30937 31.9360 236.27 225.40 12.58 30938 31.9370 219.98 226.06 12.11 30939 31.9380 219.36 226.76 12.13 30940 31.9390 227.06 227.49 12.40 30941 31.9400 222.86 228.27 12.26 30942 31.9410 225.10 229.08 12.34 30943 31.9420 215.53 229.94 12.04 30944 31.9430 234.03 230.85 12.54 30945 31.9440 237.02 231.81 12.66 30946 31.9450 219.82 232.82 12.16 30947 31.9460 238.27 233.88 12.67 30948 31.9470 236.61 235.01 12.56 30949 31.9480 219.98 236.19 12.12 30950 31.9490 223.33 237.45 12.26 30951 31.9500 228.93 238.77 12.42 30952 31.9510 241.31 240.18 12.74 30953 31.9520 237.13 241.67 12.61 30954 31.9530 238.08 243.24 12.65 30955 31.9540 241.88 244.91 12.80 30956 31.9550 261.03 246.68 13.23 30957 31.9560 229.82 248.56 12.45 30958 31.9570 251.34 250.57 13.00 30959 31.9580 248.88 252.69 12.94 30960 31.9590 240.56 254.95 12.69 30961 31.9600 254.25 257.36 13.07 30962 31.9610 248.53 259.93 12.93 30963 31.9620 248.77 262.67 12.93 30964 31.9630 242.84 265.60 12.78 30965 31.9640 253.95 268.73 13.05 30966 31.9650 260.29 272.07 13.20 30967 31.9660 262.33 275.64 13.27 30968 31.9670 269.16 279.48 13.48 30969 31.9680 284.95 283.59 13.79 30970 31.9690 288.65 287.99 13.91 30971 31.9700 302.08 292.70 14.29 30972 31.9710 302.74 297.77 14.26 30973 31.9720 302.35 303.22 14.29 30974 31.9730 291.76 309.06 14.01 30975 31.9740 286.22 315.34 13.88 30976 31.9750 292.02 322.08 14.03 30977 31.9760 322.47 329.29 14.68 30978 31.9770 336.03 337.04 15.03 30979 31.9780 331.63 345.35 14.94 30980 31.9790 351.17 354.23 15.37 30981 31.9800 317.86 363.71 14.64 30982 31.9810 337.59 373.80 15.06 30983 31.9820 358.73 384.46 15.46 30984 31.9830 337.42 395.77 15.01 30985 31.9840 372.04 407.64 15.82 30986 31.9850 395.23 420.04 16.29 30987 31.9860 413.29 432.86 16.72 30988 31.9870 428.88 445.96 16.99 30989 31.9880 427.59 459.25 16.91 30990 31.9890 467.26 472.51 17.74 30991 31.9900 495.50 485.49 18.29 30992 31.9910 503.46 497.85 18.41 30993 31.9920 511.18 509.40 18.55 30994 31.9930 519.29 519.65 18.69 30995 31.9940 517.94 528.37 18.66 30996 31.9950 517.08 535.22 18.68 30997 31.9960 537.38 539.91 19.06 30998 31.9970 542.66 542.26 19.16 30999 31.9980 568.46 542.19 19.58 31000 31.9990 537.98 539.68 19.06 31001 32.0000 525.58 534.84 18.86 31002 32.0010 503.15 527.87 18.41 31003 32.0020 493.43 519.07 18.23 31004 32.0030 481.23 508.70 18.01 31005 32.0040 474.27 497.08 17.89 31006 32.0050 464.64 484.67 17.67 31007 32.0060 439.53 471.67 17.19 31008 32.0070 422.12 458.40 16.86 31009 32.0080 424.96 445.14 16.88 31010 32.0090 412.29 432.00 16.67 31011 32.0100 409.44 419.19 16.60 31012 32.0110 390.22 406.82 16.20 31013 32.0120 354.51 394.96 15.42 31014 32.0130 355.08 383.68 15.46 31015 32.0140 354.16 373.03 15.46 31016 32.0150 328.34 362.96 14.88 31017 32.0160 318.03 353.50 14.64 31018 32.0170 342.59 344.67 15.13 31019 32.0180 343.94 336.35 15.16 31020 32.0190 324.14 328.61 14.77 31021 32.0200 319.83 321.41 14.64 31022 32.0210 302.00 314.68 14.26 31023 32.0220 296.93 308.40 14.14 31024 32.0230 309.57 302.58 14.42 31025 32.0240 291.86 297.14 14.04 31026 32.0250 270.31 292.05 13.49 31027 32.0260 274.69 287.32 13.63 31028 32.0270 286.06 282.92 13.93 31029 32.0280 269.78 278.81 13.50 31030 32.0290 279.98 274.97 13.75 31031 32.0300 282.49 271.39 13.81 31032 32.0310 279.70 268.04 13.77 31033 32.0320 257.66 264.89 13.22 31034 32.0330 269.71 261.96 13.45 31035 32.0340 265.95 259.20 13.39 31036 32.0350 240.14 256.62 12.70 31037 32.0360 233.70 254.20 12.49 31038 32.0370 237.28 251.92 12.62 31039 32.0380 239.98 249.77 12.69 31040 32.0390 251.52 247.76 13.00 31041 32.0400 237.43 245.85 12.68 31042 32.0410 259.10 244.06 13.19 31043 32.0420 256.83 242.37 13.15 31044 32.0430 256.48 240.77 13.14 31045 32.0440 248.36 239.26 12.93 31046 32.0450 228.68 237.84 12.39 31047 32.0460 220.49 236.51 12.14 31048 32.0470 228.58 235.23 12.35 31049 32.0480 233.03 234.02 12.52 31050 32.0490 223.99 232.87 12.26 31051 32.0500 213.56 231.77 11.95 31052 32.0510 232.72 230.74 12.46 31053 32.0520 241.86 229.75 12.76 31054 32.0530 219.42 228.81 12.15 31055 32.0540 228.54 227.92 12.37 31056 32.0550 226.48 227.07 12.33 31057 32.0560 226.73 226.25 12.34 31058 32.0570 238.87 225.48 12.69 31059 32.0580 228.92 224.74 12.39 31060 32.0590 220.19 224.04 12.17 31061 32.0600 205.85 223.37 11.76 31062 32.0610 224.50 222.73 12.30 31063 32.0620 229.66 222.12 12.40 31064 32.0630 241.52 221.53 12.75 31065 32.0640 231.78 220.97 12.48 31066 32.0650 209.66 220.43 11.85 31067 32.0660 216.53 219.92 12.04 31068 32.0670 222.41 219.43 12.20 31069 32.0680 218.33 218.96 12.11 31070 32.0690 220.54 218.51 12.19 31071 32.0700 217.48 218.08 12.07 31072 32.0710 219.14 217.31 12.12 31073 32.0720 213.96 216.91 11.99 31074 32.0730 201.89 216.54 11.64 31075 32.0740 202.83 216.18 11.72 31076 32.0750 205.32 215.83 11.76 31077 32.0760 209.88 215.50 11.84 31078 32.0770 214.71 215.18 12.01 31079 32.0780 229.69 214.88 12.39 31080 32.0790 202.83 214.59 11.61 31081 32.0800 210.01 214.33 11.88 31082 32.0810 202.51 214.07 11.65 31083 32.0820 214.98 213.81 12.01 31084 32.0830 218.78 213.57 12.15 31085 32.0840 207.07 213.34 11.83 31086 32.0850 204.53 213.11 11.75 31087 32.0860 189.77 212.90 11.29 31088 32.0870 202.04 212.70 11.65 31089 32.0880 213.59 212.51 12.00 31090 32.0890 212.58 212.32 11.94 31091 32.0900 233.54 212.15 12.48 31092 32.0910 209.03 211.98 11.82 31093 32.0920 208.41 211.82 11.83 31094 32.0930 199.41 211.68 11.58 31095 32.0940 191.40 211.54 11.35 31096 32.0950 199.34 211.41 11.61 31097 32.0960 209.12 211.28 11.90 31098 32.0970 217.22 211.17 12.10 31099 32.0980 212.14 211.06 11.95 31100 32.0990 212.22 210.96 11.91 31101 32.1000 222.89 210.87 12.23 31102 32.1010 212.70 210.79 11.98 31103 32.1020 204.23 210.71 11.71 31104 32.1030 187.10 210.64 11.23 31105 32.1040 213.65 210.59 12.01 31106 32.1050 208.87 210.53 11.85 31107 32.1060 196.99 210.49 11.49 31108 32.1070 217.98 210.46 12.12 31109 32.1080 203.36 210.09 11.67 31110 32.1090 200.66 210.08 11.60 31111 32.1100 216.79 210.07 12.09 31112 32.1110 228.46 210.07 12.38 31113 32.1120 220.17 210.09 12.12 31114 32.1130 201.98 210.11 11.62 31115 32.1140 220.34 210.14 12.17 31116 32.1150 217.25 210.18 12.04 31117 32.1160 202.98 210.24 11.71 31118 32.1170 197.15 210.30 11.53 31119 32.1180 202.88 210.38 11.74 31120 32.1190 231.56 210.47 12.49 31121 32.1200 214.90 210.57 12.06 31122 32.1210 212.31 210.69 11.93 31123 32.1220 205.92 210.82 11.74 31124 32.1230 213.45 210.98 12.01 31125 32.1240 220.31 211.14 12.15 31126 32.1250 216.75 211.32 12.10 31127 32.1260 216.75 211.53 12.08 31128 32.1270 205.67 211.75 11.73 31129 32.1280 218.67 212.00 12.11 31130 32.1290 206.95 212.27 11.81 31131 32.1300 221.31 212.56 12.22 31132 32.1310 203.32 212.88 11.68 31133 32.1320 211.35 213.23 11.91 31134 32.1330 213.85 213.61 11.99 31135 32.1340 215.98 214.01 12.09 31136 32.1350 221.48 214.46 12.20 31137 32.1360 214.60 214.93 12.01 31138 32.1370 216.22 215.44 12.05 31139 32.1380 205.42 215.99 11.71 31140 32.1390 195.39 216.58 11.45 31141 32.1400 207.43 217.20 11.78 31142 32.1410 225.33 217.86 12.30 31143 32.1420 233.04 218.55 12.52 31144 32.1430 210.35 219.27 11.90 31145 32.1440 226.79 220.02 12.37 31146 32.1450 224.62 220.79 12.30 31147 32.1460 222.74 221.57 12.24 31148 32.1470 217.35 222.34 12.10 31149 32.1480 223.96 223.10 12.26 31150 32.1490 207.48 223.83 11.80 31151 32.1500 205.85 224.51 11.78 31152 32.1510 214.51 225.12 12.03 31153 32.1520 232.37 225.65 12.47 31154 32.1530 229.96 226.07 12.43 31155 32.1540 230.78 226.37 12.44 31156 32.1550 211.63 226.55 11.92 31157 32.1560 226.96 226.59 12.33 31158 32.1570 216.90 226.49 12.10 31159 32.1580 220.20 226.27 12.25 31160 32.1590 230.51 225.93 12.43 31161 32.1600 229.39 225.48 12.37 31162 32.1610 209.64 224.94 11.86 31163 32.1620 217.65 224.34 12.02 31164 32.1630 234.49 223.68 12.62 31165 32.1640 224.62 222.99 12.32 31166 32.1650 223.55 222.29 12.19 31167 32.1660 232.89 221.58 12.51 31168 32.1670 220.33 220.89 12.17 31169 32.1680 230.94 220.21 12.51 31170 32.1690 216.68 219.55 12.09 31171 32.1700 217.31 218.94 12.09 31172 32.1710 210.00 218.35 11.88 31173 32.1720 208.72 217.80 11.88 31174 32.1730 220.27 217.29 12.20 31175 32.1740 228.30 216.82 12.41 31176 32.1750 224.12 216.39 12.28 31177 32.1760 211.73 216.00 11.98 31178 32.1770 225.18 215.65 12.29 31179 32.1780 205.65 215.32 11.74 31180 32.1790 198.16 215.04 11.54 31181 32.1800 202.56 214.79 11.69 31182 32.1810 224.18 214.57 12.28 31183 32.1820 216.30 214.37 12.05 31184 32.1830 225.54 214.21 12.34 31185 32.1840 216.82 214.07 12.13 31186 32.1850 235.32 213.96 12.57 31187 32.1860 205.94 213.88 11.76 31188 32.1870 211.18 213.82 11.92 31189 32.1880 213.45 213.78 11.99 31190 32.1890 210.90 213.76 11.90 31191 32.1900 215.09 213.77 12.03 31192 32.1910 209.16 214.13 11.86 31193 32.1920 199.77 214.18 11.57 31194 32.1930 200.49 214.25 11.61 31195 32.1940 213.85 214.34 11.99 31196 32.1950 205.20 214.45 11.76 31197 32.1960 214.81 214.58 12.01 31198 32.1970 217.58 214.73 12.14 31199 32.1980 222.01 214.90 12.21 31200 32.1990 227.47 215.09 12.35 31201 32.2000 239.22 215.30 12.65 31202 32.2010 235.04 215.54 12.53 31203 32.2020 224.27 215.79 12.28 31204 32.2030 202.18 216.07 11.65 31205 32.2040 225.02 216.37 12.30 31206 32.2050 210.71 216.69 11.89 31207 32.2060 232.82 217.04 12.49 31208 32.2070 227.13 217.41 12.33 31209 32.2080 234.33 217.81 12.50 31210 32.2090 205.89 218.24 11.70 31211 32.2100 222.37 218.69 12.22 31212 32.2110 226.86 219.18 12.33 31213 32.2120 214.56 219.71 12.00 31214 32.2130 219.02 220.26 12.13 31215 32.2140 210.04 221.05 11.87 31216 32.2150 211.63 221.68 11.91 31217 32.2160 225.89 222.35 12.32 31218 32.2170 226.74 223.07 12.39 31219 32.2180 233.78 223.84 12.53 31220 32.2190 221.79 224.65 12.21 31221 32.2200 210.92 225.52 11.92 31222 32.2210 225.40 226.44 12.30 31223 32.2220 235.31 227.43 12.56 31224 32.2230 254.58 228.47 13.08 31225 32.2240 222.22 229.58 12.20 31226 32.2250 220.78 230.77 12.17 31227 32.2260 234.02 232.03 12.56 31228 32.2270 232.66 233.37 12.52 31229 32.2280 224.98 234.79 12.27 31230 32.2290 215.13 236.30 12.00 31231 32.2300 242.68 237.91 12.75 31232 32.2310 233.26 239.60 12.51 31233 32.2320 244.46 241.39 12.83 31234 32.2330 238.59 243.29 12.62 31235 32.2340 253.50 245.27 13.09 31236 32.2350 252.37 247.34 13.02 31237 32.2360 258.30 249.50 13.19 31238 32.2370 253.26 251.74 13.04 31239 32.2380 261.75 254.04 13.26 31240 32.2390 275.29 256.40 13.62 31241 32.2400 270.91 258.79 13.49 31242 32.2410 262.58 261.17 13.31 31243 32.2420 265.14 263.53 13.35 31244 32.2430 276.22 265.82 13.61 31245 32.2440 295.97 267.99 14.09 31246 32.2450 284.21 270.04 13.82 31247 32.2460 286.60 271.89 13.85 31248 32.2470 271.30 273.52 13.52 31249 32.2480 285.37 274.89 13.84 31250 32.2490 267.15 275.98 13.42 31251 32.2500 289.53 276.77 13.94 31252 32.2510 301.69 277.26 14.23 31253 32.2520 282.19 277.45 13.78 31254 32.2530 282.96 277.37 13.82 31255 32.2540 303.06 277.04 14.26 31256 32.2550 281.95 276.51 13.78 31257 32.2560 279.63 275.81 13.74 31258 32.2570 271.87 274.98 13.58 31259 32.2580 267.46 274.08 13.46 31260 32.2590 270.42 273.15 13.46 31261 32.2600 267.40 272.23 13.41 31262 32.2610 294.77 271.34 14.09 31263 32.2620 299.32 270.52 14.16 31264 32.2630 292.80 269.81 14.03 31265 32.2640 280.02 269.22 13.73 31266 32.2650 256.36 268.77 13.13 31267 32.2660 281.53 268.47 13.78 31268 32.2670 268.70 268.34 13.46 31269 32.2680 279.70 268.38 13.72 31270 32.2690 263.97 268.61 13.32 31271 32.2700 259.54 269.02 13.20 31272 32.2710 271.63 269.64 13.59 31273 32.2720 281.27 270.45 13.78 31274 32.2730 279.34 271.48 13.67 31275 32.2740 263.22 272.72 13.27 31276 32.2750 265.68 274.18 13.37 31277 32.2760 281.14 276.07 13.72 31278 32.2770 298.16 277.99 14.18 31279 32.2780 271.64 280.16 13.51 31280 32.2790 274.80 282.58 13.62 31281 32.2800 271.64 285.27 13.51 31282 32.2810 285.05 288.22 13.82 31283 32.2820 290.42 291.48 14.01 31284 32.2830 307.43 295.02 14.37 31285 32.2840 314.12 298.85 14.52 31286 32.2850 308.33 303.01 14.42 31287 32.2860 305.84 307.49 14.35 31288 32.2870 302.91 312.28 14.24 31289 32.2880 305.75 317.42 14.34 31290 32.2890 331.71 322.91 14.95 31291 32.2900 326.58 328.69 14.86 31292 32.2910 351.71 334.79 15.42 31293 32.2920 362.90 341.19 15.62 31294 32.2930 362.77 347.83 15.62 31295 32.2940 371.96 354.70 15.83 31296 32.2950 368.72 361.70 15.77 31297 32.2960 389.92 368.80 16.19 31298 32.2970 387.62 375.89 16.17 31299 32.2980 377.39 382.86 15.96 31300 32.2990 407.97 389.55 16.52 31301 32.3000 397.77 395.88 16.36 31302 32.3010 414.38 401.67 16.63 31303 32.3020 416.24 406.76 16.69 31304 32.3030 418.67 411.04 16.79 31305 32.3040 444.47 414.34 17.32 31306 32.3050 454.51 416.55 17.48 31307 32.3060 446.02 417.60 17.36 31308 32.3070 426.46 417.46 16.95 31309 32.3080 431.51 416.12 17.03 31310 32.3090 429.12 413.61 17.01 31311 32.3100 408.24 410.00 16.60 31312 32.3110 420.66 405.42 16.81 31313 32.3120 377.58 400.02 15.92 31314 32.3130 372.44 393.90 15.75 31315 32.3140 366.35 387.22 15.68 31316 32.3150 350.02 380.17 15.35 31317 32.3160 356.21 372.81 15.50 31318 32.3170 365.26 365.33 15.70 31319 32.3180 342.92 357.85 15.20 31320 32.3190 332.37 350.40 14.92 31321 32.3200 322.79 343.10 14.73 31322 32.3210 334.46 336.01 15.01 31323 32.3220 336.88 329.14 15.06 31324 32.3230 342.86 322.52 15.18 31325 32.3240 314.48 316.23 14.53 31326 32.3250 324.14 310.23 14.79 31327 32.3260 301.69 304.53 14.29 31328 32.3270 281.97 299.16 13.77 31329 32.3280 273.76 294.06 13.54 31330 32.3290 288.05 289.26 13.93 31331 32.3300 306.08 284.74 14.33 31332 32.3310 273.87 280.49 13.56 31333 32.3320 277.14 276.50 13.67 31334 32.3330 264.82 272.76 13.37 31335 32.3340 279.63 269.24 13.70 31336 32.3350 258.62 265.93 13.13 31337 32.3360 246.21 262.83 12.86 31338 32.3370 260.29 259.90 13.21 31339 32.3380 257.22 257.16 13.14 31340 32.3390 275.31 254.59 13.63 31341 32.3400 274.62 252.17 13.61 31342 32.3410 254.54 249.89 13.06 31343 32.3420 238.85 247.76 12.69 31344 32.3430 247.36 245.74 12.86 31345 32.3440 254.49 243.83 13.09 31346 32.3450 258.91 242.04 13.19 31347 32.3460 254.75 240.35 13.06 31348 32.3470 254.15 238.75 13.11 31349 32.3480 259.59 237.25 13.21 31350 32.3490 235.66 235.82 12.58 31351 32.3500 239.56 234.48 12.68 31352 32.3510 248.96 233.20 12.97 31353 32.3520 236.15 231.99 12.63 31354 32.3530 227.95 230.85 12.42 31355 32.3540 235.86 229.76 12.58 31356 32.3550 233.53 228.74 12.53 31357 32.3560 254.85 227.76 13.11 31358 32.3570 239.48 226.83 12.69 31359 32.3580 232.24 225.91 12.50 31360 32.3590 223.15 225.08 12.25 31361 32.3600 226.62 224.28 12.36 31362 32.3610 232.94 223.52 12.50 31363 32.3620 240.36 222.79 12.73 31364 32.3630 233.52 222.10 12.53 31365 32.3640 235.17 221.45 12.55 31366 32.3650 223.21 220.82 12.22 31367 32.3660 214.10 220.22 11.94 31368 32.3670 202.40 219.65 11.62 31369 32.3680 223.52 219.10 12.25 31370 32.3690 219.93 218.58 12.15 31371 32.3700 233.39 218.08 12.50 31372 32.3710 238.88 217.60 12.65 31373 32.3720 223.55 217.14 12.28 31374 32.3730 220.79 216.71 12.18 31375 32.3740 219.98 216.29 12.15 31376 32.3750 199.14 215.89 11.61 31377 32.3760 221.65 215.51 12.23 31378 32.3770 218.35 215.15 12.11 31379 32.3780 200.37 214.80 11.63 31380 32.3790 223.43 214.48 12.28 31381 32.3800 249.96 214.16 12.97 31382 32.3810 226.36 213.85 12.36 31383 32.3820 206.57 213.56 11.77 31384 32.3830 214.70 213.28 12.01 31385 32.3840 230.03 213.01 12.43 31386 32.3850 208.16 212.75 11.81 31387 32.3860 219.11 212.51 12.11 31388 32.3870 207.05 212.27 11.78 31389 32.3880 200.67 212.05 11.61 31390 32.3890 234.66 211.84 12.58 31391 32.3900 222.08 211.63 12.20 31392 32.3910 228.82 211.44 12.43 31393 32.3920 228.63 211.26 12.38 31394 32.3930 227.01 211.08 12.30 31395 32.3940 225.24 210.91 12.32 31396 32.3950 224.71 210.76 12.32 31397 32.3960 203.70 210.61 11.72 31398 32.3970 221.84 210.47 12.23 31399 32.3980 219.06 209.75 12.14 31400 32.3990 226.74 209.63 12.31 31401 32.4000 214.36 209.52 12.04 31402 32.4010 228.38 209.41 12.40 31403 32.4020 218.03 209.32 12.10 31404 32.4030 228.08 209.23 12.39 31405 32.4040 206.12 209.15 11.78 31406 32.4050 210.30 209.08 11.85 31407 32.4060 219.40 209.02 12.18 31408 32.4070 222.69 208.96 12.22 31409 32.4080 206.99 208.91 11.78 31410 32.4090 191.71 208.88 11.33 31411 32.4100 212.53 208.85 11.92 31412 32.4110 224.04 208.82 12.23 31413 32.4120 201.39 208.81 11.60 31414 32.4130 211.42 208.81 11.90 31415 32.4140 199.01 208.82 11.55 31416 32.4150 198.16 208.83 11.54 31417 32.4160 212.07 208.86 11.93 31418 32.4170 211.52 208.90 11.90 31419 32.4180 209.75 208.95 11.90 31420 32.4190 220.21 209.01 12.17 31421 32.4200 215.89 209.09 12.07 31422 32.4210 202.39 209.18 11.66 31423 32.4220 197.29 209.28 11.56 31424 32.4230 211.84 209.39 11.94 31425 32.4240 218.28 209.52 12.07 31426 32.4250 209.13 209.67 11.83 31427 32.4260 227.07 209.84 12.30 31428 32.4270 210.45 210.02 11.89 31429 32.4280 228.12 210.23 12.41 31430 32.4290 199.72 210.45 11.57 31431 32.4300 205.36 210.70 11.72 31432 32.4310 216.23 210.96 12.04 31433 32.4320 204.81 212.03 11.78 31434 32.4330 212.93 212.35 12.00 31435 32.4340 196.68 212.69 11.49 31436 32.4350 203.03 213.06 11.69 31437 32.4360 195.14 213.46 11.47 31438 32.4370 211.67 213.87 11.92 31439 32.4380 211.29 214.31 11.91 31440 32.4390 213.99 214.77 11.99 31441 32.4400 221.35 215.25 12.20 31442 32.4410 225.29 215.74 12.35 31443 32.4420 220.29 216.24 12.20 31444 32.4430 242.79 216.73 12.77 31445 32.4440 219.31 217.21 12.18 31446 32.4450 232.66 217.67 12.55 31447 32.4460 236.56 218.10 12.57 31448 32.4470 216.59 218.49 12.04 31449 32.4480 225.71 218.82 12.34 31450 32.4490 225.82 219.09 12.29 31451 32.4500 232.82 219.29 12.47 31452 32.4510 215.45 219.41 12.04 31453 32.4520 224.09 219.46 12.29 31454 32.4530 235.75 219.43 12.63 31455 32.4540 219.21 219.33 12.12 31456 32.4550 201.76 219.18 11.61 31457 32.4560 231.65 218.97 12.48 31458 32.4570 237.08 218.73 12.64 31459 32.4580 217.70 218.46 12.09 31460 32.4590 221.09 218.17 12.15 31461 32.4600 215.93 217.88 12.05 31462 32.4610 201.99 217.60 11.65 31463 32.4620 204.81 217.37 11.75 31464 32.4630 211.73 217.12 11.94 31465 32.4640 220.06 216.90 12.15 31466 32.4650 213.05 216.72 11.97 31467 32.4660 216.85 216.56 12.04 31468 32.4670 192.28 216.45 11.33 31469 32.4680 222.72 216.37 12.22 31470 32.4690 209.64 216.33 11.88 31471 32.4700 220.59 216.33 12.20 31472 32.4710 231.60 216.37 12.47 31473 32.4720 222.32 216.45 12.19 31474 32.4730 222.97 216.56 12.20 31475 32.4740 225.50 216.71 12.31 31476 32.4750 206.47 216.90 11.73 31477 32.4760 218.96 217.13 12.09 31478 32.4770 213.86 217.38 11.97 31479 32.4780 208.27 217.67 11.85 31480 32.4790 210.28 217.98 11.89 31481 32.4800 228.08 218.31 12.41 31482 32.4810 229.48 218.66 12.47 31483 32.4820 225.53 219.02 12.36 31484 32.4830 209.30 219.39 11.83 31485 32.4840 234.73 219.75 12.53 31486 32.4850 227.86 220.11 12.42 31487 32.4860 230.13 220.45 12.42 31488 32.4870 221.95 220.76 12.24 31489 32.4880 226.16 221.05 12.32 31490 32.4890 217.22 221.30 12.09 31491 32.4900 223.81 221.52 12.23 31492 32.4910 202.62 221.70 11.65 31493 32.4920 226.10 221.84 12.29 31494 32.4930 211.21 221.95 11.88 31495 32.4940 228.80 222.02 12.39 31496 32.4950 209.93 222.06 11.89 31497 32.4960 206.36 222.07 11.77 31498 32.4970 227.13 222.06 12.35 31499 32.4980 214.44 222.03 11.93 31500 32.4990 210.86 221.99 11.95 31501 32.5000 230.46 221.92 12.48 31502 32.5010 230.79 221.85 12.46 31503 32.5020 229.81 221.75 12.38 31504 32.5030 218.72 221.64 12.17 31505 32.5040 217.91 221.51 12.13 31506 32.5050 215.38 221.36 12.01 31507 32.5060 212.69 221.20 11.91 31508 32.5070 226.47 221.01 12.34 31509 32.5080 244.19 220.80 12.83 31510 32.5090 228.97 220.57 12.42 31511 32.5100 201.57 220.33 11.61 31512 32.5110 220.37 220.07 12.09 31513 32.5120 220.51 219.80 12.16 31514 32.5130 234.95 219.53 12.58 31515 32.5140 227.07 219.35 12.37 31516 32.5150 211.80 219.08 11.93 31517 32.5160 205.14 218.80 11.69 31518 32.5170 210.80 218.54 11.92 31519 32.5180 224.40 218.29 12.35 31520 32.5190 239.29 218.04 12.70 31521 32.5200 224.26 217.82 12.28 31522 32.5210 199.83 217.62 11.59 31523 32.5220 207.06 217.43 11.75 31524 32.5230 227.39 217.26 12.35 31525 32.5240 215.52 217.12 12.05 31526 32.5250 210.56 217.00 11.90 31527 32.5260 215.80 216.90 12.07 31528 32.5270 212.69 216.83 11.96 31529 32.5280 224.71 216.77 12.31 31530 32.5290 217.93 216.74 12.08 31531 32.5300 209.00 216.74 11.86 31532 32.5310 205.71 216.75 11.78 31533 32.5320 222.00 216.79 12.20 31534 32.5330 220.33 216.85 12.18 31535 32.5340 216.61 216.93 12.06 31536 32.5350 212.14 217.04 11.94 31537 32.5360 217.35 217.16 12.07 31538 32.5370 237.09 217.31 12.64 31539 32.5380 215.29 217.48 12.03 31540 32.5390 210.21 217.67 11.89 31541 32.5400 221.56 217.89 12.23 31542 32.5410 211.66 218.12 11.95 31543 32.5420 231.28 218.38 12.45 31544 32.5430 230.60 218.66 12.49 31545 32.5440 227.98 218.97 12.43 31546 32.5450 215.63 219.30 12.06 31547 32.5460 223.99 219.65 12.27 31548 32.5470 236.14 220.04 12.54 31549 32.5480 222.92 220.44 12.20 31550 32.5490 223.27 220.88 12.29 31551 32.5500 214.49 221.34 12.01 31552 32.5510 225.32 221.83 12.28 31553 32.5520 226.78 222.35 12.36 31554 32.5530 225.55 222.91 12.33 31555 32.5540 235.10 223.50 12.53 31556 32.5550 238.25 224.12 12.63 31557 32.5560 220.81 224.79 12.19 31558 32.5570 213.07 225.49 11.99 31559 32.5580 229.52 226.23 12.36 31560 32.5590 250.30 227.02 12.99 31561 32.5600 240.19 227.86 12.71 31562 32.5610 221.85 228.74 12.25 31563 32.5620 223.78 229.68 12.27 31564 32.5630 240.49 230.68 12.71 31565 32.5640 231.71 231.73 12.50 31566 32.5650 238.09 232.85 12.65 31567 32.5660 233.49 234.04 12.53 31568 32.5670 229.03 235.27 12.40 31569 32.5680 247.59 236.62 12.90 31570 32.5690 225.12 238.04 12.32 31571 32.5700 244.44 239.56 12.82 31572 32.5710 248.52 241.18 12.86 31573 32.5720 254.97 242.90 13.09 31574 32.5730 246.14 244.74 12.88 31575 32.5740 234.21 246.70 12.53 31576 32.5750 248.16 248.78 12.87 31577 32.5760 242.02 251.02 12.74 31578 32.5770 261.57 253.40 13.33 31579 32.5780 260.16 255.94 13.29 31580 32.5790 275.22 258.67 13.65 31581 32.5800 244.93 261.59 12.83 31582 32.5810 252.17 264.70 13.01 31583 32.5820 252.53 268.04 13.03 31584 32.5830 269.77 271.61 13.51 31585 32.5840 270.86 275.42 13.53 31586 32.5850 280.34 279.50 13.81 31587 32.5860 296.06 283.86 14.15 31588 32.5870 278.93 288.51 13.69 31589 32.5880 294.46 293.47 14.04 31590 32.5890 294.06 298.75 14.06 31591 32.5900 311.66 304.32 14.49 31592 32.5910 317.22 310.24 14.59 31593 32.5920 312.50 316.47 14.51 31594 32.5930 310.02 322.98 14.47 31595 32.5940 328.59 329.82 14.86 31596 32.5950 331.68 336.86 14.92 31597 32.5960 354.08 344.08 15.43 31598 32.5970 351.42 351.38 15.37 31599 32.5980 359.39 358.71 15.59 31600 32.5990 373.87 365.91 15.90 31601 32.6000 393.30 372.89 16.30 31602 32.6010 390.79 379.49 16.21 31603 32.6020 420.35 385.50 16.80 31604 32.6030 390.00 390.76 16.23 31605 32.6040 404.69 395.14 16.49 31606 32.6050 409.30 398.48 16.60 31607 32.6060 428.92 400.67 16.99 31608 32.6070 394.84 401.63 16.31 31609 32.6080 403.75 401.33 16.45 31610 32.6090 398.92 399.81 16.40 31611 32.6100 392.19 397.12 16.23 31612 32.6110 399.04 393.38 16.35 31613 32.6120 379.40 388.75 15.95 31614 32.6130 364.93 383.35 15.72 31615 32.6140 361.54 377.38 15.61 31616 32.6150 368.93 371.00 15.78 31617 32.6160 374.97 364.36 15.86 31618 32.6170 358.81 357.61 15.55 31619 32.6180 349.33 350.89 15.42 31620 32.6190 348.57 344.24 15.37 31621 32.6200 333.00 337.78 15.00 31622 32.6210 281.69 331.58 13.80 31623 32.6220 299.51 325.62 14.19 31624 32.6230 324.41 319.99 14.82 31625 32.6240 322.66 314.70 14.73 31626 32.6250 298.32 309.74 14.15 31627 32.6260 309.85 305.11 14.44 31628 32.6270 326.95 300.83 14.84 31629 32.6280 302.04 296.85 14.24 31630 32.6290 307.63 293.19 14.45 31631 32.6300 312.92 289.85 14.56 31632 32.6310 300.29 286.80 14.27 31633 32.6320 282.43 284.02 13.80 31634 32.6330 275.51 281.52 13.62 31635 32.6340 293.71 279.27 14.08 31636 32.6350 291.32 277.27 14.04 31637 32.6360 294.07 275.51 14.06 31638 32.6370 284.23 273.97 13.76 31639 32.6380 280.68 272.65 13.71 31640 32.6390 278.49 271.54 13.72 31641 32.6400 272.20 270.64 13.55 31642 32.6410 281.96 270.75 13.78 31643 32.6420 281.38 270.25 13.78 31644 32.6430 277.75 269.93 13.67 31645 32.6440 260.69 269.81 13.26 31646 32.6450 261.95 269.88 13.24 31647 32.6460 280.09 270.13 13.67 31648 32.6470 275.23 270.57 13.59 31649 32.6480 287.81 271.19 13.91 31650 32.6490 280.50 272.00 13.76 31651 32.6500 281.11 273.01 13.77 31652 32.6510 292.83 274.21 14.03 31653 32.6520 274.95 275.60 13.58 31654 32.6530 273.41 277.18 13.57 31655 32.6540 280.20 278.97 13.74 31656 32.6550 298.73 280.95 14.14 31657 32.6560 285.51 283.14 13.84 31658 32.6570 288.59 285.54 13.94 31659 32.6580 280.51 288.11 13.73 31660 32.6590 300.00 290.88 14.16 31661 32.6600 303.96 293.85 14.33 31662 32.6610 314.70 296.95 14.57 31663 32.6620 321.50 300.20 14.71 31664 32.6630 323.49 303.57 14.75 31665 32.6640 314.85 307.01 14.53 31666 32.6650 310.03 310.49 14.49 31667 32.6660 298.24 313.96 14.22 31668 32.6670 313.29 317.34 14.53 31669 32.6680 329.07 320.60 14.84 31670 32.6690 339.07 323.64 15.11 31671 32.6700 346.49 326.38 15.30 31672 32.6710 330.13 328.77 14.93 31673 32.6720 351.19 330.73 15.35 31674 32.6730 355.42 332.18 15.50 31675 32.6740 370.81 333.08 15.84 31676 32.6750 361.15 333.39 15.62 31677 32.6760 357.21 333.11 15.51 31678 32.6770 337.47 332.21 15.10 31679 32.6780 333.77 330.74 15.01 31680 32.6790 344.63 328.73 15.20 31681 32.6800 329.90 326.23 14.82 31682 32.6810 339.15 323.31 15.06 31683 32.6820 346.28 320.06 15.28 31684 32.6830 316.54 316.52 14.58 31685 32.6840 315.39 312.78 14.59 31686 32.6850 320.53 308.91 14.67 31687 32.6860 331.66 304.97 14.94 31688 32.6870 320.73 301.02 14.72 31689 32.6880 297.47 297.12 14.14 31690 32.6890 296.28 293.18 14.08 31691 32.6900 280.35 289.44 13.73 31692 32.6910 292.80 285.82 14.01 31693 32.6920 280.72 282.36 13.77 31694 32.6930 268.98 279.05 13.49 31695 32.6940 283.03 275.91 13.78 31696 32.6950 288.62 272.94 13.98 31697 32.6960 265.16 270.13 13.39 31698 32.6970 270.55 267.49 13.50 31699 32.6980 261.10 265.00 13.26 31700 32.6990 260.35 262.67 13.22 31701 32.7000 249.83 260.50 12.96 31702 32.7010 267.63 258.48 13.44 31703 32.7020 263.14 256.59 13.27 31704 32.7030 256.10 254.84 13.10 31705 32.7040 257.05 253.21 13.16 31706 32.7050 252.57 251.70 13.07 31707 32.7060 252.29 250.30 13.04 31708 32.7070 260.04 249.02 13.26 31709 32.7080 255.81 247.83 13.13 31710 32.7090 249.07 246.74 12.94 31711 32.7100 248.70 245.75 12.89 31712 32.7110 249.49 244.85 12.95 31713 32.7120 255.28 244.02 13.09 31714 32.7130 251.91 243.28 12.99 31715 32.7140 259.40 242.68 13.20 31716 32.7150 249.46 242.09 12.97 31717 32.7160 239.04 241.57 12.63 31718 32.7170 258.74 241.12 13.17 31719 32.7180 246.97 240.73 12.86 31720 32.7190 259.31 240.41 13.21 31721 32.7200 244.29 240.15 12.82 31722 32.7210 241.87 239.95 12.77 31723 32.7220 235.12 239.81 12.58 31724 32.7230 235.44 239.73 12.60 31725 32.7240 239.23 239.71 12.70 31726 32.7250 230.69 239.74 12.42 31727 32.7260 221.05 239.84 12.19 31728 32.7270 245.12 239.99 12.86 31729 32.7280 265.76 240.20 13.32 31730 32.7290 247.87 240.48 12.85 31731 32.7300 250.42 240.81 12.94 31732 32.7310 254.47 241.20 13.11 31733 32.7320 243.29 241.66 12.81 31734 32.7330 229.96 242.18 12.48 31735 32.7340 256.87 242.77 13.14 31736 32.7350 264.47 243.43 13.31 31737 32.7360 252.26 244.15 12.99 31738 32.7370 247.77 244.95 12.89 31739 32.7380 232.55 245.83 12.50 31740 32.7390 238.36 246.79 12.65 31741 32.7400 229.59 247.84 12.39 31742 32.7410 254.08 248.96 13.08 31743 32.7420 248.45 250.19 12.94 31744 32.7430 240.42 251.51 12.70 31745 32.7440 248.42 252.92 12.95 31746 32.7450 247.35 254.44 12.89 31747 32.7460 268.18 256.07 13.39 31748 32.7470 258.37 257.82 13.23 31749 32.7480 263.24 259.69 13.32 31750 32.7490 263.91 261.68 13.29 31751 32.7500 251.67 263.80 13.01 31752 32.7510 274.96 266.05 13.58 31753 32.7520 239.76 268.44 12.70 31754 32.7530 256.67 270.96 13.12 31755 32.7540 288.49 273.65 13.90 31756 32.7550 259.29 276.09 13.21 31757 32.7560 283.24 279.03 13.79 31758 32.7570 276.19 282.12 13.65 31759 32.7580 275.72 285.33 13.60 31760 32.7590 295.47 288.64 14.10 31761 32.7600 302.12 292.07 14.23 31762 32.7610 293.23 295.58 14.07 31763 32.7620 280.05 299.12 13.69 31764 32.7630 310.80 302.70 14.45 31765 32.7640 330.92 306.26 14.94 31766 32.7650 298.87 309.75 14.19 31767 32.7660 292.27 313.14 14.05 31768 32.7670 318.56 316.36 14.66 31769 32.7680 352.57 319.37 15.41 31770 32.7690 334.90 322.10 14.97 31771 32.7700 342.22 324.49 15.13 31772 32.7710 304.24 326.49 14.34 31773 32.7720 348.40 328.06 15.36 31774 32.7730 357.72 329.17 15.48 31775 32.7740 353.71 329.78 15.44 31776 32.7750 358.38 329.89 15.55 31777 32.7760 341.65 329.50 15.21 31778 32.7770 339.95 328.63 15.15 31779 32.7780 328.00 327.30 14.85 31780 32.7790 309.01 325.57 14.42 31781 32.7800 342.88 323.48 15.19 31782 32.7810 339.78 321.08 15.15 31783 32.7820 318.74 318.42 14.67 31784 32.7830 312.71 315.58 14.49 31785 32.7840 340.69 312.62 15.14 31786 32.7850 322.98 309.58 14.77 31787 32.7860 308.90 306.51 14.42 31788 32.7870 308.11 303.43 14.39 31789 32.7880 301.48 300.41 14.22 31790 32.7890 298.10 297.44 14.12 31791 32.7900 279.51 294.58 13.74 31792 32.7910 276.99 291.82 13.68 31793 32.7920 283.87 289.18 13.79 31794 32.7930 293.16 286.67 14.06 31795 32.7940 286.00 284.27 13.89 31796 32.7950 282.20 281.99 13.77 31797 32.7960 268.10 279.82 13.40 31798 32.7970 278.18 277.75 13.63 31799 32.7980 264.70 275.78 13.35 31800 32.7990 278.84 273.90 13.73 31801 32.8000 275.37 272.08 13.60 31802 32.8010 276.41 270.34 13.63 31803 32.8020 287.87 268.66 13.90 31804 32.8030 266.12 267.02 13.38 31805 32.8040 268.77 265.44 13.43 31806 32.8050 267.79 263.92 13.39 31807 32.8060 265.28 262.45 13.37 31808 32.8070 280.72 261.04 13.77 31809 32.8080 262.26 259.69 13.26 31810 32.8090 271.57 258.40 13.52 31811 32.8100 277.14 257.18 13.69 31812 32.8110 252.96 256.03 13.02 31813 32.8120 246.25 254.96 12.85 31814 32.8130 262.32 253.96 13.26 31815 32.8140 261.38 253.04 13.21 31816 32.8150 247.60 252.19 12.89 31817 32.8160 257.92 251.41 13.17 31818 32.8170 262.35 250.72 13.25 31819 32.8180 240.08 250.09 12.65 31820 32.8190 252.36 249.54 13.07 31821 32.8200 257.99 249.06 13.16 31822 32.8210 242.36 248.65 12.79 31823 32.8220 227.63 248.31 12.36 31824 32.8230 239.22 248.03 12.64 31825 32.8240 236.21 247.81 12.54 31826 32.8250 236.34 247.66 12.63 31827 32.8260 263.74 247.57 13.32 31828 32.8270 242.96 247.54 12.81 31829 32.8280 236.58 247.57 12.61 31830 32.8290 245.95 247.65 12.85 31831 32.8300 253.82 247.79 13.07 31832 32.8310 262.16 247.99 13.29 31833 32.8320 239.83 248.25 12.74 31834 32.8330 255.56 248.56 13.14 31835 32.8340 234.11 248.93 12.60 31836 32.8350 253.49 249.35 13.04 31837 32.8360 269.31 249.83 13.42 31838 32.8370 262.21 250.36 13.27 31839 32.8380 254.03 250.96 13.03 31840 32.8390 250.26 251.61 12.97 31841 32.8400 259.33 252.32 13.21 31842 32.8410 242.07 253.10 12.76 31843 32.8420 239.88 253.93 12.69 31844 32.8430 252.86 254.83 13.03 31845 32.8440 259.45 255.80 13.23 31846 32.8450 260.45 256.84 13.20 31847 32.8460 284.31 257.95 13.80 31848 32.8470 248.51 259.13 12.91 31849 32.8480 268.81 260.38 13.41 31850 32.8490 270.08 261.72 13.46 31851 32.8500 272.45 263.15 13.53 31852 32.8510 260.01 264.66 13.25 31853 32.8520 256.19 266.27 13.20 31854 32.8530 263.34 267.97 13.38 31855 32.8540 298.49 269.77 14.23 31856 32.8550 294.15 271.69 14.08 31857 32.8560 283.09 273.72 13.80 31858 32.8570 273.65 275.84 13.53 31859 32.8580 260.57 278.12 13.22 31860 32.8590 273.94 280.54 13.55 31861 32.8600 271.73 283.08 13.49 31862 32.8610 284.53 285.79 13.83 31863 32.8620 296.93 288.66 14.16 31864 32.8630 309.12 291.69 14.46 31865 32.8640 311.41 294.92 14.47 31866 32.8650 315.53 298.35 14.58 31867 32.8660 307.33 301.97 14.38 31868 32.8670 335.00 305.82 14.99 31869 32.8680 302.26 309.90 14.27 31870 32.8690 290.23 314.23 13.96 31871 32.8700 323.60 318.83 14.78 31872 32.8710 341.89 323.73 15.16 31873 32.8720 322.96 328.93 14.80 31874 32.8730 356.40 334.45 15.50 31875 32.8740 340.61 340.33 15.12 31876 32.8750 348.86 346.55 15.32 31877 32.8760 346.63 353.18 15.33 31878 32.8770 360.79 360.23 15.61 31879 32.8780 382.65 367.69 16.03 31880 32.8790 379.29 375.67 15.97 31881 32.8800 381.00 384.11 16.07 31882 32.8810 395.14 393.07 16.31 31883 32.8820 406.18 402.52 16.54 31884 32.8830 440.33 412.56 17.22 31885 32.8840 455.01 423.13 17.51 31886 32.8850 465.70 434.31 17.73 31887 32.8860 484.67 446.11 18.09 31888 32.8870 491.74 458.46 18.18 31889 32.8880 475.86 471.31 17.90 31890 32.8890 476.28 484.74 17.90 31891 32.8900 491.10 498.64 18.18 31892 32.8910 529.12 512.91 18.84 31893 32.8920 542.01 527.53 19.07 31894 32.8930 591.04 542.41 19.91 31895 32.8940 591.77 557.24 19.99 31896 32.8950 628.77 572.00 20.59 31897 32.8960 625.08 586.43 20.51 31898 32.8970 646.95 600.24 20.84 31899 32.8980 674.06 613.30 21.29 31900 32.8990 653.33 625.27 20.97 31901 32.9000 692.78 635.90 21.59 31902 32.9010 687.02 644.90 21.50 31903 32.9020 738.22 652.07 22.29 31904 32.9030 717.95 657.19 22.00 31905 32.9040 700.03 660.14 21.73 31906 32.9050 719.10 660.84 21.98 31907 32.9060 718.63 659.26 21.98 31908 32.9070 722.41 655.45 22.06 31909 32.9080 704.23 649.55 21.77 31910 32.9090 678.32 641.77 21.42 31911 32.9100 659.35 632.27 21.12 31912 32.9110 663.42 621.33 21.15 31913 32.9120 624.40 609.26 20.54 31914 32.9130 611.20 596.25 20.28 31915 32.9140 595.11 582.56 20.04 31916 32.9150 556.89 568.55 19.41 31917 32.9160 560.67 554.32 19.45 31918 32.9170 534.48 540.09 19.02 31919 32.9180 538.32 526.08 19.05 31920 32.9190 525.55 512.30 18.82 31921 32.9200 509.53 498.92 18.55 31922 32.9210 506.21 486.01 18.48 31923 32.9220 479.57 473.63 18.01 31924 32.9230 473.66 461.80 17.87 31925 32.9240 485.42 450.59 18.06 31926 32.9250 463.01 439.93 17.63 31927 32.9260 409.80 430.99 16.62 31928 32.9270 442.21 421.51 17.31 31929 32.9280 447.36 412.52 17.32 31930 32.9290 427.62 404.08 16.96 31931 32.9300 387.42 396.14 16.17 31932 32.9310 393.25 388.68 16.28 31933 32.9320 401.96 381.63 16.44 31934 32.9330 397.93 375.00 16.29 31935 32.9340 380.99 368.71 16.03 31936 32.9350 383.39 362.74 16.04 31937 32.9360 376.59 357.09 15.95 31938 32.9370 355.89 351.75 15.45 31939 32.9380 354.58 346.64 15.44 31940 32.9390 366.19 341.78 15.70 31941 32.9400 360.27 337.16 15.57 31942 32.9410 338.57 332.72 15.09 31943 32.9420 359.98 328.50 15.53 31944 32.9430 356.89 324.49 15.48 31945 32.9440 350.31 320.66 15.31 31946 32.9450 338.42 317.02 15.06 31947 32.9460 325.10 313.56 14.80 31948 32.9470 323.28 310.28 14.74 31949 32.9480 327.72 307.16 14.82 31950 32.9490 324.80 304.23 14.81 31951 32.9500 323.13 301.47 14.77 31952 32.9510 307.60 298.87 14.39 31953 32.9520 318.55 296.44 14.66 31954 32.9530 323.02 294.17 14.74 31955 32.9540 316.95 292.05 14.58 31956 32.9550 299.55 290.08 14.20 31957 32.9560 303.54 288.27 14.29 31958 32.9570 289.02 286.59 13.95 31959 32.9580 310.00 285.07 14.43 31960 32.9590 319.22 283.95 14.67 31961 32.9600 291.35 282.69 14.00 31962 32.9610 304.26 281.57 14.32 31963 32.9620 324.73 280.58 14.77 31964 32.9630 320.80 279.71 14.75 31965 32.9640 311.32 278.97 14.46 31966 32.9650 309.07 278.36 14.46 31967 32.9660 289.77 277.87 13.96 31968 32.9670 284.80 277.50 13.83 31969 32.9680 304.73 277.25 14.29 31970 32.9690 284.31 277.13 13.81 31971 32.9700 291.17 277.12 13.99 31972 32.9710 303.78 277.24 14.31 31973 32.9720 306.68 277.48 14.39 31974 32.9730 312.83 277.85 14.50 31975 32.9740 290.88 278.34 13.98 31976 32.9750 314.55 278.96 14.55 31977 32.9760 309.45 279.70 14.42 31978 32.9770 323.31 280.57 14.77 31979 32.9780 311.86 281.55 14.50 31980 32.9790 300.76 282.67 14.23 31981 32.9800 280.54 283.89 13.74 31982 32.9810 285.69 285.23 13.86 31983 32.9820 310.68 286.68 14.52 31984 32.9830 311.67 288.23 14.49 31985 32.9840 295.71 289.86 14.13 31986 32.9850 299.32 291.55 14.16 31987 32.9860 297.15 293.30 14.10 31988 32.9870 315.72 295.08 14.58 31989 32.9880 306.75 296.86 14.39 31990 32.9890 331.12 298.60 14.93 31991 32.9900 347.56 300.30 15.35 31992 32.9910 324.69 301.90 14.85 31993 32.9920 324.32 303.37 14.83 31994 32.9930 320.40 304.69 14.70 31995 32.9940 307.06 305.79 14.41 31996 32.9950 330.65 306.68 14.90 31997 32.9960 326.17 307.34 14.79 31998 32.9970 355.59 307.74 15.48 31999 32.9980 331.42 307.87 14.93 32000 32.9990 330.29 307.75 14.92 32001 33.0000 323.94 307.38 14.74 32002 33.0010 331.25 306.78 14.95 32003 33.0020 328.87 305.99 14.87 32004 33.0030 328.32 305.02 14.83 32005 33.0040 328.88 303.92 14.88 32006 33.0050 315.91 302.72 14.56 32007 33.0060 327.16 301.45 14.74 32008 33.0070 328.07 300.17 14.87 32009 33.0080 316.92 298.88 14.63 32010 33.0090 329.61 297.63 14.90 32011 33.0100 320.01 296.44 14.64 32012 33.0110 326.40 295.32 14.83 32013 33.0120 316.84 294.30 14.62 32014 33.0130 305.53 293.40 14.36 32015 33.0140 319.42 292.63 14.62 32016 33.0150 310.07 291.99 14.41 32017 33.0160 320.10 291.49 14.70 32018 33.0170 301.55 291.15 14.25 32019 33.0180 317.70 290.96 14.60 32020 33.0190 318.33 290.94 14.59 32021 33.0200 324.80 291.07 14.81 32022 33.0210 314.37 291.38 14.53 32023 33.0220 314.96 291.86 14.52 32024 33.0230 333.04 292.51 14.98 32025 33.0240 321.30 293.01 14.72 32026 33.0250 330.26 294.03 14.86 32027 33.0260 302.89 295.23 14.26 32028 33.0270 316.03 296.63 14.58 32029 33.0280 311.64 298.23 14.50 32030 33.0290 322.78 300.02 14.73 32031 33.0300 309.36 302.04 14.42 32032 33.0310 326.48 304.27 14.86 32033 33.0320 317.18 306.75 14.63 32034 33.0330 319.75 309.47 14.68 32035 33.0340 307.70 312.44 14.36 32036 33.0350 317.36 315.67 14.59 32037 33.0360 342.82 319.20 15.18 32038 33.0370 362.61 323.03 15.62 32039 33.0380 347.72 327.16 15.29 32040 33.0390 341.16 331.67 15.15 32041 33.0400 361.17 336.51 15.58 32042 33.0410 333.98 341.73 15.00 32043 33.0420 341.55 347.37 15.12 32044 33.0430 356.76 353.44 15.55 32045 33.0440 347.17 359.95 15.33 32046 33.0450 375.06 366.98 15.91 32047 33.0460 382.31 374.56 16.07 32048 33.0470 350.32 382.64 15.37 32049 33.0480 381.72 391.34 16.06 32050 33.0490 387.08 400.66 16.20 32051 33.0500 404.26 410.60 16.50 32052 33.0510 404.63 421.26 16.52 32053 33.0520 409.59 432.62 16.55 32054 33.0530 425.59 444.71 16.89 32055 33.0540 458.30 457.54 17.57 32056 33.0550 472.24 471.11 17.84 32057 33.0560 484.37 485.36 18.10 32058 33.0570 461.44 500.33 17.60 32059 33.0580 487.34 515.94 18.07 32060 33.0590 501.78 532.02 18.34 32061 33.0600 523.77 548.63 18.74 32062 33.0610 551.94 565.43 19.28 32063 33.0620 591.46 582.20 19.96 32064 33.0630 603.91 598.82 20.18 32065 33.0640 619.41 614.91 20.42 32066 33.0650 609.05 630.11 20.22 32067 33.0660 623.09 644.18 20.43 32068 33.0670 677.53 656.70 21.35 32069 33.0680 701.54 667.13 21.77 32070 33.0690 687.65 675.30 21.52 32071 33.0700 714.78 680.88 21.91 32072 33.0710 703.37 683.68 21.81 32073 33.0720 683.46 683.59 21.49 32074 33.0730 666.42 680.60 21.18 32075 33.0740 649.08 674.82 20.87 32076 33.0750 667.93 666.48 21.17 32077 33.0760 655.74 655.81 21.03 32078 33.0770 608.72 643.17 20.28 32079 33.0780 592.30 628.97 19.98 32080 33.0790 564.53 613.51 19.47 32081 33.0800 547.89 597.12 19.18 32082 33.0810 541.78 580.33 19.08 32083 33.0820 534.85 563.26 19.00 32084 33.0830 507.17 546.21 18.49 32085 33.0840 487.69 529.46 18.11 32086 33.0850 460.57 513.07 17.57 32087 33.0860 469.96 497.20 17.77 32088 33.0870 459.10 481.96 17.62 32089 33.0880 466.75 467.47 17.71 32090 33.0890 435.83 453.65 17.12 32091 33.0900 434.29 440.60 17.10 32092 33.0910 416.72 428.26 16.74 32093 33.0920 395.43 416.64 16.32 32094 33.0930 386.01 405.77 16.13 32095 33.0940 376.95 395.52 15.96 32096 33.0950 363.68 385.95 15.65 32097 33.0960 361.56 377.05 15.58 32098 33.0970 350.42 368.70 15.29 32099 33.0980 327.65 360.91 14.80 32100 33.0990 332.85 353.68 14.95 32101 33.1000 322.03 346.91 14.70 32102 33.1010 342.67 340.58 15.18 32103 33.1020 345.42 334.73 15.21 32104 33.1030 347.39 329.26 15.30 32105 33.1040 355.32 324.17 15.41 32106 33.1050 318.93 319.45 14.65 32107 33.1060 336.03 315.04 15.05 32108 33.1070 300.08 310.94 14.25 32109 33.1080 319.86 307.12 14.68 32110 33.1090 313.13 303.57 14.47 32111 33.1100 307.81 300.26 14.39 32112 33.1110 301.54 297.18 14.29 32113 33.1120 296.51 294.29 14.16 32114 33.1130 310.34 291.58 14.47 32115 33.1140 293.71 289.05 14.09 32116 33.1150 315.62 286.65 14.58 32117 33.1160 302.24 284.38 14.26 32118 33.1170 306.77 282.22 14.33 32119 33.1180 284.55 280.15 13.87 32120 33.1190 280.77 278.15 13.75 32121 33.1200 284.44 276.22 13.86 32122 33.1210 283.51 274.33 13.81 32123 33.1220 279.96 272.47 13.71 32124 33.1230 273.80 270.65 13.57 32125 33.1240 257.46 268.85 13.13 32126 33.1250 252.16 267.08 13.01 32127 33.1260 258.14 265.32 13.21 32128 33.1270 274.19 263.60 13.57 32129 33.1280 291.01 261.89 13.99 32130 33.1290 276.95 260.21 13.66 32131 33.1300 268.32 258.58 13.45 32132 33.1310 253.23 256.98 13.07 32133 33.1320 255.49 255.43 13.07 32134 33.1330 264.28 253.92 13.32 32135 33.1340 236.39 252.46 12.66 32136 33.1350 289.77 251.05 13.93 32137 33.1360 286.67 249.70 13.91 32138 33.1370 249.22 248.40 12.95 32139 33.1380 259.01 246.96 13.20 32140 33.1390 259.09 245.78 13.22 32141 33.1400 258.05 244.65 13.17 32142 33.1410 238.25 243.57 12.63 32143 33.1420 241.05 242.54 12.67 32144 33.1430 261.50 241.56 13.26 32145 33.1440 232.95 240.63 12.57 32146 33.1450 233.25 239.76 12.53 32147 33.1460 250.96 238.92 12.99 32148 33.1470 243.54 238.13 12.81 32149 33.1480 231.10 237.38 12.46 32150 33.1490 239.82 236.67 12.68 32151 33.1500 237.91 236.00 12.64 32152 33.1510 251.00 235.37 12.98 32153 33.1520 251.54 234.77 12.99 32154 33.1530 244.03 234.21 12.79 32155 33.1540 253.42 233.68 13.06 32156 33.1550 251.32 233.19 12.99 32157 33.1560 242.73 232.73 12.74 32158 33.1570 239.81 232.29 12.72 32159 33.1580 242.78 231.88 12.72 32160 33.1590 253.29 231.51 12.99 32161 33.1600 258.05 231.16 13.14 32162 33.1610 249.77 230.84 12.94 32163 33.1620 247.63 230.54 12.89 32164 33.1630 245.93 230.27 12.81 32165 33.1640 259.79 230.03 13.18 32166 33.1650 245.71 229.81 12.87 32167 33.1660 231.74 229.62 12.44 32168 33.1670 213.59 229.45 11.95 32169 33.1680 232.29 229.30 12.50 32170 33.1690 230.14 229.18 12.50 32171 33.1700 239.37 229.09 12.71 32172 33.1710 237.04 229.02 12.62 32173 33.1720 240.47 228.97 12.75 32174 33.1730 243.87 228.95 12.80 32175 33.1740 225.86 228.96 12.34 32176 33.1750 233.74 229.33 12.56 32177 33.1760 233.14 229.38 12.54 32178 33.1770 235.43 229.47 12.61 32179 33.1780 235.28 229.59 12.58 32180 33.1790 237.83 229.73 12.68 32181 33.1800 239.52 229.90 12.71 32182 33.1810 228.21 230.10 12.41 32183 33.1820 240.76 230.34 12.71 32184 33.1830 238.04 230.60 12.71 32185 33.1840 244.98 230.90 12.83 32186 33.1850 242.20 231.24 12.71 32187 33.1860 243.99 231.61 12.82 32188 33.1870 240.97 232.02 12.71 32189 33.1880 225.59 232.47 12.29 32190 33.1890 233.21 232.96 12.53 32191 33.1900 225.36 233.49 12.30 32192 33.1910 235.41 234.07 12.57 32193 33.1920 231.12 234.70 12.48 32194 33.1930 236.52 235.37 12.61 32195 33.1940 243.97 236.09 12.80 32196 33.1950 250.01 236.86 12.98 32197 33.1960 258.25 237.69 13.17 32198 33.1970 244.23 238.56 12.78 32199 33.1980 231.69 239.49 12.51 32200 33.1990 253.07 240.47 13.02 32201 33.2000 259.38 241.51 13.16 32202 33.2010 259.12 242.59 13.16 32203 33.2020 257.18 243.72 13.12 32204 33.2030 247.55 244.89 12.90 32205 33.2040 245.40 246.10 12.85 32206 33.2050 247.68 247.34 12.89 32207 33.2060 246.74 248.60 12.86 32208 33.2070 249.76 249.87 12.96 32209 33.2080 254.52 251.13 13.06 32210 33.2090 260.36 252.37 13.22 32211 33.2100 260.39 253.57 13.24 32212 33.2110 265.66 254.73 13.35 32213 33.2120 278.96 255.80 13.69 32214 33.2130 273.27 256.78 13.58 32215 33.2140 259.71 257.64 13.23 32216 33.2150 272.59 258.37 13.58 32217 33.2160 288.97 258.95 13.93 32218 33.2170 286.10 259.36 13.86 32219 33.2180 286.24 259.61 13.85 32220 33.2190 264.16 259.67 13.32 32221 33.2200 277.85 259.57 13.66 32222 33.2210 289.20 259.30 13.95 32223 33.2220 269.03 258.87 13.45 32224 33.2230 259.22 258.30 13.20 32225 33.2240 251.90 257.60 13.05 32226 33.2250 238.67 256.77 12.67 32227 33.2260 242.31 255.88 12.76 32228 33.2270 252.40 254.91 13.04 32229 33.2280 254.06 253.91 13.07 32230 33.2290 245.84 252.87 12.88 32231 33.2300 261.21 251.82 13.32 32232 33.2310 257.68 250.78 13.20 32233 33.2320 261.10 249.75 13.24 32234 33.2330 274.05 248.74 13.59 32235 33.2340 254.24 247.77 13.07 32236 33.2350 261.00 246.85 13.27 32237 33.2360 254.94 245.97 13.10 32238 33.2370 254.49 245.15 13.08 32239 33.2380 239.57 244.37 12.68 32240 33.2390 251.01 243.66 12.97 32241 33.2400 257.27 243.00 13.13 32242 33.2410 241.01 242.40 12.72 32243 33.2420 240.18 241.85 12.70 32244 33.2430 243.68 241.37 12.80 32245 33.2440 242.04 240.94 12.74 32246 33.2450 247.88 240.56 12.89 32247 33.2460 247.61 240.24 12.88 32248 33.2470 246.41 239.97 12.86 32249 33.2480 233.09 239.75 12.52 32250 33.2490 241.89 239.59 12.77 32251 33.2500 248.80 239.47 12.94 32252 33.2510 240.08 239.40 12.68 32253 33.2520 246.67 239.37 12.87 32254 33.2530 252.31 239.39 13.03 32255 33.2540 250.33 239.45 12.95 32256 33.2550 252.17 239.56 13.00 32257 33.2560 272.15 239.71 13.54 32258 33.2570 258.29 239.90 13.17 32259 33.2580 227.94 240.13 12.33 32260 33.2590 241.11 240.41 12.70 32261 33.2600 260.91 240.73 13.25 32262 33.2610 263.74 241.09 13.34 32263 33.2620 259.53 241.49 13.21 32264 33.2630 257.25 241.93 13.12 32265 33.2640 257.97 242.42 13.16 32266 33.2650 232.14 242.95 12.45 32267 33.2660 240.24 243.52 12.65 32268 33.2670 262.69 244.13 13.28 32269 33.2680 255.21 244.79 13.11 32270 33.2690 261.41 245.50 13.29 32271 33.2700 263.48 246.26 13.33 32272 33.2710 272.94 247.06 13.56 32273 33.2720 273.29 247.91 13.52 32274 33.2730 270.78 248.81 13.48 32275 33.2740 272.18 249.57 13.52 32276 33.2750 267.22 250.59 13.42 32277 33.2760 282.71 251.66 13.79 32278 33.2770 251.64 252.79 12.95 32279 33.2780 273.83 253.99 13.58 32280 33.2790 268.01 255.25 13.42 32281 33.2800 254.69 256.57 13.10 32282 33.2810 268.57 257.97 13.37 32283 33.2820 266.60 259.45 13.41 32284 33.2830 263.85 261.01 13.36 32285 33.2840 298.43 262.64 14.16 32286 33.2850 298.69 264.37 14.20 32287 33.2860 281.66 266.19 13.78 32288 33.2870 269.59 268.11 13.50 32289 33.2880 292.00 270.13 14.07 32290 33.2890 309.82 272.26 14.44 32291 33.2900 276.51 274.51 13.62 32292 33.2910 305.83 276.89 14.35 32293 33.2920 284.02 279.39 13.84 32294 33.2930 286.80 282.04 13.89 32295 33.2940 297.83 284.84 14.14 32296 33.2950 283.25 287.79 13.79 32297 33.2960 296.50 290.93 14.12 32298 33.2970 302.83 294.24 14.30 32299 33.2980 288.35 297.74 13.92 32300 33.2990 299.18 301.47 14.18 32301 33.3000 297.00 305.42 14.14 32302 33.3010 307.51 309.59 14.38 32303 33.3020 317.46 314.04 14.60 32304 33.3030 337.59 318.79 15.11 32305 33.3040 315.86 323.80 14.62 32306 33.3050 334.26 329.15 15.01 32307 33.3060 325.62 334.86 14.73 32308 33.3070 327.21 340.92 14.79 32309 33.3080 345.86 347.40 15.21 32310 33.3090 354.79 354.32 15.42 32311 33.3100 384.03 361.73 16.08 32312 33.3110 385.43 369.60 16.13 32313 33.3120 399.29 378.04 16.39 32314 33.3130 393.60 387.07 16.25 32315 33.3140 388.12 396.70 16.15 32316 33.3150 405.11 407.04 16.52 32317 33.3160 398.20 418.15 16.36 32318 33.3170 413.98 429.96 16.68 32319 33.3180 436.17 442.64 17.12 32320 33.3190 438.14 456.20 17.16 32321 33.3200 446.03 470.65 17.33 32322 33.3210 478.49 486.13 17.94 32323 33.3220 501.53 502.64 18.38 32324 33.3230 517.64 520.22 18.70 32325 33.3240 516.02 538.90 18.68 32326 33.3250 540.91 558.67 19.11 32327 33.3260 559.46 579.46 19.44 32328 33.3270 593.14 601.36 19.99 32329 33.3280 635.10 624.23 20.68 32330 33.3290 645.87 647.86 20.87 32331 33.3300 674.55 672.36 21.25 32332 33.3310 692.54 697.17 21.58 32333 33.3320 721.88 722.02 22.06 32334 33.3330 794.38 746.70 23.14 32335 33.3340 783.98 770.66 22.96 32336 33.3350 829.76 793.34 23.61 32337 33.3360 873.00 814.31 24.21 32338 33.3370 877.55 832.98 24.28 32339 33.3380 885.27 848.60 24.39 32340 33.3390 918.72 860.83 24.91 32341 33.3400 927.95 869.18 25.03 32342 33.3410 901.74 873.35 24.68 32343 33.3420 868.23 873.22 24.22 32344 33.3430 895.80 868.79 24.58 32345 33.3440 880.13 860.26 24.33 32346 33.3450 850.71 847.97 23.94 32347 33.3460 812.76 832.39 23.40 32348 33.3470 792.43 814.12 23.11 32349 33.3480 752.26 793.62 22.54 32350 33.3490 722.29 771.53 22.12 32351 33.3500 704.52 748.48 21.77 32352 33.3510 680.15 724.72 21.40 32353 33.3520 689.40 700.94 21.54 32354 33.3530 668.89 677.49 21.22 32355 33.3540 633.56 654.50 20.67 32356 33.3550 622.57 632.29 20.51 32357 33.3560 601.69 611.08 20.12 32358 33.3570 564.91 590.84 19.53 32359 33.3580 552.96 571.66 19.33 32360 33.3590 539.69 553.71 19.07 32361 33.3600 533.49 536.98 18.99 32362 33.3610 525.24 521.35 18.83 32363 33.3620 517.31 506.87 18.69 32364 33.3630 477.25 493.54 17.91 32365 33.3640 462.30 481.23 17.65 32366 33.3650 467.45 469.90 17.74 32367 33.3660 447.28 459.64 17.36 32368 33.3670 457.27 450.28 17.58 32369 33.3680 466.84 441.82 17.72 32370 33.3690 425.42 434.23 16.92 32371 33.3700 436.87 427.43 17.14 32372 33.3710 459.09 421.42 17.55 32373 33.3720 442.03 416.14 17.27 32374 33.3730 412.13 411.58 16.72 32375 33.3740 403.15 407.71 16.53 32376 33.3750 397.58 404.51 16.39 32377 33.3760 406.43 401.92 16.56 32378 33.3770 401.25 399.94 16.45 32379 33.3780 412.99 398.55 16.69 32380 33.3790 389.17 396.93 16.20 32381 33.3800 381.44 396.63 16.02 32382 33.3810 416.71 396.81 16.77 32383 33.3820 416.34 397.46 16.75 32384 33.3830 410.11 398.52 16.62 32385 33.3840 427.92 400.02 16.96 32386 33.3850 464.36 401.75 17.68 32387 33.3860 429.94 403.73 17.00 32388 33.3870 434.32 405.85 17.16 32389 33.3880 435.50 408.02 17.16 32390 33.3890 458.84 410.15 17.58 32391 33.3900 451.29 412.11 17.43 32392 33.3910 468.83 413.78 17.82 32393 33.3920 478.72 415.05 17.94 32394 33.3930 452.10 415.79 17.50 32395 33.3940 467.84 415.90 17.76 32396 33.3950 456.45 415.31 17.49 32397 33.3960 465.30 413.94 17.68 32398 33.3970 445.92 411.78 17.34 32399 33.3980 480.00 408.81 18.01 32400 33.3990 448.85 405.10 17.39 32401 33.4000 403.31 400.65 16.50 32402 33.4010 420.70 395.60 16.76 32403 33.4020 408.72 390.04 16.60 32404 33.4030 403.53 384.05 16.48 32405 33.4040 403.72 377.75 16.51 32406 33.4050 385.51 371.27 16.17 32407 33.4060 365.78 364.66 15.72 32408 33.4070 365.46 358.02 15.69 32409 33.4080 359.25 351.45 15.60 32410 33.4090 347.60 345.02 15.25 32411 33.4100 333.56 338.73 14.92 32412 33.4110 331.54 332.65 14.92 32413 33.4120 302.40 326.82 14.31 32414 33.4130 302.14 321.21 14.26 32415 33.4140 312.93 315.84 14.51 32416 33.4150 309.07 310.77 14.41 32417 33.4160 314.33 305.94 14.57 32418 33.4170 316.04 301.37 14.61 32419 33.4180 309.11 297.07 14.44 32420 33.4190 315.06 292.99 14.59 32421 33.4200 307.47 289.14 14.38 32422 33.4210 288.52 285.52 13.97 32423 33.4220 319.82 282.10 14.69 32424 33.4230 293.57 278.88 14.09 32425 33.4240 291.92 275.87 14.02 32426 33.4250 286.92 272.99 13.85 32427 33.4260 292.08 270.31 14.03 32428 33.4270 286.53 267.79 13.93 32429 33.4280 279.93 265.41 13.74 32430 33.4290 276.76 263.17 13.62 32431 33.4300 263.80 261.07 13.27 32432 33.4310 269.77 259.08 13.49 32433 33.4320 278.17 257.22 13.69 32434 33.4330 260.04 255.46 13.22 32435 33.4340 266.27 253.80 13.37 32436 33.4350 273.94 252.24 13.59 32437 33.4360 267.47 250.77 13.40 32438 33.4370 245.41 249.39 12.78 32439 33.4380 264.84 248.09 13.35 32440 33.4390 252.44 246.87 13.02 32441 33.4400 259.08 245.71 13.21 32442 33.4410 239.60 244.63 12.71 32443 33.4420 258.49 243.62 13.16 32444 33.4430 256.38 242.66 13.15 32445 33.4440 248.12 241.77 12.90 32446 33.4450 231.09 240.95 12.44 32447 33.4460 262.35 240.17 13.29 32448 33.4470 258.67 239.45 13.23 32449 33.4480 256.97 238.78 13.15 32450 33.4490 245.47 238.17 12.87 32451 33.4500 230.81 237.61 12.48 32452 33.4510 240.53 237.10 12.77 32453 33.4520 241.00 236.63 12.72 32454 33.4530 247.08 236.22 12.86 32455 33.4540 235.56 235.85 12.60 32456 33.4550 252.62 235.53 13.08 32457 33.4560 253.03 235.26 13.08 32458 33.4570 249.87 235.04 13.00 32459 33.4580 245.67 234.87 12.84 32460 33.4590 259.58 234.74 13.19 32461 33.4600 222.94 234.67 12.22 32462 33.4610 252.07 234.65 13.02 32463 33.4620 255.47 234.69 13.14 32464 33.4630 259.79 234.78 13.27 32465 33.4640 247.69 234.93 12.93 32466 33.4650 254.70 235.14 13.09 32467 33.4660 249.48 235.41 12.93 32468 33.4670 246.92 235.74 12.84 32469 33.4680 247.02 236.14 12.91 32470 33.4690 247.64 236.62 12.92 32471 33.4700 246.48 237.16 12.86 32472 33.4710 236.99 237.78 12.60 32473 33.4720 232.68 238.48 12.51 32474 33.4730 231.69 239.26 12.41 32475 33.4740 242.50 240.13 12.75 32476 33.4750 248.82 241.09 12.96 32477 33.4760 257.35 242.13 13.17 32478 33.4770 251.71 243.26 13.02 32479 33.4780 248.54 244.48 12.97 32480 33.4790 247.28 245.78 12.87 32481 33.4800 269.24 247.16 13.46 32482 33.4810 255.90 248.50 13.06 32483 33.4820 254.05 250.00 13.01 32484 33.4830 246.55 251.56 12.87 32485 33.4840 262.40 253.13 13.28 32486 33.4850 255.25 254.70 13.11 32487 33.4860 269.39 256.23 13.48 32488 33.4870 262.01 257.70 13.26 32489 33.4880 260.68 259.06 13.20 32490 33.4890 268.10 260.28 13.42 32491 33.4900 283.08 261.32 13.75 32492 33.4910 265.80 262.13 13.36 32493 33.4920 273.15 262.69 13.57 32494 33.4930 270.48 262.97 13.53 32495 33.4940 267.16 262.96 13.41 32496 33.4950 272.93 262.65 13.53 32497 33.4960 271.76 262.06 13.51 32498 33.4970 274.60 261.20 13.59 32499 33.4980 256.66 260.10 13.13 32500 33.4990 242.39 258.79 12.73 32501 33.5000 255.88 257.32 13.13 32502 33.5010 263.58 255.72 13.34 32503 33.5020 258.58 254.02 13.17 32504 33.5030 238.19 251.47 12.62 32505 33.5040 234.17 249.70 12.50 32506 33.5050 260.05 247.95 13.22 32507 33.5060 248.36 246.23 12.88 32508 33.5070 262.45 244.56 13.29 32509 33.5080 258.69 242.95 13.21 32510 33.5090 252.93 241.42 13.06 32511 33.5100 233.03 239.97 12.53 32512 33.5110 250.01 238.60 13.02 32513 33.5120 256.07 237.32 13.16 32514 33.5130 236.11 236.13 12.65 32515 33.5140 242.28 235.03 12.77 32516 33.5150 256.80 234.02 13.13 32517 33.5160 243.39 233.10 12.82 32518 33.5170 232.69 232.26 12.51 32519 33.5180 224.93 231.75 12.34 32520 33.5190 222.99 231.07 12.28 32521 33.5200 226.02 230.46 12.31 32522 33.5210 227.45 229.93 12.36 32523 33.5220 222.37 229.47 12.24 32524 33.5230 219.48 229.07 12.16 32525 33.5240 245.29 228.74 12.87 32526 33.5250 232.99 228.48 12.51 32527 33.5260 231.38 228.28 12.48 32528 33.5270 236.60 228.14 12.62 32529 33.5280 245.00 228.06 12.89 32530 33.5290 245.60 228.04 12.87 32531 33.5300 228.45 228.08 12.38 32532 33.5310 264.91 228.18 13.36 32533 33.5320 248.97 228.35 13.00 32534 33.5330 249.60 228.57 12.99 32535 33.5340 224.95 228.85 12.31 32536 33.5350 220.07 229.19 12.14 32537 33.5360 236.46 229.60 12.56 32538 33.5370 246.44 230.07 12.89 32539 33.5380 233.39 230.60 12.56 32540 33.5390 236.41 231.19 12.60 32541 33.5400 239.73 231.85 12.76 32542 33.5410 250.16 232.57 12.97 32543 33.5420 242.21 233.36 12.81 32544 33.5430 251.87 234.20 13.06 32545 33.5440 239.33 235.11 12.68 32546 33.5450 249.11 236.07 12.94 32547 33.5460 261.28 237.09 13.31 32548 33.5470 256.94 238.15 13.15 32549 33.5480 251.15 239.25 13.02 32550 33.5490 239.62 240.37 12.72 32551 33.5500 256.73 241.51 13.13 32552 33.5510 257.52 242.65 13.16 32553 33.5520 255.12 243.77 13.12 32554 33.5530 260.34 244.86 13.20 32555 33.5540 251.04 245.89 13.00 32556 33.5550 276.84 246.84 13.68 32557 33.5560 267.43 247.69 13.45 32558 33.5570 256.36 248.42 13.16 32559 33.5580 255.74 249.01 13.07 32560 33.5590 248.92 249.45 12.92 32561 33.5600 261.78 249.73 13.29 32562 33.5610 255.48 249.84 13.09 32563 33.5620 257.72 249.78 13.17 32564 33.5630 254.89 249.55 13.10 32565 33.5640 259.41 249.18 13.20 32566 33.5650 276.77 248.67 13.63 32567 33.5660 259.79 248.05 13.21 32568 33.5670 263.09 247.32 13.32 32569 33.5680 239.00 246.53 12.69 32570 33.5690 237.07 245.68 12.64 32571 33.5700 233.34 244.81 12.50 32572 33.5710 230.47 243.92 12.44 32573 33.5720 244.61 243.04 12.85 32574 33.5730 252.98 242.17 13.06 32575 33.5740 237.15 241.34 12.64 32576 33.5750 246.04 240.56 12.87 32577 33.5760 247.26 239.83 12.87 32578 33.5770 254.61 239.16 13.09 32579 33.5780 247.98 238.55 12.91 32580 33.5790 253.69 238.01 13.05 32581 33.5800 251.34 237.54 12.98 32582 33.5810 235.62 237.15 12.58 32583 33.5820 252.66 236.83 13.06 32584 33.5830 252.84 236.58 13.00 32585 33.5840 226.70 236.41 12.31 32586 33.5850 222.11 236.30 12.17 32587 33.5860 238.89 236.28 12.73 32588 33.5870 245.80 236.34 12.89 32589 33.5880 265.35 236.47 13.37 32590 33.5890 247.45 236.68 12.94 32591 33.5900 254.78 236.97 13.08 32592 33.5910 248.22 237.34 12.93 32593 33.5920 259.64 237.79 13.22 32594 33.5930 251.34 238.32 12.95 32595 33.5940 239.81 238.93 12.69 32596 33.5950 243.74 239.62 12.84 32597 33.5960 259.77 240.40 13.21 32598 33.5970 259.47 241.27 13.24 32599 33.5980 260.12 242.24 13.23 32600 33.5990 241.76 243.30 12.76 32601 33.6000 250.88 244.46 12.97 32602 33.6010 240.71 245.74 12.70 32603 33.6020 261.43 247.11 13.28 32604 33.6030 256.65 248.61 13.15 32605 33.6040 265.62 250.23 13.39 32606 33.6050 273.59 251.97 13.57 32607 33.6060 272.83 253.86 13.55 32608 33.6070 263.91 255.89 13.34 32609 33.6080 259.82 258.08 13.21 32610 33.6090 274.40 260.42 13.60 32611 33.6100 269.53 262.94 13.44 32612 33.6110 259.93 265.63 13.22 32613 33.6120 249.77 268.52 12.92 32614 33.6130 238.44 271.61 12.62 32615 33.6140 262.56 274.91 13.29 32616 33.6150 260.50 278.45 13.24 32617 33.6160 282.52 282.21 13.73 32618 33.6170 286.71 286.21 13.87 32619 33.6180 290.41 290.47 13.98 32620 33.6190 286.20 294.99 13.84 32621 33.6200 283.56 299.76 13.82 32622 33.6210 297.98 304.82 14.14 32623 33.6220 291.68 310.15 13.98 32624 33.6230 299.42 315.70 14.16 32625 33.6240 341.85 321.51 15.18 32626 33.6250 346.08 327.55 15.26 32627 33.6260 335.73 333.74 14.97 32628 33.6270 348.50 340.10 15.28 32629 33.6280 344.37 346.55 15.20 32630 33.6290 370.18 353.02 15.81 32631 33.6300 373.58 359.43 15.88 32632 33.6310 390.85 365.67 16.23 32633 33.6320 404.27 371.63 16.51 32634 33.6330 423.27 377.22 16.90 32635 33.6340 400.24 382.31 16.39 32636 33.6350 401.07 386.74 16.43 32637 33.6360 400.12 390.45 16.37 32638 33.6370 433.37 393.28 17.05 32639 33.6380 412.85 395.16 16.66 32640 33.6390 416.73 396.05 16.77 32641 33.6400 397.61 395.89 16.42 32642 33.6410 408.79 394.71 16.61 32643 33.6420 422.72 392.53 16.90 32644 33.6430 417.07 389.41 16.75 32645 33.6440 412.20 385.45 16.67 32646 33.6450 361.59 380.77 15.62 32647 33.6460 367.28 375.46 15.71 32648 33.6470 361.83 369.68 15.61 32649 33.6480 357.93 363.51 15.52 32650 33.6490 368.92 357.10 15.74 32651 33.6500 351.38 350.52 15.42 32652 33.6510 326.40 343.93 14.87 32653 33.6520 322.42 337.35 14.70 32654 33.6530 345.57 330.87 15.22 32655 33.6540 322.84 324.56 14.78 32656 33.6550 327.88 318.42 14.89 32657 33.6560 297.68 312.50 14.14 32658 33.6570 302.74 306.83 14.25 32659 33.6580 312.42 301.41 14.46 32660 33.6590 303.55 296.25 14.31 32661 33.6600 289.06 291.37 13.97 32662 33.6610 301.82 286.74 14.27 32663 33.6620 289.00 282.36 13.97 32664 33.6630 266.01 278.24 13.41 32665 33.6640 279.70 274.34 13.75 32666 33.6650 288.80 270.68 13.92 32667 33.6660 288.20 267.25 13.89 32668 33.6670 266.62 264.02 13.42 32669 33.6680 265.12 260.98 13.38 32670 33.6690 255.67 258.13 13.18 32671 33.6700 265.03 255.45 13.37 32672 33.6710 223.80 252.93 12.27 32673 33.6720 250.71 250.57 12.98 32674 33.6730 252.46 248.34 13.05 32675 33.6740 267.87 246.25 13.43 32676 33.6750 247.00 244.29 12.92 32677 33.6760 244.64 242.43 12.79 32678 33.6770 265.23 240.68 13.36 32679 33.6780 250.05 239.03 13.05 32680 33.6790 248.68 237.46 12.92 32681 33.6800 249.42 235.98 12.95 32682 33.6810 240.70 234.57 12.75 32683 33.6820 241.75 233.23 12.72 32684 33.6830 241.89 231.95 12.75 32685 33.6840 242.83 230.73 12.78 32686 33.6850 248.70 229.55 12.95 32687 33.6860 243.09 228.43 12.75 32688 33.6870 224.85 227.36 12.27 32689 33.6880 238.63 226.33 12.69 32690 33.6890 236.60 225.35 12.63 32691 33.6900 236.97 224.40 12.63 32692 33.6910 222.07 223.49 12.23 32693 33.6920 206.21 222.62 11.80 32694 33.6930 213.81 221.78 11.97 32695 33.6940 220.18 220.99 12.11 32696 33.6950 220.16 220.22 12.18 32697 33.6960 219.82 219.49 12.17 32698 33.6970 234.21 218.79 12.53 32699 33.6980 225.96 218.12 12.33 32700 33.6990 240.02 217.48 12.77 32701 33.7000 235.54 216.87 12.59 32702 33.7010 218.59 216.28 12.13 32703 33.7020 261.26 215.72 13.23 32704 33.7030 226.58 215.19 12.38 32705 33.7040 226.07 214.68 12.37 32706 33.7050 234.68 214.19 12.54 32707 33.7060 224.96 213.72 12.31 32708 33.7070 247.26 213.27 12.90 32709 33.7080 209.32 212.85 11.88 32710 33.7090 228.19 212.44 12.39 32711 33.7100 229.19 212.04 12.42 32712 33.7110 209.09 211.67 11.87 32713 33.7120 237.93 211.31 12.57 32714 33.7130 219.16 210.96 12.13 32715 33.7140 217.54 210.63 12.07 32716 33.7150 209.20 210.32 11.83 32717 33.7160 213.18 210.01 11.99 32718 33.7170 214.93 209.72 12.09 32719 33.7180 215.08 209.45 12.04 32720 33.7190 207.66 209.18 11.83 32721 33.7200 218.10 208.92 12.09 32722 33.7210 209.74 208.68 11.86 32723 33.7220 218.57 208.44 12.10 32724 33.7230 202.43 208.15 11.65 32725 33.7240 210.49 207.93 11.95 32726 33.7250 201.55 207.72 11.63 32727 33.7260 219.38 207.52 12.15 32728 33.7270 211.53 207.34 11.92 32729 33.7280 203.57 207.15 11.69 32730 33.7290 201.40 206.98 11.62 32731 33.7300 202.44 206.82 11.66 32732 33.7310 219.90 206.66 12.14 32733 33.7320 205.50 206.51 11.75 32734 33.7330 225.52 206.36 12.33 32735 33.7340 207.21 206.23 11.83 32736 33.7350 224.87 206.10 12.29 32737 33.7360 219.09 205.97 12.13 32738 33.7370 210.23 205.85 11.95 32739 33.7380 204.93 205.74 11.76 32740 33.7390 224.86 205.64 12.30 32741 33.7400 220.64 205.54 12.19 32742 33.7410 205.94 205.45 11.76 32743 33.7420 223.01 205.36 12.25 32744 33.7430 223.76 205.28 12.29 32745 33.7440 215.06 205.20 12.07 32746 33.7450 234.39 205.13 12.58 32747 33.7460 229.54 205.07 12.46 32748 33.7470 218.56 205.01 12.12 32749 33.7480 208.55 204.95 11.86 32750 33.7490 204.40 204.91 11.75 32751 33.7500 190.58 204.86 11.31 32752 33.7510 202.52 204.83 11.68 32753 33.7520 199.50 204.79 11.56 32754 33.7530 211.16 204.77 11.91 32755 33.7540 209.57 204.75 11.83 32756 33.7550 224.65 204.73 12.25 32757 33.7560 205.07 204.73 11.74 32758 33.7570 218.49 204.92 12.10 32759 33.7580 210.36 203.79 11.88 32760 33.7590 210.06 203.81 11.84 32761 33.7600 226.72 203.83 12.29 32762 33.7610 213.85 203.86 11.96 32763 33.7620 202.87 203.89 11.68 32764 33.7630 195.74 203.93 11.48 32765 33.7640 207.24 203.98 11.81 32766 33.7650 225.06 204.03 12.31 32767 33.7660 212.99 204.09 11.96 32768 33.7670 207.06 204.16 11.75 32769 33.7680 206.18 204.23 11.73 32770 33.7690 188.68 204.31 11.32 32771 33.7700 204.47 204.40 11.70 32772 33.7710 196.65 204.50 11.48 32773 33.7720 224.87 204.61 12.29 32774 33.7730 222.71 204.73 12.26 32775 33.7740 201.45 204.85 11.65 32776 33.7750 202.64 204.99 11.69 32777 33.7760 200.90 205.13 11.64 32778 33.7770 218.25 205.29 12.14 32779 33.7780 214.86 205.46 12.01 32780 33.7790 206.25 205.64 11.76 32781 33.7800 211.70 205.83 11.94 32782 33.7810 216.20 206.03 12.04 32783 33.7820 205.10 206.25 11.70 32784 33.7830 233.01 206.49 12.47 32785 33.7840 210.51 206.73 11.88 32786 33.7850 210.82 207.00 11.88 32787 33.7860 214.24 207.28 11.97 32788 33.7870 219.78 207.58 12.17 32789 33.7880 208.41 207.90 11.84 32790 33.7890 216.99 208.24 12.07 32791 33.7900 204.79 208.60 11.75 32792 33.7910 211.19 208.99 11.93 32793 33.7920 215.47 209.40 12.07 32794 33.7930 206.21 209.84 11.77 32795 33.7940 221.21 210.30 12.21 32796 33.7950 208.44 210.79 11.85 32797 33.7960 200.60 211.32 11.58 32798 33.7970 207.97 211.89 11.85 32799 33.7980 205.15 212.48 11.74 32800 33.7990 225.23 213.12 12.35 32801 33.8000 222.93 213.80 12.21 32802 33.8010 206.70 214.52 11.76 32803 33.8020 211.24 215.29 11.96 32804 33.8030 200.27 216.11 11.63 32805 33.8040 214.96 216.99 12.02 32806 33.8050 215.93 217.92 12.06 32807 33.8060 234.61 218.91 12.55 32808 33.8070 220.76 219.96 12.21 32809 33.8080 211.91 221.09 11.94 32810 33.8090 221.59 222.28 12.21 32811 33.8100 231.31 223.55 12.48 32812 33.8110 221.79 224.90 12.23 32813 33.8120 219.62 226.32 12.12 32814 33.8130 231.41 227.82 12.52 32815 33.8140 223.93 229.41 12.29 32816 33.8150 240.31 231.09 12.67 32817 33.8160 236.28 232.84 12.61 32818 33.8170 232.37 234.67 12.50 32819 33.8180 229.42 236.58 12.45 32820 33.8190 241.58 238.54 12.74 32821 33.8200 244.67 240.56 12.83 32822 33.8210 242.32 242.62 12.76 32823 33.8220 232.34 244.69 12.47 32824 33.8230 250.76 246.76 13.06 32825 33.8240 252.05 248.80 13.06 32826 33.8250 244.96 250.76 12.83 32827 33.8260 254.69 252.62 13.06 32828 33.8270 244.31 254.35 12.82 32829 33.8280 257.11 255.88 13.15 32830 33.8290 245.93 257.20 12.87 32831 33.8300 254.50 258.27 13.13 32832 33.8310 249.33 259.05 12.93 32833 33.8320 260.46 259.52 13.22 32834 33.8330 273.80 259.65 13.53 32835 33.8340 268.65 259.46 13.42 32836 33.8350 266.21 259.07 13.39 32837 33.8360 245.36 258.25 12.87 32838 33.8370 257.66 257.14 13.12 32839 33.8380 259.37 255.78 13.19 32840 33.8390 256.23 254.21 13.13 32841 33.8400 266.10 252.46 13.35 32842 33.8410 238.65 250.32 12.68 32843 33.8420 241.57 248.34 12.74 32844 33.8430 253.11 246.30 13.06 32845 33.8440 244.23 244.24 12.84 32846 33.8450 241.42 242.17 12.74 32847 33.8460 222.08 240.12 12.24 32848 33.8470 223.71 238.13 12.21 32849 33.8480 239.90 236.18 12.73 32850 33.8490 237.10 234.29 12.68 32851 33.8500 229.76 232.49 12.46 32852 33.8510 235.64 230.76 12.59 32853 33.8520 229.87 229.11 12.45 32854 33.8530 219.83 227.55 12.13 32855 33.8540 226.22 226.07 12.29 32856 33.8550 231.25 224.68 12.51 32857 33.8560 236.75 223.36 12.63 32858 33.8570 215.88 222.12 12.06 32859 33.8580 236.70 220.95 12.63 32860 33.8590 235.98 219.86 12.61 32861 33.8600 224.47 218.84 12.27 32862 33.8610 222.59 217.89 12.22 32863 33.8620 227.90 216.99 12.42 32864 33.8630 221.51 216.15 12.17 32865 33.8640 204.38 215.36 11.74 32866 33.8650 229.04 214.61 12.38 32867 33.8660 219.41 213.92 12.11 32868 33.8670 205.70 213.27 11.79 32869 33.8680 212.80 212.66 11.94 32870 33.8690 205.02 212.10 11.69 32871 33.8700 194.33 211.56 11.39 32872 33.8710 218.43 211.07 12.05 32873 33.8720 218.58 210.60 12.12 32874 33.8730 208.15 210.16 11.76 32875 33.8740 220.05 209.76 12.18 32876 33.8750 217.71 209.38 12.20 32877 33.8760 214.58 209.03 12.06 32878 33.8770 227.58 208.70 12.33 32879 33.8780 214.15 208.39 12.01 32880 33.8790 202.10 208.11 11.68 32881 33.8800 222.74 207.84 12.24 32882 33.8810 225.87 207.60 12.34 32883 33.8820 221.13 207.37 12.23 32884 33.8830 195.31 207.16 11.48 32885 33.8840 207.99 206.97 11.88 32886 33.8850 203.32 206.79 11.73 32887 33.8860 212.51 206.63 11.90 32888 33.8870 221.09 206.48 12.19 32889 33.8880 225.22 206.35 12.30 32890 33.8890 212.53 206.23 11.98 32891 33.8900 203.37 206.12 11.73 32892 33.8910 207.02 206.03 11.81 32893 33.8920 210.88 205.95 11.90 32894 33.8930 226.88 205.88 12.32 32895 33.8940 203.65 205.82 11.70 32896 33.8950 199.74 205.77 11.59 32897 33.8960 208.66 205.73 11.83 32898 33.8970 217.55 205.71 12.08 32899 33.8980 207.68 205.69 11.81 32900 33.8990 190.41 205.69 11.31 32901 33.9000 200.95 205.70 11.64 32902 33.9010 215.75 205.71 12.06 32903 33.9020 207.68 205.74 11.85 32904 33.9030 196.86 205.78 11.54 32905 33.9040 201.43 205.83 11.58 32906 33.9050 214.08 205.89 11.96 32907 33.9060 215.92 205.96 12.03 32908 33.9070 192.21 206.04 11.33 32909 33.9080 208.75 206.14 11.83 32910 33.9090 228.11 206.24 12.41 32911 33.9100 229.40 206.36 12.51 32912 33.9110 208.49 206.49 11.84 32913 33.9120 205.24 206.62 11.74 32914 33.9130 212.82 206.78 12.01 32915 33.9140 216.74 206.94 12.06 32916 33.9150 212.13 207.12 11.94 32917 33.9160 223.13 207.31 12.29 32918 33.9170 207.46 207.52 11.85 32919 33.9180 191.70 207.74 11.38 32920 33.9190 200.09 207.98 11.61 32921 33.9200 193.92 208.23 11.41 32922 33.9210 215.42 208.42 12.04 32923 33.9220 220.29 208.71 12.14 32924 33.9230 220.66 209.01 12.24 32925 33.9240 201.68 209.34 11.65 32926 33.9250 210.87 209.68 11.94 32927 33.9260 209.40 210.04 11.91 32928 33.9270 233.55 210.43 12.53 32929 33.9280 220.47 210.84 12.16 32930 33.9290 218.16 211.27 12.08 32931 33.9300 209.96 211.73 11.87 32932 33.9310 217.08 212.21 12.10 32933 33.9320 209.34 212.71 11.80 32934 33.9330 199.35 213.24 11.58 32935 33.9340 217.86 213.80 12.05 32936 33.9350 204.07 214.38 11.75 32937 33.9360 218.15 214.99 12.10 32938 33.9370 205.84 215.62 11.79 32939 33.9380 208.84 216.27 11.88 32940 33.9390 212.84 216.93 11.95 32941 33.9400 230.12 217.62 12.46 32942 33.9410 219.89 218.33 12.13 32943 33.9420 225.54 219.04 12.24 32944 33.9430 222.68 219.77 12.25 32945 33.9440 215.23 220.51 12.07 32946 33.9450 219.88 221.24 12.12 32947 33.9460 221.03 221.99 12.19 32948 33.9470 219.90 222.74 12.15 32949 33.9480 198.41 223.50 11.58 32950 33.9490 207.30 224.26 11.81 32951 33.9500 234.57 225.04 12.54 32952 33.9510 238.02 225.83 12.63 32953 33.9520 226.17 226.65 12.32 32954 33.9530 222.87 227.50 12.21 32955 33.9540 239.08 228.38 12.66 32956 33.9550 214.28 229.32 12.00 32957 33.9560 227.64 230.30 12.32 32958 33.9570 220.05 231.35 12.17 32959 33.9580 219.21 232.47 12.13 32960 33.9590 220.53 233.68 12.21 32961 33.9600 233.93 234.96 12.54 32962 33.9610 234.41 236.34 12.56 32963 33.9620 220.56 237.84 12.19 32964 33.9630 228.24 239.43 12.40 32965 33.9640 234.91 241.14 12.62 32966 33.9650 239.21 242.98 12.72 32967 33.9660 246.23 244.94 12.86 32968 33.9670 256.29 247.06 13.14 32969 33.9680 227.12 249.32 12.37 32970 33.9690 279.19 251.73 13.72 32971 33.9700 253.83 254.31 13.12 32972 33.9710 237.83 257.07 12.69 32973 33.9720 256.39 259.99 13.14 32974 33.9730 255.18 263.10 13.08 32975 33.9740 262.48 266.40 13.30 32976 33.9750 274.90 269.89 13.62 32977 33.9760 287.46 273.59 13.89 32978 33.9770 276.98 277.48 13.65 32979 33.9780 276.90 281.55 13.63 32980 33.9790 274.35 285.80 13.54 32981 33.9800 282.14 290.22 13.82 32982 33.9810 292.46 294.79 14.07 32983 33.9820 291.84 299.49 14.02 32984 33.9830 283.91 304.30 13.80 32985 33.9840 319.22 309.57 14.64 32986 33.9850 308.15 314.39 14.40 32987 33.9860 316.73 319.15 14.60 32988 33.9870 322.24 323.79 14.69 32989 33.9880 332.90 328.18 14.99 32990 33.9890 344.49 332.30 15.21 32991 33.9900 331.78 336.04 14.92 32992 33.9910 356.98 339.27 15.54 32993 33.9920 353.00 341.96 15.46 32994 33.9930 344.36 344.02 15.21 32995 33.9940 379.00 345.39 15.99 32996 33.9950 359.84 346.02 15.59 32997 33.9960 357.40 345.91 15.49 32998 33.9970 358.05 345.05 15.53 32999 33.9980 333.47 343.47 14.96 33000 33.9990 337.98 341.20 15.11 33001 34.0000 356.12 338.33 15.46 33002 34.0010 318.44 334.92 14.63 33003 34.0020 303.48 331.04 14.32 33004 34.0030 279.56 326.81 13.73 33005 34.0040 296.88 322.27 14.15 33006 34.0050 296.23 317.54 14.13 33007 34.0060 298.21 312.71 14.18 33008 34.0070 309.52 307.80 14.45 33009 34.0080 299.97 302.90 14.23 33010 34.0090 287.68 298.07 13.97 33011 34.0100 299.84 293.37 14.21 33012 34.0110 295.17 288.72 14.08 33013 34.0120 273.54 284.25 13.55 33014 34.0130 258.13 279.93 13.18 33015 34.0140 249.49 275.79 12.97 33016 34.0150 270.05 271.85 13.49 33017 34.0160 251.28 268.08 13.01 33018 34.0170 260.63 264.50 13.25 33019 34.0180 253.44 261.11 13.07 33020 34.0190 264.26 257.89 13.35 33021 34.0200 239.06 254.85 12.67 33022 34.0210 249.38 251.99 12.96 33023 34.0220 238.66 249.28 12.71 33024 34.0230 240.10 246.73 12.77 33025 34.0240 255.73 244.33 13.13 33026 34.0250 251.76 242.05 13.04 33027 34.0260 232.10 239.91 12.49 33028 34.0270 228.84 237.89 12.42 33029 34.0280 235.27 235.99 12.56 33030 34.0290 233.20 234.20 12.54 33031 34.0300 224.98 232.51 12.32 33032 34.0310 222.62 230.92 12.27 33033 34.0320 241.83 229.40 12.76 33034 34.0330 224.93 227.98 12.32 33035 34.0340 229.90 226.58 12.44 33036 34.0350 197.70 225.31 11.53 33037 34.0360 212.88 224.11 11.99 33038 34.0370 217.48 222.98 12.10 33039 34.0380 217.60 221.91 12.13 33040 34.0390 220.40 220.88 12.22 33041 34.0400 203.79 219.92 11.67 33042 34.0410 197.86 219.01 11.47 33043 34.0420 211.06 218.14 11.93 33044 34.0430 221.62 217.32 12.19 33045 34.0440 206.96 216.54 11.78 33046 34.0450 205.03 215.79 11.74 33047 34.0460 212.09 215.08 11.91 33048 34.0470 195.58 214.41 11.39 33049 34.0480 212.38 213.77 11.93 33050 34.0490 199.58 213.16 11.58 33051 34.0500 207.13 212.58 11.79 33052 34.0510 222.06 212.02 12.22 33053 34.0520 210.26 211.50 11.89 33054 34.0530 205.50 210.99 11.74 33055 34.0540 211.06 210.51 11.89 33056 34.0550 203.82 210.05 11.74 33057 34.0560 194.31 209.61 11.44 33058 34.0570 200.48 209.19 11.59 33059 34.0580 208.11 208.79 11.87 33060 34.0590 212.72 208.40 12.00 33061 34.0600 209.43 208.03 11.92 33062 34.0610 201.26 207.68 11.62 33063 34.0620 205.07 207.34 11.70 33064 34.0630 213.10 207.01 11.98 33065 34.0640 215.56 206.70 12.05 33066 34.0650 210.54 206.40 11.87 33067 34.0660 201.14 206.12 11.61 33068 34.0670 215.07 205.84 12.05 33069 34.0680 217.40 205.58 12.11 33070 34.0690 216.65 205.32 12.05 33071 34.0700 189.41 205.08 11.24 33072 34.0710 199.02 204.85 11.60 33073 34.0720 222.81 204.62 12.26 33074 34.0730 230.60 204.40 12.45 33075 34.0740 210.25 204.20 11.89 33076 34.0750 209.39 204.00 11.83 33077 34.0760 215.81 203.81 11.98 33078 34.0770 208.80 203.62 11.84 33079 34.0780 191.03 203.45 11.35 33080 34.0790 198.34 203.28 11.58 33081 34.0800 208.20 203.11 11.82 33082 34.0810 222.96 202.95 12.24 33083 34.0820 202.23 202.80 11.67 33084 34.0830 213.23 202.66 11.95 33085 34.0840 218.82 202.52 12.15 33086 34.0850 214.97 202.38 12.07 33087 34.0860 210.06 202.25 11.91 33088 34.0870 221.28 202.13 12.20 33089 34.0880 197.44 202.01 11.56 33090 34.0890 206.24 201.89 11.77 33091 34.0900 198.82 201.78 11.55 33092 34.0910 191.47 201.67 11.33 33093 34.0920 192.61 201.57 11.34 33094 34.0930 204.84 201.48 11.78 33095 34.0940 231.20 201.38 12.43 33096 34.0950 223.59 201.29 12.24 33097 34.0960 202.72 201.20 11.66 33098 34.0970 195.81 201.12 11.46 33099 34.0980 197.97 201.04 11.52 33100 34.0990 207.49 200.97 11.82 33101 34.1000 224.75 200.89 12.31 33102 34.1010 205.36 200.82 11.73 33103 34.1020 200.98 200.76 11.65 33104 34.1030 188.80 200.70 11.24 33105 34.1040 196.77 200.64 11.50 33106 34.1050 205.58 200.24 11.71 33107 34.1060 202.63 200.19 11.66 33108 34.1070 191.55 200.14 11.35 33109 34.1080 207.89 200.09 11.84 33110 34.1090 212.25 200.05 11.99 33111 34.1100 223.76 200.01 12.27 33112 34.1110 200.86 199.97 11.60 33113 34.1120 206.75 199.93 11.79 33114 34.1130 194.10 199.90 11.42 33115 34.1140 193.05 199.88 11.38 33116 34.1150 202.73 199.85 11.66 33117 34.1160 210.41 199.82 11.89 33118 34.1170 183.45 199.80 11.13 33119 34.1180 192.17 199.77 11.33 33120 34.1190 178.77 199.75 10.97 33121 34.1200 215.20 199.74 11.98 33122 34.1210 202.35 199.72 11.66 33123 34.1220 192.61 199.71 11.38 33124 34.1230 196.11 199.70 11.48 33125 34.1240 200.87 199.69 11.63 33126 34.1250 200.66 199.68 11.58 33127 34.1260 197.06 199.68 11.51 33128 34.1270 182.84 199.68 11.08 33129 34.1280 194.27 199.68 11.50 33130 34.1290 196.77 199.68 11.51 33131 34.1300 200.95 199.68 11.60 33132 34.1310 207.23 199.69 11.81 33133 34.1320 215.01 199.70 12.05 33134 34.1330 182.93 199.71 11.13 33135 34.1340 207.25 199.72 11.84 33136 34.1350 203.53 199.74 11.72 33137 34.1360 202.18 199.75 11.65 33138 34.1370 215.20 199.77 12.04 33139 34.1380 191.15 199.79 11.35 33140 34.1390 188.86 199.82 11.27 33141 34.1400 188.50 199.85 11.29 33142 34.1410 190.93 199.87 11.34 33143 34.1420 206.94 199.90 11.75 33144 34.1430 199.59 199.94 11.63 33145 34.1440 206.00 199.97 11.79 33146 34.1450 196.25 200.01 11.50 33147 34.1460 189.12 200.05 11.21 33148 34.1470 199.43 200.09 11.59 33149 34.1480 183.39 200.14 11.13 33150 34.1490 194.04 200.19 11.45 33151 34.1500 203.08 200.24 11.68 33152 34.1510 209.19 200.30 11.87 33153 34.1520 185.59 200.35 11.15 33154 34.1530 192.34 200.41 11.36 33155 34.1540 199.87 200.47 11.59 33156 34.1550 204.11 200.54 11.72 33157 34.1560 201.19 200.60 11.63 33158 34.1570 200.62 200.67 11.66 33159 34.1580 194.23 200.74 11.43 33160 34.1590 189.93 200.82 11.27 33161 34.1600 188.72 200.90 11.22 33162 34.1610 198.67 200.98 11.56 33163 34.1620 207.50 201.07 11.82 33164 34.1630 218.31 201.15 12.13 33165 34.1640 213.42 201.25 12.00 33166 34.1650 200.98 201.34 11.70 33167 34.1660 200.31 201.44 11.59 33168 34.1670 201.14 201.54 11.63 33169 34.1680 210.30 201.65 11.89 33170 34.1690 207.09 201.76 11.80 33171 34.1700 213.66 201.88 12.02 33172 34.1710 203.85 202.00 11.71 33173 34.1720 204.66 202.12 11.75 33174 34.1730 200.34 202.25 11.61 33175 34.1740 201.59 202.38 11.67 33176 34.1750 202.68 202.52 11.68 33177 34.1760 202.46 202.66 11.71 33178 34.1770 183.40 202.81 11.14 33179 34.1780 201.07 202.97 11.64 33180 34.1790 202.33 203.13 11.68 33181 34.1800 215.61 203.29 12.04 33182 34.1810 211.16 203.46 11.91 33183 34.1820 209.66 203.64 11.91 33184 34.1830 222.00 203.83 12.20 33185 34.1840 206.14 204.02 11.72 33186 34.1850 203.30 204.21 11.66 33187 34.1860 206.89 204.42 11.82 33188 34.1870 203.94 204.63 11.72 33189 34.1880 198.96 204.85 11.57 33190 34.1890 215.16 205.08 12.01 33191 34.1900 223.32 205.32 12.28 33192 34.1910 210.99 205.57 11.94 33193 34.1920 219.35 205.83 12.10 33194 34.1930 200.14 206.09 11.65 33195 34.1940 203.97 206.37 11.73 33196 34.1950 216.40 206.66 12.09 33197 34.1960 198.27 206.96 11.54 33198 34.1970 208.00 207.27 11.84 33199 34.1980 209.17 207.59 11.88 33200 34.1990 202.66 207.93 11.72 33201 34.2000 215.86 208.28 12.03 33202 34.2010 192.63 208.65 11.35 33203 34.2020 224.11 209.02 12.29 33204 34.2030 215.04 209.42 12.09 33205 34.2040 217.22 209.83 12.06 33206 34.2050 233.99 210.26 12.49 33207 34.2060 201.99 210.71 11.67 33208 34.2070 213.73 211.18 11.99 33209 34.2080 215.54 211.67 12.06 33210 34.2090 210.73 212.18 11.89 33211 34.2100 212.82 212.72 12.01 33212 34.2110 216.42 213.27 12.04 33213 34.2120 194.79 213.86 11.41 33214 34.2130 226.25 214.47 12.35 33215 34.2140 216.15 215.11 12.06 33216 34.2150 219.13 215.78 12.16 33217 34.2160 206.40 216.48 11.79 33218 34.2170 209.39 217.22 11.89 33219 34.2180 214.45 217.99 12.06 33220 34.2190 226.39 218.81 12.37 33221 34.2200 221.98 219.66 12.18 33222 34.2210 208.47 220.56 11.80 33223 34.2220 212.03 221.50 11.92 33224 34.2230 234.90 222.49 12.56 33225 34.2240 217.89 223.53 12.08 33226 34.2250 211.82 224.63 11.94 33227 34.2260 215.61 225.79 12.05 33228 34.2270 227.17 227.01 12.33 33229 34.2280 218.35 228.30 12.15 33230 34.2290 214.25 229.65 12.01 33231 34.2300 225.41 231.08 12.36 33232 34.2310 243.44 232.59 12.79 33233 34.2320 252.55 234.18 13.03 33234 34.2330 237.97 236.16 12.67 33235 34.2340 236.88 237.94 12.64 33236 34.2350 244.14 239.82 12.82 33237 34.2360 248.72 241.80 12.94 33238 34.2370 244.41 243.89 12.83 33239 34.2380 237.29 246.10 12.66 33240 34.2390 242.78 248.42 12.76 33241 34.2400 266.68 250.88 13.35 33242 34.2410 250.42 253.46 13.04 33243 34.2420 268.70 256.17 13.43 33244 34.2430 286.31 259.02 13.90 33245 34.2440 276.36 262.01 13.62 33246 34.2450 269.31 265.13 13.48 33247 34.2460 273.15 268.39 13.56 33248 34.2470 257.36 271.80 13.15 33249 34.2480 272.19 275.30 13.51 33250 34.2490 287.28 278.93 13.85 33251 34.2500 280.61 282.65 13.73 33252 34.2510 266.25 286.44 13.39 33253 34.2520 287.67 290.29 13.90 33254 34.2530 276.79 294.16 13.66 33255 34.2540 294.09 298.01 14.12 33256 34.2550 302.46 301.80 14.28 33257 34.2560 314.80 305.48 14.57 33258 34.2570 317.27 309.00 14.66 33259 34.2580 345.61 312.31 15.25 33260 34.2590 316.46 315.35 14.60 33261 34.2600 341.51 318.06 15.16 33262 34.2610 326.60 320.42 14.83 33263 34.2620 331.39 322.34 14.94 33264 34.2630 335.49 323.81 15.02 33265 34.2640 329.24 324.80 14.86 33266 34.2650 346.20 325.30 15.25 33267 34.2660 319.17 325.32 14.66 33268 34.2670 304.75 324.87 14.33 33269 34.2680 328.80 323.97 14.87 33270 34.2690 345.21 322.67 15.27 33271 34.2700 337.15 321.02 15.06 33272 34.2710 324.59 319.07 14.79 33273 34.2720 307.96 316.88 14.41 33274 34.2730 329.55 314.51 14.88 33275 34.2740 330.36 312.01 14.91 33276 34.2750 281.41 309.44 13.76 33277 34.2760 284.45 306.87 13.84 33278 34.2770 318.46 304.31 14.69 33279 34.2780 304.81 301.83 14.36 33280 34.2790 300.60 299.45 14.22 33281 34.2800 302.56 297.20 14.32 33282 34.2810 279.94 295.09 13.77 33283 34.2820 318.72 293.17 14.68 33284 34.2830 312.76 291.35 14.56 33285 34.2840 294.84 289.80 14.09 33286 34.2850 307.00 288.46 14.41 33287 34.2860 299.61 287.33 14.19 33288 34.2870 282.17 286.39 13.82 33289 34.2880 304.94 285.67 14.35 33290 34.2890 284.66 285.14 13.87 33291 34.2900 297.11 284.81 14.13 33292 34.2910 307.13 284.67 14.38 33293 34.2920 304.86 284.69 14.30 33294 34.2930 294.31 284.86 14.12 33295 34.2940 275.58 285.17 13.59 33296 34.2950 269.52 285.60 13.44 33297 34.2960 287.92 286.12 13.90 33298 34.2970 285.77 286.69 13.85 33299 34.2980 307.31 287.29 14.36 33300 34.2990 287.29 287.89 13.88 33301 34.3000 294.11 288.45 14.02 33302 34.3010 292.29 288.93 14.00 33303 34.3020 290.19 289.31 14.02 33304 34.3030 277.78 289.54 13.66 33305 34.3040 300.63 289.59 14.15 33306 34.3050 290.33 289.45 13.92 33307 34.3060 296.86 289.10 14.12 33308 34.3070 311.51 288.53 14.50 33309 34.3080 288.56 287.73 13.97 33310 34.3090 290.10 286.70 13.94 33311 34.3100 297.02 285.46 14.22 33312 34.3110 276.32 284.03 13.72 33313 34.3120 293.55 282.43 14.09 33314 34.3130 286.28 280.68 13.92 33315 34.3140 277.73 278.80 13.72 33316 34.3150 283.41 276.82 13.79 33317 34.3160 282.59 274.76 13.78 33318 34.3170 291.77 272.64 14.01 33319 34.3180 279.06 270.49 13.69 33320 34.3190 237.20 268.33 12.63 33321 34.3200 251.08 266.16 13.00 33322 34.3210 258.03 263.99 13.15 33323 34.3220 275.90 261.86 13.62 33324 34.3230 245.94 259.74 12.85 33325 34.3240 255.54 257.67 13.15 33326 34.3250 269.03 255.65 13.48 33327 34.3260 265.64 253.67 13.36 33328 34.3270 245.88 251.75 12.82 33329 34.3280 274.94 249.89 13.62 33330 34.3290 269.21 248.08 13.47 33331 34.3300 230.90 246.34 12.49 33332 34.3310 256.48 244.66 13.17 33333 34.3320 240.61 243.05 12.71 33334 34.3330 247.71 241.49 12.87 33335 34.3340 249.46 240.01 12.97 33336 34.3350 267.00 238.58 13.44 33337 34.3360 250.61 237.18 12.98 33338 34.3370 226.56 235.88 12.36 33339 34.3380 218.29 234.64 12.12 33340 34.3390 220.14 233.45 12.15 33341 34.3400 220.06 232.33 12.14 33342 34.3410 229.53 231.26 12.47 33343 34.3420 231.59 230.24 12.47 33344 34.3430 223.17 229.29 12.24 33345 34.3440 235.77 228.38 12.62 33346 34.3450 237.63 227.52 12.67 33347 34.3460 221.95 226.72 12.23 33348 34.3470 233.04 225.97 12.51 33349 34.3480 222.37 225.26 12.21 33350 34.3490 232.06 224.60 12.40 33351 34.3500 214.08 223.98 11.98 33352 34.3510 211.65 223.40 11.90 33353 34.3520 227.02 222.87 12.35 33354 34.3530 214.69 222.37 12.06 33355 34.3540 228.36 221.92 12.40 33356 34.3550 241.02 221.50 12.75 33357 34.3560 216.27 221.11 12.06 33358 34.3570 228.33 220.76 12.44 33359 34.3580 249.55 220.44 13.02 33360 34.3590 224.27 220.15 12.26 33361 34.3600 212.11 219.89 11.95 33362 34.3610 216.83 219.66 12.09 33363 34.3620 217.52 219.47 12.06 33364 34.3630 216.31 219.29 12.12 33365 34.3640 215.25 219.15 12.08 33366 34.3650 197.43 219.04 11.51 33367 34.3660 224.14 218.95 12.31 33368 34.3670 228.85 218.88 12.43 33369 34.3680 210.42 218.84 11.87 33370 34.3690 219.54 218.83 12.13 33371 34.3700 221.36 218.84 12.20 33372 34.3710 211.02 218.88 11.96 33373 34.3720 231.94 218.94 12.54 33374 34.3730 219.47 219.02 12.16 33375 34.3740 228.30 219.13 12.40 33376 34.3750 241.13 219.27 12.75 33377 34.3760 207.42 219.43 11.79 33378 34.3770 212.59 219.61 11.97 33379 34.3780 213.37 219.82 11.98 33380 34.3790 214.25 220.06 11.95 33381 34.3800 209.21 220.33 11.85 33382 34.3810 210.48 220.62 11.86 33383 34.3820 235.54 220.94 12.57 33384 34.3830 221.32 221.28 12.15 33385 34.3840 219.73 221.66 12.14 33386 34.3850 215.25 222.07 12.04 33387 34.3860 224.27 222.50 12.29 33388 34.3870 218.21 222.98 12.10 33389 34.3880 231.27 223.48 12.48 33390 34.3890 230.93 224.02 12.46 33391 34.3900 219.91 224.58 12.14 33392 34.3910 223.60 225.20 12.24 33393 34.3920 222.46 225.85 12.22 33394 34.3930 222.44 226.54 12.27 33395 34.3940 241.22 227.28 12.76 33396 34.3950 228.46 228.06 12.36 33397 34.3960 245.35 228.90 12.81 33398 34.3970 232.95 229.78 12.51 33399 34.3980 237.32 230.71 12.61 33400 34.3990 245.57 231.71 12.84 33401 34.4000 239.19 232.76 12.67 33402 34.4010 226.93 233.88 12.34 33403 34.4020 233.62 235.06 12.56 33404 34.4030 235.29 236.31 12.60 33405 34.4040 222.12 237.70 12.21 33406 34.4050 233.57 239.11 12.54 33407 34.4060 230.04 240.61 12.45 33408 34.4070 234.92 242.20 12.61 33409 34.4080 255.70 243.88 13.12 33410 34.4090 249.18 245.67 12.95 33411 34.4100 249.60 247.57 12.98 33412 34.4110 246.46 249.58 12.88 33413 34.4120 239.34 251.72 12.69 33414 34.4130 253.16 253.99 12.99 33415 34.4140 255.11 256.42 13.05 33416 34.4150 253.90 258.99 13.03 33417 34.4160 234.74 261.73 12.55 33418 34.4170 241.90 264.63 12.73 33419 34.4180 252.32 267.72 13.05 33420 34.4190 259.40 271.02 13.26 33421 34.4200 266.62 274.52 13.37 33422 34.4210 273.23 278.26 13.52 33423 34.4220 273.24 282.24 13.52 33424 34.4230 289.29 286.45 13.92 33425 34.4240 316.36 290.94 14.60 33426 34.4250 292.35 295.72 14.00 33427 34.4260 284.06 300.77 13.86 33428 34.4270 288.53 306.15 13.92 33429 34.4280 321.01 311.87 14.66 33430 34.4290 328.40 317.90 14.84 33431 34.4300 338.69 324.26 15.07 33432 34.4310 339.72 330.96 15.14 33433 34.4320 341.20 337.97 15.13 33434 34.4330 333.41 345.32 14.99 33435 34.4340 334.03 352.98 14.99 33436 34.4350 356.37 360.90 15.46 33437 34.4360 373.22 369.06 15.84 33438 34.4370 362.61 377.39 15.60 33439 34.4380 401.16 385.80 16.43 33440 34.4390 399.98 394.24 16.43 33441 34.4400 394.10 402.59 16.29 33442 34.4410 450.39 410.72 17.44 33443 34.4420 425.12 418.48 16.96 33444 34.4430 440.23 425.73 17.19 33445 34.4440 465.34 432.30 17.71 33446 34.4450 487.68 438.05 18.15 33447 34.4460 469.91 442.82 17.78 33448 34.4470 438.49 446.47 17.15 33449 34.4480 449.43 448.91 17.38 33450 34.4490 450.97 450.06 17.41 33451 34.4500 451.92 449.87 17.41 33452 34.4510 438.29 448.37 17.16 33453 34.4520 417.69 445.59 16.77 33454 34.4530 417.40 441.64 16.75 33455 34.4540 416.60 436.62 16.75 33456 34.4550 428.46 430.64 17.00 33457 34.4560 414.22 423.91 16.72 33458 34.4570 397.67 416.59 16.39 33459 34.4580 401.80 408.79 16.43 33460 34.4590 376.25 400.68 15.91 33461 34.4600 382.84 392.43 16.09 33462 34.4610 367.35 384.10 15.71 33463 34.4620 326.73 375.79 14.81 33464 34.4630 342.71 367.67 15.17 33465 34.4640 359.86 359.72 15.57 33466 34.4650 340.16 352.02 15.12 33467 34.4660 327.85 344.64 14.85 33468 34.4670 311.42 337.55 14.52 33469 34.4680 333.35 330.80 14.97 33470 34.4690 338.10 324.38 15.09 33471 34.4700 307.17 318.31 14.33 33472 34.4710 297.07 312.58 14.11 33473 34.4720 302.77 307.21 14.27 33474 34.4730 295.86 302.14 14.10 33475 34.4740 286.45 297.13 13.83 33476 34.4750 287.45 292.70 13.96 33477 34.4760 288.94 288.52 13.96 33478 34.4770 274.97 284.64 13.61 33479 34.4780 269.22 281.03 13.43 33480 34.4790 266.95 277.66 13.42 33481 34.4800 277.86 274.52 13.65 33482 34.4810 247.79 271.61 12.89 33483 34.4820 251.02 268.91 12.99 33484 34.4830 273.70 266.39 13.52 33485 34.4840 273.14 264.08 13.53 33486 34.4850 275.29 261.93 13.59 33487 34.4860 247.97 259.96 12.87 33488 34.4870 235.17 258.14 12.60 33489 34.4880 246.44 256.47 12.89 33490 34.4890 248.29 254.94 12.97 33491 34.4900 245.31 253.53 12.88 33492 34.4910 249.72 252.25 12.96 33493 34.4920 269.42 251.09 13.47 33494 34.4930 245.81 250.03 12.92 33495 34.4940 242.83 249.07 12.78 33496 34.4950 268.29 248.20 13.49 33497 34.4960 248.11 247.43 12.91 33498 34.4970 246.51 246.73 12.89 33499 34.4980 251.86 246.12 13.01 33500 34.4990 256.81 245.58 13.14 33501 34.5000 253.83 245.10 13.06 33502 34.5010 262.75 244.70 13.31 33503 34.5020 247.98 244.36 12.90 33504 34.5030 247.27 244.08 12.85 33505 34.5040 259.26 243.85 13.22 33506 34.5050 249.51 243.68 12.99 33507 34.5060 243.05 243.56 12.76 33508 34.5070 242.23 243.48 12.77 33509 34.5080 235.54 243.43 12.56 33510 34.5090 253.07 243.41 13.06 33511 34.5100 226.50 243.41 12.34 33512 34.5110 238.06 243.41 12.65 33513 34.5120 255.66 243.41 13.14 33514 34.5130 243.89 243.39 12.81 33515 34.5140 237.33 243.34 12.66 33516 34.5150 234.37 243.24 12.57 33517 34.5160 255.21 243.09 13.09 33518 34.5170 249.68 242.86 12.97 33519 34.5180 253.57 242.55 13.05 33520 34.5190 236.27 242.16 12.60 33521 34.5200 241.66 241.67 12.78 33522 34.5210 234.39 241.09 12.59 33523 34.5220 231.73 240.41 12.50 33524 34.5230 244.55 239.63 12.83 33525 34.5240 239.19 238.78 12.72 33526 34.5250 233.31 237.84 12.52 33527 34.5260 226.85 236.83 12.35 33528 34.5270 233.54 235.77 12.51 33529 34.5280 219.14 234.67 12.15 33530 34.5290 223.99 233.53 12.23 33531 34.5300 240.71 232.38 12.72 33532 34.5310 241.21 231.21 12.75 33533 34.5320 224.29 230.04 12.23 33534 34.5330 226.63 228.89 12.30 33535 34.5340 226.46 227.75 12.37 33536 34.5350 215.29 226.63 12.07 33537 34.5360 218.90 225.55 12.13 33538 34.5370 225.92 224.49 12.30 33539 34.5380 216.84 223.46 12.08 33540 34.5390 218.17 222.48 12.11 33541 34.5400 232.28 221.53 12.50 33542 34.5410 200.15 220.62 11.60 33543 34.5420 217.02 219.75 12.07 33544 34.5430 218.33 218.92 12.12 33545 34.5440 229.57 218.13 12.39 33546 34.5450 216.52 217.38 12.05 33547 34.5460 209.61 216.65 11.88 33548 34.5470 211.76 215.97 11.97 33549 34.5480 199.35 215.32 11.61 33550 34.5490 196.60 214.71 11.50 33551 34.5500 231.66 214.12 12.48 33552 34.5510 214.47 213.57 12.00 33553 34.5520 206.57 213.04 11.75 33554 34.5530 216.58 212.54 12.11 33555 34.5540 216.73 212.07 12.10 33556 34.5550 211.06 211.62 11.94 33557 34.5560 202.85 211.19 11.74 33558 34.5570 208.05 210.79 11.79 33559 34.5580 223.80 210.41 12.27 33560 34.5590 219.02 210.05 12.16 33561 34.5600 214.87 209.71 12.00 33562 34.5610 232.46 209.39 12.51 33563 34.5620 217.03 209.09 12.07 33564 34.5630 207.62 208.80 11.85 33565 34.5640 196.61 208.53 11.48 33566 34.5650 191.14 208.27 11.32 33567 34.5660 199.23 208.03 11.58 33568 34.5670 220.24 207.81 12.20 33569 34.5680 200.71 207.60 11.63 33570 34.5690 208.26 207.40 11.88 33571 34.5700 199.30 207.21 11.55 33572 34.5710 208.26 207.04 11.83 33573 34.5720 203.53 206.88 11.70 33574 34.5730 218.04 206.73 12.08 33575 34.5740 204.54 206.59 11.70 33576 34.5750 200.97 206.46 11.64 33577 34.5760 200.38 206.34 11.58 33578 34.5770 202.94 206.23 11.68 33579 34.5780 205.75 206.14 11.79 33580 34.5790 216.56 206.05 12.10 33581 34.5800 206.40 205.97 11.79 33582 34.5810 206.14 205.91 11.73 33583 34.5820 206.58 205.85 11.75 33584 34.5830 197.15 205.80 11.50 33585 34.5840 198.38 205.76 11.57 33586 34.5850 189.60 205.73 11.32 33587 34.5860 190.28 205.71 11.32 33588 34.5870 206.59 205.70 11.76 33589 34.5880 202.60 205.70 11.64 33590 34.5890 207.96 205.70 11.84 33591 34.5900 211.28 205.72 11.92 33592 34.5910 193.20 205.75 11.38 33593 34.5920 198.04 205.78 11.56 33594 34.5930 201.31 205.83 11.62 33595 34.5940 220.19 205.88 12.16 33596 34.5950 215.58 205.95 12.01 33597 34.5960 199.22 206.02 11.55 33598 34.5970 215.29 206.11 12.03 33599 34.5980 200.82 206.20 11.60 33600 34.5990 214.55 206.31 12.01 33601 34.6000 232.80 206.43 12.51 33602 34.6010 225.27 206.56 12.31 33603 34.6020 222.13 206.70 12.19 33604 34.6030 200.70 206.85 11.63 33605 34.6040 199.71 207.02 11.61 33606 34.6050 186.37 207.20 11.19 33607 34.6060 217.23 207.40 12.04 33608 34.6070 206.01 207.60 11.77 33609 34.6080 203.98 207.83 11.70 33610 34.6090 207.81 208.06 11.81 33611 34.6100 214.01 208.32 11.99 33612 34.6110 222.35 208.59 12.19 33613 34.6120 225.21 208.88 12.29 33614 34.6130 196.05 209.18 11.40 33615 34.6140 204.63 209.51 11.76 33616 34.6150 205.32 209.85 11.75 33617 34.6160 205.90 210.22 11.78 33618 34.6170 199.72 210.60 11.55 33619 34.6180 213.02 211.01 11.94 33620 34.6190 207.73 211.45 11.78 33621 34.6200 219.65 211.90 12.15 33622 34.6210 199.57 212.39 11.54 33623 34.6220 199.21 212.89 11.53 33624 34.6230 212.16 213.43 11.91 33625 34.6240 222.19 213.99 12.25 33626 34.6250 234.07 214.59 12.59 33627 34.6260 219.43 215.20 12.15 33628 34.6270 225.31 215.85 12.31 33629 34.6280 230.78 216.52 12.43 33630 34.6290 229.01 217.22 12.38 33631 34.6300 222.27 217.95 12.25 33632 34.6310 208.40 218.70 11.85 33633 34.6320 216.40 219.47 12.08 33634 34.6330 224.38 220.27 12.26 33635 34.6340 211.57 221.08 11.88 33636 34.6350 233.80 221.91 12.56 33637 34.6360 221.85 222.75 12.20 33638 34.6370 215.09 223.60 12.04 33639 34.6380 222.13 224.45 12.25 33640 34.6390 220.27 225.30 12.21 33641 34.6400 220.09 226.15 12.18 33642 34.6410 241.57 226.99 12.75 33643 34.6420 227.14 227.82 12.38 33644 34.6430 237.52 228.64 12.61 33645 34.6440 236.71 229.45 12.60 33646 34.6450 239.59 230.26 12.75 33647 34.6460 213.24 231.05 11.98 33648 34.6470 238.09 231.85 12.65 33649 34.6480 237.64 232.65 12.66 33650 34.6490 236.74 233.46 12.62 33651 34.6500 241.32 234.30 12.74 33652 34.6510 228.52 235.16 12.42 33653 34.6520 241.73 236.07 12.81 33654 34.6530 249.08 237.02 12.96 33655 34.6540 239.98 238.04 12.67 33656 34.6550 225.68 239.13 12.27 33657 34.6560 221.50 240.30 12.17 33658 34.6570 233.20 241.79 12.54 33659 34.6580 235.53 243.17 12.59 33660 34.6590 229.60 244.65 12.39 33661 34.6600 254.73 246.26 13.08 33662 34.6610 247.45 248.01 12.89 33663 34.6620 230.11 249.90 12.49 33664 34.6630 224.11 251.95 12.28 33665 34.6640 230.55 254.17 12.48 33666 34.6650 228.54 256.56 12.43 33667 34.6660 250.72 259.13 12.98 33668 34.6670 231.40 261.91 12.46 33669 34.6680 275.75 264.88 13.60 33670 34.6690 274.85 268.08 13.61 33671 34.6700 277.67 271.50 13.66 33672 34.6710 258.69 275.15 13.20 33673 34.6720 271.63 279.04 13.54 33674 34.6730 258.11 283.17 13.19 33675 34.6740 289.46 287.53 13.95 33676 34.6750 300.44 292.14 14.23 33677 34.6760 305.11 296.98 14.26 33678 34.6770 313.05 302.02 14.49 33679 34.6780 324.55 307.29 14.81 33680 34.6790 311.97 312.70 14.53 33681 34.6800 295.45 318.21 14.15 33682 34.6810 322.31 323.81 14.75 33683 34.6820 321.98 329.41 14.72 33684 34.6830 337.90 334.92 15.09 33685 34.6840 359.38 340.28 15.53 33686 34.6850 387.27 345.40 16.14 33687 34.6860 361.06 350.11 15.55 33688 34.6870 358.48 354.35 15.48 33689 34.6880 365.43 357.99 15.66 33690 34.6890 379.55 360.93 15.95 33691 34.6900 381.44 363.09 16.08 33692 34.6910 365.35 364.39 15.75 33693 34.6920 392.34 364.79 16.30 33694 34.6930 372.76 364.27 15.86 33695 34.6940 374.85 362.85 15.89 33696 34.6950 370.50 360.57 15.81 33697 34.6960 380.80 357.49 16.00 33698 34.6970 356.84 353.70 15.51 33699 34.6980 337.54 349.30 15.06 33700 34.6990 334.38 344.43 15.05 33701 34.7000 335.90 339.16 15.08 33702 34.7010 323.65 333.62 14.77 33703 34.7020 320.04 327.92 14.71 33704 34.7030 321.54 322.11 14.70 33705 34.7040 295.09 316.30 14.10 33706 34.7050 271.90 310.55 13.54 33707 34.7060 303.67 304.91 14.33 33708 34.7070 291.86 299.42 14.03 33709 34.7080 280.49 294.14 13.70 33710 34.7090 278.88 289.04 13.72 33711 34.7100 285.95 284.16 13.85 33712 34.7110 252.21 279.53 12.96 33713 34.7120 262.80 275.10 13.28 33714 34.7130 275.29 270.92 13.60 33715 34.7140 273.84 266.97 13.58 33716 34.7150 247.82 263.24 12.91 33717 34.7160 240.42 259.71 12.70 33718 34.7170 262.12 256.41 13.29 33719 34.7180 245.87 253.28 12.90 33720 34.7190 264.84 250.33 13.36 33721 34.7200 252.85 247.58 13.04 33722 34.7210 263.81 244.98 13.32 33723 34.7220 253.35 242.53 13.06 33724 34.7230 226.77 240.24 12.36 33725 34.7240 245.27 238.08 12.85 33726 34.7250 224.21 236.04 12.29 33727 34.7260 222.53 234.12 12.20 33728 34.7270 242.19 232.32 12.76 33729 34.7280 240.41 230.62 12.64 33730 34.7290 229.92 229.02 12.43 33731 34.7300 231.94 227.51 12.49 33732 34.7310 218.24 226.08 12.08 33733 34.7320 223.21 224.74 12.24 33734 34.7330 218.96 223.46 12.07 33735 34.7340 217.03 222.25 12.04 33736 34.7350 199.63 221.12 11.53 33737 34.7360 193.49 220.04 11.40 33738 34.7370 207.25 219.01 11.79 33739 34.7380 221.29 218.05 12.21 33740 34.7390 208.18 217.13 11.89 33741 34.7400 208.64 216.25 11.88 33742 34.7410 216.66 215.42 12.10 33743 34.7420 224.84 214.64 12.32 33744 34.7430 208.93 213.89 11.85 33745 34.7440 210.88 213.18 11.96 33746 34.7450 195.34 212.50 11.45 33747 34.7460 206.23 211.85 11.74 33748 34.7470 218.07 211.23 12.09 33749 34.7480 216.63 210.65 12.04 33750 34.7490 226.76 210.09 12.34 33751 34.7500 208.91 209.55 11.86 33752 34.7510 215.03 209.04 12.05 33753 34.7520 206.04 208.55 11.76 33754 34.7530 208.27 208.08 11.84 33755 34.7540 200.57 207.64 11.65 33756 34.7550 215.36 207.21 12.04 33757 34.7560 200.79 206.80 11.64 33758 34.7570 204.12 206.41 11.73 33759 34.7580 215.99 206.03 12.04 33760 34.7590 212.58 205.67 11.97 33761 34.7600 198.29 205.51 11.51 33762 34.7610 200.04 205.18 11.60 33763 34.7620 211.48 204.86 11.97 33764 34.7630 199.05 204.56 11.59 33765 34.7640 195.42 204.27 11.48 33766 34.7650 201.83 203.99 11.65 33767 34.7660 211.15 203.72 11.93 33768 34.7670 194.79 203.46 11.49 33769 34.7680 204.99 203.22 11.79 33770 34.7690 203.15 202.98 11.70 33771 34.7700 199.44 202.75 11.58 33772 34.7710 203.72 202.54 11.73 33773 34.7720 200.77 202.33 11.64 33774 34.7730 192.18 201.93 11.37 33775 34.7740 199.63 201.74 11.57 33776 34.7750 202.90 201.55 11.68 33777 34.7760 197.86 201.37 11.53 33778 34.7770 198.40 201.21 11.56 33779 34.7780 214.78 201.25 11.98 33780 34.7790 192.21 201.09 11.35 33781 34.7800 193.30 200.93 11.40 33782 34.7810 195.41 200.79 11.45 33783 34.7820 215.68 200.66 12.04 33784 34.7830 195.53 200.53 11.45 33785 34.7840 192.84 200.40 11.31 33786 34.7850 199.57 200.29 11.57 33787 34.7860 171.19 200.18 10.71 33788 34.7870 189.57 200.07 11.28 33789 34.7880 196.58 199.97 11.53 33790 34.7890 200.18 199.88 11.62 33791 34.7900 181.88 199.79 11.09 33792 34.7910 215.27 199.70 12.06 33793 34.7920 202.79 199.62 11.69 33794 34.7930 193.89 199.55 11.45 33795 34.7940 201.35 199.48 11.68 33796 34.7950 209.81 199.41 11.87 33797 34.7960 193.57 199.35 11.42 33798 34.7970 196.60 199.30 11.52 33799 34.7980 205.79 199.25 11.80 33800 34.7990 189.81 199.20 11.32 33801 34.8000 186.95 199.16 11.23 33802 34.8010 199.10 199.13 11.51 33803 34.8020 188.03 199.10 11.18 33804 34.8030 203.58 199.07 11.65 33805 34.8040 204.72 199.05 11.70 33806 34.8050 201.58 199.03 11.63 33807 34.8060 204.60 199.02 11.70 33808 34.8070 189.82 198.91 11.30 33809 34.8080 207.91 198.91 11.84 33810 34.8090 210.17 198.91 11.92 33811 34.8100 204.46 198.92 11.75 33812 34.8110 185.40 198.94 11.17 33813 34.8120 188.61 198.96 11.23 33814 34.8130 206.42 198.99 11.75 33815 34.8140 203.36 199.02 11.69 33816 34.8150 198.23 199.06 11.55 33817 34.8160 201.49 199.10 11.62 33818 34.8170 194.16 199.15 11.41 33819 34.8180 179.31 199.21 10.97 33820 34.8190 218.48 199.28 12.13 33821 34.8200 222.60 199.35 12.26 33822 34.8210 196.34 199.43 11.46 33823 34.8220 176.25 199.52 10.87 33824 34.8230 197.54 199.62 11.52 33825 34.8240 209.51 199.73 11.85 33826 34.8250 209.14 199.84 11.89 33827 34.8260 198.68 199.97 11.56 33828 34.8270 207.17 200.10 11.81 33829 34.8280 204.29 200.25 11.68 33830 34.8290 195.45 200.41 11.39 33831 34.8300 209.26 200.58 11.85 33832 34.8310 207.04 200.76 11.80 33833 34.8320 191.04 200.96 11.30 33834 34.8330 199.33 201.17 11.58 33835 34.8340 189.04 201.63 11.29 33836 34.8350 203.96 201.87 11.71 33837 34.8360 196.50 202.13 11.53 33838 34.8370 194.37 202.41 11.46 33839 34.8380 187.20 202.71 11.28 33840 34.8390 184.91 203.03 11.12 33841 34.8400 183.84 203.37 11.16 33842 34.8410 211.45 203.73 11.94 33843 34.8420 222.55 204.12 12.26 33844 34.8430 209.89 204.53 11.89 33845 34.8440 213.26 204.98 11.99 33846 34.8450 210.65 205.45 11.91 33847 34.8460 202.11 205.96 11.68 33848 34.8470 186.72 206.50 11.25 33849 34.8480 195.73 207.07 11.46 33850 34.8490 203.77 207.68 11.76 33851 34.8500 212.73 208.34 11.97 33852 34.8510 211.25 209.03 11.87 33853 34.8520 199.60 209.76 11.59 33854 34.8530 203.55 210.55 11.73 33855 34.8540 195.98 211.37 11.46 33856 34.8550 222.33 212.24 12.28 33857 34.8560 214.81 213.16 12.02 33858 34.8570 209.21 214.12 11.86 33859 34.8580 222.85 215.13 12.24 33860 34.8590 218.77 216.19 12.08 33861 34.8600 214.13 217.28 11.97 33862 34.8610 209.87 218.40 11.90 33863 34.8620 198.12 219.55 11.55 33864 34.8630 221.05 220.71 12.12 33865 34.8640 214.34 221.88 11.96 33866 34.8650 226.74 223.04 12.39 33867 34.8660 212.55 224.17 11.94 33868 34.8670 218.82 225.26 12.14 33869 34.8680 219.57 226.28 12.16 33870 34.8690 236.15 227.21 12.64 33871 34.8700 215.48 228.04 12.04 33872 34.8710 208.30 228.74 11.84 33873 34.8720 212.01 229.29 11.92 33874 34.8730 220.90 229.69 12.22 33875 34.8740 246.19 229.91 12.92 33876 34.8750 245.83 229.96 12.85 33877 34.8760 238.52 229.84 12.70 33878 34.8770 211.99 229.54 11.94 33879 34.8780 225.32 229.09 12.30 33880 34.8790 225.98 228.49 12.32 33881 34.8800 222.36 227.77 12.30 33882 34.8810 221.82 226.94 12.19 33883 34.8820 223.41 226.04 12.24 33884 34.8830 220.70 225.07 12.18 33885 34.8840 225.63 224.06 12.33 33886 34.8850 216.10 223.03 12.02 33887 34.8860 215.89 221.99 11.98 33888 34.8870 210.39 220.96 11.89 33889 34.8880 223.26 219.95 12.27 33890 34.8890 228.23 218.98 12.41 33891 34.8900 226.76 218.05 12.37 33892 34.8910 199.51 217.16 11.59 33893 34.8920 190.37 216.32 11.35 33894 34.8930 198.76 215.54 11.55 33895 34.8940 216.11 214.81 12.12 33896 34.8950 206.91 214.14 11.82 33897 34.8960 196.18 213.53 11.46 33898 34.8970 201.63 212.97 11.63 33899 34.8980 217.08 212.47 12.06 33900 34.8990 230.47 212.03 12.45 33901 34.9000 214.34 211.63 11.97 33902 34.9010 201.63 211.30 11.67 33903 34.9020 179.52 211.01 11.00 33904 34.9030 198.71 210.78 11.56 33905 34.9040 212.06 210.59 11.98 33906 34.9050 204.34 210.45 11.75 33907 34.9060 204.77 210.35 11.78 33908 34.9070 210.68 210.29 11.94 33909 34.9080 206.08 210.26 11.76 33910 34.9090 218.68 210.27 12.14 33911 34.9100 206.60 210.31 11.80 33912 34.9110 206.05 210.38 11.83 33913 34.9120 190.81 210.46 11.39 33914 34.9130 195.34 210.55 11.47 33915 34.9140 212.26 210.65 11.91 33916 34.9150 211.17 210.75 11.89 33917 34.9160 190.21 210.41 11.26 33918 34.9170 200.96 210.49 11.62 33919 34.9180 206.52 210.54 11.78 33920 34.9190 203.84 210.56 11.71 33921 34.9200 195.63 210.54 11.51 33922 34.9210 207.53 210.49 11.81 33923 34.9220 206.71 210.38 11.80 33924 34.9230 219.50 210.22 12.17 33925 34.9240 219.31 210.01 12.17 33926 34.9250 193.60 209.74 11.40 33927 34.9260 207.76 209.43 11.79 33928 34.9270 203.32 209.08 11.69 33929 34.9280 196.37 208.68 11.50 33930 34.9290 194.29 208.26 11.43 33931 34.9300 199.81 207.80 11.60 33932 34.9310 200.75 207.32 11.57 33933 34.9320 197.55 206.83 11.51 33934 34.9330 199.82 206.33 11.59 33935 34.9340 206.51 205.83 11.79 33936 34.9350 199.95 205.35 11.62 33937 34.9360 194.92 204.86 11.44 33938 34.9370 212.03 204.37 11.92 33939 34.9380 209.68 203.90 11.92 33940 34.9390 190.51 203.44 11.31 33941 34.9400 203.29 203.00 11.67 33942 34.9410 214.33 202.57 12.05 33943 34.9420 206.50 202.16 11.76 33944 34.9430 193.61 201.77 11.43 33945 34.9440 183.91 201.40 11.13 33946 34.9450 194.99 201.05 11.51 33947 34.9460 205.54 200.71 11.79 33948 34.9470 194.16 200.39 11.44 33949 34.9480 187.26 200.09 11.26 33950 34.9490 185.80 199.81 11.20 33951 34.9500 202.81 199.54 11.65 33952 34.9510 200.47 199.28 11.65 33953 34.9520 196.36 199.04 11.56 33954 34.9530 208.50 198.82 11.88 33955 34.9540 194.98 198.60 11.48 33956 34.9550 191.84 198.40 11.34 33957 34.9560 205.35 198.21 11.72 33958 34.9570 190.34 198.03 11.31 33959 34.9580 197.61 197.86 11.50 33960 34.9590 182.43 197.70 11.04 33961 34.9600 196.41 197.55 11.55 33962 34.9610 192.73 197.41 11.41 33963 34.9620 202.22 197.28 11.73 33964 34.9630 181.97 197.15 11.06 33965 34.9640 189.72 197.03 11.27 33966 34.9650 181.39 196.92 11.08 33967 34.9660 189.69 196.82 11.27 33968 34.9670 201.36 196.72 11.67 33969 34.9680 197.69 196.63 11.54 33970 34.9690 200.63 196.54 11.65 33971 34.9700 182.36 196.46 11.10 33972 34.9710 175.38 196.38 10.86 33973 34.9720 205.92 196.31 11.77 33974 34.9730 213.55 196.24 11.94 33975 34.9740 207.29 196.18 11.72 33976 34.9750 194.83 196.12 11.47 33977 34.9760 210.49 196.07 11.90 33978 34.9770 196.75 196.02 11.50 33979 34.9780 176.18 195.97 10.85 33980 34.9790 201.81 195.93 11.62 33981 34.9800 196.13 195.89 11.48 33982 34.9810 179.71 196.06 10.99 33983 34.9820 201.35 196.03 11.67 33984 34.9830 208.07 196.00 11.84 33985 34.9840 207.54 195.97 11.87 33986 34.9850 191.06 195.95 11.38 33987 34.9860 186.19 195.93 11.23 33988 34.9870 187.99 195.90 11.27 33989 34.9880 200.01 195.89 11.57 33990 34.9890 207.05 195.88 11.80 33991 34.9900 184.05 195.87 11.09 33992 34.9910 175.82 195.86 10.86 33993 34.9920 187.68 195.86 11.27 33994 34.9930 186.47 195.86 11.19 33995 34.9940 195.69 195.86 11.47 33996 34.9950 184.68 195.86 11.12 33997 34.9960 197.49 195.86 11.55 33998 34.9970 199.25 195.87 11.56 33999 34.9980 188.68 195.88 11.25 34000 34.9990 182.44 195.89 11.08 34001 35.0000 190.91 195.91 11.28 34002 35.0010 180.50 195.92 11.00 34003 35.0020 195.08 195.94 11.45 34004 35.0030 195.81 195.96 11.52 34005 35.0040 194.60 195.99 11.42 34006 35.0050 192.50 196.01 11.36 34007 35.0060 194.17 196.04 11.46 34008 35.0070 215.99 196.07 12.05 34009 35.0080 206.56 196.10 11.84 34010 35.0090 193.06 196.14 11.41 34011 35.0100 191.74 196.18 11.37 34012 35.0110 197.34 196.31 11.52 34013 35.0120 180.94 196.35 11.03 34014 35.0130 183.40 196.40 11.10 34015 35.0140 197.07 196.44 11.56 34016 35.0150 208.24 196.49 11.85 34017 35.0160 214.23 196.55 12.03 34018 35.0170 187.09 196.60 11.20 34019 35.0180 202.95 196.66 11.69 34020 35.0190 187.65 196.72 11.21 34021 35.0200 203.70 196.79 11.71 34022 35.0210 190.93 196.86 11.36 34023 35.0220 178.04 196.93 10.93 34024 35.0230 192.83 197.00 11.35 34025 35.0240 190.04 197.08 11.33 34026 35.0250 179.00 197.16 10.99 34027 35.0260 189.81 197.25 11.30 34028 35.0270 195.41 197.34 11.44 34029 35.0280 194.50 197.43 11.44 34030 35.0290 186.45 197.53 11.17 34031 35.0300 195.07 197.63 11.42 34032 35.0310 179.44 197.74 10.92 34033 35.0320 200.60 197.85 11.62 34034 35.0330 191.75 197.96 11.39 34035 35.0340 200.97 198.08 11.63 34036 35.0350 187.13 198.21 11.22 34037 35.0360 194.53 198.34 11.45 34038 35.0370 197.77 198.48 11.52 34039 35.0380 205.60 198.62 11.74 34040 35.0390 207.35 198.77 11.79 34041 35.0400 206.94 198.93 11.81 34042 35.0410 200.05 199.05 11.54 34043 35.0420 212.05 199.22 11.94 34044 35.0430 190.58 199.40 11.30 34045 35.0440 200.18 199.58 11.56 34046 35.0450 205.46 199.77 11.69 34047 35.0460 196.88 199.98 11.49 34048 35.0470 191.66 200.19 11.34 34049 35.0480 177.93 200.40 10.91 34050 35.0490 204.65 200.63 11.71 34051 35.0500 190.80 200.86 11.33 34052 35.0510 184.64 201.10 11.10 34053 35.0520 202.79 201.35 11.67 34054 35.0530 222.86 201.60 12.24 34055 35.0540 200.03 201.86 11.55 34056 35.0550 210.74 202.13 11.90 34057 35.0560 197.62 202.39 11.55 34058 35.0570 210.40 202.66 11.91 34059 35.0580 201.00 202.93 11.62 34060 35.0590 196.22 203.20 11.47 34061 35.0600 201.37 203.47 11.66 34062 35.0610 188.52 203.74 11.29 34063 35.0620 202.63 204.00 11.68 34064 35.0630 198.95 204.26 11.57 34065 35.0640 204.18 204.51 11.76 34066 35.0650 213.17 204.76 12.01 34067 35.0660 200.18 205.01 11.64 34068 35.0670 214.49 205.24 11.99 34069 35.0680 197.73 205.48 11.56 34070 35.0690 197.58 205.72 11.58 34071 35.0700 207.24 205.96 11.80 34072 35.0710 188.38 206.20 11.28 34073 35.0720 212.45 206.44 11.98 34074 35.0730 227.03 206.70 12.37 34075 35.0740 215.72 206.96 12.04 34076 35.0750 193.78 207.23 11.39 34077 35.0760 204.76 207.51 11.77 34078 35.0770 210.40 207.82 11.87 34079 35.0780 201.07 208.13 11.67 34080 35.0790 211.91 208.47 12.00 34081 35.0800 205.11 208.83 11.74 34082 35.0810 197.67 209.22 11.54 34083 35.0820 231.56 209.62 12.52 34084 35.0830 200.42 210.05 11.64 34085 35.0840 196.06 210.50 11.54 34086 35.0850 192.95 210.97 11.44 34087 35.0860 202.50 211.47 11.67 34088 35.0870 221.95 211.99 12.20 34089 35.0880 215.44 212.52 12.02 34090 35.0890 204.52 213.07 11.72 34091 35.0900 213.92 213.64 12.01 34092 35.0910 212.42 214.21 11.95 34093 35.0920 219.53 214.78 12.18 34094 35.0930 216.19 215.35 12.07 34095 35.0940 220.29 215.91 12.18 34096 35.0950 219.45 216.46 12.25 34097 35.0960 221.60 216.99 12.25 34098 35.0970 227.80 217.49 12.39 34099 35.0980 224.88 217.98 12.32 34100 35.0990 225.25 218.43 12.29 34101 35.1000 215.91 218.86 12.03 34102 35.1010 211.06 219.27 11.96 34103 35.1020 225.65 219.66 12.37 34104 35.1030 218.96 220.03 12.15 34105 35.1040 218.49 220.40 12.15 34106 35.1050 229.52 220.77 12.41 34107 35.1060 202.53 221.15 11.62 34108 35.1070 222.45 221.55 12.22 34109 35.1080 215.81 221.97 12.08 34110 35.1090 214.26 222.42 12.03 34111 35.1100 210.57 222.91 11.93 34112 35.1110 221.09 223.44 12.20 34113 35.1120 206.77 224.02 11.84 34114 35.1130 230.25 224.65 12.46 34115 35.1140 233.98 225.35 12.55 34116 35.1150 200.65 226.10 11.63 34117 35.1160 215.53 226.93 12.03 34118 35.1170 243.07 227.82 12.75 34119 35.1180 232.96 228.78 12.53 34120 35.1190 231.56 229.83 12.47 34121 35.1200 213.59 230.95 11.99 34122 35.1210 221.02 232.16 12.20 34123 35.1220 233.40 233.46 12.55 34124 35.1230 227.65 234.85 12.40 34125 35.1240 225.90 236.34 12.34 34126 35.1250 229.99 237.92 12.41 34127 35.1260 233.16 239.62 12.51 34128 35.1270 233.62 241.41 12.50 34129 35.1280 241.03 243.33 12.66 34130 35.1290 229.91 245.37 12.41 34131 35.1300 258.31 247.53 13.18 34132 35.1310 248.52 249.81 12.98 34133 35.1320 260.48 252.23 13.29 34134 35.1330 258.29 254.77 13.18 34135 35.1340 255.95 257.45 13.13 34136 35.1350 247.54 260.26 12.91 34137 35.1360 252.35 263.23 13.00 34138 35.1370 253.05 266.30 13.04 34139 35.1380 270.19 269.50 13.46 34140 35.1390 279.03 272.82 13.71 34141 35.1400 285.30 276.23 13.84 34142 35.1410 288.95 279.74 13.98 34143 35.1420 295.77 283.32 14.13 34144 35.1430 304.26 286.94 14.37 34145 35.1440 314.82 290.56 14.56 34146 35.1450 309.37 294.16 14.49 34147 35.1460 316.93 297.68 14.62 34148 35.1470 291.29 301.09 13.98 34149 35.1480 304.82 304.34 14.33 34150 35.1490 307.52 307.36 14.38 34151 35.1500 322.91 310.12 14.70 34152 35.1510 318.23 312.56 14.62 34153 35.1520 318.67 314.33 14.64 34154 35.1530 346.67 315.99 15.24 34155 35.1540 339.09 317.21 15.06 34156 35.1550 334.22 317.98 15.02 34157 35.1560 333.92 318.28 14.97 34158 35.1570 340.64 318.12 15.13 34159 35.1580 335.98 317.52 15.00 34160 35.1590 323.06 316.51 14.73 34161 35.1600 298.67 315.12 14.16 34162 35.1610 326.58 313.41 14.84 34163 35.1620 325.82 311.42 14.81 34164 35.1630 306.79 309.21 14.37 34165 35.1640 307.67 306.84 14.42 34166 35.1650 300.70 304.34 14.21 34167 35.1660 292.09 301.78 14.00 34168 35.1670 276.26 299.21 13.66 34169 35.1680 289.38 296.66 13.93 34170 35.1690 292.96 294.16 14.04 34171 35.1700 284.18 291.75 13.87 34172 35.1710 272.31 289.45 13.54 34173 35.1720 264.17 287.29 13.27 34174 35.1730 279.57 285.28 13.72 34175 35.1740 291.41 283.45 13.97 34176 35.1750 274.73 281.79 13.59 34177 35.1760 281.80 280.32 13.77 34178 35.1770 268.69 279.05 13.50 34179 35.1780 264.58 277.98 13.40 34180 35.1790 252.13 277.13 13.02 34181 35.1800 274.29 276.50 13.57 34182 35.1810 279.18 276.73 13.67 34183 35.1820 281.95 276.54 13.75 34184 35.1830 261.32 276.57 13.26 34185 35.1840 279.91 276.82 13.71 34186 35.1850 292.60 277.31 14.08 34187 35.1860 275.99 278.02 13.65 34188 35.1870 261.90 278.97 13.29 34189 35.1880 271.21 280.15 13.48 34190 35.1890 289.04 281.55 13.88 34191 35.1900 306.17 283.19 14.39 34192 35.1910 301.53 285.06 14.27 34193 35.1920 293.30 287.12 14.02 34194 35.1930 289.53 289.40 13.95 34195 35.1940 287.69 291.87 13.98 34196 35.1950 301.04 294.50 14.25 34197 35.1960 293.33 297.27 14.04 34198 35.1970 290.03 300.15 13.93 34199 35.1980 325.62 303.09 14.78 34200 35.1990 322.64 306.04 14.75 34201 35.2000 330.40 308.94 14.98 34202 35.2010 338.55 311.72 15.13 34203 35.2020 346.98 314.32 15.28 34204 35.2030 344.92 316.66 15.26 34205 35.2040 332.10 318.66 14.93 34206 35.2050 345.17 320.27 15.25 34207 35.2060 343.71 321.41 15.23 34208 35.2070 348.91 322.04 15.31 34209 35.2080 332.46 322.13 15.02 34210 35.2090 332.25 321.68 14.99 34211 35.2100 343.77 320.69 15.15 34212 35.2110 361.99 319.19 15.65 34213 35.2120 346.42 317.21 15.33 34214 35.2130 308.08 314.85 14.42 34215 35.2140 343.93 312.14 15.21 34216 35.2150 323.36 309.17 14.75 34217 35.2160 320.07 306.01 14.69 34218 35.2170 315.50 302.72 14.61 34219 35.2180 303.45 299.37 14.33 34220 35.2190 305.48 296.01 14.39 34221 35.2200 335.24 292.72 15.04 34222 35.2210 324.93 289.51 14.83 34223 35.2220 287.25 286.41 13.92 34224 35.2230 273.01 283.48 13.51 34225 35.2240 256.36 280.69 13.11 34226 35.2250 262.96 278.10 13.33 34227 35.2260 261.15 275.67 13.27 34228 35.2270 263.19 273.45 13.32 34229 35.2280 269.09 271.42 13.49 34230 35.2290 277.55 269.59 13.64 34231 35.2300 256.96 267.95 13.13 34232 35.2310 272.19 267.24 13.53 34233 35.2320 284.45 266.00 13.91 34234 35.2330 273.06 264.93 13.55 34235 35.2340 263.85 264.05 13.34 34236 35.2350 262.49 263.35 13.26 34237 35.2360 266.84 262.83 13.41 34238 35.2370 265.61 262.49 13.39 34239 35.2380 264.11 262.32 13.33 34240 35.2390 250.50 262.32 13.01 34241 35.2400 241.38 262.49 12.77 34242 35.2410 273.84 262.83 13.59 34243 35.2420 253.32 263.35 13.04 34244 35.2430 238.38 264.03 12.67 34245 35.2440 271.16 264.89 13.51 34246 35.2450 270.54 265.92 13.51 34247 35.2460 268.72 267.13 13.48 34248 35.2470 262.93 268.52 13.34 34249 35.2480 271.15 270.08 13.48 34250 35.2490 265.13 271.83 13.37 34251 35.2500 258.08 273.75 13.18 34252 35.2510 255.98 275.85 13.10 34253 35.2520 279.51 278.14 13.76 34254 35.2530 268.89 280.59 13.45 34255 35.2540 290.31 283.23 13.96 34256 35.2550 294.88 286.02 14.09 34257 35.2560 283.90 288.96 13.78 34258 35.2570 295.12 292.04 14.03 34259 35.2580 313.24 295.24 14.46 34260 35.2590 327.77 298.51 14.80 34261 35.2600 333.69 301.86 14.99 34262 35.2610 336.20 305.23 15.04 34263 35.2620 308.44 308.56 14.38 34264 35.2630 323.11 311.82 14.71 34265 35.2640 318.97 314.95 14.67 34266 35.2650 332.34 317.88 14.98 34267 35.2660 327.24 320.57 14.80 34268 35.2670 327.40 322.94 14.83 34269 35.2680 346.57 324.93 15.29 34270 35.2690 345.22 326.48 15.25 34271 35.2700 335.02 327.57 15.02 34272 35.2710 341.93 328.13 15.19 34273 35.2720 327.20 328.17 14.82 34274 35.2730 320.12 327.68 14.68 34275 35.2740 371.93 326.66 15.82 34276 35.2750 342.44 325.13 15.19 34277 35.2760 325.11 323.14 14.80 34278 35.2770 321.53 320.73 14.73 34279 35.2780 308.23 317.98 14.40 34280 35.2790 285.43 314.92 13.80 34281 35.2800 297.37 311.63 14.10 34282 35.2810 311.32 308.18 14.51 34283 35.2820 305.46 304.59 14.36 34284 35.2830 291.31 300.95 14.00 34285 35.2840 291.23 297.31 14.02 34286 35.2850 302.56 293.68 14.26 34287 35.2860 289.05 290.11 14.00 34288 35.2870 271.06 286.64 13.44 34289 35.2880 281.60 283.27 13.75 34290 35.2890 289.86 280.01 14.00 34291 35.2900 270.94 276.92 13.47 34292 35.2910 289.68 273.95 13.98 34293 35.2920 278.56 271.14 13.69 34294 35.2930 272.86 268.50 13.58 34295 35.2940 241.62 266.00 12.73 34296 35.2950 262.76 263.65 13.29 34297 35.2960 241.88 261.45 12.77 34298 35.2970 256.67 259.40 13.19 34299 35.2980 265.51 257.49 13.44 34300 35.2990 257.48 255.73 13.22 34301 35.3000 263.89 254.09 13.37 34302 35.3010 258.26 252.58 13.21 34303 35.3020 247.36 251.20 12.95 34304 35.3030 259.13 249.93 13.23 34305 35.3040 257.16 248.77 13.15 34306 35.3050 266.52 247.74 13.39 34307 35.3060 251.32 246.80 13.02 34308 35.3070 240.92 245.96 12.73 34309 35.3080 232.08 245.23 12.53 34310 35.3090 258.94 244.59 13.21 34311 35.3100 236.90 244.04 12.62 34312 35.3110 236.55 243.58 12.59 34313 35.3120 232.13 243.22 12.47 34314 35.3130 255.34 242.93 13.08 34315 35.3140 261.00 242.74 13.24 34316 35.3150 237.70 242.62 12.62 34317 35.3160 232.98 242.59 12.49 34318 35.3170 233.91 242.64 12.56 34319 35.3180 235.54 242.78 12.58 34320 35.3190 238.95 242.99 12.69 34321 35.3200 256.93 243.29 13.18 34322 35.3210 243.82 243.68 12.81 34323 35.3220 242.38 244.14 12.73 34324 35.3230 252.65 244.70 13.00 34325 35.3240 261.51 245.34 13.27 34326 35.3250 254.97 246.08 13.11 34327 35.3260 232.59 246.90 12.51 34328 35.3270 255.07 247.82 13.13 34329 35.3280 254.08 248.84 13.10 34330 35.3290 245.46 249.96 12.91 34331 35.3300 252.15 251.19 13.05 34332 35.3310 260.66 252.53 13.24 34333 35.3320 259.96 253.98 13.26 34334 35.3330 269.63 255.54 13.44 34335 35.3340 272.96 257.23 13.55 34336 35.3350 254.66 259.04 13.09 34337 35.3360 254.49 260.98 13.06 34338 35.3370 260.75 263.07 13.29 34339 35.3380 244.60 265.30 12.85 34340 35.3390 271.50 267.65 13.53 34341 35.3400 276.53 270.17 13.64 34342 35.3410 265.48 272.84 13.34 34343 35.3420 272.99 275.64 13.56 34344 35.3430 270.86 278.62 13.54 34345 35.3440 285.96 281.75 13.84 34346 35.3450 272.89 285.02 13.52 34347 35.3460 287.33 288.38 13.91 34348 35.3470 285.67 291.94 13.88 34349 35.3480 281.13 295.61 13.76 34350 35.3490 286.56 299.40 13.87 34351 35.3500 305.79 303.29 14.30 34352 35.3510 324.40 307.24 14.77 34353 35.3520 309.87 311.22 14.44 34354 35.3530 313.60 315.21 14.52 34355 35.3540 316.65 319.20 14.55 34356 35.3550 340.73 323.06 15.14 34357 35.3560 320.20 326.77 14.70 34358 35.3570 349.07 330.28 15.34 34359 35.3580 332.25 333.56 14.97 34360 35.3590 319.51 336.52 14.70 34361 35.3600 330.33 339.11 14.93 34362 35.3610 348.65 341.29 15.36 34363 35.3620 342.94 343.01 15.19 34364 35.3630 334.94 344.24 15.02 34365 35.3640 352.92 344.96 15.40 34366 35.3650 323.94 345.15 14.77 34367 35.3660 328.15 344.82 14.90 34368 35.3670 320.76 343.98 14.73 34369 35.3680 337.38 342.67 15.08 34370 35.3690 349.26 340.92 15.40 34371 35.3700 320.32 338.78 14.72 34372 35.3710 311.28 336.30 14.53 34373 35.3720 327.99 333.52 14.85 34374 35.3730 308.66 330.55 14.41 34375 35.3740 302.43 327.40 14.27 34376 35.3750 312.51 324.13 14.51 34377 35.3760 303.27 320.80 14.34 34378 35.3770 307.87 317.44 14.42 34379 35.3780 289.47 314.09 13.91 34380 35.3790 312.64 310.78 14.56 34381 35.3800 298.21 307.52 14.19 34382 35.3810 285.70 304.34 13.88 34383 35.3820 293.24 301.26 14.03 34384 35.3830 287.53 298.24 13.91 34385 35.3840 289.82 295.32 13.98 34386 35.3850 293.38 292.47 14.04 34387 35.3860 280.48 289.68 13.75 34388 35.3870 278.54 286.97 13.72 34389 35.3880 268.50 284.31 13.50 34390 35.3890 254.47 281.69 13.09 34391 35.3900 277.28 279.11 13.62 34392 35.3910 267.85 276.60 13.45 34393 35.3920 281.67 274.09 13.80 34394 35.3930 274.92 271.60 13.63 34395 35.3940 269.10 269.17 13.49 34396 35.3950 269.34 266.78 13.52 34397 35.3960 245.17 264.45 12.83 34398 35.3970 267.63 262.17 13.41 34399 35.3980 251.74 259.96 13.06 34400 35.3990 251.78 257.82 13.04 34401 35.4000 262.25 255.76 13.31 34402 35.4010 241.43 253.78 12.82 34403 35.4020 245.16 251.89 12.83 34404 35.4030 243.07 250.09 12.86 34405 35.4040 231.88 248.38 12.57 34406 35.4050 231.09 246.76 12.46 34407 35.4060 210.45 245.23 11.93 34408 35.4070 227.36 243.78 12.42 34409 35.4080 234.49 242.42 12.58 34410 35.4090 234.25 241.15 12.55 34411 35.4100 244.15 239.96 12.82 34412 35.4110 233.58 238.85 12.50 34413 35.4120 253.94 237.82 13.09 34414 35.4130 230.73 236.86 12.51 34415 35.4140 219.16 235.97 12.19 34416 35.4150 236.33 235.14 12.62 34417 35.4160 226.77 234.39 12.37 34418 35.4170 234.96 233.67 12.62 34419 35.4180 226.28 233.04 12.38 34420 35.4190 214.41 232.46 11.99 34421 35.4200 222.01 231.94 12.24 34422 35.4210 235.54 231.47 12.59 34423 35.4220 234.07 231.06 12.53 34424 35.4230 221.09 230.70 12.20 34425 35.4240 216.61 230.38 12.11 34426 35.4250 220.62 230.12 12.19 34427 35.4260 223.91 229.90 12.25 34428 35.4270 242.22 229.73 12.78 34429 35.4280 231.59 229.60 12.50 34430 35.4290 251.13 229.52 13.05 34431 35.4300 232.73 229.49 12.54 34432 35.4310 224.25 229.50 12.29 34433 35.4320 218.11 229.55 12.14 34434 35.4330 233.70 229.66 12.51 34435 35.4340 245.23 229.80 12.85 34436 35.4350 221.29 229.99 12.24 34437 35.4360 232.45 230.23 12.50 34438 35.4370 226.72 230.51 12.38 34439 35.4380 233.07 230.85 12.54 34440 35.4390 232.28 231.23 12.48 34441 35.4400 241.58 231.66 12.76 34442 35.4410 218.99 232.15 12.17 34443 35.4420 231.68 232.69 12.49 34444 35.4430 244.14 233.29 12.83 34445 35.4440 226.64 233.94 12.28 34446 35.4450 249.90 234.65 12.95 34447 35.4460 244.84 235.43 12.83 34448 35.4470 246.23 236.27 12.86 34449 35.4480 241.29 237.19 12.73 34450 35.4490 239.04 238.17 12.66 34451 35.4500 236.00 239.23 12.58 34452 35.4510 234.57 240.37 12.55 34453 35.4520 222.94 241.59 12.25 34454 35.4530 247.22 242.90 12.89 34455 35.4540 259.07 244.31 13.26 34456 35.4550 262.30 245.82 13.34 34457 35.4560 245.66 247.41 12.86 34458 35.4570 238.56 249.12 12.66 34459 35.4580 255.75 250.95 13.14 34460 35.4590 254.02 252.88 13.13 34461 35.4600 243.33 254.94 12.79 34462 35.4610 249.39 257.13 12.94 34463 35.4620 235.43 259.46 12.56 34464 35.4630 252.93 261.92 13.06 34465 35.4640 265.95 264.52 13.37 34466 35.4650 276.21 267.25 13.60 34467 35.4660 271.65 270.13 13.52 34468 35.4670 274.23 273.16 13.59 34469 35.4680 270.34 276.32 13.51 34470 35.4690 289.43 279.64 13.98 34471 35.4700 277.08 283.07 13.64 34472 35.4710 310.86 286.60 14.44 34473 35.4720 318.42 290.25 14.67 34474 35.4730 309.98 293.98 14.45 34475 35.4740 301.25 297.74 14.29 34476 35.4750 298.51 301.53 14.18 34477 35.4760 308.22 305.32 14.41 34478 35.4770 305.96 309.01 14.35 34479 35.4780 324.24 312.61 14.73 34480 35.4790 318.13 316.04 14.58 34481 35.4800 318.80 319.23 14.64 34482 35.4810 327.39 322.15 14.91 34483 35.4820 352.14 324.73 15.44 34484 35.4830 345.19 326.92 15.27 34485 35.4840 333.51 328.68 15.02 34486 35.4850 340.74 329.96 15.16 34487 35.4860 320.43 330.73 14.70 34488 35.4870 354.72 331.01 15.41 34489 35.4880 334.63 330.77 14.97 34490 35.4890 328.60 330.05 14.86 34491 35.4900 318.23 328.86 14.66 34492 35.4910 354.19 327.25 15.47 34493 35.4920 323.28 325.29 14.75 34494 35.4930 331.55 323.00 14.94 34495 35.4940 350.82 320.45 15.40 34496 35.4950 307.41 317.73 14.38 34497 35.4960 314.74 314.85 14.50 34498 35.4970 300.25 311.88 14.22 34499 35.4980 314.56 308.90 14.55 34500 35.4990 309.98 305.93 14.47 34501 35.5000 303.39 303.00 14.34 34502 35.5010 283.26 300.17 13.85 34503 35.5020 285.42 297.44 13.85 34504 35.5030 292.52 294.85 13.98 34505 35.5040 298.49 292.40 14.11 34506 35.5050 303.56 290.14 14.31 34507 35.5060 278.74 288.04 13.72 34508 35.5070 288.54 286.13 13.95 34509 35.5080 296.40 284.40 14.16 34510 35.5090 286.69 282.86 13.84 34511 35.5100 297.97 281.52 14.17 34512 35.5110 305.51 280.35 14.40 34513 35.5120 315.89 279.36 14.60 34514 35.5130 287.00 278.56 13.86 34515 35.5140 280.56 277.93 13.72 34516 35.5150 288.78 277.46 13.88 34517 35.5160 295.95 277.14 14.13 34518 35.5170 299.16 276.96 14.20 34519 35.5180 274.75 276.92 13.59 34520 35.5190 281.73 276.99 13.80 34521 35.5200 262.72 277.17 13.24 34522 35.5210 294.09 277.42 14.07 34523 35.5220 275.66 277.73 13.64 34524 35.5230 278.49 278.09 13.72 34525 35.5240 272.21 278.46 13.54 34526 35.5250 279.38 278.82 13.72 34527 35.5260 292.97 279.14 14.05 34528 35.5270 280.39 279.40 13.71 34529 35.5280 289.78 279.57 13.92 34530 35.5290 301.17 279.63 14.24 34531 35.5300 302.85 279.56 14.29 34532 35.5310 278.87 279.34 13.71 34533 35.5320 279.57 278.96 13.71 34534 35.5330 281.55 278.42 13.76 34535 35.5340 294.55 277.70 14.12 34536 35.5350 301.99 276.82 14.29 34537 35.5360 298.87 275.79 14.22 34538 35.5370 264.85 274.61 13.35 34539 35.5380 274.44 273.32 13.56 34540 35.5390 272.33 271.90 13.54 34541 35.5400 273.54 270.41 13.58 34542 35.5410 253.84 268.84 13.07 34543 35.5420 258.56 267.24 13.15 34544 35.5430 267.06 265.61 13.43 34545 35.5440 265.99 263.99 13.34 34546 35.5450 271.81 262.38 13.55 34547 35.5460 247.31 260.78 12.94 34548 35.5470 260.44 259.24 13.27 34549 35.5480 245.25 257.74 12.83 34550 35.5490 267.41 256.30 13.44 34551 35.5500 257.14 254.93 13.18 34552 35.5510 244.75 253.63 12.82 34553 35.5520 278.07 252.40 13.71 34554 35.5530 265.16 251.24 13.41 34555 35.5540 249.82 250.17 12.99 34556 35.5550 259.76 249.17 13.20 34557 35.5560 258.64 248.25 13.21 34558 35.5570 235.23 247.41 12.60 34559 35.5580 268.48 246.64 13.45 34560 35.5590 255.32 245.95 13.09 34561 35.5600 247.43 245.33 12.92 34562 35.5610 269.93 244.78 13.50 34563 35.5620 243.35 244.31 12.82 34564 35.5630 258.47 243.90 13.20 34565 35.5640 250.22 243.56 13.00 34566 35.5650 260.38 243.29 13.22 34567 35.5660 252.72 243.07 13.05 34568 35.5670 263.33 242.93 13.34 34569 35.5680 242.95 242.84 12.77 34570 35.5690 266.86 242.82 13.38 34571 35.5700 233.81 242.85 12.53 34572 35.5710 246.30 242.95 12.89 34573 35.5720 241.64 243.10 12.75 34574 35.5730 248.60 243.31 12.94 34575 35.5740 265.59 243.58 13.36 34576 35.5750 251.70 243.91 13.04 34577 35.5760 243.44 244.30 12.81 34578 35.5770 250.50 244.75 12.95 34579 35.5780 253.78 245.26 13.02 34580 35.5790 256.80 245.82 13.12 34581 35.5800 254.56 246.46 13.11 34582 35.5810 262.53 247.15 13.29 34583 35.5820 256.83 247.90 13.13 34584 35.5830 272.04 248.73 13.49 34585 35.5840 280.00 249.62 13.69 34586 35.5850 275.09 250.58 13.56 34587 35.5860 254.90 251.61 13.11 34588 35.5870 245.55 252.72 12.85 34589 35.5880 259.15 253.91 13.21 34590 35.5890 242.94 255.18 12.82 34591 35.5900 254.54 256.53 13.11 34592 35.5910 282.43 257.97 13.78 34593 35.5920 270.43 259.51 13.49 34594 35.5930 265.67 261.13 13.41 34595 35.5940 261.68 262.88 13.32 34596 35.5950 275.83 264.72 13.65 34597 35.5960 251.04 266.67 12.99 34598 35.5970 277.22 268.75 13.63 34599 35.5980 275.38 270.96 13.63 34600 35.5990 282.86 273.29 13.79 34601 35.6000 280.82 275.78 13.74 34602 35.6010 276.01 278.42 13.68 34603 35.6020 283.74 281.22 13.83 34604 35.6030 304.54 284.18 14.33 34605 35.6040 292.62 287.33 14.04 34606 35.6050 287.56 290.68 13.90 34607 35.6060 278.18 294.22 13.67 34608 35.6070 287.97 297.99 13.91 34609 35.6080 308.30 302.01 14.47 34610 35.6090 310.84 306.25 14.48 34611 35.6100 310.43 310.77 14.40 34612 35.6110 307.66 315.58 14.34 34613 35.6120 313.27 320.66 14.55 34614 35.6130 307.57 326.08 14.41 34615 35.6140 297.98 331.84 14.13 34616 35.6150 335.18 337.96 14.91 34617 35.6160 331.33 344.45 14.96 34618 35.6170 363.15 351.35 15.66 34619 35.6180 355.04 358.64 15.45 34620 35.6190 336.81 366.40 15.10 34621 35.6200 366.08 374.63 15.71 34622 35.6210 363.58 383.30 15.69 34623 35.6220 361.13 392.54 15.60 34624 35.6230 377.95 402.25 15.96 34625 35.6240 390.47 412.44 16.17 34626 35.6250 389.16 423.17 16.16 34627 35.6260 427.11 434.40 16.94 34628 35.6270 403.30 446.07 16.50 34629 35.6280 435.08 458.21 17.10 34630 35.6290 469.30 470.78 17.74 34631 35.6300 436.16 483.56 17.10 34632 35.6310 466.56 496.58 17.72 34633 35.6320 499.52 509.66 18.31 34634 35.6330 503.59 522.62 18.40 34635 35.6340 515.05 535.36 18.66 34636 35.6350 511.37 547.62 18.56 34637 35.6360 526.99 559.19 18.78 34638 35.6370 545.41 569.81 19.15 34639 35.6380 592.61 579.26 19.93 34640 35.6390 582.99 587.27 19.78 34641 35.6400 603.14 593.69 20.19 34642 35.6410 590.96 598.33 19.99 34643 35.6420 576.19 601.05 19.68 34644 35.6430 568.10 601.82 19.57 34645 35.6440 555.39 600.61 19.36 34646 35.6450 549.72 597.52 19.30 34647 35.6460 532.33 592.64 18.94 34648 35.6470 529.81 586.16 18.87 34649 35.6480 539.87 578.31 19.09 34650 35.6490 519.62 569.28 18.73 34651 35.6500 517.03 559.30 18.69 34652 35.6510 530.86 548.69 18.94 34653 35.6520 496.12 537.67 18.27 34654 35.6530 494.22 526.39 18.21 34655 35.6540 453.86 515.05 17.44 34656 35.6550 441.01 503.88 17.24 34657 35.6560 441.79 492.91 17.25 34658 35.6570 451.03 482.10 17.44 34659 35.6580 420.64 471.96 16.83 34660 35.6590 409.98 462.30 16.65 34661 35.6600 430.54 453.19 17.03 34662 35.6610 433.76 444.68 17.10 34663 35.6620 414.94 436.75 16.69 34664 35.6630 387.64 429.42 16.13 34665 35.6640 423.47 422.70 16.88 34666 35.6650 400.28 416.59 16.38 34667 35.6660 393.92 410.89 16.33 34668 35.6670 385.22 405.99 16.18 34669 35.6680 382.80 401.64 16.05 34670 35.6690 365.35 397.86 15.66 34671 35.6700 392.21 394.65 16.27 34672 35.6710 373.83 391.96 15.85 34673 35.6720 379.42 389.81 15.98 34674 35.6730 360.39 388.20 15.62 34675 35.6740 365.14 387.09 15.71 34676 35.6750 366.70 386.50 15.68 34677 35.6760 378.54 386.41 15.96 34678 35.6770 404.43 386.84 16.55 34679 35.6780 385.60 387.77 16.11 34680 35.6790 382.37 389.45 16.05 34681 35.6800 381.64 391.41 16.02 34682 35.6810 380.28 393.89 15.96 34683 35.6820 364.43 396.88 15.68 34684 35.6830 400.29 400.42 16.46 34685 35.6840 420.15 404.51 16.83 34686 35.6850 401.87 409.17 16.43 34687 35.6860 390.89 414.39 16.19 34688 35.6870 408.97 420.20 16.60 34689 35.6880 425.06 426.58 16.92 34690 35.6890 415.02 433.60 16.70 34691 35.6900 431.55 441.22 17.03 34692 35.6910 419.76 449.50 16.83 34693 35.6920 447.16 458.34 17.39 34694 35.6930 470.45 467.82 17.79 34695 35.6940 479.73 477.87 18.02 34696 35.6950 493.92 488.52 18.24 34697 35.6960 484.11 499.71 18.06 34698 35.6970 526.58 511.33 18.86 34699 35.6980 518.53 523.43 18.70 34700 35.6990 546.91 535.81 19.20 34701 35.7000 568.82 548.36 19.58 34702 35.7010 587.80 560.92 19.90 34703 35.7020 611.17 573.39 20.31 34704 35.7030 620.01 585.53 20.50 34705 35.7040 659.53 597.08 21.08 34706 35.7050 642.82 607.93 20.84 34707 35.7060 686.97 617.71 21.52 34708 35.7070 688.77 626.20 21.53 34709 35.7080 723.44 633.21 22.08 34710 35.7090 725.69 638.50 22.12 34711 35.7100 711.88 641.91 21.95 34712 35.7110 693.45 643.32 21.58 34713 35.7120 719.88 642.66 22.01 34714 35.7130 692.67 639.94 21.62 34715 35.7140 671.97 635.20 21.31 34716 35.7150 639.53 628.57 20.79 34717 35.7160 641.91 620.23 20.82 34718 35.7170 622.28 610.34 20.48 34719 35.7180 612.34 599.14 20.34 34720 35.7190 575.33 586.89 19.70 34721 35.7200 569.33 573.82 19.65 34722 35.7210 550.25 560.17 19.29 34723 35.7220 534.02 546.20 18.97 34724 35.7230 513.12 532.01 18.62 34725 35.7240 508.71 517.82 18.56 34726 35.7250 498.58 503.82 18.38 34727 35.7260 462.45 489.98 17.67 34728 35.7270 465.06 476.54 17.69 34729 35.7280 452.39 463.56 17.42 34730 35.7290 417.59 451.02 16.76 34731 35.7300 447.06 438.99 17.34 34732 35.7310 439.05 427.53 17.25 34733 35.7320 415.53 416.57 16.74 34734 35.7330 415.82 406.12 16.74 34735 35.7340 395.57 396.27 16.33 34736 35.7350 385.11 386.92 16.15 34737 35.7360 394.17 378.09 16.37 34738 35.7370 354.29 369.77 15.42 34739 35.7380 358.16 361.90 15.48 34740 35.7390 351.66 354.48 15.35 34741 35.7400 335.94 347.46 15.03 34742 35.7410 340.20 340.90 15.12 34743 35.7420 317.44 334.70 14.64 34744 35.7430 333.08 328.89 14.97 34745 35.7440 334.26 323.40 15.05 34746 35.7450 323.54 318.24 14.78 34747 35.7460 302.55 313.39 14.26 34748 35.7470 293.39 308.80 14.00 34749 35.7480 314.45 304.50 14.52 34750 35.7490 305.64 300.44 14.33 34751 35.7500 311.23 296.63 14.53 34752 35.7510 305.91 293.03 14.37 34753 35.7520 290.38 289.63 14.02 34754 35.7530 286.51 286.42 13.92 34755 35.7540 281.22 283.37 13.79 34756 35.7550 269.06 280.49 13.51 34757 35.7560 293.89 277.76 14.09 34758 35.7570 300.72 275.16 14.26 34759 35.7580 283.47 272.67 13.83 34760 35.7590 281.36 270.30 13.72 34761 35.7600 274.73 268.02 13.58 34762 35.7610 288.37 265.81 13.96 34763 35.7620 271.20 263.70 13.50 34764 35.7630 243.10 261.64 12.79 34765 35.7640 267.48 259.65 13.45 34766 35.7650 268.86 257.72 13.48 34767 35.7660 257.83 255.63 13.13 34768 35.7670 266.61 253.80 13.39 34769 35.7680 271.98 252.02 13.54 34770 35.7690 265.63 250.28 13.41 34771 35.7700 256.06 248.59 13.14 34772 35.7710 253.77 246.95 13.06 34773 35.7720 247.73 245.36 12.89 34774 35.7730 265.88 243.81 13.35 34775 35.7740 232.25 242.32 12.50 34776 35.7750 251.42 240.86 13.03 34777 35.7760 245.15 239.46 12.83 34778 35.7770 245.77 238.12 12.89 34779 35.7780 256.80 236.81 13.15 34780 35.7790 247.53 235.56 12.86 34781 35.7800 256.80 234.35 13.22 34782 35.7810 247.64 233.19 12.99 34783 35.7820 259.19 232.07 13.28 34784 35.7830 233.82 230.99 12.54 34785 35.7840 228.91 229.96 12.47 34786 35.7850 248.03 228.96 12.93 34787 35.7860 247.72 228.01 12.94 34788 35.7870 249.44 227.09 13.01 34789 35.7880 237.37 226.21 12.71 34790 35.7890 240.40 225.36 12.72 34791 35.7900 234.34 224.54 12.56 34792 35.7910 234.54 223.76 12.53 34793 35.7920 222.95 223.01 12.24 34794 35.7930 224.93 222.28 12.29 34795 35.7940 237.17 221.58 12.63 34796 35.7950 240.73 220.91 12.74 34797 35.7960 227.39 220.27 12.40 34798 35.7970 213.42 219.65 12.01 34799 35.7980 237.00 219.05 12.61 34800 35.7990 209.00 218.47 11.84 34801 35.8000 224.71 217.92 12.31 34802 35.8010 204.18 217.39 11.76 34803 35.8020 199.86 216.88 11.65 34804 35.8030 206.75 216.38 11.84 34805 35.8040 205.02 215.90 11.73 34806 35.8050 228.75 215.45 12.44 34807 35.8060 214.13 215.01 11.99 34808 35.8070 217.73 214.58 12.13 34809 35.8080 218.79 214.18 12.14 34810 35.8090 222.36 213.78 12.28 34811 35.8100 219.53 213.40 12.17 34812 35.8110 233.32 213.04 12.52 34813 35.8120 226.99 212.69 12.38 34814 35.8130 208.59 212.36 11.86 34815 35.8140 211.44 212.04 11.95 34816 35.8150 200.28 211.73 11.58 34817 35.8160 220.48 211.43 12.20 34818 35.8170 211.84 211.15 11.92 34819 35.8180 212.77 210.88 11.93 34820 35.8190 208.90 210.62 11.91 34821 35.8200 219.80 210.37 12.15 34822 35.8210 209.77 210.14 11.88 34823 35.8220 201.13 209.91 11.67 34824 35.8230 205.16 209.70 11.76 34825 35.8240 209.74 209.50 11.88 34826 35.8250 215.02 209.31 12.03 34827 35.8260 206.04 209.13 11.79 34828 35.8270 188.36 208.96 11.25 34829 35.8280 212.67 208.80 11.97 34830 35.8290 203.03 208.65 11.68 34831 35.8300 215.66 208.52 12.08 34832 35.8310 222.02 208.39 12.21 34833 35.8320 206.95 208.28 11.81 34834 35.8330 215.40 208.17 12.12 34835 35.8340 226.58 208.08 12.35 34836 35.8350 210.97 208.00 11.95 34837 35.8360 201.32 207.93 11.65 34838 35.8370 212.93 207.87 11.99 34839 35.8380 204.33 207.82 11.74 34840 35.8390 209.70 207.79 11.90 34841 35.8400 222.43 207.76 12.23 34842 35.8410 211.35 207.75 11.93 34843 35.8420 221.65 207.75 12.18 34844 35.8430 204.36 207.77 11.70 34845 35.8440 209.02 207.79 11.87 34846 35.8450 195.65 207.80 11.49 34847 35.8460 196.45 207.86 11.52 34848 35.8470 206.02 207.93 11.79 34849 35.8480 199.34 208.01 11.58 34850 35.8490 205.02 208.12 11.73 34851 35.8500 220.33 208.23 12.19 34852 35.8510 203.01 208.37 11.67 34853 35.8520 202.09 208.52 11.71 34854 35.8530 199.86 208.69 11.62 34855 35.8540 211.67 208.88 11.93 34856 35.8550 207.02 209.09 11.79 34857 35.8560 203.32 209.32 11.65 34858 35.8570 193.64 209.57 11.38 34859 35.8580 228.12 209.85 12.40 34860 35.8590 198.24 210.15 11.56 34861 35.8600 211.82 210.47 11.89 34862 35.8610 204.25 210.83 11.71 34863 35.8620 198.72 211.21 11.56 34864 35.8630 198.77 211.62 11.53 34865 35.8640 201.09 212.06 11.66 34866 35.8650 220.13 212.54 12.17 34867 35.8660 215.19 213.05 12.02 34868 35.8670 221.58 213.60 12.23 34869 35.8680 213.08 214.18 11.94 34870 35.8690 226.08 214.80 12.35 34871 35.8700 217.42 215.47 12.11 34872 35.8710 211.56 216.18 11.91 34873 35.8720 225.24 216.94 12.32 34874 35.8730 231.16 217.75 12.47 34875 35.8740 227.62 218.60 12.42 34876 35.8750 214.56 219.51 12.05 34877 35.8760 210.71 220.46 11.91 34878 35.8770 222.19 221.56 12.24 34879 35.8780 208.78 222.63 11.87 34880 35.8790 227.74 223.76 12.38 34881 35.8800 218.90 224.93 12.14 34882 35.8810 236.27 226.16 12.64 34883 35.8820 229.94 227.44 12.44 34884 35.8830 236.59 228.77 12.60 34885 35.8840 222.79 230.14 12.26 34886 35.8850 236.52 231.55 12.58 34887 35.8860 236.47 232.99 12.60 34888 35.8870 239.80 234.45 12.76 34889 35.8880 242.64 235.92 12.78 34890 35.8890 226.49 237.38 12.37 34891 35.8900 225.14 238.82 12.33 34892 35.8910 247.35 240.22 12.91 34893 35.8920 259.66 241.56 13.23 34894 35.8930 244.29 242.82 12.82 34895 35.8940 249.81 243.98 12.96 34896 35.8950 248.44 245.01 12.96 34897 35.8960 270.45 245.67 13.51 34898 35.8970 261.56 246.39 13.30 34899 35.8980 244.59 246.93 12.84 34900 35.8990 258.21 247.27 13.17 34901 35.9000 269.59 247.41 13.46 34902 35.9010 264.52 247.33 13.36 34903 35.9020 268.10 247.04 13.40 34904 35.9030 264.06 246.55 13.35 34905 35.9040 243.05 245.87 12.76 34906 35.9050 253.78 244.99 13.09 34907 35.9060 262.17 243.96 13.31 34908 35.9070 252.94 242.78 13.07 34909 35.9080 256.10 241.47 13.10 34910 35.9090 246.82 240.07 12.91 34911 35.9100 245.37 238.59 12.85 34912 35.9110 239.77 237.05 12.70 34913 35.9120 248.35 235.48 12.93 34914 35.9130 238.64 233.87 12.72 34915 35.9140 228.72 232.26 12.47 34916 35.9150 223.44 230.67 12.27 34917 35.9160 215.27 229.10 12.07 34918 35.9170 216.94 227.55 12.10 34919 35.9180 211.37 226.05 11.94 34920 35.9190 233.94 224.59 12.53 34921 35.9200 232.87 223.17 12.53 34922 35.9210 233.10 221.80 12.51 34923 35.9220 234.78 220.49 12.56 34924 35.9230 224.36 219.23 12.30 34925 35.9240 224.68 218.03 12.31 34926 35.9250 215.17 216.88 12.01 34927 35.9260 229.92 215.78 12.40 34928 35.9270 237.64 214.74 12.65 34929 35.9280 238.72 213.74 12.66 34930 35.9290 192.51 212.79 11.37 34931 35.9300 200.31 211.90 11.64 34932 35.9310 206.12 211.04 11.79 34933 35.9320 211.48 210.23 11.88 34934 35.9330 220.17 209.46 12.18 34935 35.9340 206.17 208.72 11.78 34936 35.9350 207.19 208.02 11.81 34937 35.9360 212.57 207.36 12.00 34938 35.9370 199.10 206.74 11.57 34939 35.9380 203.46 206.14 11.70 34940 35.9390 204.55 205.57 11.69 34941 35.9400 208.92 205.04 11.88 34942 35.9410 218.35 204.52 12.14 34943 35.9420 211.03 204.04 11.91 34944 35.9430 209.79 203.57 11.92 34945 35.9440 220.44 203.13 12.23 34946 35.9450 215.40 202.71 12.07 34947 35.9460 204.07 202.32 11.71 34948 35.9470 188.07 201.94 11.27 34949 35.9480 194.83 201.57 11.47 34950 35.9490 209.58 201.23 11.89 34951 35.9500 203.64 200.90 11.76 34952 35.9510 213.78 200.59 12.01 34953 35.9520 202.93 200.29 11.71 34954 35.9530 193.61 200.01 11.44 34955 35.9540 203.99 199.74 11.74 34956 35.9550 199.48 199.48 11.54 34957 35.9560 192.82 199.23 11.39 34958 35.9570 198.51 198.99 11.54 34959 35.9580 209.34 198.77 11.87 34960 35.9590 208.53 198.55 11.83 34961 35.9600 188.43 198.34 11.25 34962 35.9610 191.31 198.14 11.36 34963 35.9620 176.14 197.95 10.95 34964 35.9630 204.99 197.77 11.80 34965 35.9640 197.19 197.59 11.54 34966 35.9650 188.23 197.42 11.33 34967 35.9660 188.48 197.26 11.31 34968 35.9670 195.03 197.10 11.46 34969 35.9680 208.58 196.95 11.91 34970 35.9690 183.76 196.80 11.16 34971 35.9700 194.62 196.66 11.42 34972 35.9710 190.45 196.52 11.30 34973 35.9720 220.44 196.39 12.15 34974 35.9730 197.68 196.27 11.55 34975 35.9740 196.26 196.15 11.49 34976 35.9750 186.52 196.03 11.20 34977 35.9760 197.59 195.93 11.56 34978 35.9770 195.18 195.82 11.46 34979 35.9780 202.50 195.72 11.70 34980 35.9790 192.94 195.63 11.35 34981 35.9800 193.48 195.54 11.42 34982 35.9810 202.68 195.46 11.73 34983 35.9820 184.50 195.38 11.10 34984 35.9830 223.38 195.30 12.25 34985 35.9840 204.63 195.24 11.69 34986 35.9850 201.06 195.17 11.66 34987 35.9860 190.75 195.12 11.35 34988 35.9870 198.07 195.06 11.55 34989 35.9880 202.88 195.01 11.67 34990 35.9890 208.85 194.97 11.89 34991 35.9900 203.43 194.93 11.73 34992 35.9910 194.80 194.90 11.46 34993 35.9920 193.52 194.66 11.41 34994 35.9930 193.09 194.63 11.38 34995 35.9940 187.40 194.61 11.20 34996 35.9950 220.36 194.60 12.15 34997 35.9960 203.51 194.58 11.71 34998 35.9970 183.91 194.57 11.14 34999 35.9980 202.99 194.56 11.71 35000 35.9990 197.79 194.55 11.57 35001 36.0000 182.67 194.54 11.08 35002 36.0010 190.07 194.54 11.31 35003 36.0020 190.90 194.53 11.34 35004 36.0030 194.97 194.52 11.47 35005 36.0040 195.97 194.52 11.53 35006 36.0050 194.94 194.51 11.45 35007 36.0060 208.75 194.49 11.87 35008 36.0070 202.83 194.48 11.73 35009 36.0080 205.07 194.46 11.77 35010 36.0090 194.33 194.43 11.44 35011 36.0100 185.31 194.41 11.16 35012 36.0110 188.10 194.37 11.23 35013 36.0120 198.83 194.33 11.55 35014 36.0130 189.15 194.29 11.26 35015 36.0140 194.61 194.24 11.45 35016 36.0150 202.08 194.19 11.72 35017 36.0160 194.03 194.14 11.40 35018 36.0170 177.13 194.08 10.91 35019 36.0180 202.24 194.02 11.67 35020 36.0190 207.34 193.95 11.83 35021 36.0200 201.55 193.89 11.60 35022 36.0210 194.42 193.83 11.43 35023 36.0220 194.19 193.76 11.41 35024 36.0230 179.47 193.70 10.97 35025 36.0240 188.20 193.64 11.29 35026 36.0250 205.01 193.58 11.81 35027 36.0260 192.01 193.52 11.34 35028 36.0270 200.22 193.46 11.61 35029 36.0280 194.94 193.41 11.40 35030 36.0290 186.52 193.36 11.18 35031 36.0300 171.70 193.31 10.72 35032 36.0310 194.28 193.27 11.47 35033 36.0320 198.57 193.22 11.57 35034 36.0330 183.52 193.19 11.10 35035 36.0340 182.22 193.15 11.06 35036 36.0350 193.78 193.12 11.43 35037 36.0360 193.48 193.09 11.41 35038 36.0370 202.69 193.06 11.62 35039 36.0380 200.89 193.04 11.62 35040 36.0390 195.64 193.02 11.47 35041 36.0400 197.51 193.00 11.48 35042 36.0410 195.76 192.99 11.51 35043 36.0420 201.04 192.97 11.63 35044 36.0430 202.21 192.97 11.69 35045 36.0440 191.58 192.96 11.39 35046 36.0450 179.56 192.96 10.94 35047 36.0460 200.75 192.96 11.61 35048 36.0470 201.18 192.96 11.64 35049 36.0480 204.92 192.96 11.76 35050 36.0490 178.82 192.97 10.95 35051 36.0500 192.74 192.98 11.44 35052 36.0510 193.36 192.99 11.42 35053 36.0520 201.08 193.01 11.60 35054 36.0530 194.34 193.16 11.40 35055 36.0540 195.01 193.18 11.49 35056 36.0550 189.90 193.21 11.30 35057 36.0560 201.67 193.23 11.66 35058 36.0570 200.67 193.18 11.64 35059 36.0580 191.63 193.21 11.38 35060 36.0590 193.92 193.24 11.44 35061 36.0600 201.38 193.28 11.70 35062 36.0610 194.51 193.32 11.48 35063 36.0620 193.90 193.36 11.45 35064 36.0630 189.39 193.40 11.30 35065 36.0640 192.49 193.45 11.35 35066 36.0650 191.92 193.50 11.39 35067 36.0660 201.08 193.56 11.60 35068 36.0670 173.63 193.61 10.79 35069 36.0680 185.47 193.67 11.15 35070 36.0690 208.28 193.74 11.86 35071 36.0700 186.45 193.80 11.21 35072 36.0710 182.92 193.87 11.07 35073 36.0720 213.10 193.94 12.03 35074 36.0730 203.23 194.02 11.72 35075 36.0740 196.62 194.10 11.55 35076 36.0750 190.48 194.18 11.30 35077 36.0760 181.20 194.26 11.00 35078 36.0770 190.86 194.35 11.32 35079 36.0780 188.38 194.45 11.25 35080 36.0790 201.91 194.54 11.64 35081 36.0800 180.23 194.65 10.97 35082 36.0810 183.38 194.75 11.11 35083 36.0820 200.14 194.86 11.57 35084 36.0830 188.72 194.98 11.26 35085 36.0840 195.01 195.10 11.41 35086 36.0850 201.38 195.22 11.67 35087 36.0860 194.01 195.35 11.42 35088 36.0870 206.39 195.48 11.77 35089 36.0880 208.67 195.62 11.87 35090 36.0890 188.87 195.77 11.22 35091 36.0900 185.95 195.92 11.12 35092 36.0910 196.18 196.08 11.45 35093 36.0920 185.75 196.24 11.16 35094 36.0930 190.21 196.41 11.32 35095 36.0940 192.47 196.59 11.42 35096 36.0950 200.62 196.77 11.63 35097 36.0960 183.47 196.96 11.09 35098 36.0970 197.04 197.16 11.53 35099 36.0980 200.27 197.37 11.62 35100 36.0990 198.99 197.58 11.62 35101 36.1000 196.52 197.81 11.50 35102 36.1010 200.90 198.04 11.60 35103 36.1020 215.26 198.28 12.03 35104 36.1030 200.15 198.54 11.62 35105 36.1040 204.14 198.80 11.68 35106 36.1050 188.39 198.43 11.20 35107 36.1060 200.67 198.72 11.58 35108 36.1070 211.75 199.02 11.92 35109 36.1080 189.85 199.34 11.36 35110 36.1090 184.73 199.66 11.17 35111 36.1100 187.20 200.01 11.18 35112 36.1110 209.91 200.36 11.90 35113 36.1120 196.89 200.74 11.51 35114 36.1130 197.06 201.13 11.49 35115 36.1140 208.22 201.53 11.84 35116 36.1150 197.72 201.96 11.50 35117 36.1160 190.14 202.40 11.32 35118 36.1170 201.13 202.87 11.66 35119 36.1180 208.05 203.36 11.83 35120 36.1190 192.03 203.87 11.33 35121 36.1200 200.29 204.40 11.59 35122 36.1210 210.49 204.96 11.96 35123 36.1220 228.21 205.55 12.38 35124 36.1230 201.50 206.17 11.65 35125 36.1240 209.67 206.81 11.84 35126 36.1250 205.27 207.49 11.73 35127 36.1260 244.73 208.20 12.81 35128 36.1270 218.05 208.96 12.13 35129 36.1280 215.33 209.75 12.07 35130 36.1290 235.71 210.58 12.60 35131 36.1300 224.96 211.46 12.28 35132 36.1310 217.05 212.38 12.06 35133 36.1320 217.71 213.35 12.11 35134 36.1330 209.77 214.38 11.93 35135 36.1340 202.18 215.46 11.68 35136 36.1350 215.93 216.61 12.09 35137 36.1360 211.24 217.82 11.99 35138 36.1370 218.14 219.10 12.14 35139 36.1380 222.78 220.45 12.27 35140 36.1390 224.73 221.87 12.30 35141 36.1400 232.20 223.38 12.51 35142 36.1410 213.26 224.99 11.96 35143 36.1420 206.84 226.68 11.77 35144 36.1430 235.58 228.48 12.61 35145 36.1440 237.63 230.38 12.65 35146 36.1450 221.35 232.39 12.21 35147 36.1460 215.88 234.52 12.04 35148 36.1470 227.69 236.78 12.38 35149 36.1480 235.36 239.16 12.60 35150 36.1490 237.80 241.69 12.67 35151 36.1500 226.50 244.37 12.29 35152 36.1510 232.15 247.19 12.52 35153 36.1520 240.84 250.17 12.76 35154 36.1530 246.30 253.31 12.90 35155 36.1540 245.74 256.61 12.84 35156 36.1550 262.18 260.08 13.29 35157 36.1560 275.43 263.71 13.59 35158 36.1570 252.54 267.51 13.02 35159 36.1580 270.00 271.46 13.49 35160 36.1590 287.19 275.55 13.89 35161 36.1600 255.83 279.76 13.13 35162 36.1610 294.98 284.08 14.11 35163 36.1620 272.99 288.48 13.54 35164 36.1630 274.05 292.90 13.65 35165 36.1640 285.34 297.35 13.86 35166 36.1650 290.16 301.72 13.95 35167 36.1660 297.78 305.98 14.13 35168 36.1670 302.99 310.06 14.26 35169 36.1680 316.21 313.90 14.60 35170 36.1690 318.99 317.41 14.66 35171 36.1700 322.47 320.54 14.78 35172 36.1710 336.51 323.20 15.07 35173 36.1720 343.58 325.33 15.18 35174 36.1730 353.59 326.86 15.44 35175 36.1740 346.59 327.78 15.34 35176 36.1750 351.17 328.04 15.41 35177 36.1760 331.76 327.64 14.95 35178 36.1770 347.03 326.60 15.31 35179 36.1780 318.90 324.93 14.67 35180 36.1790 324.33 322.69 14.77 35181 36.1800 316.85 319.93 14.62 35182 36.1810 334.22 316.72 15.09 35183 36.1820 295.37 313.14 14.15 35184 36.1830 331.46 309.24 14.89 35185 36.1840 307.55 305.11 14.41 35186 36.1850 301.90 300.81 14.25 35187 36.1860 292.22 296.41 14.05 35188 36.1870 286.34 291.97 13.86 35189 36.1880 282.34 287.55 13.79 35190 36.1890 266.01 283.17 13.36 35191 36.1900 262.51 278.86 13.30 35192 36.1910 283.50 274.67 13.82 35193 36.1920 278.06 270.60 13.64 35194 36.1930 275.13 265.95 13.68 35195 36.1940 246.60 262.20 12.89 35196 36.1950 272.48 258.60 13.46 35197 36.1960 257.85 255.16 13.11 35198 36.1970 245.78 251.90 12.88 35199 36.1980 251.54 248.78 13.04 35200 36.1990 239.59 245.83 12.66 35201 36.2000 246.14 243.05 12.89 35202 36.2010 229.87 240.40 12.38 35203 36.2020 220.24 237.91 12.16 35204 36.2030 221.95 235.55 12.23 35205 36.2040 233.98 233.32 12.55 35206 36.2050 246.98 231.21 12.90 35207 36.2060 243.22 229.23 12.82 35208 36.2070 230.06 227.35 12.43 35209 36.2080 232.92 225.58 12.56 35210 36.2090 214.16 223.91 12.01 35211 36.2100 225.10 222.33 12.27 35212 36.2110 230.43 220.84 12.45 35213 36.2120 213.82 219.43 12.03 35214 36.2130 230.25 218.10 12.47 35215 36.2140 223.05 216.84 12.24 35216 36.2150 236.43 215.65 12.63 35217 36.2160 228.81 214.52 12.37 35218 36.2170 235.61 213.46 12.62 35219 36.2180 211.91 212.45 11.99 35220 36.2190 216.73 211.49 12.08 35221 36.2200 224.39 210.58 12.25 35222 36.2210 202.99 209.72 11.68 35223 36.2220 192.65 208.90 11.35 35224 36.2230 207.70 208.34 11.83 35225 36.2240 199.10 207.60 11.63 35226 36.2250 202.73 206.90 11.70 35227 36.2260 210.36 206.23 11.86 35228 36.2270 214.80 205.60 12.00 35229 36.2280 221.81 205.00 12.24 35230 36.2290 191.79 204.43 11.39 35231 36.2300 206.17 203.88 11.82 35232 36.2310 201.18 203.37 11.62 35233 36.2320 204.40 202.87 11.72 35234 36.2330 201.70 202.40 11.62 35235 36.2340 183.61 201.95 11.05 35236 36.2350 199.32 201.52 11.56 35237 36.2360 197.94 201.12 11.53 35238 36.2370 192.40 200.73 11.44 35239 36.2380 194.74 200.35 11.44 35240 36.2390 200.08 200.00 11.60 35241 36.2400 197.47 199.66 11.52 35242 36.2410 200.04 199.34 11.61 35243 36.2420 198.69 199.03 11.53 35244 36.2430 196.35 198.74 11.46 35245 36.2440 186.81 198.46 11.19 35246 36.2450 203.96 198.19 11.69 35247 36.2460 204.49 197.93 11.71 35248 36.2470 200.10 197.69 11.62 35249 36.2480 215.47 197.46 12.10 35250 36.2490 202.35 197.24 11.68 35251 36.2500 177.06 197.03 10.89 35252 36.2510 196.42 196.83 11.47 35253 36.2520 216.92 196.64 12.05 35254 36.2530 203.14 196.46 11.68 35255 36.2540 199.15 196.29 11.62 35256 36.2550 188.42 196.11 11.32 35257 36.2560 203.50 195.96 11.72 35258 36.2570 213.82 195.81 11.95 35259 36.2580 192.09 195.68 11.36 35260 36.2590 202.92 195.55 11.68 35261 36.2600 189.97 195.43 11.30 35262 36.2610 192.37 195.31 11.35 35263 36.2620 192.65 195.21 11.42 35264 36.2630 203.01 195.11 11.75 35265 36.2640 191.54 195.02 11.36 35266 36.2650 191.28 194.93 11.36 35267 36.2660 196.11 194.86 11.48 35268 36.2670 196.50 194.79 11.47 35269 36.2680 192.88 194.73 11.29 35270 36.2690 187.73 194.67 11.29 35271 36.2700 192.90 194.62 11.41 35272 36.2710 212.78 194.60 11.96 35273 36.2720 190.87 194.57 11.27 35274 36.2730 204.39 194.54 11.73 35275 36.2740 202.28 194.52 11.69 35276 36.2750 205.89 194.51 11.82 35277 36.2760 199.93 194.50 11.62 35278 36.2770 189.61 194.50 11.30 35279 36.2780 187.78 194.51 11.24 35280 36.2790 182.64 194.53 11.06 35281 36.2800 205.64 194.55 11.81 35282 36.2810 191.76 194.59 11.33 35283 36.2820 188.38 194.63 11.22 35284 36.2830 171.91 194.68 10.74 35285 36.2840 192.81 194.74 11.40 35286 36.2850 193.80 194.80 11.44 35287 36.2860 196.83 194.88 11.47 35288 36.2870 192.16 194.96 11.37 35289 36.2880 205.08 195.05 11.77 35290 36.2890 200.72 195.15 11.67 35291 36.2900 209.24 195.26 11.81 35292 36.2910 177.49 195.38 10.92 35293 36.2920 186.68 195.51 11.23 35294 36.2930 195.04 195.65 11.44 35295 36.2940 183.63 195.80 11.13 35296 36.2950 206.15 195.96 11.76 35297 36.2960 218.85 196.12 12.12 35298 36.2970 193.86 196.30 11.42 35299 36.2980 190.74 196.48 11.29 35300 36.2990 206.76 196.68 11.83 35301 36.3000 186.89 196.88 11.22 35302 36.3010 195.18 197.08 11.40 35303 36.3020 211.30 197.30 11.95 35304 36.3030 195.82 197.52 11.50 35305 36.3040 189.53 197.74 11.29 35306 36.3050 185.67 197.97 11.20 35307 36.3060 186.16 198.20 11.18 35308 36.3070 200.39 198.44 11.57 35309 36.3080 194.47 198.68 11.43 35310 36.3090 204.59 198.92 11.75 35311 36.3100 196.69 199.17 11.50 35312 36.3110 188.19 199.42 11.27 35313 36.3120 198.23 199.67 11.58 35314 36.3130 198.63 199.93 11.53 35315 36.3140 198.45 200.20 11.51 35316 36.3150 193.41 200.48 11.42 35317 36.3160 214.62 200.77 12.05 35318 36.3170 205.38 201.07 11.74 35319 36.3180 186.51 201.39 11.20 35320 36.3190 197.34 201.72 11.54 35321 36.3200 210.48 202.08 11.87 35322 36.3210 205.42 202.46 11.75 35323 36.3220 191.58 202.87 11.36 35324 36.3230 218.52 203.32 12.15 35325 36.3240 204.76 203.79 11.75 35326 36.3250 205.44 204.33 11.75 35327 36.3260 197.12 204.87 11.51 35328 36.3270 195.66 205.47 11.49 35329 36.3280 203.82 206.10 11.73 35330 36.3290 203.21 206.79 11.65 35331 36.3300 198.71 207.53 11.55 35332 36.3310 199.73 208.32 11.62 35333 36.3320 206.33 209.17 11.78 35334 36.3330 218.19 210.07 12.12 35335 36.3340 215.52 211.04 12.06 35336 36.3350 201.36 212.07 11.63 35337 36.3360 207.62 213.17 11.80 35338 36.3370 214.61 214.33 12.03 35339 36.3380 231.84 215.55 12.54 35340 36.3390 197.18 216.84 11.56 35341 36.3400 209.42 218.20 11.88 35342 36.3410 198.48 219.60 11.51 35343 36.3420 195.43 221.06 11.50 35344 36.3430 220.19 222.57 12.15 35345 36.3440 234.00 224.10 12.52 35346 36.3450 210.41 225.66 11.86 35347 36.3460 221.48 227.22 12.22 35348 36.3470 233.64 228.76 12.53 35349 36.3480 237.63 230.27 12.68 35350 36.3490 225.00 231.71 12.28 35351 36.3500 229.47 233.06 12.41 35352 36.3510 243.12 234.30 12.78 35353 36.3520 217.04 235.38 12.10 35354 36.3530 223.71 236.28 12.25 35355 36.3540 256.54 236.99 13.15 35356 36.3550 245.52 237.47 12.89 35357 36.3560 231.41 237.72 12.53 35358 36.3570 231.52 237.72 12.49 35359 36.3580 244.16 237.47 12.84 35360 36.3590 233.12 236.98 12.54 35361 36.3600 228.85 236.26 12.49 35362 36.3610 217.34 235.34 12.11 35363 36.3620 243.26 234.23 12.82 35364 36.3630 227.34 232.96 12.39 35365 36.3640 220.10 231.55 12.19 35366 36.3650 235.28 230.04 12.61 35367 36.3660 227.53 228.47 12.38 35368 36.3670 215.10 226.85 11.99 35369 36.3680 223.74 225.20 12.26 35370 36.3690 204.46 223.55 11.66 35371 36.3700 190.52 221.91 11.28 35372 36.3710 200.47 220.29 11.63 35373 36.3720 218.35 218.72 12.13 35374 36.3730 220.77 217.19 12.23 35375 36.3740 208.23 215.72 11.87 35376 36.3750 203.96 214.31 11.71 35377 36.3760 212.62 212.96 11.96 35378 36.3770 211.43 211.67 11.90 35379 36.3780 214.00 210.45 11.95 35380 36.3790 194.41 209.29 11.46 35381 36.3800 203.24 208.18 11.68 35382 36.3810 192.29 207.15 11.29 35383 36.3820 211.60 206.16 11.91 35384 36.3830 227.77 205.23 12.40 35385 36.3840 206.01 204.36 11.83 35386 36.3850 200.64 203.53 11.61 35387 36.3860 212.65 202.74 11.99 35388 36.3870 208.96 202.01 11.80 35389 36.3880 195.40 201.32 11.46 35390 36.3890 186.10 200.66 11.19 35391 36.3900 183.73 200.05 11.08 35392 36.3910 200.22 199.46 11.60 35393 36.3920 202.74 198.92 11.69 35394 36.3930 196.95 198.40 11.50 35395 36.3940 199.59 197.91 11.61 35396 36.3950 195.56 197.44 11.51 35397 36.3960 182.86 197.01 11.13 35398 36.3970 190.75 196.59 11.32 35399 36.3980 191.49 196.20 11.35 35400 36.3990 210.59 195.83 11.91 35401 36.4000 189.95 195.48 11.33 35402 36.4010 179.94 195.15 10.95 35403 36.4020 192.88 194.84 11.41 35404 36.4030 182.17 194.54 11.04 35405 36.4040 203.69 194.25 11.76 35406 36.4050 192.36 193.98 11.33 35407 36.4060 202.91 193.73 11.68 35408 36.4070 194.57 193.49 11.43 35409 36.4080 198.57 193.26 11.54 35410 36.4090 178.62 193.04 10.99 35411 36.4100 187.28 192.83 11.18 35412 36.4110 181.01 192.63 11.05 35413 36.4120 199.75 192.41 11.60 35414 36.4130 181.33 192.23 11.02 35415 36.4140 178.60 192.06 10.99 35416 36.4150 202.38 191.90 11.72 35417 36.4160 191.98 191.74 11.36 35418 36.4170 181.65 191.59 11.10 35419 36.4180 171.05 191.45 10.70 35420 36.4190 176.93 191.31 10.94 35421 36.4200 178.23 191.18 10.91 35422 36.4210 186.94 191.05 11.25 35423 36.4220 171.25 190.93 10.74 35424 36.4230 177.48 190.82 10.94 35425 36.4240 178.67 190.71 11.02 35426 36.4250 191.87 190.61 11.34 35427 36.4260 175.16 190.51 10.82 35428 36.4270 198.50 190.41 11.56 35429 36.4280 188.33 190.32 11.25 35430 36.4290 176.69 190.24 10.93 35431 36.4300 186.31 190.15 11.22 35432 36.4310 176.90 190.08 10.93 35433 36.4320 196.76 190.00 11.50 35434 36.4330 187.29 189.93 11.26 35435 36.4340 181.85 189.86 11.03 35436 36.4350 191.66 189.79 11.33 35437 36.4360 186.22 189.73 11.19 35438 36.4370 179.24 189.67 10.98 35439 36.4380 188.26 189.61 11.25 35440 36.4390 187.76 189.56 11.17 35441 36.4400 181.54 189.51 11.10 35442 36.4410 170.14 189.46 10.66 35443 36.4420 182.88 189.41 11.08 35444 36.4430 170.60 189.37 10.70 35445 36.4440 184.74 189.33 11.18 35446 36.4450 187.76 189.29 11.24 35447 36.4460 196.65 189.25 11.53 35448 36.4470 181.32 189.22 11.07 35449 36.4480 202.55 189.12 11.69 35450 36.4490 187.31 189.09 11.19 35451 36.4500 165.87 189.06 10.51 35452 36.4510 178.06 189.03 10.94 35453 36.4520 178.80 189.01 10.96 35454 36.4530 190.95 188.98 11.35 35455 36.4540 197.90 188.96 11.51 35456 36.4550 194.00 188.94 11.44 35457 36.4560 168.86 188.92 10.66 35458 36.4570 162.76 188.91 10.48 35459 36.4580 167.88 188.89 10.65 35460 36.4590 173.76 188.88 10.83 35461 36.4600 187.92 188.87 11.27 35462 36.4610 173.52 188.86 10.80 35463 36.4620 189.86 188.85 11.31 35464 36.4630 196.27 188.85 11.53 35465 36.4640 186.03 188.84 11.22 35466 36.4650 179.17 188.84 11.00 35467 36.4660 186.53 188.84 11.22 35468 36.4670 178.61 188.84 10.91 35469 36.4680 188.11 188.84 11.24 35470 36.4690 183.64 188.85 11.12 35471 36.4700 197.72 188.85 11.47 35472 36.4710 187.91 188.86 11.24 35473 36.4720 186.78 188.87 11.22 35474 36.4730 180.44 188.88 11.04 35475 36.4740 184.02 188.89 11.13 35476 36.4750 158.02 188.90 10.33 35477 36.4760 163.45 188.92 10.48 35478 36.4770 184.18 188.93 11.07 35479 36.4780 181.37 188.95 11.01 35480 36.4790 177.46 188.97 10.88 35481 36.4800 184.62 188.99 11.16 35482 36.4810 184.65 189.03 11.15 35483 36.4820 189.08 189.06 11.23 35484 36.4830 193.03 189.08 11.42 35485 36.4840 186.17 189.11 11.21 35486 36.4850 186.43 189.14 11.19 35487 36.4860 197.77 189.17 11.53 35488 36.4870 196.92 189.21 11.44 35489 36.4880 176.74 189.24 10.88 35490 36.4890 169.84 189.28 10.68 35491 36.4900 197.14 189.32 11.56 35492 36.4910 182.37 189.36 11.08 35493 36.4920 192.21 189.40 11.35 35494 36.4930 197.10 189.45 11.51 35495 36.4940 198.44 189.49 11.58 35496 36.4950 187.47 189.54 11.24 35497 36.4960 201.48 189.60 11.68 35498 36.4970 192.87 189.65 11.42 35499 36.4980 187.46 189.71 11.23 35500 36.4990 171.31 189.76 10.72 35501 36.5000 183.83 189.83 11.15 35502 36.5010 179.83 189.89 11.00 35503 36.5020 174.44 189.96 10.86 35504 36.5030 180.15 190.02 11.09 35505 36.5040 169.28 190.10 10.72 35506 36.5050 183.96 190.17 11.13 35507 36.5060 184.51 190.25 11.18 35508 36.5070 181.40 190.33 11.06 35509 36.5080 177.15 190.41 10.91 35510 36.5090 171.06 190.50 10.67 35511 36.5100 167.10 190.59 10.60 35512 36.5110 194.99 190.68 11.40 35513 36.5120 192.51 190.78 11.38 35514 36.5130 187.49 190.88 11.26 35515 36.5140 199.99 190.99 11.58 35516 36.5150 171.49 191.10 10.69 35517 36.5160 185.95 191.21 11.18 35518 36.5170 195.44 191.33 11.48 35519 36.5180 180.27 191.45 11.00 35520 36.5190 178.19 191.57 10.90 35521 36.5200 178.28 191.71 10.92 35522 36.5210 179.83 191.84 10.98 35523 36.5220 193.54 191.99 11.43 35524 36.5230 198.47 192.13 11.59 35525 36.5240 181.04 192.29 11.03 35526 36.5250 191.37 192.45 11.31 35527 36.5260 189.02 192.61 11.30 35528 36.5270 191.71 192.78 11.36 35529 36.5280 180.03 192.96 10.95 35530 36.5290 182.75 193.15 11.06 35531 36.5300 188.76 193.34 11.26 35532 36.5310 179.46 193.54 10.99 35533 36.5320 197.92 193.75 11.52 35534 36.5330 197.84 193.97 11.55 35535 36.5340 186.04 194.20 11.20 35536 36.5350 185.92 194.44 11.21 35537 36.5360 194.03 194.68 11.46 35538 36.5370 198.47 194.94 11.54 35539 36.5380 196.28 195.21 11.51 35540 36.5390 179.45 195.49 10.98 35541 36.5400 198.36 195.78 11.58 35542 36.5410 191.39 196.09 11.34 35543 36.5420 190.54 196.41 11.30 35544 36.5430 192.45 196.74 11.32 35545 36.5440 184.04 197.09 11.17 35546 36.5450 183.12 197.46 11.10 35547 36.5460 175.75 197.84 10.89 35548 36.5470 181.26 198.24 11.09 35549 36.5480 182.16 198.66 11.09 35550 36.5490 201.16 199.10 11.64 35551 36.5500 193.46 199.56 11.37 35552 36.5510 187.63 200.04 11.22 35553 36.5520 190.42 200.55 11.26 35554 36.5530 198.49 201.08 11.53 35555 36.5540 199.47 201.64 11.54 35556 36.5550 213.96 202.22 12.00 35557 36.5560 193.15 202.84 11.41 35558 36.5570 188.59 203.48 11.28 35559 36.5580 185.37 204.16 11.20 35560 36.5590 199.74 204.88 11.61 35561 36.5600 210.08 205.63 11.89 35562 36.5610 194.27 206.43 11.41 35563 36.5620 198.49 207.26 11.56 35564 36.5630 201.71 208.14 11.66 35565 36.5640 207.90 209.07 11.85 35566 36.5650 198.95 210.04 11.61 35567 36.5660 205.60 211.07 11.77 35568 36.5670 242.09 212.15 12.77 35569 36.5680 234.46 213.28 12.56 35570 36.5690 213.52 214.48 11.93 35571 36.5700 220.09 215.74 12.16 35572 36.5710 208.11 217.07 11.82 35573 36.5720 204.71 218.46 11.70 35574 36.5730 215.20 219.94 12.02 35575 36.5740 206.18 221.47 11.80 35576 36.5750 206.05 223.08 11.80 35577 36.5760 201.06 224.77 11.62 35578 36.5770 209.47 226.53 11.83 35579 36.5780 223.97 228.38 12.27 35580 36.5790 228.56 230.29 12.42 35581 36.5800 220.50 232.28 12.19 35582 36.5810 228.21 234.34 12.32 35583 36.5820 243.29 236.46 12.83 35584 36.5830 223.52 238.62 12.24 35585 36.5840 233.94 240.84 12.51 35586 36.5850 234.01 243.09 12.56 35587 36.5860 259.25 245.35 13.22 35588 36.5870 257.38 247.62 13.17 35589 36.5880 254.05 249.86 13.09 35590 36.5890 240.77 252.04 12.76 35591 36.5900 229.65 254.16 12.40 35592 36.5910 250.20 256.17 13.01 35593 36.5920 257.94 258.05 13.20 35594 36.5930 247.74 259.76 12.93 35595 36.5940 250.11 261.29 12.94 35596 36.5950 283.70 262.58 13.87 35597 36.5960 256.09 263.63 13.15 35598 36.5970 258.86 264.40 13.18 35599 36.5980 279.15 264.89 13.71 35600 36.5990 265.93 265.08 13.36 35601 36.6000 271.00 264.96 13.58 35602 36.6010 259.27 264.54 13.29 35603 36.6020 265.14 263.84 13.35 35604 36.6030 255.87 262.86 13.13 35605 36.6040 253.25 261.63 13.07 35606 36.6050 253.69 260.17 13.07 35607 36.6060 250.04 258.52 13.01 35608 36.6070 265.57 256.70 13.34 35609 36.6080 247.49 254.74 12.86 35610 36.6090 243.70 252.67 12.81 35611 36.6100 258.43 250.53 13.16 35612 36.6110 248.84 248.34 12.93 35613 36.6120 225.67 246.13 12.33 35614 36.6130 229.80 243.91 12.45 35615 36.6140 231.83 241.71 12.47 35616 36.6150 221.54 239.52 12.21 35617 36.6160 236.42 237.39 12.61 35618 36.6170 231.16 235.32 12.53 35619 36.6180 230.31 233.30 12.50 35620 36.6190 221.62 231.36 12.23 35621 36.6200 209.71 229.49 11.86 35622 36.6210 219.07 227.69 12.10 35623 36.6220 218.18 225.96 12.20 35624 36.6230 214.46 224.31 12.02 35625 36.6240 204.26 222.74 11.74 35626 36.6250 208.36 221.25 11.84 35627 36.6260 210.17 219.83 11.91 35628 36.6270 205.83 218.48 11.76 35629 36.6280 197.03 217.20 11.51 35630 36.6290 185.43 215.98 11.17 35631 36.6300 182.96 214.83 11.07 35632 36.6310 202.89 213.74 11.68 35633 36.6320 221.13 212.71 12.24 35634 36.6330 218.66 211.74 12.17 35635 36.6340 197.46 210.82 11.53 35636 36.6350 214.65 209.95 12.00 35637 36.6360 206.02 209.12 11.77 35638 36.6370 196.09 208.34 11.53 35639 36.6380 204.97 207.61 11.79 35640 36.6390 211.39 206.91 11.99 35641 36.6400 188.78 206.26 11.29 35642 36.6410 201.39 205.64 11.66 35643 36.6420 200.99 205.06 11.64 35644 36.6430 188.86 204.51 11.25 35645 36.6440 220.21 203.99 12.19 35646 36.6450 190.93 203.50 11.36 35647 36.6460 188.22 203.04 11.27 35648 36.6470 188.47 202.60 11.29 35649 36.6480 197.18 202.19 11.54 35650 36.6490 205.27 201.81 11.76 35651 36.6500 177.79 201.45 10.96 35652 36.6510 203.72 201.11 11.73 35653 36.6520 184.36 200.79 11.14 35654 36.6530 185.03 200.67 11.15 35655 36.6540 187.39 200.39 11.23 35656 36.6550 185.87 200.13 11.21 35657 36.6560 191.90 199.89 11.34 35658 36.6570 195.16 199.66 11.44 35659 36.6580 203.58 199.45 11.69 35660 36.6590 213.74 199.26 12.04 35661 36.6600 192.12 199.07 11.39 35662 36.6610 198.64 198.91 11.53 35663 36.6620 206.02 198.76 11.81 35664 36.6630 205.93 198.62 11.83 35665 36.6640 185.41 198.50 11.17 35666 36.6650 205.82 198.38 11.75 35667 36.6660 202.84 198.29 11.69 35668 36.6670 201.12 198.20 11.63 35669 36.6680 204.00 198.12 11.71 35670 36.6690 193.40 198.06 11.39 35671 36.6700 193.57 198.01 11.38 35672 36.6710 204.83 197.72 11.73 35673 36.6720 186.44 197.70 11.19 35674 36.6730 193.50 197.68 11.42 35675 36.6740 183.45 197.67 11.17 35676 36.6750 197.69 197.68 11.55 35677 36.6760 197.85 197.69 11.56 35678 36.6770 205.80 197.72 11.80 35679 36.6780 177.11 197.75 10.91 35680 36.6790 201.09 197.80 11.60 35681 36.6800 201.43 197.86 11.66 35682 36.6810 197.14 197.93 11.57 35683 36.6820 192.65 198.01 11.43 35684 36.6830 197.58 198.10 11.57 35685 36.6840 193.08 198.20 11.40 35686 36.6850 196.46 198.32 11.49 35687 36.6860 198.42 198.44 11.53 35688 36.6870 201.49 198.58 11.62 35689 36.6880 188.72 198.73 11.26 35690 36.6890 171.68 198.89 10.80 35691 36.6900 188.92 199.07 11.25 35692 36.6910 198.71 199.26 11.55 35693 36.6920 202.83 199.46 11.68 35694 36.6930 199.85 199.67 11.61 35695 36.6940 202.66 199.90 11.66 35696 36.6950 200.78 200.15 11.61 35697 36.6960 195.50 200.40 11.46 35698 36.6970 197.03 200.68 11.51 35699 36.6980 193.05 200.97 11.34 35700 36.6990 200.95 201.28 11.66 35701 36.7000 200.69 201.61 11.64 35702 36.7010 194.91 201.95 11.44 35703 36.7020 209.90 202.32 11.94 35704 36.7030 202.23 202.70 11.66 35705 36.7040 198.27 203.11 11.54 35706 36.7050 198.51 203.54 11.55 35707 36.7060 206.50 203.99 11.79 35708 36.7070 211.93 204.47 11.94 35709 36.7080 191.37 204.97 11.30 35710 36.7090 192.33 205.50 11.36 35711 36.7100 209.24 206.05 11.87 35712 36.7110 208.84 206.64 11.85 35713 36.7120 190.43 207.26 11.32 35714 36.7130 196.79 207.91 11.51 35715 36.7140 195.15 208.60 11.47 35716 36.7150 213.05 209.32 11.94 35717 36.7160 213.55 210.09 11.99 35718 36.7170 201.48 210.89 11.62 35719 36.7180 205.24 211.74 11.73 35720 36.7190 199.99 212.63 11.60 35721 36.7200 209.36 213.58 11.86 35722 36.7210 204.22 214.57 11.72 35723 36.7220 209.32 215.62 11.88 35724 36.7230 213.07 216.73 11.92 35725 36.7240 215.89 217.89 12.03 35726 36.7250 216.31 219.12 12.05 35727 36.7260 205.34 220.43 11.75 35728 36.7270 225.74 221.80 12.35 35729 36.7280 232.17 223.25 12.49 35730 36.7290 228.34 224.78 12.40 35731 36.7300 237.03 226.39 12.61 35732 36.7310 225.74 228.09 12.36 35733 36.7320 215.36 229.89 12.03 35734 36.7330 227.90 231.78 12.34 35735 36.7340 236.53 233.78 12.65 35736 36.7350 253.06 235.89 13.11 35737 36.7360 237.90 238.09 12.64 35738 36.7370 219.91 240.42 12.14 35739 36.7380 237.17 242.87 12.60 35740 36.7390 249.12 245.43 12.96 35741 36.7400 226.20 248.12 12.25 35742 36.7410 226.60 250.93 12.30 35743 36.7420 243.41 253.85 12.75 35744 36.7430 273.19 256.90 13.56 35745 36.7440 271.86 260.06 13.56 35746 36.7450 263.35 263.31 13.35 35747 36.7460 268.49 266.66 13.50 35748 36.7470 291.52 270.11 14.03 35749 36.7480 284.58 273.61 13.85 35750 36.7490 284.57 277.12 13.80 35751 36.7500 293.99 280.67 14.06 35752 36.7510 284.25 284.19 13.80 35753 36.7520 303.68 287.64 14.34 35754 36.7530 306.25 291.00 14.42 35755 36.7540 304.21 294.23 14.38 35756 36.7550 304.52 297.24 14.34 35757 36.7560 306.98 300.03 14.35 35758 36.7570 303.09 302.53 14.25 35759 36.7580 330.82 304.69 14.83 35760 36.7590 311.56 306.48 14.48 35761 36.7600 331.72 307.86 14.99 35762 36.7610 326.74 308.80 14.85 35763 36.7620 302.64 309.28 14.29 35764 36.7630 322.39 309.29 14.73 35765 36.7640 336.62 308.85 15.01 35766 36.7650 329.48 307.96 14.88 35767 36.7660 309.67 306.65 14.40 35768 36.7670 317.44 304.96 14.66 35769 36.7680 310.01 302.91 14.48 35770 36.7690 317.45 300.57 14.61 35771 36.7700 301.20 297.98 14.23 35772 36.7710 309.66 295.19 14.39 35773 36.7720 298.59 292.24 14.19 35774 36.7730 307.60 289.19 14.43 35775 36.7740 290.83 286.07 14.01 35776 36.7750 304.28 282.92 14.28 35777 36.7760 270.69 279.80 13.49 35778 36.7770 272.85 276.72 13.62 35779 36.7780 258.30 273.70 13.18 35780 36.7790 270.36 270.77 13.50 35781 36.7800 253.59 267.95 13.13 35782 36.7810 248.65 265.25 12.98 35783 36.7820 255.45 262.67 13.11 35784 36.7830 262.61 260.22 13.29 35785 36.7840 256.32 257.92 13.12 35786 36.7850 235.48 255.76 12.62 35787 36.7860 236.41 253.73 12.60 35788 36.7870 234.11 251.84 12.52 35789 36.7880 244.86 250.09 12.85 35790 36.7890 231.63 248.46 12.46 35791 36.7900 237.06 246.97 12.64 35792 36.7910 236.12 245.59 12.60 35793 36.7920 231.37 244.32 12.50 35794 36.7930 260.94 243.15 13.27 35795 36.7940 258.18 242.07 13.15 35796 36.7950 235.30 241.08 12.57 35797 36.7960 219.05 240.18 12.14 35798 36.7970 237.94 239.32 12.66 35799 36.7980 231.39 238.52 12.50 35800 36.7990 227.44 237.76 12.38 35801 36.8000 233.19 237.04 12.57 35802 36.8010 225.74 236.34 12.43 35803 36.8020 216.82 235.66 12.12 35804 36.8030 224.16 234.99 12.32 35805 36.8040 204.10 234.32 11.71 35806 36.8050 215.48 233.66 12.08 35807 36.8060 227.26 232.98 12.36 35808 36.8070 230.72 232.29 12.44 35809 36.8080 221.38 231.58 12.25 35810 36.8090 223.68 230.84 12.30 35811 36.8100 214.31 230.07 12.06 35812 36.8110 208.94 229.27 11.87 35813 36.8120 203.72 228.43 11.70 35814 36.8130 223.15 227.55 12.27 35815 36.8140 231.37 226.62 12.48 35816 36.8150 222.33 225.66 12.25 35817 36.8160 227.71 224.65 12.40 35818 36.8170 251.33 223.60 12.98 35819 36.8180 209.59 222.53 11.82 35820 36.8190 217.54 221.43 12.11 35821 36.8200 212.98 220.30 11.96 35822 36.8210 202.09 219.16 11.64 35823 36.8220 205.24 218.02 11.74 35824 36.8230 211.89 216.88 11.93 35825 36.8240 196.59 215.74 11.50 35826 36.8250 202.17 214.63 11.65 35827 36.8260 203.51 213.54 11.71 35828 36.8270 208.65 212.46 11.85 35829 36.8280 193.21 211.43 11.40 35830 36.8290 199.94 210.42 11.64 35831 36.8300 186.39 209.44 11.26 35832 36.8310 186.95 208.51 11.21 35833 36.8320 171.89 207.60 10.74 35834 36.8330 195.42 206.74 11.41 35835 36.8340 212.43 205.91 11.99 35836 36.8350 202.63 205.12 11.65 35837 36.8360 204.43 204.39 11.69 35838 36.8370 204.38 203.58 11.70 35839 36.8380 205.44 202.90 11.76 35840 36.8390 202.88 202.24 11.69 35841 36.8400 190.24 201.62 11.34 35842 36.8410 187.78 201.02 11.22 35843 36.8420 187.72 200.46 11.25 35844 36.8430 212.71 199.92 12.00 35845 36.8440 221.45 199.40 12.27 35846 36.8450 184.07 198.91 11.08 35847 36.8460 192.06 198.45 11.31 35848 36.8470 197.91 198.00 11.51 35849 36.8480 200.88 197.58 11.59 35850 36.8490 197.79 197.17 11.52 35851 36.8500 193.23 196.79 11.38 35852 36.8510 190.91 196.42 11.33 35853 36.8520 192.87 196.06 11.40 35854 36.8530 182.29 195.73 11.08 35855 36.8540 193.94 195.41 11.42 35856 36.8550 193.30 195.10 11.42 35857 36.8560 193.25 194.81 11.37 35858 36.8570 204.03 194.53 11.73 35859 36.8580 211.91 194.26 11.93 35860 36.8590 184.71 194.00 11.15 35861 36.8600 187.86 193.76 11.22 35862 36.8610 198.33 193.52 11.52 35863 36.8620 193.07 193.30 11.37 35864 36.8630 198.15 193.08 11.57 35865 36.8640 191.76 192.87 11.35 35866 36.8650 183.39 192.68 11.11 35867 36.8660 193.09 192.49 11.40 35868 36.8670 190.81 192.31 11.36 35869 36.8680 181.00 192.14 11.05 35870 36.8690 193.48 191.97 11.42 35871 36.8700 196.09 191.82 11.51 35872 36.8710 202.08 191.67 11.62 35873 36.8720 174.11 191.52 10.78 35874 36.8730 195.85 191.39 11.46 35875 36.8740 174.23 191.26 10.83 35876 36.8750 191.77 191.13 11.37 35877 36.8760 188.29 191.02 11.22 35878 36.8770 186.39 190.91 11.18 35879 36.8780 190.27 190.80 11.33 35880 36.8790 190.82 190.70 11.33 35881 36.8800 186.51 190.61 11.19 35882 36.8810 194.51 190.52 11.43 35883 36.8820 180.20 190.44 11.00 35884 36.8830 187.25 190.37 11.20 35885 36.8840 191.35 190.30 11.36 35886 36.8850 180.41 190.24 11.00 35887 36.8860 190.36 190.18 11.31 35888 36.8870 190.37 190.12 11.32 35889 36.8880 194.14 190.08 11.46 35890 36.8890 196.54 190.04 11.45 35891 36.8900 179.87 190.00 10.92 35892 36.8910 183.83 189.97 11.12 35893 36.8920 181.42 189.95 11.04 35894 36.8930 184.79 189.93 11.14 35895 36.8940 171.66 189.92 10.76 35896 36.8950 173.26 189.91 10.80 35897 36.8960 210.92 189.91 11.90 35898 36.8970 193.68 189.91 11.42 35899 36.8980 186.62 189.93 11.23 35900 36.8990 171.79 189.94 10.75 35901 36.9000 198.14 189.96 11.53 35902 36.9010 188.35 189.98 11.32 35903 36.9020 180.68 190.01 11.08 35904 36.9030 188.83 190.04 11.23 35905 36.9040 176.82 190.08 10.86 35906 36.9050 185.87 190.11 11.19 35907 36.9060 202.50 190.15 11.64 35908 36.9070 189.44 190.18 11.25 35909 36.9080 188.66 190.22 11.24 35910 36.9090 181.32 190.25 11.02 35911 36.9100 171.15 190.28 10.74 35912 36.9110 167.29 190.30 10.64 35913 36.9120 181.47 190.31 11.03 35914 36.9130 182.43 190.32 11.07 35915 36.9140 188.55 190.32 11.24 35916 36.9150 181.49 190.31 11.00 35917 36.9160 189.78 190.29 11.25 35918 36.9170 174.02 190.26 10.81 35919 36.9180 175.18 190.22 10.83 35920 36.9190 177.22 190.17 10.95 35921 36.9200 180.80 190.11 11.04 35922 36.9210 207.56 190.04 11.77 35923 36.9220 189.28 189.97 11.30 35924 36.9230 191.31 189.90 11.34 35925 36.9240 182.61 189.81 11.10 35926 36.9250 185.22 189.73 11.14 35927 36.9260 197.12 189.64 11.51 35928 36.9270 193.97 189.55 11.43 35929 36.9280 185.11 189.46 11.17 35930 36.9290 166.56 189.37 10.57 35931 36.9300 186.16 189.28 11.17 35932 36.9310 202.26 189.19 11.67 35933 36.9320 193.98 189.10 11.44 35934 36.9330 196.18 189.02 11.51 35935 36.9340 185.98 188.94 11.20 35936 36.9350 172.67 188.86 10.75 35937 36.9360 187.30 188.79 11.26 35938 36.9370 187.41 188.72 11.30 35939 36.9380 176.96 188.65 10.94 35940 36.9390 182.62 188.60 11.11 35941 36.9400 183.59 188.54 11.13 35942 36.9410 178.62 188.49 10.96 35943 36.9420 200.01 188.45 11.58 35944 36.9430 185.53 188.41 11.17 35945 36.9440 170.20 188.38 10.72 35946 36.9450 167.00 188.35 10.55 35947 36.9460 188.38 188.33 11.25 35948 36.9470 192.46 188.32 11.36 35949 36.9480 175.87 188.31 10.91 35950 36.9490 184.83 188.30 11.18 35951 36.9500 180.97 188.30 11.04 35952 36.9510 186.55 188.31 11.24 35953 36.9520 194.35 188.32 11.41 35954 36.9530 181.75 188.33 11.06 35955 36.9540 204.11 188.35 11.70 35956 36.9550 173.48 188.38 10.81 35957 36.9560 164.44 188.41 10.51 35958 36.9570 185.96 188.45 11.19 35959 36.9580 201.24 188.50 11.62 35960 36.9590 183.26 188.55 11.14 35961 36.9600 178.63 188.60 10.97 35962 36.9610 179.91 188.67 11.02 35963 36.9620 190.53 188.74 11.35 35964 36.9630 164.23 188.82 10.48 35965 36.9640 182.05 188.90 11.05 35966 36.9650 176.73 188.99 10.89 35967 36.9660 192.13 189.09 11.39 35968 36.9670 186.63 189.20 11.22 35969 36.9680 187.30 189.32 11.20 35970 36.9690 181.27 189.44 11.05 35971 36.9700 190.49 189.57 11.32 35972 36.9710 180.06 189.71 10.97 35973 36.9720 190.36 189.86 11.35 35974 36.9730 186.36 190.02 11.16 35975 36.9740 179.10 190.19 11.03 35976 36.9750 192.86 190.36 11.38 35977 36.9760 167.79 190.55 10.58 35978 36.9770 186.04 190.74 11.17 35979 36.9780 186.83 190.94 11.22 35980 36.9790 195.01 191.15 11.44 35981 36.9800 192.07 191.37 11.35 35982 36.9810 195.69 191.60 11.48 35983 36.9820 177.67 191.83 10.95 35984 36.9830 193.15 192.07 11.38 35985 36.9840 173.71 192.31 10.77 35986 36.9850 170.20 192.56 10.71 35987 36.9860 180.27 192.81 11.03 35988 36.9870 161.82 193.07 10.41 35989 36.9880 187.28 193.32 11.18 35990 36.9890 197.23 193.58 11.52 35991 36.9900 185.64 193.84 11.22 35992 36.9910 194.60 194.09 11.43 35993 36.9920 194.09 194.33 11.46 35994 36.9930 179.73 194.57 10.99 35995 36.9940 183.92 194.80 11.16 35996 36.9950 193.41 195.01 11.45 35997 36.9960 195.17 195.21 11.45 35998 36.9970 191.87 195.39 11.34 35999 36.9980 181.86 195.54 11.05 36000 36.9990 182.09 195.67 11.07 36001 37.0000 188.69 195.78 11.31 36002 37.0010 191.73 195.85 11.41 36003 37.0020 197.76 195.90 11.55 36004 37.0030 187.31 195.91 11.25 36005 37.0040 184.02 195.89 11.14 36006 37.0050 190.82 195.84 11.29 36007 37.0060 183.72 195.76 11.13 36008 37.0070 186.04 195.65 11.23 36009 37.0080 187.69 195.52 11.28 36010 37.0090 191.67 195.37 11.36 36011 37.0100 188.06 195.20 11.22 36012 37.0110 186.39 195.01 11.24 36013 37.0120 175.74 194.82 10.87 36014 37.0130 191.15 194.61 11.36 36015 37.0140 168.83 194.40 10.54 36016 37.0150 167.25 194.19 10.54 36017 37.0160 170.41 193.98 10.68 36018 37.0170 197.27 193.77 11.57 36019 37.0180 190.89 193.57 11.34 36020 37.0190 205.52 193.37 11.72 36021 37.0200 196.91 193.18 11.51 36022 37.0210 189.63 193.01 11.26 36023 37.0220 190.81 192.84 11.32 36024 37.0230 192.38 192.68 11.33 36025 37.0240 176.69 192.54 10.86 36026 37.0250 173.40 192.40 10.78 36027 37.0260 176.26 192.28 10.91 36028 37.0270 181.26 192.18 11.07 36029 37.0280 200.18 192.08 11.58 36030 37.0290 201.36 192.00 11.64 36031 37.0300 183.52 191.93 11.11 36032 37.0310 198.33 191.87 11.50 36033 37.0320 182.88 191.82 11.08 36034 37.0330 178.49 191.78 10.95 36035 37.0340 172.63 191.76 10.75 36036 37.0350 169.21 191.75 10.65 36037 37.0360 187.81 191.75 11.24 36038 37.0370 201.86 191.76 11.68 36039 37.0380 180.80 191.78 11.06 36040 37.0390 195.37 191.81 11.49 36041 37.0400 190.46 191.86 11.35 36042 37.0410 193.89 191.91 11.44 36043 37.0420 177.83 191.98 10.93 36044 37.0430 190.55 192.06 11.36 36045 37.0440 170.51 192.15 10.70 36046 37.0450 184.55 192.25 11.14 36047 37.0460 175.67 192.36 10.88 36048 37.0470 180.63 192.56 10.99 36049 37.0480 186.76 192.70 11.23 36050 37.0490 173.03 192.84 10.80 36051 37.0500 184.09 193.01 11.11 36052 37.0510 181.18 193.18 10.99 36053 37.0520 162.45 193.37 10.46 36054 37.0530 190.15 193.57 11.28 36055 37.0540 188.46 193.79 11.22 36056 37.0550 197.16 194.02 11.53 36057 37.0560 202.35 194.26 11.70 36058 37.0570 175.15 194.52 10.88 36059 37.0580 196.02 194.80 11.47 36060 37.0590 217.10 195.10 12.07 36061 37.0600 196.74 195.41 11.54 36062 37.0610 187.89 195.74 11.26 36063 37.0620 205.35 196.10 11.74 36064 37.0630 193.76 196.47 11.38 36065 37.0640 189.62 196.87 11.31 36066 37.0650 203.55 197.29 11.76 36067 37.0660 201.45 197.74 11.63 36068 37.0670 194.31 198.21 11.41 36069 37.0680 176.99 198.71 10.86 36070 37.0690 191.52 199.24 11.31 36071 37.0700 187.74 199.79 11.19 36072 37.0710 197.80 200.39 11.52 36073 37.0720 212.99 201.02 11.97 36074 37.0730 181.82 201.69 11.08 36075 37.0740 204.98 202.40 11.76 36076 37.0750 215.06 203.15 12.05 36077 37.0760 209.61 204.06 11.84 36078 37.0770 190.77 204.91 11.32 36079 37.0780 201.99 205.81 11.69 36080 37.0790 189.89 206.76 11.31 36081 37.0800 182.72 207.79 11.08 36082 37.0810 188.63 208.87 11.23 36083 37.0820 197.10 210.02 11.51 36084 37.0830 211.00 211.24 11.89 36085 37.0840 200.85 212.54 11.64 36086 37.0850 183.29 213.93 11.12 36087 37.0860 213.01 215.40 12.00 36088 37.0870 211.93 216.98 11.92 36089 37.0880 209.43 218.65 11.83 36090 37.0890 204.66 220.42 11.72 36091 37.0900 216.16 222.31 12.01 36092 37.0910 204.12 224.32 11.68 36093 37.0920 226.29 226.44 12.36 36094 37.0930 209.45 228.70 11.85 36095 37.0940 224.22 231.10 12.26 36096 37.0950 214.37 233.62 11.95 36097 37.0960 226.01 236.28 12.34 36098 37.0970 224.66 239.08 12.31 36099 37.0980 237.03 242.01 12.61 36100 37.0990 212.99 245.08 11.98 36101 37.1000 227.69 248.26 12.41 36102 37.1010 243.82 251.55 12.84 36103 37.1020 266.45 254.93 13.43 36104 37.1030 271.88 258.37 13.54 36105 37.1040 276.42 261.82 13.64 36106 37.1050 282.17 265.27 13.75 36107 37.1060 287.74 268.66 13.95 36108 37.1070 264.70 271.93 13.33 36109 37.1080 289.58 275.05 13.95 36110 37.1090 278.65 277.92 13.67 36111 37.1100 268.67 280.48 13.43 36112 37.1110 276.72 282.68 13.64 36113 37.1120 278.69 284.47 13.76 36114 37.1130 269.32 285.77 13.50 36115 37.1140 279.16 286.58 13.70 36116 37.1150 276.64 286.85 13.64 36117 37.1160 277.30 286.58 13.66 36118 37.1170 289.90 285.78 13.98 36119 37.1180 275.00 284.48 13.57 36120 37.1190 249.82 282.72 12.96 36121 37.1200 260.33 280.54 13.24 36122 37.1210 287.82 278.02 13.93 36123 37.1220 271.53 275.19 13.44 36124 37.1230 283.11 272.15 13.78 36125 37.1240 256.02 268.94 13.12 36126 37.1250 263.91 265.63 13.32 36127 37.1260 265.02 262.26 13.40 36128 37.1270 252.07 258.87 13.05 36129 37.1280 238.04 255.52 12.64 36130 37.1290 264.52 252.21 13.34 36131 37.1300 227.37 248.99 12.41 36132 37.1310 245.57 245.88 12.84 36133 37.1320 233.22 242.89 12.53 36134 37.1330 221.50 240.02 12.18 36135 37.1340 223.90 237.28 12.25 36136 37.1350 203.78 234.68 11.70 36137 37.1360 211.62 232.21 11.92 36138 37.1370 239.18 229.87 12.66 36139 37.1380 229.24 227.67 12.43 36140 37.1390 217.49 225.59 12.07 36141 37.1400 197.81 223.63 11.50 36142 37.1410 216.55 221.79 12.09 36143 37.1420 209.11 220.05 11.86 36144 37.1430 194.46 218.41 11.44 36145 37.1440 202.00 216.87 11.64 36146 37.1450 211.44 215.41 11.94 36147 37.1460 206.57 213.90 11.79 36148 37.1470 193.45 212.60 11.39 36149 37.1480 197.37 211.37 11.50 36150 37.1490 212.36 210.20 11.90 36151 37.1500 185.63 209.08 11.13 36152 37.1510 198.19 208.02 11.52 36153 37.1520 224.11 207.01 12.26 36154 37.1530 202.70 206.05 11.66 36155 37.1540 200.19 205.14 11.58 36156 37.1550 194.35 204.26 11.44 36157 37.1560 220.75 203.42 12.21 36158 37.1570 209.72 202.62 11.87 36159 37.1580 193.63 201.86 11.37 36160 37.1590 186.62 201.13 11.15 36161 37.1600 197.82 200.43 11.52 36162 37.1610 177.15 199.77 10.87 36163 37.1620 203.50 199.14 11.68 36164 37.1630 170.35 198.54 10.68 36165 37.1640 194.48 197.96 11.40 36166 37.1650 201.34 197.42 11.68 36167 37.1660 186.43 196.90 11.21 36168 37.1670 195.49 196.41 11.44 36169 37.1680 192.07 195.94 11.34 36170 37.1690 182.07 195.49 11.08 36171 37.1700 184.75 195.07 11.18 36172 37.1710 187.02 194.66 11.22 36173 37.1720 191.21 194.28 11.32 36174 37.1730 201.06 194.16 11.60 36175 37.1740 192.34 193.81 11.37 36176 37.1750 183.66 193.48 11.11 36177 37.1760 175.75 193.16 10.89 36178 37.1770 194.24 192.86 11.44 36179 37.1780 177.22 192.58 10.96 36180 37.1790 190.97 192.30 11.37 36181 37.1800 186.72 192.04 11.21 36182 37.1810 191.98 191.80 11.34 36183 37.1820 199.77 191.57 11.61 36184 37.1830 181.16 191.34 11.03 36185 37.1840 195.65 191.13 11.48 36186 37.1850 183.84 190.93 11.14 36187 37.1860 186.42 190.73 11.23 36188 37.1870 202.33 190.55 11.71 36189 37.1880 173.64 190.52 10.81 36190 37.1890 176.92 190.35 10.86 36191 37.1900 178.63 190.19 10.98 36192 37.1910 181.01 190.04 11.00 36193 37.1920 193.70 189.90 11.36 36194 37.1930 194.49 189.76 11.47 36195 37.1940 181.43 189.63 11.09 36196 37.1950 169.76 189.51 10.68 36197 37.1960 175.83 189.39 10.88 36198 37.1970 170.10 189.28 10.72 36199 37.1980 185.14 189.18 11.16 36200 37.1990 197.60 189.08 11.58 36201 37.2000 178.52 188.99 10.94 36202 37.2010 178.00 188.90 10.90 36203 37.2020 174.70 188.82 10.80 36204 37.2030 179.95 188.75 11.02 36205 37.2040 174.86 188.68 10.82 36206 37.2050 192.52 188.62 11.41 36207 37.2060 192.63 188.56 11.45 36208 37.2070 170.46 188.51 10.76 36209 37.2080 176.71 188.46 10.90 36210 37.2090 171.42 188.41 10.73 36211 37.2100 189.16 188.38 11.33 36212 37.2110 185.90 188.35 11.17 36213 37.2120 179.71 188.32 11.01 36214 37.2130 180.27 188.30 11.05 36215 37.2140 182.25 188.29 11.14 36216 37.2150 174.29 188.28 10.84 36217 37.2160 178.69 188.27 10.93 36218 37.2170 193.18 188.27 11.41 36219 37.2180 183.54 188.28 11.11 36220 37.2190 170.55 188.30 10.72 36221 37.2200 183.13 188.32 11.13 36222 37.2210 184.86 188.35 11.18 36223 37.2220 179.29 188.38 11.02 36224 37.2230 174.24 188.42 10.84 36225 37.2240 185.72 188.47 11.12 36226 37.2250 200.28 188.53 11.65 36227 37.2260 200.05 188.59 11.61 36228 37.2270 193.60 188.67 11.44 36229 37.2280 182.72 188.75 11.16 36230 37.2290 172.76 188.84 10.79 36231 37.2300 174.43 188.94 10.86 36232 37.2310 162.18 189.05 10.48 36233 37.2320 187.16 189.16 11.25 36234 37.2330 199.30 189.29 11.61 36235 37.2340 201.42 189.43 11.64 36236 37.2350 196.43 189.58 11.45 36237 37.2360 187.05 189.74 11.21 36238 37.2370 188.91 189.91 11.25 36239 37.2380 190.18 190.08 11.33 36240 37.2390 180.82 190.27 11.05 36241 37.2400 179.14 190.46 11.01 36242 37.2410 185.54 190.66 11.19 36243 37.2420 175.92 190.87 10.86 36244 37.2430 170.71 191.08 10.74 36245 37.2440 173.83 191.29 10.81 36246 37.2450 171.75 191.50 10.74 36247 37.2460 195.10 191.70 11.44 36248 37.2470 189.94 191.90 11.29 36249 37.2480 198.65 192.08 11.60 36250 37.2490 175.49 192.25 10.83 36251 37.2500 184.96 192.40 11.13 36252 37.2510 189.01 192.54 11.29 36253 37.2520 180.67 192.64 11.03 36254 37.2530 187.59 192.73 11.23 36255 37.2540 182.00 192.78 11.10 36256 37.2550 174.62 192.81 10.85 36257 37.2560 187.58 192.82 11.20 36258 37.2570 189.44 192.80 11.24 36259 37.2580 192.21 192.76 11.35 36260 37.2590 174.94 192.70 10.86 36261 37.2600 170.92 192.63 10.72 36262 37.2610 190.18 192.55 11.28 36263 37.2620 191.02 192.46 11.35 36264 37.2630 164.70 192.37 10.57 36265 37.2640 177.49 192.28 10.95 36266 37.2650 186.63 192.20 11.21 36267 37.2660 200.66 192.12 11.63 36268 37.2670 185.18 192.04 11.20 36269 37.2680 205.84 191.98 11.80 36270 37.2690 200.02 191.94 11.56 36271 37.2700 190.72 191.90 11.31 36272 37.2710 193.57 191.88 11.44 36273 37.2720 186.86 191.88 11.22 36274 37.2730 182.31 191.90 11.04 36275 37.2740 181.97 191.93 11.04 36276 37.2750 181.47 191.98 11.06 36277 37.2760 187.31 192.04 11.23 36278 37.2770 181.45 192.13 11.02 36279 37.2780 177.11 192.24 10.87 36280 37.2790 186.89 192.37 11.24 36281 37.2800 195.35 192.51 11.50 36282 37.2810 187.71 192.68 11.25 36283 37.2820 194.07 192.87 11.41 36284 37.2830 173.10 193.09 10.74 36285 37.2840 182.06 193.32 11.05 36286 37.2850 177.70 193.58 10.93 36287 37.2860 187.88 193.86 11.22 36288 37.2870 193.36 194.17 11.40 36289 37.2880 195.94 194.50 11.43 36290 37.2890 192.20 194.86 11.35 36291 37.2900 189.74 195.24 11.31 36292 37.2910 188.45 195.65 11.26 36293 37.2920 198.86 196.09 11.60 36294 37.2930 209.16 196.56 11.88 36295 37.2940 192.86 197.05 11.39 36296 37.2950 195.11 197.58 11.42 36297 37.2960 192.81 198.13 11.39 36298 37.2970 181.62 198.71 11.01 36299 37.2980 179.80 199.32 11.01 36300 37.2990 182.23 199.95 11.11 36301 37.3000 187.37 200.60 11.24 36302 37.3010 187.51 201.27 11.20 36303 37.3020 212.69 201.75 11.93 36304 37.3030 208.66 202.45 11.86 36305 37.3040 215.75 203.15 12.06 36306 37.3050 213.08 203.84 11.95 36307 37.3060 188.74 204.53 11.21 36308 37.3070 198.52 205.22 11.55 36309 37.3080 197.06 205.88 11.52 36310 37.3090 201.93 206.52 11.61 36311 37.3100 192.50 207.12 11.39 36312 37.3110 199.85 207.68 11.61 36313 37.3120 192.62 208.18 11.35 36314 37.3130 194.88 208.63 11.48 36315 37.3140 210.55 209.03 11.88 36316 37.3150 213.85 209.36 11.98 36317 37.3160 193.98 209.64 11.42 36318 37.3170 207.09 209.86 11.82 36319 37.3180 189.16 210.03 11.30 36320 37.3190 207.49 210.15 11.85 36321 37.3200 207.50 210.23 11.82 36322 37.3210 190.64 210.27 11.29 36323 37.3220 208.18 210.29 11.83 36324 37.3230 202.11 210.28 11.70 36325 37.3240 179.64 210.25 11.00 36326 37.3250 203.70 210.20 11.69 36327 37.3260 207.19 210.15 11.78 36328 37.3270 212.29 210.08 11.95 36329 37.3280 214.97 209.99 12.03 36330 37.3290 209.10 209.89 11.83 36331 37.3300 198.97 209.77 11.58 36332 37.3310 205.56 209.63 11.75 36333 37.3320 192.36 209.45 11.37 36334 37.3330 199.47 209.22 11.58 36335 37.3340 206.83 208.97 11.78 36336 37.3350 200.04 208.67 11.62 36337 37.3360 206.48 208.32 11.78 36338 37.3370 196.46 207.92 11.51 36339 37.3380 210.09 207.47 11.86 36340 37.3390 198.52 206.96 11.56 36341 37.3400 182.15 206.41 11.08 36342 37.3410 199.97 205.82 11.61 36343 37.3420 206.74 205.18 11.76 36344 37.3430 187.54 204.52 11.24 36345 37.3440 184.67 203.83 11.14 36346 37.3450 203.22 203.12 11.67 36347 37.3460 200.94 202.41 11.64 36348 37.3470 209.87 201.69 11.92 36349 37.3480 179.92 200.97 11.03 36350 37.3490 191.91 200.27 11.40 36351 37.3500 187.52 199.57 11.25 36352 37.3510 183.15 198.90 11.13 36353 37.3520 183.74 198.24 11.21 36354 37.3530 199.38 197.61 11.61 36355 37.3540 182.46 197.00 11.09 36356 37.3550 205.66 196.42 11.75 36357 37.3560 189.25 195.86 11.22 36358 37.3570 168.42 195.33 10.62 36359 37.3580 172.83 194.82 10.77 36360 37.3590 186.37 194.35 11.20 36361 37.3600 192.50 193.89 11.39 36362 37.3610 198.49 193.46 11.56 36363 37.3620 197.44 193.06 11.52 36364 37.3630 197.79 192.68 11.49 36365 37.3640 192.89 192.32 11.41 36366 37.3650 183.88 191.98 11.15 36367 37.3660 176.82 191.66 10.89 36368 37.3670 170.18 191.36 10.67 36369 37.3680 170.91 191.08 10.70 36370 37.3690 185.01 190.81 11.15 36371 37.3700 189.00 190.56 11.29 36372 37.3710 196.45 190.33 11.51 36373 37.3720 186.75 190.11 11.21 36374 37.3730 183.39 189.91 11.15 36375 37.3740 182.37 189.72 11.09 36376 37.3750 172.02 189.54 10.76 36377 37.3760 180.82 189.38 11.04 36378 37.3770 181.23 189.22 11.07 36379 37.3780 189.76 189.08 11.32 36380 37.3790 166.54 188.95 10.58 36381 37.3800 178.52 188.83 10.97 36382 37.3810 168.10 188.72 10.63 36383 37.3820 183.86 188.61 11.09 36384 37.3830 174.48 188.52 10.84 36385 37.3840 177.48 188.44 10.87 36386 37.3850 175.93 188.36 10.82 36387 37.3860 163.76 188.29 10.49 36388 37.3870 185.19 188.24 11.22 36389 37.3880 178.64 188.19 10.97 36390 37.3890 201.30 188.14 11.67 36391 37.3900 205.11 188.11 11.83 36392 37.3910 189.27 188.08 11.34 36393 37.3920 187.90 188.07 11.26 36394 37.3930 180.97 188.05 11.09 36395 37.3940 178.74 188.05 10.95 36396 37.3950 189.39 188.05 11.27 36397 37.3960 186.71 188.07 11.22 36398 37.3970 183.52 188.09 11.06 36399 37.3980 163.61 188.12 10.49 36400 37.3990 164.11 188.15 10.48 36401 37.4000 177.44 188.20 10.92 36402 37.4010 188.90 188.26 11.35 36403 37.4020 199.19 188.32 11.63 36404 37.4030 182.21 188.39 11.05 36405 37.4040 174.35 188.47 10.83 36406 37.4050 183.11 188.56 11.12 36407 37.4060 176.32 188.66 10.89 36408 37.4070 174.22 188.77 10.85 36409 37.4080 171.66 188.89 10.73 36410 37.4090 160.81 189.01 10.34 36411 37.4100 172.77 189.15 10.78 36412 37.4110 193.95 189.29 11.47 36413 37.4120 172.40 189.44 10.78 36414 37.4130 180.80 189.60 11.02 36415 37.4140 182.93 189.76 11.05 36416 37.4150 173.69 189.93 10.79 36417 37.4160 187.68 190.10 11.27 36418 37.4170 175.74 190.27 10.90 36419 37.4180 185.19 190.45 11.17 36420 37.4190 183.81 190.61 11.13 36421 37.4200 180.58 190.77 11.02 36422 37.4210 165.20 190.92 10.46 36423 37.4220 162.66 191.06 10.48 36424 37.4230 169.47 191.19 10.68 36425 37.4240 182.01 191.30 11.02 36426 37.4250 178.12 191.38 10.97 36427 37.4260 182.38 191.45 11.10 36428 37.4270 174.41 191.49 10.86 36429 37.4280 170.87 191.52 10.73 36430 37.4290 181.92 191.52 11.09 36431 37.4300 188.82 191.51 11.25 36432 37.4310 177.93 191.48 10.96 36433 37.4320 183.17 191.43 11.10 36434 37.4330 181.22 191.37 11.06 36435 37.4340 177.18 191.30 11.00 36436 37.4350 189.70 191.22 11.32 36437 37.4360 193.49 191.15 11.38 36438 37.4370 179.73 191.06 11.02 36439 37.4380 180.21 190.99 11.01 36440 37.4390 190.96 190.91 11.34 36441 37.4400 179.57 190.84 10.95 36442 37.4410 170.25 190.78 10.64 36443 37.4420 175.87 190.73 10.91 36444 37.4430 199.48 190.68 11.61 36445 37.4440 183.72 190.65 11.16 36446 37.4450 183.05 190.62 11.11 36447 37.4460 169.31 190.61 10.66 36448 37.4470 179.28 190.61 11.04 36449 37.4480 190.09 190.62 11.33 36450 37.4490 176.43 190.64 10.86 36451 37.4500 162.31 190.68 10.39 36452 37.4510 177.22 190.73 10.89 36453 37.4520 163.84 190.79 10.54 36454 37.4530 174.65 190.86 10.85 36455 37.4540 182.22 190.95 11.10 36456 37.4550 186.09 191.04 11.22 36457 37.4560 188.46 191.16 11.32 36458 37.4570 179.74 191.28 10.99 36459 37.4580 172.25 191.42 10.77 36460 37.4590 181.78 191.57 11.06 36461 37.4600 175.55 191.73 10.87 36462 37.4610 196.61 191.91 11.46 36463 37.4620 213.76 192.10 11.97 36464 37.4630 181.96 192.30 11.06 36465 37.4640 178.93 192.52 10.98 36466 37.4650 194.44 192.75 11.45 36467 37.4660 183.36 193.00 11.13 36468 37.4670 197.71 193.26 11.55 36469 37.4680 175.43 193.53 10.85 36470 37.4690 186.70 193.82 11.20 36471 37.4700 187.18 194.13 11.19 36472 37.4710 176.72 194.45 10.89 36473 37.4720 175.10 194.79 10.86 36474 37.4730 182.74 195.14 11.04 36475 37.4740 194.58 195.51 11.42 36476 37.4750 198.45 195.89 11.55 36477 37.4760 201.34 196.30 11.61 36478 37.4770 202.44 196.72 11.68 36479 37.4780 195.19 197.15 11.44 36480 37.4790 192.29 197.61 11.37 36481 37.4800 194.84 198.22 11.43 36482 37.4810 186.19 198.72 11.17 36483 37.4820 182.42 199.25 11.07 36484 37.4830 192.93 199.80 11.41 36485 37.4840 198.07 200.38 11.52 36486 37.4850 195.04 200.98 11.44 36487 37.4860 177.40 201.62 10.89 36488 37.4870 182.73 202.30 11.08 36489 37.4880 191.91 203.01 11.30 36490 37.4890 180.20 203.76 10.99 36491 37.4900 188.85 204.56 11.32 36492 37.4910 200.63 205.41 11.66 36493 37.4920 205.04 206.30 11.74 36494 37.4930 205.74 207.24 11.75 36495 37.4940 196.87 208.23 11.49 36496 37.4950 209.66 209.28 11.83 36497 37.4960 203.80 210.38 11.72 36498 37.4970 196.93 211.54 11.50 36499 37.4980 181.19 212.74 11.02 36500 37.4990 212.14 213.99 11.94 36501 37.5000 209.52 215.29 11.88 36502 37.5010 220.08 216.61 12.15 36503 37.5020 209.21 217.96 11.88 36504 37.5030 206.77 219.33 11.76 36505 37.5040 230.22 220.70 12.41 36506 37.5050 233.55 222.05 12.55 36507 37.5060 217.43 223.35 12.07 36508 37.5070 226.17 224.60 12.33 36509 37.5080 230.50 225.77 12.47 36510 37.5090 212.83 226.83 11.99 36511 37.5100 230.15 227.77 12.45 36512 37.5110 241.20 228.56 12.73 36513 37.5120 231.15 229.19 12.47 36514 37.5130 216.30 229.64 12.09 36515 37.5140 216.48 229.90 12.02 36516 37.5150 228.16 229.99 12.40 36517 37.5160 212.39 229.89 12.00 36518 37.5170 202.66 229.62 11.66 36519 37.5180 219.86 229.20 12.16 36520 37.5190 217.68 228.64 12.09 36521 37.5200 198.55 227.96 11.51 36522 37.5210 210.64 227.20 11.90 36523 37.5220 226.99 226.37 12.34 36524 37.5230 221.24 225.49 12.19 36525 37.5240 221.46 224.58 12.17 36526 37.5250 220.11 223.66 12.17 36527 37.5260 206.74 222.76 11.81 36528 37.5270 204.42 221.89 11.69 36529 37.5280 194.76 221.04 11.41 36530 37.5290 199.63 220.25 11.61 36531 37.5300 219.33 219.51 12.18 36532 37.5310 207.23 218.83 11.84 36533 37.5320 206.80 218.22 11.77 36534 37.5330 200.87 217.67 11.56 36535 37.5340 206.72 217.20 11.79 36536 37.5350 207.53 216.80 11.82 36537 37.5360 208.91 216.47 11.84 36538 37.5370 218.68 216.21 12.13 36539 37.5380 213.63 216.03 11.98 36540 37.5390 207.31 215.91 11.80 36541 37.5400 222.55 215.87 12.21 36542 37.5410 203.34 215.90 11.69 36543 37.5420 201.57 215.99 11.65 36544 37.5430 218.62 216.14 12.13 36545 37.5440 191.65 216.35 11.32 36546 37.5450 206.36 216.63 11.78 36547 37.5460 201.09 216.96 11.57 36548 37.5470 203.11 217.34 11.70 36549 37.5480 201.39 217.76 11.59 36550 37.5490 200.55 218.23 11.58 36551 37.5500 217.50 218.73 12.06 36552 37.5510 225.41 219.26 12.31 36553 37.5520 226.21 219.82 12.31 36554 37.5530 211.84 220.39 11.91 36555 37.5540 208.53 220.97 11.81 36556 37.5550 226.58 221.52 12.36 36557 37.5560 227.33 222.09 12.40 36558 37.5570 225.21 222.64 12.29 36559 37.5580 205.15 223.16 11.71 36560 37.5590 197.56 223.64 11.56 36561 37.5600 207.20 224.09 11.81 36562 37.5610 209.96 224.48 11.91 36563 37.5620 220.12 224.83 12.15 36564 37.5630 215.09 225.12 12.06 36565 37.5640 222.55 225.36 12.22 36566 37.5650 195.02 225.55 11.45 36567 37.5660 198.03 225.70 11.55 36568 37.5670 220.27 225.80 12.20 36569 37.5680 235.76 225.87 12.60 36570 37.5690 223.30 225.91 12.27 36571 37.5700 212.46 226.25 11.98 36572 37.5710 226.60 226.27 12.39 36573 37.5720 231.02 226.30 12.49 36574 37.5730 231.99 226.34 12.51 36575 37.5740 219.57 226.40 12.14 36576 37.5750 210.26 226.49 11.86 36577 37.5760 220.21 226.62 12.14 36578 37.5770 219.21 226.80 12.15 36579 37.5780 213.26 226.85 12.03 36580 37.5790 204.48 227.13 11.74 36581 37.5800 216.53 227.48 12.06 36582 37.5810 209.79 227.88 11.83 36583 37.5820 220.77 228.34 12.17 36584 37.5830 224.14 228.87 12.31 36585 37.5840 234.68 229.47 12.61 36586 37.5850 221.65 230.12 12.22 36587 37.5860 232.63 230.84 12.52 36588 37.5870 216.85 231.61 12.09 36589 37.5880 220.33 232.43 12.15 36590 37.5890 210.61 233.29 11.88 36591 37.5900 241.82 234.19 12.75 36592 37.5910 228.11 235.11 12.37 36593 37.5920 219.35 236.05 12.11 36594 37.5930 230.43 236.99 12.44 36595 37.5940 224.73 237.92 12.32 36596 37.5950 226.00 238.83 12.37 36597 37.5960 235.77 239.71 12.57 36598 37.5970 241.28 240.54 12.77 36599 37.5980 250.44 241.31 13.02 36600 37.5990 232.07 242.01 12.53 36601 37.6000 245.13 242.64 12.87 36602 37.6010 242.39 243.19 12.77 36603 37.6020 251.46 243.67 13.05 36604 37.6030 233.94 244.06 12.57 36605 37.6040 237.86 244.38 12.68 36606 37.6050 236.52 244.64 12.67 36607 37.6060 225.72 244.84 12.31 36608 37.6070 218.84 245.00 12.16 36609 37.6080 219.01 245.14 12.10 36610 37.6090 249.94 245.26 12.95 36611 37.6100 241.04 245.38 12.71 36612 37.6110 256.15 245.53 13.12 36613 37.6120 250.40 245.72 12.92 36614 37.6130 228.59 245.96 12.36 36615 37.6140 238.42 246.26 12.67 36616 37.6150 251.62 246.65 12.99 36617 37.6160 247.88 247.13 12.90 36618 37.6170 261.63 247.72 13.31 36619 37.6180 259.58 248.43 13.26 36620 37.6190 239.60 249.27 12.64 36621 37.6200 229.76 250.25 12.43 36622 37.6210 240.56 251.38 12.73 36623 37.6220 241.77 252.66 12.78 36624 37.6230 246.02 254.12 12.90 36625 37.6240 245.46 255.74 12.90 36626 37.6250 268.45 257.55 13.46 36627 37.6260 272.52 259.56 13.53 36628 37.6270 266.99 261.76 13.44 36629 37.6280 261.71 264.15 13.29 36630 37.6290 255.28 266.77 13.16 36631 37.6300 263.95 269.60 13.35 36632 37.6310 259.10 272.62 13.19 36633 37.6320 285.10 275.88 13.83 36634 37.6330 280.24 279.35 13.75 36635 37.6340 274.87 283.02 13.59 36636 37.6350 268.31 286.90 13.45 36637 37.6360 281.17 290.98 13.79 36638 37.6370 283.05 295.21 13.78 36639 37.6380 314.28 299.59 14.60 36640 37.6390 313.79 304.07 14.59 36641 37.6400 303.24 308.61 14.29 36642 37.6410 314.50 313.18 14.53 36643 37.6420 336.57 317.70 15.06 36644 37.6430 319.48 322.11 14.67 36645 37.6440 316.90 326.32 14.58 36646 37.6450 333.25 330.27 14.98 36647 37.6460 350.63 333.83 15.41 36648 37.6470 342.45 336.98 15.16 36649 37.6480 351.34 339.61 15.33 36650 37.6490 369.55 341.65 15.74 36651 37.6500 357.49 343.06 15.49 36652 37.6510 356.51 343.78 15.47 36653 37.6520 365.17 343.81 15.66 36654 37.6530 332.86 343.15 15.00 36655 37.6540 336.64 341.83 15.01 36656 37.6550 332.49 339.89 14.95 36657 37.6560 350.06 337.38 15.33 36658 37.6570 357.77 334.38 15.53 36659 37.6580 309.68 330.98 14.46 36660 37.6590 325.36 327.27 14.80 36661 37.6600 325.06 323.30 14.83 36662 37.6610 304.63 319.17 14.36 36663 37.6620 303.93 314.95 14.34 36664 37.6630 304.24 310.70 14.30 36665 37.6640 292.61 306.45 14.03 36666 37.6650 291.40 302.31 14.02 36667 37.6660 286.28 298.25 13.94 36668 37.6670 279.72 294.34 13.73 36669 37.6680 279.32 290.60 13.71 36670 37.6690 305.39 287.02 14.37 36671 37.6700 288.12 283.64 13.91 36672 37.6710 269.49 280.46 13.47 36673 37.6720 258.64 277.48 13.18 36674 37.6730 251.75 274.72 13.01 36675 37.6740 260.95 272.17 13.25 36676 37.6750 263.22 269.83 13.34 36677 37.6760 263.21 267.70 13.31 36678 37.6770 241.28 265.79 12.71 36679 37.6780 265.53 264.07 13.38 36680 37.6790 250.92 262.57 13.00 36681 37.6800 262.13 261.27 13.32 36682 37.6810 261.90 260.17 13.27 36683 37.6820 244.12 259.26 12.84 36684 37.6830 240.47 258.55 12.70 36685 37.6840 250.04 258.03 12.96 36686 37.6850 254.61 257.70 13.10 36687 37.6860 248.69 257.55 12.95 36688 37.6870 265.65 257.59 13.37 36689 37.6880 239.88 257.80 12.68 36690 37.6890 243.65 258.19 12.79 36691 37.6900 240.39 258.75 12.73 36692 37.6910 247.49 259.48 12.91 36693 37.6920 281.57 260.37 13.77 36694 37.6930 265.92 261.42 13.42 36695 37.6940 257.46 262.61 13.18 36696 37.6950 258.46 263.92 13.17 36697 37.6960 279.28 265.37 13.75 36698 37.6970 271.18 266.92 13.55 36699 37.6980 258.04 268.57 13.21 36700 37.6990 267.85 270.27 13.42 36701 37.7000 265.53 272.01 13.34 36702 37.7010 246.60 273.77 12.87 36703 37.7020 244.56 275.49 12.83 36704 37.7030 265.48 277.17 13.36 36705 37.7040 274.40 278.74 13.58 36706 37.7050 272.83 280.19 13.55 36707 37.7060 289.97 281.45 13.96 36708 37.7070 275.58 282.50 13.63 36709 37.7080 276.73 283.29 13.65 36710 37.7090 252.51 283.80 13.09 36711 37.7100 290.54 284.00 14.00 36712 37.7110 292.62 283.87 14.04 36713 37.7120 294.74 283.39 14.12 36714 37.7130 285.59 282.57 13.86 36715 37.7140 274.67 281.49 13.59 36716 37.7150 284.82 280.02 13.87 36717 37.7160 279.94 278.26 13.75 36718 37.7170 269.49 276.23 13.47 36719 37.7180 274.02 273.98 13.54 36720 37.7190 270.78 271.51 13.49 36721 37.7200 265.67 268.91 13.36 36722 37.7210 248.72 266.18 12.95 36723 37.7220 254.18 263.37 13.10 36724 37.7230 264.02 260.52 13.36 36725 37.7240 238.94 257.64 12.67 36726 37.7250 231.96 254.77 12.46 36727 37.7260 242.18 251.93 12.77 36728 37.7270 246.13 249.12 12.90 36729 37.7280 242.77 246.38 12.80 36730 37.7290 224.53 243.78 12.27 36731 37.7300 235.61 241.21 12.58 36732 37.7310 229.87 238.72 12.42 36733 37.7320 213.77 236.34 11.96 36734 37.7330 230.97 234.04 12.47 36735 37.7340 210.93 231.84 11.90 36736 37.7350 227.56 229.75 12.41 36737 37.7360 217.61 227.75 12.08 36738 37.7370 203.75 225.85 11.72 36739 37.7380 216.19 224.04 12.06 36740 37.7390 216.73 222.31 12.07 36741 37.7400 209.92 220.66 11.90 36742 37.7410 198.84 219.11 11.55 36743 37.7420 204.97 217.63 11.71 36744 37.7430 211.51 216.22 11.97 36745 37.7440 212.38 214.89 11.93 36746 37.7450 224.81 213.62 12.30 36747 37.7460 213.78 212.41 12.01 36748 37.7470 205.12 211.26 11.80 36749 37.7480 213.66 210.18 12.03 36750 37.7490 206.69 209.14 11.80 36751 37.7500 194.06 208.16 11.48 36752 37.7510 193.06 207.23 11.43 36753 37.7520 200.36 206.34 11.59 36754 37.7530 203.49 205.49 11.68 36755 37.7540 199.73 204.68 11.57 36756 37.7550 201.47 203.91 11.58 36757 37.7560 197.26 203.18 11.51 36758 37.7570 206.59 202.48 11.84 36759 37.7580 194.92 201.81 11.44 36760 37.7590 189.64 201.18 11.26 36761 37.7600 202.20 200.57 11.67 36762 37.7610 210.77 199.99 11.93 36763 37.7620 198.71 199.43 11.59 36764 37.7630 197.05 198.90 11.49 36765 37.7640 202.92 198.40 11.64 36766 37.7650 205.44 197.91 11.76 36767 37.7660 202.04 197.45 11.62 36768 37.7670 193.90 197.00 11.47 36769 37.7680 175.80 196.57 10.90 36770 37.7690 189.70 196.16 11.33 36771 37.7700 200.40 195.77 11.65 36772 37.7710 195.06 195.39 11.51 36773 37.7720 191.71 195.03 11.38 36774 37.7730 184.52 194.68 11.15 36775 37.7740 197.49 194.35 11.52 36776 37.7750 183.81 194.02 11.16 36777 37.7760 188.18 193.71 11.23 36778 37.7770 191.26 193.42 11.34 36779 37.7780 181.26 193.13 11.04 36780 37.7790 163.62 192.86 10.49 36781 37.7800 185.82 192.59 11.13 36782 37.7810 187.15 192.34 11.22 36783 37.7820 186.53 192.09 11.18 36784 37.7830 172.53 191.86 10.78 36785 37.7840 192.50 191.63 11.39 36786 37.7850 204.27 191.41 11.71 36787 37.7860 191.94 191.20 11.34 36788 37.7870 183.30 191.00 11.11 36789 37.7880 192.55 190.81 11.38 36790 37.7890 175.22 190.62 10.86 36791 37.7900 192.41 190.44 11.39 36792 37.7910 187.26 190.26 11.27 36793 37.7920 187.08 190.10 11.23 36794 37.7930 182.96 189.94 11.13 36795 37.7940 182.31 189.78 11.08 36796 37.7950 184.57 189.64 11.16 36797 37.7960 184.39 189.49 11.13 36798 37.7970 192.81 189.36 11.39 36799 37.7980 182.82 189.23 11.10 36800 37.7990 180.43 189.10 10.98 36801 37.8000 193.72 188.98 11.40 36802 37.8010 177.63 188.87 10.90 36803 37.8020 193.79 188.76 11.36 36804 37.8030 186.49 188.65 11.22 36805 37.8040 184.55 188.55 11.16 36806 37.8050 173.33 188.46 10.81 36807 37.8060 175.64 188.37 10.89 36808 37.8070 181.37 188.28 11.06 36809 37.8080 178.16 188.20 10.97 36810 37.8090 176.40 188.12 10.91 36811 37.8100 179.41 188.04 11.01 36812 37.8110 176.47 187.97 10.86 36813 37.8120 174.48 187.91 10.77 36814 37.8130 187.09 187.84 11.20 36815 37.8140 176.66 187.78 10.87 36816 37.8150 194.15 187.72 11.45 36817 37.8160 186.35 187.66 11.20 36818 37.8170 181.75 187.60 11.12 36819 37.8180 167.04 187.54 10.61 36820 37.8190 196.99 187.48 11.49 36821 37.8200 187.90 187.42 11.23 36822 37.8210 185.85 187.37 11.19 36823 37.8220 178.59 187.30 10.92 36824 37.8230 188.96 187.24 11.32 36825 37.8240 180.77 187.18 11.01 36826 37.8250 178.81 187.12 10.95 36827 37.8260 163.63 187.05 10.43 36828 37.8270 185.61 186.98 11.15 36829 37.8280 186.13 186.92 11.21 36830 37.8290 179.72 186.85 11.01 36831 37.8300 180.25 186.78 10.99 36832 37.8310 202.43 186.71 11.69 36833 37.8320 189.05 186.65 11.26 36834 37.8330 188.45 186.59 11.21 36835 37.8340 175.25 186.49 10.82 36836 37.8350 183.60 186.43 11.09 36837 37.8360 180.40 186.37 11.01 36838 37.8370 178.81 186.31 10.99 36839 37.8380 183.81 186.26 11.13 36840 37.8390 185.97 186.18 11.17 36841 37.8400 190.30 186.13 11.34 36842 37.8410 193.53 186.08 11.43 36843 37.8420 168.93 186.04 10.68 36844 37.8430 174.63 185.99 10.88 36845 37.8440 180.85 185.96 11.03 36846 37.8450 179.63 186.08 10.97 36847 37.8460 187.47 186.05 11.25 36848 37.8470 186.46 186.01 11.14 36849 37.8480 171.53 185.99 10.76 36850 37.8490 188.50 185.96 11.23 36851 37.8500 181.94 185.94 11.06 36852 37.8510 176.77 185.92 10.95 36853 37.8520 196.90 185.90 11.42 36854 37.8530 178.02 185.88 10.93 36855 37.8540 184.61 185.87 11.11 36856 37.8550 203.11 185.86 11.75 36857 37.8560 178.95 185.85 11.01 36858 37.8570 181.10 185.84 11.09 36859 37.8580 183.61 185.84 11.07 36860 37.8590 183.72 185.84 11.12 36861 37.8600 187.11 185.84 11.24 36862 37.8610 171.72 185.84 10.74 36863 37.8620 167.23 185.84 10.67 36864 37.8630 174.28 185.85 10.77 36865 37.8640 180.24 185.86 10.97 36866 37.8650 185.87 185.87 11.20 36867 37.8660 173.74 185.88 10.81 36868 37.8670 181.68 185.90 11.06 36869 37.8680 167.46 185.92 10.63 36870 37.8690 177.19 185.94 10.94 36871 37.8700 183.08 185.96 11.11 36872 37.8710 182.12 185.99 11.11 36873 37.8720 185.33 186.02 11.16 36874 37.8730 192.52 186.05 11.34 36875 37.8740 172.86 186.08 10.73 36876 37.8750 172.56 186.11 10.74 36877 37.8760 167.27 186.15 10.59 36878 37.8770 173.18 186.19 10.80 36879 37.8780 182.71 186.23 11.08 36880 37.8790 184.60 186.28 11.16 36881 37.8800 197.77 186.33 11.60 36882 37.8810 198.55 186.38 11.55 36883 37.8820 182.06 186.43 11.07 36884 37.8830 184.81 186.49 11.13 36885 37.8840 203.28 186.55 11.71 36886 37.8850 171.90 186.62 10.78 36887 37.8860 182.13 186.68 11.06 36888 37.8870 171.52 186.76 10.75 36889 37.8880 170.81 186.83 10.71 36890 37.8890 178.26 186.91 10.95 36891 37.8900 185.48 186.99 11.25 36892 37.8910 176.91 187.08 10.91 36893 37.8920 186.60 187.17 11.21 36894 37.8930 193.18 187.26 11.42 36895 37.8940 183.79 187.36 11.18 36896 37.8950 197.45 187.47 11.56 36897 37.8960 193.13 187.57 11.39 36898 37.8970 182.24 187.69 11.08 36899 37.8980 181.59 187.81 11.05 36900 37.8990 181.06 187.93 11.05 36901 37.9000 174.76 188.06 10.83 36902 37.9010 185.97 188.19 11.17 36903 37.9020 186.54 188.33 11.21 36904 37.9030 171.71 188.48 10.73 36905 37.9040 191.62 188.62 11.34 36906 37.9050 196.97 188.78 11.49 36907 37.9060 185.43 188.94 11.17 36908 37.9070 201.36 189.09 11.61 36909 37.9080 194.10 189.26 11.39 36910 37.9090 203.97 189.43 11.74 36911 37.9100 201.01 189.61 11.65 36912 37.9110 209.26 189.79 11.88 36913 37.9120 204.42 189.97 11.77 36914 37.9130 195.51 190.15 11.49 36915 37.9140 182.87 190.33 11.06 36916 37.9150 179.05 190.52 10.97 36917 37.9160 186.66 190.70 11.22 36918 37.9170 202.94 190.88 11.73 36919 37.9180 202.64 191.06 11.68 36920 37.9190 180.97 191.24 11.03 36921 37.9200 188.86 191.41 11.27 36922 37.9210 172.77 191.58 10.74 36923 37.9220 156.57 191.75 10.23 36924 37.9230 183.34 191.91 11.10 36925 37.9240 188.49 192.08 11.27 36926 37.9250 199.27 192.24 11.59 36927 37.9260 181.76 192.40 11.06 36928 37.9270 184.25 192.57 11.14 36929 37.9280 177.85 192.73 10.94 36930 37.9290 183.86 192.90 11.13 36931 37.9300 204.92 193.07 11.77 36932 37.9310 184.92 193.26 11.10 36933 37.9320 197.04 193.44 11.58 36934 37.9330 198.41 193.64 11.53 36935 37.9340 193.80 193.85 11.41 36936 37.9350 205.12 194.07 11.74 36937 37.9360 193.49 194.30 11.41 36938 37.9370 191.78 194.55 11.38 36939 37.9380 178.08 194.81 10.97 36940 37.9390 189.68 195.08 11.28 36941 37.9400 190.05 195.37 11.27 36942 37.9410 167.49 195.68 10.58 36943 37.9420 181.87 196.01 11.07 36944 37.9430 205.88 196.35 11.71 36945 37.9440 207.22 196.72 11.81 36946 37.9450 176.35 197.10 10.92 36947 37.9460 188.47 197.51 11.31 36948 37.9470 201.19 197.94 11.68 36949 37.9480 208.61 198.39 11.86 36950 37.9490 201.21 198.87 11.69 36951 37.9500 200.62 199.37 11.64 36952 37.9510 203.77 199.90 11.70 36953 37.9520 206.76 200.46 11.77 36954 37.9530 215.13 201.05 11.99 36955 37.9540 198.18 201.67 11.50 36956 37.9550 195.35 202.32 11.45 36957 37.9560 191.29 203.01 11.30 36958 37.9570 190.16 203.73 11.23 36959 37.9580 182.50 204.50 11.02 36960 37.9590 199.45 205.30 11.57 36961 37.9600 214.19 206.14 12.03 36962 37.9610 207.92 207.10 11.84 36963 37.9620 200.98 208.04 11.65 36964 37.9630 200.97 209.03 11.63 36965 37.9640 188.72 210.06 11.23 36966 37.9650 214.87 211.15 12.03 36967 37.9660 204.60 212.30 11.72 36968 37.9670 215.90 213.51 12.07 36969 37.9680 200.76 214.77 11.61 36970 37.9690 207.37 216.11 11.86 36971 37.9700 224.87 217.51 12.33 36972 37.9710 223.80 218.97 12.24 36973 37.9720 219.91 220.51 12.18 36974 37.9730 223.90 222.12 12.30 36975 37.9740 234.95 223.79 12.57 36976 37.9750 220.45 225.54 12.14 36977 37.9760 218.10 227.37 12.05 36978 37.9770 236.06 229.25 12.58 36979 37.9780 230.90 231.21 12.47 36980 37.9790 236.08 233.22 12.57 36981 37.9800 239.78 235.28 12.69 36982 37.9810 244.47 237.40 12.85 36983 37.9820 235.79 239.49 12.60 36984 37.9830 248.01 241.66 12.92 36985 37.9840 256.98 243.83 13.13 36986 37.9850 250.24 246.00 12.99 36987 37.9860 261.78 248.13 13.29 36988 37.9870 251.31 250.21 13.03 36989 37.9880 257.21 252.21 13.16 36990 37.9890 290.99 254.10 14.02 36991 37.9900 266.55 255.88 13.43 36992 37.9910 248.58 257.50 12.88 36993 37.9920 256.65 258.93 13.12 36994 37.9930 261.33 260.17 13.23 36995 37.9940 261.25 261.19 13.25 36996 37.9950 268.89 261.99 13.44 36997 37.9960 275.22 262.54 13.60 36998 37.9970 251.48 262.86 13.02 36999 37.9980 254.95 262.95 13.12 37000 37.9990 251.59 262.81 13.05 37001 38.0000 264.71 262.46 13.36 37002 38.0010 258.86 261.92 13.20 37003 38.0020 245.72 261.22 12.92 37004 38.0030 259.54 260.38 13.22 37005 38.0040 251.44 259.42 13.59 37006 38.0050 239.03 258.38 13.19 37007 38.0060 238.27 257.28 13.22 37008 38.0070 252.98 256.14 13.59 37009 38.0080 250.21 255.01 13.49 37010 38.0090 254.54 253.88 13.62 37011 38.0100 239.29 252.79 13.21 37012 38.0110 262.72 251.74 13.85 37013 38.0120 234.70 250.76 13.12 37014 38.0130 237.49 249.86 13.17 37015 38.0140 229.85 249.05 12.96 37016 38.0150 229.85 248.34 12.95 37017 38.0160 249.46 247.73 13.49 37018 38.0170 253.85 247.24 13.66 37019 38.0180 234.00 246.86 13.08 37020 38.0190 255.85 246.61 13.68 37021 38.0200 258.64 246.48 13.73 37022 38.0210 247.21 246.49 13.45 37023 38.0220 221.86 246.63 12.71 37024 38.0230 234.51 246.91 13.08 37025 38.0240 245.04 247.33 13.41 37026 38.0250 236.19 247.90 13.14 37027 38.0260 254.11 248.62 13.58 37028 38.0270 243.62 249.50 13.33 37029 38.0280 230.24 250.54 13.00 37030 38.0290 252.63 251.74 13.64 37031 38.0300 250.04 253.11 13.55 37032 38.0310 263.87 254.67 13.85 37033 38.0320 260.30 256.41 13.80 37034 38.0330 252.94 258.33 13.56 37035 38.0340 265.70 260.46 14.04 37036 38.0350 264.33 262.79 13.90 37037 38.0360 264.98 265.32 13.90 37038 38.0370 262.28 268.08 13.83 37039 38.0380 262.11 271.05 13.80 37040 38.0390 282.23 274.27 14.36 37041 38.0400 276.70 277.81 14.17 37042 38.0410 277.23 281.49 14.22 37043 38.0420 270.17 285.39 14.04 37044 38.0430 268.39 289.53 14.01 37045 38.0440 285.40 293.89 14.48 37046 38.0450 301.02 298.46 14.87 37047 38.0460 291.01 303.26 14.59 37048 38.0470 310.17 308.22 15.03 37049 38.0480 309.04 313.30 14.96 37050 38.0490 315.84 318.52 15.22 37051 38.0500 340.50 323.79 15.75 37052 38.0510 341.88 329.05 15.77 37053 38.0520 345.34 334.26 15.89 37054 38.0530 322.60 339.34 15.33 37055 38.0540 364.11 344.17 16.32 37056 38.0550 355.24 348.69 16.12 37057 38.0560 389.91 352.81 16.83 37058 38.0570 388.79 356.40 16.81 37059 38.0580 396.49 359.41 16.99 37060 38.0590 416.33 361.74 17.45 37061 38.0600 368.20 363.32 16.37 37062 38.0610 359.75 364.10 16.19 37063 38.0620 368.72 364.06 16.40 37064 38.0630 381.17 363.19 16.70 37065 38.0640 354.97 361.51 16.15 37066 38.0650 357.44 359.06 16.10 37067 38.0660 339.16 355.89 15.71 37068 38.0670 351.58 352.10 15.95 37069 38.0680 358.49 347.75 16.12 37070 38.0690 310.23 342.97 15.05 37071 38.0700 338.83 337.81 15.72 37072 38.0710 325.18 332.38 15.42 37073 38.0720 320.39 326.79 15.33 37074 38.0730 326.18 321.06 15.45 37075 38.0740 295.81 315.32 14.77 37076 38.0750 291.69 309.62 14.58 37077 38.0760 282.75 303.99 14.36 37078 38.0770 285.08 298.48 14.43 37079 38.0780 277.52 293.13 14.26 37080 38.0790 274.48 287.94 14.17 37081 38.0800 274.38 282.93 14.10 37082 38.0810 266.37 278.14 13.90 37083 38.0820 257.45 273.58 13.71 37084 38.0830 265.23 269.21 13.91 37085 38.0840 262.01 265.06 13.85 37086 38.0850 251.71 261.12 13.57 37087 38.0860 269.22 257.38 14.01 37088 38.0870 251.53 253.83 13.63 37089 38.0880 226.24 250.49 12.80 37090 38.0890 231.50 247.32 12.96 37091 38.0900 234.61 244.33 13.05 37092 38.0910 223.67 241.51 12.77 37093 38.0920 239.81 238.84 13.23 37094 38.0930 214.83 236.32 12.45 37095 38.0940 225.50 233.94 12.79 37096 38.0950 235.64 231.69 13.11 37097 38.0960 230.78 229.57 12.98 37098 38.0970 222.69 227.57 12.76 37099 38.0980 215.10 225.67 12.51 37100 38.0990 229.52 223.88 12.92 37101 38.1000 212.22 222.19 12.44 37102 38.1010 220.33 220.58 12.70 37103 38.1020 220.34 219.07 12.70 37104 38.1030 203.11 217.63 12.19 37105 38.1040 215.75 216.27 12.54 37106 38.1050 197.26 214.99 11.99 37107 38.1060 207.77 213.77 12.36 37108 38.1070 212.30 212.61 12.43 37109 38.1080 215.31 211.50 12.48 37110 38.1090 211.88 210.46 12.46 37111 38.1100 212.85 209.46 12.47 37112 38.1110 206.90 208.52 12.33 37113 38.1120 217.02 207.62 12.65 37114 38.1130 234.45 206.73 13.14 37115 38.1140 225.79 205.91 12.83 37116 38.1150 204.85 205.14 12.21 37117 38.1160 213.12 204.40 12.49 37118 38.1170 198.82 203.69 12.01 37119 38.1180 224.86 203.02 12.79 37120 38.1190 226.71 202.38 12.89 37121 38.1200 186.81 201.76 11.64 37122 38.1210 194.60 201.18 11.88 37123 38.1220 207.22 200.61 12.28 37124 38.1230 220.29 200.08 12.66 37125 38.1240 210.84 199.57 12.38 37126 38.1250 207.32 199.07 12.32 37127 38.1260 188.49 198.60 11.72 37128 38.1270 188.58 198.16 11.71 37129 38.1280 199.75 197.73 12.02 37130 38.1290 186.12 197.32 11.64 37131 38.1300 206.55 196.68 12.25 37132 38.1310 196.78 196.31 12.04 37133 38.1320 193.05 195.95 11.89 37134 38.1330 186.36 195.61 11.65 37135 38.1340 186.83 195.28 11.69 37136 38.1350 195.51 194.97 11.94 37137 38.1360 204.26 194.68 12.23 37138 38.1370 189.10 194.39 11.76 37139 38.1380 196.09 194.12 12.01 37140 38.1390 188.56 193.87 11.76 37141 38.1400 196.73 193.63 12.00 37142 38.1410 196.53 193.40 12.01 37143 38.1420 198.25 193.18 12.00 37144 38.1430 184.59 192.91 11.55 37145 38.1440 197.82 192.72 11.98 37146 38.1450 207.31 192.53 12.29 37147 38.1460 184.41 192.36 11.57 37148 38.1470 201.61 192.19 12.10 37149 38.1480 185.09 192.04 11.61 37150 38.1490 193.11 191.90 11.81 37151 38.1500 186.42 191.77 11.64 37152 38.1510 191.68 191.65 11.79 37153 38.1520 194.17 191.54 11.91 37154 38.1530 184.93 191.43 11.57 37155 38.1540 185.06 191.34 11.65 37156 38.1550 195.51 191.26 11.97 37157 38.1560 196.03 191.18 12.00 37158 38.1570 171.75 191.12 11.23 37159 38.1580 181.94 191.07 11.50 37160 38.1590 200.85 191.03 12.11 37161 38.1600 206.91 191.00 12.22 37162 38.1610 209.71 190.98 12.46 37163 38.1620 199.76 190.96 12.08 37164 38.1630 186.12 190.96 11.67 37165 38.1640 183.36 190.98 11.58 37166 38.1650 208.58 191.00 12.37 37167 38.1660 203.98 191.03 12.24 37168 38.1670 180.25 191.07 11.50 37169 38.1680 180.36 191.12 11.48 37170 38.1690 176.96 191.18 11.35 37171 38.1700 179.60 191.26 11.31 37172 38.1710 189.66 191.34 11.76 37173 38.1720 193.80 191.43 11.88 37174 38.1730 183.82 191.54 11.57 37175 38.1740 197.23 191.65 11.98 37176 38.1750 170.75 191.77 11.12 37177 38.1760 212.99 191.90 12.42 37178 38.1770 199.72 192.03 12.08 37179 38.1780 185.39 192.17 11.61 37180 38.1790 189.35 192.31 11.79 37181 38.1800 196.56 192.45 12.02 37182 38.1810 196.91 192.60 11.95 37183 38.1820 199.67 192.74 12.03 37184 38.1830 212.55 192.88 12.50 37185 38.1840 198.70 193.01 12.06 37186 38.1850 176.52 193.13 11.33 37187 38.1860 169.90 193.24 11.11 37188 38.1870 185.47 193.33 11.63 37189 38.1880 213.78 193.41 12.51 37190 38.1890 201.85 193.47 12.16 37191 38.1900 183.34 193.51 11.57 37192 38.1910 193.04 193.52 11.87 37193 38.1920 208.78 193.52 12.35 37194 38.1930 214.16 193.49 12.50 37195 38.1940 187.30 193.45 11.65 37196 38.1950 179.34 193.38 11.40 37197 38.1960 194.39 193.29 11.94 37198 38.1970 198.64 193.19 12.05 37199 38.1980 181.01 193.07 11.52 37200 38.1990 206.42 192.93 12.29 37201 38.2000 194.02 192.79 11.88 37202 38.2010 193.35 192.64 11.88 37203 38.2020 183.48 192.49 11.55 37204 38.2030 170.98 192.33 11.21 37205 38.2040 175.72 192.17 11.34 37206 38.2050 188.41 192.01 11.71 37207 38.2060 193.82 191.85 11.88 37208 38.2070 192.10 191.70 11.87 37209 38.2080 192.30 191.57 11.83 37210 38.2090 185.39 191.43 11.64 37211 38.2100 192.28 191.30 11.78 37212 38.2110 185.05 191.18 11.64 37213 38.2120 182.35 191.07 11.59 37214 38.2130 185.59 190.97 11.69 37215 38.2140 195.34 190.88 11.94 37216 38.2150 183.73 190.79 11.52 37217 38.2160 202.68 190.73 12.13 37218 38.2170 180.03 190.67 11.47 37219 38.2180 169.23 190.62 11.11 37220 38.2190 178.47 190.58 11.41 37221 38.2200 192.89 190.55 11.91 37222 38.2210 182.21 190.54 11.56 37223 38.2220 186.26 190.54 11.66 37224 38.2230 204.14 190.54 12.22 37225 38.2240 202.13 190.56 12.14 37226 38.2250 213.03 190.59 12.45 37227 38.2260 195.95 190.63 11.94 37228 38.2270 183.11 190.68 11.55 37229 38.2280 178.02 190.74 11.41 37230 38.2290 189.61 190.81 11.74 37231 38.2300 191.78 190.89 11.85 37232 38.2310 192.65 190.98 11.81 37233 38.2320 191.51 191.09 11.80 37234 38.2330 197.57 191.20 11.98 37235 38.2340 165.43 191.33 10.96 37236 38.2350 177.04 191.46 11.37 37237 38.2360 196.57 191.48 11.94 37238 38.2370 199.57 191.64 12.03 37239 38.2380 194.74 191.81 11.88 37240 38.2390 192.06 192.00 11.87 37241 38.2400 212.06 192.20 12.46 37242 38.2410 184.72 192.41 11.56 37243 38.2420 200.09 192.64 12.06 37244 38.2430 189.84 192.88 11.72 37245 38.2440 203.91 193.13 12.22 37246 38.2450 190.82 193.40 11.81 37247 38.2460 189.68 193.68 11.76 37248 38.2470 196.59 193.99 11.99 37249 38.2480 175.74 194.30 11.34 37250 38.2490 192.71 194.64 11.83 37251 38.2500 199.65 194.99 12.07 37252 38.2510 204.49 195.36 12.26 37253 38.2520 191.48 195.75 11.88 37254 38.2530 175.40 196.16 11.26 37255 38.2540 186.76 196.60 11.63 37256 38.2550 217.03 197.06 12.61 37257 38.2560 206.78 197.54 12.29 37258 38.2570 200.49 198.04 12.11 37259 38.2580 202.41 198.57 12.16 37260 38.2590 179.49 199.13 11.44 37261 38.2600 192.74 199.71 11.85 37262 38.2610 220.62 200.33 12.69 37263 38.2620 208.56 200.98 12.39 37264 38.2630 201.82 201.66 12.22 37265 38.2640 207.24 202.38 12.34 37266 38.2650 216.35 203.13 12.57 37267 38.2660 221.79 203.92 12.75 37268 38.2670 197.22 204.75 11.98 37269 38.2680 204.95 205.63 12.24 37270 38.2690 211.40 206.54 12.42 37271 38.2700 205.12 207.50 12.25 37272 38.2710 203.35 208.51 12.14 37273 38.2720 215.50 209.57 12.53 37274 38.2730 216.41 210.68 12.55 37275 38.2740 205.37 211.84 12.25 37276 38.2750 214.28 213.06 12.51 37277 38.2760 200.64 214.33 12.04 37278 38.2770 213.03 215.66 12.43 37279 38.2780 202.97 217.04 12.19 37280 38.2790 229.67 218.48 12.94 37281 38.2800 223.44 219.98 12.82 37282 38.2810 217.74 221.52 12.63 37283 38.2820 212.07 223.14 12.46 37284 38.2830 215.24 224.80 12.56 37285 38.2840 226.10 226.49 12.87 37286 38.2850 232.97 228.24 13.04 37287 38.2860 235.27 230.03 13.08 37288 38.2870 242.18 231.83 13.30 37289 38.2880 242.89 233.67 13.30 37290 38.2890 224.72 235.51 12.78 37291 38.2900 230.35 237.35 12.98 37292 38.2910 240.00 239.17 13.25 37293 38.2920 249.73 240.97 13.52 37294 38.2930 258.10 242.71 13.70 37295 38.2940 245.69 244.40 13.35 37296 38.2950 252.81 246.00 13.59 37297 38.2960 244.66 247.51 13.37 37298 38.2970 253.26 248.92 13.63 37299 38.2980 236.83 250.19 13.17 37300 38.2990 233.76 251.33 13.02 37301 38.3000 259.21 252.32 13.70 37302 38.3010 272.83 253.15 14.18 37303 38.3020 263.35 253.82 13.86 37304 38.3030 271.66 254.33 14.12 37305 38.3040 273.77 254.67 14.14 37306 38.3050 265.60 254.87 13.95 37307 38.3060 268.59 254.91 14.01 37308 38.3070 262.86 254.83 13.85 37309 38.3080 252.66 254.62 13.61 37310 38.3090 254.59 254.31 13.61 37311 38.3100 251.98 253.92 13.58 37312 38.3110 237.14 253.47 13.18 37313 38.3120 260.19 252.97 13.82 37314 38.3130 260.12 252.45 13.82 37315 38.3140 243.71 251.93 13.35 37316 38.3150 238.12 251.42 13.15 37317 38.3160 259.98 250.95 13.74 37318 38.3170 248.21 250.52 13.48 37319 38.3180 217.44 250.18 12.56 37320 38.3190 249.30 249.91 13.46 37321 38.3200 249.70 249.73 13.51 37322 38.3210 254.07 249.67 13.59 37323 38.3220 248.40 249.72 13.47 37324 38.3230 236.10 249.90 13.08 37325 38.3240 251.39 250.22 13.58 37326 38.3250 256.37 250.68 13.68 37327 38.3260 241.22 251.28 13.30 37328 38.3270 237.68 252.03 13.20 37329 38.3280 246.26 252.94 13.43 37330 38.3290 243.61 254.00 13.32 37331 38.3300 247.58 255.22 13.45 37332 38.3310 276.75 256.70 14.20 37333 38.3320 250.17 258.21 13.53 37334 38.3330 254.87 259.85 13.72 37335 38.3340 232.57 261.63 13.09 37336 38.3350 250.73 263.52 13.56 37337 38.3360 272.43 265.50 14.10 37338 38.3370 270.55 267.57 14.09 37339 38.3380 255.88 269.67 13.73 37340 38.3390 275.20 271.78 14.19 37341 38.3400 265.61 273.88 13.97 37342 38.3410 259.47 275.91 13.82 37343 38.3420 264.69 277.83 13.94 37344 38.3430 275.03 279.61 14.18 37345 38.3440 263.72 281.18 13.89 37346 38.3450 272.29 282.51 14.05 37347 38.3460 269.80 283.54 14.08 37348 38.3470 291.65 284.25 14.65 37349 38.3480 285.64 284.59 14.47 37350 38.3490 265.95 284.55 13.97 37351 38.3500 262.13 284.12 13.84 37352 38.3510 254.65 283.30 13.59 37353 38.3520 276.07 282.09 14.15 37354 38.3530 279.50 280.52 14.26 37355 38.3540 274.54 278.62 14.17 37356 38.3550 258.08 276.42 13.76 37357 38.3560 237.25 273.96 13.16 37358 38.3570 234.72 271.30 13.11 37359 38.3580 254.47 268.46 13.66 37360 38.3590 258.34 265.51 13.73 37361 38.3600 247.28 262.48 13.43 37362 38.3610 226.97 259.41 12.93 37363 38.3620 244.48 256.33 13.37 37364 38.3630 250.71 253.28 13.52 37365 38.3640 247.85 250.27 13.48 37366 38.3650 242.26 247.31 13.31 37367 38.3660 220.08 244.44 12.70 37368 38.3670 225.31 241.68 12.82 37369 38.3680 206.96 239.01 12.31 37370 38.3690 218.48 236.45 12.65 37371 38.3700 230.28 234.00 13.03 37372 38.3710 213.29 231.66 12.50 37373 38.3720 201.45 229.43 12.12 37374 38.3730 227.56 227.32 12.94 37375 38.3740 225.77 225.32 12.83 37376 38.3750 219.73 223.42 12.65 37377 38.3760 216.93 221.63 12.60 37378 38.3770 213.47 219.93 12.49 37379 38.3780 219.46 218.33 12.62 37380 38.3790 209.98 216.82 12.39 37381 38.3800 201.01 215.40 12.11 37382 38.3810 212.49 214.06 12.47 37383 38.3820 222.99 212.80 12.80 37384 38.3830 209.03 211.61 12.36 37385 38.3840 209.28 210.49 12.35 37386 38.3850 213.51 209.44 12.45 37387 38.3860 207.68 208.45 12.29 37388 38.3870 191.53 207.52 11.72 37389 38.3880 202.73 206.65 12.18 37390 38.3890 203.63 205.83 12.18 37391 38.3900 199.66 205.06 12.05 37392 38.3910 195.75 204.34 12.03 37393 38.3920 208.08 203.66 12.37 37394 38.3930 206.17 203.03 12.24 37395 38.3940 204.50 202.43 12.23 37396 38.3950 179.96 201.87 11.47 37397 38.3960 195.76 201.35 11.94 37398 38.3970 202.46 200.85 12.15 37399 38.3980 184.65 200.39 11.60 37400 38.3990 194.26 199.95 11.93 37401 38.4000 205.55 199.54 12.21 37402 38.4010 210.05 199.15 12.36 37403 38.4020 204.31 198.78 12.17 37404 38.4030 216.62 198.43 12.55 37405 38.4040 192.85 198.09 11.86 37406 38.4050 201.07 197.76 12.09 37407 38.4060 196.18 197.45 12.04 37408 38.4070 186.21 197.14 11.67 37409 38.4080 198.33 196.85 12.08 37410 38.4090 191.31 196.56 11.81 37411 38.4100 173.49 196.27 11.30 37412 38.4110 211.72 195.99 12.47 37413 38.4120 214.23 195.72 12.56 37414 38.4130 202.77 195.44 12.21 37415 38.4140 199.60 195.18 12.12 37416 38.4150 196.66 194.91 12.03 37417 38.4160 194.50 194.66 11.91 37418 38.4170 211.75 194.40 12.42 37419 38.4180 197.03 194.16 12.08 37420 38.4190 187.16 193.92 11.74 37421 38.4200 206.55 193.69 12.26 37422 38.4210 198.70 193.47 12.03 37423 38.4220 195.36 193.26 11.92 37424 38.4230 184.52 193.05 11.61 37425 38.4240 197.46 192.86 12.09 37426 38.4250 194.29 192.68 11.93 37427 38.4260 214.80 192.51 12.49 37428 38.4270 197.53 192.36 12.03 37429 38.4280 187.37 192.21 11.71 37430 38.4290 206.30 192.08 12.30 37431 38.4300 214.78 191.96 12.52 37432 38.4310 198.93 191.86 12.06 37433 38.4320 209.33 191.77 12.42 37434 38.4330 198.45 191.69 12.03 37435 38.4340 195.92 191.62 11.93 37436 38.4350 194.62 191.57 11.95 37437 38.4360 205.31 191.53 12.23 37438 38.4370 197.18 191.51 12.01 37439 38.4380 208.27 191.50 12.29 37440 38.4390 214.60 191.50 12.50 37441 38.4400 203.98 191.52 12.20 37442 38.4410 181.17 191.56 11.49 37443 38.4420 185.32 191.61 11.63 37444 38.4430 194.45 191.67 11.89 37445 38.4440 198.75 191.75 12.04 37446 38.4450 195.09 191.85 11.94 37447 38.4460 190.75 191.96 11.81 37448 38.4470 195.47 192.09 11.95 37449 38.4480 183.14 192.24 11.58 37450 38.4490 204.11 192.40 12.23 37451 38.4500 195.82 192.59 12.00 37452 38.4510 184.00 192.79 11.63 37453 38.4520 200.91 193.01 12.10 37454 38.4530 204.30 193.26 12.16 37455 38.4540 191.19 193.52 11.79 37456 38.4550 193.88 193.81 11.90 37457 38.4560 194.96 194.12 11.95 37458 38.4570 204.15 194.46 12.17 37459 38.4580 207.29 194.82 12.30 37460 38.4590 191.66 195.21 11.83 37461 38.4600 198.00 195.62 12.06 37462 38.4610 203.52 196.07 12.20 37463 38.4620 196.44 196.55 11.95 37464 38.4630 199.76 197.05 12.06 37465 38.4640 195.16 197.60 11.94 37466 38.4650 183.63 198.18 11.58 37467 38.4660 185.20 198.79 11.67 37468 38.4670 188.79 199.45 11.71 37469 38.4680 217.76 200.14 12.63 37470 38.4690 199.78 200.87 12.08 37471 38.4700 219.17 201.65 12.61 37472 38.4710 199.59 202.47 12.04 37473 38.4720 194.96 203.34 11.92 37474 38.4730 203.18 204.25 12.23 37475 38.4740 204.25 205.20 12.21 37476 38.4750 198.91 206.20 12.02 37477 38.4760 211.43 207.25 12.44 37478 38.4770 220.61 208.34 12.68 37479 38.4780 218.11 209.46 12.62 37480 38.4790 200.54 210.63 12.17 37481 38.4800 214.67 211.82 12.52 37482 38.4810 230.94 213.04 13.01 37483 38.4820 215.84 214.28 12.56 37484 38.4830 222.00 215.52 12.74 37485 38.4840 224.17 216.77 12.75 37486 38.4850 225.84 217.99 12.80 37487 38.4860 221.62 219.18 12.71 37488 38.4870 216.46 220.33 12.57 37489 38.4880 219.81 221.42 12.67 37490 38.4890 229.45 222.42 12.89 37491 38.4900 229.70 223.33 12.93 37492 38.4910 224.00 224.15 12.81 37493 38.4920 214.40 224.81 12.51 37494 38.4930 199.49 225.34 12.07 37495 38.4940 223.80 225.71 12.75 37496 38.4950 234.24 225.93 13.08 37497 38.4960 235.11 225.99 13.13 37498 38.4970 228.44 225.89 12.94 37499 38.4980 225.85 225.63 12.83 37500 38.4990 237.84 225.24 13.16 37501 38.5000 219.36 224.71 12.66 37502 38.5010 221.78 224.06 12.73 37503 38.5020 201.22 223.31 12.11 37504 38.5030 224.71 222.48 12.81 37505 38.5040 210.56 221.58 12.43 37506 38.5050 226.07 220.63 12.87 37507 38.5060 204.51 219.66 12.19 37508 38.5070 207.38 218.66 12.30 37509 38.5080 226.90 217.67 12.85 37510 38.5090 200.41 216.68 12.06 37511 38.5100 218.55 215.72 12.64 37512 38.5110 218.31 214.78 12.65 37513 38.5120 217.06 213.88 12.59 37514 38.5130 213.83 213.03 12.48 37515 38.5140 221.00 212.23 12.71 37516 38.5150 204.58 211.48 12.23 37517 38.5160 200.00 210.79 12.11 37518 38.5170 211.85 210.16 12.52 37519 38.5180 221.28 209.58 12.77 37520 38.5190 222.00 209.07 12.78 37521 38.5200 194.01 208.62 11.96 37522 38.5210 189.18 208.24 11.81 37523 38.5220 204.96 207.91 12.23 37524 38.5230 187.38 207.65 11.69 37525 38.5240 185.00 207.46 11.62 37526 38.5250 201.45 207.32 12.16 37527 38.5260 218.36 207.25 12.64 37528 38.5270 232.40 207.25 13.04 37529 38.5280 228.66 207.31 12.91 37530 38.5290 215.99 207.55 12.53 37531 38.5300 204.16 207.74 12.25 37532 38.5310 208.74 208.00 12.40 37533 38.5320 211.61 208.32 12.47 37534 38.5330 221.17 208.71 12.74 37535 38.5340 225.94 209.17 12.84 37536 38.5350 211.65 209.70 12.37 37537 38.5360 207.48 210.30 12.25 37538 38.5370 214.28 210.97 12.49 37539 38.5380 223.93 211.72 12.78 37540 38.5390 226.50 212.55 12.89 37541 38.5400 221.91 213.45 12.79 37542 38.5410 217.16 214.43 12.59 37543 38.5420 217.71 215.48 12.55 37544 38.5430 230.76 216.52 13.02 37545 38.5440 221.75 217.73 12.73 37546 38.5450 218.39 219.02 12.64 37547 38.5460 213.77 220.40 12.53 37548 38.5470 216.69 221.84 12.61 37549 38.5480 224.50 223.35 12.79 37550 38.5490 235.99 224.92 13.13 37551 38.5500 253.98 226.54 13.67 37552 38.5510 251.39 228.21 13.54 37553 38.5520 235.45 229.91 13.12 37554 38.5530 233.05 231.72 13.02 37555 38.5540 225.71 233.43 12.81 37556 38.5550 228.58 234.82 12.94 37557 38.5560 251.86 236.46 13.56 37558 38.5570 257.75 238.03 13.66 37559 38.5580 254.58 239.51 13.60 37560 38.5590 249.56 240.86 13.49 37561 38.5600 269.05 242.06 14.04 37562 38.5610 268.01 243.07 14.00 37563 38.5620 250.26 243.88 13.55 37564 38.5630 247.21 244.47 13.48 37565 38.5640 264.60 244.80 13.92 37566 38.5650 258.24 244.89 13.71 37567 38.5660 274.96 244.71 14.18 37568 38.5670 267.83 244.28 13.99 37569 38.5680 249.41 243.59 13.50 37570 38.5690 239.87 242.67 13.22 37571 38.5700 252.00 241.53 13.58 37572 38.5710 231.16 240.19 13.02 37573 38.5720 251.38 238.69 13.56 37574 38.5730 241.08 237.04 13.23 37575 38.5740 228.75 235.27 12.89 37576 38.5750 240.91 233.43 13.26 37577 38.5760 237.87 231.51 13.16 37578 38.5770 215.70 229.56 12.52 37579 38.5780 224.20 227.60 12.81 37580 38.5790 223.45 225.64 12.72 37581 38.5800 249.03 223.69 13.44 37582 38.5810 238.41 221.79 13.19 37583 38.5820 232.00 219.92 13.01 37584 38.5830 218.78 218.10 12.61 37585 38.5840 201.25 216.35 12.14 37586 38.5850 226.17 214.65 12.88 37587 38.5860 226.64 213.02 12.90 37588 38.5870 235.12 211.46 13.12 37589 38.5880 241.23 209.96 13.28 37590 38.5890 222.01 208.53 12.74 37591 38.5900 211.41 207.17 12.40 37592 38.5910 192.06 205.88 11.83 37593 38.5920 207.57 204.65 12.31 37594 38.5930 195.60 203.48 11.95 37595 38.5940 198.43 202.37 12.05 37596 38.5950 196.34 201.31 11.96 37597 38.5960 175.83 200.32 11.35 37598 38.5970 182.95 199.37 11.63 37599 38.5980 198.43 198.47 12.09 37600 38.5990 208.79 197.71 12.33 37601 38.6000 210.85 196.90 12.37 37602 38.6010 196.36 196.14 11.96 37603 38.6020 191.44 195.41 11.88 37604 38.6030 201.82 194.73 12.14 37605 38.6040 209.54 194.07 12.34 37606 38.6050 194.90 193.46 11.95 37607 38.6060 212.96 192.87 12.44 37608 38.6070 205.27 192.31 12.24 37609 38.6080 194.03 191.78 11.87 37610 38.6090 198.11 191.28 12.02 37611 38.6100 215.95 190.80 12.60 37612 38.6110 199.45 190.34 12.08 37613 38.6120 189.80 189.91 11.79 37614 38.6130 193.48 189.50 11.84 37615 38.6140 184.98 189.11 11.61 37616 38.6150 187.54 188.74 11.65 37617 38.6160 191.22 188.38 11.78 37618 38.6170 197.67 188.05 12.00 37619 38.6180 183.14 187.73 11.52 37620 38.6190 191.27 187.42 11.82 37621 38.6200 208.44 187.13 12.31 37622 38.6210 203.81 186.85 12.16 37623 38.6220 200.50 186.59 12.12 37624 38.6230 190.14 186.33 11.78 37625 38.6240 192.31 186.09 11.83 37626 38.6250 200.39 185.86 12.17 37627 38.6260 192.18 185.65 11.84 37628 38.6270 183.43 185.44 11.62 37629 38.6280 193.19 185.24 11.91 37630 38.6290 176.64 185.05 11.35 37631 38.6300 170.09 184.87 11.11 37632 38.6310 200.66 184.70 12.12 37633 38.6320 180.28 184.54 11.45 37634 38.6330 182.66 184.38 11.50 37635 38.6340 187.55 184.24 11.68 37636 38.6350 181.17 184.10 11.49 37637 38.6360 180.75 183.97 11.49 37638 38.6370 174.05 183.84 11.27 37639 38.6380 171.77 183.73 11.25 37640 38.6390 174.03 183.62 11.26 37641 38.6400 186.62 183.51 11.71 37642 38.6410 185.12 183.41 11.62 37643 38.6420 190.81 183.32 11.84 37644 38.6430 195.91 183.24 11.95 37645 38.6440 188.08 183.16 11.70 37646 38.6450 178.37 183.09 11.49 37647 38.6460 186.39 183.02 11.68 37648 38.6470 180.80 182.97 11.51 37649 38.6480 180.24 182.91 11.42 37650 38.6490 189.05 182.87 11.76 37651 38.6500 196.26 182.82 11.97 37652 38.6510 200.20 182.79 12.13 37653 38.6520 180.84 182.76 11.50 37654 38.6530 172.98 182.74 11.23 37655 38.6540 178.63 182.73 11.38 37656 38.6550 181.39 182.72 11.52 37657 38.6560 196.36 182.71 12.01 37658 38.6570 180.77 182.72 11.55 37659 38.6580 201.75 182.73 12.14 37660 38.6590 180.72 182.75 11.48 37661 38.6600 187.44 182.78 11.66 37662 38.6610 183.51 182.81 11.54 37663 38.6620 185.92 182.86 11.63 37664 38.6630 194.70 182.91 11.90 37665 38.6640 185.87 182.97 11.63 37666 38.6650 175.72 183.04 11.34 37667 38.6660 185.43 183.11 11.65 37668 38.6670 178.00 183.20 11.41 37669 38.6680 204.59 183.29 12.23 37670 38.6690 174.26 183.40 11.25 37671 38.6700 193.48 183.51 11.88 37672 38.6710 185.87 183.64 11.66 37673 38.6720 178.92 183.77 11.44 37674 38.6730 187.29 183.92 11.71 37675 38.6740 168.22 184.07 11.03 37676 38.6750 184.42 184.23 11.61 37677 38.6760 180.76 184.39 11.50 37678 38.6770 171.21 184.57 11.14 37679 38.6780 187.67 184.74 11.72 37680 38.6790 184.37 184.92 11.64 37681 38.6800 183.91 185.10 11.60 37682 38.6810 176.73 185.28 11.40 37683 38.6820 189.09 185.46 11.74 37684 38.6830 195.16 185.62 11.97 37685 38.6840 186.93 185.78 11.73 37686 38.6850 172.25 185.92 11.18 37687 38.6860 179.03 186.05 11.41 37688 38.6870 165.75 186.16 10.99 37689 38.6880 182.44 186.25 11.51 37690 38.6890 172.74 186.32 11.20 37691 38.6900 179.57 186.37 11.41 37692 38.6910 189.82 186.40 11.74 37693 38.6920 189.58 186.41 11.71 37694 38.6930 182.07 186.40 11.48 37695 38.6940 171.80 186.38 11.19 37696 38.6950 198.24 186.35 11.98 37697 38.6960 182.04 186.30 11.52 37698 38.6970 186.66 186.25 11.60 37699 38.6980 187.26 186.20 11.68 37700 38.6990 198.62 186.15 12.03 37701 38.7000 193.56 186.10 11.92 37702 38.7010 189.55 186.06 11.76 37703 38.7020 182.27 186.02 11.56 37704 38.7030 198.07 186.00 12.08 37705 38.7040 178.46 185.98 11.42 37706 38.7050 176.04 185.98 11.34 37707 38.7060 159.37 186.00 10.73 37708 38.7070 167.03 186.02 11.02 37709 38.7080 179.02 186.06 11.47 37710 38.7090 187.51 186.12 11.64 37711 38.7100 205.07 186.18 12.16 37712 38.7110 190.95 186.27 11.81 37713 38.7120 193.27 186.36 11.95 37714 38.7130 183.53 186.46 11.59 37715 38.7140 186.97 186.58 11.65 37716 38.7150 185.69 186.70 11.67 37717 38.7160 195.28 186.83 11.95 37718 38.7170 209.56 187.22 12.33 37719 38.7180 186.49 187.36 11.68 37720 38.7190 184.86 187.50 11.59 37721 38.7200 190.87 187.64 11.77 37722 38.7210 206.92 187.78 12.25 37723 38.7220 191.89 187.91 11.84 37724 38.7230 192.97 188.04 11.97 37725 38.7240 190.07 188.17 11.80 37726 38.7250 191.79 188.29 11.77 37727 38.7260 183.29 188.40 11.49 37728 38.7270 199.06 188.50 12.06 37729 38.7280 193.42 188.60 11.89 37730 38.7290 188.33 188.69 11.71 37731 38.7300 198.98 188.76 12.03 37732 38.7310 191.02 188.82 11.83 37733 38.7320 198.99 188.87 12.10 37734 38.7330 199.50 188.91 12.07 37735 38.7340 185.59 188.93 11.72 37736 38.7350 195.57 188.93 11.97 37737 38.7360 199.20 188.91 12.07 37738 38.7370 199.29 188.88 12.05 37739 38.7380 176.54 188.84 11.35 37740 38.7390 191.68 188.78 11.79 37741 38.7400 173.90 188.70 11.23 37742 38.7410 183.31 188.61 11.59 37743 38.7420 179.54 188.51 11.48 37744 38.7430 170.79 188.40 11.20 37745 38.7440 184.36 188.28 11.61 37746 38.7450 195.31 188.16 11.97 37747 38.7460 197.70 188.04 11.99 37748 38.7470 189.80 187.93 11.77 37749 38.7480 182.52 187.81 11.57 37750 38.7490 195.64 187.70 11.97 37751 38.7500 200.49 187.61 12.09 37752 38.7510 186.47 187.52 11.64 37753 38.7520 178.15 187.44 11.38 37754 38.7530 190.61 187.38 11.79 37755 38.7540 186.34 187.33 11.66 37756 38.7550 174.79 187.30 11.31 37757 38.7560 170.67 187.28 11.13 37758 38.7570 204.20 187.29 12.18 37759 38.7580 190.69 187.30 11.80 37760 38.7590 187.15 187.33 11.73 37761 38.7600 170.45 187.38 11.18 37762 38.7610 187.72 187.61 11.73 37763 38.7620 187.27 187.71 11.68 37764 38.7630 177.12 187.82 11.33 37765 38.7640 209.38 187.95 12.41 37766 38.7650 197.88 188.10 12.06 37767 38.7660 181.79 188.27 11.52 37768 38.7670 184.36 188.47 11.61 37769 38.7680 191.73 188.68 11.81 37770 38.7690 196.71 188.91 11.93 37771 38.7700 169.29 189.17 11.06 37772 38.7710 181.98 189.44 11.46 37773 38.7720 173.99 189.74 11.25 37774 38.7730 197.89 190.06 12.03 37775 38.7740 199.25 190.40 12.10 37776 38.7750 200.33 190.76 12.09 37777 38.7760 184.59 191.14 11.68 37778 38.7770 201.54 191.54 12.19 37779 38.7780 186.25 191.96 11.66 37780 38.7790 183.90 192.40 11.54 37781 38.7800 205.41 192.86 12.28 37782 38.7810 201.73 193.33 12.16 37783 38.7820 189.53 193.89 11.79 37784 38.7830 199.89 194.40 12.09 37785 38.7840 197.33 194.93 11.99 37786 38.7850 186.78 195.49 11.69 37787 38.7860 197.79 196.06 11.98 37788 38.7870 190.42 196.65 11.80 37789 38.7880 195.03 197.26 11.92 37790 38.7890 185.78 197.90 11.65 37791 38.7900 200.36 198.57 12.14 37792 38.7910 199.58 199.28 12.09 37793 38.7920 214.27 200.01 12.50 37794 38.7930 212.13 200.79 12.44 37795 38.7940 203.70 201.61 12.19 37796 38.7950 194.91 202.48 11.94 37797 38.7960 196.52 203.40 11.98 37798 38.7970 198.89 204.38 11.96 37799 38.7980 203.17 205.43 12.14 37800 38.7990 202.17 206.54 12.11 37801 38.8000 199.78 207.72 12.13 37802 38.8010 203.64 208.97 12.24 37803 38.8020 211.33 210.30 12.44 37804 38.8030 204.86 211.71 12.18 37805 38.8040 199.22 213.20 12.09 37806 38.8050 205.03 214.77 12.24 37807 38.8060 205.45 216.41 12.23 37808 38.8070 213.61 218.13 12.53 37809 38.8080 215.64 219.90 12.56 37810 38.8090 212.35 221.74 12.41 37811 38.8100 215.85 223.63 12.52 37812 38.8110 220.04 225.54 12.65 37813 38.8120 215.25 227.47 12.52 37814 38.8130 193.66 229.39 11.85 37815 38.8140 217.91 231.27 12.53 37816 38.8150 227.14 233.10 12.84 37817 38.8160 245.00 234.84 13.41 37818 38.8170 253.48 236.43 13.58 37819 38.8180 232.16 237.88 12.97 37820 38.8190 239.48 239.12 13.20 37821 38.8200 243.84 240.14 13.27 37822 38.8210 236.91 240.91 13.14 37823 38.8220 250.88 241.40 13.52 37824 38.8230 257.61 241.60 13.72 37825 38.8240 234.93 241.51 13.04 37826 38.8250 247.58 241.11 13.47 37827 38.8260 243.08 240.43 13.41 37828 38.8270 253.51 239.48 13.67 37829 38.8280 232.64 238.28 13.05 37830 38.8290 254.92 236.87 13.64 37831 38.8300 237.90 235.27 13.19 37832 38.8310 219.81 233.51 12.65 37833 38.8320 228.91 231.65 12.94 37834 38.8330 221.02 229.69 12.71 37835 38.8340 234.01 227.68 13.05 37836 38.8350 245.73 225.65 13.42 37837 38.8360 242.97 223.61 13.29 37838 38.8370 223.98 221.57 12.83 37839 38.8380 207.46 219.59 12.29 37840 38.8390 193.24 217.64 11.87 37841 38.8400 201.60 215.75 12.11 37842 38.8410 212.56 213.93 12.44 37843 38.8420 200.54 212.18 12.04 37844 38.8430 183.48 210.50 11.54 37845 38.8440 196.50 208.89 11.93 37846 38.8450 203.64 207.36 12.19 37847 38.8460 209.00 205.91 12.37 37848 38.8470 191.51 204.54 11.77 37849 38.8480 188.71 203.23 11.76 37850 38.8490 201.60 202.00 12.13 37851 38.8500 202.00 200.83 12.14 37852 38.8510 207.93 199.73 12.40 37853 38.8520 206.75 198.68 12.34 37854 38.8530 205.77 197.70 12.30 37855 38.8540 190.83 196.78 11.85 37856 38.8550 203.71 195.77 12.20 37857 38.8560 200.17 194.94 12.10 37858 38.8570 188.80 194.17 11.77 37859 38.8580 197.88 193.43 12.00 37860 38.8590 193.11 192.73 11.84 37861 38.8600 184.06 192.08 11.58 37862 38.8610 183.89 191.46 11.50 37863 38.8620 185.05 190.88 11.61 37864 38.8630 190.08 190.32 11.82 37865 38.8640 200.61 189.80 12.11 37866 38.8650 181.41 189.31 11.55 37867 38.8660 183.13 188.84 11.53 37868 38.8670 182.18 188.40 11.52 37869 38.8680 190.53 187.98 11.70 37870 38.8690 177.75 187.58 11.30 37871 38.8700 179.76 187.25 11.46 37872 38.8710 185.30 186.89 11.66 37873 38.8720 191.28 186.55 11.83 37874 38.8730 179.39 186.23 11.44 37875 38.8740 177.54 185.93 11.38 37876 38.8750 195.73 185.64 11.96 37877 38.8760 190.97 185.36 11.82 37878 38.8770 197.08 185.10 12.00 37879 38.8780 181.60 184.85 11.50 37880 38.8790 180.28 184.61 11.49 37881 38.8800 182.62 184.39 11.56 37882 38.8810 180.21 184.17 11.41 37883 38.8820 184.52 183.97 11.65 37884 38.8830 183.80 183.73 11.59 37885 38.8840 187.13 183.55 11.67 37886 38.8850 173.51 183.37 11.21 37887 38.8860 182.98 183.20 11.55 37888 38.8870 169.89 182.98 11.14 37889 38.8880 188.87 182.83 11.73 37890 38.8890 173.33 182.69 11.29 37891 38.8900 191.28 182.55 11.79 37892 38.8910 185.27 182.42 11.56 37893 38.8920 183.30 182.29 11.52 37894 38.8930 174.50 182.17 11.26 37895 38.8940 173.74 182.06 11.29 37896 38.8950 171.98 181.95 11.25 37897 38.8960 173.51 181.85 11.29 37898 38.8970 194.88 181.75 11.98 37899 38.8980 174.92 181.66 11.33 37900 38.8990 167.98 181.57 11.12 37901 38.9000 174.10 181.49 11.28 37902 38.9010 167.01 181.41 11.06 37903 38.9020 170.34 181.33 11.17 37904 38.9030 181.58 181.26 11.49 37905 38.9040 181.53 181.20 11.44 37906 38.9050 167.53 181.13 11.01 37907 38.9060 164.96 181.08 10.94 37908 38.9070 190.74 181.02 11.83 37909 38.9080 182.85 180.97 11.61 37910 38.9090 186.17 180.92 11.69 37911 38.9100 189.83 180.88 11.77 37912 38.9110 176.78 180.83 11.31 37913 38.9120 180.85 180.79 11.47 37914 38.9130 176.23 180.76 11.34 37915 38.9140 194.33 180.72 11.89 37916 38.9150 186.15 180.69 11.65 37917 38.9160 170.72 180.66 11.20 37918 38.9170 174.91 180.64 11.26 37919 38.9180 186.36 180.61 11.66 37920 38.9190 179.06 180.59 11.40 37921 38.9200 184.64 180.57 11.56 37922 38.9210 188.17 180.56 11.67 37923 38.9220 190.64 180.55 11.77 37924 38.9230 182.18 180.54 11.57 37925 38.9240 173.84 180.53 11.25 37926 38.9250 175.46 180.52 11.25 37927 38.9260 181.49 180.52 11.43 37928 38.9270 180.86 180.52 11.41 37929 38.9280 179.34 180.52 11.44 37930 38.9290 172.51 180.53 11.22 37931 38.9300 167.13 180.54 11.03 37932 38.9310 192.74 180.54 11.88 37933 38.9320 189.25 180.56 11.76 37934 38.9330 190.98 180.57 11.82 37935 38.9340 197.28 180.59 11.96 37936 38.9350 191.42 180.61 11.75 37937 38.9360 161.33 180.63 10.87 37938 38.9370 168.27 180.65 11.08 37939 38.9380 168.87 180.68 11.08 37940 38.9390 167.86 180.71 11.09 37941 38.9400 170.03 180.74 11.10 37942 38.9410 186.99 180.77 11.70 37943 38.9420 181.93 180.81 11.60 37944 38.9430 185.52 180.85 11.71 37945 38.9440 183.34 180.90 11.60 37946 38.9450 161.58 180.94 10.87 37947 38.9460 168.58 180.99 11.13 37948 38.9470 177.78 181.04 11.39 37949 38.9480 185.15 181.10 11.59 37950 38.9490 174.43 181.16 11.25 37951 38.9500 182.69 181.22 11.56 37952 38.9510 160.56 181.29 10.84 37953 38.9520 159.67 181.36 10.78 37954 38.9530 164.93 181.43 10.90 37955 38.9540 183.08 181.51 11.52 37956 38.9550 181.97 181.59 11.53 37957 38.9560 187.15 181.68 11.73 37958 38.9570 167.12 181.77 11.01 37959 38.9580 176.36 181.86 11.35 37960 38.9590 166.23 181.96 11.01 37961 38.9600 177.49 182.07 11.41 37962 38.9610 178.60 182.18 11.43 37963 38.9620 179.90 182.29 11.45 37964 38.9630 172.61 182.41 11.22 37965 38.9640 175.43 182.54 11.35 37966 38.9650 181.43 182.68 11.52 37967 38.9660 183.66 182.82 11.60 37968 38.9670 188.78 182.96 11.74 37969 38.9680 184.73 183.12 11.55 37970 38.9690 177.27 183.27 11.33 37971 38.9700 171.24 183.44 11.15 37972 38.9710 198.31 183.62 12.02 37973 38.9720 191.30 183.80 11.78 37974 38.9730 186.62 183.98 11.67 37975 38.9740 185.57 184.18 11.61 37976 38.9750 176.72 184.38 11.31 37977 38.9760 176.81 184.59 11.36 37978 38.9770 191.44 184.80 11.77 37979 38.9780 181.48 185.02 11.52 37980 38.9790 173.21 185.24 11.24 37981 38.9800 177.34 185.46 11.39 37982 38.9810 194.35 185.68 11.91 37983 38.9820 183.52 185.91 11.55 37984 38.9830 191.18 186.13 11.84 37985 38.9840 191.36 186.34 11.85 37986 38.9850 200.43 186.55 12.11 37987 38.9860 191.09 186.75 11.85 37988 38.9870 190.97 186.95 11.83 37989 38.9880 192.66 187.13 11.83 37990 38.9890 185.84 187.30 11.64 37991 38.9900 179.02 187.46 11.46 37992 38.9910 200.45 187.60 12.07 37993 38.9920 180.89 187.74 11.50 37994 38.9930 184.64 187.86 11.57 37995 38.9940 198.01 187.96 12.02 37996 38.9950 195.69 188.06 11.93 37997 38.9960 178.25 188.15 11.37 37998 38.9970 190.49 188.24 11.79 37999 38.9980 180.98 188.32 11.41 38000 38.9990 176.07 188.40 11.34 38001 39.0000 188.49 188.48 11.78 38002 39.0010 192.99 188.57 11.84 38003 39.0020 182.05 188.66 11.58 38004 39.0030 183.90 188.75 11.57 38005 39.0040 180.47 188.86 11.50 38006 39.0050 175.45 188.97 11.36 38007 39.0060 171.14 189.10 11.14 38008 39.0070 184.01 189.23 11.56 38009 39.0080 186.97 189.38 11.78 38010 39.0090 201.76 189.54 12.21 38011 39.0100 198.39 189.72 12.08 38012 39.0110 194.09 189.91 11.88 38013 39.0120 194.38 190.12 11.91 38014 39.0130 211.12 190.34 12.42 38015 39.0140 188.09 190.57 11.70 38016 39.0150 179.00 190.83 11.40 38017 39.0160 196.63 191.10 11.91 38018 39.0170 191.29 191.39 11.79 38019 39.0180 185.49 191.70 11.63 38020 39.0190 187.02 192.02 11.59 38021 39.0200 192.48 192.36 11.86 38022 39.0210 192.07 192.73 11.87 38023 39.0220 194.81 193.11 11.95 38024 39.0230 177.46 193.51 11.37 38025 39.0240 194.24 193.94 11.87 38026 39.0250 200.84 194.38 12.06 38027 39.0260 194.73 194.85 11.94 38028 39.0270 195.63 195.35 11.98 38029 39.0280 200.77 195.86 12.08 38030 39.0290 185.00 196.40 11.59 38031 39.0300 181.20 196.90 11.58 38032 39.0310 181.53 197.49 11.54 38033 39.0320 190.15 198.12 11.77 38034 39.0330 206.63 198.76 12.33 38035 39.0340 215.79 199.45 12.59 38036 39.0350 207.32 200.15 12.34 38037 39.0360 190.68 200.90 11.74 38038 39.0370 183.12 201.67 11.50 38039 39.0380 204.79 202.48 12.17 38040 39.0390 193.23 203.33 11.87 38041 39.0400 215.07 204.22 12.53 38042 39.0410 199.99 205.15 12.08 38043 39.0420 186.95 206.11 11.61 38044 39.0430 218.89 207.13 12.63 38045 39.0440 216.85 208.18 12.60 38046 39.0450 205.49 209.30 12.25 38047 39.0460 210.38 210.46 12.38 38048 39.0470 216.85 211.68 12.53 38049 39.0480 211.07 212.95 12.41 38050 39.0490 211.71 214.29 12.45 38051 39.0500 231.33 215.69 12.96 38052 39.0510 226.15 217.16 12.85 38053 39.0520 208.91 218.70 12.39 38054 39.0530 209.86 220.31 12.39 38055 39.0540 228.74 222.00 12.93 38056 39.0550 242.28 223.76 13.31 38057 39.0560 220.50 225.60 12.70 38058 39.0570 204.29 227.52 12.21 38059 39.0580 226.76 229.52 12.86 38060 39.0590 217.21 231.60 12.53 38061 39.0600 224.00 233.76 12.76 38062 39.0610 244.37 235.99 13.33 38063 39.0620 226.70 238.28 12.82 38064 39.0630 235.88 240.64 13.14 38065 39.0640 234.74 243.05 13.12 38066 39.0650 256.16 245.49 13.68 38067 39.0660 256.03 247.97 13.69 38068 39.0670 243.82 250.46 13.32 38069 39.0680 250.54 252.93 13.49 38070 39.0690 259.31 255.38 13.74 38071 39.0700 276.37 257.77 14.16 38072 39.0710 279.85 260.08 14.30 38073 39.0720 262.51 262.30 13.84 38074 39.0730 292.88 264.39 14.62 38075 39.0740 279.11 266.31 14.30 38076 39.0750 269.76 268.05 14.04 38077 39.0760 266.89 269.59 13.99 38078 39.0770 270.49 270.91 14.07 38079 39.0780 277.22 271.99 14.22 38080 39.0790 289.86 272.82 14.52 38081 39.0800 284.23 273.41 14.36 38082 39.0810 283.34 273.74 14.39 38083 39.0820 301.44 273.84 14.92 38084 39.0830 311.75 273.72 15.12 38085 39.0840 279.54 273.40 14.31 38086 39.0850 271.13 272.89 14.09 38087 39.0860 276.99 272.24 14.26 38088 39.0870 260.65 271.46 13.79 38089 39.0880 273.90 270.59 14.11 38090 39.0890 282.83 269.66 14.35 38091 39.0900 268.45 268.70 14.01 38092 39.0910 257.81 267.73 13.79 38093 39.0920 251.89 266.66 13.56 38094 39.0930 283.04 265.74 14.38 38095 39.0940 274.02 264.88 14.18 38096 39.0950 263.71 264.09 13.94 38097 39.0960 289.53 263.38 14.58 38098 39.0970 272.31 262.77 14.13 38099 39.0980 259.81 262.26 13.79 38100 39.0990 262.59 261.85 13.86 38101 39.1000 281.08 261.56 14.38 38102 39.1010 272.36 261.36 14.09 38103 39.1020 263.72 261.28 13.95 38104 39.1030 254.69 261.30 13.67 38105 39.1040 283.64 261.42 14.42 38106 39.1050 265.42 261.63 13.93 38107 39.1060 270.01 261.93 14.02 38108 39.1070 272.50 262.30 14.13 38109 39.1080 278.41 262.73 14.27 38110 39.1090 270.41 263.22 14.09 38111 39.1100 276.43 263.76 14.26 38112 39.1110 261.25 264.31 13.88 38113 39.1120 259.07 264.89 13.74 38114 39.1130 266.98 265.46 13.93 38115 39.1140 287.45 266.02 14.49 38116 39.1150 272.56 266.54 14.16 38117 39.1160 289.39 267.02 14.52 38118 39.1170 276.52 267.42 14.24 38119 39.1180 265.78 267.76 13.98 38120 39.1190 271.81 267.99 14.09 38121 39.1200 286.01 268.13 14.43 38122 39.1210 269.68 268.16 14.05 38123 39.1220 275.32 268.08 14.17 38124 39.1230 277.94 267.89 14.20 38125 39.1240 270.91 267.59 14.05 38126 39.1250 268.75 267.18 13.97 38127 39.1260 250.75 266.69 13.53 38128 39.1270 250.76 266.12 13.51 38129 39.1280 288.38 265.48 14.57 38130 39.1290 273.75 264.80 14.13 38131 39.1300 250.99 264.09 13.53 38132 39.1310 257.10 263.36 13.70 38133 39.1320 251.98 262.65 13.60 38134 39.1330 253.07 261.96 13.60 38135 39.1340 262.79 261.32 13.80 38136 39.1350 257.21 260.73 13.72 38137 39.1360 261.84 260.20 13.87 38138 39.1370 268.13 259.82 13.96 38139 39.1380 274.22 259.46 14.10 38140 39.1390 272.01 259.19 14.05 38141 39.1400 272.66 259.02 14.09 38142 39.1410 276.46 258.95 14.22 38143 39.1420 261.59 258.98 13.78 38144 39.1430 238.45 259.10 13.19 38145 39.1440 254.96 259.31 13.60 38146 39.1450 266.88 259.61 13.93 38147 39.1460 266.44 259.98 13.95 38148 39.1470 262.78 260.42 13.86 38149 39.1480 276.95 260.90 14.28 38150 39.1490 272.04 261.42 14.09 38151 39.1500 275.72 261.95 14.15 38152 39.1510 278.36 262.48 14.22 38153 39.1520 263.11 262.98 13.80 38154 39.1530 275.62 263.45 14.21 38155 39.1540 271.23 263.85 14.06 38156 39.1550 296.31 264.16 14.68 38157 39.1560 274.75 264.38 14.20 38158 39.1570 272.62 264.48 14.12 38159 39.1580 268.77 264.45 14.01 38160 39.1590 271.37 264.28 14.08 38161 39.1600 277.12 263.98 14.23 38162 39.1610 260.02 263.54 13.75 38163 39.1620 276.92 262.96 14.22 38164 39.1630 273.69 262.25 14.15 38165 39.1640 285.15 261.43 14.46 38166 39.1650 259.38 260.50 13.82 38167 39.1660 241.28 259.50 13.23 38168 39.1670 262.86 258.42 13.80 38169 39.1680 260.94 257.30 13.82 38170 39.1690 258.57 256.15 13.73 38171 39.1700 238.51 254.99 13.19 38172 39.1710 240.37 253.84 13.26 38173 39.1720 265.00 252.71 13.89 38174 39.1730 239.69 251.62 13.20 38175 39.1740 248.82 250.59 13.44 38176 39.1750 238.03 249.63 13.18 38177 39.1760 255.91 248.74 13.68 38178 39.1770 239.75 247.93 13.24 38179 39.1780 237.43 247.22 13.17 38180 39.1790 247.76 246.62 13.47 38181 39.1800 237.34 246.12 13.11 38182 39.1810 256.88 245.73 13.68 38183 39.1820 266.06 245.46 13.95 38184 39.1830 255.11 245.32 13.73 38185 39.1840 251.11 245.29 13.59 38186 39.1850 229.43 245.40 12.99 38187 39.1860 226.38 245.64 12.87 38188 39.1870 239.50 246.02 13.21 38189 39.1880 244.62 246.53 13.39 38190 39.1890 239.24 247.19 13.19 38191 39.1900 254.90 248.00 13.66 38192 39.1910 254.54 248.96 13.64 38193 39.1920 254.61 250.07 13.61 38194 39.1930 259.39 251.34 13.76 38195 39.1940 259.97 252.77 13.78 38196 39.1950 262.47 254.38 13.85 38197 39.1960 246.06 256.15 13.44 38198 39.1970 242.67 258.10 13.29 38199 39.1980 263.63 260.24 13.85 38200 39.1990 278.26 262.57 14.23 38201 39.2000 284.42 265.07 14.48 38202 39.2010 273.44 267.78 14.17 38203 39.2020 269.19 270.68 14.00 38204 39.2030 263.27 273.76 13.91 38205 39.2040 293.68 277.04 14.68 38206 39.2050 256.65 280.53 13.69 38207 39.2060 284.33 284.17 14.38 38208 39.2070 307.13 287.99 14.94 38209 39.2080 289.62 291.96 14.50 38210 39.2090 290.70 296.05 14.60 38211 39.2100 300.69 300.26 14.83 38212 39.2110 308.76 304.53 15.01 38213 39.2120 324.88 308.84 15.41 38214 39.2130 319.81 313.12 15.26 38215 39.2140 326.88 317.33 15.44 38216 39.2150 329.52 321.39 15.55 38217 39.2160 357.55 325.26 16.15 38218 39.2170 330.18 328.86 15.46 38219 39.2180 363.66 332.10 16.28 38220 39.2190 357.69 334.94 16.16 38221 39.2200 379.51 337.30 16.67 38222 39.2210 353.38 339.11 16.09 38223 39.2220 348.72 340.34 15.99 38224 39.2230 340.46 340.95 15.75 38225 39.2240 348.91 340.94 16.03 38226 39.2250 345.61 340.30 15.95 38227 39.2260 361.47 339.05 16.27 38228 39.2270 346.89 337.23 15.93 38229 39.2280 319.87 334.90 15.26 38230 39.2290 322.77 332.10 15.36 38231 39.2300 305.74 328.90 14.94 38232 39.2310 309.71 325.39 15.07 38233 39.2320 329.11 321.62 15.53 38234 39.2330 320.89 317.66 15.26 38235 39.2340 313.41 313.61 15.12 38236 39.2350 305.19 309.50 14.88 38237 39.2360 294.81 305.38 14.62 38238 39.2370 292.61 301.33 14.58 38239 39.2380 295.93 297.35 14.66 38240 39.2390 268.74 293.49 14.01 38241 39.2400 277.83 289.78 14.26 38242 39.2410 261.55 286.24 13.85 38243 39.2420 277.19 282.88 14.25 38244 39.2430 279.09 279.73 14.22 38245 39.2440 277.45 276.77 14.22 38246 39.2450 288.90 274.02 14.47 38247 39.2460 300.41 271.48 14.84 38248 39.2470 274.37 269.14 14.14 38249 39.2480 263.85 267.00 13.88 38250 39.2490 276.77 265.09 14.18 38251 39.2500 261.44 263.38 13.83 38252 39.2510 254.85 261.87 13.71 38253 39.2520 254.50 260.55 13.65 38254 39.2530 245.81 259.43 13.44 38255 39.2540 239.41 258.49 13.22 38256 39.2550 232.19 257.74 13.01 38257 39.2560 250.57 257.17 13.47 38258 39.2570 265.02 256.77 13.95 38259 39.2580 270.93 256.54 14.09 38260 39.2590 263.40 256.48 13.86 38261 39.2600 238.73 256.58 13.20 38262 39.2610 251.57 256.84 13.56 38263 39.2620 259.53 257.26 13.85 38264 39.2630 282.73 257.83 14.38 38265 39.2640 247.11 258.53 13.42 38266 39.2650 264.31 259.39 13.84 38267 39.2660 258.25 260.38 13.72 38268 39.2670 258.84 261.50 13.69 38269 39.2680 266.14 262.76 13.91 38270 39.2690 248.87 264.13 13.47 38271 39.2700 265.88 265.61 13.96 38272 39.2710 270.28 267.19 14.05 38273 39.2720 262.90 268.86 13.80 38274 39.2730 284.38 270.61 14.35 38275 39.2740 279.55 272.41 14.32 38276 39.2750 303.57 274.26 14.91 38277 39.2760 302.62 276.10 14.86 38278 39.2770 276.33 277.92 14.16 38279 39.2780 298.03 279.70 14.75 38280 39.2790 298.12 281.39 14.78 38281 39.2800 310.16 282.94 15.07 38282 39.2810 299.24 284.33 14.74 38283 39.2820 303.94 285.53 14.92 38284 39.2830 309.96 286.47 15.04 38285 39.2840 305.26 287.14 14.92 38286 39.2850 288.58 287.50 14.52 38287 39.2860 286.27 287.54 14.51 38288 39.2870 294.43 287.24 14.70 38289 39.2880 303.09 286.59 14.86 38290 39.2890 290.53 285.60 14.57 38291 39.2900 266.35 284.28 14.00 38292 39.2910 282.67 282.65 14.34 38293 39.2920 273.37 280.76 14.17 38294 39.2930 279.83 278.61 14.33 38295 39.2940 277.02 276.25 14.25 38296 39.2950 292.15 273.73 14.58 38297 39.2960 258.74 271.06 13.74 38298 39.2970 262.51 268.30 13.84 38299 39.2980 275.57 265.50 14.21 38300 39.2990 267.80 262.67 13.93 38301 39.3000 262.38 259.83 13.87 38302 39.3010 263.95 257.04 13.88 38303 39.3020 256.54 254.29 13.65 38304 39.3030 257.64 251.59 13.73 38305 39.3040 244.74 249.00 13.38 38306 39.3050 228.46 246.50 12.95 38307 39.3060 253.58 244.10 13.60 38308 39.3070 230.05 241.81 12.94 38309 39.3080 225.32 239.63 12.83 38310 39.3090 269.87 237.57 14.01 38311 39.3100 250.54 235.63 13.49 38312 39.3110 228.38 233.80 12.91 38313 39.3120 236.67 232.08 13.13 38314 39.3130 227.79 230.48 12.91 38315 39.3140 236.60 228.99 13.13 38316 39.3150 226.02 227.60 12.83 38317 39.3160 212.98 226.32 12.47 38318 39.3170 221.68 225.04 12.66 38319 39.3180 213.08 223.97 12.42 38320 39.3190 223.72 222.99 12.73 38321 39.3200 218.97 222.11 12.65 38322 39.3210 228.18 221.32 12.93 38323 39.3220 234.71 220.62 13.10 38324 39.3230 209.45 220.00 12.39 38325 39.3240 207.90 219.46 12.34 38326 39.3250 203.01 219.01 12.13 38327 39.3260 214.38 218.63 12.49 38328 39.3270 221.46 218.33 12.72 38329 39.3280 218.71 218.10 12.65 38330 39.3290 214.50 217.93 12.57 38331 39.3300 218.03 217.84 12.68 38332 39.3310 223.46 217.80 12.80 38333 39.3320 216.37 217.82 12.57 38334 39.3330 216.93 217.89 12.65 38335 39.3340 229.35 218.01 12.99 38336 39.3350 232.64 218.16 13.02 38337 39.3360 228.59 218.36 12.94 38338 39.3370 209.68 218.58 12.40 38339 39.3380 233.47 218.82 13.10 38340 39.3390 231.62 219.08 12.95 38341 39.3400 230.59 219.33 12.96 38342 39.3410 213.02 219.58 12.46 38343 39.3420 217.18 219.81 12.58 38344 39.3430 230.40 220.01 12.97 38345 39.3440 232.55 220.16 13.05 38346 39.3450 223.19 220.27 12.80 38347 39.3460 233.43 220.32 13.08 38348 39.3470 241.67 220.29 13.30 38349 39.3480 217.57 220.19 12.63 38350 39.3490 231.33 220.01 13.00 38351 39.3500 218.63 219.73 12.63 38352 39.3510 223.53 219.37 12.79 38353 39.3520 208.63 218.92 12.35 38354 39.3530 220.66 218.38 12.70 38355 39.3540 211.74 217.76 12.44 38356 39.3550 226.77 217.06 12.85 38357 39.3560 234.40 216.30 13.02 38358 39.3570 210.39 215.47 12.40 38359 39.3580 217.87 214.61 12.58 38360 39.3590 210.91 213.70 12.42 38361 39.3600 200.47 212.74 12.13 38362 39.3610 219.86 211.76 12.69 38363 39.3620 216.23 210.78 12.56 38364 39.3630 211.68 209.78 12.46 38365 39.3640 189.44 208.78 11.74 38366 39.3650 203.82 207.79 12.18 38367 39.3660 216.26 206.82 12.60 38368 39.3670 222.00 205.86 12.69 38369 39.3680 200.39 204.93 12.12 38370 39.3690 192.11 204.02 11.85 38371 39.3700 199.11 203.14 12.06 38372 39.3710 200.61 202.29 12.09 38373 39.3720 205.37 201.47 12.28 38374 39.3730 221.05 200.68 12.75 38375 39.3740 183.01 199.93 11.57 38376 39.3750 200.72 199.21 12.07 38377 39.3760 211.52 198.52 12.43 38378 39.3770 191.38 197.87 11.78 38379 39.3780 207.76 197.25 12.29 38380 39.3790 212.88 196.66 12.42 38381 39.3800 195.27 196.10 11.96 38382 39.3810 193.88 195.57 11.99 38383 39.3820 197.25 195.07 12.04 38384 39.3830 195.07 194.60 11.91 38385 39.3840 205.41 194.15 12.24 38386 39.3850 210.27 193.74 12.36 38387 39.3860 198.48 193.35 12.04 38388 39.3870 199.20 192.98 12.04 38389 39.3880 205.72 192.64 12.21 38390 39.3890 184.40 192.32 11.62 38391 39.3900 204.49 192.03 12.22 38392 39.3910 188.49 191.76 11.70 38393 39.3920 198.81 191.51 11.99 38394 39.3930 193.78 191.28 11.93 38395 39.3940 182.60 191.07 11.57 38396 39.3950 206.97 190.88 12.32 38397 39.3960 178.47 190.71 11.44 38398 39.3970 181.66 190.57 11.55 38399 39.3980 189.13 190.44 11.78 38400 39.3990 191.25 190.33 11.86 38401 39.4000 198.23 190.24 12.07 38402 39.4010 194.60 190.16 11.94 38403 39.4020 183.84 190.11 11.55 38404 39.4030 187.69 190.07 11.66 38405 39.4040 209.57 190.06 12.36 38406 39.4050 195.82 190.06 11.92 38407 39.4060 202.61 190.08 12.16 38408 39.4070 199.14 190.12 12.05 38409 39.4080 178.38 190.18 11.41 38410 39.4090 194.30 190.26 11.87 38411 39.4100 190.33 190.36 11.78 38412 39.4110 194.85 190.48 11.94 38413 39.4120 213.22 190.62 12.50 38414 39.4130 203.00 190.79 12.18 38415 39.4140 192.13 190.97 11.87 38416 39.4150 183.43 191.18 11.59 38417 39.4160 178.76 191.41 11.43 38418 39.4170 188.31 191.67 11.70 38419 39.4180 178.44 191.94 11.39 38420 39.4190 189.12 192.25 11.75 38421 39.4200 209.93 192.58 12.34 38422 39.4210 192.45 192.94 11.85 38423 39.4220 209.67 193.33 12.34 38424 39.4230 197.23 193.75 11.98 38425 39.4240 206.01 194.19 12.28 38426 39.4250 199.01 194.67 12.01 38427 39.4260 201.58 195.19 12.14 38428 39.4270 191.79 195.73 11.83 38429 39.4280 198.92 196.32 12.04 38430 39.4290 192.69 196.93 11.88 38431 39.4300 195.07 197.59 11.95 38432 39.4310 197.75 198.28 11.96 38433 39.4320 192.04 199.01 11.80 38434 39.4330 191.22 199.78 11.78 38435 39.4340 186.64 200.59 11.64 38436 39.4350 187.24 201.44 11.72 38437 39.4360 207.17 202.33 12.28 38438 39.4370 210.60 203.25 12.44 38439 39.4380 191.48 204.22 11.87 38440 39.4390 211.19 205.21 12.43 38441 39.4400 208.43 206.24 12.32 38442 39.4410 217.33 207.30 12.62 38443 39.4420 229.49 208.39 12.98 38444 39.4430 196.69 209.49 11.96 38445 39.4440 205.78 210.61 12.18 38446 39.4450 220.39 211.73 12.62 38447 39.4460 186.70 212.85 11.66 38448 39.4470 198.29 213.96 12.12 38449 39.4480 198.68 215.05 12.01 38450 39.4490 217.88 216.11 12.61 38451 39.4500 228.87 217.12 12.93 38452 39.4510 209.07 218.07 12.35 38453 39.4520 211.35 218.95 12.41 38454 39.4530 219.11 219.75 12.66 38455 39.4540 224.28 220.45 12.82 38456 39.4550 216.99 221.04 12.56 38457 39.4560 211.86 221.51 12.41 38458 39.4570 221.00 221.85 12.71 38459 39.4580 210.84 222.06 12.43 38460 39.4590 212.06 222.13 12.50 38461 39.4600 227.29 222.06 12.85 38462 39.4610 216.30 221.84 12.55 38463 39.4620 236.83 221.48 13.19 38464 39.4630 243.49 220.99 13.28 38465 39.4640 209.56 220.37 12.34 38466 39.4650 234.34 219.62 13.03 38467 39.4660 242.60 218.77 13.27 38468 39.4670 240.22 217.83 13.23 38469 39.4680 234.48 216.80 13.06 38470 39.4690 221.00 215.70 12.72 38471 39.4700 234.75 214.64 13.09 38472 39.4710 222.94 213.44 12.74 38473 39.4720 221.36 212.21 12.63 38474 39.4730 194.42 210.97 11.85 38475 39.4740 205.02 209.71 12.20 38476 39.4750 207.01 208.45 12.31 38477 39.4760 206.85 207.21 12.30 38478 39.4770 205.98 205.97 12.25 38479 39.4780 209.74 204.76 12.38 38480 39.4790 214.39 203.58 12.58 38481 39.4800 210.58 202.43 12.44 38482 39.4810 200.91 201.31 12.15 38483 39.4820 203.36 200.22 12.19 38484 39.4830 204.47 199.17 12.24 38485 39.4840 196.52 198.16 11.97 38486 39.4850 204.08 197.19 12.25 38487 39.4860 199.68 196.26 12.13 38488 39.4870 190.72 195.36 11.87 38489 39.4880 185.33 194.50 11.59 38490 39.4890 203.55 193.68 12.13 38491 39.4900 203.55 192.89 12.19 38492 39.4910 191.51 192.13 11.82 38493 39.4920 192.91 191.42 11.87 38494 39.4930 193.68 190.73 11.86 38495 39.4940 181.58 190.08 11.53 38496 39.4950 190.56 189.45 11.80 38497 39.4960 214.80 188.85 12.50 38498 39.4970 201.63 188.29 12.11 38499 39.4980 183.35 187.74 11.56 38500 39.4990 193.63 187.22 11.87 38501 39.5000 188.27 186.73 11.68 38502 39.5010 174.84 186.26 11.31 38503 39.5020 183.58 185.80 11.53 38504 39.5030 192.76 185.37 11.82 38505 39.5040 192.84 184.96 11.82 38506 39.5050 199.75 184.57 12.08 38507 39.5060 190.56 184.19 11.80 38508 39.5070 195.23 183.83 11.85 38509 39.5080 187.68 183.48 11.69 38510 39.5090 190.96 183.15 11.81 38511 39.5100 189.61 182.84 11.76 38512 39.5110 194.33 182.54 11.89 38513 39.5120 178.74 182.25 11.40 38514 39.5130 204.78 181.97 12.24 38515 39.5140 190.18 181.70 11.79 38516 39.5150 194.17 181.45 11.88 38517 39.5160 178.48 181.34 11.44 38518 39.5170 180.95 181.10 11.48 38519 39.5180 176.61 180.88 11.34 38520 39.5190 173.44 180.66 11.23 38521 39.5200 176.99 180.45 11.41 38522 39.5210 175.37 180.25 11.36 38523 39.5220 184.76 180.06 11.65 38524 39.5230 169.29 179.88 11.08 38525 39.5240 178.86 179.70 11.39 38526 39.5250 174.14 179.53 11.23 38527 39.5260 174.07 179.37 11.30 38528 39.5270 172.87 179.21 11.26 38529 39.5280 186.93 179.06 11.63 38530 39.5290 190.69 178.92 11.77 38531 39.5300 184.86 178.78 11.59 38532 39.5310 192.31 178.64 11.88 38533 39.5320 182.52 178.51 11.53 38534 39.5330 183.14 178.39 11.55 38535 39.5340 189.27 178.27 11.78 38536 39.5350 176.89 178.15 11.38 38537 39.5360 170.15 178.04 11.13 38538 39.5370 180.31 177.93 11.46 38539 39.5380 182.41 177.83 11.55 38540 39.5390 170.27 177.73 11.10 38541 39.5400 161.95 177.64 10.90 38542 39.5410 172.83 177.54 11.25 38543 39.5420 177.55 177.46 11.38 38544 39.5430 201.71 177.37 12.14 38545 39.5440 194.44 177.29 11.93 38546 39.5450 168.83 177.21 11.09 38547 39.5460 186.17 177.13 11.60 38548 39.5470 183.63 177.06 11.56 38549 39.5480 174.15 176.99 11.32 38550 39.5490 172.29 176.93 11.22 38551 39.5500 159.56 176.86 10.80 38552 39.5510 179.32 176.80 11.43 38553 39.5520 183.46 176.74 11.56 38554 39.5530 189.46 176.69 11.75 38555 39.5540 173.57 176.64 11.26 38556 39.5550 180.15 176.59 11.47 38557 39.5560 167.90 176.54 11.05 38558 39.5570 166.75 176.49 10.95 38559 39.5580 178.74 176.45 11.39 38560 39.5590 186.57 176.41 11.72 38561 39.5600 180.25 176.37 11.48 38562 39.5610 180.11 176.33 11.43 38563 39.5620 169.55 176.30 11.16 38564 39.5630 184.44 176.27 11.60 38565 39.5640 170.70 176.24 11.17 38566 39.5650 160.87 176.21 10.84 38567 39.5660 179.17 176.19 11.42 38568 39.5670 191.25 176.16 11.85 38569 39.5680 186.82 176.14 11.70 38570 39.5690 167.53 176.12 11.04 38571 39.5700 188.16 176.11 11.74 38572 39.5710 174.50 176.10 11.29 38573 39.5720 168.82 176.08 11.13 38574 39.5730 171.72 176.07 11.19 38575 39.5740 168.58 176.07 11.04 38576 39.5750 174.86 176.06 11.26 38577 39.5760 173.39 176.06 11.27 38578 39.5770 182.68 176.06 11.56 38579 39.5780 168.48 176.06 11.09 38580 39.5790 163.93 176.07 10.94 38581 39.5800 174.15 176.07 11.28 38582 39.5810 186.77 176.09 11.64 38583 39.5820 175.15 176.10 11.30 38584 39.5830 180.79 176.11 11.48 38585 39.5840 204.57 176.13 12.26 38586 39.5850 171.02 176.15 11.20 38587 39.5860 182.57 176.17 11.55 38588 39.5870 170.28 176.20 11.17 38589 39.5880 181.87 176.23 11.53 38590 39.5890 174.91 176.26 11.24 38591 39.5900 192.72 176.29 11.92 38592 39.5910 187.38 176.33 11.72 38593 39.5920 179.89 176.38 11.42 38594 39.5930 169.66 176.42 11.16 38595 39.5940 181.38 176.47 11.47 38596 39.5950 177.18 176.52 11.35 38597 39.5960 183.14 176.58 11.55 38598 39.5970 180.68 176.64 11.51 38599 39.5980 182.80 176.70 11.52 38600 39.5990 186.20 176.77 11.64 38601 39.6000 185.06 176.84 11.61 38602 39.6010 171.66 176.92 11.19 38603 39.6020 184.00 177.00 11.63 38604 39.6030 171.75 177.09 11.20 38605 39.6040 176.44 177.18 11.39 38606 39.6050 178.07 177.28 11.43 38607 39.6060 176.58 177.38 11.38 38608 39.6070 178.44 177.49 11.44 38609 39.6080 174.27 177.61 11.29 38610 39.6090 180.10 177.73 11.46 38611 39.6100 170.71 177.86 11.12 38612 39.6110 163.01 178.00 10.86 38613 39.6120 175.03 178.15 11.28 38614 39.6130 172.01 178.30 11.15 38615 39.6140 178.02 178.46 11.36 38616 39.6150 194.09 178.63 11.89 38617 39.6160 180.59 178.81 11.49 38618 39.6170 176.38 179.00 11.35 38619 39.6180 175.03 179.21 11.29 38620 39.6190 182.34 179.42 11.58 38621 39.6200 175.85 179.64 11.31 38622 39.6210 168.90 179.88 11.09 38623 39.6220 194.15 180.13 11.91 38624 39.6230 194.09 180.40 11.96 38625 39.6240 166.11 180.68 11.02 38626 39.6250 183.55 180.98 11.56 38627 39.6260 168.56 181.29 11.09 38628 39.6270 178.41 181.62 11.42 38629 39.6280 173.68 181.98 11.25 38630 39.6290 166.58 182.35 11.08 38631 39.6300 172.85 182.74 11.23 38632 39.6310 179.79 183.04 11.45 38633 39.6320 186.93 183.47 11.68 38634 39.6330 182.02 183.94 11.56 38635 39.6340 167.36 184.43 11.09 38636 39.6350 189.81 184.95 11.72 38637 39.6360 183.59 185.50 11.57 38638 39.6370 185.75 186.08 11.65 38639 39.6380 181.86 186.70 11.59 38640 39.6390 194.34 187.35 11.90 38641 39.6400 188.82 188.03 11.76 38642 39.6410 193.49 188.75 11.86 38643 39.6420 179.79 189.52 11.45 38644 39.6430 189.91 190.32 11.77 38645 39.6440 177.26 191.16 11.34 38646 39.6450 179.53 192.05 11.47 38647 39.6460 191.10 192.97 11.80 38648 39.6470 174.85 193.94 11.27 38649 39.6480 186.61 194.95 11.63 38650 39.6490 179.18 196.00 11.40 38651 39.6500 191.75 197.09 11.82 38652 39.6510 175.03 198.20 11.26 38653 39.6520 194.98 199.51 11.90 38654 39.6530 199.70 200.67 12.08 38655 39.6540 207.40 201.86 12.33 38656 39.6550 198.63 203.05 12.02 38657 39.6560 193.91 204.23 11.91 38658 39.6570 210.80 205.40 12.44 38659 39.6580 219.66 206.53 12.68 38660 39.6590 218.45 207.62 12.69 38661 39.6600 200.69 208.63 12.13 38662 39.6610 210.88 209.57 12.41 38663 39.6620 217.31 210.41 12.61 38664 39.6630 219.15 211.13 12.66 38665 39.6640 210.35 211.72 12.44 38666 39.6650 221.06 212.16 12.76 38667 39.6660 228.95 212.45 12.98 38668 39.6670 213.77 212.58 12.54 38669 39.6680 206.82 212.53 12.29 38670 39.6690 207.34 212.33 12.32 38671 39.6700 206.78 211.95 12.30 38672 39.6710 210.02 211.43 12.36 38673 39.6720 210.75 210.77 12.38 38674 39.6730 222.04 209.96 12.68 38675 39.6740 205.56 209.07 12.22 38676 39.6750 198.35 208.08 12.05 38677 39.6760 195.65 207.01 11.90 38678 39.6770 204.75 205.88 12.24 38679 39.6780 203.85 204.71 12.20 38680 39.6790 175.66 203.51 11.31 38681 39.6800 194.26 202.30 11.94 38682 39.6810 187.88 201.18 11.74 38683 39.6820 184.09 199.97 11.61 38684 39.6830 183.75 198.79 11.62 38685 39.6840 204.40 197.63 12.24 38686 39.6850 187.01 196.50 11.64 38687 39.6860 190.17 195.40 11.76 38688 39.6870 171.10 194.35 11.19 38689 39.6880 188.39 193.33 11.71 38690 39.6890 187.01 192.36 11.67 38691 39.6900 184.68 191.42 11.55 38692 39.6910 185.90 190.53 11.60 38693 39.6920 184.71 189.59 11.57 38694 39.6930 196.26 188.78 11.97 38695 39.6940 191.49 188.01 11.82 38696 39.6950 187.62 187.28 11.68 38697 39.6960 192.88 186.59 11.89 38698 39.6970 181.08 185.93 11.55 38699 39.6980 180.83 185.30 11.52 38700 39.6990 205.94 184.71 12.22 38701 39.7000 196.47 184.15 11.96 38702 39.7010 186.72 183.61 11.69 38703 39.7020 200.70 183.11 12.15 38704 39.7030 205.75 182.63 12.30 38705 39.7040 174.18 182.17 11.25 38706 39.7050 191.76 181.74 11.78 38707 39.7060 176.49 181.33 11.39 38708 39.7070 177.07 180.94 11.35 38709 39.7080 182.52 180.57 11.54 38710 39.7090 201.50 180.22 12.12 38711 39.7100 193.70 179.89 11.87 38712 39.7110 186.96 179.58 11.64 38713 39.7120 183.39 179.27 11.66 38714 39.7130 171.31 178.99 11.19 38715 39.7140 180.08 178.72 11.45 38716 39.7150 188.10 178.46 11.71 38717 39.7160 173.49 178.21 11.27 38718 39.7170 161.95 177.98 10.91 38719 39.7180 183.14 177.76 11.55 38720 39.7190 180.60 177.54 11.52 38721 39.7200 189.54 177.34 11.80 38722 39.7210 198.40 177.05 12.05 38723 39.7220 188.22 176.87 11.67 38724 39.7230 179.21 176.69 11.42 38725 39.7240 194.40 176.52 11.94 38726 39.7250 181.62 176.36 11.48 38727 39.7260 178.62 176.21 11.46 38728 39.7270 167.50 176.06 11.08 38729 39.7280 174.09 175.92 11.26 38730 39.7290 169.02 175.78 11.05 38731 39.7300 182.14 175.65 11.55 38732 39.7310 176.87 175.28 11.41 38733 39.7320 187.65 175.16 11.70 38734 39.7330 178.91 175.05 11.45 38735 39.7340 175.40 174.94 11.38 38736 39.7350 169.76 174.84 11.14 38737 39.7360 163.80 174.74 10.91 38738 39.7370 168.53 174.65 11.07 38739 39.7380 196.64 174.55 11.94 38740 39.7390 172.35 174.47 11.19 38741 39.7400 186.85 174.38 11.63 38742 39.7410 172.44 174.30 11.21 38743 39.7420 172.35 174.23 11.18 38744 39.7430 173.40 174.15 11.22 38745 39.7440 169.02 174.08 11.16 38746 39.7450 164.12 174.02 10.95 38747 39.7460 194.22 173.95 11.89 38748 39.7470 194.01 173.89 11.86 38749 39.7480 183.30 173.83 11.56 38750 39.7490 170.72 173.77 11.15 38751 39.7500 184.92 173.72 11.62 38752 39.7510 169.60 173.67 11.08 38753 39.7520 176.39 173.62 11.36 38754 39.7530 196.06 173.57 11.97 38755 39.7540 160.97 173.53 10.83 38756 39.7550 165.27 173.48 10.99 38757 39.7560 165.42 173.44 10.93 38758 39.7570 168.56 173.40 11.10 38759 39.7580 170.87 173.37 11.13 38760 39.7590 183.41 173.33 11.54 38761 39.7600 161.92 173.30 10.89 38762 39.7610 179.99 173.27 11.49 38763 39.7620 178.97 173.24 11.39 38764 39.7630 169.05 173.21 11.13 38765 39.7640 169.23 173.19 11.08 38766 39.7650 183.24 173.16 11.52 38767 39.7660 172.81 173.14 11.25 38768 39.7670 171.40 173.12 11.20 38769 39.7680 153.54 173.10 10.61 38770 39.7690 169.68 173.08 11.14 38771 39.7700 163.17 173.07 10.94 38772 39.7710 169.62 173.05 11.11 38773 39.7720 171.29 173.04 11.16 38774 39.7730 177.01 173.03 11.34 38775 39.7740 171.89 173.02 11.22 38776 39.7750 170.26 173.02 11.21 38777 39.7760 183.09 173.01 11.60 38778 39.7770 176.09 173.01 11.36 38779 39.7780 175.74 173.00 11.34 38780 39.7790 168.08 173.00 11.04 38781 39.7800 172.31 173.00 11.24 38782 39.7810 175.67 173.00 11.32 38783 39.7820 164.29 173.01 10.97 38784 39.7830 157.14 173.01 10.69 38785 39.7840 159.25 173.02 10.77 38786 39.7850 164.47 173.03 11.00 38787 39.7860 173.72 173.04 11.24 38788 39.7870 170.45 173.05 11.18 38789 39.7880 174.22 173.07 11.35 38790 39.7890 184.97 173.08 11.63 38791 39.7900 177.73 173.10 11.43 38792 39.7910 173.63 173.12 11.23 38793 39.7920 161.48 173.14 10.88 38794 39.7930 178.16 173.17 11.38 38795 39.7940 197.65 173.19 12.04 38796 39.7950 180.95 173.22 11.52 38797 39.7960 161.86 173.25 10.90 38798 39.7970 179.38 173.29 11.41 38799 39.7980 174.97 173.32 11.27 38800 39.7990 174.75 173.36 11.27 38801 39.8000 162.90 173.40 10.88 38802 39.8010 182.41 173.45 11.57 38803 39.8020 178.62 173.49 11.39 38804 39.8030 187.83 173.54 11.71 38805 39.8040 184.58 173.60 11.67 38806 39.8050 170.12 173.65 11.16 38807 39.8060 186.74 173.71 11.69 38808 39.8070 170.72 173.77 11.20 38809 39.8080 168.76 173.83 11.11 38810 39.8090 181.79 173.90 11.50 38811 39.8100 161.12 173.98 10.79 38812 39.8110 177.89 174.06 11.36 38813 39.8120 166.41 174.14 11.02 38814 39.8130 170.06 174.23 11.14 38815 39.8140 171.93 174.17 11.24 38816 39.8150 189.07 174.26 11.76 38817 39.8160 178.56 174.37 11.38 38818 39.8170 166.99 174.47 11.05 38819 39.8180 176.22 174.58 11.37 38820 39.8190 182.16 174.70 11.48 38821 39.8200 201.34 174.82 12.10 38822 39.8210 180.40 174.95 11.48 38823 39.8220 173.37 175.08 11.28 38824 39.8230 187.41 175.22 11.70 38825 39.8240 188.12 175.36 11.69 38826 39.8250 163.98 175.51 10.92 38827 39.8260 161.34 175.66 10.82 38828 39.8270 152.26 175.82 10.55 38829 39.8280 173.42 175.98 11.26 38830 39.8290 183.34 176.15 11.51 38831 39.8300 173.76 176.31 11.27 38832 39.8310 168.48 176.48 11.02 38833 39.8320 184.36 176.66 11.58 38834 39.8330 173.95 176.83 11.31 38835 39.8340 169.08 177.01 11.15 38836 39.8350 171.09 177.18 11.19 38837 39.8360 177.95 177.35 11.39 38838 39.8370 162.01 177.53 10.91 38839 39.8380 180.75 177.70 11.48 38840 39.8390 159.19 177.87 10.76 38841 39.8400 199.26 178.04 12.05 38842 39.8410 178.56 178.20 11.42 38843 39.8420 181.49 178.36 11.51 38844 39.8430 175.92 178.52 11.35 38845 39.8440 175.70 178.68 11.38 38846 39.8450 172.08 178.84 11.24 38847 39.8460 181.70 178.99 11.50 38848 39.8470 164.72 179.15 10.90 38849 39.8480 188.76 179.30 11.71 38850 39.8490 193.97 179.46 11.90 38851 39.8500 181.13 179.63 11.48 38852 39.8510 175.51 179.80 11.32 38853 39.8520 167.81 179.98 11.09 38854 39.8530 181.24 180.16 11.49 38855 39.8540 184.86 180.36 11.67 38856 39.8550 181.48 180.57 11.53 38857 39.8560 174.15 180.79 11.28 38858 39.8570 188.75 181.03 11.75 38859 39.8580 201.21 181.28 12.14 38860 39.8590 196.75 181.55 11.99 38861 39.8600 187.62 181.84 11.68 38862 39.8610 184.86 182.15 11.64 38863 39.8620 179.49 182.48 11.49 38864 39.8630 164.46 182.82 11.01 38865 39.8640 162.80 183.19 10.88 38866 39.8650 166.52 183.57 11.04 38867 39.8660 189.73 183.97 11.76 38868 39.8670 206.33 184.39 12.20 38869 39.8680 196.08 184.81 11.94 38870 39.8690 193.46 185.25 11.88 38871 39.8700 187.76 185.69 11.71 38872 39.8710 176.15 186.13 11.33 38873 39.8720 182.90 186.58 11.59 38874 39.8730 202.48 187.01 12.15 38875 39.8740 189.73 187.42 11.69 38876 39.8750 193.45 187.81 11.88 38877 39.8760 181.02 188.18 11.52 38878 39.8770 176.09 188.50 11.33 38879 39.8780 185.09 188.78 11.62 38880 39.8790 197.56 189.01 12.01 38881 39.8800 203.37 189.19 12.13 38882 39.8810 198.93 189.31 11.94 38883 39.8820 193.04 189.36 11.84 38884 39.8830 207.89 189.34 12.30 38885 39.8840 202.11 189.26 12.11 38886 39.8850 189.15 189.12 11.71 38887 39.8860 184.39 188.92 11.55 38888 39.8870 183.24 188.66 11.56 38889 39.8880 184.65 188.35 11.66 38890 39.8890 199.40 187.99 12.13 38891 39.8900 204.92 187.60 12.26 38892 39.8910 191.23 187.17 11.80 38893 39.8920 189.29 186.72 11.82 38894 39.8930 188.95 186.26 11.81 38895 39.8940 188.31 185.78 11.74 38896 39.8950 177.11 185.29 11.42 38897 39.8960 167.80 184.81 11.13 38898 39.8970 196.38 184.34 12.04 38899 39.8980 184.14 183.86 11.63 38900 39.8990 212.51 183.40 12.46 38901 39.9000 206.26 182.96 12.32 38902 39.9010 183.79 182.52 11.58 38903 39.9020 180.70 182.11 11.49 38904 39.9030 200.40 181.71 12.10 38905 39.9040 194.92 181.33 11.92 38906 39.9050 196.50 180.97 11.96 38907 39.9060 187.86 180.63 11.67 38908 39.9070 178.29 180.30 11.39 38909 39.9080 184.17 179.99 11.64 38910 39.9090 182.42 179.70 11.57 38911 39.9100 177.56 179.43 11.44 38912 39.9110 170.34 179.18 11.11 38913 39.9120 190.68 178.94 11.81 38914 39.9130 170.40 178.71 11.19 38915 39.9140 170.04 178.50 11.24 38916 39.9150 182.72 178.31 11.62 38917 39.9160 179.43 178.15 11.49 38918 39.9170 179.00 177.98 11.43 38919 39.9180 171.71 177.82 11.12 38920 39.9190 173.47 177.68 11.25 38921 39.9200 169.08 177.55 11.05 38922 39.9210 172.17 177.43 11.12 38923 39.9220 185.55 177.32 11.66 38924 39.9230 177.44 177.22 11.39 38925 39.9240 195.66 177.12 11.97 38926 39.9250 187.24 177.04 11.76 38927 39.9260 171.26 176.97 11.23 38928 39.9270 173.02 176.91 11.27 38929 39.9280 175.36 176.85 11.37 38930 39.9290 179.88 176.80 11.45 38931 39.9300 189.03 176.76 11.73 38932 39.9310 173.79 176.73 11.25 38933 39.9320 164.93 176.65 10.97 38934 39.9330 165.42 176.63 11.01 38935 39.9340 180.98 176.62 11.55 38936 39.9350 175.72 176.62 11.31 38937 39.9360 174.80 176.62 11.28 38938 39.9370 184.43 176.62 11.60 38939 39.9380 182.49 176.64 11.54 38940 39.9390 177.56 176.66 11.43 38941 39.9400 187.22 176.69 11.69 38942 39.9410 176.24 176.72 11.39 38943 39.9420 172.49 176.76 11.21 38944 39.9430 179.72 176.80 11.47 38945 39.9440 163.50 176.85 10.93 38946 39.9450 173.23 176.91 11.21 38947 39.9460 174.40 176.98 11.27 38948 39.9470 180.27 177.04 11.50 38949 39.9480 170.82 177.12 11.19 38950 39.9490 164.68 177.20 10.96 38951 39.9500 161.54 177.29 10.88 38952 39.9510 176.38 177.38 11.35 38953 39.9520 185.09 177.49 11.64 38954 39.9530 170.80 177.60 11.22 38955 39.9540 176.62 177.71 11.34 38956 39.9550 171.46 177.83 11.13 38957 39.9560 168.84 177.96 11.11 38958 39.9570 168.70 178.10 11.09 38959 39.9580 183.95 178.24 11.60 38960 39.9590 183.83 178.40 11.60 38961 39.9600 188.07 178.56 11.72 38962 39.9610 170.14 178.73 11.16 38963 39.9620 179.22 178.91 11.44 38964 39.9630 179.16 179.10 11.39 38965 39.9640 174.19 179.29 11.29 38966 39.9650 178.27 179.50 11.42 38967 39.9660 187.89 179.72 11.73 38968 39.9670 182.33 179.95 11.47 38969 39.9680 190.21 180.19 11.74 38970 39.9690 192.51 180.52 11.86 38971 39.9700 176.32 180.79 11.33 38972 39.9710 167.60 181.07 11.04 38973 39.9720 179.09 181.36 11.45 38974 39.9730 180.12 181.67 11.47 38975 39.9740 191.71 181.99 11.86 38976 39.9750 186.43 182.33 11.67 38977 39.9760 198.17 182.68 12.03 38978 39.9770 177.76 183.06 11.33 38979 39.9780 192.17 183.45 11.91 38980 39.9790 187.82 183.86 11.71 38981 39.9800 186.46 184.30 11.66 38982 39.9810 171.92 184.75 11.14 38983 39.9820 174.98 185.23 11.22 38984 39.9830 181.11 185.74 11.48 38985 39.9840 178.61 186.26 11.46 38986 39.9850 185.65 186.82 11.67 38987 39.9860 198.91 187.40 12.11 38988 39.9870 196.96 188.02 12.06 38989 39.9880 194.66 188.67 11.99 38990 39.9890 181.47 189.35 11.55 38991 39.9900 189.97 190.07 11.81 38992 39.9910 194.18 190.82 11.88 38993 39.9920 181.21 191.61 11.52 38994 39.9930 183.90 192.45 11.54 38995 39.9940 182.63 193.32 11.52 38996 39.9950 192.24 194.24 11.83 38997 39.9960 194.17 195.21 11.87 38998 39.9970 190.11 196.23 11.76 38999 39.9980 192.34 197.29 11.90 39000 39.9990 187.34 198.41 11.67 39001 40.0000 193.31 199.57 12.43 39002 40.0010 189.53 200.79 12.26 39003 40.0020 217.72 202.06 13.21 39004 40.0030 202.66 203.38 12.69 39005 40.0040 189.94 204.75 12.26 39006 40.0050 193.87 206.17 12.45 39007 40.0060 209.15 207.63 12.94 39008 40.0070 231.60 209.13 13.65 39009 40.0080 238.91 210.67 13.85 39010 40.0090 206.21 212.23 12.85 39011 40.0100 204.87 213.81 12.83 39012 40.0110 206.66 215.41 12.87 39013 40.0120 202.61 216.98 12.74 39014 40.0130 204.90 218.54 12.80 39015 40.0140 228.54 220.06 13.54 39016 40.0150 207.98 221.52 12.88 39017 40.0160 219.96 222.91 13.32 39018 40.0170 212.52 224.21 13.07 39019 40.0180 215.32 225.38 13.11 39020 40.0190 243.18 226.43 13.96 39021 40.0200 231.05 227.33 13.60 39022 40.0210 233.01 228.05 13.65 39023 40.0220 213.51 228.60 13.06 39024 40.0230 242.19 228.96 13.94 39025 40.0240 231.45 229.12 13.58 39026 40.0250 220.05 229.10 13.30 39027 40.0260 225.80 228.88 13.46 39028 40.0270 237.70 228.48 13.83 39029 40.0280 221.84 227.91 13.39 39030 40.0290 234.34 227.18 13.76 39031 40.0300 205.02 226.33 12.82 39032 40.0310 215.03 225.35 13.19 39033 40.0320 219.33 224.27 13.37 39034 40.0330 220.90 223.11 13.33 39035 40.0340 219.49 221.91 13.27 39036 40.0350 206.04 220.66 12.86 39037 40.0360 218.82 219.39 13.21 39038 40.0370 216.34 218.12 13.16 39039 40.0380 217.63 216.85 13.19 39040 40.0390 198.95 215.60 12.61 39041 40.0400 198.80 214.38 12.64 39042 40.0410 184.55 213.20 12.13 39043 40.0420 194.61 212.07 12.47 39044 40.0430 188.91 210.99 12.20 39045 40.0440 198.30 209.97 12.60 39046 40.0450 209.05 209.00 12.91 39047 40.0460 204.59 208.09 12.72 39048 40.0470 217.72 207.25 13.21 39049 40.0480 215.54 206.47 13.20 39050 40.0490 215.14 205.75 13.16 39051 40.0500 199.19 205.10 12.62 39052 40.0510 205.52 204.50 12.82 39053 40.0520 202.62 203.98 12.76 39054 40.0530 201.87 203.51 12.64 39055 40.0540 208.34 203.05 12.95 39056 40.0550 207.79 202.71 12.93 39057 40.0560 186.54 202.42 12.26 39058 40.0570 203.34 202.16 12.74 39059 40.0580 207.24 202.00 12.86 39060 40.0590 211.06 201.88 12.98 39061 40.0600 199.24 201.83 12.69 39062 40.0610 211.89 201.83 13.03 39063 40.0620 206.62 201.89 12.83 39064 40.0630 182.72 202.00 12.14 39065 40.0640 204.65 202.17 12.79 39066 40.0650 189.35 202.40 12.31 39067 40.0660 190.09 202.68 12.39 39068 40.0670 216.32 203.02 13.11 39069 40.0680 184.10 203.42 12.15 39070 40.0690 196.13 203.88 12.49 39071 40.0700 205.15 204.40 12.76 39072 40.0710 212.59 204.98 13.03 39073 40.0720 187.82 205.62 12.24 39074 40.0730 192.10 206.32 12.41 39075 40.0740 208.84 207.09 12.95 39076 40.0750 207.73 207.92 12.87 39077 40.0760 216.47 208.82 13.16 39078 40.0770 217.67 209.79 13.17 39079 40.0780 217.92 210.83 13.19 39080 40.0790 224.67 212.15 13.39 39081 40.0800 227.54 213.33 13.45 39082 40.0810 218.65 214.58 13.25 39083 40.0820 199.85 215.91 12.68 39084 40.0830 229.54 217.30 13.52 39085 40.0840 229.80 218.77 13.57 39086 40.0850 229.09 220.30 13.55 39087 40.0860 220.03 221.91 13.34 39088 40.0870 222.51 223.58 13.36 39089 40.0880 230.49 225.31 13.63 39090 40.0890 229.48 227.09 13.58 39091 40.0900 241.59 228.92 13.95 39092 40.0910 199.10 230.79 12.61 39093 40.0920 214.39 232.68 13.06 39094 40.0930 235.71 234.59 13.69 39095 40.0940 240.42 236.50 13.86 39096 40.0950 249.11 238.39 14.10 39097 40.0960 240.03 240.24 13.87 39098 40.0970 244.11 242.03 13.98 39099 40.0980 254.48 243.74 14.26 39100 40.0990 269.12 245.36 14.70 39101 40.1000 267.28 246.85 14.61 39102 40.1010 245.96 248.18 14.08 39103 40.1020 251.86 249.35 14.21 39104 40.1030 277.91 250.32 14.93 39105 40.1040 250.82 251.08 14.15 39106 40.1050 262.14 251.62 14.53 39107 40.1060 259.06 251.92 14.35 39108 40.1070 258.72 251.98 14.41 39109 40.1080 271.28 251.80 14.77 39110 40.1090 261.88 251.38 14.43 39111 40.1100 265.95 250.73 14.61 39112 40.1110 242.03 249.85 13.96 39113 40.1120 243.59 248.78 13.93 39114 40.1130 252.70 247.52 14.23 39115 40.1140 256.90 246.10 14.33 39116 40.1150 251.94 244.53 14.21 39117 40.1160 240.35 242.86 13.86 39118 40.1170 240.67 241.09 13.80 39119 40.1180 235.77 239.25 13.70 39120 40.1190 243.82 237.37 13.96 39121 40.1200 229.19 235.45 13.50 39122 40.1210 232.38 233.52 13.54 39123 40.1220 218.15 231.59 13.22 39124 40.1230 216.52 229.69 13.22 39125 40.1240 220.89 227.81 13.33 39126 40.1250 226.44 225.98 13.43 39127 40.1260 212.02 224.19 12.96 39128 40.1270 212.32 222.46 13.01 39129 40.1280 222.12 220.79 13.31 39130 40.1290 200.84 219.17 12.69 39131 40.1300 209.33 217.62 12.95 39132 40.1310 205.55 216.14 12.81 39133 40.1320 214.77 214.74 13.14 39134 40.1330 214.89 213.39 13.14 39135 40.1340 216.19 212.12 13.17 39136 40.1350 202.56 210.92 12.75 39137 40.1360 233.96 209.77 13.69 39138 40.1370 212.51 208.69 13.05 39139 40.1380 214.24 207.68 13.17 39140 40.1390 194.20 206.73 12.51 39141 40.1400 199.55 205.84 12.63 39142 40.1410 212.98 205.01 13.02 39143 40.1420 188.80 204.23 12.27 39144 40.1430 182.04 203.50 12.09 39145 40.1440 204.09 202.83 12.82 39146 40.1450 225.57 202.21 13.45 39147 40.1460 207.60 201.64 12.89 39148 40.1470 192.26 201.12 12.45 39149 40.1480 198.17 200.64 12.59 39150 40.1490 208.46 200.21 12.93 39151 40.1500 197.22 199.82 12.52 39152 40.1510 189.20 199.48 12.32 39153 40.1520 211.11 199.17 12.98 39154 40.1530 203.29 198.91 12.72 39155 40.1540 217.03 198.69 13.16 39156 40.1550 206.74 198.50 12.85 39157 40.1560 195.84 198.36 12.56 39158 40.1570 174.84 198.25 11.89 39159 40.1580 177.39 198.18 11.92 39160 40.1590 184.33 198.15 12.15 39161 40.1600 198.90 198.16 12.60 39162 40.1610 200.93 198.20 12.71 39163 40.1620 204.04 198.28 12.79 39164 40.1630 204.32 198.40 12.78 39165 40.1640 208.22 198.56 12.92 39166 40.1650 206.64 198.76 12.85 39167 40.1660 203.51 198.99 12.74 39168 40.1670 215.49 199.27 13.19 39169 40.1680 208.48 199.58 12.88 39170 40.1690 207.90 199.94 12.89 39171 40.1700 210.34 200.34 12.96 39172 40.1710 213.47 200.79 13.07 39173 40.1720 196.33 201.28 12.51 39174 40.1730 215.06 201.81 13.08 39175 40.1740 204.91 202.40 12.78 39176 40.1750 198.27 203.03 12.62 39177 40.1760 195.03 203.72 12.46 39178 40.1770 195.25 204.46 12.50 39179 40.1780 214.16 205.26 13.06 39180 40.1790 210.92 206.11 12.96 39181 40.1800 219.71 207.03 13.22 39182 40.1810 208.93 208.00 12.96 39183 40.1820 203.28 209.05 12.78 39184 40.1830 203.91 210.16 12.81 39185 40.1840 201.38 211.34 12.69 39186 40.1850 226.01 212.60 13.45 39187 40.1860 221.35 213.94 13.33 39188 40.1870 202.72 215.35 12.78 39189 40.1880 216.93 216.85 13.20 39190 40.1890 224.85 218.43 13.48 39191 40.1900 227.04 220.10 13.46 39192 40.1910 229.01 221.86 13.54 39193 40.1920 227.93 223.71 13.55 39194 40.1930 228.31 225.65 13.48 39195 40.1940 234.15 227.69 13.68 39196 40.1950 213.87 229.82 13.10 39197 40.1960 217.80 232.03 13.24 39198 40.1970 231.16 234.35 13.58 39199 40.1980 241.57 236.74 13.93 39200 40.1990 244.62 239.13 14.01 39201 40.2000 262.21 241.66 14.48 39202 40.2010 263.70 244.25 14.47 39203 40.2020 276.73 246.88 14.88 39204 40.2030 254.31 249.53 14.27 39205 40.2040 240.72 252.20 13.82 39206 40.2050 249.23 254.85 14.10 39207 40.2060 256.84 257.46 14.37 39208 40.2070 277.15 260.01 14.93 39209 40.2080 281.74 262.45 15.03 39210 40.2090 280.93 264.76 14.95 39211 40.2100 275.95 266.92 14.90 39212 40.2110 298.85 268.88 15.50 39213 40.2120 281.88 270.63 15.06 39214 40.2130 301.04 272.12 15.51 39215 40.2140 289.53 273.34 15.19 39216 40.2150 308.67 274.27 15.72 39217 40.2160 292.91 274.90 15.28 39218 40.2170 305.51 275.22 15.68 39219 40.2180 277.82 275.23 14.92 39220 40.2190 283.03 274.94 15.04 39221 40.2200 268.10 274.37 14.61 39222 40.2210 289.90 273.54 15.14 39223 40.2220 291.00 272.48 15.24 39224 40.2230 288.98 271.21 15.21 39225 40.2240 303.68 269.76 15.63 39226 40.2250 270.91 268.18 14.73 39227 40.2260 269.00 266.48 14.66 39228 40.2270 265.10 264.72 14.57 39229 40.2280 281.61 262.91 15.11 39230 40.2290 256.91 261.10 14.36 39231 40.2300 241.61 259.30 13.84 39232 40.2310 248.68 257.52 14.12 39233 40.2320 253.54 255.82 14.30 39234 40.2330 267.63 254.17 14.66 39235 40.2340 263.55 252.62 14.60 39236 40.2350 242.21 251.16 13.89 39237 40.2360 239.00 249.81 13.87 39238 40.2370 269.43 248.57 14.69 39239 40.2380 283.26 247.44 15.08 39240 40.2390 260.92 246.43 14.43 39241 40.2400 263.44 245.52 14.49 39242 40.2410 271.55 244.73 14.75 39243 40.2420 264.35 244.04 14.55 39244 40.2430 262.00 243.44 14.49 39245 40.2440 238.63 242.93 13.78 39246 40.2450 229.32 242.50 13.55 39247 40.2460 272.86 242.16 14.74 39248 40.2470 269.49 241.84 14.69 39249 40.2480 251.28 241.56 14.20 39250 40.2490 247.54 241.29 14.08 39251 40.2500 253.33 241.03 14.23 39252 40.2510 253.77 240.75 14.21 39253 40.2520 270.10 240.44 14.70 39254 40.2530 273.68 240.08 14.81 39255 40.2540 247.37 239.65 14.03 39256 40.2550 220.98 239.15 13.29 39257 40.2560 258.77 238.55 14.41 39258 40.2570 268.09 237.86 14.71 39259 40.2580 238.16 237.05 13.79 39260 40.2590 233.23 236.14 13.59 39261 40.2600 266.43 235.13 14.58 39262 40.2610 246.62 233.99 14.08 39263 40.2620 277.81 232.77 14.99 39264 40.2630 255.98 231.45 14.30 39265 40.2640 262.93 230.05 14.56 39266 40.2650 230.97 228.58 13.58 39267 40.2660 233.66 227.06 13.68 39268 40.2670 226.74 225.48 13.47 39269 40.2680 239.07 223.87 13.86 39270 40.2690 241.61 222.24 13.88 39271 40.2700 238.40 220.61 13.85 39272 40.2710 231.10 218.98 13.61 39273 40.2720 211.27 217.36 13.03 39274 40.2730 235.95 215.76 13.76 39275 40.2740 220.49 214.20 13.21 39276 40.2750 238.37 212.66 13.79 39277 40.2760 199.68 211.17 12.65 39278 40.2770 221.56 209.72 13.32 39279 40.2780 226.21 208.32 13.49 39280 40.2790 219.43 206.98 13.30 39281 40.2800 223.50 205.68 13.36 39282 40.2810 217.26 204.43 13.16 39283 40.2820 205.62 203.52 12.85 39284 40.2830 226.02 202.38 13.47 39285 40.2840 215.42 201.29 13.13 39286 40.2850 200.39 200.25 12.60 39287 40.2860 207.65 199.26 12.82 39288 40.2870 183.16 198.32 12.19 39289 40.2880 201.48 197.42 12.67 39290 40.2890 205.49 196.57 12.80 39291 40.2900 214.48 195.76 13.11 39292 40.2910 197.73 194.99 12.54 39293 40.2920 200.54 194.26 12.68 39294 40.2930 198.78 193.57 12.66 39295 40.2940 195.99 192.91 12.53 39296 40.2950 206.89 192.29 12.87 39297 40.2960 198.78 191.69 12.65 39298 40.2970 181.54 191.12 12.04 39299 40.2980 208.42 190.57 12.84 39300 40.2990 200.41 190.05 12.65 39301 40.3000 193.55 189.55 12.47 39302 40.3010 194.21 189.06 12.45 39303 40.3020 188.75 188.59 12.33 39304 40.3030 183.01 188.13 12.10 39305 40.3040 211.82 187.68 13.07 39306 40.3050 184.59 187.24 12.17 39307 40.3060 197.32 186.81 12.56 39308 40.3070 194.14 186.38 12.43 39309 40.3080 193.38 185.96 12.47 39310 40.3090 181.06 185.54 12.06 39311 40.3100 178.78 185.13 12.01 39312 40.3110 181.35 184.72 12.09 39313 40.3120 190.51 184.32 12.31 39314 40.3130 192.69 183.93 12.44 39315 40.3140 199.64 183.54 12.70 39316 40.3150 206.61 183.15 12.89 39317 40.3160 190.48 182.78 12.40 39318 40.3170 172.02 182.41 11.76 39319 40.3180 179.95 182.05 12.00 39320 40.3190 163.15 181.70 11.42 39321 40.3200 185.84 181.36 12.16 39322 40.3210 191.43 181.03 12.45 39323 40.3220 190.91 180.71 12.35 39324 40.3230 204.22 180.40 12.78 39325 40.3240 199.33 180.10 12.66 39326 40.3250 190.81 179.81 12.38 39327 40.3260 184.83 179.53 12.20 39328 40.3270 182.19 179.26 12.08 39329 40.3280 176.58 179.00 11.89 39330 40.3290 175.67 178.75 11.83 39331 40.3300 184.53 178.50 12.12 39332 40.3310 187.43 178.27 12.27 39333 40.3320 183.55 178.05 12.15 39334 40.3330 180.28 177.83 12.02 39335 40.3340 176.85 177.62 11.91 39336 40.3350 181.95 177.42 12.09 39337 40.3360 197.12 177.23 12.57 39338 40.3370 173.58 177.04 11.74 39339 40.3380 176.72 176.87 11.90 39340 40.3390 187.03 176.69 12.20 39341 40.3400 188.40 176.53 12.26 39342 40.3410 180.93 176.37 12.07 39343 40.3420 169.97 176.21 11.71 39344 40.3430 175.71 176.07 11.91 39345 40.3440 168.34 175.93 11.61 39346 40.3450 172.91 175.79 11.80 39347 40.3460 182.80 175.66 12.06 39348 40.3470 180.47 175.53 12.01 39349 40.3480 177.73 175.41 11.97 39350 40.3490 177.88 175.29 11.95 39351 40.3500 179.36 175.17 12.01 39352 40.3510 172.13 175.07 11.71 39353 40.3520 170.57 174.96 11.67 39354 40.3530 184.98 174.86 12.17 39355 40.3540 200.60 174.76 12.65 39356 40.3550 176.91 174.67 11.88 39357 40.3560 172.16 174.58 11.74 39358 40.3570 173.36 174.49 11.81 39359 40.3580 177.20 174.41 11.91 39360 40.3590 170.45 174.33 11.58 39361 40.3600 164.33 174.25 11.48 39362 40.3610 183.07 174.17 12.17 39363 40.3620 186.30 174.10 12.26 39364 40.3630 184.88 174.03 12.10 39365 40.3640 185.84 173.97 12.20 39366 40.3650 181.55 173.90 12.05 39367 40.3660 187.35 173.85 12.20 39368 40.3670 192.48 173.79 12.36 39369 40.3680 175.48 173.73 11.87 39370 40.3690 176.46 173.68 11.88 39371 40.3700 181.89 173.63 12.01 39372 40.3710 189.46 173.58 12.35 39373 40.3720 184.46 173.54 12.18 39374 40.3730 157.50 173.49 11.16 39375 40.3740 173.18 173.45 11.74 39376 40.3750 187.45 173.42 12.25 39377 40.3760 171.29 173.38 11.72 39378 40.3770 176.64 173.35 11.87 39379 40.3780 179.66 173.32 12.00 39380 40.3790 180.95 173.29 12.03 39381 40.3800 183.96 173.26 12.13 39382 40.3810 175.32 173.24 11.86 39383 40.3820 176.96 173.21 11.94 39384 40.3830 177.50 173.20 11.94 39385 40.3840 178.70 173.18 11.99 39386 40.3850 175.37 173.16 11.82 39387 40.3860 180.65 173.15 12.11 39388 40.3870 169.34 173.14 11.72 39389 40.3880 159.69 173.13 11.31 39390 40.3890 158.59 173.12 11.21 39391 40.3900 161.64 173.12 11.40 39392 40.3910 168.17 173.12 11.64 39393 40.3920 178.49 173.12 12.01 39394 40.3930 180.64 173.12 12.04 39395 40.3940 175.37 173.12 11.83 39396 40.3950 184.53 173.13 12.04 39397 40.3960 180.07 173.14 11.99 39398 40.3970 181.41 173.15 12.03 39399 40.3980 185.71 173.17 12.20 39400 40.3990 190.97 173.18 12.28 39401 40.4000 179.44 173.20 11.90 39402 40.4010 196.15 173.22 12.53 39403 40.4020 176.73 173.25 11.89 39404 40.4030 174.20 173.27 11.81 39405 40.4040 182.91 173.30 12.13 39406 40.4050 182.15 173.33 12.05 39407 40.4060 176.40 173.36 11.84 39408 40.4070 176.58 173.39 11.78 39409 40.4080 164.81 173.40 11.39 39410 40.4090 172.31 173.44 11.72 39411 40.4100 187.64 173.48 12.32 39412 40.4110 184.83 173.53 12.23 39413 40.4120 156.89 173.57 11.14 39414 40.4130 147.88 173.62 10.86 39415 40.4140 148.43 173.67 10.87 39416 40.4150 183.65 173.73 12.09 39417 40.4160 173.43 173.78 11.72 39418 40.4170 169.12 173.85 11.55 39419 40.4180 170.21 173.91 11.62 39420 40.4190 178.16 173.98 11.93 39421 40.4200 188.32 174.05 12.32 39422 40.4210 188.56 174.13 12.27 39423 40.4220 170.89 174.21 11.62 39424 40.4230 173.98 174.30 11.85 39425 40.4240 188.13 174.40 12.27 39426 40.4250 189.99 174.50 12.34 39427 40.4260 175.14 174.60 11.84 39428 40.4270 183.11 174.71 12.10 39429 40.4280 168.81 174.83 11.57 39430 40.4290 174.65 174.96 11.83 39431 40.4300 170.51 175.09 11.73 39432 40.4310 177.13 175.24 11.90 39433 40.4320 186.14 175.38 12.19 39434 40.4330 186.71 175.54 12.24 39435 40.4340 179.07 175.71 11.99 39436 40.4350 205.83 175.89 12.88 39437 40.4360 187.11 176.07 12.26 39438 40.4370 182.94 176.27 12.08 39439 40.4380 172.67 176.48 11.73 39440 40.4390 177.70 176.69 11.90 39441 40.4400 157.86 176.92 11.24 39442 40.4410 167.87 177.16 11.57 39443 40.4420 178.72 177.42 11.93 39444 40.4430 186.74 177.68 12.26 39445 40.4440 193.59 177.96 12.42 39446 40.4450 169.78 178.24 11.57 39447 40.4460 162.88 178.54 11.43 39448 40.4470 175.68 178.85 11.87 39449 40.4480 198.99 179.18 12.59 39450 40.4490 199.77 179.51 12.69 39451 40.4500 167.39 179.84 11.56 39452 40.4510 178.78 180.19 11.89 39453 40.4520 182.52 180.57 12.08 39454 40.4530 180.75 180.92 12.03 39455 40.4540 187.57 181.27 12.29 39456 40.4550 176.71 181.62 11.90 39457 40.4560 186.52 181.96 12.25 39458 40.4570 194.03 182.30 12.50 39459 40.4580 174.20 182.62 11.77 39460 40.4590 181.44 182.91 11.99 39461 40.4600 173.38 183.19 11.81 39462 40.4610 173.55 183.44 11.81 39463 40.4620 174.39 183.66 11.79 39464 40.4630 177.16 183.85 11.88 39465 40.4640 179.24 184.00 11.91 39466 40.4650 176.18 184.12 11.89 39467 40.4660 177.13 184.20 11.91 39468 40.4670 185.16 184.24 12.20 39469 40.4680 174.77 184.24 11.84 39470 40.4690 172.06 184.21 11.69 39471 40.4700 177.67 184.14 11.93 39472 40.4710 175.21 184.05 11.82 39473 40.4720 168.45 183.93 11.58 39474 40.4730 208.25 183.79 12.80 39475 40.4740 175.51 183.63 11.88 39476 40.4750 182.71 183.46 12.14 39477 40.4760 186.28 183.27 12.22 39478 40.4770 180.21 183.09 12.05 39479 40.4780 180.87 182.90 12.05 39480 40.4790 198.31 182.71 12.60 39481 40.4800 173.81 182.53 11.83 39482 40.4810 178.72 182.35 11.95 39483 40.4820 171.70 182.18 11.68 39484 40.4830 189.65 182.03 12.30 39485 40.4840 183.32 181.88 12.06 39486 40.4850 188.52 181.75 12.25 39487 40.4860 186.73 181.63 12.25 39488 40.4870 185.20 181.53 12.20 39489 40.4880 173.82 181.44 11.78 39490 40.4890 179.52 181.36 11.91 39491 40.4900 191.28 181.30 12.31 39492 40.4910 202.35 181.26 12.71 39493 40.4920 168.64 181.23 11.58 39494 40.4930 178.44 181.22 12.00 39495 40.4940 200.61 181.22 12.70 39496 40.4950 179.43 181.24 11.99 39497 40.4960 171.88 181.28 11.77 39498 40.4970 183.62 181.33 12.13 39499 40.4980 188.31 181.39 12.35 39500 40.4990 185.90 181.47 12.20 39501 40.5000 181.92 181.57 12.06 39502 40.5010 177.94 181.68 11.87 39503 40.5020 159.74 181.80 11.32 39504 40.5030 188.35 181.94 12.26 39505 40.5040 194.26 182.10 12.49 39506 40.5050 189.82 182.26 12.34 39507 40.5060 184.13 182.45 12.19 39508 40.5070 182.79 182.65 12.10 39509 40.5080 191.91 182.87 12.45 39510 40.5090 174.77 183.10 11.84 39511 40.5100 178.13 183.35 12.00 39512 40.5110 172.55 183.61 11.76 39513 40.5120 185.53 183.89 12.16 39514 40.5130 202.80 184.19 12.79 39515 40.5140 183.18 184.51 12.10 39516 40.5150 190.20 184.84 12.31 39517 40.5160 201.47 185.20 12.72 39518 40.5170 169.52 185.57 11.67 39519 40.5180 192.24 185.96 12.43 39520 40.5190 194.80 186.38 12.48 39521 40.5200 204.93 186.81 12.82 39522 40.5210 187.71 187.27 12.24 39523 40.5220 187.72 187.75 12.21 39524 40.5230 178.16 188.26 11.91 39525 40.5240 194.15 188.79 12.50 39526 40.5250 179.09 189.35 11.97 39527 40.5260 188.97 189.93 12.32 39528 40.5270 197.46 190.54 12.58 39529 40.5280 188.63 191.19 12.24 39530 40.5290 182.28 191.87 12.08 39531 40.5300 193.07 192.58 12.42 39532 40.5310 195.66 193.33 12.55 39533 40.5320 200.62 194.12 12.69 39534 40.5330 199.40 194.94 12.60 39535 40.5340 192.47 195.81 12.35 39536 40.5350 201.32 196.72 12.68 39537 40.5360 206.32 197.68 12.78 39538 40.5370 192.29 198.69 12.39 39539 40.5380 205.60 199.75 12.84 39540 40.5390 202.86 200.87 12.76 39541 40.5400 217.82 202.04 13.26 39542 40.5410 220.36 203.28 13.31 39543 40.5420 214.34 204.58 13.16 39544 40.5430 200.99 205.95 12.73 39545 40.5440 197.94 207.39 12.55 39546 40.5450 196.98 208.91 12.61 39547 40.5460 209.74 210.52 12.96 39548 40.5470 228.07 212.22 13.46 39549 40.5480 223.31 214.00 13.34 39550 40.5490 225.30 215.88 13.42 39551 40.5500 212.32 217.87 13.07 39552 40.5510 207.39 219.96 12.88 39553 40.5520 218.16 222.17 13.26 39554 40.5530 238.63 224.51 13.84 39555 40.5540 217.17 226.96 13.14 39556 40.5550 228.83 229.55 13.55 39557 40.5560 215.30 232.28 13.15 39558 40.5570 226.73 235.15 13.47 39559 40.5580 238.95 238.18 13.86 39560 40.5590 228.00 241.37 13.50 39561 40.5600 220.73 244.73 13.24 39562 40.5610 238.40 248.23 13.80 39563 40.5620 243.74 251.91 13.98 39564 40.5630 245.38 255.77 14.02 39565 40.5640 253.19 259.78 14.24 39566 40.5650 256.58 263.96 14.27 39567 40.5660 270.38 268.33 14.68 39568 40.5670 280.40 272.81 14.92 39569 40.5680 289.81 277.45 15.24 39570 40.5690 296.65 282.20 15.37 39571 40.5700 277.47 287.03 14.85 39572 40.5710 301.44 291.94 15.52 39573 40.5720 284.97 296.88 15.08 39574 40.5730 287.59 301.80 15.17 39575 40.5740 301.98 306.66 15.54 39576 40.5750 295.31 311.39 15.33 39577 40.5760 309.49 315.92 15.69 39578 40.5770 306.85 320.21 15.63 39579 40.5780 309.53 324.08 15.72 39580 40.5790 306.14 327.62 15.61 39581 40.5800 305.06 330.72 15.60 39582 40.5810 321.60 333.26 15.98 39583 40.5820 324.18 335.20 16.01 39584 40.5830 344.79 336.51 16.59 39585 40.5840 344.47 337.13 16.56 39586 40.5850 312.98 337.07 15.85 39587 40.5860 319.16 336.31 15.99 39588 40.5870 324.64 334.88 16.11 39589 40.5880 303.53 332.82 15.58 39590 40.5890 299.53 330.16 15.41 39591 40.5900 318.92 326.97 15.92 39592 40.5910 292.18 323.33 15.28 39593 40.5920 304.45 319.29 15.63 39594 40.5930 314.75 314.93 15.90 39595 40.5940 270.39 310.32 14.62 39596 40.5950 283.68 305.54 15.00 39597 40.5960 290.46 300.64 15.29 39598 40.5970 283.25 295.71 15.07 39599 40.5980 280.28 290.75 15.01 39600 40.5990 276.67 285.83 14.92 39601 40.6000 255.77 281.00 14.35 39602 40.6010 260.35 276.24 14.44 39603 40.6020 272.85 271.63 14.80 39604 40.6030 239.58 267.17 13.85 39605 40.6040 253.01 262.85 14.27 39606 40.6050 241.61 258.70 13.87 39607 40.6060 241.81 254.73 13.90 39608 40.6070 235.13 250.91 13.68 39609 40.6080 237.38 247.26 13.79 39610 40.6090 241.49 243.79 13.91 39611 40.6100 225.22 240.49 13.39 39612 40.6110 215.99 237.35 13.13 39613 40.6120 227.53 234.36 13.49 39614 40.6130 215.73 231.54 13.13 39615 40.6140 221.22 228.85 13.27 39616 40.6150 231.31 226.29 13.66 39617 40.6160 220.93 223.87 13.27 39618 40.6170 214.82 221.58 13.05 39619 40.6180 221.85 219.40 13.32 39620 40.6190 219.73 217.35 13.31 39621 40.6200 212.95 215.39 13.05 39622 40.6210 205.64 213.53 12.84 39623 40.6220 218.42 211.77 13.23 39624 40.6230 223.64 210.11 13.40 39625 40.6240 190.03 208.52 12.35 39626 40.6250 206.16 207.03 12.85 39627 40.6260 231.89 205.60 13.65 39628 40.6270 210.82 204.25 12.99 39629 40.6280 201.43 202.97 12.73 39630 40.6290 197.30 201.74 12.55 39631 40.6300 182.46 200.59 12.06 39632 40.6310 174.05 199.49 11.80 39633 40.6320 199.30 198.44 12.68 39634 40.6330 194.42 197.44 12.48 39635 40.6340 198.12 196.50 12.61 39636 40.6350 207.31 195.60 12.88 39637 40.6360 206.09 194.74 12.83 39638 40.6370 187.44 193.92 12.26 39639 40.6380 210.49 193.15 12.97 39640 40.6390 208.88 192.41 12.93 39641 40.6400 181.42 191.70 12.06 39642 40.6410 190.55 191.03 12.34 39643 40.6420 170.65 190.39 11.71 39644 40.6430 195.56 189.78 12.48 39645 40.6440 198.90 189.20 12.63 39646 40.6450 188.66 188.65 12.29 39647 40.6460 197.16 188.12 12.57 39648 40.6470 179.51 187.62 12.00 39649 40.6480 202.98 187.14 12.74 39650 40.6490 197.82 186.69 12.60 39651 40.6500 183.83 186.25 12.14 39652 40.6510 182.60 185.84 12.07 39653 40.6520 190.43 185.45 12.37 39654 40.6530 189.30 185.07 12.25 39655 40.6540 204.19 184.71 12.77 39656 40.6550 184.47 184.38 12.14 39657 40.6560 193.51 184.05 12.44 39658 40.6570 191.73 183.75 12.41 39659 40.6580 198.48 183.46 12.57 39660 40.6590 197.33 183.19 12.56 39661 40.6600 183.03 182.93 12.06 39662 40.6610 188.60 182.68 12.28 39663 40.6620 199.24 182.45 12.64 39664 40.6630 203.59 182.24 12.72 39665 40.6640 182.14 182.03 11.99 39666 40.6650 190.60 181.84 12.38 39667 40.6660 206.47 181.66 12.87 39668 40.6670 187.88 181.49 12.21 39669 40.6680 189.68 181.34 12.37 39670 40.6690 191.93 181.20 12.42 39671 40.6700 172.58 181.06 11.76 39672 40.6710 176.83 180.94 11.86 39673 40.6720 203.55 180.83 12.74 39674 40.6730 198.49 180.74 12.57 39675 40.6740 182.66 180.65 12.06 39676 40.6750 163.40 180.57 11.44 39677 40.6760 169.24 180.51 11.62 39678 40.6770 175.80 180.45 11.85 39679 40.6780 188.33 180.41 12.28 39680 40.6790 177.21 180.37 11.91 39681 40.6800 182.02 180.35 12.02 39682 40.6810 188.81 180.34 12.20 39683 40.6820 174.64 180.34 11.80 39684 40.6830 198.38 180.35 12.63 39685 40.6840 190.25 180.38 12.34 39686 40.6850 170.10 180.41 11.61 39687 40.6860 187.89 180.46 12.22 39688 40.6870 164.76 180.53 11.48 39689 40.6880 179.55 180.60 11.99 39690 40.6890 198.90 180.69 12.60 39691 40.6900 199.04 180.79 12.59 39692 40.6910 192.43 180.91 12.44 39693 40.6920 197.05 181.04 12.58 39694 40.6930 183.24 181.19 12.09 39695 40.6940 180.13 181.35 12.02 39696 40.6950 182.79 181.52 12.16 39697 40.6960 175.39 181.71 11.86 39698 40.6970 176.80 181.91 11.84 39699 40.6980 198.51 182.12 12.60 39700 40.6990 199.07 182.21 12.59 39701 40.7000 192.33 182.45 12.45 39702 40.7010 177.99 182.68 12.03 39703 40.7020 172.42 182.93 11.76 39704 40.7030 190.34 183.17 12.31 39705 40.7040 198.57 183.41 12.60 39706 40.7050 215.44 183.65 13.20 39707 40.7060 174.88 183.89 11.84 39708 40.7070 167.40 184.10 11.63 39709 40.7080 178.57 184.30 12.01 39710 40.7090 194.25 184.48 12.45 39711 40.7100 190.06 184.64 12.25 39712 40.7110 191.31 184.77 12.36 39713 40.7120 188.65 184.87 12.31 39714 40.7130 200.88 184.93 12.71 39715 40.7140 180.99 184.97 12.04 39716 40.7150 181.91 184.97 12.09 39717 40.7160 166.02 184.94 11.48 39718 40.7170 197.84 184.88 12.62 39719 40.7180 183.08 184.80 12.15 39720 40.7190 172.49 184.69 11.76 39721 40.7200 183.73 184.56 12.13 39722 40.7210 189.91 184.42 12.39 39723 40.7220 191.25 184.27 12.43 39724 40.7230 181.50 184.11 12.04 39725 40.7240 197.86 183.94 12.57 39726 40.7250 192.83 183.78 12.44 39727 40.7260 196.91 183.62 12.56 39728 40.7270 197.00 183.46 12.56 39729 40.7280 194.83 183.32 12.44 39730 40.7290 183.86 183.19 12.12 39731 40.7300 186.83 183.07 12.27 39732 40.7310 191.61 182.96 12.37 39733 40.7320 194.28 182.87 12.45 39734 40.7330 185.82 182.79 12.20 39735 40.7340 185.30 182.73 12.17 39736 40.7350 195.98 182.69 12.50 39737 40.7360 188.35 182.67 12.30 39738 40.7370 200.09 182.67 12.65 39739 40.7380 187.46 182.68 12.25 39740 40.7390 175.97 182.71 11.87 39741 40.7400 193.03 182.76 12.50 39742 40.7410 182.57 182.83 12.16 39743 40.7420 186.52 182.92 12.16 39744 40.7430 157.65 183.02 11.20 39745 40.7440 167.30 183.15 11.57 39746 40.7450 202.09 183.29 12.82 39747 40.7460 172.70 183.46 11.76 39748 40.7470 166.44 183.64 11.52 39749 40.7480 187.41 183.84 12.27 39750 40.7490 181.89 184.06 12.08 39751 40.7500 188.89 184.30 12.27 39752 40.7510 193.18 184.56 12.44 39753 40.7520 179.03 184.85 11.92 39754 40.7530 184.51 185.15 12.20 39755 40.7540 198.44 185.48 12.60 39756 40.7550 194.25 185.83 12.47 39757 40.7560 194.78 186.20 12.44 39758 40.7570 194.34 186.59 12.44 39759 40.7580 193.45 187.01 12.43 39760 40.7590 172.86 187.46 11.73 39761 40.7600 170.81 187.93 11.67 39762 40.7610 195.94 188.43 12.49 39763 40.7620 207.29 188.96 12.89 39764 40.7630 178.73 189.52 11.96 39765 40.7640 194.37 190.10 12.46 39766 40.7650 183.24 190.72 12.09 39767 40.7660 183.79 191.37 12.12 39768 40.7670 196.03 192.05 12.64 39769 40.7680 197.77 192.77 12.63 39770 40.7690 200.82 193.52 12.72 39771 40.7700 192.62 194.31 12.43 39772 40.7710 193.83 195.13 12.41 39773 40.7720 190.93 195.98 12.31 39774 40.7730 209.80 196.88 12.96 39775 40.7740 200.37 197.80 12.68 39776 40.7750 196.00 198.77 12.50 39777 40.7760 197.21 199.77 12.58 39778 40.7770 195.05 200.88 12.47 39779 40.7780 182.84 201.93 12.10 39780 40.7790 210.14 203.02 12.99 39781 40.7800 218.77 204.14 13.21 39782 40.7810 200.96 205.27 12.66 39783 40.7820 219.66 206.27 13.31 39784 40.7830 227.31 207.44 13.46 39785 40.7840 202.91 208.62 12.70 39786 40.7850 209.97 209.81 12.96 39787 40.7860 203.12 211.00 12.76 39788 40.7870 230.15 212.19 13.53 39789 40.7880 207.98 213.38 12.84 39790 40.7890 212.31 214.58 13.03 39791 40.7900 228.54 215.76 13.53 39792 40.7910 191.77 216.95 12.34 39793 40.7920 219.43 218.14 13.27 39794 40.7930 236.06 219.33 13.75 39795 40.7940 227.90 220.55 13.47 39796 40.7950 214.43 221.78 13.12 39797 40.7960 221.77 223.05 13.33 39798 40.7970 215.97 224.35 13.10 39799 40.7980 229.05 225.71 13.53 39800 40.7990 223.06 227.12 13.40 39801 40.8000 217.74 228.61 13.24 39802 40.8010 235.89 230.18 13.73 39803 40.8020 238.95 231.84 13.80 39804 40.8030 240.26 233.62 13.84 39805 40.8040 239.41 235.50 13.85 39806 40.8050 257.82 237.51 14.33 39807 40.8060 230.48 239.65 13.57 39808 40.8070 234.23 241.93 13.66 39809 40.8080 243.23 244.37 14.00 39810 40.8090 243.84 246.95 14.03 39811 40.8100 242.73 249.71 13.96 39812 40.8110 249.88 252.64 14.17 39813 40.8120 242.92 255.72 13.95 39814 40.8130 253.53 258.99 14.29 39815 40.8140 262.61 262.44 14.50 39816 40.8150 264.54 266.06 14.60 39817 40.8160 271.72 269.87 14.74 39818 40.8170 282.38 273.84 15.02 39819 40.8180 270.43 277.96 14.70 39820 40.8190 283.16 282.24 15.07 39821 40.8200 283.80 286.65 15.08 39822 40.8210 300.06 291.16 15.52 39823 40.8220 291.95 295.77 15.23 39824 40.8230 309.47 300.45 15.67 39825 40.8240 318.68 305.12 15.92 39826 40.8250 316.77 309.79 15.91 39827 40.8260 324.45 314.37 16.04 39828 40.8270 328.22 318.82 16.12 39829 40.8280 327.79 323.09 16.16 39830 40.8290 339.67 327.11 16.47 39831 40.8300 341.16 330.82 16.52 39832 40.8310 369.45 334.14 17.26 39833 40.8320 349.36 337.03 16.71 39834 40.8330 326.79 339.40 16.16 39835 40.8340 344.73 341.23 16.66 39836 40.8350 354.68 342.46 16.90 39837 40.8360 336.11 343.07 16.45 39838 40.8370 352.04 343.03 16.87 39839 40.8380 378.84 342.36 17.48 39840 40.8390 347.69 341.05 16.67 39841 40.8400 359.37 339.14 17.00 39842 40.8410 349.02 336.66 16.84 39843 40.8420 355.00 333.59 16.89 39844 40.8430 338.34 330.14 16.43 39845 40.8440 343.25 326.26 16.58 39846 40.8450 343.70 322.06 16.58 39847 40.8460 322.88 317.67 16.12 39848 40.8470 303.75 312.99 15.57 39849 40.8480 272.26 308.18 14.79 39850 40.8490 292.44 303.26 15.26 39851 40.8500 280.30 298.29 14.99 39852 40.8510 281.76 293.31 14.99 39853 40.8520 282.40 288.40 15.05 39854 40.8530 271.88 283.55 14.73 39855 40.8540 275.10 278.79 14.86 39856 40.8550 284.57 274.17 15.16 39857 40.8560 274.81 269.67 14.86 39858 40.8570 264.49 265.31 14.56 39859 40.8580 251.15 261.11 14.20 39860 40.8590 255.56 257.07 14.29 39861 40.8600 264.41 253.20 14.54 39862 40.8610 235.06 249.50 13.72 39863 40.8620 235.45 245.96 13.73 39864 40.8630 252.89 242.57 14.26 39865 40.8640 238.83 239.35 13.79 39866 40.8650 237.56 236.26 13.81 39867 40.8660 252.36 233.34 14.24 39868 40.8670 236.43 230.56 13.77 39869 40.8680 238.34 227.91 13.79 39870 40.8690 219.00 225.39 13.23 39871 40.8700 227.83 223.00 13.45 39872 40.8710 242.17 220.72 13.92 39873 40.8720 205.84 218.54 12.83 39874 40.8730 219.42 216.49 13.20 39875 40.8740 228.20 214.53 13.48 39876 40.8750 220.03 212.66 13.25 39877 40.8760 207.51 210.89 12.89 39878 40.8770 214.87 209.20 13.17 39879 40.8780 201.22 207.59 12.73 39880 40.8790 215.18 206.06 13.13 39881 40.8800 223.71 204.59 13.37 39882 40.8810 200.31 203.20 12.69 39883 40.8820 209.14 201.88 12.98 39884 40.8830 194.26 200.61 12.46 39885 40.8840 195.76 199.40 12.44 39886 40.8850 202.31 198.25 12.68 39887 40.8860 197.19 197.14 12.54 39888 40.8870 193.30 196.09 12.38 39889 40.8880 213.74 195.09 13.08 39890 40.8890 210.08 194.13 12.97 39891 40.8900 182.52 193.22 12.09 39892 40.8910 186.93 192.34 12.23 39893 40.8920 210.96 191.51 12.96 39894 40.8930 191.05 190.70 12.35 39895 40.8940 190.91 189.94 12.27 39896 40.8950 206.61 189.21 12.85 39897 40.8960 189.55 188.51 12.36 39898 40.8970 205.48 187.84 12.89 39899 40.8980 181.20 187.19 12.05 39900 40.8990 185.29 186.58 12.16 39901 40.9000 198.45 185.98 12.64 39902 40.9010 188.43 185.42 12.30 39903 40.9020 194.19 184.88 12.52 39904 40.9030 198.62 184.36 12.66 39905 40.9040 181.57 183.86 12.07 39906 40.9050 191.53 183.38 12.43 39907 40.9060 189.92 182.92 12.39 39908 40.9070 181.59 182.48 12.04 39909 40.9080 187.93 182.06 12.24 39910 40.9090 191.00 181.65 12.34 39911 40.9100 191.25 181.26 12.39 39912 40.9110 187.81 180.89 12.30 39913 40.9120 177.85 180.53 11.97 39914 40.9130 185.46 180.18 12.21 39915 40.9140 169.64 179.85 11.63 39916 40.9150 182.13 179.53 12.09 39917 40.9160 198.34 179.22 12.67 39918 40.9170 190.50 178.92 12.37 39919 40.9180 168.38 178.64 11.58 39920 40.9190 176.78 178.36 11.81 39921 40.9200 177.90 178.10 11.91 39922 40.9210 191.14 177.84 12.37 39923 40.9220 188.02 177.59 12.24 39924 40.9230 173.44 177.35 11.71 39925 40.9240 169.75 177.12 11.57 39926 40.9250 190.23 176.89 12.38 39927 40.9260 170.30 176.67 11.65 39928 40.9270 180.35 176.46 12.02 39929 40.9280 190.10 176.26 12.35 39930 40.9290 185.56 176.06 12.16 39931 40.9300 190.76 175.87 12.31 39932 40.9310 187.40 175.69 12.28 39933 40.9320 168.90 175.51 11.71 39934 40.9330 173.41 175.35 11.85 39935 40.9340 173.14 175.18 11.84 39936 40.9350 185.36 175.02 12.20 39937 40.9360 180.35 174.87 11.92 39938 40.9370 159.77 174.73 11.24 39939 40.9380 157.96 174.59 11.24 39940 40.9390 181.41 174.47 12.12 39941 40.9400 181.81 174.35 12.04 39942 40.9410 158.71 174.23 11.20 39943 40.9420 164.10 174.11 11.51 39944 40.9430 188.56 174.00 12.29 39945 40.9440 193.50 173.90 12.47 39946 40.9450 182.98 173.80 11.98 39947 40.9460 171.11 173.70 11.66 39948 40.9470 186.06 173.61 12.15 39949 40.9480 177.27 173.52 11.91 39950 40.9490 179.32 173.44 11.97 39951 40.9500 184.34 173.36 12.12 39952 40.9510 191.28 173.28 12.35 39953 40.9520 181.04 173.21 12.04 39954 40.9530 173.69 173.13 11.81 39955 40.9540 175.53 173.06 11.90 39956 40.9550 185.00 172.99 12.19 39957 40.9560 186.29 172.92 12.28 39958 40.9570 165.66 172.84 11.56 39959 40.9580 164.13 172.77 11.52 39960 40.9590 174.88 172.70 11.87 39961 40.9600 184.50 172.63 12.20 39962 40.9610 171.51 172.55 11.75 39963 40.9620 178.87 172.48 11.94 39964 40.9630 183.74 172.40 12.14 39965 40.9640 170.70 172.33 11.67 39966 40.9650 171.53 172.26 11.65 39967 40.9660 166.43 172.18 11.54 39968 40.9670 174.81 172.11 11.81 39969 40.9680 178.73 172.04 11.94 39970 40.9690 183.29 171.97 12.12 39971 40.9700 169.52 171.90 11.64 39972 40.9710 173.25 171.84 11.78 39973 40.9720 173.68 171.78 11.78 39974 40.9730 178.42 171.72 11.97 39975 40.9740 170.59 171.67 11.66 39976 40.9750 186.16 171.62 12.23 39977 40.9760 167.63 171.61 11.61 39978 40.9770 181.91 171.57 12.12 39979 40.9780 160.80 171.54 11.29 39980 40.9790 174.55 171.51 11.79 39981 40.9800 165.63 171.49 11.56 39982 40.9810 182.04 171.47 12.05 39983 40.9820 180.17 171.46 11.97 39984 40.9830 179.15 171.45 11.95 39985 40.9840 165.10 171.46 11.48 39986 40.9850 164.95 171.47 11.46 39987 40.9860 167.81 171.48 11.62 39988 40.9870 165.66 171.51 11.48 39989 40.9880 163.96 171.54 11.44 39990 40.9890 195.84 171.58 12.47 39991 40.9900 166.43 171.62 11.46 39992 40.9910 193.60 171.68 12.45 39993 40.9920 187.32 171.74 12.22 39994 40.9930 187.18 171.82 12.17 39995 40.9940 183.05 171.90 12.06 39996 40.9950 174.88 171.99 11.81 39997 40.9960 171.84 172.09 11.72 39998 40.9970 169.17 172.20 11.67 39999 40.9980 180.76 172.32 12.08 40000 40.9990 159.82 172.46 11.29 40001 41.0000 177.93 172.60 11.94 40002 41.0010 169.94 172.76 11.69 40003 41.0020 159.46 172.93 11.18 40004 41.0030 173.81 173.11 11.82 40005 41.0040 177.20 173.30 11.94 40006 41.0050 176.79 173.51 11.89 40007 41.0060 165.59 173.74 11.53 40008 41.0070 169.52 173.98 11.66 40009 41.0080 168.22 174.23 11.58 40010 41.0090 167.90 174.50 11.52 40011 41.0100 190.61 174.78 12.32 40012 41.0110 172.20 175.08 11.81 40013 41.0120 158.52 175.40 11.27 40014 41.0130 178.48 175.73 11.95 40015 41.0140 176.98 176.08 11.93 40016 41.0150 197.42 176.44 12.57 40017 41.0160 186.80 176.80 12.24 40018 41.0170 196.24 177.20 12.56 40019 41.0180 195.36 177.61 12.49 40020 41.0190 187.37 178.03 12.20 40021 41.0200 188.21 178.46 12.35 40022 41.0210 181.88 178.90 12.08 40023 41.0220 168.27 179.34 11.65 40024 41.0230 181.71 179.78 12.16 40025 41.0240 181.50 180.23 12.07 40026 41.0250 185.49 180.66 12.13 40027 41.0260 184.73 181.09 12.17 40028 41.0270 189.88 181.50 12.30 40029 41.0280 165.89 181.89 11.47 40030 41.0290 169.89 182.25 11.67 40031 41.0300 198.76 182.58 12.66 40032 41.0310 208.29 182.87 12.93 40033 41.0320 205.87 183.12 12.88 40034 41.0330 198.46 183.31 12.62 40035 41.0340 194.74 183.46 12.54 40036 41.0350 166.63 183.54 11.47 40037 41.0360 189.92 183.57 12.27 40038 41.0370 175.30 183.54 11.85 40039 41.0380 172.63 183.45 11.72 40040 41.0390 204.26 183.30 12.75 40041 41.0400 196.69 183.10 12.49 40042 41.0410 195.47 182.84 12.50 40043 41.0420 168.84 182.54 11.52 40044 41.0430 187.62 182.19 12.28 40045 41.0440 179.87 181.80 12.01 40046 41.0450 169.33 181.39 11.58 40047 41.0460 181.37 180.94 12.02 40048 41.0470 179.42 180.48 12.00 40049 41.0480 190.11 180.00 12.40 40050 41.0490 183.14 179.51 12.17 40051 41.0500 197.46 179.02 12.63 40052 41.0510 186.86 178.53 12.28 40053 41.0520 167.84 178.03 11.62 40054 41.0530 159.48 177.55 11.27 40055 41.0540 165.42 177.07 11.53 40056 41.0550 166.77 176.60 11.58 40057 41.0560 178.84 176.15 11.96 40058 41.0570 187.95 175.71 12.30 40059 41.0580 169.59 175.28 11.71 40060 41.0590 166.66 174.87 11.57 40061 41.0600 167.11 174.48 11.51 40062 41.0610 179.52 174.10 12.05 40063 41.0620 168.35 173.74 11.61 40064 41.0630 169.30 173.39 11.58 40065 41.0640 164.99 173.06 11.50 40066 41.0650 166.68 172.74 11.57 40067 41.0660 173.02 172.45 11.73 40068 41.0670 201.04 172.16 12.73 40069 41.0680 177.59 171.89 11.95 40070 41.0690 179.64 171.63 11.98 40071 41.0700 180.64 171.39 11.98 40072 41.0710 188.09 171.16 12.26 40073 41.0720 164.51 170.94 11.48 40074 41.0730 169.67 170.73 11.69 40075 41.0740 163.19 170.53 11.42 40076 41.0750 182.57 170.34 12.08 40077 41.0760 170.95 170.16 11.66 40078 41.0770 168.28 169.99 11.62 40079 41.0780 155.73 169.83 11.17 40080 41.0790 182.09 169.68 12.05 40081 41.0800 187.62 169.54 12.27 40082 41.0810 166.95 169.40 11.56 40083 41.0820 186.26 169.27 12.16 40084 41.0830 181.73 169.14 12.03 40085 41.0840 185.81 169.02 12.12 40086 41.0850 171.40 168.91 11.72 40087 41.0860 176.57 168.80 11.86 40088 41.0870 178.84 168.70 11.96 40089 41.0880 183.58 168.60 12.10 40090 41.0890 174.79 168.51 11.80 40091 41.0900 178.57 168.41 11.97 40092 41.0910 183.66 168.11 12.19 40093 41.0920 191.69 168.02 12.42 40094 41.0930 170.19 167.94 11.62 40095 41.0940 179.26 167.86 11.96 40096 41.0950 158.30 167.78 11.28 40097 41.0960 173.75 167.70 11.78 40098 41.0970 172.42 167.61 11.69 40099 41.0980 175.20 167.53 11.92 40100 41.0990 168.39 167.45 11.68 40101 41.1000 151.33 167.37 10.96 40102 41.1010 165.70 167.29 11.50 40103 41.1020 167.58 167.20 11.60 40104 41.1030 176.45 167.12 11.89 40105 41.1040 159.34 167.04 11.29 40106 41.1050 171.58 166.96 11.70 40107 41.1060 173.85 166.88 11.83 40108 41.1070 170.98 166.80 11.70 40109 41.1080 168.57 166.73 11.58 40110 41.1090 182.33 166.66 12.08 40111 41.1100 181.30 166.58 12.05 40112 41.1110 149.47 166.51 10.99 40113 41.1120 147.84 166.44 10.81 40114 41.1130 173.16 166.38 11.73 40115 41.1140 157.05 166.32 11.24 40116 41.1150 157.94 166.26 11.27 40117 41.1160 168.67 166.20 11.62 40118 41.1170 166.11 166.15 11.59 40119 41.1180 161.72 166.10 11.41 40120 41.1190 176.91 166.05 11.90 40121 41.1200 165.42 166.01 11.53 40122 41.1210 139.59 165.96 10.54 40123 41.1220 159.04 165.93 11.21 40124 41.1230 158.27 165.89 11.24 40125 41.1240 156.21 165.86 11.10 40126 41.1250 153.28 165.83 11.04 40127 41.1260 165.76 165.80 11.50 40128 41.1270 165.84 165.78 11.50 40129 41.1280 179.15 165.76 12.03 40130 41.1290 150.66 165.73 11.00 40131 41.1300 150.36 165.71 10.94 40132 41.1310 163.55 165.70 11.48 40133 41.1320 160.89 165.68 11.29 40134 41.1330 168.79 165.66 11.65 40135 41.1340 162.11 165.64 11.38 40136 41.1350 160.49 165.62 11.27 40137 41.1360 159.33 165.60 11.30 40138 41.1370 170.50 165.58 11.72 40139 41.1380 163.77 165.56 11.45 40140 41.1390 163.47 165.53 11.44 40141 41.1400 165.92 165.51 11.51 40142 41.1410 156.84 165.48 11.17 40143 41.1420 168.73 165.45 11.58 40144 41.1430 167.54 165.41 11.56 40145 41.1440 150.72 165.38 11.00 40146 41.1450 172.41 165.35 11.75 40147 41.1460 175.00 165.31 11.88 40148 41.1470 158.57 165.27 11.25 40149 41.1480 163.52 165.23 11.49 40150 41.1490 179.76 165.19 12.01 40151 41.1500 164.92 165.15 11.54 40152 41.1510 158.99 165.10 11.34 40153 41.1520 167.11 165.06 11.64 40154 41.1530 167.17 165.02 11.63 40155 41.1540 164.36 164.98 11.47 40156 41.1550 162.39 164.94 11.40 40157 41.1560 188.94 164.90 12.30 40158 41.1570 163.49 164.86 11.37 40159 41.1580 165.24 164.82 11.52 40160 41.1590 168.40 164.78 11.65 40161 41.1600 161.73 164.75 11.40 40162 41.1610 148.49 164.71 10.95 40163 41.1620 148.39 164.68 10.91 40164 41.1630 177.36 164.65 11.91 40165 41.1640 179.00 164.62 11.97 40166 41.1650 158.95 164.59 11.34 40167 41.1660 171.98 164.56 11.75 40168 41.1670 179.09 164.53 11.97 40169 41.1680 172.42 164.51 11.76 40170 41.1690 172.37 164.49 11.75 40171 41.1700 161.17 164.46 11.33 40172 41.1710 171.36 164.44 11.71 40173 41.1720 165.99 164.43 11.48 40174 41.1730 165.40 164.41 11.49 40175 41.1740 173.45 164.39 11.77 40176 41.1750 163.58 164.38 11.48 40177 41.1760 160.33 164.36 11.34 40178 41.1770 159.55 164.35 11.33 40179 41.1780 171.71 164.34 11.71 40180 41.1790 183.48 164.33 12.10 40181 41.1800 156.67 164.32 11.18 40182 41.1810 151.28 164.32 11.03 40183 41.1820 169.06 164.31 11.62 40184 41.1830 160.14 164.31 11.32 40185 41.1840 151.76 164.30 11.07 40186 41.1850 168.05 164.46 11.65 40187 41.1860 175.19 164.45 11.90 40188 41.1870 160.91 164.45 11.36 40189 41.1880 165.12 164.46 11.52 40190 41.1890 167.85 164.46 11.57 40191 41.1900 184.19 164.46 12.10 40192 41.1910 164.18 164.46 11.43 40193 41.1920 168.71 164.47 11.60 40194 41.1930 175.36 164.47 11.80 40195 41.1940 162.86 164.48 11.42 40196 41.1950 169.96 164.48 11.65 40197 41.1960 159.23 164.49 11.30 40198 41.1970 155.95 164.49 11.17 40199 41.1980 163.60 164.50 11.48 40200 41.1990 165.66 164.51 11.53 40201 41.2000 154.42 164.43 11.12 40202 41.2010 179.34 164.44 11.97 40203 41.2020 169.07 164.45 11.66 40204 41.2030 150.70 164.45 11.00 40205 41.2040 162.87 164.46 11.47 40206 41.2050 168.38 164.46 11.62 40207 41.2060 167.45 164.47 11.59 40208 41.2070 153.16 164.47 11.09 40209 41.2080 174.08 164.47 11.80 40210 41.2090 165.01 164.48 11.54 40211 41.2100 167.18 164.48 11.63 40212 41.2110 152.77 164.48 11.11 40213 41.2120 163.74 164.49 11.34 40214 41.2130 162.30 164.49 11.35 40215 41.2140 156.57 164.49 11.20 40216 41.2150 153.23 164.50 11.06 40217 41.2160 173.14 164.50 11.74 40218 41.2170 169.74 164.51 11.64 40219 41.2180 188.68 164.51 12.32 40220 41.2190 178.88 164.52 12.00 40221 41.2200 174.03 164.53 11.83 40222 41.2210 184.66 164.53 12.15 40223 41.2220 170.62 164.54 11.68 40224 41.2230 159.61 164.55 11.34 40225 41.2240 165.38 164.56 11.50 40226 41.2250 166.26 164.58 11.51 40227 41.2260 172.46 164.59 11.76 40228 41.2270 169.72 164.60 11.72 40229 41.2280 171.36 164.62 11.71 40230 41.2290 159.08 164.64 11.27 40231 41.2300 175.70 164.65 11.87 40232 41.2310 188.95 164.66 12.30 40233 41.2320 164.77 164.68 11.48 40234 41.2330 159.75 164.70 11.34 40235 41.2340 172.07 164.73 11.72 40236 41.2350 156.76 164.75 11.21 40237 41.2360 152.32 164.78 11.04 40238 41.2370 166.46 164.81 11.51 40239 41.2380 159.83 164.84 11.28 40240 41.2390 165.02 164.87 11.49 40241 41.2400 170.18 164.90 11.74 40242 41.2410 183.49 164.94 12.17 40243 41.2420 176.03 164.98 11.83 40244 41.2430 183.31 165.01 12.09 40245 41.2440 176.85 165.06 11.86 40246 41.2450 181.87 165.10 12.09 40247 41.2460 163.05 165.14 11.44 40248 41.2470 168.10 165.19 11.60 40249 41.2480 169.03 165.24 11.59 40250 41.2490 160.83 165.29 11.38 40251 41.2500 163.59 165.34 11.48 40252 41.2510 157.52 165.40 11.27 40253 41.2520 156.98 165.46 11.21 40254 41.2530 169.54 165.52 11.71 40255 41.2540 169.48 165.58 11.63 40256 41.2550 159.97 165.65 11.30 40257 41.2560 160.80 165.72 11.40 40258 41.2570 155.44 165.79 11.19 40259 41.2580 179.18 165.86 12.00 40260 41.2590 170.08 165.94 11.69 40261 41.2600 154.59 166.02 11.13 40262 41.2610 159.86 166.11 11.28 40263 41.2620 177.36 166.19 11.91 40264 41.2630 169.11 166.29 11.58 40265 41.2640 164.35 166.38 11.40 40266 41.2650 170.53 166.48 11.70 40267 41.2660 176.81 166.58 11.87 40268 41.2670 174.13 166.69 11.76 40269 41.2680 165.10 166.80 11.50 40270 41.2690 181.57 166.91 12.08 40271 41.2700 170.39 167.03 11.65 40272 41.2710 172.89 167.15 11.78 40273 41.2720 181.04 167.27 12.03 40274 41.2730 175.75 167.40 11.86 40275 41.2740 187.15 167.54 12.27 40276 41.2750 187.04 167.67 12.33 40277 41.2760 190.21 167.81 12.35 40278 41.2770 181.81 167.96 12.08 40279 41.2780 188.62 168.10 12.27 40280 41.2790 173.18 168.25 11.73 40281 41.2800 173.33 168.40 11.81 40282 41.2810 188.14 168.55 12.35 40283 41.2820 183.73 168.70 12.16 40284 41.2830 176.59 168.85 11.88 40285 41.2840 173.04 169.01 11.71 40286 41.2850 188.27 169.16 12.21 40287 41.2860 179.00 169.31 11.93 40288 41.2870 163.73 169.46 11.43 40289 41.2880 178.46 169.61 11.94 40290 41.2890 180.97 169.75 12.04 40291 41.2900 155.45 169.89 11.18 40292 41.2910 186.91 170.03 12.19 40293 41.2920 166.75 170.17 11.59 40294 41.2930 162.98 170.30 11.44 40295 41.2940 163.02 170.43 11.43 40296 41.2950 162.60 170.55 11.41 40297 41.2960 168.31 170.68 11.57 40298 41.2970 171.46 170.80 11.67 40299 41.2980 167.56 170.91 11.62 40300 41.2990 170.94 171.03 11.74 40301 41.3000 175.67 171.15 11.83 40302 41.3010 173.14 171.27 11.75 40303 41.3020 176.60 171.40 11.88 40304 41.3030 181.52 171.53 12.07 40305 41.3040 180.91 171.66 12.04 40306 41.3050 172.48 171.80 11.71 40307 41.3060 188.92 171.95 12.30 40308 41.3070 188.53 172.10 12.25 40309 41.3080 175.87 172.27 11.85 40310 41.3090 175.59 172.44 11.87 40311 41.3100 179.76 172.62 12.00 40312 41.3110 183.77 172.82 12.07 40313 41.3120 185.42 173.03 12.14 40314 41.3130 173.56 173.25 11.82 40315 41.3140 189.81 173.48 12.38 40316 41.3150 186.57 173.73 12.25 40317 41.3160 165.84 173.99 11.45 40318 41.3170 190.20 174.27 12.30 40319 41.3180 184.64 174.56 12.16 40320 41.3190 190.40 174.87 12.41 40321 41.3200 178.75 175.20 11.98 40322 41.3210 175.17 175.54 11.87 40323 41.3220 179.21 175.90 11.99 40324 41.3230 174.31 176.29 11.83 40325 41.3240 182.07 176.69 12.04 40326 41.3250 198.70 177.11 12.62 40327 41.3260 173.65 177.55 11.78 40328 41.3270 191.01 178.01 12.34 40329 41.3280 185.68 178.50 12.18 40330 41.3290 162.10 179.01 11.35 40331 41.3300 186.38 179.54 12.22 40332 41.3310 199.05 180.10 12.59 40333 41.3320 187.66 180.68 12.29 40334 41.3330 175.36 181.29 11.80 40335 41.3340 177.27 181.93 11.90 40336 41.3350 196.14 182.60 12.52 40337 41.3360 200.72 183.27 12.63 40338 41.3370 188.60 184.00 12.24 40339 41.3380 190.17 184.76 12.34 40340 41.3390 184.39 185.56 12.09 40341 41.3400 192.34 186.40 12.37 40342 41.3410 193.31 187.27 12.44 40343 41.3420 198.82 188.18 12.61 40344 41.3430 176.97 189.13 11.96 40345 41.3440 190.51 190.12 12.44 40346 41.3450 191.55 191.15 12.38 40347 41.3460 200.24 192.23 12.68 40348 41.3470 191.92 193.34 12.36 40349 41.3480 185.74 194.48 12.21 40350 41.3490 187.88 195.67 12.27 40351 41.3500 200.36 196.88 12.71 40352 41.3510 214.30 198.13 13.05 40353 41.3520 193.91 199.40 12.40 40354 41.3530 211.44 200.69 13.01 40355 41.3540 215.76 201.99 13.06 40356 41.3550 186.90 203.30 12.22 40357 41.3560 204.26 204.60 12.84 40358 41.3570 207.34 205.88 12.91 40359 41.3580 231.07 207.15 13.60 40360 41.3590 215.17 208.37 13.14 40361 41.3600 222.43 209.54 13.35 40362 41.3610 222.02 210.64 13.32 40363 41.3620 218.03 211.68 13.20 40364 41.3630 219.63 212.62 13.24 40365 41.3640 225.18 213.47 13.39 40366 41.3650 203.95 214.31 12.78 40367 41.3660 220.48 214.94 13.28 40368 41.3670 222.72 215.45 13.33 40369 41.3680 218.12 215.84 13.22 40370 41.3690 223.57 216.10 13.36 40371 41.3700 236.53 216.25 13.75 40372 41.3710 242.02 216.29 13.89 40373 41.3720 233.33 216.22 13.72 40374 41.3730 220.08 216.05 13.24 40375 41.3740 227.16 215.81 13.49 40376 41.3750 216.68 215.49 13.16 40377 41.3760 220.07 215.12 13.27 40378 41.3770 214.45 214.70 13.08 40379 41.3780 234.47 214.25 13.71 40380 41.3790 217.16 213.78 13.22 40381 41.3800 225.37 213.31 13.44 40382 41.3810 222.75 212.85 13.31 40383 41.3820 205.38 212.40 12.82 40384 41.3830 223.66 211.97 13.40 40385 41.3840 210.82 211.57 12.99 40386 41.3850 223.42 211.21 13.38 40387 41.3860 218.47 210.88 13.20 40388 41.3870 217.82 210.60 13.20 40389 41.3880 221.06 210.35 13.25 40390 41.3890 224.11 210.14 13.34 40391 41.3900 230.65 209.96 13.61 40392 41.3910 213.28 209.81 13.07 40393 41.3920 211.42 209.39 13.05 40394 41.3930 228.52 209.28 13.52 40395 41.3940 216.76 209.17 13.24 40396 41.3950 227.87 209.07 13.57 40397 41.3960 237.12 208.94 13.79 40398 41.3970 225.82 208.80 13.42 40399 41.3980 224.48 208.62 13.40 40400 41.3990 212.25 208.40 13.09 40401 41.4000 220.69 208.13 13.36 40402 41.4010 205.94 207.79 12.84 40403 41.4020 195.67 207.38 12.52 40404 41.4030 214.67 206.91 13.12 40405 41.4040 212.58 206.36 13.04 40406 41.4050 221.52 205.74 13.26 40407 41.4060 213.49 205.04 13.05 40408 41.4070 209.34 204.27 12.98 40409 41.4080 194.74 203.43 12.52 40410 41.4090 196.51 202.54 12.54 40411 41.4100 201.42 201.59 12.71 40412 41.4110 188.92 200.59 12.32 40413 41.4120 208.12 199.57 12.84 40414 41.4130 212.64 198.51 13.07 40415 41.4140 192.72 197.42 12.40 40416 41.4150 181.10 196.33 12.02 40417 41.4160 176.01 195.24 11.84 40418 41.4170 189.36 194.15 12.29 40419 41.4180 182.94 193.07 12.13 40420 41.4190 207.33 192.01 12.88 40421 41.4200 190.93 190.96 12.34 40422 41.4210 195.47 189.93 12.45 40423 41.4220 183.64 188.94 12.04 40424 41.4230 171.08 187.97 11.71 40425 41.4240 182.71 187.03 12.09 40426 41.4250 183.13 186.13 12.09 40427 41.4260 178.69 185.25 11.94 40428 41.4270 178.01 184.41 11.89 40429 41.4280 174.46 183.60 11.77 40430 41.4290 170.50 182.83 11.59 40431 41.4300 175.47 182.09 11.83 40432 41.4310 181.39 181.38 12.10 40433 41.4320 190.52 180.70 12.36 40434 41.4330 186.71 180.04 12.26 40435 41.4340 164.03 179.42 11.46 40436 41.4350 185.23 178.83 12.23 40437 41.4360 182.58 178.26 12.12 40438 41.4370 199.27 177.72 12.66 40439 41.4380 180.89 177.20 11.99 40440 41.4390 183.40 176.70 12.11 40441 41.4400 184.22 176.23 12.15 40442 41.4410 181.51 175.77 12.05 40443 41.4420 177.77 175.34 11.95 40444 41.4430 164.12 174.92 11.45 40445 41.4440 170.20 174.52 11.66 40446 41.4450 170.41 174.14 11.72 40447 41.4460 176.63 173.77 11.93 40448 41.4470 193.09 173.42 12.49 40449 41.4480 196.54 173.08 12.51 40450 41.4490 166.35 172.75 11.56 40451 41.4500 173.86 172.44 11.77 40452 41.4510 192.74 172.14 12.41 40453 41.4520 185.68 171.85 12.21 40454 41.4530 190.41 171.57 12.38 40455 41.4540 172.22 171.31 11.71 40456 41.4550 156.83 171.05 11.21 40457 41.4560 175.26 170.81 11.79 40458 41.4570 191.25 170.57 12.34 40459 41.4580 175.31 170.35 11.81 40460 41.4590 158.01 170.13 11.24 40461 41.4600 150.04 169.92 10.95 40462 41.4610 163.74 169.72 11.40 40463 41.4620 176.20 169.53 11.81 40464 41.4630 164.37 169.34 11.47 40465 41.4640 183.77 169.17 12.12 40466 41.4650 180.70 169.00 12.00 40467 41.4660 169.61 168.84 11.63 40468 41.4670 153.34 168.69 11.07 40469 41.4680 160.84 168.54 11.32 40470 41.4690 176.88 168.40 11.90 40471 41.4700 182.93 168.27 12.04 40472 41.4710 170.54 168.14 11.66 40473 41.4720 150.09 168.02 10.96 40474 41.4730 151.34 167.90 10.98 40475 41.4740 171.43 167.79 11.74 40476 41.4750 169.65 167.69 11.64 40477 41.4760 181.15 167.59 12.09 40478 41.4770 163.91 167.49 11.47 40479 41.4780 154.87 167.41 11.05 40480 41.4790 166.53 167.32 11.49 40481 41.4800 184.36 167.24 12.16 40482 41.4810 192.53 167.17 12.46 40483 41.4820 177.62 167.10 11.97 40484 41.4830 170.34 167.03 11.70 40485 41.4840 166.82 166.97 11.52 40486 41.4850 164.22 166.91 11.48 40487 41.4860 157.18 166.86 11.23 40488 41.4870 172.87 166.81 11.82 40489 41.4880 164.15 166.77 11.51 40490 41.4890 180.10 166.73 11.97 40491 41.4900 174.38 166.69 11.76 40492 41.4910 178.64 166.66 11.92 40493 41.4920 176.46 166.63 11.86 40494 41.4930 178.28 166.60 11.95 40495 41.4940 181.59 166.58 12.09 40496 41.4950 175.15 166.56 11.86 40497 41.4960 173.67 166.55 11.86 40498 41.4970 172.60 166.54 11.76 40499 41.4980 160.77 166.53 11.38 40500 41.4990 170.93 166.53 11.70 40501 41.5000 174.40 166.52 11.86 40502 41.5010 159.54 166.53 11.30 40503 41.5020 157.71 166.54 11.21 40504 41.5030 161.59 166.55 11.29 40505 41.5040 194.16 166.56 12.52 40506 41.5050 184.23 166.58 12.16 40507 41.5060 185.66 166.60 12.18 40508 41.5070 171.30 166.62 11.71 40509 41.5080 165.69 166.65 11.51 40510 41.5090 171.03 166.68 11.64 40511 41.5100 178.04 166.72 11.90 40512 41.5110 168.46 166.76 11.55 40513 41.5120 180.08 166.80 12.08 40514 41.5130 179.26 166.85 11.98 40515 41.5140 175.88 166.91 11.85 40516 41.5150 158.86 166.96 11.26 40517 41.5160 164.74 167.03 11.44 40518 41.5170 166.12 167.10 11.52 40519 41.5180 166.45 167.17 11.55 40520 41.5190 166.42 167.25 11.52 40521 41.5200 179.54 167.33 12.03 40522 41.5210 178.96 167.42 11.96 40523 41.5220 166.92 167.52 11.58 40524 41.5230 156.58 167.62 11.21 40525 41.5240 161.29 167.73 11.34 40526 41.5250 164.12 167.86 11.44 40527 41.5260 188.09 167.98 12.22 40528 41.5270 181.13 168.11 12.09 40529 41.5280 176.46 168.25 11.88 40530 41.5290 183.36 168.40 12.15 40531 41.5300 179.28 168.56 11.96 40532 41.5310 179.76 168.72 11.99 40533 41.5320 175.33 168.90 11.75 40534 41.5330 162.86 169.08 11.37 40535 41.5340 170.78 169.27 11.65 40536 41.5350 170.18 169.48 11.62 40537 41.5360 163.22 169.69 11.50 40538 41.5370 195.77 169.92 12.56 40539 41.5380 178.10 170.16 11.95 40540 41.5390 181.11 170.41 12.01 40541 41.5400 170.87 170.67 11.70 40542 41.5410 173.02 170.95 11.82 40543 41.5420 159.93 171.24 11.36 40544 41.5430 188.20 171.54 12.35 40545 41.5440 179.64 171.86 12.03 40546 41.5450 177.40 172.20 11.91 40547 41.5460 169.81 172.55 11.61 40548 41.5470 166.97 172.91 11.54 40549 41.5480 176.38 173.29 11.92 40550 41.5490 182.50 173.69 12.02 40551 41.5500 164.68 174.10 11.43 40552 41.5510 190.86 174.52 12.32 40553 41.5520 188.98 175.00 12.34 40554 41.5530 159.66 175.46 11.31 40555 41.5540 178.57 175.93 11.89 40556 41.5550 182.84 176.41 12.08 40557 41.5560 163.39 176.91 11.46 40558 41.5570 186.06 177.43 12.19 40559 41.5580 172.08 177.95 11.76 40560 41.5590 173.98 178.48 11.81 40561 41.5600 179.21 179.02 11.95 40562 41.5610 176.81 179.56 11.81 40563 41.5620 190.56 180.11 12.33 40564 41.5630 187.94 180.66 12.26 40565 41.5640 208.63 181.20 12.97 40566 41.5650 185.85 181.74 12.17 40567 41.5660 181.45 182.28 12.01 40568 41.5670 188.62 182.81 12.33 40569 41.5680 188.70 183.32 12.29 40570 41.5690 186.29 183.82 12.16 40571 41.5700 195.67 184.30 12.48 40572 41.5710 192.86 184.75 12.43 40573 41.5720 167.28 185.19 11.54 40574 41.5730 177.73 185.60 11.93 40575 41.5740 176.26 185.97 11.87 40576 41.5750 180.45 186.32 11.96 40577 41.5760 172.58 186.63 11.78 40578 41.5770 195.65 186.90 12.53 40579 41.5780 188.97 187.13 12.31 40580 41.5790 188.37 187.32 12.27 40581 41.5800 204.40 187.46 12.78 40582 41.5810 195.32 187.54 12.50 40583 41.5820 193.62 187.58 12.43 40584 41.5830 182.71 187.56 12.11 40585 41.5840 195.58 187.49 12.52 40586 41.5850 207.95 187.36 12.88 40587 41.5860 199.76 187.17 12.64 40588 41.5870 198.83 186.93 12.68 40589 41.5880 211.73 186.64 13.01 40590 41.5890 193.40 186.30 12.49 40591 41.5900 191.43 185.92 12.35 40592 41.5910 179.46 185.49 11.90 40593 41.5920 182.28 185.03 12.06 40594 41.5930 196.70 184.54 12.51 40595 41.5940 191.87 184.01 12.41 40596 41.5950 175.98 183.47 11.88 40597 41.5960 176.18 182.91 11.82 40598 41.5970 183.55 182.35 12.11 40599 41.5980 187.50 181.77 12.27 40600 41.5990 183.54 181.20 12.14 40601 41.6000 189.75 180.63 12.37 40602 41.6010 193.97 180.06 12.49 40603 41.6020 198.69 179.50 12.60 40604 41.6030 179.37 178.95 11.96 40605 41.6040 170.70 178.42 11.69 40606 41.6050 170.75 177.90 11.72 40607 41.6060 176.12 177.40 11.91 40608 41.6070 179.77 176.92 11.97 40609 41.6080 175.11 176.45 11.83 40610 41.6090 176.08 176.01 11.81 40611 41.6100 174.41 175.59 11.82 40612 41.6110 188.33 175.18 12.34 40613 41.6120 167.54 174.79 11.63 40614 41.6130 159.43 174.43 11.34 40615 41.6140 183.64 174.08 12.17 40616 41.6150 153.62 173.75 11.13 40617 41.6160 166.07 173.44 11.50 40618 41.6170 167.50 173.15 11.55 40619 41.6180 161.58 172.87 11.36 40620 41.6190 179.88 172.62 12.02 40621 41.6200 182.23 172.37 12.12 40622 41.6210 201.16 172.15 12.69 40623 41.6220 178.17 171.91 11.94 40624 41.6230 166.58 171.71 11.53 40625 41.6240 177.62 171.53 11.99 40626 41.6250 168.35 171.37 11.67 40627 41.6260 175.29 171.21 11.89 40628 41.6270 174.64 171.07 11.87 40629 41.6280 163.99 170.95 11.42 40630 41.6290 169.79 170.84 11.66 40631 41.6300 183.95 170.73 12.06 40632 41.6310 179.94 170.64 12.07 40633 41.6320 186.97 170.56 12.27 40634 41.6330 188.35 170.50 12.34 40635 41.6340 170.40 170.44 11.71 40636 41.6350 175.52 170.40 11.92 40637 41.6360 167.59 170.36 11.62 40638 41.6370 174.75 170.34 11.78 40639 41.6380 161.28 170.32 11.35 40640 41.6390 186.75 170.32 12.25 40641 41.6400 181.89 170.39 12.10 40642 41.6410 167.07 170.41 11.60 40643 41.6420 167.13 170.43 11.53 40644 41.6430 168.74 170.47 11.60 40645 41.6440 173.76 170.52 11.78 40646 41.6450 181.53 170.58 12.02 40647 41.6460 170.09 170.65 11.60 40648 41.6470 183.53 170.73 12.08 40649 41.6480 173.43 170.93 11.79 40650 41.6490 180.90 171.03 12.04 40651 41.6500 162.34 171.14 11.39 40652 41.6510 162.23 171.26 11.34 40653 41.6520 185.59 171.39 12.21 40654 41.6530 181.86 171.54 11.96 40655 41.6540 182.44 171.70 12.11 40656 41.6550 182.47 171.87 12.06 40657 41.6560 180.52 172.05 11.97 40658 41.6570 172.20 172.24 11.82 40659 41.6580 181.29 172.45 12.08 40660 41.6590 175.82 172.67 11.89 40661 41.6600 183.10 172.91 12.12 40662 41.6610 194.59 173.16 12.46 40663 41.6620 188.46 173.43 12.25 40664 41.6630 185.88 173.71 12.20 40665 41.6640 175.06 174.00 11.76 40666 41.6650 173.45 174.32 11.82 40667 41.6660 167.33 174.65 11.56 40668 41.6670 171.53 174.99 11.68 40669 41.6680 175.79 175.36 11.86 40670 41.6690 164.11 175.75 11.50 40671 41.6700 173.44 176.15 11.81 40672 41.6710 174.93 176.57 11.85 40673 41.6720 185.59 177.02 12.24 40674 41.6730 199.80 177.48 12.69 40675 41.6740 199.42 177.96 12.66 40676 41.6750 173.22 178.46 11.79 40677 41.6760 158.91 178.99 11.26 40678 41.6770 170.37 179.53 11.67 40679 41.6780 170.63 180.10 11.67 40680 41.6790 194.73 180.68 12.47 40681 41.6800 181.44 181.28 12.06 40682 41.6810 176.10 181.90 11.90 40683 41.6820 176.00 182.54 11.87 40684 41.6830 183.32 183.19 12.10 40685 41.6840 199.46 183.86 12.62 40686 41.6850 186.06 184.54 12.16 40687 41.6860 203.93 185.24 12.76 40688 41.6870 199.44 185.95 12.67 40689 41.6880 199.67 186.67 12.60 40690 41.6890 191.20 187.40 12.42 40691 41.6900 195.87 188.21 12.54 40692 41.6910 196.12 188.96 12.59 40693 41.6920 190.73 189.74 12.33 40694 41.6930 192.92 190.53 12.37 40695 41.6940 205.11 191.34 12.81 40696 41.6950 205.94 192.18 12.79 40697 41.6960 192.96 193.04 12.42 40698 41.6970 196.22 193.92 12.55 40699 41.6980 187.33 194.85 12.25 40700 41.6990 180.94 195.82 12.04 40701 41.7000 192.54 196.82 12.41 40702 41.7010 176.22 197.89 11.87 40703 41.7020 195.17 199.01 12.52 40704 41.7030 205.24 200.18 12.83 40705 41.7040 194.67 201.43 12.47 40706 41.7050 202.76 202.75 12.70 40707 41.7060 214.92 204.15 13.05 40708 41.7070 218.08 205.62 13.27 40709 41.7080 216.68 207.18 13.19 40710 41.7090 206.08 208.83 12.84 40711 41.7100 194.29 210.56 12.48 40712 41.7110 204.87 212.39 12.81 40713 41.7120 219.99 214.31 13.24 40714 41.7130 206.65 216.31 12.83 40715 41.7140 187.39 218.40 12.25 40716 41.7150 198.17 220.57 12.59 40717 41.7160 226.58 222.80 13.45 40718 41.7170 238.87 225.10 13.80 40719 41.7180 219.36 227.46 13.23 40720 41.7190 229.75 229.84 13.47 40721 41.7200 216.36 232.25 13.10 40722 41.7210 239.61 234.64 13.85 40723 41.7220 229.77 236.99 13.56 40724 41.7230 240.55 239.29 13.88 40725 41.7240 259.03 241.50 14.46 40726 41.7250 245.87 243.57 14.00 40727 41.7260 242.19 245.50 13.95 40728 41.7270 269.75 247.23 14.73 40729 41.7280 281.37 248.72 15.03 40730 41.7290 268.74 249.95 14.72 40731 41.7300 263.01 250.90 14.46 40732 41.7310 273.56 251.53 14.77 40733 41.7320 253.42 251.84 14.30 40734 41.7330 279.75 251.81 14.99 40735 41.7340 259.71 251.45 14.38 40736 41.7350 246.53 250.75 13.99 40737 41.7360 241.19 249.74 13.91 40738 41.7370 238.36 248.43 13.78 40739 41.7380 228.50 246.86 13.50 40740 41.7390 219.55 245.04 13.27 40741 41.7400 240.23 243.01 13.90 40742 41.7410 226.33 240.81 13.47 40743 41.7420 234.95 238.47 13.71 40744 41.7430 216.36 236.03 13.12 40745 41.7440 209.46 233.51 12.95 40746 41.7450 217.21 230.95 13.26 40747 41.7460 220.44 228.37 13.34 40748 41.7470 229.76 225.79 13.57 40749 41.7480 213.88 223.23 13.07 40750 41.7490 211.94 220.73 13.04 40751 41.7500 207.30 218.27 12.87 40752 41.7510 199.00 215.88 12.60 40753 41.7520 199.69 213.56 12.61 40754 41.7530 203.71 211.32 12.76 40755 41.7540 202.11 209.15 12.68 40756 41.7550 211.15 207.08 13.02 40757 41.7560 193.75 205.10 12.47 40758 41.7570 219.96 203.20 13.27 40759 41.7580 209.22 201.39 12.91 40760 41.7590 187.63 199.66 12.25 40761 41.7600 186.23 198.01 12.21 40762 41.7610 181.91 196.44 12.06 40763 41.7620 199.84 194.96 12.67 40764 41.7630 193.04 193.54 12.47 40765 41.7640 205.95 192.20 12.85 40766 41.7650 192.89 190.92 12.43 40767 41.7660 187.91 189.71 12.26 40768 41.7670 191.62 188.56 12.39 40769 41.7680 182.00 187.47 12.07 40770 41.7690 180.81 186.43 12.04 40771 41.7700 190.49 185.45 12.34 40772 41.7710 185.41 184.52 12.29 40773 41.7720 188.21 183.64 12.26 40774 41.7730 181.42 182.80 12.12 40775 41.7740 197.21 182.01 12.61 40776 41.7750 202.76 181.25 12.76 40777 41.7760 175.64 180.53 11.84 40778 41.7770 173.82 179.85 11.78 40779 41.7780 182.94 179.20 12.09 40780 41.7790 188.78 178.58 12.37 40781 41.7800 177.27 178.00 11.93 40782 41.7810 162.43 177.44 11.35 40783 41.7820 184.10 176.91 12.13 40784 41.7830 191.42 176.41 12.40 40785 41.7840 178.46 175.93 11.90 40786 41.7850 177.34 175.47 11.88 40787 41.7860 196.36 175.04 12.53 40788 41.7870 178.31 174.63 11.97 40789 41.7880 175.81 174.24 11.87 40790 41.7890 170.47 173.86 11.71 40791 41.7900 179.62 173.51 12.00 40792 41.7910 172.29 173.17 11.76 40793 41.7920 162.93 172.85 11.35 40794 41.7930 191.02 172.54 12.42 40795 41.7940 179.63 172.25 12.05 40796 41.7950 179.79 171.97 12.00 40797 41.7960 157.24 171.70 11.21 40798 41.7970 150.18 171.45 11.00 40799 41.7980 172.95 171.21 11.76 40800 41.7990 165.09 170.99 11.49 40801 41.8000 158.49 170.77 11.28 40802 41.8010 171.01 170.57 11.67 40803 41.8020 176.43 170.37 11.86 40804 41.8030 156.92 170.19 11.18 40805 41.8040 187.02 170.01 12.23 40806 41.8050 183.46 169.85 12.07 40807 41.8060 182.22 169.69 12.02 40808 41.8070 168.53 169.55 11.54 40809 41.8080 172.64 169.41 11.75 40810 41.8090 158.13 169.28 11.24 40811 41.8100 157.38 169.16 11.15 40812 41.8110 174.53 169.05 11.83 40813 41.8120 172.22 168.94 11.77 40814 41.8130 180.65 168.85 12.07 40815 41.8140 177.06 168.76 11.98 40816 41.8150 155.25 168.68 11.10 40817 41.8160 180.23 168.60 12.04 40818 41.8170 184.71 168.54 12.22 40819 41.8180 167.96 168.48 11.63 40820 41.8190 167.78 168.43 11.61 40821 41.8200 169.83 168.38 11.66 40822 41.8210 181.10 168.35 12.01 40823 41.8220 194.74 168.32 12.50 40824 41.8230 169.30 168.29 11.61 40825 41.8240 171.60 168.28 11.69 40826 41.8250 173.88 168.27 11.84 40827 41.8260 173.33 168.27 11.74 40828 41.8270 176.36 168.28 11.82 40829 41.8280 153.72 168.29 11.09 40830 41.8290 177.23 168.32 11.90 40831 41.8300 174.46 168.35 11.83 40832 41.8310 171.25 168.38 11.70 40833 41.8320 191.85 168.43 12.34 40834 41.8330 178.75 168.49 11.91 40835 41.8340 168.63 168.55 11.67 40836 41.8350 162.00 168.63 11.44 40837 41.8360 179.94 168.71 12.01 40838 41.8370 184.11 168.80 12.10 40839 41.8380 178.04 168.90 11.91 40840 41.8390 179.79 169.01 11.99 40841 41.8400 179.83 169.13 12.04 40842 41.8410 156.36 169.26 11.19 40843 41.8420 171.69 169.40 11.73 40844 41.8430 168.40 169.55 11.61 40845 41.8440 180.70 169.71 12.04 40846 41.8450 187.03 169.89 12.31 40847 41.8460 186.29 170.07 12.24 40848 41.8470 188.38 170.26 12.26 40849 41.8480 184.65 170.47 12.13 40850 41.8490 186.96 170.68 12.18 40851 41.8500 171.18 170.90 11.71 40852 41.8510 176.40 171.14 11.82 40853 41.8520 168.00 171.38 11.51 40854 41.8530 166.74 171.63 11.47 40855 41.8540 170.89 171.89 11.64 40856 41.8550 191.56 172.15 12.31 40857 41.8560 168.14 172.42 11.64 40858 41.8570 182.04 172.69 12.09 40859 41.8580 192.74 172.96 12.39 40860 41.8590 194.00 173.24 12.43 40861 41.8600 166.46 173.50 11.45 40862 41.8610 187.75 173.76 12.23 40863 41.8620 172.31 174.01 11.78 40864 41.8630 167.35 174.26 11.55 40865 41.8640 183.26 174.49 12.04 40866 41.8650 173.57 174.70 11.73 40867 41.8660 202.61 174.90 12.69 40868 41.8670 188.98 175.09 12.23 40869 41.8680 167.96 175.25 11.58 40870 41.8690 173.89 175.39 11.84 40871 41.8700 167.18 175.52 11.58 40872 41.8710 166.60 175.63 11.46 40873 41.8720 180.35 175.73 11.92 40874 41.8730 174.25 175.81 11.80 40875 41.8740 166.84 175.88 11.53 40876 41.8750 172.20 175.94 11.71 40877 41.8760 176.01 175.99 11.87 40878 41.8770 174.99 176.04 11.83 40879 41.8780 189.36 176.09 12.28 40880 41.8790 196.13 176.15 12.52 40881 41.8800 179.46 176.21 12.02 40882 41.8810 180.94 176.28 12.00 40883 41.8820 167.13 176.36 11.54 40884 41.8830 194.24 176.45 12.48 40885 41.8840 179.52 176.56 12.02 40886 41.8850 174.49 176.70 11.85 40887 41.8860 176.68 176.85 11.91 40888 41.8870 180.13 177.02 11.98 40889 41.8880 183.37 177.22 12.12 40890 41.8890 181.85 177.45 12.01 40891 41.8900 181.00 177.70 12.08 40892 41.8910 177.53 177.98 11.95 40893 41.8920 174.76 178.30 11.91 40894 41.8930 171.35 178.65 11.74 40895 41.8940 178.05 179.03 11.94 40896 41.8950 181.13 179.44 11.98 40897 41.8960 177.53 179.89 11.91 40898 41.8970 170.90 180.38 11.71 40899 41.8980 185.37 180.91 12.22 40900 41.8990 179.65 181.48 12.00 40901 41.9000 187.27 182.10 12.28 40902 41.9010 188.12 182.76 12.37 40903 41.9020 211.69 183.46 13.00 40904 41.9030 174.02 184.21 11.75 40905 41.9040 182.47 185.01 12.02 40906 41.9050 183.19 185.86 12.09 40907 41.9060 194.99 186.76 12.54 40908 41.9070 199.90 187.72 12.58 40909 41.9080 194.68 188.73 12.47 40910 41.9090 186.84 189.80 12.18 40911 41.9100 191.66 190.92 12.32 40912 41.9110 192.71 192.10 12.35 40913 41.9120 187.43 193.33 12.22 40914 41.9130 187.77 194.61 12.28 40915 41.9140 190.07 195.96 12.36 40916 41.9150 202.70 197.34 12.76 40917 41.9160 179.02 198.78 12.00 40918 41.9170 174.74 200.26 11.81 40919 41.9180 208.57 201.77 12.96 40920 41.9190 218.79 203.31 13.26 40921 41.9200 199.39 204.86 12.70 40922 41.9210 196.83 206.42 12.53 40923 41.9220 219.73 207.98 13.24 40924 41.9230 223.01 209.51 13.36 40925 41.9240 224.15 210.99 13.40 40926 41.9250 222.88 212.42 13.34 40927 41.9260 216.93 213.77 13.18 40928 41.9270 238.20 215.02 13.87 40929 41.9280 235.26 216.15 13.79 40930 41.9290 220.94 217.15 13.31 40931 41.9300 212.08 217.98 13.02 40932 41.9310 209.67 218.64 12.92 40933 41.9320 207.88 219.11 12.92 40934 41.9330 226.91 219.38 13.50 40935 41.9340 205.04 219.45 12.85 40936 41.9350 228.81 219.30 13.57 40937 41.9360 220.76 218.96 13.24 40938 41.9370 211.29 218.41 13.00 40939 41.9380 226.35 217.68 13.43 40940 41.9390 217.25 216.77 13.24 40941 41.9400 230.86 215.70 13.63 40942 41.9410 216.12 214.49 13.10 40943 41.9420 219.41 213.17 13.28 40944 41.9430 203.94 211.75 12.79 40945 41.9440 220.98 210.25 13.32 40946 41.9450 214.85 208.68 13.10 40947 41.9460 194.36 207.09 12.47 40948 41.9470 193.86 205.46 12.41 40949 41.9480 206.70 203.82 12.82 40950 41.9490 199.59 202.20 12.67 40951 41.9500 202.57 200.59 12.78 40952 41.9510 200.94 199.00 12.73 40953 41.9520 203.51 197.45 12.83 40954 41.9530 196.90 195.93 12.57 40955 41.9540 187.19 194.46 12.20 40956 41.9550 202.47 193.03 12.71 40957 41.9560 172.07 191.66 11.71 40958 41.9570 183.79 190.34 12.17 40959 41.9580 190.50 189.07 12.36 40960 41.9590 197.82 187.86 12.53 40961 41.9600 180.58 186.69 12.00 40962 41.9610 200.64 185.58 12.71 40963 41.9620 195.19 184.52 12.49 40964 41.9630 189.99 183.51 12.34 40965 41.9640 168.03 182.55 11.65 40966 41.9650 168.59 181.63 11.58 40967 41.9660 196.64 180.76 12.54 40968 41.9670 203.68 179.85 12.81 40969 41.9680 187.63 179.06 12.25 40970 41.9690 192.26 178.31 12.39 40971 41.9700 184.55 177.60 12.15 40972 41.9710 192.06 176.92 12.39 40973 41.9720 189.27 176.28 12.30 40974 41.9730 166.83 175.66 11.57 40975 41.9740 193.08 175.08 12.48 40976 41.9750 185.48 174.53 12.22 40977 41.9760 168.40 174.00 11.67 40978 41.9770 181.37 173.50 12.12 40979 41.9780 185.18 173.03 12.20 40980 41.9790 160.07 172.58 11.28 40981 41.9800 152.08 172.15 11.04 40982 41.9810 186.60 171.74 12.22 40983 41.9820 173.56 171.35 11.69 40984 41.9830 172.89 170.98 11.74 40985 41.9840 180.21 170.62 12.04 40986 41.9850 181.25 170.29 12.04 40987 41.9860 179.23 169.97 12.01 40988 41.9870 190.19 169.67 12.38 40989 41.9880 174.08 169.38 11.83 40990 41.9890 175.25 169.10 11.93 40991 41.9900 167.04 168.84 11.60 40992 41.9910 158.12 168.59 11.25 40993 41.9920 164.75 168.35 11.50 40994 41.9930 166.95 168.13 11.63 40995 41.9940 172.10 167.86 11.77 40996 41.9950 174.21 167.66 11.84 40997 41.9960 166.04 167.46 11.50 40998 41.9970 162.55 167.28 11.36 40999 41.9980 164.32 167.10 11.44 41000 41.9990 151.42 167.10 11.05 41001 42.0000 158.05 166.94 11.21 41002 42.0010 159.76 166.79 11.31 41003 42.0020 158.65 166.65 11.26 41004 42.0030 174.80 166.52 12.43 41005 42.0040 167.50 166.40 12.17 41006 42.0050 169.58 166.28 12.30 41007 42.0060 152.17 166.17 11.56 41008 42.0070 166.92 166.07 12.17 41009 42.0080 178.89 165.97 12.57 41010 42.0090 170.38 165.88 12.24 41011 42.0100 158.33 165.80 11.76 41012 42.0110 167.52 165.72 12.15 41013 42.0120 170.81 165.65 12.30 41014 42.0130 167.74 165.59 12.26 41015 42.0140 179.21 165.53 12.66 41016 42.0150 157.33 165.48 11.79 41017 42.0160 172.49 165.43 12.33 41018 42.0170 178.15 165.40 12.55 41019 42.0180 158.13 165.36 11.84 41020 42.0190 150.46 165.34 11.51 41021 42.0200 171.66 165.31 12.35 41022 42.0210 153.03 165.30 11.66 41023 42.0220 169.60 165.29 12.27 41024 42.0230 161.03 165.29 11.96 41025 42.0240 161.51 165.29 11.93 41026 42.0250 162.63 165.30 12.00 41027 42.0260 173.87 165.32 12.44 41028 42.0270 176.54 165.34 12.49 41029 42.0280 165.65 165.36 12.12 41030 42.0290 174.05 165.40 12.43 41031 42.0300 173.51 165.44 12.36 41032 42.0310 176.13 165.48 12.52 41033 42.0320 180.61 165.53 12.65 41034 42.0330 169.91 165.59 12.36 41035 42.0340 156.09 165.65 11.77 41036 42.0350 182.70 165.72 12.80 41037 42.0360 176.64 165.79 12.57 41038 42.0370 169.43 165.86 12.29 41039 42.0380 170.25 165.94 12.28 41040 42.0390 167.01 166.02 12.17 41041 42.0400 160.62 166.29 11.98 41042 42.0410 171.52 166.37 12.37 41043 42.0420 193.20 166.45 13.11 41044 42.0430 192.13 166.54 13.05 41045 42.0440 186.59 166.61 12.80 41046 42.0450 180.37 166.69 12.67 41047 42.0460 183.50 166.76 12.68 41048 42.0470 164.23 166.82 12.00 41049 42.0480 163.38 166.87 12.06 41050 42.0490 149.10 166.92 11.49 41051 42.0500 171.23 166.96 12.29 41052 42.0510 179.18 166.99 12.58 41053 42.0520 167.11 167.01 12.13 41054 42.0530 176.75 167.03 12.53 41055 42.0540 180.32 167.04 12.70 41056 42.0550 178.33 167.03 12.53 41057 42.0560 166.33 167.03 12.18 41058 42.0570 172.91 167.03 12.38 41059 42.0580 174.05 167.01 12.45 41060 42.0590 185.85 166.99 12.83 41061 42.0600 168.10 166.96 12.26 41062 42.0610 170.74 166.94 12.34 41063 42.0620 155.83 166.91 11.82 41064 42.0630 174.72 166.88 12.48 41065 42.0640 177.14 166.86 12.55 41066 42.0650 194.23 166.84 13.12 41067 42.0660 179.99 166.82 12.63 41068 42.0670 149.20 166.80 11.56 41069 42.0680 178.54 166.79 12.66 41070 42.0690 165.16 166.79 12.05 41071 42.0700 158.46 166.79 11.87 41072 42.0710 173.11 166.80 12.35 41073 42.0720 173.43 166.81 12.42 41074 42.0730 175.94 166.84 12.54 41075 42.0740 167.38 166.86 12.20 41076 42.0750 172.24 166.90 12.33 41077 42.0760 174.05 166.94 12.37 41078 42.0770 152.40 167.00 11.65 41079 42.0780 166.01 167.05 12.07 41080 42.0790 184.85 167.12 12.76 41081 42.0800 170.97 167.20 12.39 41082 42.0810 176.00 167.29 12.54 41083 42.0820 174.28 167.38 12.36 41084 42.0830 169.48 167.48 12.21 41085 42.0840 181.49 167.59 12.76 41086 42.0850 171.95 167.72 12.37 41087 42.0860 159.98 167.85 11.99 41088 42.0870 165.14 167.99 12.09 41089 42.0880 184.59 168.14 12.76 41090 42.0890 181.16 168.31 12.65 41091 42.0900 168.06 168.48 12.18 41092 42.0910 157.23 168.67 11.72 41093 42.0920 179.52 168.87 12.63 41094 42.0930 169.23 169.08 12.26 41095 42.0940 171.69 169.31 12.35 41096 42.0950 175.69 169.55 12.43 41097 42.0960 156.75 169.80 11.77 41098 42.0970 191.32 170.07 13.03 41099 42.0980 174.83 170.36 12.54 41100 42.0990 189.65 170.66 13.01 41101 42.1000 184.85 170.98 12.72 41102 42.1010 173.85 171.31 12.45 41103 42.1020 174.45 171.66 12.36 41104 42.1030 182.70 172.03 12.75 41105 42.1040 160.32 172.41 11.92 41106 42.1050 155.57 172.82 11.78 41107 42.1060 164.35 173.24 12.13 41108 42.1070 174.84 173.68 12.49 41109 42.1080 183.02 174.13 12.70 41110 42.1090 169.10 174.61 12.26 41111 42.1100 167.43 175.10 12.20 41112 42.1110 184.85 175.61 12.83 41113 42.1120 185.25 176.13 12.84 41114 42.1130 168.50 176.67 12.17 41115 42.1140 179.06 177.22 12.60 41116 42.1150 184.92 177.78 12.84 41117 42.1160 182.25 178.35 12.69 41118 42.1170 197.15 178.92 13.22 41119 42.1180 185.90 179.49 12.96 41120 42.1190 186.33 180.06 12.92 41121 42.1200 172.54 180.62 12.39 41122 42.1210 165.79 181.18 12.08 41123 42.1220 187.90 181.79 12.86 41124 42.1230 186.50 182.31 12.87 41125 42.1240 180.65 182.81 12.69 41126 42.1250 194.39 183.28 13.21 41127 42.1260 189.67 183.72 12.96 41128 42.1270 190.04 184.13 12.94 41129 42.1280 186.75 184.50 12.83 41130 42.1290 197.64 184.84 13.25 41131 42.1300 196.60 185.14 13.21 41132 42.1310 190.73 185.40 13.02 41133 42.1320 178.65 185.63 12.63 41134 42.1330 205.60 185.83 13.54 41135 42.1340 191.21 186.01 12.89 41136 42.1350 179.00 186.15 12.52 41137 42.1360 180.45 186.28 12.63 41138 42.1370 173.73 186.40 12.39 41139 42.1380 199.41 186.51 13.29 41140 42.1390 171.29 186.61 12.28 41141 42.1400 178.53 186.72 12.59 41142 42.1410 180.76 186.84 12.62 41143 42.1420 174.78 186.98 12.43 41144 42.1430 188.09 187.13 12.92 41145 42.1440 190.94 187.31 13.01 41146 42.1450 192.11 187.52 13.05 41147 42.1460 195.96 187.76 13.18 41148 42.1470 198.75 188.04 13.25 41149 42.1480 189.24 188.36 12.95 41150 42.1490 195.70 188.73 13.24 41151 42.1500 183.86 189.14 12.77 41152 42.1510 183.23 189.60 12.72 41153 42.1520 190.61 190.11 12.97 41154 42.1530 189.55 190.67 12.95 41155 42.1540 182.66 191.28 12.82 41156 42.1550 190.00 191.95 13.03 41157 42.1560 191.08 192.66 13.02 41158 42.1570 188.73 193.43 12.95 41159 42.1580 206.71 194.24 13.55 41160 42.1590 202.50 195.10 13.33 41161 42.1600 218.50 195.99 13.91 41162 42.1610 226.88 196.92 14.26 41163 42.1620 224.65 197.88 14.09 41164 42.1630 208.66 198.84 13.54 41165 42.1640 209.54 199.82 13.73 41166 42.1650 231.08 200.79 14.33 41167 42.1660 202.20 201.75 13.38 41168 42.1670 196.89 202.67 13.17 41169 42.1680 195.39 203.55 13.19 41170 42.1690 216.54 204.37 13.86 41171 42.1700 215.16 205.12 13.82 41172 42.1710 194.21 205.78 13.13 41173 42.1720 201.44 206.35 13.36 41174 42.1730 209.47 206.80 13.59 41175 42.1740 215.29 207.15 13.72 41176 42.1750 206.47 207.37 13.48 41177 42.1760 212.36 207.48 13.80 41178 42.1770 228.32 207.47 14.21 41179 42.1780 200.84 207.35 13.30 41180 42.1790 219.44 207.13 13.95 41181 42.1800 208.89 206.83 13.59 41182 42.1810 207.54 206.45 13.55 41183 42.1820 203.91 206.01 13.43 41184 42.1830 211.68 205.52 13.70 41185 42.1840 195.60 205.01 13.17 41186 42.1850 208.24 204.47 13.54 41187 42.1860 213.98 203.94 13.76 41188 42.1870 204.20 203.42 13.40 41189 42.1880 199.65 202.92 13.31 41190 42.1890 180.32 202.46 12.59 41191 42.1900 203.56 202.04 13.40 41192 42.1910 203.36 201.67 13.41 41193 42.1920 201.86 201.36 13.40 41194 42.1930 205.29 201.12 13.45 41195 42.1940 190.99 200.94 13.03 41196 42.1950 199.12 200.84 13.29 41197 42.1960 216.26 200.81 13.88 41198 42.1970 193.50 200.83 13.12 41199 42.1980 174.10 200.97 12.43 41200 42.1990 205.36 201.18 13.39 41201 42.2000 194.34 201.48 13.11 41202 42.2010 216.52 201.87 13.89 41203 42.2020 212.70 202.34 13.83 41204 42.2030 186.42 202.89 12.84 41205 42.2040 196.67 203.54 13.25 41206 42.2050 199.68 204.27 13.32 41207 42.2060 201.14 205.08 13.39 41208 42.2070 204.86 205.97 13.49 41209 42.2080 199.08 206.93 13.25 41210 42.2090 209.45 207.98 13.50 41211 42.2100 212.66 209.10 13.68 41212 42.2110 230.80 210.30 14.27 41213 42.2120 232.85 211.56 14.36 41214 42.2130 219.10 212.87 13.93 41215 42.2140 212.54 214.23 13.75 41216 42.2150 204.26 215.63 13.38 41217 42.2160 220.66 217.05 14.01 41218 42.2170 218.64 218.48 13.87 41219 42.2180 225.35 219.90 14.20 41220 42.2190 216.51 221.32 13.91 41221 42.2200 239.55 222.68 14.67 41222 42.2210 230.64 223.98 14.31 41223 42.2220 234.79 225.20 14.52 41224 42.2230 247.78 226.32 14.88 41225 42.2240 255.90 227.31 15.07 41226 42.2250 242.66 228.16 14.65 41227 42.2260 232.84 228.85 14.41 41228 42.2270 235.10 229.35 14.46 41229 42.2280 244.83 229.66 14.70 41230 42.2290 240.37 229.78 14.60 41231 42.2300 230.62 229.68 14.30 41232 42.2310 229.35 229.39 14.21 41233 42.2320 218.97 228.88 13.88 41234 42.2330 227.83 228.41 14.24 41235 42.2340 224.94 227.53 14.15 41236 42.2350 222.06 226.49 13.99 41237 42.2360 223.58 225.29 14.07 41238 42.2370 208.03 223.97 13.50 41239 42.2380 219.47 222.53 13.97 41240 42.2390 225.33 221.00 14.12 41241 42.2400 232.13 219.40 14.37 41242 42.2410 226.36 217.75 14.13 41243 42.2420 225.18 216.06 14.16 41244 42.2430 199.54 214.37 13.27 41245 42.2440 222.29 212.67 14.05 41246 42.2450 232.12 210.99 14.38 41247 42.2460 227.22 209.33 14.22 41248 42.2470 210.97 207.70 13.69 41249 42.2480 203.10 206.11 13.43 41250 42.2490 196.14 204.58 13.24 41251 42.2500 192.21 203.09 13.10 41252 42.2510 203.36 201.67 13.43 41253 42.2520 187.07 200.30 12.93 41254 42.2530 198.31 199.00 13.32 41255 42.2540 202.34 197.75 13.38 41256 42.2550 203.93 196.58 13.57 41257 42.2560 215.12 195.46 13.91 41258 42.2570 213.23 194.41 13.79 41259 42.2580 197.17 193.43 13.20 41260 42.2590 205.94 192.51 13.48 41261 42.2600 184.42 191.64 12.79 41262 42.2610 193.22 190.83 13.13 41263 42.2620 195.89 190.08 13.17 41264 42.2630 171.00 189.39 12.27 41265 42.2640 182.84 188.75 12.74 41266 42.2650 167.93 188.17 12.20 41267 42.2660 184.51 187.64 12.84 41268 42.2670 178.97 187.16 12.53 41269 42.2680 191.10 186.73 12.91 41270 42.2690 170.96 186.35 12.34 41271 42.2700 177.41 186.02 12.52 41272 42.2710 179.76 185.73 12.70 41273 42.2720 186.50 185.49 12.85 41274 42.2730 191.11 185.30 13.02 41275 42.2740 194.18 185.15 13.13 41276 42.2750 192.12 185.04 13.01 41277 42.2760 191.76 184.98 13.06 41278 42.2770 184.87 184.95 12.76 41279 42.2780 169.70 184.98 12.23 41280 42.2790 173.94 185.05 12.39 41281 42.2800 166.03 185.16 12.14 41282 42.2810 192.25 185.15 13.07 41283 42.2820 179.43 185.35 12.58 41284 42.2830 178.27 185.58 12.45 41285 42.2840 179.83 185.85 12.66 41286 42.2850 190.34 186.17 12.97 41287 42.2860 191.71 186.52 13.02 41288 42.2870 201.27 186.90 13.36 41289 42.2880 201.47 187.32 13.35 41290 42.2890 197.28 187.78 13.23 41291 42.2900 187.95 188.26 12.92 41292 42.2910 199.73 188.78 13.26 41293 42.2920 213.71 189.31 13.82 41294 42.2930 195.61 189.87 13.19 41295 42.2940 188.09 190.44 12.84 41296 42.2950 180.87 191.02 12.68 41297 42.2960 197.74 191.61 13.24 41298 42.2970 197.45 192.19 13.19 41299 42.2980 205.28 192.76 13.58 41300 42.2990 201.84 193.32 13.38 41301 42.3000 193.74 193.84 13.13 41302 42.3010 193.11 194.34 13.12 41303 42.3020 205.94 194.79 13.54 41304 42.3030 199.90 195.18 13.35 41305 42.3040 192.86 195.52 13.20 41306 42.3050 191.93 195.78 13.05 41307 42.3060 199.18 195.97 13.34 41308 42.3070 201.32 196.08 13.44 41309 42.3080 191.75 196.10 13.05 41310 42.3090 212.40 196.03 13.71 41311 42.3100 213.02 195.87 13.84 41312 42.3110 199.69 195.62 13.35 41313 42.3120 202.41 195.29 13.46 41314 42.3130 204.08 194.86 13.49 41315 42.3140 190.49 194.36 13.04 41316 42.3150 189.98 193.79 13.03 41317 42.3160 177.86 193.15 12.55 41318 42.3170 183.53 192.45 12.77 41319 42.3180 207.43 191.71 13.54 41320 42.3190 197.24 190.92 13.25 41321 42.3200 199.00 190.10 13.27 41322 42.3210 186.27 189.26 12.88 41323 42.3220 190.56 188.40 13.01 41324 42.3230 179.59 187.52 12.60 41325 42.3240 176.37 186.64 12.42 41326 42.3250 198.10 185.77 13.33 41327 42.3260 182.37 184.90 12.76 41328 42.3270 176.46 184.04 12.50 41329 42.3280 166.92 183.21 12.17 41330 42.3290 191.07 182.38 12.95 41331 42.3300 180.65 181.57 12.60 41332 42.3310 174.19 180.78 12.39 41333 42.3320 168.08 180.02 12.15 41334 42.3330 187.32 179.28 12.87 41335 42.3340 173.06 178.57 12.34 41336 42.3350 171.69 177.88 12.33 41337 42.3360 164.73 177.22 12.11 41338 42.3370 171.54 176.58 12.36 41339 42.3380 161.87 175.96 11.92 41340 42.3390 177.24 175.37 12.44 41341 42.3400 165.78 174.81 12.03 41342 42.3410 172.20 174.27 12.34 41343 42.3420 155.99 173.75 11.74 41344 42.3430 154.01 173.25 11.66 41345 42.3440 170.16 172.77 12.28 41346 42.3450 189.52 172.32 12.95 41347 42.3460 177.53 171.90 12.55 41348 42.3470 161.61 171.48 11.98 41349 42.3480 164.25 171.09 12.10 41350 42.3490 161.21 170.71 11.98 41351 42.3500 158.88 170.35 11.78 41352 42.3510 154.71 170.01 11.71 41353 42.3520 164.15 169.68 12.08 41354 42.3530 164.15 169.37 12.04 41355 42.3540 184.12 169.07 12.81 41356 42.3550 182.62 168.78 12.77 41357 42.3560 171.80 168.51 12.36 41358 42.3570 171.74 168.26 12.37 41359 42.3580 184.43 168.01 12.80 41360 42.3590 165.81 167.78 12.12 41361 42.3600 181.59 167.56 12.77 41362 42.3610 175.22 167.34 12.47 41363 42.3620 193.10 167.14 13.06 41364 42.3630 181.19 166.95 12.67 41365 42.3640 172.67 166.77 12.44 41366 42.3650 150.48 166.60 11.60 41367 42.3660 171.46 166.44 12.36 41368 42.3670 177.80 166.28 12.58 41369 42.3680 172.60 166.13 12.44 41370 42.3690 175.93 166.00 12.50 41371 42.3700 172.86 165.87 12.39 41372 42.3710 175.28 165.74 12.44 41373 42.3720 185.12 165.62 12.78 41374 42.3730 156.40 165.52 11.72 41375 42.3740 179.92 165.41 12.62 41376 42.3750 178.59 165.32 12.55 41377 42.3760 164.14 165.23 12.04 41378 42.3770 144.88 165.15 11.33 41379 42.3780 160.19 165.07 11.87 41380 42.3790 152.63 165.00 11.58 41381 42.3800 155.76 164.93 11.68 41382 42.3810 169.33 164.87 12.16 41383 42.3820 186.54 164.82 12.80 41384 42.3830 178.81 164.77 12.53 41385 42.3840 159.00 164.72 11.88 41386 42.3850 157.31 164.69 11.85 41387 42.3860 156.88 164.65 11.81 41388 42.3870 166.97 164.62 12.13 41389 42.3880 155.27 164.60 11.77 41390 42.3890 178.72 164.58 12.64 41391 42.3900 169.16 164.57 12.27 41392 42.3910 180.58 164.55 12.65 41393 42.3920 169.21 164.55 12.20 41394 42.3930 168.53 164.54 12.25 41395 42.3940 151.57 164.54 11.56 41396 42.3950 159.55 164.55 11.84 41397 42.3960 183.04 164.55 12.81 41398 42.3970 169.87 164.56 12.36 41399 42.3980 184.86 164.57 12.85 41400 42.3990 167.17 164.59 12.18 41401 42.4000 170.30 164.60 12.29 41402 42.4010 168.48 164.62 12.24 41403 42.4020 156.83 164.64 11.77 41404 42.4030 157.54 164.65 11.76 41405 42.4040 167.22 164.67 12.16 41406 42.4050 154.65 164.69 11.71 41407 42.4060 174.38 164.71 12.49 41408 42.4070 200.93 164.73 13.38 41409 42.4080 170.37 164.74 12.34 41410 42.4090 161.52 164.76 11.99 41411 42.4100 150.24 164.77 11.55 41412 42.4110 155.38 164.79 11.69 41413 42.4120 160.87 164.80 12.00 41414 42.4130 166.34 164.82 12.15 41415 42.4140 178.68 164.83 12.53 41416 42.4150 175.95 164.85 12.44 41417 42.4160 164.77 164.87 12.02 41418 42.4170 185.68 164.88 12.89 41419 42.4180 169.75 164.90 12.22 41420 42.4190 169.05 164.92 12.23 41421 42.4200 167.26 164.94 12.17 41422 42.4210 178.54 164.96 12.58 41423 42.4220 171.41 164.99 12.37 41424 42.4230 173.62 165.02 12.37 41425 42.4240 166.55 165.05 12.14 41426 42.4250 171.94 165.08 12.28 41427 42.4260 146.19 165.12 11.29 41428 42.4270 166.04 165.16 12.07 41429 42.4280 173.94 165.20 12.34 41430 42.4290 164.08 165.24 12.08 41431 42.4300 170.24 165.29 12.40 41432 42.4310 164.03 165.33 12.02 41433 42.4320 156.81 165.38 11.75 41434 42.4330 160.07 165.43 11.96 41435 42.4340 168.00 165.48 12.22 41436 42.4350 170.68 165.53 12.29 41437 42.4360 166.87 165.57 12.17 41438 42.4370 168.93 165.62 12.23 41439 42.4380 164.69 165.67 12.11 41440 42.4390 167.54 165.72 12.26 41441 42.4400 170.79 165.76 12.32 41442 42.4410 165.27 165.81 12.23 41443 42.4420 157.71 165.85 11.93 41444 42.4430 156.59 165.90 11.81 41445 42.4440 166.40 165.94 12.20 41446 42.4450 181.00 165.98 12.72 41447 42.4460 178.26 166.02 12.54 41448 42.4470 175.50 166.05 12.52 41449 42.4480 178.97 166.10 12.61 41450 42.4490 162.40 166.15 12.03 41451 42.4500 160.42 166.19 11.94 41452 42.4510 162.89 166.24 11.96 41453 42.4520 154.73 166.30 11.70 41454 42.4530 154.94 166.35 11.68 41455 42.4540 187.83 166.41 12.85 41456 42.4550 170.61 166.48 12.37 41457 42.4560 177.75 166.55 12.63 41458 42.4570 165.40 166.63 12.17 41459 42.4580 159.87 166.71 11.89 41460 42.4590 173.22 166.79 12.35 41461 42.4600 188.14 166.89 12.85 41462 42.4610 165.35 166.99 12.08 41463 42.4620 169.41 167.09 12.24 41464 42.4630 173.35 167.20 12.34 41465 42.4640 168.35 167.32 12.21 41466 42.4650 155.45 167.45 11.76 41467 42.4660 163.85 167.58 12.01 41468 42.4670 168.42 167.72 12.19 41469 42.4680 174.17 167.87 12.42 41470 42.4690 172.94 168.03 12.37 41471 42.4700 161.56 168.19 11.91 41472 42.4710 176.30 168.37 12.39 41473 42.4720 173.61 168.55 12.38 41474 42.4730 170.23 168.74 12.33 41475 42.4740 163.42 168.94 12.07 41476 42.4750 161.98 169.15 12.04 41477 42.4760 181.48 169.37 12.69 41478 42.4770 172.15 169.60 12.40 41479 42.4780 170.96 169.84 12.29 41480 42.4790 176.62 170.09 12.44 41481 42.4800 166.47 170.35 12.13 41482 42.4810 176.14 170.62 12.55 41483 42.4820 159.31 170.91 11.90 41484 42.4830 176.56 171.21 12.55 41485 42.4840 173.02 171.52 12.38 41486 42.4850 196.82 171.85 13.23 41487 42.4860 176.42 172.19 12.54 41488 42.4870 176.10 172.54 12.60 41489 42.4880 181.18 172.91 12.70 41490 42.4890 178.27 173.30 12.52 41491 42.4900 176.77 173.71 12.60 41492 42.4910 171.51 174.13 12.43 41493 42.4920 179.67 174.57 12.68 41494 42.4930 166.99 175.04 12.15 41495 42.4940 177.46 175.52 12.58 41496 42.4950 183.32 176.02 12.79 41497 42.4960 181.11 176.55 12.64 41498 42.4970 187.24 177.10 12.89 41499 42.4980 185.83 177.68 12.81 41500 42.4990 183.32 178.28 12.81 41501 42.5000 194.71 178.91 13.21 41502 42.5010 177.44 179.58 12.50 41503 42.5020 181.93 180.27 12.65 41504 42.5030 186.87 181.00 12.88 41505 42.5040 184.77 181.66 12.84 41506 42.5050 186.08 182.46 12.81 41507 42.5060 206.77 183.30 13.50 41508 42.5070 199.65 184.18 13.26 41509 42.5080 189.42 185.10 12.93 41510 42.5090 189.16 186.07 12.95 41511 42.5100 192.01 187.09 13.09 41512 42.5110 192.98 188.16 13.14 41513 42.5120 190.47 189.29 13.00 41514 42.5130 192.14 190.47 12.99 41515 42.5140 194.46 191.71 13.21 41516 42.5150 179.40 193.01 12.60 41517 42.5160 198.76 194.38 13.29 41518 42.5170 207.77 195.83 13.56 41519 42.5180 197.99 197.35 13.30 41520 42.5190 204.63 198.94 13.52 41521 42.5200 216.53 200.61 13.83 41522 42.5210 182.70 202.36 12.75 41523 42.5220 187.28 204.20 12.94 41524 42.5230 197.98 206.13 13.22 41525 42.5240 208.08 208.15 13.64 41526 42.5250 210.60 210.26 13.63 41527 42.5260 218.09 212.47 13.92 41528 42.5270 216.70 214.77 13.88 41529 42.5280 218.03 217.16 13.99 41530 42.5290 206.57 219.64 13.60 41531 42.5300 209.62 222.22 13.71 41532 42.5310 230.35 224.86 14.33 41533 42.5320 222.50 227.60 14.07 41534 42.5330 237.41 230.39 14.50 41535 42.5340 227.75 233.23 14.17 41536 42.5350 230.28 236.10 14.29 41537 42.5360 242.67 239.00 14.64 41538 42.5370 237.32 241.88 14.48 41539 42.5380 230.04 244.73 14.27 41540 42.5390 242.61 247.53 14.63 41541 42.5400 266.74 250.22 15.48 41542 42.5410 278.24 252.79 15.78 41543 42.5420 275.35 255.21 15.65 41544 42.5430 265.44 257.41 15.39 41545 42.5440 255.49 259.40 15.02 41546 42.5450 284.70 261.12 15.94 41547 42.5460 285.60 262.56 15.95 41548 42.5470 268.04 263.69 15.46 41549 42.5480 245.19 264.50 14.71 41550 42.5490 266.96 264.97 15.37 41551 42.5500 236.81 265.11 14.50 41552 42.5510 224.55 264.94 14.09 41553 42.5520 249.94 264.46 14.94 41554 42.5530 249.20 263.69 14.87 41555 42.5540 248.83 262.67 14.85 41556 42.5550 266.05 261.43 15.35 41557 42.5560 263.70 260.01 15.26 41558 42.5570 232.00 258.43 14.28 41559 42.5580 226.54 256.74 14.18 41560 42.5590 221.77 254.98 14.01 41561 42.5600 252.44 253.16 15.03 41562 42.5610 261.68 251.35 15.30 41563 42.5620 243.30 249.55 14.73 41564 42.5630 226.94 247.79 14.17 41565 42.5640 229.54 246.10 14.19 41566 42.5650 221.27 244.50 13.97 41567 42.5660 226.70 242.99 14.18 41568 42.5670 249.86 241.59 14.90 41569 42.5680 238.18 240.33 14.51 41570 42.5690 231.40 239.20 14.32 41571 42.5700 241.51 238.20 14.65 41572 42.5710 244.22 237.36 14.71 41573 42.5720 234.49 236.67 14.41 41574 42.5730 209.81 236.12 13.67 41575 42.5740 230.96 235.74 14.33 41576 42.5750 223.08 235.51 14.04 41577 42.5760 233.96 235.45 14.42 41578 42.5770 238.05 235.55 14.54 41579 42.5780 222.49 235.80 14.03 41580 42.5790 235.73 236.22 14.47 41581 42.5800 222.57 236.80 14.05 41582 42.5810 213.02 237.54 13.79 41583 42.5820 208.88 238.44 13.54 41584 42.5830 246.45 239.51 14.79 41585 42.5840 258.00 240.73 15.10 41586 42.5850 238.77 242.10 14.55 41587 42.5860 226.44 243.62 14.10 41588 42.5870 231.13 245.29 14.27 41589 42.5880 256.93 247.10 15.00 41590 42.5890 222.72 249.03 14.03 41591 42.5900 238.74 251.09 14.61 41592 42.5910 251.45 253.27 14.92 41593 42.5920 260.54 255.53 15.12 41594 42.5930 271.08 257.89 15.41 41595 42.5940 275.34 260.31 15.64 41596 42.5950 278.96 262.76 15.77 41597 42.5960 276.76 265.22 15.67 41598 42.5970 284.29 267.67 15.87 41599 42.5980 262.94 270.06 15.24 41600 42.5990 284.41 272.39 15.90 41601 42.6000 322.73 274.58 16.98 41602 42.6010 300.80 276.60 16.31 41603 42.6020 312.49 278.42 16.66 41604 42.6030 324.18 280.00 17.03 41605 42.6040 318.01 281.30 16.74 41606 42.6050 285.87 282.30 15.86 41607 42.6060 298.28 282.96 16.29 41608 42.6070 306.12 283.27 16.46 41609 42.6080 309.73 283.20 16.56 41610 42.6090 306.36 282.76 16.47 41611 42.6100 295.35 281.95 16.20 41612 42.6110 278.40 280.78 15.70 41613 42.6120 294.69 279.27 16.17 41614 42.6130 278.68 277.44 15.76 41615 42.6140 265.35 275.33 15.39 41616 42.6150 270.34 272.96 15.54 41617 42.6160 254.17 270.39 15.04 41618 42.6170 268.25 267.64 15.46 41619 42.6180 251.84 264.76 14.90 41620 42.6190 250.91 261.77 14.97 41621 42.6200 253.78 258.73 15.05 41622 42.6210 253.84 255.65 15.02 41623 42.6220 256.70 252.55 15.13 41624 42.6230 252.05 249.49 15.01 41625 42.6240 256.39 246.46 15.09 41626 42.6250 232.58 243.49 14.35 41627 42.6260 249.49 240.60 14.82 41628 42.6270 248.86 237.79 14.88 41629 42.6280 218.53 235.07 13.94 41630 42.6290 230.05 232.46 14.28 41631 42.6300 236.53 229.95 14.47 41632 42.6310 226.95 227.54 14.13 41633 42.6320 245.31 225.26 14.76 41634 42.6330 226.77 223.08 14.23 41635 42.6340 214.16 221.01 13.75 41636 42.6350 226.03 219.05 14.09 41637 42.6360 245.03 217.18 14.72 41638 42.6370 215.89 215.41 13.77 41639 42.6380 207.51 213.75 13.62 41640 42.6390 217.72 212.18 13.90 41641 42.6400 205.26 210.69 13.54 41642 42.6410 214.71 209.29 13.82 41643 42.6420 213.16 207.96 13.68 41644 42.6430 202.19 206.70 13.34 41645 42.6440 195.00 205.52 13.12 41646 42.6450 216.55 204.40 13.87 41647 42.6460 204.59 203.33 13.44 41648 42.6470 185.98 202.32 12.82 41649 42.6480 219.29 201.36 13.96 41650 42.6490 206.10 200.45 13.53 41651 42.6500 205.50 199.57 13.52 41652 42.6510 222.17 198.74 14.00 41653 42.6520 210.87 197.94 13.64 41654 42.6530 204.17 197.17 13.43 41655 42.6540 195.38 196.44 13.14 41656 42.6550 185.07 195.73 12.78 41657 42.6560 189.10 195.05 12.82 41658 42.6570 196.98 194.39 13.20 41659 42.6580 206.31 193.75 13.56 41660 42.6590 198.04 193.14 13.26 41661 42.6600 190.51 192.54 12.99 41662 42.6610 199.44 191.97 13.31 41663 42.6620 176.27 191.41 12.40 41664 42.6630 185.26 190.87 12.80 41665 42.6640 210.78 190.34 13.67 41666 42.6650 197.24 189.83 13.22 41667 42.6660 209.37 189.34 13.63 41668 42.6670 203.55 188.86 13.43 41669 42.6680 194.18 188.39 13.17 41670 42.6690 206.73 187.94 13.58 41671 42.6700 203.93 187.50 13.38 41672 42.6710 198.11 187.07 13.27 41673 42.6720 180.86 186.66 12.67 41674 42.6730 179.91 186.27 12.61 41675 42.6740 195.05 185.89 13.13 41676 42.6750 188.80 185.52 12.92 41677 42.6760 189.24 185.18 12.89 41678 42.6770 199.67 184.85 13.24 41679 42.6780 174.05 184.54 12.45 41680 42.6790 194.66 184.25 13.15 41681 42.6800 194.11 183.98 13.11 41682 42.6810 198.01 183.73 13.27 41683 42.6820 176.56 183.50 12.42 41684 42.6830 164.38 183.29 12.09 41685 42.6840 180.71 183.10 12.65 41686 42.6850 178.52 182.94 12.44 41687 42.6860 197.75 182.80 13.19 41688 42.6870 207.36 182.68 13.53 41689 42.6880 192.36 182.59 13.12 41690 42.6890 198.55 182.51 13.28 41691 42.6900 187.45 182.47 12.93 41692 42.6910 185.85 182.44 12.83 41693 42.6920 184.98 182.44 12.81 41694 42.6930 192.41 182.47 13.04 41695 42.6940 205.85 182.52 13.48 41696 42.6950 197.71 182.62 13.20 41697 42.6960 150.45 182.72 11.55 41698 42.6970 184.03 182.85 12.74 41699 42.6980 207.22 183.00 13.55 41700 42.6990 190.07 183.18 12.97 41701 42.7000 196.02 183.38 13.21 41702 42.7010 190.85 183.61 12.97 41703 42.7020 199.80 183.92 13.33 41704 42.7030 204.33 184.21 13.43 41705 42.7040 185.04 184.53 12.87 41706 42.7050 202.00 184.88 13.48 41707 42.7060 208.10 185.25 13.54 41708 42.7070 200.18 185.66 13.16 41709 42.7080 181.71 186.10 12.74 41710 42.7090 189.76 186.58 13.00 41711 42.7100 184.12 187.09 12.73 41712 42.7110 181.16 187.57 12.61 41713 42.7120 192.93 188.16 13.02 41714 42.7130 220.80 188.78 13.99 41715 42.7140 188.85 189.45 12.90 41716 42.7150 212.21 190.15 13.69 41717 42.7160 200.71 190.90 13.32 41718 42.7170 182.65 191.70 12.67 41719 42.7180 183.25 192.54 12.76 41720 42.7190 188.96 193.44 12.96 41721 42.7200 188.24 194.39 12.95 41722 42.7210 178.38 195.39 12.56 41723 42.7220 209.11 196.46 13.64 41724 42.7230 218.69 197.58 13.97 41725 42.7240 191.73 198.77 13.11 41726 42.7250 209.26 200.02 13.72 41727 42.7260 215.11 201.35 13.81 41728 42.7270 204.84 202.75 13.50 41729 42.7280 191.02 204.23 13.01 41730 42.7290 217.81 205.76 13.93 41731 42.7300 206.80 207.40 13.52 41732 42.7310 206.69 209.14 13.50 41733 42.7320 191.20 210.97 12.97 41734 42.7330 218.12 212.90 13.88 41735 42.7340 220.57 214.94 14.01 41736 42.7350 218.07 217.08 13.97 41737 42.7360 226.37 219.32 14.16 41738 42.7370 221.26 221.70 13.95 41739 42.7380 235.24 224.19 14.41 41740 42.7390 229.32 226.79 14.29 41741 42.7400 219.08 229.55 13.93 41742 42.7410 197.18 232.43 13.22 41743 42.7420 220.34 235.43 13.97 41744 42.7430 249.65 238.58 14.95 41745 42.7440 243.88 241.86 14.74 41746 42.7450 220.53 245.27 14.03 41747 42.7460 239.98 248.82 14.57 41748 42.7470 245.45 252.52 14.68 41749 42.7480 257.89 256.31 15.17 41750 42.7490 250.50 260.23 14.88 41751 42.7500 267.33 264.24 15.40 41752 42.7510 261.49 268.33 15.20 41753 42.7520 280.33 272.49 15.68 41754 42.7530 272.20 276.69 15.58 41755 42.7540 278.55 280.91 15.73 41756 42.7550 282.76 285.08 15.82 41757 42.7560 302.66 289.20 16.33 41758 42.7570 302.27 293.21 16.35 41759 42.7580 309.31 297.05 16.58 41760 42.7590 276.92 300.71 15.70 41761 42.7600 308.29 304.10 16.59 41762 42.7610 310.33 307.20 16.65 41763 42.7620 297.53 309.93 16.25 41764 42.7630 332.76 312.26 17.17 41765 42.7640 298.91 314.13 16.29 41766 42.7650 333.21 315.53 17.25 41767 42.7660 302.16 316.41 16.37 41768 42.7670 306.34 316.76 16.49 41769 42.7680 314.04 316.58 16.70 41770 42.7690 293.09 315.87 16.06 41771 42.7700 328.06 314.65 17.08 41772 42.7710 289.38 312.93 16.05 41773 42.7720 294.44 310.77 16.17 41774 42.7730 321.81 308.20 16.86 41775 42.7740 303.54 305.26 16.38 41776 42.7750 299.40 301.99 16.29 41777 42.7760 280.99 298.48 15.74 41778 42.7770 328.47 294.73 17.06 41779 42.7780 320.21 290.83 16.92 41780 42.7790 272.50 286.81 15.61 41781 42.7800 271.40 282.70 15.48 41782 42.7810 246.07 278.55 14.80 41783 42.7820 267.32 274.39 15.43 41784 42.7830 260.80 270.25 15.23 41785 42.7840 260.41 266.17 15.15 41786 42.7850 270.08 262.16 15.50 41787 42.7860 262.48 258.22 15.17 41788 42.7870 233.79 254.39 14.38 41789 42.7880 242.48 250.67 14.69 41790 42.7890 238.86 247.05 14.51 41791 42.7900 242.07 243.55 14.62 41792 42.7910 247.69 240.20 14.81 41793 42.7920 240.36 236.95 14.60 41794 42.7930 213.95 233.83 13.83 41795 42.7940 210.01 230.84 13.69 41796 42.7950 230.79 227.96 14.29 41797 42.7960 223.27 225.18 14.04 41798 42.7970 204.77 222.54 13.47 41799 42.7980 205.75 219.99 13.52 41800 42.7990 233.35 217.56 14.44 41801 42.8000 202.40 215.23 13.46 41802 42.8010 203.16 212.99 13.40 41803 42.8020 200.38 210.84 13.30 41804 42.8030 202.16 208.78 13.38 41805 42.8040 212.30 206.81 13.81 41806 42.8050 205.03 204.93 13.48 41807 42.8060 209.77 203.12 13.63 41808 42.8070 224.14 201.40 14.10 41809 42.8080 207.86 199.74 13.57 41810 42.8090 221.81 198.16 14.13 41811 42.8100 199.15 196.64 13.32 41812 42.8110 204.15 195.19 13.41 41813 42.8120 204.97 193.69 13.55 41814 42.8130 198.11 192.37 13.33 41815 42.8140 196.17 191.10 13.22 41816 42.8150 203.77 189.89 13.47 41817 42.8160 186.88 188.73 12.86 41818 42.8170 187.85 187.62 12.98 41819 42.8180 183.10 186.57 12.80 41820 42.8190 176.74 185.55 12.49 41821 42.8200 195.35 184.58 13.16 41822 42.8210 192.98 183.65 13.12 41823 42.8220 185.54 182.77 12.91 41824 42.8230 186.32 181.92 12.76 41825 42.8240 198.23 181.10 13.28 41826 42.8250 187.35 180.32 12.85 41827 42.8260 183.24 179.58 12.71 41828 42.8270 189.81 178.86 13.02 41829 42.8280 180.97 178.18 12.66 41830 42.8290 189.86 177.52 12.99 41831 42.8300 185.96 176.89 12.85 41832 42.8310 198.90 176.29 13.25 41833 42.8320 195.83 175.71 13.13 41834 42.8330 181.14 175.15 12.62 41835 42.8340 164.80 174.62 12.05 41836 42.8350 189.15 174.11 12.98 41837 42.8360 182.87 173.62 12.78 41838 42.8370 167.32 173.15 12.17 41839 42.8380 165.70 172.70 12.16 41840 42.8390 183.37 172.27 12.82 41841 42.8400 191.46 171.85 13.04 41842 42.8410 202.98 171.46 13.50 41843 42.8420 190.05 171.08 12.96 41844 42.8430 182.74 170.71 12.71 41845 42.8440 183.69 170.36 12.78 41846 42.8450 188.38 170.03 12.92 41847 42.8460 176.62 169.71 12.51 41848 42.8470 164.43 169.40 12.12 41849 42.8480 167.76 169.11 12.21 41850 42.8490 162.90 168.83 11.95 41851 42.8500 160.56 168.56 11.90 41852 42.8510 153.23 168.31 11.66 41853 42.8520 172.47 168.07 12.39 41854 42.8530 177.35 167.84 12.60 41855 42.8540 190.52 167.62 12.99 41856 42.8550 183.22 167.42 12.68 41857 42.8560 165.22 167.23 12.05 41858 42.8570 184.15 167.04 12.78 41859 42.8580 167.85 166.87 12.20 41860 42.8590 179.68 166.72 12.67 41861 42.8600 189.10 166.57 12.96 41862 42.8610 188.51 166.43 12.92 41863 42.8620 165.02 166.31 12.10 41864 42.8630 174.59 166.20 12.40 41865 42.8640 177.00 166.10 12.55 41866 42.8650 191.94 166.00 13.06 41867 42.8660 161.37 165.93 11.99 41868 42.8670 148.55 165.86 11.46 41869 42.8680 175.37 165.80 12.46 41870 42.8690 173.61 165.75 12.39 41871 42.8700 173.74 165.71 12.39 41872 42.8710 180.84 165.78 12.65 41873 42.8720 160.09 165.76 11.90 41874 42.8730 164.65 165.75 12.08 41875 42.8740 170.63 165.75 12.36 41876 42.8750 179.91 165.76 12.64 41877 42.8760 171.02 165.77 12.35 41878 42.8770 162.89 165.79 11.97 41879 42.8780 172.14 165.82 12.27 41880 42.8790 182.21 165.84 12.71 41881 42.8800 177.48 165.86 12.54 41882 42.8810 157.84 165.89 11.76 41883 42.8820 177.22 165.90 12.52 41884 42.8830 176.00 165.92 12.53 41885 42.8840 177.06 165.92 12.48 41886 42.8850 164.44 165.91 12.07 41887 42.8860 169.59 165.89 12.23 41888 42.8870 163.07 165.85 11.96 41889 42.8880 148.50 165.79 11.39 41890 42.8890 179.06 165.72 12.61 41891 42.8900 172.37 165.62 12.33 41892 42.8910 147.60 165.56 11.44 41893 42.8920 170.17 165.43 12.29 41894 42.8930 166.86 165.27 12.09 41895 42.8940 160.54 165.10 11.88 41896 42.8950 168.07 164.91 12.20 41897 42.8960 177.90 164.70 12.52 41898 42.8970 168.25 164.49 12.22 41899 42.8980 169.24 164.26 12.29 41900 42.8990 163.24 164.02 12.04 41901 42.9000 165.39 163.77 12.05 41902 42.9010 166.25 163.53 12.13 41903 42.9020 158.44 163.28 11.90 41904 42.9030 149.47 163.03 11.52 41905 42.9040 175.71 162.78 12.46 41906 42.9050 172.39 162.54 12.34 41907 42.9060 161.44 162.29 11.91 41908 42.9070 158.35 162.05 11.82 41909 42.9080 162.93 161.82 11.95 41910 42.9090 144.98 161.60 11.27 41911 42.9100 157.35 161.38 11.75 41912 42.9110 159.29 161.17 11.78 41913 42.9120 163.72 160.96 12.08 41914 42.9130 163.03 160.76 12.09 41915 42.9140 165.75 160.57 12.10 41916 42.9150 171.02 160.39 12.31 41917 42.9160 154.51 160.21 11.68 41918 42.9170 166.11 160.04 12.16 41919 42.9180 158.17 159.87 11.88 41920 42.9190 155.65 159.71 11.77 41921 42.9200 179.52 159.56 12.69 41922 42.9210 170.49 159.42 12.35 41923 42.9220 151.71 159.27 11.52 41924 42.9230 157.84 159.14 11.83 41925 42.9240 157.56 159.01 11.75 41926 42.9250 177.19 158.89 12.53 41927 42.9260 174.32 158.77 12.40 41928 42.9270 175.24 158.65 12.48 41929 42.9280 146.93 158.54 11.44 41930 42.9290 156.33 158.43 11.80 41931 42.9300 162.74 158.27 11.99 41932 42.9310 153.06 158.18 11.57 41933 42.9320 139.68 158.08 11.11 41934 42.9330 162.32 157.99 11.99 41935 42.9340 149.71 157.90 11.51 41936 42.9350 162.48 157.81 11.99 41937 42.9360 177.22 157.73 12.53 41938 42.9370 197.95 157.65 13.28 41939 42.9380 169.61 157.57 12.32 41940 42.9390 153.17 157.50 11.60 41941 42.9400 146.40 157.43 11.32 41942 42.9410 151.29 157.36 11.49 41943 42.9420 149.45 157.29 11.57 41944 42.9430 162.02 157.23 11.96 41945 42.9440 166.55 157.17 12.14 41946 42.9450 158.06 157.11 11.90 41947 42.9460 155.70 157.05 11.77 41948 42.9470 152.44 156.99 11.65 41949 42.9480 130.06 156.94 10.72 41950 42.9490 155.63 156.88 11.77 41951 42.9500 161.56 156.83 11.99 41952 42.9510 145.17 156.79 11.36 41953 42.9520 156.52 156.74 11.80 41954 42.9530 157.96 156.69 11.80 41955 42.9540 148.61 156.65 11.48 41956 42.9550 152.14 156.61 11.60 41957 42.9560 169.22 156.57 12.25 41958 42.9570 148.77 156.53 11.46 41959 42.9580 149.30 156.49 11.50 41960 42.9590 179.08 156.45 12.62 41961 42.9600 161.22 156.42 11.95 41962 42.9610 156.28 156.38 11.86 41963 42.9620 176.60 156.35 12.53 41964 42.9630 168.14 156.32 12.27 41965 42.9640 174.51 156.29 12.42 41966 42.9650 159.16 156.27 11.91 41967 42.9660 144.24 156.24 11.34 41968 42.9670 158.16 156.27 11.89 41969 42.9680 147.25 156.25 11.40 41970 42.9690 160.19 156.23 11.87 41971 42.9700 160.26 156.21 11.92 41972 42.9710 161.66 156.19 12.04 41973 42.9720 171.27 156.17 12.42 41974 42.9730 171.62 156.16 12.37 41975 42.9740 176.22 156.14 12.46 41976 42.9750 166.09 156.13 12.08 41977 42.9760 155.14 156.12 11.70 41978 42.9770 165.73 156.11 12.12 41979 42.9780 151.99 156.10 11.59 41980 42.9790 176.46 156.09 12.53 41981 42.9800 166.90 156.08 12.23 41982 42.9810 161.66 156.08 11.95 41983 42.9820 153.92 156.08 11.62 41984 42.9830 162.46 156.08 12.02 41985 42.9840 160.28 156.08 12.01 41986 42.9850 171.76 156.08 12.40 41987 42.9860 147.20 156.08 11.47 41988 42.9870 152.74 156.09 11.66 41989 42.9880 159.44 156.10 11.84 41990 42.9890 166.18 156.11 12.14 41991 42.9900 158.77 156.12 11.92 41992 42.9910 168.50 156.13 12.17 41993 42.9920 156.36 156.15 11.72 41994 42.9930 156.20 156.16 11.78 41995 42.9940 152.69 156.18 11.56 41996 42.9950 160.04 156.21 11.96 41997 42.9960 167.97 156.23 12.18 41998 42.9970 179.87 156.25 12.66 41999 42.9980 150.84 156.28 11.55 42000 42.9990 162.91 156.31 12.05 42001 43.0000 154.28 156.34 11.68 42002 43.0010 154.21 156.37 11.69 42003 43.0020 169.64 156.40 12.30 42004 43.0030 159.87 156.44 11.92 42005 43.0040 149.13 156.48 11.46 42006 43.0050 146.27 156.52 11.42 42007 43.0060 162.19 156.56 12.06 42008 43.0070 163.24 156.61 12.07 42009 43.0080 166.10 156.66 12.10 42010 43.0090 159.56 156.71 11.86 42011 43.0100 163.93 156.77 12.08 42012 43.0110 168.37 156.83 12.27 42013 43.0120 172.82 156.89 12.36 42014 43.0130 148.08 156.96 11.41 42015 43.0140 179.46 157.04 12.58 42016 43.0150 166.11 157.11 12.09 42017 43.0160 139.97 157.20 11.09 42018 43.0170 155.24 157.29 11.76 42019 43.0180 173.76 157.38 12.45 42020 43.0190 162.40 157.48 11.90 42021 43.0200 156.96 157.59 11.69 42022 43.0210 182.61 157.70 12.69 42023 43.0220 160.99 157.82 11.90 42024 43.0230 156.59 157.94 11.71 42025 43.0240 167.55 158.07 12.17 42026 43.0250 148.37 158.21 11.44 42027 43.0260 178.18 158.35 12.61 42028 43.0270 155.27 158.50 11.78 42029 43.0280 157.33 158.65 11.78 42030 43.0290 154.44 158.81 11.67 42031 43.0300 151.85 158.97 11.59 42032 43.0310 187.02 159.13 12.91 42033 43.0320 155.07 159.29 11.74 42034 43.0330 152.25 159.45 11.63 42035 43.0340 155.77 159.61 11.75 42036 43.0350 158.51 159.76 11.91 42037 43.0360 154.77 159.91 11.71 42038 43.0370 146.53 160.04 11.44 42039 43.0380 149.57 160.17 11.54 42040 43.0390 151.01 160.28 11.57 42041 43.0400 159.53 160.38 12.00 42042 43.0410 159.26 160.45 11.90 42043 43.0420 160.94 160.51 12.01 42044 43.0430 147.09 160.55 11.46 42045 43.0440 156.36 160.56 11.78 42046 43.0450 144.53 160.56 11.33 42047 43.0460 164.73 160.53 12.06 42048 43.0470 171.08 160.48 12.29 42049 43.0480 159.55 160.46 11.92 42050 43.0490 165.27 160.37 12.09 42051 43.0500 165.47 160.27 12.03 42052 43.0510 161.33 160.15 11.94 42053 43.0520 161.68 160.03 12.00 42054 43.0530 167.66 159.89 12.11 42055 43.0540 147.26 159.74 11.35 42056 43.0550 157.22 159.59 11.75 42057 43.0560 158.22 159.44 11.87 42058 43.0570 168.45 159.29 12.25 42059 43.0580 149.86 159.13 11.48 42060 43.0590 141.41 158.98 11.16 42061 43.0600 148.97 158.83 11.53 42062 43.0610 149.98 158.69 11.59 42063 43.0620 168.42 158.55 12.24 42064 43.0630 173.45 158.41 12.41 42065 43.0640 156.40 158.29 11.71 42066 43.0650 168.97 158.17 12.28 42067 43.0660 166.15 158.05 12.13 42068 43.0670 169.11 157.95 12.29 42069 43.0680 151.70 157.85 11.58 42070 43.0690 146.74 157.76 11.48 42071 43.0700 159.55 157.67 11.91 42072 43.0710 195.17 157.60 13.14 42073 43.0720 161.59 157.53 11.94 42074 43.0730 157.17 157.46 11.85 42075 43.0740 179.73 157.41 12.69 42076 43.0750 174.73 157.36 12.46 42077 43.0760 168.88 157.32 12.34 42078 43.0770 150.14 157.29 11.51 42079 43.0780 166.57 157.26 12.12 42080 43.0790 163.03 157.24 12.07 42081 43.0800 170.99 157.23 12.37 42082 43.0810 158.23 157.23 11.85 42083 43.0820 142.10 157.23 11.15 42084 43.0830 152.48 157.24 11.68 42085 43.0840 155.28 157.25 11.71 42086 43.0850 165.79 157.27 12.09 42087 43.0860 156.10 157.30 11.83 42088 43.0870 147.40 157.33 11.40 42089 43.0880 148.16 157.38 11.43 42090 43.0890 163.07 157.42 12.05 42091 43.0900 152.38 157.48 11.64 42092 43.0910 154.63 157.54 11.67 42093 43.0920 143.11 157.62 11.26 42094 43.0930 154.41 157.69 11.77 42095 43.0940 166.25 157.78 12.19 42096 43.0950 162.55 157.88 12.03 42097 43.0960 156.67 157.98 11.82 42098 43.0970 137.00 158.09 11.06 42099 43.0980 143.30 158.21 11.31 42100 43.0990 163.14 158.17 12.06 42101 43.1000 145.51 158.31 11.29 42102 43.1010 141.63 158.45 11.19 42103 43.1020 158.26 158.61 11.89 42104 43.1030 153.57 158.77 11.74 42105 43.1040 151.39 158.93 11.67 42106 43.1050 154.08 159.11 11.73 42107 43.1060 154.59 159.29 11.73 42108 43.1070 168.02 159.48 12.21 42109 43.1080 162.42 159.68 12.00 42110 43.1090 164.00 159.87 12.01 42111 43.1100 163.48 160.07 11.96 42112 43.1110 157.01 160.27 11.85 42113 43.1120 169.62 160.48 12.30 42114 43.1130 159.21 160.68 11.89 42115 43.1140 167.04 160.87 12.22 42116 43.1150 164.21 161.06 12.12 42117 43.1160 155.43 161.24 11.68 42118 43.1170 177.67 161.41 12.51 42119 43.1180 148.39 161.57 11.36 42120 43.1190 157.86 161.71 11.90 42121 43.1200 147.43 161.84 11.46 42122 43.1210 162.43 161.97 12.08 42123 43.1220 153.88 162.07 11.68 42124 43.1230 149.54 162.15 11.50 42125 43.1240 152.69 162.21 11.55 42126 43.1250 155.90 162.26 11.71 42127 43.1260 171.77 162.30 12.31 42128 43.1270 159.77 162.32 11.88 42129 43.1280 166.82 162.34 12.16 42130 43.1290 159.88 162.35 11.90 42131 43.1300 185.39 162.36 12.83 42132 43.1310 164.20 162.37 12.04 42133 43.1320 147.00 162.38 11.39 42134 43.1330 150.13 162.39 11.53 42135 43.1340 150.13 162.41 11.49 42136 43.1350 155.41 162.43 11.74 42137 43.1360 159.29 162.47 11.86 42138 43.1370 171.64 162.51 12.35 42139 43.1380 178.57 162.57 12.54 42140 43.1390 173.70 162.64 12.37 42141 43.1400 178.79 162.73 12.53 42142 43.1410 165.89 162.82 12.05 42143 43.1420 145.19 162.94 11.34 42144 43.1430 178.69 163.07 12.57 42145 43.1440 162.61 163.21 11.95 42146 43.1450 159.45 163.37 11.93 42147 43.1460 167.33 163.54 12.18 42148 43.1470 168.58 163.73 12.26 42149 43.1480 151.95 163.93 11.59 42150 43.1490 158.68 164.14 11.85 42151 43.1500 163.59 164.37 11.96 42152 43.1510 170.03 164.60 12.22 42153 43.1520 181.49 164.83 12.68 42154 43.1530 155.47 165.07 11.72 42155 43.1540 146.95 165.32 11.35 42156 43.1550 165.59 165.55 12.22 42157 43.1560 182.96 165.79 12.78 42158 43.1570 180.79 166.02 12.60 42159 43.1580 177.71 166.23 12.49 42160 43.1590 181.29 166.43 12.64 42161 43.1600 178.02 166.60 12.49 42162 43.1610 151.59 166.76 11.51 42163 43.1620 176.12 166.88 12.49 42164 43.1630 176.34 166.98 12.49 42165 43.1640 151.86 167.05 11.59 42166 43.1650 175.59 167.08 12.52 42167 43.1660 159.96 167.10 11.91 42168 43.1670 172.68 167.07 12.41 42169 43.1680 158.40 167.00 11.87 42170 43.1690 173.80 166.89 12.47 42171 43.1700 184.27 166.76 12.82 42172 43.1710 169.93 166.60 12.31 42173 43.1720 173.04 166.41 12.35 42174 43.1730 156.07 166.20 11.74 42175 43.1740 143.64 165.98 11.31 42176 43.1750 164.83 165.74 12.05 42177 43.1760 170.30 165.49 12.25 42178 43.1770 150.32 165.05 11.43 42179 43.1780 162.03 164.79 12.01 42180 43.1790 162.97 164.53 11.94 42181 43.1800 164.09 164.27 12.02 42182 43.1810 163.59 164.02 12.03 42183 43.1820 164.26 163.78 12.02 42184 43.1830 148.28 163.55 11.45 42185 43.1840 166.15 163.32 12.14 42186 43.1850 147.49 163.11 11.47 42187 43.1860 169.04 162.91 12.23 42188 43.1870 164.70 162.72 12.00 42189 43.1880 156.28 162.55 11.78 42190 43.1890 155.36 162.39 11.82 42191 43.1900 156.39 162.25 11.78 42192 43.1910 162.56 162.12 11.95 42193 43.1920 155.98 162.01 11.65 42194 43.1930 150.22 161.91 11.56 42195 43.1940 166.37 161.83 12.17 42196 43.1950 179.74 161.77 12.69 42197 43.1960 167.74 161.71 12.20 42198 43.1970 164.41 161.68 12.07 42199 43.1980 172.29 161.66 12.39 42200 43.1990 159.91 161.65 11.97 42201 43.2000 174.20 161.67 12.49 42202 43.2010 140.61 161.69 11.14 42203 43.2020 160.47 161.74 11.91 42204 43.2030 166.66 161.79 12.12 42205 43.2040 159.45 161.87 11.83 42206 43.2050 161.71 161.96 11.92 42207 43.2060 155.10 162.07 11.73 42208 43.2070 156.66 162.19 11.74 42209 43.2080 168.95 162.33 12.20 42210 43.2090 147.96 162.49 11.44 42211 43.2100 153.64 162.67 11.69 42212 43.2110 142.07 162.87 11.21 42213 43.2120 171.57 163.08 12.28 42214 43.2130 160.57 163.32 11.89 42215 43.2140 175.25 163.57 12.46 42216 43.2150 157.16 163.84 11.77 42217 43.2160 150.29 164.14 11.44 42218 43.2170 185.33 164.46 12.83 42219 43.2180 178.95 164.80 12.63 42220 43.2190 186.08 165.16 12.93 42221 43.2200 178.97 165.54 12.63 42222 43.2210 162.80 165.95 12.09 42223 43.2220 167.31 166.38 12.19 42224 43.2230 175.71 166.83 12.47 42225 43.2240 163.04 167.31 12.03 42226 43.2250 168.99 167.80 12.21 42227 43.2260 157.97 168.32 11.86 42228 43.2270 159.97 168.86 11.94 42229 43.2280 153.30 169.42 11.67 42230 43.2290 174.69 169.99 12.54 42231 43.2300 178.20 170.58 12.62 42232 43.2310 179.39 171.17 12.59 42233 43.2320 173.21 171.77 12.40 42234 43.2330 173.67 172.38 12.38 42235 43.2340 171.83 172.98 12.29 42236 43.2350 170.87 173.57 12.30 42237 43.2360 173.26 174.13 12.41 42238 43.2370 170.26 174.68 12.23 42239 43.2380 172.62 175.20 12.26 42240 43.2390 185.26 175.67 12.83 42241 43.2400 175.32 176.10 12.47 42242 43.2410 179.39 176.49 12.60 42243 43.2420 159.09 176.81 11.86 42244 43.2430 183.88 177.07 12.87 42245 43.2440 187.02 177.28 12.92 42246 43.2450 186.09 177.42 12.90 42247 43.2460 173.90 177.50 12.46 42248 43.2470 162.64 177.52 12.03 42249 43.2480 182.17 177.48 12.70 42250 43.2490 189.29 177.39 12.91 42251 43.2500 173.50 177.25 12.37 42252 43.2510 169.00 177.08 12.23 42253 43.2520 182.58 176.88 12.69 42254 43.2530 189.52 176.65 13.01 42255 43.2540 184.39 176.40 12.79 42256 43.2550 169.39 176.15 12.25 42257 43.2560 157.76 175.90 11.77 42258 43.2570 166.60 175.65 12.08 42259 43.2580 162.40 175.41 11.96 42260 43.2590 156.67 175.18 11.80 42261 43.2600 157.57 174.98 11.80 42262 43.2610 190.31 174.80 12.96 42263 43.2620 164.39 174.65 12.06 42264 43.2630 163.29 174.52 11.98 42265 43.2640 174.00 174.44 12.48 42266 43.2650 179.01 174.38 12.60 42267 43.2660 185.50 174.37 12.89 42268 43.2670 178.83 174.39 12.61 42269 43.2680 197.75 174.45 13.33 42270 43.2690 170.63 174.55 12.31 42271 43.2700 172.29 174.69 12.43 42272 43.2710 183.74 174.88 12.79 42273 43.2720 176.04 175.10 12.46 42274 43.2730 184.53 175.37 12.76 42275 43.2740 178.99 175.68 12.62 42276 43.2750 168.23 176.03 12.17 42277 43.2760 178.24 176.42 12.58 42278 43.2770 161.86 176.84 12.00 42279 43.2780 174.58 177.30 12.41 42280 43.2790 193.87 177.80 13.15 42281 43.2800 182.06 178.33 12.74 42282 43.2810 161.83 178.88 12.04 42283 43.2820 175.36 179.47 12.52 42284 43.2830 178.55 180.07 12.60 42285 43.2840 181.28 180.68 12.69 42286 43.2850 182.93 181.30 12.66 42287 43.2860 189.89 181.92 13.01 42288 43.2870 199.64 182.53 13.28 42289 43.2880 188.80 183.12 12.89 42290 43.2890 189.91 183.70 13.02 42291 43.2900 197.20 184.23 13.22 42292 43.2910 171.79 184.72 12.30 42293 43.2920 195.87 185.27 13.16 42294 43.2930 191.46 185.65 13.05 42295 43.2940 184.01 185.95 12.76 42296 43.2950 188.24 186.17 12.90 42297 43.2960 179.94 186.31 12.64 42298 43.2970 213.76 186.36 13.79 42299 43.2980 189.83 186.31 12.98 42300 43.2990 186.17 186.17 12.81 42301 43.3000 189.40 185.93 12.93 42302 43.3010 178.35 185.46 12.47 42303 43.3020 178.56 185.04 12.58 42304 43.3030 171.61 184.55 12.30 42305 43.3040 182.66 183.98 12.75 42306 43.3050 180.10 183.34 12.61 42307 43.3060 189.72 182.65 13.01 42308 43.3070 176.58 181.91 12.52 42309 43.3080 208.19 181.13 13.66 42310 43.3090 188.79 180.33 12.98 42311 43.3100 188.33 179.50 12.86 42312 43.3110 163.31 178.66 12.04 42313 43.3120 190.94 177.81 13.07 42314 43.3130 175.52 176.96 12.51 42315 43.3140 190.59 176.12 13.05 42316 43.3150 178.89 175.29 12.70 42317 43.3160 188.15 174.48 12.99 42318 43.3170 154.93 173.68 11.73 42319 43.3180 172.16 172.91 12.28 42320 43.3190 180.58 172.15 12.67 42321 43.3200 170.32 171.42 12.26 42322 43.3210 171.21 170.72 12.36 42323 43.3220 165.86 170.04 12.12 42324 43.3230 178.93 169.39 12.60 42325 43.3240 185.75 168.77 12.84 42326 43.3250 168.42 168.17 12.23 42327 43.3260 165.71 167.60 12.08 42328 43.3270 167.79 167.06 12.17 42329 43.3280 184.84 166.54 12.76 42330 43.3290 170.15 166.04 12.37 42331 43.3300 169.40 165.56 12.34 42332 43.3310 179.70 165.12 12.73 42333 43.3320 157.56 164.69 11.81 42334 43.3330 160.47 164.28 11.86 42335 43.3340 157.13 163.89 11.73 42336 43.3350 155.92 163.53 11.75 42337 43.3360 136.99 163.18 10.96 42338 43.3370 164.29 162.84 12.08 42339 43.3380 146.14 162.52 11.36 42340 43.3390 157.08 162.23 11.81 42341 43.3400 149.20 161.94 11.52 42342 43.3410 161.78 161.67 11.90 42343 43.3420 171.62 161.42 12.26 42344 43.3430 173.55 161.18 12.32 42345 43.3440 143.24 160.95 11.25 42346 43.3450 168.39 160.73 12.17 42347 43.3460 158.10 160.53 11.78 42348 43.3470 169.45 160.33 12.25 42349 43.3480 164.36 160.15 12.03 42350 43.3490 177.69 159.98 12.53 42351 43.3500 174.79 159.81 12.44 42352 43.3510 163.47 159.66 12.00 42353 43.3520 161.26 159.51 11.97 42354 43.3530 148.74 159.37 11.52 42355 43.3540 157.33 159.24 11.86 42356 43.3550 146.08 159.12 11.38 42357 43.3560 156.86 159.01 11.80 42358 43.3570 167.65 158.90 12.22 42359 43.3580 190.64 158.80 13.02 42360 43.3590 165.44 158.71 12.17 42361 43.3600 167.77 158.62 12.25 42362 43.3610 181.39 158.54 12.69 42363 43.3620 148.73 158.46 11.48 42364 43.3630 150.73 158.39 11.60 42365 43.3640 159.45 158.33 11.98 42366 43.3650 155.09 158.27 11.77 42367 43.3660 172.98 158.22 12.38 42368 43.3670 157.48 158.17 11.83 42369 43.3680 166.02 158.13 12.16 42370 43.3690 148.63 158.09 11.56 42371 43.3700 143.96 158.06 11.22 42372 43.3710 160.57 158.03 11.93 42373 43.3720 158.72 158.01 11.91 42374 43.3730 153.57 157.99 11.67 42375 43.3740 155.79 157.97 11.77 42376 43.3750 171.90 157.96 12.31 42377 43.3760 159.52 157.96 11.88 42378 43.3770 172.32 157.95 12.36 42379 43.3780 166.19 157.96 12.21 42380 43.3790 151.91 157.96 11.64 42381 43.3800 160.66 157.97 11.99 42382 43.3810 166.12 157.99 12.22 42383 43.3820 168.55 158.01 12.20 42384 43.3830 170.46 158.03 12.30 42385 43.3840 170.38 158.06 12.26 42386 43.3850 175.63 158.09 12.46 42387 43.3860 152.22 158.13 11.58 42388 43.3870 157.51 158.17 11.87 42389 43.3880 149.62 158.21 11.52 42390 43.3890 150.69 158.26 11.60 42391 43.3900 163.44 158.31 12.09 42392 43.3910 182.56 158.37 12.70 42393 43.3920 157.46 158.43 11.78 42394 43.3930 165.97 158.50 12.22 42395 43.3940 164.17 158.57 12.07 42396 43.3950 166.17 158.65 12.18 42397 43.3960 168.96 158.73 12.24 42398 43.3970 166.92 158.82 12.20 42399 43.3980 168.83 158.91 12.27 42400 43.3990 161.45 159.00 12.02 42401 43.4000 159.75 159.10 11.97 42402 43.4010 157.38 159.21 11.78 42403 43.4020 152.91 159.32 11.61 42404 43.4030 148.28 159.44 11.44 42405 43.4040 152.51 159.57 11.64 42406 43.4050 155.45 159.70 11.74 42407 43.4060 177.14 159.84 12.48 42408 43.4070 171.39 159.92 12.40 42409 43.4080 157.58 160.07 11.85 42410 43.4090 173.53 160.23 12.47 42411 43.4100 160.94 160.39 11.99 42412 43.4110 165.73 160.49 12.08 42413 43.4120 166.02 160.67 12.11 42414 43.4130 153.78 160.86 11.62 42415 43.4140 161.57 161.06 12.00 42416 43.4150 157.47 161.26 11.90 42417 43.4160 149.81 161.48 11.58 42418 43.4170 157.30 161.70 11.84 42419 43.4180 162.30 161.94 12.05 42420 43.4190 167.39 162.18 12.31 42421 43.4200 158.75 162.44 11.94 42422 43.4210 168.89 162.71 12.25 42423 43.4220 169.59 162.99 12.28 42424 43.4230 176.29 163.28 12.49 42425 43.4240 145.01 163.58 11.29 42426 43.4250 145.67 163.90 11.42 42427 43.4260 163.18 164.23 12.03 42428 43.4270 160.36 164.58 11.93 42429 43.4280 175.60 164.95 12.40 42430 43.4290 170.64 165.33 12.27 42431 43.4300 182.61 165.73 12.76 42432 43.4310 177.37 166.15 12.60 42433 43.4320 158.38 166.59 11.87 42434 43.4330 174.74 167.04 12.44 42435 43.4340 158.82 167.52 11.89 42436 43.4350 177.50 168.02 12.58 42437 43.4360 163.05 168.53 12.06 42438 43.4370 163.33 169.07 12.09 42439 43.4380 180.63 169.65 12.74 42440 43.4390 163.74 170.24 12.04 42441 43.4400 157.94 170.87 11.80 42442 43.4410 155.80 171.53 11.71 42443 43.4420 178.41 172.22 12.60 42444 43.4430 175.85 172.94 12.46 42445 43.4440 171.28 173.69 12.33 42446 43.4450 172.97 174.48 12.42 42447 43.4460 160.95 175.30 11.89 42448 43.4470 199.58 176.16 13.25 42449 43.4480 179.22 177.07 12.53 42450 43.4490 180.65 178.01 12.60 42451 43.4500 197.78 179.00 13.33 42452 43.4510 185.37 180.03 12.88 42453 43.4520 186.02 181.10 12.88 42454 43.4530 179.47 182.21 12.63 42455 43.4540 187.50 183.38 12.89 42456 43.4550 167.32 184.59 12.11 42457 43.4560 173.29 185.84 12.36 42458 43.4570 189.08 187.14 12.95 42459 43.4580 191.98 188.49 13.08 42460 43.4590 182.39 189.87 12.66 42461 43.4600 176.45 191.29 12.43 42462 43.4610 208.64 192.75 13.52 42463 43.4620 207.34 194.24 13.58 42464 43.4630 200.05 195.75 13.33 42465 43.4640 196.85 197.29 13.31 42466 43.4650 182.49 198.82 12.76 42467 43.4660 187.66 200.37 12.87 42468 43.4670 188.50 201.90 12.94 42469 43.4680 209.05 203.41 13.65 42470 43.4690 227.44 204.89 14.24 42471 43.4700 219.71 206.32 13.93 42472 43.4710 212.28 207.69 13.64 42473 43.4720 207.16 208.99 13.53 42474 43.4730 219.09 210.19 13.89 42475 43.4740 208.92 211.30 13.60 42476 43.4750 228.99 212.29 14.28 42477 43.4760 221.71 213.15 13.99 42478 43.4770 217.36 213.89 13.84 42479 43.4780 215.43 214.48 13.86 42480 43.4790 214.86 214.93 13.78 42481 43.4800 230.53 215.25 14.28 42482 43.4810 218.22 215.42 13.89 42483 43.4820 219.42 215.46 13.96 42484 43.4830 227.49 215.38 14.25 42485 43.4840 213.88 215.18 13.84 42486 43.4850 236.03 214.89 14.52 42487 43.4860 238.44 214.50 14.57 42488 43.4870 235.85 214.05 14.47 42489 43.4880 228.24 213.54 14.16 42490 43.4890 204.66 212.99 13.45 42491 43.4900 210.60 212.41 13.69 42492 43.4910 211.10 211.82 13.70 42493 43.4920 212.36 211.23 13.70 42494 43.4930 204.98 210.65 13.48 42495 43.4940 202.61 210.10 13.35 42496 43.4950 222.20 209.58 13.94 42497 43.4960 190.80 209.10 12.97 42498 43.4970 189.74 208.67 12.91 42499 43.4980 209.42 208.28 13.58 42500 43.4990 221.65 207.95 14.09 42501 43.5000 180.48 207.67 12.65 42502 43.5010 221.51 207.45 14.02 42503 43.5020 203.44 207.28 13.44 42504 43.5030 202.16 207.16 13.40 42505 43.5040 207.94 207.09 13.57 42506 43.5050 207.17 207.06 13.56 42507 43.5060 204.05 207.07 13.44 42508 43.5070 203.45 207.11 13.44 42509 43.5080 221.20 207.17 14.07 42510 43.5090 225.20 207.24 14.16 42511 43.5100 233.05 207.33 14.35 42512 43.5110 228.94 207.41 14.28 42513 43.5120 216.69 207.48 13.82 42514 43.5130 237.75 207.54 14.51 42515 43.5140 220.02 207.57 14.03 42516 43.5150 201.36 207.57 13.36 42517 43.5160 227.56 207.54 14.27 42518 43.5170 232.07 207.47 14.35 42519 43.5180 195.92 207.35 13.13 42520 43.5190 202.50 207.20 13.35 42521 43.5200 212.48 207.00 13.83 42522 43.5210 228.55 206.77 14.33 42523 43.5220 215.27 206.49 13.80 42524 43.5230 212.88 206.19 13.74 42525 43.5240 207.90 205.87 13.56 42526 43.5250 198.93 205.53 13.29 42527 43.5260 210.18 205.17 13.67 42528 43.5270 204.46 204.81 13.48 42529 43.5280 205.22 204.46 13.52 42530 43.5290 208.86 204.11 13.56 42531 43.5300 223.07 203.78 14.09 42532 43.5310 210.59 203.47 13.65 42533 43.5320 208.12 203.18 13.63 42534 43.5330 206.57 202.92 13.59 42535 43.5340 206.61 202.69 13.50 42536 43.5350 204.69 202.49 13.50 42537 43.5360 190.18 202.32 12.95 42538 43.5370 198.49 202.18 13.20 42539 43.5380 207.74 202.07 13.56 42540 43.5390 229.57 201.98 14.24 42541 43.5400 200.07 201.91 13.32 42542 43.5410 221.55 201.85 14.05 42543 43.5420 203.53 201.80 13.49 42544 43.5430 199.50 201.74 13.30 42545 43.5440 208.25 201.67 13.66 42546 43.5450 200.03 201.58 13.32 42547 43.5460 214.59 201.47 13.78 42548 43.5470 181.92 201.32 12.70 42549 43.5480 212.96 201.12 13.77 42550 43.5490 208.85 200.88 13.68 42551 43.5500 218.13 200.58 13.97 42552 43.5510 213.57 200.22 13.84 42553 43.5520 212.17 199.80 13.75 42554 43.5530 216.09 199.31 13.96 42555 43.5540 189.16 198.76 13.02 42556 43.5550 182.82 198.14 12.72 42557 43.5560 216.28 197.46 13.80 42558 43.5570 194.03 196.73 13.17 42559 43.5580 179.49 195.95 12.56 42560 43.5590 182.27 195.13 12.68 42561 43.5600 202.91 194.27 13.47 42562 43.5610 205.08 193.38 13.46 42563 43.5620 195.86 192.48 13.18 42564 43.5630 195.24 191.56 13.14 42565 43.5640 185.41 190.63 12.83 42566 43.5650 168.49 189.71 12.24 42567 43.5660 191.93 188.79 13.06 42568 43.5670 202.90 187.89 13.43 42569 43.5680 195.04 187.01 13.11 42570 43.5690 167.44 186.15 12.14 42571 43.5700 187.41 185.32 12.89 42572 43.5710 214.69 184.51 13.78 42573 43.5720 171.48 183.74 12.29 42574 43.5730 175.18 183.01 12.40 42575 43.5740 167.20 182.32 12.12 42576 43.5750 163.32 181.66 11.87 42577 43.5760 199.24 181.05 13.28 42578 43.5770 166.83 180.48 12.20 42579 43.5780 186.35 179.95 12.89 42580 43.5790 182.93 179.46 12.77 42581 43.5800 172.78 179.01 12.41 42582 43.5810 175.09 178.62 12.45 42583 43.5820 175.28 178.26 12.42 42584 43.5830 188.02 177.94 12.84 42585 43.5840 193.02 177.67 13.12 42586 43.5850 179.53 177.45 12.56 42587 43.5860 176.83 177.26 12.50 42588 43.5870 184.37 177.11 12.77 42589 43.5880 189.13 177.01 12.98 42590 43.5890 178.06 176.95 12.56 42591 43.5900 168.98 176.92 12.22 42592 43.5910 178.25 176.93 12.55 42593 43.5920 188.33 176.98 12.91 42594 43.5930 183.06 177.06 12.67 42595 43.5940 173.31 177.17 12.42 42596 43.5950 171.39 177.31 12.29 42597 43.5960 180.66 177.46 12.65 42598 43.5970 189.47 177.64 13.02 42599 43.5980 184.20 177.84 12.74 42600 43.5990 177.24 178.05 12.48 42601 43.6000 203.89 178.26 13.42 42602 43.6010 193.56 178.47 13.05 42603 43.6020 196.02 178.67 13.18 42604 43.6030 194.34 178.86 13.07 42605 43.6040 193.25 179.02 13.17 42606 43.6050 186.76 179.15 12.90 42607 43.6060 207.73 179.24 13.63 42608 43.6070 184.88 179.28 12.82 42609 43.6080 176.22 179.27 12.53 42610 43.6090 177.36 179.21 12.55 42611 43.6100 183.22 179.09 12.75 42612 43.6110 191.05 178.91 12.99 42613 43.6120 182.43 178.67 12.71 42614 43.6130 170.41 178.37 12.27 42615 43.6140 164.86 178.00 12.02 42616 43.6150 166.75 177.59 12.12 42617 43.6160 190.26 177.12 12.99 42618 43.6170 207.30 176.61 13.62 42619 43.6180 180.80 176.06 12.66 42620 43.6190 180.71 175.49 12.63 42621 43.6200 179.19 174.88 12.57 42622 43.6210 187.74 174.27 12.96 42623 43.6220 179.42 173.64 12.62 42624 43.6230 184.08 173.00 12.68 42625 43.6240 162.34 172.37 11.95 42626 43.6250 156.96 171.73 11.72 42627 43.6260 179.15 171.11 12.60 42628 43.6270 174.07 170.50 12.37 42629 43.6280 177.64 169.90 12.50 42630 43.6290 152.58 169.32 11.64 42631 43.6300 166.31 168.76 12.14 42632 43.6310 159.10 168.22 11.85 42633 43.6320 157.48 167.70 11.85 42634 43.6330 152.16 167.20 11.64 42635 43.6340 167.50 166.73 12.19 42636 43.6350 172.12 166.27 12.35 42637 43.6360 161.39 165.84 11.98 42638 43.6370 155.13 165.43 11.74 42639 43.6380 150.67 165.04 11.59 42640 43.6390 152.23 164.67 11.60 42641 43.6400 168.65 164.33 12.21 42642 43.6410 171.37 164.00 12.34 42643 43.6420 147.54 163.69 11.35 42644 43.6430 155.18 163.41 11.68 42645 43.6440 181.89 163.14 12.74 42646 43.6450 170.84 162.88 12.27 42647 43.6460 157.74 162.66 11.84 42648 43.6470 141.13 162.44 11.25 42649 43.6480 157.69 162.24 11.84 42650 43.6490 179.43 162.06 12.56 42651 43.6500 167.05 161.88 12.15 42652 43.6510 159.79 161.73 11.93 42653 43.6520 151.17 161.59 11.63 42654 43.6530 157.94 161.46 11.85 42655 43.6540 166.93 161.35 12.16 42656 43.6550 171.96 161.24 12.40 42657 43.6560 167.01 161.16 12.23 42658 43.6570 160.43 161.08 11.94 42659 43.6580 170.45 161.02 12.37 42660 43.6590 169.23 160.97 12.28 42661 43.6600 171.38 160.94 12.35 42662 43.6610 149.59 160.90 11.54 42663 43.6620 172.34 160.89 12.44 42664 43.6630 171.76 160.89 12.40 42665 43.6640 172.97 160.90 12.36 42666 43.6650 173.54 160.93 12.44 42667 43.6660 180.15 160.97 12.60 42668 43.6670 161.39 161.02 11.94 42669 43.6680 165.45 161.08 12.13 42670 43.6690 181.21 161.16 12.69 42671 43.6700 175.87 161.24 12.42 42672 43.6710 165.57 161.35 12.16 42673 43.6720 158.41 161.46 11.93 42674 43.6730 161.82 161.59 12.00 42675 43.6740 171.03 161.74 12.34 42676 43.6750 166.03 161.90 12.19 42677 43.6760 177.22 162.07 12.53 42678 43.6770 179.60 162.26 12.65 42679 43.6780 174.46 162.47 12.47 42680 43.6790 179.77 162.68 12.62 42681 43.6800 146.53 162.92 11.44 42682 43.6810 164.15 163.17 12.10 42683 43.6820 152.73 163.44 11.63 42684 43.6830 163.37 163.72 11.94 42685 43.6840 159.16 164.02 11.94 42686 43.6850 159.93 164.35 11.97 42687 43.6860 148.21 164.68 11.45 42688 43.6870 161.94 165.04 12.05 42689 43.6880 178.72 165.41 12.62 42690 43.6890 163.82 165.80 12.01 42691 43.6900 168.27 166.20 12.21 42692 43.6910 167.72 166.63 12.21 42693 43.6920 157.93 167.07 11.82 42694 43.6930 155.18 167.52 11.71 42695 43.6940 164.76 167.98 12.02 42696 43.6950 174.59 168.46 12.37 42697 43.6960 180.60 168.95 12.62 42698 43.6970 186.10 169.44 12.88 42699 43.6980 176.35 169.94 12.48 42700 43.6990 161.68 170.44 11.95 42701 43.7000 178.07 170.94 12.55 42702 43.7010 177.30 171.43 12.51 42703 43.7020 182.78 171.92 12.76 42704 43.7030 178.90 172.39 12.60 42705 43.7040 180.31 172.84 12.67 42706 43.7050 174.67 173.26 12.50 42707 43.7060 164.02 173.66 12.07 42708 43.7070 177.51 174.03 12.58 42709 43.7080 173.46 174.35 12.41 42710 43.7090 175.56 174.64 12.48 42711 43.7100 160.47 174.88 11.90 42712 43.7110 170.26 175.07 12.31 42713 43.7120 178.02 175.21 12.57 42714 43.7130 175.73 175.30 12.58 42715 43.7140 184.77 175.34 12.80 42716 43.7150 178.75 175.33 12.55 42717 43.7160 178.98 175.26 12.58 42718 43.7170 182.44 175.14 12.69 42719 43.7180 196.31 174.98 13.21 42720 43.7190 170.58 174.77 12.28 42721 43.7200 201.08 174.52 13.42 42722 43.7210 171.82 174.24 12.43 42723 43.7220 169.78 173.92 12.28 42724 43.7230 176.95 173.57 12.55 42725 43.7240 191.02 173.19 13.05 42726 43.7250 191.70 172.79 13.09 42727 43.7260 179.07 172.37 12.60 42728 43.7270 176.58 171.93 12.45 42729 43.7280 161.70 171.48 11.95 42730 43.7290 166.09 171.02 12.17 42731 43.7300 162.78 170.60 12.01 42732 43.7310 173.92 170.13 12.45 42733 43.7320 166.91 169.66 12.14 42734 43.7330 152.52 169.17 11.61 42735 43.7340 187.01 168.71 12.87 42736 43.7350 192.76 168.25 13.07 42737 43.7360 168.02 167.79 12.21 42738 43.7370 155.82 167.35 11.80 42739 43.7380 168.38 166.91 12.21 42740 43.7390 180.21 166.49 12.70 42741 43.7400 154.99 166.07 11.74 42742 43.7410 168.81 165.68 12.27 42743 43.7420 173.57 165.30 12.39 42744 43.7430 174.73 164.93 12.44 42745 43.7440 154.64 164.57 11.73 42746 43.7450 145.34 164.24 11.30 42747 43.7460 159.14 163.91 11.84 42748 43.7470 136.30 163.61 10.90 42749 43.7480 176.18 163.32 12.56 42750 43.7490 169.88 163.04 12.28 42751 43.7500 179.87 162.79 12.65 42752 43.7510 185.18 162.54 12.88 42753 43.7520 173.90 162.32 12.40 42754 43.7530 169.22 162.10 12.30 42755 43.7540 162.94 161.91 12.06 42756 43.7550 153.90 161.73 11.72 42757 43.7560 155.07 161.56 11.70 42758 43.7570 167.94 161.40 12.18 42759 43.7580 173.79 161.26 12.45 42760 43.7590 175.62 161.14 12.44 42761 43.7600 171.45 161.03 12.29 42762 43.7610 167.86 160.93 12.31 42763 43.7620 182.15 160.84 12.79 42764 43.7630 166.29 160.76 12.14 42765 43.7640 160.93 160.70 11.98 42766 43.7650 163.64 160.65 12.10 42767 43.7660 161.49 160.62 11.94 42768 43.7670 174.25 160.59 12.37 42769 43.7680 175.97 160.58 12.50 42770 43.7690 164.60 160.58 12.18 42771 43.7700 168.34 160.59 12.31 42772 43.7710 166.12 160.61 12.23 42773 43.7720 180.95 160.65 12.65 42774 43.7730 156.85 160.69 11.86 42775 43.7740 159.81 160.75 11.88 42776 43.7750 176.39 160.82 12.61 42777 43.7760 162.49 160.90 12.06 42778 43.7770 155.40 161.00 11.83 42779 43.7780 157.92 161.11 11.91 42780 43.7790 166.28 161.23 12.17 42781 43.7800 167.56 161.36 12.18 42782 43.7810 162.54 161.51 11.91 42783 43.7820 186.99 161.67 12.89 42784 43.7830 170.58 161.84 12.27 42785 43.7840 159.58 162.02 11.84 42786 43.7850 165.32 162.23 12.07 42787 43.7860 167.73 162.44 12.14 42788 43.7870 171.15 162.67 12.31 42789 43.7880 169.58 162.91 12.31 42790 43.7890 155.20 163.18 11.75 42791 43.7900 155.53 163.45 11.70 42792 43.7910 152.23 163.75 11.59 42793 43.7920 194.37 164.06 13.22 42794 43.7930 169.64 164.39 12.26 42795 43.7940 164.54 164.70 12.07 42796 43.7950 178.73 165.06 12.56 42797 43.7960 162.93 165.45 12.05 42798 43.7970 157.33 165.85 11.81 42799 43.7980 180.43 166.27 12.67 42800 43.7990 164.33 166.71 12.08 42801 43.8000 173.81 167.16 12.35 42802 43.8010 165.92 167.64 12.07 42803 43.8020 179.09 168.13 12.64 42804 43.8030 183.07 168.65 12.77 42805 43.8040 175.60 169.18 12.46 42806 43.8050 161.18 169.73 11.94 42807 43.8060 183.97 170.29 12.81 42808 43.8070 158.89 170.87 11.81 42809 43.8080 173.06 171.46 12.30 42810 43.8090 168.91 172.07 12.27 42811 43.8100 172.46 172.69 12.27 42812 43.8110 175.28 173.31 12.44 42813 43.8120 169.31 173.94 12.28 42814 43.8130 167.74 174.58 12.21 42815 43.8140 157.04 175.21 11.81 42816 43.8150 170.65 175.84 12.43 42817 43.8160 181.99 176.47 12.78 42818 43.8170 186.69 177.09 12.92 42819 43.8180 194.88 177.69 13.19 42820 43.8190 201.31 178.29 13.48 42821 43.8200 159.38 178.87 11.97 42822 43.8210 160.94 179.43 11.91 42823 43.8220 181.48 179.98 12.64 42824 43.8230 188.99 180.51 12.94 42825 43.8240 168.88 181.02 12.27 42826 43.8250 182.80 181.51 12.72 42827 43.8260 185.28 181.99 12.80 42828 43.8270 178.33 182.45 12.55 42829 43.8280 176.84 182.91 12.50 42830 43.8290 182.10 183.36 12.77 42831 43.8300 190.33 183.81 13.00 42832 43.8310 184.95 184.26 12.83 42833 43.8320 188.88 184.72 12.95 42834 43.8330 179.83 185.19 12.66 42835 43.8340 171.24 185.68 12.40 42836 43.8350 173.02 186.20 12.45 42837 43.8360 190.44 186.74 13.00 42838 43.8370 195.62 187.33 13.20 42839 43.8380 185.27 187.95 12.79 42840 43.8390 190.29 188.62 12.99 42841 43.8400 178.80 189.34 12.58 42842 43.8410 180.45 190.11 12.62 42843 43.8420 170.09 190.94 12.31 42844 43.8430 187.72 191.84 12.95 42845 43.8440 193.22 192.79 13.16 42846 43.8450 175.91 193.81 12.48 42847 43.8460 179.49 194.89 12.49 42848 43.8470 184.11 196.04 12.73 42849 43.8480 211.43 197.25 13.73 42850 43.8490 220.06 198.53 13.97 42851 43.8500 183.92 199.86 12.75 42852 43.8510 175.99 201.25 12.46 42853 43.8520 201.65 202.67 13.36 42854 43.8530 197.98 204.14 13.20 42855 43.8540 192.87 205.63 13.14 42856 43.8550 200.33 207.13 13.29 42857 43.8560 229.22 208.63 14.18 42858 43.8570 249.00 210.11 14.93 42859 43.8580 213.99 211.57 13.80 42860 43.8590 204.85 212.96 13.52 42861 43.8600 233.25 214.27 14.34 42862 43.8610 234.05 215.48 14.36 42863 43.8620 225.39 216.57 14.17 42864 43.8630 212.90 217.52 13.78 42865 43.8640 233.70 218.30 14.31 42866 43.8650 239.85 218.91 14.59 42867 43.8660 223.28 219.31 13.98 42868 43.8670 229.65 219.50 14.31 42869 43.8680 224.39 219.48 14.11 42870 43.8690 241.53 219.24 14.67 42871 43.8700 229.95 218.78 14.35 42872 43.8710 182.00 218.10 12.63 42873 43.8720 195.91 217.23 13.13 42874 43.8730 200.37 216.17 13.29 42875 43.8740 224.09 214.95 14.07 42876 43.8750 200.19 213.57 13.29 42877 43.8760 220.66 212.07 13.99 42878 43.8770 215.07 210.46 13.77 42879 43.8780 206.57 208.77 13.59 42880 43.8790 200.35 207.01 13.35 42881 43.8800 208.97 205.20 13.60 42882 43.8810 195.61 203.38 13.14 42883 43.8820 183.56 201.54 12.78 42884 43.8830 190.40 199.71 12.94 42885 43.8840 194.44 197.90 13.15 42886 43.8850 189.92 196.12 12.94 42887 43.8860 172.85 194.36 12.41 42888 43.8870 169.43 192.66 12.22 42889 43.8880 190.72 191.01 12.93 42890 43.8890 174.90 189.42 12.48 42891 43.8900 178.87 187.88 12.65 42892 43.8910 191.56 186.40 13.00 42893 43.8920 171.18 184.98 12.39 42894 43.8930 172.94 183.62 12.40 42895 43.8940 176.90 182.32 12.53 42896 43.8950 196.90 181.04 13.25 42897 43.8960 181.25 179.86 12.73 42898 43.8970 164.02 178.74 12.03 42899 43.8980 172.46 177.68 12.37 42900 43.8990 180.88 176.67 12.67 42901 43.9000 178.54 175.71 12.57 42902 43.9010 169.95 174.80 12.26 42903 43.9020 183.14 173.94 12.72 42904 43.9030 173.97 173.12 12.41 42905 43.9040 176.06 172.35 12.46 42906 43.9050 171.23 171.62 12.30 42907 43.9060 174.13 170.93 12.45 42908 43.9070 170.02 170.27 12.36 42909 43.9080 164.24 169.65 12.06 42910 43.9090 170.75 169.05 12.32 42911 43.9100 173.83 168.49 12.42 42912 43.9110 174.09 167.96 12.30 42913 43.9120 184.92 167.45 12.77 42914 43.9130 191.10 166.96 13.04 42915 43.9140 174.07 166.49 12.34 42916 43.9150 165.91 166.04 12.13 42917 43.9160 165.19 165.61 12.06 42918 43.9170 166.56 165.19 12.13 42919 43.9180 163.18 164.78 12.04 42920 43.9190 160.19 164.39 11.89 42921 43.9200 175.22 164.01 12.52 42922 43.9210 164.91 163.63 12.02 42923 43.9220 156.46 163.26 11.81 42924 43.9230 164.50 162.90 12.00 42925 43.9240 175.89 162.55 12.56 42926 43.9250 166.27 162.20 12.14 42927 43.9260 148.36 161.86 11.44 42928 43.9270 167.12 161.52 12.17 42929 43.9280 169.81 161.19 12.24 42930 43.9290 151.36 160.86 11.59 42931 43.9300 158.04 160.54 11.88 42932 43.9310 149.53 160.25 11.47 42933 43.9320 158.44 159.94 11.82 42934 43.9330 156.07 159.63 11.74 42935 43.9340 166.00 159.34 12.12 42936 43.9350 163.90 159.05 12.00 42937 43.9360 152.57 158.76 11.58 42938 43.9370 162.25 158.49 11.94 42939 43.9380 171.53 158.22 12.28 42940 43.9390 162.74 157.96 12.04 42941 43.9400 153.76 157.71 11.65 42942 43.9410 163.14 157.46 12.02 42943 43.9420 157.02 157.22 11.78 42944 43.9430 157.41 156.99 11.86 42945 43.9440 151.42 156.77 11.62 42946 43.9450 164.30 156.56 12.06 42947 43.9460 158.46 156.35 11.80 42948 43.9470 146.99 156.15 11.32 42949 43.9480 150.17 155.96 11.51 42950 43.9490 155.91 155.78 11.76 42951 43.9500 154.65 155.60 11.79 42952 43.9510 164.41 155.43 12.08 42953 43.9520 164.28 155.27 12.08 42954 43.9530 143.95 155.11 11.29 42955 43.9540 163.16 154.96 12.04 42956 43.9550 154.95 154.82 11.74 42957 43.9560 152.87 154.68 11.62 42958 43.9570 171.09 154.55 12.31 42959 43.9580 168.13 154.42 12.20 42960 43.9590 139.99 154.30 11.11 42961 43.9600 154.10 154.19 11.71 42962 43.9610 163.98 154.08 12.08 42963 43.9620 150.33 153.98 11.57 42964 43.9630 152.80 153.88 11.54 42965 43.9640 164.81 153.79 12.13 42966 43.9650 136.80 153.71 10.99 42967 43.9660 144.62 153.62 11.42 42968 43.9670 143.50 153.55 11.29 42969 43.9680 153.04 153.48 11.66 42970 43.9690 149.33 153.41 11.50 42971 43.9700 153.11 153.35 11.66 42972 43.9710 152.30 153.30 11.61 42973 43.9720 159.38 153.24 11.92 42974 43.9730 147.56 153.20 11.50 42975 43.9740 147.85 153.16 11.48 42976 43.9750 154.13 153.12 11.71 42977 43.9760 161.78 153.09 11.99 42978 43.9770 148.44 153.07 11.50 42979 43.9780 163.60 153.05 12.02 42980 43.9790 153.21 153.03 11.64 42981 43.9800 149.19 153.02 11.50 42982 43.9810 151.30 153.02 11.62 42983 43.9820 137.34 153.02 11.01 42984 43.9830 147.57 153.03 11.44 42985 43.9840 164.93 153.04 12.09 42986 43.9850 160.81 153.06 11.95 42987 43.9860 160.80 153.08 12.01 42988 43.9870 163.00 153.11 12.08 42989 43.9880 166.66 153.15 12.17 42990 43.9890 173.12 153.19 12.40 42991 43.9900 162.59 153.24 11.98 42992 43.9910 154.93 153.30 11.72 42993 43.9920 145.53 153.36 11.36 42994 43.9930 147.49 153.43 11.50 42995 43.9940 154.34 153.50 11.74 42996 43.9950 156.91 153.59 11.78 42997 43.9960 162.55 153.68 11.97 42998 43.9970 141.58 153.77 11.19 42999 43.9980 140.50 153.87 11.14 43000 43.9990 140.28 153.98 11.73 43001 44.0000 154.32 154.09 12.32 43002 44.0010 158.54 154.21 12.42 43003 44.0020 164.84 154.33 12.66 43004 44.0030 161.20 154.46 12.49 43005 44.0040 160.60 154.58 12.54 43006 44.0050 151.03 154.71 12.10 43007 44.0060 163.58 154.84 12.59 43008 44.0070 166.89 154.96 12.75 43009 44.0080 175.38 155.09 13.05 43010 44.0090 161.84 155.20 12.60 43011 44.0100 156.96 155.31 12.40 43012 44.0110 146.57 155.41 11.93 43013 44.0120 164.86 155.51 12.66 43014 44.0130 147.68 155.58 12.03 43015 44.0140 156.26 155.65 12.36 43016 44.0150 167.48 155.69 12.74 43017 44.0160 136.91 155.72 11.50 43018 44.0170 162.27 155.73 12.57 43019 44.0180 165.00 155.73 12.75 43020 44.0190 148.03 155.70 12.02 43021 44.0200 153.11 155.65 12.14 43022 44.0210 156.88 155.59 12.34 43023 44.0220 157.21 155.51 12.41 43024 44.0230 156.70 155.41 12.39 43025 44.0240 152.64 155.30 12.18 43026 44.0250 138.70 155.17 11.59 43027 44.0260 138.52 155.04 11.64 43028 44.0270 155.73 154.89 12.31 43029 44.0280 160.15 154.74 12.50 43030 44.0290 165.59 154.59 12.65 43031 44.0300 153.60 154.43 12.16 43032 44.0310 158.76 154.26 12.43 43033 44.0320 161.04 154.10 12.53 43034 44.0330 162.12 153.94 12.60 43035 44.0340 139.31 153.79 11.71 43036 44.0350 153.79 153.63 12.27 43037 44.0360 172.10 153.48 12.96 43038 44.0370 168.01 153.34 12.75 43039 44.0380 139.97 153.20 11.58 43040 44.0390 153.97 153.06 12.25 43041 44.0400 165.08 152.93 12.65 43042 44.0410 148.40 152.81 12.00 43043 44.0420 150.74 152.69 12.03 43044 44.0430 165.24 152.58 12.64 43045 44.0440 160.72 152.48 12.54 43046 44.0450 145.77 152.38 12.02 43047 44.0460 138.03 152.28 11.64 43048 44.0470 159.76 152.19 12.48 43049 44.0480 158.99 152.10 12.42 43050 44.0490 148.88 152.02 11.95 43051 44.0500 148.42 151.94 12.04 43052 44.0510 151.60 151.86 12.11 43053 44.0520 164.38 151.79 12.58 43054 44.0530 156.86 151.71 12.30 43055 44.0540 155.36 151.64 12.30 43056 44.0550 159.31 151.56 12.49 43057 44.0560 149.91 151.49 12.08 43058 44.0570 141.20 151.41 11.67 43059 44.0580 135.88 151.34 11.46 43060 44.0590 156.34 151.26 12.37 43061 44.0600 162.88 151.18 12.59 43062 44.0610 148.46 151.10 11.98 43063 44.0620 164.91 151.02 12.68 43064 44.0630 146.05 150.94 11.94 43065 44.0640 149.59 150.86 12.13 43066 44.0650 136.11 150.78 11.53 43067 44.0660 144.20 150.70 11.95 43068 44.0670 143.75 150.62 11.85 43069 44.0680 146.85 150.53 12.00 43070 44.0690 150.15 150.45 12.12 43071 44.0700 138.71 150.37 11.58 43072 44.0710 154.69 150.29 12.35 43073 44.0720 149.95 150.22 12.12 43074 44.0730 153.66 150.14 12.30 43075 44.0740 142.60 150.07 11.87 43076 44.0750 128.64 149.99 11.16 43077 44.0760 142.07 150.03 11.77 43078 44.0770 141.59 149.96 11.79 43079 44.0780 148.66 149.89 12.09 43080 44.0790 151.03 149.83 12.13 43081 44.0800 155.12 149.77 12.29 43082 44.0810 163.44 149.71 12.68 43083 44.0820 163.53 149.66 12.65 43084 44.0830 156.52 149.60 12.32 43085 44.0840 161.05 149.55 12.52 43086 44.0850 161.00 149.50 12.54 43087 44.0860 157.54 149.45 12.37 43088 44.0870 137.48 149.32 11.52 43089 44.0880 163.94 149.28 12.66 43090 44.0890 156.64 149.24 12.36 43091 44.0900 157.87 149.20 12.43 43092 44.0910 151.09 149.16 12.16 43093 44.0920 151.69 149.13 12.21 43094 44.0930 146.29 149.10 11.96 43095 44.0940 154.33 149.06 12.27 43096 44.0950 145.06 149.04 11.84 43097 44.0960 140.51 149.01 11.67 43098 44.0970 150.04 148.98 12.04 43099 44.0980 145.43 148.96 11.88 43100 44.0990 151.06 148.93 12.11 43101 44.1000 138.59 148.91 11.56 43102 44.1010 140.33 148.89 11.63 43103 44.1020 166.94 148.88 12.74 43104 44.1030 159.05 148.86 12.40 43105 44.1040 171.87 148.84 13.00 43106 44.1050 171.00 148.83 12.92 43107 44.1060 148.63 148.82 12.08 43108 44.1070 154.49 148.81 12.27 43109 44.1080 168.44 148.80 12.84 43110 44.1090 157.11 148.79 12.43 43111 44.1100 147.28 148.78 12.03 43112 44.1110 132.90 148.77 11.30 43113 44.1120 155.66 148.77 12.23 43114 44.1130 145.96 148.77 11.89 43115 44.1140 152.52 148.90 12.23 43116 44.1150 145.91 148.90 11.97 43117 44.1160 142.31 148.90 11.83 43118 44.1170 148.81 148.91 12.05 43119 44.1180 161.46 148.91 12.60 43120 44.1190 160.95 148.92 12.57 43121 44.1200 159.41 148.92 12.49 43122 44.1210 166.26 148.93 12.72 43123 44.1220 165.23 148.94 12.68 43124 44.1230 175.06 148.95 13.02 43125 44.1240 156.19 148.97 12.33 43126 44.1250 172.35 148.98 12.95 43127 44.1260 145.31 149.00 11.89 43128 44.1270 152.36 149.02 12.24 43129 44.1280 150.90 149.04 12.16 43130 44.1290 128.05 149.06 11.19 43131 44.1300 144.66 149.08 11.85 43132 44.1310 149.25 149.11 12.06 43133 44.1320 140.26 149.13 11.70 43134 44.1330 146.31 149.16 11.90 43135 44.1340 146.46 149.20 11.93 43136 44.1350 117.60 149.23 10.70 43137 44.1360 150.80 149.27 12.13 43138 44.1370 163.64 149.30 12.56 43139 44.1380 146.62 149.35 11.94 43140 44.1390 142.89 149.39 11.83 43141 44.1400 142.56 149.44 11.75 43142 44.1410 138.63 149.49 11.63 43143 44.1420 144.93 149.54 11.93 43144 44.1430 135.06 149.59 11.49 43145 44.1440 140.24 149.65 11.69 43146 44.1450 141.42 149.66 11.78 43147 44.1460 149.16 149.73 12.04 43148 44.1470 163.47 149.79 12.66 43149 44.1480 169.01 149.87 12.88 43150 44.1490 146.21 149.94 11.88 43151 44.1500 133.58 150.02 11.36 43152 44.1510 142.48 150.10 11.77 43153 44.1520 153.62 150.19 12.19 43154 44.1530 153.62 150.28 12.23 43155 44.1540 148.76 150.38 12.05 43156 44.1550 159.53 150.47 12.47 43157 44.1560 146.11 150.57 11.93 43158 44.1570 140.14 150.68 11.62 43159 44.1580 165.19 150.79 12.73 43160 44.1590 156.33 150.90 12.34 43161 44.1600 155.62 151.01 12.33 43162 44.1610 159.98 151.13 12.46 43163 44.1620 154.04 151.24 12.24 43164 44.1630 143.63 151.36 11.83 43165 44.1640 158.55 151.48 12.46 43166 44.1650 174.27 151.60 13.09 43167 44.1660 156.10 151.71 12.35 43168 44.1670 146.77 151.82 11.95 43169 44.1680 150.11 151.93 12.11 43170 44.1690 140.91 152.04 11.75 43171 44.1700 140.58 152.09 11.74 43172 44.1710 148.98 152.19 12.02 43173 44.1720 145.03 152.29 11.83 43174 44.1730 154.35 152.37 12.30 43175 44.1740 163.10 152.46 12.60 43176 44.1750 158.59 152.50 12.50 43177 44.1760 160.69 152.58 12.55 43178 44.1770 151.77 152.65 12.16 43179 44.1780 160.81 152.72 12.53 43180 44.1790 133.67 152.78 11.25 43181 44.1800 144.57 152.85 11.84 43182 44.1810 168.66 152.91 12.76 43183 44.1820 193.58 152.98 13.63 43184 44.1830 151.98 153.04 12.15 43185 44.1840 153.77 153.11 12.24 43186 44.1850 167.89 153.18 12.77 43187 44.1860 159.55 153.26 12.48 43188 44.1870 165.40 153.34 12.77 43189 44.1880 156.97 153.42 12.41 43190 44.1890 156.07 153.51 12.39 43191 44.1900 174.06 153.63 13.06 43192 44.1910 173.35 153.73 12.98 43193 44.1920 169.92 153.83 12.94 43194 44.1930 153.47 153.94 12.26 43195 44.1940 155.18 154.05 12.31 43196 44.1950 171.52 154.17 12.98 43197 44.1960 150.48 154.29 12.13 43198 44.1970 147.95 154.41 12.01 43199 44.1980 153.12 154.53 12.23 43200 44.1990 154.35 154.65 12.25 43201 44.2000 144.31 154.77 11.81 43202 44.2010 152.16 154.89 12.21 43203 44.2020 161.34 155.00 12.55 43204 44.2030 143.04 155.11 11.78 43205 44.2040 168.31 155.24 12.79 43206 44.2050 150.67 155.34 12.11 43207 44.2060 157.68 155.43 12.37 43208 44.2070 147.24 155.52 12.00 43209 44.2080 129.45 155.60 11.20 43210 44.2090 124.68 155.67 10.98 43211 44.2100 145.50 155.73 11.86 43212 44.2110 171.75 155.79 12.98 43213 44.2120 162.08 155.84 12.54 43214 44.2130 149.76 155.87 12.04 43215 44.2140 136.84 155.90 11.51 43216 44.2150 163.92 155.92 12.69 43217 44.2160 142.15 155.93 11.79 43218 44.2170 155.63 155.94 12.29 43219 44.2180 147.44 155.93 11.99 43220 44.2190 163.34 155.93 12.61 43221 44.2200 169.61 155.91 12.84 43222 44.2210 158.29 155.90 12.33 43223 44.2220 152.80 155.88 12.24 43224 44.2230 147.61 155.86 12.01 43225 44.2240 145.55 155.84 11.98 43226 44.2250 144.21 155.82 11.85 43227 44.2260 144.74 155.80 11.86 43228 44.2270 151.65 155.79 12.14 43229 44.2280 158.83 155.79 12.41 43230 44.2290 155.95 155.79 12.34 43231 44.2300 140.58 155.79 11.67 43232 44.2310 150.80 155.81 12.08 43233 44.2320 159.58 155.84 12.45 43234 44.2330 166.46 155.88 12.72 43235 44.2340 163.69 155.93 12.63 43236 44.2350 147.95 155.99 12.03 43237 44.2360 138.73 156.06 11.60 43238 44.2370 149.36 156.15 12.06 43239 44.2380 138.77 156.25 11.57 43240 44.2390 160.40 156.36 12.42 43241 44.2400 150.25 156.49 12.03 43242 44.2410 161.23 156.64 12.55 43243 44.2420 152.52 156.79 12.21 43244 44.2430 138.44 156.97 11.61 43245 44.2440 132.68 157.15 11.39 43246 44.2450 149.45 157.35 12.07 43247 44.2460 144.00 157.56 11.85 43248 44.2470 162.54 157.79 12.56 43249 44.2480 160.07 158.02 12.44 43250 44.2490 156.98 158.27 12.33 43251 44.2500 159.33 158.53 12.54 43252 44.2510 169.33 158.79 12.90 43253 44.2520 166.81 159.07 12.83 43254 44.2530 143.18 159.35 11.85 43255 44.2540 146.73 159.64 12.00 43256 44.2550 151.28 159.93 12.18 43257 44.2560 155.41 160.23 12.33 43258 44.2570 147.96 160.53 11.99 43259 44.2580 156.79 160.83 12.41 43260 44.2590 173.02 161.13 12.96 43261 44.2600 152.35 161.44 12.12 43262 44.2610 162.73 161.75 12.56 43263 44.2620 151.48 162.07 12.15 43264 44.2630 159.25 162.39 12.52 43265 44.2640 172.37 162.72 12.94 43266 44.2650 148.64 163.05 12.03 43267 44.2660 168.35 163.39 12.81 43268 44.2670 163.49 163.75 12.65 43269 44.2680 164.69 164.12 12.67 43270 44.2690 144.66 164.51 11.78 43271 44.2700 166.84 164.91 12.73 43272 44.2710 177.21 165.33 13.12 43273 44.2720 172.16 165.77 13.00 43274 44.2730 163.05 166.24 12.65 43275 44.2740 155.27 166.72 12.36 43276 44.2750 155.02 167.22 12.28 43277 44.2760 157.39 167.75 12.30 43278 44.2770 177.90 168.29 13.13 43279 44.2780 160.34 168.84 12.43 43280 44.2790 173.15 169.40 12.99 43281 44.2800 178.81 169.97 13.22 43282 44.2810 162.34 170.54 12.66 43283 44.2820 155.20 171.11 12.29 43284 44.2830 159.58 171.66 12.45 43285 44.2840 165.16 172.18 12.71 43286 44.2850 155.05 172.68 12.24 43287 44.2860 159.58 173.14 12.46 43288 44.2870 167.28 173.54 12.75 43289 44.2880 179.76 173.89 13.20 43290 44.2890 163.82 174.17 12.56 43291 44.2900 161.63 174.38 12.58 43292 44.2910 168.11 174.50 12.76 43293 44.2920 167.50 174.54 12.82 43294 44.2930 166.37 174.49 12.74 43295 44.2940 177.68 174.35 13.16 43296 44.2950 168.37 174.12 12.74 43297 44.2960 186.17 173.81 13.50 43298 44.2970 176.47 173.41 13.13 43299 44.2980 181.66 172.94 13.36 43300 44.2990 161.31 172.40 12.59 43301 44.3000 171.54 171.81 12.96 43302 44.3010 161.70 171.16 12.63 43303 44.3020 167.59 170.47 12.78 43304 44.3030 168.41 169.75 12.81 43305 44.3040 194.73 169.01 13.76 43306 44.3050 157.75 168.26 12.39 43307 44.3060 175.13 167.48 13.06 43308 44.3070 167.78 166.71 12.81 43309 44.3080 165.14 165.96 12.74 43310 44.3090 166.50 165.21 12.75 43311 44.3100 161.33 164.47 12.54 43312 44.3110 160.56 163.75 12.50 43313 44.3120 145.69 163.05 11.90 43314 44.3130 171.70 162.37 12.93 43315 44.3140 191.29 161.72 13.69 43316 44.3150 171.58 161.09 12.92 43317 44.3160 165.37 160.48 12.63 43318 44.3170 152.49 159.90 12.16 43319 44.3180 170.23 159.34 12.88 43320 44.3190 160.16 158.81 12.56 43321 44.3200 161.00 158.30 12.62 43322 44.3210 159.34 157.82 12.48 43323 44.3220 173.36 157.35 13.04 43324 44.3230 156.46 156.91 12.43 43325 44.3240 152.13 156.50 12.19 43326 44.3250 136.26 156.10 11.48 43327 44.3260 144.54 155.72 11.83 43328 44.3270 150.23 155.36 12.12 43329 44.3280 155.93 155.02 12.31 43330 44.3290 135.11 154.70 11.48 43331 44.3300 158.80 154.39 12.47 43332 44.3310 149.21 154.10 12.05 43333 44.3320 149.29 153.82 12.03 43334 44.3330 163.09 153.55 12.65 43335 44.3340 167.53 153.30 12.79 43336 44.3350 149.87 153.06 12.06 43337 44.3360 155.92 152.83 12.34 43338 44.3370 148.61 152.62 12.08 43339 44.3380 140.54 152.41 11.69 43340 44.3390 145.94 152.21 11.93 43341 44.3400 143.83 152.03 11.83 43342 44.3410 147.86 151.85 11.99 43343 44.3420 143.46 151.68 11.75 43344 44.3430 162.48 151.52 12.57 43345 44.3440 146.71 151.36 12.02 43346 44.3450 147.95 151.22 12.01 43347 44.3460 136.04 151.07 11.45 43348 44.3470 153.44 150.94 12.18 43349 44.3480 162.43 150.81 12.59 43350 44.3490 148.39 150.69 12.00 43351 44.3500 144.37 150.57 11.83 43352 44.3510 135.40 150.46 11.47 43353 44.3520 146.45 150.35 11.99 43354 44.3530 151.08 150.25 12.16 43355 44.3540 147.44 150.15 12.00 43356 44.3550 147.27 150.05 11.99 43357 44.3560 144.02 149.96 11.89 43358 44.3570 134.35 149.88 11.43 43359 44.3580 144.60 149.79 11.88 43360 44.3590 137.80 149.71 11.54 43361 44.3600 155.35 149.64 12.22 43362 44.3610 153.54 149.57 12.28 43363 44.3620 157.30 149.50 12.33 43364 44.3630 139.56 149.43 11.60 43365 44.3640 139.94 149.37 11.66 43366 44.3650 153.11 149.31 12.29 43367 44.3660 154.85 149.25 12.29 43368 44.3670 156.44 149.20 12.33 43369 44.3680 128.50 149.15 11.16 43370 44.3690 148.25 149.10 12.04 43371 44.3700 156.26 149.06 12.42 43372 44.3710 151.88 149.01 12.24 43373 44.3720 156.74 148.98 12.38 43374 44.3730 133.44 148.94 11.41 43375 44.3740 140.24 148.91 11.67 43376 44.3750 162.94 148.88 12.62 43377 44.3760 152.88 148.85 12.21 43378 44.3770 147.34 148.82 11.97 43379 44.3780 153.33 148.80 12.20 43380 44.3790 136.07 148.75 11.48 43381 44.3800 139.60 148.74 11.64 43382 44.3810 157.95 148.72 12.36 43383 44.3820 136.35 148.70 11.51 43384 44.3830 140.15 148.69 11.71 43385 44.3840 137.61 148.68 11.54 43386 44.3850 148.15 148.67 11.99 43387 44.3860 131.43 148.67 11.38 43388 44.3870 150.20 148.66 12.12 43389 44.3880 156.57 148.66 12.31 43390 44.3890 138.99 148.66 11.62 43391 44.3900 144.47 148.66 11.88 43392 44.3910 125.47 148.67 11.04 43393 44.3920 146.27 148.68 11.90 43394 44.3930 159.61 148.68 12.40 43395 44.3940 147.96 148.70 11.98 43396 44.3950 145.22 148.71 11.94 43397 44.3960 161.98 148.72 12.59 43398 44.3970 150.06 148.74 12.09 43399 44.3980 136.51 148.76 11.49 43400 44.3990 138.51 148.78 11.59 43401 44.4000 146.53 148.80 11.98 43402 44.4010 159.66 148.82 12.50 43403 44.4020 159.13 148.85 12.48 43404 44.4030 151.36 148.88 12.16 43405 44.4040 148.39 148.90 12.03 43406 44.4050 145.02 148.94 11.88 43407 44.4060 148.41 148.97 11.98 43408 44.4070 148.56 149.00 12.02 43409 44.4080 136.71 149.04 11.52 43410 44.4090 126.63 149.08 11.07 43411 44.4100 147.26 149.12 11.97 43412 44.4110 134.31 149.16 11.39 43413 44.4120 138.40 149.21 11.67 43414 44.4130 161.34 149.26 12.61 43415 44.4140 168.82 149.31 12.79 43416 44.4150 157.46 149.38 12.39 43417 44.4160 133.89 149.44 11.42 43418 44.4170 137.23 149.50 11.58 43419 44.4180 148.09 149.56 11.98 43420 44.4190 131.19 149.63 11.26 43421 44.4200 127.48 149.70 11.02 43422 44.4210 164.78 149.78 12.62 43423 44.4220 148.93 149.86 12.08 43424 44.4230 158.60 149.95 12.42 43425 44.4240 160.02 150.03 12.41 43426 44.4250 145.91 150.12 11.94 43427 44.4260 143.22 150.22 11.82 43428 44.4270 139.77 150.32 11.66 43429 44.4280 139.05 150.42 11.61 43430 44.4290 152.67 150.52 12.18 43431 44.4300 145.53 150.62 11.88 43432 44.4310 143.90 150.73 11.89 43433 44.4320 152.07 150.83 12.19 43434 44.4330 145.16 150.93 11.92 43435 44.4340 159.25 151.02 12.45 43436 44.4350 151.78 151.12 12.23 43437 44.4360 147.55 151.20 12.01 43438 44.4370 146.95 151.28 12.00 43439 44.4380 135.55 151.35 11.53 43440 44.4390 154.24 151.42 12.34 43441 44.4400 150.09 151.47 12.15 43442 44.4410 149.90 151.51 12.16 43443 44.4420 157.00 151.53 12.38 43444 44.4430 151.23 151.54 12.08 43445 44.4440 149.36 151.54 12.04 43446 44.4450 159.30 151.42 12.41 43447 44.4460 147.32 151.39 11.95 43448 44.4470 145.58 151.36 11.93 43449 44.4480 147.38 151.31 11.96 43450 44.4490 135.53 151.25 11.44 43451 44.4500 144.85 151.19 11.87 43452 44.4510 147.05 151.11 11.96 43453 44.4520 129.28 151.05 11.29 43454 44.4530 137.82 150.96 11.62 43455 44.4540 147.07 150.88 11.93 43456 44.4550 167.70 150.79 12.80 43457 44.4560 153.37 150.70 12.27 43458 44.4570 156.00 150.62 12.37 43459 44.4580 160.16 150.53 12.53 43460 44.4590 142.73 150.45 11.73 43461 44.4600 158.46 150.36 12.45 43462 44.4610 150.82 150.29 12.11 43463 44.4620 155.38 150.21 12.33 43464 44.4630 143.54 150.14 11.86 43465 44.4640 152.95 150.08 12.30 43466 44.4650 143.44 150.02 11.86 43467 44.4660 137.13 149.96 11.60 43468 44.4670 155.80 149.91 12.25 43469 44.4680 152.40 149.87 12.18 43470 44.4690 135.55 149.82 11.42 43471 44.4700 141.09 149.79 11.71 43472 44.4710 139.42 149.76 11.63 43473 44.4720 152.26 149.73 12.11 43474 44.4730 155.55 149.71 12.28 43475 44.4740 156.27 149.70 12.31 43476 44.4750 148.43 149.69 11.94 43477 44.4760 165.19 149.68 12.68 43478 44.4770 145.00 149.68 11.85 43479 44.4780 139.82 149.68 11.70 43480 44.4790 156.06 149.69 12.40 43481 44.4800 170.20 149.70 12.85 43482 44.4810 155.22 149.72 12.25 43483 44.4820 152.47 149.74 12.13 43484 44.4830 154.43 149.74 12.29 43485 44.4840 133.65 149.77 11.48 43486 44.4850 134.96 149.86 11.53 43487 44.4860 159.25 149.90 12.49 43488 44.4870 150.74 149.94 12.14 43489 44.4880 150.13 149.99 12.11 43490 44.4890 153.93 150.05 12.23 43491 44.4900 163.89 150.10 12.59 43492 44.4910 174.67 150.17 13.03 43493 44.4920 145.61 150.24 11.83 43494 44.4930 153.44 150.31 12.19 43495 44.4940 139.86 150.39 11.72 43496 44.4950 134.12 150.47 11.45 43497 44.4960 147.24 150.56 11.98 43498 44.4970 141.04 150.65 11.70 43499 44.4980 142.83 150.75 11.80 43500 44.4990 149.05 150.86 12.01 43501 44.5000 157.42 150.97 12.34 43502 44.5010 156.59 151.08 12.33 43503 44.5020 147.34 151.21 11.99 43504 44.5030 154.49 151.34 12.26 43505 44.5040 148.24 151.47 11.97 43506 44.5050 149.68 151.61 12.01 43507 44.5060 145.91 151.76 11.90 43508 44.5070 150.02 151.91 12.14 43509 44.5080 149.10 152.07 12.05 43510 44.5090 153.30 152.24 12.33 43511 44.5100 146.95 152.42 12.04 43512 44.5110 155.37 152.60 12.33 43513 44.5120 152.90 152.79 12.21 43514 44.5130 145.37 152.98 11.86 43515 44.5140 153.11 153.19 12.27 43516 44.5150 157.57 153.40 12.44 43517 44.5160 165.07 153.61 12.70 43518 44.5170 173.62 153.83 13.01 43519 44.5180 170.80 154.06 12.84 43520 44.5190 151.43 154.29 12.10 43521 44.5200 126.62 154.52 11.09 43522 44.5210 134.85 154.76 11.51 43523 44.5220 154.35 155.01 12.32 43524 44.5230 156.13 155.25 12.34 43525 44.5240 154.28 155.49 12.37 43526 44.5250 155.41 155.74 12.44 43527 44.5260 143.01 155.98 11.84 43528 44.5270 153.86 156.22 12.23 43529 44.5280 157.52 156.45 12.40 43530 44.5290 146.78 156.68 11.92 43531 44.5300 180.18 156.90 13.18 43532 44.5310 168.62 157.12 12.77 43533 44.5320 163.91 157.32 12.60 43534 44.5330 161.74 157.51 12.50 43535 44.5340 149.44 157.68 12.05 43536 44.5350 153.80 157.84 12.26 43537 44.5360 166.60 157.99 12.77 43538 44.5370 182.37 158.12 13.32 43539 44.5380 152.89 158.23 12.17 43540 44.5390 153.12 158.32 12.14 43541 44.5400 154.33 158.40 12.22 43542 44.5410 175.05 158.46 13.10 43543 44.5420 169.09 158.49 12.86 43544 44.5430 170.53 158.51 12.87 43545 44.5440 170.09 158.51 12.87 43546 44.5450 167.46 158.50 12.83 43547 44.5460 160.05 158.47 12.50 43548 44.5470 154.82 158.42 12.25 43549 44.5480 154.52 158.36 12.19 43550 44.5490 168.19 158.28 12.86 43551 44.5500 160.09 158.19 12.50 43552 44.5510 152.38 158.09 12.23 43553 44.5520 139.13 157.99 11.72 43554 44.5530 159.87 157.87 12.49 43555 44.5540 146.89 157.75 11.94 43556 44.5550 162.54 157.63 12.59 43557 44.5560 170.31 157.50 12.97 43558 44.5570 160.18 157.37 12.55 43559 44.5580 166.21 157.24 12.74 43560 44.5590 164.44 157.12 12.62 43561 44.5600 160.74 156.99 12.52 43562 44.5610 158.81 156.87 12.43 43563 44.5620 147.17 156.76 11.92 43564 44.5630 161.06 156.65 12.59 43565 44.5640 147.55 156.55 11.98 43566 44.5650 153.07 156.46 12.17 43567 44.5660 143.74 156.37 11.76 43568 44.5670 154.67 156.29 12.27 43569 44.5680 168.52 156.23 12.75 43570 44.5690 176.35 156.16 13.07 43571 44.5700 177.34 156.12 13.19 43572 44.5710 144.38 156.08 11.88 43573 44.5720 162.39 156.05 12.54 43574 44.5730 148.82 156.03 12.06 43575 44.5740 135.03 156.02 11.49 43576 44.5750 164.22 156.03 12.63 43577 44.5760 181.88 156.04 13.41 43578 44.5770 170.63 156.07 12.93 43579 44.5780 143.19 156.10 11.86 43580 44.5790 134.34 156.15 11.51 43581 44.5800 150.65 156.21 12.11 43582 44.5810 166.43 156.27 12.67 43583 44.5820 157.51 156.35 12.37 43584 44.5830 143.02 156.45 11.76 43585 44.5840 159.60 156.55 12.43 43586 44.5850 177.28 156.66 13.12 43587 44.5860 151.37 156.79 12.14 43588 44.5870 158.12 156.93 12.44 43589 44.5880 170.83 157.07 12.95 43590 44.5890 172.46 157.24 12.96 43591 44.5900 163.73 157.41 12.66 43592 44.5910 165.40 157.60 12.74 43593 44.5920 135.48 157.80 11.46 43594 44.5930 144.89 158.02 11.96 43595 44.5940 159.97 158.25 12.50 43596 44.5950 157.58 158.49 12.44 43597 44.5960 152.25 158.74 12.17 43598 44.5970 151.03 159.02 12.06 43599 44.5980 146.36 159.31 11.86 43600 44.5990 158.16 159.62 12.37 43601 44.6000 154.02 159.94 12.26 43602 44.6010 156.83 160.29 12.39 43603 44.6020 165.82 160.65 12.72 43604 44.6030 155.44 161.03 12.31 43605 44.6040 156.77 161.43 12.43 43606 44.6050 144.17 161.85 11.82 43607 44.6060 135.05 162.29 11.42 43608 44.6070 153.40 162.76 12.23 43609 44.6080 141.34 163.25 11.65 43610 44.6090 160.25 163.77 12.46 43611 44.6100 168.41 164.32 12.79 43612 44.6110 189.42 164.89 13.65 43613 44.6120 172.46 165.50 12.95 43614 44.6130 161.04 166.13 12.51 43615 44.6140 150.09 166.80 12.04 43616 44.6150 157.94 167.51 12.45 43617 44.6160 164.19 168.25 12.65 43618 44.6170 155.08 169.02 12.26 43619 44.6180 168.20 169.84 12.80 43620 44.6190 168.21 170.70 12.81 43621 44.6200 167.01 171.60 12.77 43622 44.6210 169.10 172.54 12.89 43623 44.6220 172.17 173.54 12.89 43624 44.6230 167.69 174.59 12.78 43625 44.6240 166.37 175.67 12.79 43626 44.6250 155.34 176.82 12.28 43627 44.6260 149.20 178.02 12.03 43628 44.6270 180.74 179.27 13.32 43629 44.6280 184.71 180.57 13.44 43630 44.6290 172.48 181.94 12.87 43631 44.6300 188.85 183.36 13.57 43632 44.6310 184.78 184.83 13.44 43633 44.6320 172.99 186.36 13.04 43634 44.6330 191.99 187.94 13.69 43635 44.6340 180.74 189.57 13.21 43636 44.6350 184.68 191.24 13.42 43637 44.6360 202.96 192.96 14.10 43638 44.6370 208.03 194.71 14.28 43639 44.6380 208.67 196.48 14.28 43640 44.6390 216.80 198.25 14.62 43641 44.6400 195.59 200.04 13.80 43642 44.6410 198.60 201.81 13.93 43643 44.6420 198.64 203.55 13.89 43644 44.6430 200.51 205.26 14.01 43645 44.6440 213.35 206.90 14.40 43646 44.6450 200.87 208.46 14.02 43647 44.6460 222.70 209.91 14.80 43648 44.6470 222.42 211.26 14.71 43649 44.6480 224.06 212.46 14.74 43650 44.6490 207.67 213.51 14.17 43651 44.6500 193.75 214.40 13.71 43652 44.6510 231.14 215.11 15.02 43653 44.6520 235.75 215.64 15.13 43654 44.6530 208.98 216.01 14.24 43655 44.6540 211.03 216.17 14.29 43656 44.6550 228.15 216.14 14.87 43657 44.6560 217.78 215.95 14.45 43658 44.6570 182.74 215.60 13.31 43659 44.6580 199.20 215.10 13.93 43660 44.6590 211.27 214.48 14.33 43661 44.6600 230.47 213.76 15.00 43662 44.6610 214.01 212.95 14.47 43663 44.6620 191.86 212.08 13.66 43664 44.6630 178.06 211.17 13.15 43665 44.6640 208.10 210.23 14.24 43666 44.6650 223.40 209.28 14.74 43667 44.6660 195.61 208.35 13.72 43668 44.6670 208.09 207.45 14.29 43669 44.6680 203.72 206.58 14.13 43670 44.6690 192.86 205.77 13.68 43671 44.6700 197.16 205.02 13.85 43672 44.6710 189.58 204.34 13.63 43673 44.6720 199.28 203.74 13.96 43674 44.6730 191.21 203.23 13.61 43675 44.6740 186.89 202.81 13.46 43676 44.6750 192.99 202.49 13.68 43677 44.6760 190.97 202.26 13.60 43678 44.6770 192.27 202.14 13.66 43679 44.6780 198.11 202.12 13.86 43680 44.6790 171.50 202.20 12.87 43681 44.6800 158.62 202.39 12.39 43682 44.6810 183.73 202.69 13.38 43683 44.6820 194.06 203.10 13.76 43684 44.6830 196.54 203.61 13.84 43685 44.6840 190.71 204.23 13.59 43686 44.6850 199.76 204.96 13.98 43687 44.6860 193.00 205.79 13.71 43688 44.6870 186.57 206.72 13.47 43689 44.6880 208.17 207.75 14.25 43690 44.6890 203.64 208.88 14.11 43691 44.6900 225.79 210.09 14.85 43692 44.6910 207.60 211.40 14.23 43693 44.6920 212.86 212.77 14.37 43694 44.6930 213.72 214.22 14.41 43695 44.6940 203.88 215.71 14.12 43696 44.6950 226.38 217.26 14.83 43697 44.6960 222.53 218.83 14.69 43698 44.6970 231.39 220.41 15.00 43699 44.6980 202.28 221.99 13.99 43700 44.6990 221.04 223.54 14.66 43701 44.7000 202.91 225.04 14.10 43702 44.7010 211.80 226.46 14.41 43703 44.7020 224.49 227.79 14.76 43704 44.7030 244.68 229.00 15.42 43705 44.7040 227.21 230.06 14.88 43706 44.7050 250.24 230.96 15.58 43707 44.7060 237.24 231.65 15.22 43708 44.7070 241.26 232.14 15.35 43709 44.7080 242.10 232.41 15.35 43710 44.7090 231.33 232.44 14.99 43711 44.7100 242.52 232.22 15.40 43712 44.7110 249.72 231.77 15.66 43713 44.7120 236.25 231.07 15.21 43714 44.7130 224.89 230.14 14.84 43715 44.7140 230.07 228.99 14.91 43716 44.7150 241.18 227.63 15.30 43717 44.7160 241.51 226.10 15.40 43718 44.7170 230.33 224.40 14.99 43719 44.7180 206.63 222.56 14.07 43720 44.7190 213.97 220.60 14.43 43721 44.7200 229.77 218.55 15.04 43722 44.7210 208.72 216.43 14.36 43723 44.7220 221.29 214.27 14.74 43724 44.7230 198.33 212.07 13.87 43725 44.7240 211.84 209.86 14.44 43726 44.7250 219.49 207.66 14.60 43727 44.7260 203.08 205.46 13.99 43728 44.7270 195.76 203.31 13.80 43729 44.7280 210.90 201.20 14.36 43730 44.7290 195.70 199.13 13.77 43731 44.7300 183.60 197.11 13.30 43732 44.7310 152.19 195.16 12.10 43733 44.7320 169.93 193.27 12.89 43734 44.7330 182.00 191.43 13.28 43735 44.7340 185.09 189.68 13.44 43736 44.7350 180.01 187.98 13.25 43737 44.7360 155.05 186.36 12.23 43738 44.7370 181.08 184.80 13.25 43739 44.7380 188.31 183.31 13.62 43740 44.7390 175.37 181.88 13.14 43741 44.7400 142.19 180.51 11.81 43742 44.7410 161.86 179.21 12.56 43743 44.7420 176.59 177.96 13.16 43744 44.7430 181.39 176.77 13.27 43745 44.7440 184.38 175.64 13.39 43746 44.7450 183.71 174.56 13.38 43747 44.7460 177.24 173.53 13.11 43748 44.7470 164.03 172.54 12.63 43749 44.7480 183.81 171.60 13.39 43750 44.7490 169.54 170.71 12.84 43751 44.7500 162.59 169.85 12.61 43752 44.7510 188.06 169.04 13.66 43753 44.7520 170.73 168.27 12.87 43754 44.7530 162.32 167.53 12.55 43755 44.7540 174.04 166.82 13.05 43756 44.7550 174.60 166.15 13.00 43757 44.7560 167.95 165.51 12.78 43758 44.7570 196.89 164.90 13.79 43759 44.7580 154.07 164.31 12.26 43760 44.7590 165.30 163.76 12.65 43761 44.7600 152.69 163.22 12.19 43762 44.7610 158.76 162.71 12.41 43763 44.7620 154.05 162.23 12.26 43764 44.7630 162.68 161.77 12.59 43765 44.7640 154.04 161.32 12.24 43766 44.7650 163.20 160.90 12.64 43767 44.7660 176.74 160.50 13.17 43768 44.7670 162.19 160.12 12.56 43769 44.7680 156.05 159.75 12.29 43770 44.7690 153.39 159.40 12.22 43771 44.7700 158.77 159.07 12.46 43772 44.7710 166.39 158.75 12.65 43773 44.7720 145.74 158.44 11.91 43774 44.7730 144.49 158.15 11.88 43775 44.7740 152.03 157.88 12.18 43776 44.7750 159.41 157.61 12.49 43777 44.7760 156.39 157.36 12.43 43778 44.7770 141.85 157.12 11.81 43779 44.7780 165.68 156.89 12.77 43780 44.7790 150.66 156.67 12.13 43781 44.7800 156.97 156.47 12.33 43782 44.7810 163.91 156.27 12.64 43783 44.7820 164.52 156.09 12.67 43784 44.7830 153.08 155.91 12.21 43785 44.7840 156.91 155.74 12.37 43786 44.7850 156.19 155.59 12.31 43787 44.7860 162.56 155.44 12.52 43788 44.7870 138.33 155.30 11.66 43789 44.7880 148.69 155.20 12.06 43790 44.7890 155.70 155.08 12.33 43791 44.7900 144.72 154.97 11.81 43792 44.7910 149.67 154.86 12.04 43793 44.7920 155.44 154.76 12.35 43794 44.7930 165.82 154.67 12.72 43795 44.7940 170.22 154.59 12.92 43796 44.7950 171.41 154.52 12.92 43797 44.7960 171.92 154.45 12.99 43798 44.7970 171.81 154.39 12.97 43799 44.7980 170.84 154.34 12.93 43800 44.7990 161.97 154.30 12.54 43801 44.8000 157.53 154.27 12.42 43802 44.8010 149.67 154.24 12.05 43803 44.8020 140.50 154.22 11.70 43804 44.8030 136.66 154.21 11.60 43805 44.8040 144.52 154.21 11.89 43806 44.8050 150.12 154.21 12.06 43807 44.8060 152.54 154.22 12.15 43808 44.8070 140.29 154.24 11.66 43809 44.8080 149.72 154.27 12.09 43810 44.8090 155.52 154.31 12.33 43811 44.8100 162.18 154.36 12.57 43812 44.8110 169.86 154.41 12.88 43813 44.8120 172.84 154.48 12.98 43814 44.8130 172.64 154.55 13.06 43815 44.8140 150.92 154.63 12.11 43816 44.8150 149.47 154.73 12.05 43817 44.8160 158.32 154.83 12.46 43818 44.8170 141.34 154.95 11.70 43819 44.8180 160.05 155.07 12.46 43820 44.8190 157.88 155.21 12.39 43821 44.8200 152.38 155.35 12.19 43822 44.8210 169.75 155.51 12.86 43823 44.8220 151.02 155.68 12.07 43824 44.8230 166.66 155.87 12.72 43825 44.8240 169.30 156.07 12.92 43826 44.8250 154.44 156.28 12.29 43827 44.8260 154.09 156.50 12.21 43828 44.8270 144.95 156.74 11.87 43829 44.8280 156.05 156.99 12.33 43830 44.8290 153.21 157.26 12.24 43831 44.8300 155.05 157.54 12.30 43832 44.8310 163.16 157.84 12.63 43833 44.8320 156.74 158.15 12.36 43834 44.8330 146.63 158.49 11.89 43835 44.8340 167.30 158.83 12.71 43836 44.8350 152.70 159.20 12.16 43837 44.8360 155.49 159.58 12.35 43838 44.8370 161.77 159.98 12.58 43839 44.8380 164.71 160.39 12.62 43840 44.8390 154.87 160.82 12.25 43841 44.8400 163.56 161.27 12.64 43842 44.8410 165.66 161.73 12.78 43843 44.8420 176.88 162.21 13.17 43844 44.8430 170.27 162.69 12.86 43845 44.8440 175.56 163.19 13.09 43846 44.8450 176.19 163.70 13.14 43847 44.8460 175.30 164.22 13.06 43848 44.8470 180.70 164.73 13.29 43849 44.8480 172.40 165.25 13.00 43850 44.8490 165.36 165.78 12.75 43851 44.8500 165.61 166.29 12.60 43852 44.8510 176.45 166.80 13.08 43853 44.8520 170.42 167.29 12.86 43854 44.8530 162.84 167.77 12.64 43855 44.8540 164.00 168.23 12.71 43856 44.8550 150.73 168.65 12.17 43857 44.8560 158.69 169.05 12.42 43858 44.8570 182.61 169.37 13.42 43859 44.8580 179.74 169.69 13.28 43860 44.8590 173.24 169.96 12.96 43861 44.8600 148.14 170.18 11.96 43862 44.8610 156.25 170.35 12.25 43863 44.8620 172.69 170.51 12.95 43864 44.8630 168.60 170.56 12.80 43865 44.8640 183.97 170.56 13.43 43866 44.8650 181.38 170.50 13.35 43867 44.8660 167.57 170.38 12.84 43868 44.8670 177.78 170.20 13.19 43869 44.8680 197.36 169.97 13.87 43870 44.8690 174.15 169.68 12.94 43871 44.8700 182.01 169.35 13.37 43872 44.8710 161.59 168.97 12.57 43873 44.8720 179.70 168.55 13.23 43874 44.8730 182.96 168.10 13.36 43875 44.8740 173.77 167.61 12.98 43876 44.8750 163.64 167.10 12.65 43877 44.8760 179.60 166.56 13.27 43878 44.8770 169.61 166.01 12.85 43879 44.8780 164.09 165.45 12.60 43880 44.8790 169.09 164.88 12.79 43881 44.8800 159.73 164.30 12.53 43882 44.8810 164.71 163.72 12.76 43883 44.8820 157.59 163.14 12.44 43884 44.8830 170.34 162.57 12.85 43885 44.8840 178.37 162.01 13.19 43886 44.8850 152.39 161.45 12.16 43887 44.8860 161.45 160.90 12.54 43888 44.8870 148.31 160.37 11.98 43889 44.8880 150.45 159.85 12.10 43890 44.8890 160.64 159.34 12.47 43891 44.8900 165.95 158.85 12.66 43892 44.8910 163.72 158.37 12.61 43893 44.8920 159.95 157.90 12.53 43894 44.8930 156.81 157.46 12.32 43895 44.8940 176.05 157.02 13.11 43896 44.8950 169.43 156.61 12.83 43897 44.8960 180.87 156.21 13.30 43898 44.8970 178.12 155.82 13.25 43899 44.8980 165.90 155.45 12.81 43900 44.8990 158.25 155.10 12.48 43901 44.9000 168.44 154.75 12.80 43902 44.9010 173.71 154.42 12.99 43903 44.9020 162.10 154.11 12.52 43904 44.9030 176.72 153.81 13.06 43905 44.9040 146.98 153.52 12.00 43906 44.9050 152.82 153.24 12.24 43907 44.9060 151.00 152.98 12.13 43908 44.9070 146.56 152.72 11.98 43909 44.9080 153.19 152.48 12.18 43910 44.9090 152.38 152.24 12.14 43911 44.9100 142.49 152.02 11.74 43912 44.9110 143.78 151.81 11.80 43913 44.9120 157.12 151.60 12.40 43914 44.9130 161.22 151.41 12.54 43915 44.9140 149.98 151.22 12.09 43916 44.9150 154.77 151.04 12.28 43917 44.9160 148.74 150.87 12.06 43918 44.9170 144.56 150.70 11.81 43919 44.9180 156.95 150.54 12.34 43920 44.9190 170.30 150.39 12.97 43921 44.9200 161.55 150.25 12.54 43922 44.9210 147.89 150.11 11.99 43923 44.9220 152.09 149.98 12.08 43924 44.9230 142.46 149.85 11.80 43925 44.9240 146.71 149.73 11.91 43926 44.9250 149.92 149.61 12.14 43927 44.9260 152.12 149.50 12.20 43928 44.9270 134.47 149.39 11.49 43929 44.9280 151.55 149.29 12.10 43930 44.9290 139.34 149.19 11.70 43931 44.9300 142.42 149.10 11.82 43932 44.9310 136.10 149.01 11.46 43933 44.9320 150.13 148.95 12.08 43934 44.9330 150.97 148.87 12.10 43935 44.9340 144.25 148.79 11.86 43936 44.9350 142.77 148.72 11.85 43937 44.9360 148.15 148.65 11.97 43938 44.9370 160.93 148.58 12.48 43939 44.9380 159.49 148.52 12.43 43940 44.9390 147.90 148.46 12.03 43941 44.9400 138.12 148.40 11.53 43942 44.9410 136.95 148.35 11.58 43943 44.9420 138.95 148.30 11.61 43944 44.9430 160.13 148.25 12.46 43945 44.9440 151.77 148.21 12.12 43946 44.9450 149.26 148.17 12.10 43947 44.9460 150.96 148.13 12.16 43948 44.9470 154.22 148.09 12.29 43949 44.9480 134.22 148.06 11.45 43950 44.9490 144.53 148.03 11.76 43951 44.9500 142.98 148.00 11.82 43952 44.9510 142.44 147.98 11.81 43953 44.9520 171.21 147.95 12.98 43954 44.9530 162.15 147.93 12.62 43955 44.9540 145.37 147.92 11.87 43956 44.9550 157.09 147.90 12.32 43957 44.9560 145.34 147.89 11.89 43958 44.9570 143.90 147.88 11.83 43959 44.9580 148.55 147.87 12.03 43960 44.9590 156.48 147.87 12.35 43961 44.9600 153.56 147.87 12.25 43962 44.9610 155.42 147.87 12.33 43963 44.9620 169.14 147.87 12.86 43964 44.9630 159.33 147.88 12.51 43965 44.9640 144.05 147.88 11.84 43966 44.9650 147.45 147.89 11.95 43967 44.9660 139.53 147.91 11.56 43968 44.9670 152.54 147.92 12.25 43969 44.9680 151.44 147.94 12.11 43970 44.9690 150.75 147.96 12.13 43971 44.9700 182.27 147.99 13.34 43972 44.9710 149.91 148.02 12.03 43973 44.9720 163.10 148.05 12.52 43974 44.9730 169.28 148.08 12.85 43975 44.9740 165.07 148.14 12.72 43976 44.9750 162.98 148.18 12.60 43977 44.9760 159.75 148.23 12.46 43978 44.9770 152.61 148.28 12.09 43979 44.9780 150.19 148.33 12.05 43980 44.9790 146.17 148.38 11.84 43981 44.9800 127.63 148.44 11.10 43982 44.9810 141.01 148.50 11.71 43983 44.9820 165.92 148.57 12.71 43984 44.9830 166.58 148.64 12.74 43985 44.9840 153.26 148.72 12.25 43986 44.9850 150.85 148.80 12.14 43987 44.9860 136.88 148.88 11.52 43988 44.9870 151.35 148.98 12.14 43989 44.9880 163.42 149.07 12.62 43990 44.9890 138.06 149.17 11.56 43991 44.9900 144.31 149.28 11.89 43992 44.9910 154.46 149.39 12.24 43993 44.9920 156.94 149.51 12.24 43994 44.9930 144.89 149.64 11.80 43995 44.9940 154.05 149.77 12.28 43996 44.9950 153.49 149.91 12.17 43997 44.9960 158.97 150.06 12.34 43998 44.9970 151.68 150.21 12.14 43999 44.9980 146.17 150.37 11.94 44000 44.9990 154.27 150.54 12.25 44001 45.0000 163.01 150.72 12.66 44002 45.0010 164.54 150.91 12.68 44003 45.0020 151.96 151.11 12.16 44004 45.0030 154.44 151.32 12.25 44005 45.0040 138.57 151.53 11.55 44006 45.0050 149.69 151.76 12.08 44007 45.0060 159.21 152.00 12.50 44008 45.0070 176.85 152.24 13.20 44009 45.0080 158.00 152.50 12.45 44010 45.0090 163.77 152.77 12.67 44011 45.0100 154.92 153.05 12.34 44012 45.0110 145.86 153.35 11.90 44013 45.0120 138.46 153.65 11.54 44014 45.0130 152.00 153.96 12.17 44015 45.0140 155.36 154.29 12.26 44016 45.0150 157.79 154.62 12.37 44017 45.0160 150.93 154.97 12.10 44018 45.0170 149.75 155.32 12.05 44019 45.0180 133.18 155.69 11.44 44020 45.0190 151.42 156.05 12.06 44021 45.0200 181.37 156.43 13.21 44022 45.0210 160.45 156.81 12.49 44023 45.0220 158.03 157.19 12.44 44024 45.0230 159.70 157.58 12.48 44025 45.0240 164.22 157.96 12.70 44026 45.0250 168.53 158.34 12.82 44027 45.0260 165.28 158.72 12.78 44028 45.0270 158.84 159.09 12.48 44029 45.0280 162.61 159.45 12.64 44030 45.0290 157.69 159.79 12.42 44031 45.0300 161.25 160.12 12.59 44032 45.0310 171.30 160.44 12.89 44033 45.0320 149.91 160.74 12.12 44034 45.0330 171.35 161.02 12.96 44035 45.0340 160.65 161.29 12.54 44036 45.0350 151.18 161.54 12.04 44037 45.0360 167.28 161.77 12.81 44038 45.0370 154.72 161.98 12.29 44039 45.0380 154.84 162.17 12.27 44040 45.0390 159.93 162.35 12.56 44041 45.0400 165.85 162.52 12.72 44042 45.0410 167.99 162.67 12.73 44043 45.0420 148.70 162.81 12.01 44044 45.0430 150.24 162.94 12.06 44045 45.0440 173.81 163.06 13.02 44046 45.0450 176.72 163.17 13.08 44047 45.0460 149.70 163.27 12.12 44048 45.0470 176.71 163.36 13.21 44049 45.0480 159.84 163.45 12.54 44050 45.0490 166.53 163.52 12.77 44051 45.0500 161.91 163.60 12.54 44052 45.0510 161.79 163.66 12.52 44053 45.0520 158.80 163.73 12.43 44054 45.0530 168.44 163.79 12.80 44055 45.0540 151.78 163.85 12.16 44056 45.0550 167.40 163.91 12.78 44057 45.0560 154.31 163.97 12.23 44058 45.0570 146.79 164.04 11.99 44059 45.0580 158.03 164.11 12.44 44060 45.0590 156.99 164.19 12.30 44061 45.0600 151.60 164.28 12.15 44062 45.0610 152.95 164.39 12.19 44063 45.0620 151.51 164.51 12.12 44064 45.0630 167.81 164.66 12.79 44065 45.0640 164.72 164.82 12.67 44066 45.0650 177.52 165.01 13.18 44067 45.0660 168.91 165.23 12.77 44068 45.0670 162.20 165.48 12.63 44069 45.0680 174.83 165.75 13.03 44070 45.0690 180.23 166.05 13.27 44071 45.0700 160.76 166.39 12.47 44072 45.0710 165.79 166.76 12.73 44073 45.0720 174.47 167.16 13.05 44074 45.0730 184.18 167.59 13.38 44075 45.0740 164.96 168.06 12.66 44076 45.0750 161.78 168.55 12.52 44077 45.0760 170.97 169.07 12.95 44078 45.0770 166.42 169.62 12.73 44079 45.0780 177.88 170.19 13.17 44080 45.0790 159.69 170.78 12.45 44081 45.0800 168.93 171.38 12.88 44082 45.0810 185.71 172.00 13.46 44083 45.0820 185.64 172.62 13.45 44084 45.0830 166.42 173.23 12.68 44085 45.0840 162.74 173.83 12.62 44086 45.0850 181.86 174.42 13.34 44087 45.0860 175.80 174.97 13.05 44088 45.0870 168.86 175.50 12.85 44089 45.0880 177.09 175.98 13.08 44090 45.0890 161.05 176.40 12.52 44091 45.0900 158.66 176.76 12.32 44092 45.0910 184.46 177.05 13.43 44093 45.0920 176.24 177.26 13.10 44094 45.0930 171.86 177.39 12.99 44095 45.0940 171.73 177.43 12.95 44096 45.0950 168.88 177.38 12.82 44097 45.0960 175.13 177.24 13.04 44098 45.0970 175.18 177.00 13.08 44099 45.0980 174.02 176.68 12.96 44100 45.0990 180.57 176.27 13.26 44101 45.1000 169.18 175.78 12.90 44102 45.1010 189.91 175.22 13.58 44103 45.1020 189.84 174.60 13.64 44104 45.1030 159.05 173.92 12.45 44105 45.1040 168.39 173.18 12.81 44106 45.1050 173.81 172.42 13.06 44107 45.1060 179.22 171.62 13.24 44108 45.1070 187.31 170.79 13.44 44109 45.1080 154.35 169.95 12.28 44110 45.1090 168.52 169.10 12.80 44111 45.1100 162.02 168.25 12.56 44112 45.1110 158.58 167.41 12.48 44113 45.1120 151.20 166.57 12.13 44114 45.1130 164.28 165.74 12.64 44115 45.1140 166.25 164.93 12.72 44116 45.1150 167.04 164.14 12.77 44117 45.1160 167.57 163.37 12.89 44118 45.1170 171.24 162.62 12.98 44119 45.1180 173.31 161.90 13.03 44120 45.1190 165.55 161.20 12.68 44121 45.1200 154.21 160.53 12.25 44122 45.1210 147.02 159.88 11.94 44123 45.1220 164.62 159.26 12.71 44124 45.1230 163.85 158.66 12.65 44125 45.1240 182.08 158.09 13.31 44126 45.1250 164.63 157.54 12.65 44127 45.1260 166.34 157.02 12.75 44128 45.1270 150.17 156.52 12.04 44129 45.1280 165.33 156.04 12.72 44130 45.1290 149.61 155.58 12.05 44131 45.1300 158.19 155.15 12.37 44132 45.1310 145.56 154.73 11.87 44133 45.1320 143.77 154.33 11.78 44134 45.1330 172.10 153.95 13.00 44135 45.1340 167.65 153.59 12.80 44136 45.1350 151.55 153.25 12.19 44137 45.1360 141.72 152.92 11.76 44138 45.1370 148.65 152.63 12.03 44139 45.1380 162.45 152.33 12.54 44140 45.1390 144.48 152.05 11.90 44141 45.1400 144.69 151.78 11.88 44142 45.1410 131.19 151.52 11.25 44143 45.1420 149.91 151.27 12.06 44144 45.1430 163.58 151.04 12.60 44145 45.1440 144.55 150.82 11.87 44146 45.1450 152.72 150.60 12.23 44147 45.1460 155.36 150.40 12.26 44148 45.1470 147.51 150.21 11.93 44149 45.1480 160.46 150.02 12.50 44150 45.1490 137.16 149.85 11.53 44151 45.1500 149.34 149.68 12.09 44152 45.1510 156.21 149.52 12.29 44153 45.1520 147.71 149.37 11.99 44154 45.1530 154.59 149.23 12.25 44155 45.1540 157.63 149.09 12.36 44156 45.1550 164.77 148.98 12.67 44157 45.1560 167.36 148.86 12.83 44158 45.1570 154.53 148.74 12.25 44159 45.1580 145.81 148.63 11.86 44160 45.1590 135.01 148.53 11.51 44161 45.1600 149.76 148.43 12.14 44162 45.1610 135.73 148.34 11.50 44163 45.1620 144.46 148.25 11.85 44164 45.1630 167.26 148.16 12.78 44165 45.1640 152.14 148.09 12.18 44166 45.1650 143.55 148.01 11.78 44167 45.1660 165.41 147.95 12.64 44168 45.1670 154.96 147.89 12.24 44169 45.1680 154.76 147.83 12.22 44170 45.1690 153.06 147.77 12.23 44171 45.1700 139.28 147.73 11.67 44172 45.1710 125.10 147.68 10.97 44173 45.1720 164.21 147.64 12.57 44174 45.1730 155.85 147.61 12.34 44175 45.1740 134.39 147.58 11.45 44176 45.1750 148.69 147.55 12.06 44177 45.1760 147.15 147.53 11.95 44178 45.1770 159.40 147.51 12.45 44179 45.1780 137.38 147.49 11.45 44180 45.1790 144.65 147.49 11.89 44181 45.1800 151.26 147.48 12.15 44182 45.1810 140.74 147.48 11.67 44183 45.1820 149.04 147.48 12.04 44184 45.1830 139.76 147.49 11.64 44185 45.1840 140.64 147.49 11.74 44186 45.1850 161.03 147.51 12.54 44187 45.1860 159.00 147.53 12.45 44188 45.1870 152.29 147.55 12.20 44189 45.1880 153.40 147.58 12.21 44190 45.1890 160.83 147.61 12.52 44191 45.1900 158.20 147.65 12.37 44192 45.1910 148.76 147.69 11.94 44193 45.1920 138.80 147.73 11.57 44194 45.1930 144.70 147.78 11.85 44195 45.1940 143.20 147.83 11.85 44196 45.1950 141.15 147.89 11.74 44197 45.1960 160.64 147.94 12.43 44198 45.1970 165.75 148.00 12.63 44199 45.1980 154.93 148.07 12.23 44200 45.1990 145.40 148.13 11.91 44201 45.2000 151.85 148.20 12.12 44202 45.2010 160.01 148.26 12.48 44203 45.2020 143.11 148.33 11.85 44204 45.2030 134.36 148.40 11.52 44205 45.2040 144.04 148.47 11.87 44206 45.2050 135.13 148.54 11.50 44207 45.2060 145.71 148.61 11.91 44208 45.2070 141.40 148.68 11.72 44209 45.2080 144.96 148.75 11.94 44210 45.2090 153.12 148.82 12.27 44211 45.2100 155.39 148.89 12.35 44212 45.2110 140.03 148.95 11.62 44213 45.2120 142.19 149.02 11.77 44214 45.2130 154.26 149.08 12.32 44215 45.2140 158.61 149.14 12.47 44216 45.2150 150.58 149.21 12.14 44217 45.2160 158.06 149.27 12.42 44218 45.2170 145.55 149.33 11.85 44219 45.2180 145.35 149.39 11.87 44220 45.2190 146.27 149.46 11.87 44221 45.2200 172.28 149.52 12.97 44222 45.2210 149.11 149.59 12.05 44223 45.2220 154.82 149.66 12.34 44224 45.2230 151.72 149.74 12.17 44225 45.2240 146.57 149.81 11.90 44226 45.2250 163.99 149.90 12.63 44227 45.2260 156.89 149.99 12.38 44228 45.2270 154.63 150.08 12.25 44229 45.2280 157.23 150.19 12.30 44230 45.2290 158.88 150.30 12.46 44231 45.2300 142.73 150.31 11.76 44232 45.2310 157.84 150.43 12.46 44233 45.2320 164.14 150.56 12.68 44234 45.2330 158.44 150.70 12.48 44235 45.2340 158.55 150.83 12.42 44236 45.2350 155.23 150.98 12.25 44237 45.2360 151.82 151.13 12.14 44238 45.2370 147.82 151.28 12.00 44239 45.2380 150.59 151.43 12.14 44240 45.2390 145.73 151.58 11.86 44241 45.2400 159.89 151.74 12.34 44242 45.2410 170.54 151.89 12.88 44243 45.2420 187.57 152.05 13.54 44244 45.2430 141.24 152.20 11.72 44245 45.2440 135.61 152.35 11.37 44246 45.2450 165.60 152.49 12.58 44247 45.2460 161.70 152.63 12.45 44248 45.2470 159.85 152.77 12.44 44249 45.2480 168.63 152.90 12.79 44250 45.2490 158.91 153.03 12.43 44251 45.2500 137.98 153.16 11.60 44252 45.2510 158.05 153.28 12.37 44253 45.2520 182.65 153.40 13.37 44254 45.2530 154.28 153.53 12.26 44255 45.2540 153.47 153.65 12.19 44256 45.2550 164.65 153.78 12.68 44257 45.2560 165.13 153.91 12.77 44258 45.2570 167.53 154.05 12.83 44259 45.2580 156.62 154.19 12.33 44260 45.2590 149.18 154.33 12.03 44261 45.2600 154.07 154.48 12.31 44262 45.2610 176.36 154.64 13.15 44263 45.2620 166.86 154.80 12.72 44264 45.2630 164.91 154.97 12.65 44265 45.2640 151.25 155.14 12.08 44266 45.2650 162.39 155.32 12.53 44267 45.2660 159.35 155.49 12.46 44268 45.2670 151.73 155.67 12.12 44269 45.2680 147.64 155.84 12.06 44270 45.2690 150.37 156.01 12.06 44271 45.2700 146.14 156.17 11.89 44272 45.2710 160.39 156.32 12.55 44273 45.2720 157.15 156.45 12.38 44274 45.2730 164.27 156.57 12.65 44275 45.2740 167.51 156.68 12.70 44276 45.2750 155.18 156.76 12.33 44277 45.2760 149.31 156.81 12.09 44278 45.2770 153.37 156.84 12.28 44279 45.2780 158.78 156.85 12.42 44280 45.2790 145.92 156.82 11.95 44281 45.2800 140.93 156.76 11.70 44282 45.2810 143.05 156.68 11.76 44283 45.2820 147.22 156.56 12.01 44284 45.2830 161.81 156.42 12.56 44285 45.2840 163.87 156.25 12.62 44286 45.2850 167.62 156.06 12.79 44287 45.2860 167.05 155.84 12.76 44288 45.2870 154.60 155.60 12.26 44289 45.2880 161.26 155.35 12.57 44290 45.2890 158.57 155.07 12.38 44291 45.2900 156.68 154.79 12.29 44292 45.2910 159.16 154.49 12.37 44293 45.2920 153.86 154.19 12.25 44294 45.2930 171.35 153.88 12.99 44295 45.2940 153.26 153.57 12.29 44296 45.2950 152.95 153.26 12.19 44297 45.2960 138.67 152.95 11.58 44298 45.2970 138.19 152.64 11.58 44299 45.2980 132.42 152.33 11.35 44300 45.2990 175.56 152.03 13.09 44301 45.3000 148.14 151.73 12.09 44302 45.3010 140.29 151.44 11.77 44303 45.3020 157.81 151.16 12.42 44304 45.3030 155.37 150.88 12.33 44305 45.3040 148.35 150.61 11.99 44306 45.3050 160.60 150.35 12.49 44307 45.3060 149.67 150.10 12.04 44308 45.3070 149.70 149.72 12.12 44309 45.3080 141.62 149.48 11.78 44310 45.3090 143.63 149.25 11.85 44311 45.3100 138.23 149.03 11.62 44312 45.3110 154.11 148.82 12.28 44313 45.3120 159.05 148.62 12.46 44314 45.3130 156.76 148.43 12.35 44315 45.3140 142.74 148.24 11.84 44316 45.3150 149.73 148.06 12.12 44317 45.3160 137.30 147.89 11.63 44318 45.3170 155.89 147.73 12.44 44319 45.3180 141.94 147.57 11.76 44320 45.3190 164.39 147.42 12.70 44321 45.3200 161.60 147.27 12.59 44322 45.3210 145.11 147.14 11.86 44323 45.3220 141.41 147.01 11.71 44324 45.3230 149.48 146.88 12.05 44325 45.3240 137.27 146.76 11.48 44326 45.3250 142.06 146.65 11.76 44327 45.3260 154.65 146.54 12.33 44328 45.3270 159.12 146.44 12.43 44329 45.3280 144.49 146.35 11.90 44330 45.3290 143.69 146.25 11.78 44331 45.3300 159.87 146.17 12.47 44332 45.3310 144.22 146.08 11.93 44333 45.3320 139.84 146.01 11.72 44334 45.3330 138.29 145.93 11.64 44335 45.3340 135.61 145.86 11.52 44336 45.3350 132.29 145.79 11.37 44337 45.3360 146.10 145.73 11.95 44338 45.3370 157.24 145.67 12.37 44339 45.3380 149.80 145.62 12.05 44340 45.3390 167.79 145.56 12.76 44341 45.3400 140.93 145.51 11.72 44342 45.3410 137.08 145.47 11.57 44343 45.3420 146.27 145.43 11.92 44344 45.3430 155.53 145.38 12.36 44345 45.3440 148.45 145.35 12.04 44346 45.3450 151.28 145.31 12.10 44347 45.3460 141.96 145.28 11.70 44348 45.3470 151.19 145.25 12.17 44349 45.3480 138.75 145.23 11.59 44350 45.3490 141.45 145.20 11.72 44351 45.3500 138.97 145.18 11.75 44352 45.3510 142.85 145.16 11.87 44353 45.3520 136.54 145.15 11.48 44354 45.3530 137.36 145.13 11.51 44355 45.3540 142.21 145.12 11.74 44356 45.3550 150.49 145.11 12.12 44357 45.3560 144.33 145.10 11.89 44358 45.3570 148.28 145.10 12.05 44359 45.3580 154.50 145.10 12.28 44360 45.3590 149.17 145.10 12.02 44361 45.3600 159.61 145.10 12.51 44362 45.3610 149.59 145.10 12.13 44363 45.3620 126.57 145.11 11.10 44364 45.3630 137.46 145.12 11.53 44365 45.3640 142.99 145.13 11.83 44366 45.3650 163.95 145.14 12.66 44367 45.3660 149.28 145.15 12.08 44368 45.3670 152.70 145.17 12.20 44369 45.3680 147.55 145.19 12.01 44370 45.3690 153.64 145.21 12.33 44371 45.3700 162.70 145.24 12.64 44372 45.3710 156.63 145.26 12.37 44373 45.3720 133.30 145.29 11.37 44374 45.3730 137.84 145.33 11.63 44375 45.3740 152.55 145.36 12.23 44376 45.3750 152.07 145.40 12.18 44377 45.3760 169.86 145.43 12.90 44378 45.3770 140.35 145.48 11.72 44379 45.3780 160.80 145.52 12.51 44380 45.3790 146.56 145.57 11.96 44381 45.3800 137.67 145.62 11.55 44382 45.3810 129.29 145.67 11.24 44383 45.3820 132.53 145.73 11.31 44384 45.3830 143.70 145.79 11.81 44385 45.3840 132.25 145.85 11.43 44386 45.3850 142.33 145.92 11.81 44387 45.3860 139.30 145.99 11.67 44388 45.3870 139.98 146.06 11.72 44389 45.3880 142.20 146.14 11.81 44390 45.3890 135.38 146.22 11.54 44391 45.3900 151.36 146.31 12.17 44392 45.3910 146.79 146.40 11.98 44393 45.3920 141.33 146.49 11.79 44394 45.3930 157.51 146.59 12.37 44395 45.3940 139.05 146.69 11.66 44396 45.3950 133.80 146.80 11.42 44397 45.3960 147.99 146.91 11.95 44398 45.3970 154.84 147.04 12.25 44399 45.3980 150.82 147.16 12.09 44400 45.3990 150.13 147.29 12.06 44401 45.4000 154.95 147.43 12.30 44402 45.4010 165.69 147.57 12.78 44403 45.4020 142.04 147.72 11.78 44404 45.4030 153.14 147.88 12.23 44405 45.4040 143.49 148.04 11.85 44406 45.4050 135.88 148.21 11.52 44407 45.4060 159.08 148.40 12.43 44408 45.4070 149.34 148.58 12.06 44409 45.4080 142.08 148.78 11.73 44410 45.4090 158.87 148.99 12.43 44411 45.4100 157.38 149.20 12.34 44412 45.4110 148.01 149.43 11.96 44413 45.4120 149.94 149.66 12.02 44414 45.4130 137.15 149.91 11.56 44415 45.4140 154.98 150.16 12.27 44416 45.4150 159.52 150.43 12.41 44417 45.4160 175.36 150.71 13.12 44418 45.4170 145.89 151.00 11.92 44419 45.4180 152.43 151.30 12.23 44420 45.4190 157.27 151.62 12.40 44421 45.4200 146.27 151.95 11.94 44422 45.4210 141.21 152.29 11.69 44423 45.4220 173.66 152.64 13.08 44424 45.4230 156.53 153.01 12.38 44425 45.4240 147.81 153.39 12.04 44426 45.4250 157.20 153.78 12.40 44427 45.4260 147.77 154.18 12.05 44428 45.4270 157.95 154.59 12.37 44429 45.4280 166.26 155.02 12.72 44430 45.4290 160.42 155.45 12.48 44431 45.4300 180.42 155.90 13.24 44432 45.4310 149.99 156.35 12.09 44433 45.4320 153.13 156.80 12.23 44434 45.4330 165.13 157.26 12.66 44435 45.4340 173.34 157.71 12.94 44436 45.4350 150.93 158.17 12.22 44437 45.4360 161.45 158.62 12.58 44438 45.4370 152.69 159.07 12.15 44439 45.4380 177.23 159.50 13.11 44440 45.4390 150.46 159.91 12.05 44441 45.4400 153.11 160.31 12.24 44442 45.4410 159.59 160.68 12.42 44443 45.4420 159.37 161.03 12.43 44444 45.4430 159.80 161.34 12.51 44445 45.4440 152.10 161.62 12.18 44446 45.4450 163.97 161.86 12.61 44447 45.4460 140.87 162.06 11.76 44448 45.4470 155.30 162.21 12.32 44449 45.4480 156.42 162.32 12.31 44450 45.4490 160.25 162.38 12.44 44451 45.4500 161.03 162.39 12.44 44452 45.4510 185.21 162.35 13.35 44453 45.4520 159.81 162.27 12.48 44454 45.4530 151.04 162.14 12.09 44455 45.4540 157.75 161.98 12.37 44456 45.4550 163.89 161.77 12.59 44457 45.4560 163.16 161.53 12.58 44458 45.4570 165.36 161.25 12.72 44459 45.4580 163.32 160.95 12.58 44460 45.4590 166.60 160.62 12.78 44461 45.4600 171.27 160.27 12.97 44462 45.4610 174.24 159.90 13.03 44463 45.4620 156.69 159.52 12.31 44464 45.4630 140.20 159.14 11.68 44465 45.4640 140.20 158.75 11.71 44466 45.4650 136.34 158.36 11.54 44467 45.4660 150.25 157.97 12.12 44468 45.4670 152.18 157.59 12.16 44469 45.4680 170.12 157.21 12.89 44470 45.4690 158.81 156.84 12.42 44471 45.4700 138.91 156.48 11.60 44472 45.4710 143.02 156.12 11.85 44473 45.4720 167.89 155.79 12.81 44474 45.4730 170.61 155.46 12.89 44475 45.4740 166.61 155.15 12.73 44476 45.4750 144.21 154.85 11.83 44477 45.4760 170.68 154.57 12.83 44478 45.4770 144.20 154.30 11.80 44479 45.4780 162.20 154.04 12.62 44480 45.4790 148.63 153.80 11.98 44481 45.4800 165.10 153.58 12.63 44482 45.4810 148.15 153.37 11.99 44483 45.4820 158.72 153.17 12.43 44484 45.4830 155.06 152.99 12.28 44485 45.4840 138.82 152.82 11.64 44486 45.4850 142.58 152.67 11.68 44487 45.4860 142.03 152.58 11.73 44488 45.4870 161.96 152.45 12.54 44489 45.4880 162.61 152.34 12.59 44490 45.4890 153.38 152.24 12.27 44491 45.4900 142.44 152.15 11.79 44492 45.4910 149.24 152.07 12.14 44493 45.4920 139.64 152.01 11.73 44494 45.4930 134.05 151.96 11.42 44495 45.4940 148.27 151.92 12.03 44496 45.4950 149.90 151.90 12.07 44497 45.4960 147.49 151.88 12.02 44498 45.4970 146.85 151.88 11.89 44499 45.4980 150.99 151.89 12.09 44500 45.4990 154.26 151.91 12.25 44501 45.5000 157.78 151.94 12.37 44502 45.5010 152.50 151.99 12.17 44503 45.5020 149.69 152.04 12.08 44504 45.5030 152.42 152.11 12.21 44505 45.5040 153.55 152.19 12.19 44506 45.5050 143.96 152.28 11.83 44507 45.5060 142.88 152.38 11.79 44508 45.5070 152.43 152.50 12.26 44509 45.5080 152.88 152.62 12.22 44510 45.5090 149.59 152.76 12.10 44511 45.5100 151.14 152.92 12.19 44512 45.5110 158.68 153.08 12.47 44513 45.5120 142.26 153.26 11.77 44514 45.5130 140.42 153.45 11.67 44515 45.5140 164.64 153.65 12.67 44516 45.5150 159.78 153.87 12.50 44517 45.5160 160.42 154.10 12.53 44518 45.5170 155.92 154.35 12.43 44519 45.5180 150.07 154.61 12.13 44520 45.5190 157.98 154.89 12.40 44521 45.5200 161.64 155.18 12.57 44522 45.5210 174.51 155.49 13.05 44523 45.5220 177.95 155.81 13.29 44524 45.5230 168.39 156.15 12.82 44525 45.5240 174.27 156.50 13.03 44526 45.5250 169.54 156.88 12.90 44527 45.5260 161.41 157.27 12.58 44528 45.5270 139.63 157.68 11.73 44529 45.5280 140.97 158.10 11.63 44530 45.5290 162.28 158.54 12.58 44531 45.5300 160.54 158.98 12.50 44532 45.5310 159.59 159.46 12.45 44533 45.5320 148.94 159.96 12.10 44534 45.5330 185.90 160.47 13.41 44535 45.5340 186.88 160.99 13.56 44536 45.5350 164.89 161.52 12.66 44537 45.5360 145.93 162.08 11.92 44538 45.5370 158.89 162.66 12.46 44539 45.5380 144.59 163.25 11.83 44540 45.5390 141.54 163.86 11.72 44541 45.5400 186.48 164.48 13.50 44542 45.5410 172.07 165.11 12.93 44543 45.5420 168.59 165.76 12.74 44544 45.5430 165.00 166.41 12.73 44545 45.5440 180.23 167.07 13.29 44546 45.5450 161.48 167.74 12.59 44547 45.5460 164.74 168.41 12.68 44548 45.5470 157.41 169.09 12.35 44549 45.5480 172.29 169.77 13.01 44550 45.5490 175.94 170.44 13.06 44551 45.5500 152.83 171.11 12.18 44552 45.5510 164.65 171.77 12.71 44553 45.5520 182.52 172.42 13.37 44554 45.5530 184.62 173.06 13.47 44555 45.5540 186.32 173.68 13.49 44556 45.5550 153.06 174.28 12.19 44557 45.5560 168.93 174.86 12.84 44558 45.5570 178.25 175.41 13.12 44559 45.5580 191.40 175.93 13.71 44560 45.5590 166.70 176.43 12.77 44561 45.5600 171.79 176.89 12.88 44562 45.5610 169.62 177.31 12.85 44563 45.5620 187.00 177.71 13.56 44564 45.5630 169.83 178.07 12.86 44565 45.5640 165.74 178.39 12.70 44566 45.5650 176.64 178.68 13.10 44567 45.5660 175.72 178.94 13.13 44568 45.5670 184.26 179.17 13.41 44569 45.5680 175.74 179.37 13.14 44570 45.5690 186.82 179.54 13.50 44571 45.5700 188.87 179.69 13.58 44572 45.5710 158.25 179.82 12.38 44573 45.5720 172.09 179.92 12.97 44574 45.5730 203.08 180.00 14.13 44575 45.5740 200.82 180.06 14.00 44576 45.5750 185.62 180.11 13.40 44577 45.5760 198.06 180.13 13.91 44578 45.5770 177.01 180.13 13.16 44579 45.5780 157.78 180.11 12.43 44580 45.5790 177.13 180.07 13.12 44581 45.5800 174.13 180.00 13.06 44582 45.5810 173.00 179.91 13.04 44583 45.5820 179.51 179.79 13.29 44584 45.5830 149.22 179.65 12.10 44585 45.5840 182.06 179.47 13.33 44586 45.5850 179.05 179.27 13.24 44587 45.5860 186.54 179.05 13.51 44588 45.5870 190.91 178.79 13.57 44589 45.5880 160.80 178.51 12.52 44590 45.5890 180.75 178.21 13.28 44591 45.5900 176.43 177.88 13.09 44592 45.5910 216.98 177.54 14.59 44593 45.5920 185.92 177.18 13.40 44594 45.5930 188.90 176.81 13.57 44595 45.5940 165.06 176.43 12.71 44596 45.5950 168.63 176.06 12.85 44597 45.5960 187.37 175.68 13.53 44598 45.5970 190.79 175.30 13.69 44599 45.5980 168.49 174.93 12.82 44600 45.5990 172.59 174.58 12.85 44601 45.6000 157.66 174.23 12.32 44602 45.6010 194.25 173.90 13.75 44603 45.6020 185.01 173.58 13.36 44604 45.6030 189.26 173.28 13.58 44605 45.6040 185.11 173.00 13.39 44606 45.6050 183.75 172.74 13.37 44607 45.6060 183.08 172.48 13.32 44608 45.6070 170.56 172.24 12.88 44609 45.6080 161.58 172.02 12.51 44610 45.6090 151.61 171.80 12.11 44611 45.6100 161.04 171.59 12.49 44612 45.6110 199.18 171.38 13.97 44613 45.6120 164.97 171.16 12.64 44614 45.6130 178.16 170.95 13.19 44615 45.6140 163.35 170.73 12.60 44616 45.6150 164.83 170.49 12.62 44617 45.6160 165.41 170.24 12.67 44618 45.6170 179.29 169.98 13.19 44619 45.6180 178.85 169.69 13.18 44620 45.6190 160.37 169.38 12.50 44621 45.6200 169.40 169.05 12.89 44622 45.6210 182.71 168.69 13.41 44623 45.6220 157.53 168.31 12.42 44624 45.6230 171.70 167.90 12.96 44625 45.6240 163.73 167.47 12.63 44626 45.6250 168.16 167.01 12.84 44627 45.6260 161.30 166.53 12.58 44628 45.6270 168.25 166.03 12.85 44629 45.6280 172.63 165.51 12.99 44630 45.6290 164.60 164.98 12.63 44631 45.6300 174.74 164.43 13.10 44632 45.6310 158.60 163.86 12.40 44633 45.6320 145.49 163.29 11.83 44634 45.6330 157.03 162.72 12.38 44635 45.6340 151.56 162.14 12.17 44636 45.6350 151.16 161.56 12.10 44637 45.6360 160.95 160.98 12.55 44638 45.6370 157.65 160.40 12.38 44639 45.6380 147.02 159.83 11.89 44640 45.6390 138.60 159.27 11.69 44641 45.6400 145.46 158.72 11.94 44642 45.6410 153.43 158.18 12.28 44643 45.6420 165.93 157.65 12.76 44644 45.6430 144.91 157.13 11.79 44645 45.6440 167.76 156.62 12.78 44646 45.6450 155.77 156.14 12.40 44647 45.6460 145.82 155.66 11.94 44648 45.6470 139.47 155.21 11.66 44649 45.6480 162.65 154.76 12.62 44650 45.6490 152.80 154.34 12.27 44651 45.6500 157.12 153.93 12.46 44652 45.6510 133.96 153.53 11.41 44653 45.6520 131.59 153.15 11.34 44654 45.6530 148.73 152.77 12.03 44655 45.6540 140.36 152.41 11.66 44656 45.6550 168.75 152.07 12.85 44657 45.6560 165.26 151.75 12.69 44658 45.6570 152.34 151.44 12.23 44659 45.6580 154.04 151.15 12.27 44660 45.6590 147.59 150.87 12.08 44661 45.6600 149.76 150.60 12.06 44662 45.6610 154.67 150.34 12.27 44663 45.6620 161.83 150.09 12.43 44664 45.6630 158.43 149.86 12.39 44665 45.6640 149.53 149.63 12.04 44666 45.6650 158.51 149.41 12.44 44667 45.6660 147.04 149.21 12.00 44668 45.6670 138.75 149.01 11.69 44669 45.6680 141.73 148.82 11.81 44670 45.6690 152.13 148.64 12.20 44671 45.6700 160.24 148.47 12.53 44672 45.6710 156.97 148.31 12.44 44673 45.6720 164.64 148.15 12.68 44674 45.6730 143.74 148.01 11.83 44675 45.6740 138.94 147.86 11.67 44676 45.6750 144.26 147.73 11.88 44677 45.6760 154.67 147.60 12.31 44678 45.6770 139.00 147.48 11.64 44679 45.6780 148.15 147.37 12.09 44680 45.6790 153.18 147.26 12.29 44681 45.6800 152.14 147.15 12.22 44682 45.6810 155.20 147.05 12.27 44683 45.6820 138.96 146.96 11.55 44684 45.6830 154.93 146.88 12.28 44685 45.6840 142.44 146.79 11.81 44686 45.6850 144.88 146.71 11.89 44687 45.6860 148.91 146.64 12.07 44688 45.6870 145.54 146.58 11.96 44689 45.6880 149.22 146.51 12.12 44690 45.6890 131.30 146.46 11.31 44691 45.6900 143.69 146.40 11.82 44692 45.6910 129.73 146.35 11.20 44693 45.6920 127.19 146.31 11.08 44694 45.6930 135.25 146.27 11.45 44695 45.6940 145.34 146.23 11.89 44696 45.6950 146.85 146.20 12.01 44697 45.6960 156.25 146.17 12.34 44698 45.6970 143.03 146.15 11.78 44699 45.6980 145.19 146.13 11.85 44700 45.6990 135.00 146.11 11.53 44701 45.7000 159.19 146.10 12.40 44702 45.7010 162.66 146.09 12.62 44703 45.7020 144.37 146.09 11.90 44704 45.7030 151.24 146.09 12.19 44705 45.7040 151.44 146.09 12.22 44706 45.7050 146.92 146.10 11.99 44707 45.7060 147.40 146.05 11.99 44708 45.7070 155.38 146.07 12.31 44709 45.7080 144.77 146.09 11.82 44710 45.7090 151.34 146.11 12.16 44711 45.7100 140.66 146.14 11.73 44712 45.7110 137.33 146.17 11.57 44713 45.7120 144.50 146.21 11.86 44714 45.7130 149.36 146.25 12.07 44715 45.7140 148.83 146.29 12.06 44716 45.7150 165.66 146.34 12.75 44717 45.7160 155.12 146.39 12.35 44718 45.7170 144.27 146.45 11.84 44719 45.7180 155.10 146.51 12.28 44720 45.7190 150.12 146.58 12.11 44721 45.7200 143.53 146.65 11.72 44722 45.7210 140.43 146.73 11.65 44723 45.7220 142.49 146.81 11.85 44724 45.7230 139.11 146.90 11.63 44725 45.7240 160.83 147.00 12.57 44726 45.7250 160.44 147.10 12.46 44727 45.7260 130.21 147.21 11.29 44728 45.7270 137.01 147.33 11.55 44729 45.7280 143.00 147.46 11.84 44730 45.7290 154.46 147.59 12.24 44731 45.7300 140.28 147.73 11.72 44732 45.7310 156.98 147.88 12.31 44733 45.7320 143.79 148.04 11.91 44734 45.7330 147.54 148.21 12.04 44735 45.7340 130.65 148.38 11.26 44736 45.7350 164.10 148.57 12.71 44737 45.7360 156.59 148.77 12.34 44738 45.7370 159.55 148.98 12.43 44739 45.7380 156.49 149.19 12.34 44740 45.7390 156.59 149.42 12.38 44741 45.7400 159.25 149.67 12.47 44742 45.7410 160.34 149.92 12.52 44743 45.7420 159.64 150.19 12.52 44744 45.7430 159.99 150.47 12.53 44745 45.7440 140.56 150.79 11.71 44746 45.7450 156.33 151.09 12.31 44747 45.7460 166.97 151.41 12.79 44748 45.7470 159.18 151.74 12.52 44749 45.7480 151.37 152.13 12.17 44750 45.7490 158.57 152.49 12.35 44751 45.7500 160.84 152.86 12.51 44752 45.7510 153.73 153.24 12.17 44753 45.7520 154.53 153.64 12.27 44754 45.7530 141.76 154.04 11.68 44755 45.7540 156.10 154.47 12.28 44756 45.7550 155.76 154.89 12.30 44757 45.7560 139.56 155.33 11.61 44758 45.7570 157.62 155.76 12.51 44759 45.7580 145.85 156.21 11.92 44760 45.7590 148.11 156.65 11.95 44761 45.7600 153.64 157.09 12.26 44762 45.7610 165.51 157.54 12.71 44763 45.7620 145.32 157.97 11.84 44764 45.7630 160.03 158.39 12.46 44765 45.7640 178.48 158.79 13.24 44766 45.7650 158.27 159.18 12.45 44767 45.7660 149.40 159.55 12.10 44768 45.7670 151.22 159.89 12.16 44769 45.7680 172.18 160.20 12.92 44770 45.7690 160.65 160.48 12.41 44771 45.7700 163.34 160.72 12.63 44772 45.7710 156.72 160.93 12.36 44773 45.7720 163.09 161.09 12.63 44774 45.7730 179.08 161.21 13.17 44775 45.7740 154.28 161.28 12.24 44776 45.7750 158.29 161.31 12.47 44777 45.7760 165.00 161.29 12.64 44778 45.7770 154.09 161.23 12.28 44779 45.7780 157.26 161.13 12.47 44780 45.7790 174.03 160.98 13.03 44781 45.7800 155.42 160.80 12.23 44782 45.7810 152.18 160.57 12.22 44783 45.7820 151.33 160.32 12.14 44784 45.7830 143.00 160.10 11.71 44785 45.7840 165.49 159.79 12.69 44786 45.7850 187.18 159.44 13.58 44787 45.7860 163.53 159.07 12.64 44788 45.7870 159.62 158.69 12.49 44789 45.7880 156.73 158.28 12.24 44790 45.7890 148.56 157.86 12.01 44791 45.7900 174.38 157.43 13.07 44792 45.7910 154.02 156.99 12.22 44793 45.7920 165.74 156.55 12.68 44794 45.7930 174.98 156.10 13.06 44795 45.7940 163.82 155.65 12.65 44796 45.7950 147.66 155.20 11.96 44797 45.7960 154.89 154.74 12.27 44798 45.7970 173.74 154.30 13.06 44799 45.7980 165.27 153.86 12.68 44800 45.7990 153.86 153.42 12.25 44801 45.8000 172.30 152.99 12.97 44802 45.8010 160.11 152.58 12.45 44803 45.8020 168.71 152.17 12.82 44804 45.8030 147.98 151.76 11.99 44805 45.8040 151.00 151.38 12.08 44806 45.8050 166.23 151.00 12.76 44807 45.8060 143.04 150.63 11.78 44808 45.8070 171.62 150.28 12.90 44809 45.8080 162.43 149.94 12.59 44810 45.8090 150.50 149.60 12.07 44811 45.8100 143.42 149.28 11.82 44812 45.8110 146.79 148.98 11.91 44813 45.8120 163.31 148.68 12.66 44814 45.8130 153.20 148.39 12.17 44815 45.8140 141.20 148.12 11.72 44816 45.8150 151.11 147.85 12.20 44817 45.8160 141.15 147.60 11.72 44818 45.8170 139.22 147.36 11.66 44819 45.8180 135.98 147.12 11.46 44820 45.8190 134.76 146.90 11.45 44821 45.8200 137.38 146.68 11.57 44822 45.8210 152.64 146.48 12.20 44823 45.8220 135.32 146.28 11.47 44824 45.8230 137.30 146.09 11.54 44825 45.8240 141.45 145.90 11.72 44826 45.8250 141.86 145.73 11.77 44827 45.8260 124.14 145.56 10.95 44828 45.8270 130.36 145.40 11.24 44829 45.8280 167.46 145.25 12.81 44830 45.8290 146.79 145.10 11.97 44831 45.8300 147.70 144.96 12.08 44832 45.8310 147.65 144.82 12.08 44833 45.8320 154.86 144.69 12.35 44834 45.8330 167.08 144.56 12.74 44835 45.8340 161.45 144.44 12.52 44836 45.8350 146.86 144.33 11.97 44837 45.8360 166.31 144.22 12.70 44838 45.8370 149.04 144.11 11.96 44839 45.8380 141.42 144.01 11.75 44840 45.8390 154.52 143.91 12.23 44841 45.8400 145.36 143.82 11.92 44842 45.8410 136.45 143.72 11.54 44843 45.8420 158.93 143.63 12.49 44844 45.8430 140.95 143.55 11.71 44845 45.8440 135.60 143.47 11.45 44846 45.8450 142.50 143.39 11.77 44847 45.8460 136.10 143.32 11.46 44848 45.8470 144.22 143.25 11.87 44849 45.8480 155.32 143.18 12.35 44850 45.8490 158.75 143.12 12.46 44851 45.8500 154.91 143.06 12.29 44852 45.8510 156.78 143.00 12.33 44853 45.8520 145.54 142.94 11.91 44854 45.8530 153.14 142.89 12.26 44855 45.8540 147.62 142.84 12.02 44856 45.8550 161.96 142.79 12.64 44857 45.8560 147.85 142.74 12.02 44858 45.8570 150.11 142.70 12.07 44859 45.8580 137.40 142.66 11.55 44860 45.8590 129.70 142.62 11.18 44861 45.8600 136.70 142.58 11.50 44862 45.8610 136.22 142.54 11.54 44863 45.8620 133.00 142.51 11.38 44864 45.8630 139.14 142.48 11.63 44865 45.8640 123.14 142.45 10.87 44866 45.8650 150.64 142.42 12.19 44867 45.8660 131.40 142.40 11.30 44868 45.8670 149.51 142.37 11.99 44869 45.8680 125.59 142.35 10.94 44870 45.8690 153.97 142.33 12.28 44871 45.8700 153.33 142.31 12.22 44872 45.8710 139.67 142.29 11.62 44873 45.8720 146.82 142.28 11.97 44874 45.8730 142.43 142.27 11.77 44875 45.8740 142.08 142.26 11.75 44876 45.8750 134.41 142.24 11.40 44877 45.8760 144.84 142.24 11.87 44878 45.8770 138.29 142.23 11.59 44879 45.8780 138.54 142.22 11.57 44880 45.8790 134.13 142.22 11.45 44881 45.8800 135.16 142.21 11.52 44882 45.8810 155.74 142.21 12.32 44883 45.8820 147.53 142.22 11.98 44884 45.8830 147.89 142.22 11.97 44885 45.8840 140.67 142.22 11.71 44886 45.8850 135.84 142.22 11.51 44887 45.8860 124.98 142.22 11.00 44888 45.8870 138.68 142.22 11.61 44889 45.8880 149.29 142.22 12.03 44890 45.8890 159.03 142.22 12.39 44891 45.8900 151.13 142.22 12.10 44892 45.8910 147.62 142.22 11.90 44893 45.8920 163.67 142.22 12.66 44894 45.8930 151.04 142.22 12.09 44895 45.8940 134.42 142.21 11.43 44896 45.8950 145.08 142.20 11.88 44897 45.8960 155.33 142.20 12.31 44898 45.8970 136.08 142.19 11.57 44899 45.8980 158.94 142.17 12.49 44900 45.8990 133.89 142.16 11.42 44901 45.9000 136.61 142.14 11.58 44902 45.9010 145.12 142.12 11.88 44903 45.9020 148.31 142.10 12.03 44904 45.9030 155.99 142.08 12.38 44905 45.9040 171.21 142.05 12.86 44906 45.9050 129.12 142.02 11.19 44907 45.9060 138.62 141.99 11.64 44908 45.9070 129.71 142.06 11.23 44909 45.9080 133.61 142.03 11.39 44910 45.9090 132.64 141.99 11.30 44911 45.9100 147.32 141.96 11.95 44912 45.9110 160.04 141.93 12.52 44913 45.9120 157.76 141.89 12.46 44914 45.9130 147.72 141.85 12.08 44915 45.9140 157.22 141.82 12.45 44916 45.9150 142.81 141.78 11.84 44917 45.9160 125.88 141.75 11.06 44918 45.9170 142.93 141.71 11.80 44919 45.9180 142.03 141.68 11.74 44920 45.9190 140.50 141.64 11.72 44921 45.9200 132.10 141.61 11.37 44922 45.9210 134.89 141.55 11.45 44923 45.9220 148.02 141.52 12.04 44924 45.9230 157.14 141.49 12.45 44925 45.9240 168.79 141.46 12.86 44926 45.9250 159.24 141.43 12.51 44927 45.9260 139.90 141.40 11.66 44928 45.9270 129.28 141.38 11.18 44929 45.9280 141.03 141.35 11.75 44930 45.9290 137.40 141.32 11.59 44931 45.9300 147.38 141.30 11.94 44932 45.9310 128.00 141.28 11.13 44933 45.9320 134.02 141.25 11.47 44934 45.9330 151.16 141.23 12.10 44935 45.9340 132.81 141.21 11.30 44936 45.9350 135.72 141.19 11.52 44937 45.9360 162.93 141.17 12.67 44938 45.9370 139.95 141.16 11.64 44939 45.9380 135.45 141.14 11.54 44940 45.9390 138.77 141.13 11.67 44941 45.9400 134.15 141.11 11.42 44942 45.9410 138.46 141.10 11.61 44943 45.9420 153.54 141.08 12.19 44944 45.9430 150.00 141.07 12.02 44945 45.9440 139.05 141.06 11.63 44946 45.9450 129.83 141.05 11.21 44947 45.9460 143.49 141.04 11.87 44948 45.9470 150.44 141.03 12.10 44949 45.9480 162.27 141.02 12.63 44950 45.9490 139.47 141.01 11.66 44951 45.9500 133.04 141.01 11.44 44952 45.9510 126.92 141.00 11.14 44953 45.9520 134.20 140.99 11.43 44954 45.9530 141.88 140.99 11.72 44955 45.9540 124.10 140.99 10.98 44956 45.9550 144.75 140.98 11.85 44957 45.9560 139.34 140.98 11.71 44958 45.9570 130.60 140.98 11.26 44959 45.9580 127.51 140.98 11.19 44960 45.9590 138.97 140.97 11.63 44961 45.9600 152.99 140.97 12.21 44962 45.9610 150.60 140.97 12.09 44963 45.9620 131.61 140.98 11.24 44964 45.9630 142.26 140.98 11.79 44965 45.9640 141.26 140.98 11.71 44966 45.9650 147.37 140.98 11.97 44967 45.9660 144.59 141.01 11.86 44968 45.9670 132.19 141.01 11.36 44969 45.9680 143.18 141.02 11.85 44970 45.9690 145.42 141.02 11.93 44971 45.9700 132.86 141.03 11.37 44972 45.9710 137.12 141.04 11.61 44973 45.9720 126.31 141.04 11.11 44974 45.9730 151.03 141.05 12.14 44975 45.9740 147.09 141.06 11.97 44976 45.9750 128.36 141.07 11.24 44977 45.9760 121.56 141.08 10.94 44978 45.9770 144.46 141.09 11.86 44979 45.9780 164.29 141.10 12.65 44980 45.9790 119.16 141.11 10.82 44981 45.9800 123.73 141.12 11.01 44982 45.9810 132.83 141.14 11.41 44983 45.9820 158.65 141.15 12.41 44984 45.9830 156.31 141.17 12.42 44985 45.9840 142.99 141.18 11.82 44986 45.9850 143.14 141.20 11.89 44987 45.9860 156.37 141.22 12.44 44988 45.9870 143.68 141.24 11.85 44989 45.9880 137.67 141.25 11.57 44990 45.9890 141.21 141.27 11.73 44991 45.9900 147.70 141.29 11.98 44992 45.9910 150.10 141.32 12.09 44993 45.9920 156.05 141.34 12.29 44994 45.9930 132.94 141.36 11.42 44995 45.9940 137.40 141.39 11.60 44996 45.9950 145.10 141.41 11.93 44997 45.9960 137.98 141.44 11.63 44998 45.9970 148.00 141.47 12.06 44999 45.9980 146.47 141.50 12.01 45000 45.9990 145.36 141.53 11.88 45001 46.0000 147.20 141.56 11.97 45002 46.0010 142.63 141.59 11.81 45003 46.0020 143.14 141.62 12.46 45004 46.0030 136.42 141.66 12.19 45005 46.0040 148.57 141.70 12.74 45006 46.0050 137.29 141.73 12.26 45007 46.0060 137.47 141.77 12.24 45008 46.0070 142.62 141.81 12.46 45009 46.0080 147.95 141.86 12.74 45010 46.0090 141.39 141.90 12.38 45011 46.0100 151.07 141.95 12.78 45012 46.0110 144.34 141.99 12.49 45013 46.0120 136.54 142.04 12.15 45014 46.0130 146.71 142.10 12.60 45015 46.0140 152.47 142.15 12.88 45016 46.0150 142.90 142.21 12.48 45017 46.0160 144.76 142.26 12.51 45018 46.0170 145.77 142.32 12.61 45019 46.0180 146.84 142.39 12.67 45020 46.0190 149.55 142.45 12.78 45021 46.0200 143.96 142.52 12.52 45022 46.0210 138.48 142.59 12.28 45023 46.0220 150.12 142.67 12.82 45024 46.0230 153.04 142.74 12.92 45025 46.0240 151.09 142.82 12.76 45026 46.0250 132.61 142.90 11.97 45027 46.0260 136.19 142.99 12.15 45028 46.0270 131.17 143.08 11.90 45029 46.0280 126.49 143.18 11.64 45030 46.0290 151.65 143.27 12.87 45031 46.0300 146.35 143.38 12.63 45032 46.0310 160.40 143.48 13.24 45033 46.0320 147.17 143.59 12.60 45034 46.0330 148.14 143.71 12.67 45035 46.0340 155.88 143.83 13.01 45036 46.0350 145.31 143.95 12.57 45037 46.0360 135.14 144.08 12.13 45038 46.0370 141.70 144.22 12.33 45039 46.0380 143.05 144.36 12.40 45040 46.0390 147.63 144.51 12.62 45041 46.0400 152.84 144.66 12.97 45042 46.0410 149.33 144.82 12.75 45043 46.0420 142.19 144.99 12.40 45044 46.0430 148.88 145.16 12.63 45045 46.0440 141.03 145.34 12.37 45046 46.0450 135.89 145.53 12.15 45047 46.0460 137.99 145.72 12.27 45048 46.0470 130.04 145.93 11.97 45049 46.0480 151.42 146.13 12.87 45050 46.0490 144.80 146.35 12.55 45051 46.0500 138.23 146.57 12.29 45052 46.0510 151.08 146.80 12.82 45053 46.0520 150.87 147.04 12.75 45054 46.0530 122.83 147.28 11.55 45055 46.0540 123.75 147.53 11.59 45056 46.0550 154.83 147.78 12.92 45057 46.0560 160.40 148.04 13.26 45058 46.0570 160.98 148.30 13.18 45059 46.0580 141.83 148.57 12.36 45060 46.0590 133.33 148.84 11.99 45061 46.0600 144.93 149.11 12.46 45062 46.0610 157.79 149.38 13.06 45063 46.0620 146.16 149.65 12.61 45064 46.0630 145.38 149.93 12.59 45065 46.0640 142.59 150.20 12.47 45066 46.0650 137.99 150.46 12.24 45067 46.0660 158.76 150.73 13.09 45068 46.0670 144.72 151.00 12.42 45069 46.0680 140.26 151.26 12.43 45070 46.0690 144.13 151.52 12.53 45071 46.0700 132.31 151.77 12.00 45072 46.0710 149.37 152.03 12.68 45073 46.0720 168.47 152.29 13.60 45074 46.0730 152.90 152.55 12.97 45075 46.0740 156.88 152.82 13.03 45076 46.0750 162.62 153.09 13.25 45077 46.0760 145.61 153.37 12.51 45078 46.0770 158.49 153.76 13.14 45079 46.0780 149.50 154.05 12.77 45080 46.0790 150.98 154.36 12.84 45081 46.0800 166.04 154.68 13.42 45082 46.0810 164.34 155.02 13.36 45083 46.0820 147.15 155.38 12.60 45084 46.0830 155.14 155.76 12.99 45085 46.0840 157.16 156.15 13.09 45086 46.0850 151.93 156.57 12.86 45087 46.0860 138.73 157.00 12.26 45088 46.0870 169.21 157.46 13.53 45089 46.0880 165.30 157.94 13.39 45090 46.0890 164.57 158.44 13.39 45091 46.0900 155.27 158.96 12.96 45092 46.0910 153.60 159.50 12.93 45093 46.0920 151.70 160.06 12.94 45094 46.0930 159.70 160.63 13.26 45095 46.0940 157.76 161.21 13.10 45096 46.0950 154.01 161.80 12.90 45097 46.0960 156.05 162.40 12.98 45098 46.0970 130.94 162.99 11.95 45099 46.0980 177.18 163.58 13.80 45100 46.0990 181.97 164.16 14.07 45101 46.1000 163.39 164.72 13.26 45102 46.1010 176.18 165.26 13.88 45103 46.1020 178.48 165.76 14.00 45104 46.1030 165.51 166.22 13.38 45105 46.1040 164.09 166.64 13.36 45106 46.1050 158.97 167.01 13.13 45107 46.1060 164.83 167.32 13.43 45108 46.1070 157.51 167.55 13.09 45109 46.1080 155.91 167.73 13.00 45110 46.1090 184.55 167.82 14.18 45111 46.1100 187.05 167.85 14.24 45112 46.1110 179.03 167.76 13.90 45113 46.1120 157.92 167.62 13.15 45114 46.1130 150.02 167.41 12.79 45115 46.1140 159.62 167.13 13.22 45116 46.1150 167.08 166.78 13.58 45117 46.1160 160.82 166.37 13.23 45118 46.1170 156.09 165.90 13.00 45119 46.1180 164.88 165.37 13.35 45120 46.1190 165.10 164.81 13.42 45121 46.1200 156.45 164.20 13.00 45122 46.1210 160.85 163.57 13.22 45123 46.1220 158.09 162.91 13.06 45124 46.1230 150.52 162.24 12.79 45125 46.1240 151.59 161.55 12.86 45126 46.1250 143.95 160.86 12.48 45127 46.1260 155.88 160.17 13.02 45128 46.1270 148.16 159.49 12.66 45129 46.1280 166.71 158.81 13.45 45130 46.1290 162.24 158.14 13.28 45131 46.1300 169.41 157.48 13.61 45132 46.1310 162.27 156.85 13.28 45133 46.1320 156.97 156.22 13.08 45134 46.1330 148.67 155.62 12.69 45135 46.1340 135.73 155.04 12.12 45136 46.1350 149.68 154.47 12.80 45137 46.1360 140.00 153.93 12.37 45138 46.1370 147.34 153.40 12.66 45139 46.1380 146.66 152.90 12.62 45140 46.1390 135.41 152.42 12.13 45141 46.1400 158.39 151.96 13.19 45142 46.1410 146.71 151.52 12.70 45143 46.1420 153.59 151.10 12.98 45144 46.1430 145.05 150.70 12.62 45145 46.1440 150.57 150.31 12.80 45146 46.1450 140.22 149.94 12.34 45147 46.1460 162.86 149.59 13.27 45148 46.1470 155.22 149.26 13.00 45149 46.1480 137.99 148.94 12.25 45150 46.1490 154.52 148.64 12.94 45151 46.1500 170.80 148.35 13.58 45152 46.1510 162.80 148.08 13.29 45153 46.1520 158.12 147.81 13.05 45154 46.1530 140.91 147.57 12.40 45155 46.1540 139.43 147.33 12.30 45156 46.1550 145.81 147.10 12.66 45157 46.1560 153.24 146.89 12.97 45158 46.1570 147.73 146.69 12.69 45159 46.1580 150.51 146.49 12.82 45160 46.1590 160.46 146.31 13.22 45161 46.1600 134.40 146.14 12.09 45162 46.1610 142.63 145.97 12.49 45163 46.1620 128.27 145.81 11.77 45164 46.1630 142.50 145.67 12.36 45165 46.1640 149.15 145.52 12.77 45166 46.1650 147.58 145.39 12.68 45167 46.1660 138.63 145.26 12.31 45168 46.1670 126.65 145.14 11.74 45169 46.1680 132.21 145.03 11.98 45170 46.1690 134.44 144.92 12.07 45171 46.1700 139.20 144.82 12.29 45172 46.1710 134.83 144.73 12.17 45173 46.1720 142.46 144.64 12.44 45174 46.1730 134.46 144.55 12.07 45175 46.1740 162.04 144.47 13.20 45176 46.1750 141.95 144.40 12.40 45177 46.1760 140.63 144.33 12.33 45178 46.1770 148.24 144.26 12.68 45179 46.1780 153.69 144.20 12.96 45180 46.1790 148.66 144.14 12.72 45181 46.1800 141.48 144.08 12.42 45182 46.1810 135.91 144.03 12.19 45183 46.1820 139.50 143.98 12.29 45184 46.1830 148.44 143.94 12.81 45185 46.1840 146.55 143.90 12.68 45186 46.1850 147.14 143.86 12.64 45187 46.1860 144.73 143.82 12.47 45188 46.1870 155.56 143.79 13.03 45189 46.1880 145.14 143.76 12.57 45190 46.1890 151.85 143.73 12.90 45191 46.1900 146.93 143.70 12.64 45192 46.1910 140.49 143.67 12.36 45193 46.1920 161.17 143.65 13.31 45194 46.1930 161.45 143.62 13.27 45195 46.1940 142.64 143.60 12.48 45196 46.1950 142.31 143.59 12.42 45197 46.1960 163.69 143.57 13.29 45198 46.1970 148.21 143.55 12.67 45199 46.1980 146.27 143.54 12.54 45200 46.1990 143.18 143.53 12.48 45201 46.2000 126.38 143.52 11.75 45202 46.2010 148.94 143.52 12.74 45203 46.2020 153.35 143.51 12.98 45204 46.2030 141.87 143.51 12.47 45205 46.2040 154.91 143.51 13.03 45206 46.2050 151.53 143.52 12.92 45207 46.2060 133.99 143.52 12.12 45208 46.2070 138.09 143.53 12.26 45209 46.2080 149.56 143.54 12.76 45210 46.2090 136.80 143.55 12.25 45211 46.2100 135.47 143.57 12.14 45212 46.2110 140.13 143.58 12.34 45213 46.2120 140.84 143.60 12.38 45214 46.2130 139.01 143.62 12.23 45215 46.2140 138.38 143.64 12.11 45216 46.2150 131.92 143.66 11.99 45217 46.2160 144.41 143.68 12.60 45218 46.2170 166.25 143.71 13.53 45219 46.2180 167.84 143.74 13.54 45220 46.2190 144.88 143.76 12.58 45221 46.2200 165.54 143.79 13.39 45222 46.2210 147.40 143.82 12.61 45223 46.2220 159.38 143.85 13.18 45224 46.2230 144.22 143.89 12.55 45225 46.2240 152.87 143.92 12.93 45226 46.2250 134.38 143.95 12.13 45227 46.2260 162.24 143.99 13.31 45228 46.2270 159.17 144.02 13.16 45229 46.2280 154.38 144.06 12.91 45230 46.2290 147.43 144.10 12.62 45231 46.2300 151.78 144.14 12.79 45232 46.2310 141.59 144.18 12.39 45233 46.2320 156.07 144.22 13.02 45234 46.2330 160.69 144.26 13.20 45235 46.2340 159.66 144.30 13.16 45236 46.2350 151.58 144.35 12.84 45237 46.2360 154.63 144.39 12.97 45238 46.2370 153.13 144.43 12.90 45239 46.2380 149.52 144.47 12.76 45240 46.2390 158.82 144.51 13.15 45241 46.2400 150.16 144.54 12.78 45242 46.2410 148.21 144.55 12.72 45243 46.2420 133.93 144.58 12.14 45244 46.2430 153.38 144.60 12.99 45245 46.2440 137.11 144.63 12.23 45246 46.2450 124.59 144.65 11.65 45247 46.2460 135.93 144.66 12.16 45248 46.2470 130.39 144.67 11.88 45249 46.2480 143.72 144.68 12.51 45250 46.2490 159.75 144.68 13.16 45251 46.2500 154.04 144.68 12.99 45252 46.2510 160.33 144.67 13.25 45253 46.2520 165.97 144.66 13.46 45254 46.2530 151.09 144.65 12.89 45255 46.2540 142.54 144.64 12.45 45256 46.2550 143.94 144.62 12.54 45257 46.2560 159.03 144.61 13.18 45258 46.2570 139.22 144.59 12.22 45259 46.2580 149.77 144.58 12.76 45260 46.2590 134.85 144.56 12.13 45261 46.2600 123.48 144.55 11.62 45262 46.2610 153.46 144.54 12.92 45263 46.2620 140.40 144.53 12.37 45264 46.2630 137.18 144.49 12.24 45265 46.2640 149.00 144.48 12.80 45266 46.2650 138.68 144.46 12.29 45267 46.2660 140.55 144.46 12.35 45268 46.2670 138.27 144.47 12.24 45269 46.2680 151.62 144.48 12.80 45270 46.2690 158.14 144.50 13.07 45271 46.2700 133.00 144.52 11.96 45272 46.2710 132.17 144.55 12.03 45273 46.2720 146.42 144.58 12.66 45274 46.2730 167.05 144.61 13.51 45275 46.2740 159.63 144.65 13.15 45276 46.2750 136.36 144.70 12.16 45277 46.2760 151.14 144.75 12.83 45278 46.2770 134.26 144.80 12.15 45279 46.2780 144.32 144.87 12.53 45280 46.2790 136.11 144.93 12.12 45281 46.2800 152.16 145.01 12.90 45282 46.2810 148.17 145.09 12.74 45283 46.2820 158.00 145.17 13.11 45284 46.2830 146.25 145.26 12.58 45285 46.2840 141.67 145.36 12.34 45286 46.2850 162.98 145.46 13.33 45287 46.2860 147.82 145.57 12.72 45288 46.2870 151.62 145.69 12.78 45289 46.2880 147.33 145.81 12.70 45290 46.2890 146.92 145.95 12.69 45291 46.2900 158.39 146.09 13.16 45292 46.2910 137.41 146.24 12.26 45293 46.2920 131.71 146.39 11.97 45294 46.2930 148.83 146.56 12.77 45295 46.2940 141.63 146.73 12.50 45296 46.2950 147.62 146.91 12.72 45297 46.2960 148.17 147.18 12.68 45298 46.2970 132.82 147.38 12.05 45299 46.2980 135.82 147.59 12.19 45300 46.2990 141.45 147.82 12.40 45301 46.3000 150.17 148.05 12.78 45302 46.3010 153.43 148.30 12.92 45303 46.3020 154.78 148.56 12.99 45304 46.3030 159.54 148.83 13.16 45305 46.3040 152.83 149.12 12.95 45306 46.3050 142.58 149.42 12.43 45307 46.3060 157.72 149.73 13.12 45308 46.3070 144.88 150.06 12.61 45309 46.3080 158.62 150.40 13.14 45310 46.3090 137.70 150.76 12.24 45311 46.3100 143.23 151.13 12.42 45312 46.3110 163.26 151.51 13.34 45313 46.3120 155.22 151.91 13.00 45314 46.3130 139.53 152.33 12.35 45315 46.3140 157.22 152.76 13.08 45316 46.3150 170.48 153.20 13.69 45317 46.3160 162.42 153.65 13.27 45318 46.3170 160.03 154.12 13.19 45319 46.3180 157.17 154.59 13.15 45320 46.3190 139.03 155.07 12.35 45321 46.3200 140.24 155.56 12.31 45322 46.3210 154.43 156.05 12.87 45323 46.3220 156.87 156.54 13.02 45324 46.3230 162.62 157.02 13.35 45325 46.3240 156.58 157.50 13.05 45326 46.3250 150.05 157.96 12.75 45327 46.3260 153.06 158.41 12.92 45328 46.3270 171.44 158.84 13.61 45329 46.3280 164.58 159.24 13.28 45330 46.3290 187.16 159.62 14.30 45331 46.3300 163.72 159.96 13.35 45332 46.3310 155.37 160.26 13.04 45333 46.3320 145.89 160.53 12.55 45334 46.3330 161.58 160.76 13.26 45335 46.3340 169.01 160.95 13.56 45336 46.3350 175.56 161.10 13.83 45337 46.3360 186.01 161.21 14.20 45338 46.3370 153.12 161.28 12.90 45339 46.3380 146.30 161.32 12.59 45340 46.3390 150.50 161.33 12.77 45341 46.3400 143.62 161.31 12.49 45342 46.3410 164.81 161.27 13.42 45343 46.3420 156.96 161.21 13.14 45344 46.3430 170.70 161.14 13.61 45345 46.3440 164.82 161.07 13.33 45346 46.3450 159.50 160.99 13.15 45347 46.3460 147.53 160.91 12.64 45348 46.3470 151.18 160.85 12.81 45349 46.3480 138.74 160.79 12.18 45350 46.3490 157.16 160.74 13.11 45351 46.3500 167.92 160.72 13.53 45352 46.3510 159.00 160.71 13.07 45353 46.3520 127.91 160.73 11.73 45354 46.3530 146.27 160.77 12.56 45355 46.3540 147.16 160.83 12.61 45356 46.3550 151.19 160.93 12.80 45357 46.3560 157.15 161.05 13.08 45358 46.3570 165.71 161.20 13.39 45359 46.3580 169.53 161.38 13.57 45360 46.3590 141.13 161.59 12.36 45361 46.3600 165.05 161.83 13.43 45362 46.3610 152.10 162.10 12.88 45363 46.3620 159.98 162.40 13.25 45364 46.3630 169.57 162.72 13.56 45365 46.3640 154.77 163.07 13.01 45366 46.3650 164.68 163.45 13.37 45367 46.3660 180.06 163.86 14.01 45368 46.3670 170.48 164.28 13.67 45369 46.3680 171.22 164.72 13.65 45370 46.3690 156.58 165.18 13.03 45371 46.3700 150.34 165.65 12.76 45372 46.3710 153.51 166.13 12.96 45373 46.3720 172.08 166.61 13.71 45374 46.3730 157.83 167.09 13.11 45375 46.3740 169.24 167.57 13.58 45376 46.3750 155.18 168.03 12.99 45377 46.3760 165.91 168.48 13.35 45378 46.3770 163.31 168.90 13.27 45379 46.3780 194.78 169.30 14.53 45380 46.3790 196.71 169.67 14.63 45381 46.3800 181.59 169.99 14.04 45382 46.3810 200.40 170.27 14.78 45383 46.3820 181.21 170.51 14.01 45384 46.3830 180.54 170.69 14.03 45385 46.3840 188.24 170.82 14.36 45386 46.3850 156.50 170.89 12.97 45387 46.3860 164.86 170.91 13.43 45388 46.3870 164.96 170.88 13.37 45389 46.3880 161.59 170.80 13.27 45390 46.3890 160.92 170.66 13.21 45391 46.3900 177.86 170.49 13.96 45392 46.3910 161.68 170.27 13.28 45393 46.3920 164.05 170.02 13.36 45394 46.3930 167.67 169.74 13.53 45395 46.3940 147.74 169.42 12.70 45396 46.3950 174.41 169.10 13.76 45397 46.3960 181.71 168.76 13.93 45398 46.3970 156.20 168.42 13.07 45399 46.3980 166.24 168.08 13.48 45400 46.3990 173.79 167.74 13.76 45401 46.4000 170.10 167.41 13.55 45402 46.4010 166.74 167.09 13.52 45403 46.4020 168.38 166.79 13.55 45404 46.4030 166.46 166.51 13.48 45405 46.4040 147.37 166.25 12.67 45406 46.4050 169.04 166.01 13.53 45407 46.4060 174.67 165.79 13.78 45408 46.4070 178.03 165.61 13.97 45409 46.4080 157.72 165.45 13.16 45410 46.4090 160.23 165.32 13.21 45411 46.4100 173.74 165.23 13.78 45412 46.4110 152.96 165.17 12.94 45413 46.4120 135.02 165.14 12.08 45414 46.4130 159.85 165.15 13.09 45415 46.4140 163.11 165.19 13.35 45416 46.4150 181.70 165.26 14.08 45417 46.4160 165.16 165.38 13.43 45418 46.4170 181.71 165.52 14.05 45419 46.4180 175.93 165.71 13.86 45420 46.4190 157.43 165.93 13.09 45421 46.4200 156.34 166.19 13.05 45422 46.4210 182.92 166.49 14.13 45423 46.4220 170.13 166.83 13.65 45424 46.4230 161.76 167.21 13.26 45425 46.4240 153.77 167.62 12.97 45426 46.4250 171.37 168.07 13.68 45427 46.4260 169.64 168.57 13.63 45428 46.4270 164.71 169.10 13.37 45429 46.4280 159.92 169.68 13.17 45430 46.4290 171.27 170.29 13.52 45431 46.4300 151.67 170.94 12.80 45432 46.4310 196.51 171.63 14.67 45433 46.4320 170.20 172.37 13.59 45434 46.4330 179.23 173.14 13.94 45435 46.4340 187.08 173.94 14.33 45436 46.4350 188.15 174.79 14.31 45437 46.4360 187.04 175.67 14.22 45438 46.4370 184.66 176.59 14.21 45439 46.4380 191.52 177.53 14.56 45440 46.4390 185.05 178.50 14.20 45441 46.4400 179.97 179.49 13.93 45442 46.4410 163.78 180.51 13.38 45443 46.4420 165.97 181.53 13.42 45444 46.4430 186.11 182.57 14.15 45445 46.4440 183.22 183.60 14.14 45446 46.4450 179.54 184.63 13.95 45447 46.4460 192.52 185.65 14.51 45448 46.4470 178.26 186.65 13.95 45449 46.4480 203.78 187.62 14.93 45450 46.4490 194.38 188.55 14.57 45451 46.4500 186.65 189.42 14.23 45452 46.4510 185.63 190.24 14.18 45453 46.4520 178.19 190.99 13.92 45454 46.4530 200.80 191.66 14.86 45455 46.4540 201.52 192.24 14.84 45456 46.4550 195.28 192.74 14.55 45457 46.4560 195.55 193.13 14.59 45458 46.4570 184.65 193.42 14.22 45459 46.4580 203.34 193.60 14.84 45460 46.4590 198.81 193.68 14.68 45461 46.4600 185.05 193.64 14.22 45462 46.4610 179.25 193.49 13.92 45463 46.4620 178.11 193.24 13.86 45464 46.4630 187.77 192.89 14.34 45465 46.4640 170.43 192.45 13.64 45466 46.4650 177.04 191.92 13.92 45467 46.4660 196.92 191.31 14.66 45468 46.4670 178.94 190.64 14.02 45469 46.4680 188.61 189.88 14.37 45470 46.4690 202.16 189.09 14.84 45471 46.4700 183.39 188.25 14.08 45472 46.4710 175.26 187.43 13.78 45473 46.4720 168.29 186.53 13.50 45474 46.4730 179.96 185.62 13.99 45475 46.4740 191.88 184.69 14.49 45476 46.4750 175.42 183.76 13.83 45477 46.4760 179.55 182.82 14.00 45478 46.4770 188.08 181.89 14.31 45479 46.4780 180.58 180.97 14.01 45480 46.4790 156.25 180.06 13.02 45481 46.4800 177.18 179.17 13.83 45482 46.4810 174.85 178.30 13.70 45483 46.4820 182.86 177.46 14.11 45484 46.4830 180.90 176.63 14.04 45485 46.4840 204.03 175.84 14.92 45486 46.4850 181.47 175.07 14.13 45487 46.4860 182.80 174.33 14.12 45488 46.4870 185.97 173.63 14.27 45489 46.4880 175.69 172.96 13.86 45490 46.4890 183.51 172.32 14.18 45491 46.4900 179.19 171.72 13.96 45492 46.4910 177.39 171.16 13.91 45493 46.4920 178.99 170.63 13.94 45494 46.4930 189.04 170.14 14.37 45495 46.4940 179.65 169.68 14.06 45496 46.4950 163.84 169.26 13.27 45497 46.4960 150.37 168.88 12.74 45498 46.4970 161.59 168.54 13.29 45499 46.4980 154.36 168.23 12.99 45500 46.4990 162.87 167.96 13.29 45501 46.5000 174.67 167.72 13.84 45502 46.5010 170.25 167.52 13.62 45503 46.5020 177.21 167.36 13.84 45504 46.5030 157.54 167.23 13.08 45505 46.5040 175.40 167.14 13.91 45506 46.5050 181.60 167.09 14.10 45507 46.5060 163.00 167.07 13.30 45508 46.5070 166.44 167.08 13.48 45509 46.5080 162.70 167.13 13.34 45510 46.5090 163.89 167.22 13.35 45511 46.5100 183.74 167.34 14.10 45512 46.5110 175.83 167.50 13.80 45513 46.5120 186.18 167.70 14.26 45514 46.5130 181.25 167.93 14.06 45515 46.5140 165.27 168.19 13.33 45516 46.5150 139.23 168.49 12.31 45517 46.5160 158.61 168.83 13.17 45518 46.5170 161.56 169.20 13.23 45519 46.5180 166.73 169.62 13.43 45520 46.5190 161.62 170.07 13.34 45521 46.5200 173.18 170.55 13.77 45522 46.5210 147.93 171.08 12.69 45523 46.5220 173.28 171.65 13.73 45524 46.5230 166.33 172.25 13.41 45525 46.5240 184.60 172.90 14.18 45526 46.5250 172.77 173.59 13.70 45527 46.5260 155.35 174.32 12.98 45528 46.5270 193.15 175.09 14.52 45529 46.5280 175.37 175.90 13.85 45530 46.5290 190.60 176.76 14.45 45531 46.5300 198.43 177.65 14.73 45532 46.5310 187.25 178.59 14.28 45533 46.5320 187.89 179.58 14.33 45534 46.5330 206.00 180.60 14.97 45535 46.5340 174.69 181.66 13.77 45536 46.5350 184.11 182.76 14.14 45537 46.5360 182.98 183.89 14.12 45538 46.5370 179.32 185.05 13.98 45539 46.5380 192.46 186.24 14.52 45540 46.5390 192.03 187.45 14.45 45541 46.5400 196.18 188.68 14.61 45542 46.5410 188.87 189.91 14.37 45543 46.5420 200.82 191.13 14.81 45544 46.5430 202.82 192.35 14.83 45545 46.5440 212.51 193.55 15.25 45546 46.5450 212.82 194.71 15.23 45547 46.5460 195.35 195.84 14.60 45548 46.5470 213.03 196.90 15.26 45549 46.5480 222.75 197.89 15.54 45550 46.5490 225.59 198.80 15.62 45551 46.5500 215.30 199.62 15.25 45552 46.5510 225.53 200.32 15.63 45553 46.5520 224.27 200.91 15.61 45554 46.5530 231.04 201.38 15.84 45555 46.5540 212.48 201.70 15.24 45556 46.5550 212.15 201.88 15.20 45557 46.5560 196.79 201.92 14.64 45558 46.5570 224.85 201.82 15.66 45559 46.5580 218.13 201.57 15.43 45560 46.5590 174.47 201.18 13.84 45561 46.5600 205.47 200.66 14.95 45562 46.5610 200.57 200.01 14.73 45563 46.5620 197.29 199.24 14.61 45564 46.5630 211.12 198.37 15.21 45565 46.5640 205.49 197.41 14.97 45566 46.5650 184.35 196.36 14.16 45567 46.5660 186.00 195.25 14.28 45568 46.5670 198.10 194.09 14.69 45569 46.5680 197.31 192.88 14.68 45570 46.5690 198.46 191.64 14.79 45571 46.5700 195.93 190.39 14.66 45572 46.5710 182.01 189.13 14.09 45573 46.5720 180.94 187.87 13.97 45574 46.5730 173.60 186.61 13.77 45575 46.5740 168.73 185.38 13.51 45576 46.5750 189.32 184.16 14.38 45577 46.5760 182.58 182.98 14.08 45578 46.5770 187.14 181.83 14.25 45579 46.5780 172.52 180.72 13.71 45580 46.5790 175.62 179.65 13.89 45581 46.5800 190.25 178.62 14.39 45582 46.5810 182.50 177.63 14.10 45583 46.5820 176.49 176.69 13.86 45584 46.5830 184.45 175.79 14.20 45585 46.5840 183.11 174.95 14.13 45586 46.5850 188.15 174.15 14.28 45587 46.5860 167.27 173.39 13.48 45588 46.5870 159.65 172.68 13.08 45589 46.5880 190.86 172.02 14.41 45590 46.5890 181.10 171.40 14.06 45591 46.5900 178.50 170.83 13.92 45592 46.5910 169.34 170.30 13.58 45593 46.5920 175.29 169.82 13.85 45594 46.5930 178.36 169.38 14.00 45595 46.5940 170.54 168.98 13.68 45596 46.5950 175.89 168.62 13.87 45597 46.5960 179.56 168.30 14.01 45598 46.5970 182.25 168.02 14.15 45599 46.5980 168.60 167.78 13.53 45600 46.5990 162.00 167.58 13.23 45601 46.6000 164.59 167.41 13.43 45602 46.6010 170.00 167.28 13.66 45603 46.6020 209.09 167.18 15.09 45604 46.6030 166.22 167.12 13.46 45605 46.6040 161.73 167.09 13.29 45606 46.6050 164.91 167.08 13.38 45607 46.6060 170.91 167.11 13.61 45608 46.6070 169.23 167.16 13.58 45609 46.6080 156.43 167.24 12.98 45610 46.6090 165.62 167.34 13.45 45611 46.6100 163.40 167.47 13.36 45612 46.6110 184.81 167.61 14.21 45613 46.6120 185.17 167.76 14.21 45614 46.6130 172.82 167.93 13.71 45615 46.6140 167.88 168.11 13.58 45616 46.6150 154.83 168.30 12.97 45617 46.6160 174.64 168.49 13.74 45618 46.6170 167.67 168.68 13.51 45619 46.6180 170.14 168.87 13.63 45620 46.6190 176.53 169.05 13.87 45621 46.6200 174.04 169.22 13.80 45622 46.6210 159.88 169.38 13.17 45623 46.6220 182.35 169.53 14.07 45624 46.6230 191.27 169.67 14.44 45625 46.6240 181.62 169.78 14.10 45626 46.6250 170.90 169.88 13.64 45627 46.6260 166.45 169.96 13.49 45628 46.6270 177.39 170.02 13.92 45629 46.6280 159.50 170.07 13.14 45630 46.6290 169.28 170.11 13.61 45631 46.6300 186.50 170.13 14.24 45632 46.6310 203.17 170.15 14.84 45633 46.6320 181.95 170.15 14.03 45634 46.6330 203.44 170.16 14.88 45635 46.6340 173.27 170.17 13.71 45636 46.6350 150.95 170.18 12.77 45637 46.6360 161.09 170.21 13.27 45638 46.6370 187.26 170.24 14.27 45639 46.6380 157.77 170.30 13.07 45640 46.6390 153.74 170.37 12.91 45641 46.6400 177.35 170.47 13.84 45642 46.6410 165.44 170.60 13.45 45643 46.6420 170.09 170.76 13.60 45644 46.6430 176.80 170.95 13.83 45645 46.6440 168.64 171.18 13.53 45646 46.6450 154.03 171.48 12.97 45647 46.6460 165.26 171.79 13.38 45648 46.6470 176.39 172.15 13.85 45649 46.6480 181.55 172.56 14.01 45650 46.6490 159.99 173.01 13.10 45651 46.6500 162.64 173.51 13.24 45652 46.6510 177.82 174.07 13.85 45653 46.6520 172.84 174.68 13.70 45654 46.6530 173.14 175.35 13.75 45655 46.6540 188.88 176.07 14.35 45656 46.6550 188.18 176.84 14.36 45657 46.6560 187.69 177.67 14.31 45658 46.6570 184.02 178.57 14.14 45659 46.6580 172.79 179.51 13.70 45660 46.6590 184.50 180.50 14.13 45661 46.6600 188.13 181.55 14.35 45662 46.6610 172.89 182.65 13.80 45663 46.6620 198.40 183.79 14.70 45664 46.6630 187.83 184.97 14.26 45665 46.6640 208.04 186.20 15.03 45666 46.6650 178.55 187.44 14.01 45667 46.6660 189.29 188.71 14.42 45668 46.6670 203.27 189.98 14.92 45669 46.6680 181.21 191.26 14.04 45670 46.6690 192.85 192.52 14.45 45671 46.6700 205.51 193.75 14.99 45672 46.6710 195.27 194.94 14.54 45673 46.6720 197.05 196.08 14.61 45674 46.6730 205.65 197.14 14.93 45675 46.6740 214.08 198.10 15.28 45676 46.6750 204.36 198.96 14.89 45677 46.6760 202.38 199.70 14.86 45678 46.6770 200.62 200.29 14.78 45679 46.6780 206.37 200.74 14.99 45680 46.6790 199.52 201.02 14.74 45681 46.6800 205.30 201.13 14.94 45682 46.6810 195.70 201.07 14.55 45683 46.6820 182.91 200.83 14.06 45684 46.6830 219.53 200.41 15.36 45685 46.6840 196.77 199.84 14.65 45686 46.6850 201.86 199.09 14.81 45687 46.6860 198.10 198.21 14.64 45688 46.6870 183.91 197.19 14.11 45689 46.6880 171.39 196.04 13.61 45690 46.6890 170.71 194.80 13.57 45691 46.6900 187.47 193.46 14.31 45692 46.6910 174.06 192.05 13.79 45693 46.6920 160.98 190.59 13.18 45694 46.6930 175.90 189.08 13.77 45695 46.6940 197.43 187.55 14.67 45696 46.6950 163.65 186.01 13.42 45697 46.6960 177.68 184.47 13.95 45698 46.6970 182.14 182.93 14.03 45699 46.6980 189.76 181.41 14.36 45700 46.6990 161.06 179.91 13.13 45701 46.7000 157.35 178.45 13.06 45702 46.7010 177.31 177.02 13.91 45703 46.7020 158.06 175.63 13.11 45704 46.7030 156.59 174.28 13.02 45705 46.7040 170.81 172.99 13.59 45706 46.7050 170.10 171.73 13.52 45707 46.7060 150.96 170.51 12.80 45708 46.7070 167.34 169.36 13.49 45709 46.7080 152.29 168.24 12.89 45710 46.7090 144.17 167.17 12.45 45711 46.7100 151.70 166.15 12.84 45712 46.7110 154.84 165.17 12.89 45713 46.7120 157.15 164.23 13.05 45714 46.7130 155.58 163.34 12.97 45715 46.7140 161.19 162.49 13.24 45716 46.7150 177.70 161.68 13.85 45717 46.7160 142.60 160.90 12.46 45718 46.7170 140.24 160.17 12.30 45719 46.7180 148.78 159.46 12.72 45720 46.7190 147.24 158.79 12.65 45721 46.7200 140.65 158.15 12.35 45722 46.7210 152.06 157.55 12.82 45723 46.7220 144.87 156.97 12.55 45724 46.7230 167.93 156.42 13.45 45725 46.7240 162.62 155.89 13.23 45726 46.7250 151.67 155.42 12.81 45727 46.7260 152.88 154.94 12.92 45728 46.7270 151.48 154.49 12.78 45729 46.7280 142.39 154.06 12.42 45730 46.7290 147.07 153.66 12.55 45731 46.7300 153.72 153.29 12.89 45732 46.7310 144.12 152.92 12.51 45733 46.7320 155.15 152.57 12.96 45734 46.7330 148.71 152.24 12.73 45735 46.7340 170.41 151.93 13.61 45736 46.7350 150.07 151.58 12.78 45737 46.7360 132.09 151.30 11.98 45738 46.7370 154.24 151.03 12.92 45739 46.7380 121.61 150.78 11.46 45740 46.7390 142.08 150.54 12.46 45741 46.7400 133.25 150.31 11.99 45742 46.7410 153.73 150.10 12.85 45743 46.7420 166.01 149.90 13.39 45744 46.7430 160.26 149.71 13.24 45745 46.7440 138.40 149.54 12.28 45746 46.7450 123.00 149.37 11.54 45747 46.7460 124.92 149.22 11.63 45748 46.7470 138.61 149.07 12.25 45749 46.7480 147.72 148.94 12.62 45750 46.7490 162.33 148.81 13.33 45751 46.7500 166.94 148.70 13.48 45752 46.7510 149.80 148.59 12.76 45753 46.7520 157.32 148.49 13.12 45754 46.7530 160.73 148.41 13.21 45755 46.7540 154.45 148.33 12.95 45756 46.7550 145.22 148.25 12.53 45757 46.7560 146.73 148.19 12.59 45758 46.7570 152.60 148.13 12.90 45759 46.7580 151.76 148.07 12.85 45760 46.7590 141.28 148.03 12.40 45761 46.7600 163.51 147.99 13.34 45762 46.7610 153.08 147.95 12.86 45763 46.7620 167.94 147.92 13.51 45764 46.7630 165.47 147.89 13.42 45765 46.7640 157.68 147.87 13.10 45766 46.7650 148.59 147.84 12.67 45767 46.7660 162.95 147.82 13.30 45768 46.7670 151.75 147.80 12.75 45769 46.7680 163.53 147.78 13.34 45770 46.7690 144.48 147.76 12.55 45771 46.7700 152.91 147.74 12.90 45772 46.7710 136.03 147.71 12.12 45773 46.7720 156.36 147.68 13.00 45774 46.7730 149.00 147.65 12.68 45775 46.7740 156.95 147.62 13.09 45776 46.7750 151.16 147.58 12.78 45777 46.7760 146.49 147.54 12.60 45778 46.7770 139.13 147.49 12.30 45779 46.7780 143.04 147.44 12.49 45780 46.7790 151.26 147.38 12.84 45781 46.7800 159.43 147.32 13.16 45782 46.7810 165.88 147.26 13.41 45783 46.7820 165.66 147.19 13.48 45784 46.7830 144.84 147.12 12.58 45785 46.7840 148.66 147.04 12.83 45786 46.7850 148.54 146.96 12.75 45787 46.7860 162.43 146.88 13.31 45788 46.7870 140.56 146.80 12.31 45789 46.7880 141.34 146.72 12.36 45790 46.7890 152.53 146.64 12.81 45791 46.7900 147.91 146.55 12.67 45792 46.7910 154.80 146.47 12.92 45793 46.7920 140.97 146.40 12.41 45794 46.7930 152.09 146.32 12.86 45795 46.7940 140.35 146.25 12.27 45796 46.7950 145.74 146.18 12.58 45797 46.7960 163.40 146.11 13.39 45798 46.7970 157.96 146.05 13.15 45799 46.7980 153.64 145.99 12.93 45800 46.7990 153.50 145.93 12.97 45801 46.8000 157.89 145.88 13.12 45802 46.8010 134.52 145.84 12.06 45803 46.8020 143.68 145.80 12.51 45804 46.8030 150.43 145.77 12.77 45805 46.8040 147.34 145.74 12.62 45806 46.8050 163.37 145.72 13.32 45807 46.8060 150.93 145.71 12.83 45808 46.8070 153.63 145.70 12.94 45809 46.8080 156.30 145.69 13.05 45810 46.8090 139.37 145.69 12.32 45811 46.8100 156.42 145.70 13.05 45812 46.8110 143.52 145.72 12.52 45813 46.8120 134.54 145.74 12.12 45814 46.8130 130.98 145.77 11.94 45815 46.8140 143.96 145.81 12.51 45816 46.8150 143.83 145.85 12.52 45817 46.8160 161.18 145.90 13.25 45818 46.8170 145.89 145.96 12.63 45819 46.8180 163.55 146.02 13.40 45820 46.8190 154.47 146.09 12.97 45821 46.8200 153.06 146.17 12.92 45822 46.8210 149.30 146.26 12.73 45823 46.8220 157.91 146.36 13.08 45824 46.8230 151.18 146.46 12.85 45825 46.8240 151.88 146.58 12.89 45826 46.8250 170.96 146.70 13.67 45827 46.8260 149.71 146.83 12.78 45828 46.8270 139.78 146.98 12.34 45829 46.8280 145.06 147.13 12.57 45830 46.8290 144.86 147.29 12.53 45831 46.8300 147.45 147.46 12.69 45832 46.8310 148.64 147.65 12.75 45833 46.8320 156.76 147.85 13.06 45834 46.8330 146.42 148.05 12.57 45835 46.8340 142.90 148.28 12.44 45836 46.8350 149.90 148.51 12.78 45837 46.8360 156.86 148.76 13.14 45838 46.8370 138.09 149.03 12.20 45839 46.8380 142.77 149.31 12.37 45840 46.8390 158.24 149.61 13.09 45841 46.8400 139.88 149.92 12.29 45842 46.8410 150.04 150.26 12.76 45843 46.8420 148.05 150.61 12.71 45844 46.8430 136.37 150.98 12.18 45845 46.8440 148.46 151.37 12.73 45846 46.8450 151.66 151.78 12.85 45847 46.8460 138.16 152.22 12.25 45848 46.8470 137.44 152.68 12.25 45849 46.8480 147.27 153.16 12.74 45850 46.8490 165.83 153.67 13.47 45851 46.8500 152.89 154.21 12.94 45852 46.8510 137.40 154.78 12.29 45853 46.8520 153.44 155.37 12.90 45854 46.8530 146.14 155.99 12.61 45855 46.8540 154.82 156.65 12.96 45856 46.8550 150.65 157.34 12.83 45857 46.8560 154.98 158.06 13.00 45858 46.8570 158.13 158.81 13.11 45859 46.8580 144.84 159.61 12.49 45860 46.8590 165.59 160.43 13.35 45861 46.8600 160.19 161.29 13.13 45862 46.8610 153.09 162.23 12.88 45863 46.8620 154.69 163.16 13.01 45864 46.8630 156.58 164.12 13.12 45865 46.8640 160.78 165.11 13.31 45866 46.8650 146.62 166.13 12.68 45867 46.8660 167.19 167.18 13.50 45868 46.8670 161.20 168.24 13.25 45869 46.8680 180.68 169.32 14.04 45870 46.8690 170.73 170.42 13.67 45871 46.8700 159.44 171.51 13.19 45872 46.8710 177.37 172.60 13.92 45873 46.8720 163.33 173.68 13.35 45874 46.8730 157.94 174.73 13.13 45875 46.8740 174.68 175.74 13.81 45876 46.8750 174.78 176.70 13.78 45877 46.8760 168.79 177.60 13.57 45878 46.8770 161.08 178.43 13.21 45879 46.8780 163.66 179.18 13.34 45880 46.8790 189.97 179.82 14.33 45881 46.8800 190.09 180.36 14.45 45882 46.8810 186.69 180.77 14.25 45883 46.8820 176.07 181.06 13.83 45884 46.8830 173.40 181.21 13.73 45885 46.8840 171.25 181.24 13.69 45886 46.8850 173.26 181.12 13.74 45887 46.8860 179.99 180.87 14.03 45888 46.8870 162.37 180.50 13.34 45889 46.8880 179.93 180.00 14.01 45890 46.8890 159.30 179.39 13.17 45891 46.8900 176.37 178.68 13.84 45892 46.8910 181.74 177.88 14.20 45893 46.8920 153.37 177.00 12.97 45894 46.8930 159.93 176.05 13.21 45895 46.8940 173.29 175.06 13.72 45896 46.8950 185.46 174.02 14.20 45897 46.8960 153.17 172.95 12.87 45898 46.8970 167.81 171.87 13.55 45899 46.8980 181.81 170.78 14.14 45900 46.8990 173.28 169.68 13.83 45901 46.9000 164.53 168.59 13.44 45902 46.9010 147.89 167.52 12.71 45903 46.9020 157.29 166.52 13.09 45904 46.9030 156.89 165.49 13.06 45905 46.9040 145.72 164.48 12.56 45906 46.9050 143.85 163.49 12.42 45907 46.9060 138.99 162.54 12.19 45908 46.9070 156.73 161.62 13.05 45909 46.9080 158.15 160.73 13.05 45910 46.9090 169.39 159.88 13.51 45911 46.9100 156.37 159.06 13.09 45912 46.9110 151.74 158.27 12.85 45913 46.9120 174.40 157.51 13.77 45914 46.9130 154.62 156.79 12.94 45915 46.9140 155.60 156.09 13.01 45916 46.9150 165.29 155.43 13.34 45917 46.9160 150.99 154.80 12.83 45918 46.9170 155.23 154.20 13.02 45919 46.9180 154.21 153.62 12.94 45920 46.9190 146.89 153.07 12.65 45921 46.9200 140.08 152.55 12.37 45922 46.9210 129.82 152.05 11.89 45923 46.9220 149.54 151.58 12.79 45924 46.9230 144.27 151.13 12.48 45925 46.9240 177.46 150.67 13.80 45926 46.9250 186.91 150.26 14.27 45927 46.9260 165.04 149.88 13.39 45928 46.9270 135.02 149.51 12.13 45929 46.9280 146.04 149.16 12.65 45930 46.9290 155.25 148.82 12.96 45931 46.9300 134.51 148.51 12.02 45932 46.9310 120.80 148.21 11.37 45933 46.9320 145.65 147.92 12.56 45934 46.9330 153.94 147.65 12.88 45935 46.9340 137.45 147.39 12.21 45936 46.9350 144.18 147.15 12.59 45937 46.9360 148.02 146.92 12.64 45938 46.9370 132.53 146.70 12.05 45939 46.9380 149.48 146.50 12.78 45940 46.9390 149.12 146.30 12.79 45941 46.9400 151.74 146.12 12.80 45942 46.9410 144.87 145.94 12.54 45943 46.9420 140.81 145.78 12.33 45944 46.9430 150.60 145.63 12.77 45945 46.9440 156.81 145.48 13.07 45946 46.9450 149.58 145.35 12.78 45947 46.9460 155.83 145.22 12.99 45948 46.9470 136.56 145.10 12.22 45949 46.9480 153.82 144.99 13.04 45950 46.9490 141.62 144.89 12.47 45951 46.9500 119.82 144.80 11.38 45952 46.9510 161.54 144.71 13.15 45953 46.9520 151.39 144.63 12.80 45954 46.9530 134.31 144.56 12.03 45955 46.9540 143.85 144.49 12.51 45956 46.9550 145.75 144.43 12.59 45957 46.9560 177.58 144.38 13.90 45958 46.9570 154.48 144.34 12.96 45959 46.9580 145.18 144.30 12.55 45960 46.9590 154.70 144.26 13.01 45961 46.9600 146.64 144.23 12.65 45962 46.9610 133.81 144.21 12.09 45963 46.9620 137.24 144.19 12.26 45964 46.9630 157.23 144.18 13.07 45965 46.9640 155.23 144.17 12.94 45966 46.9650 149.78 144.17 12.76 45967 46.9660 132.75 144.17 12.01 45968 46.9670 159.09 144.18 13.19 45969 46.9680 140.52 144.19 12.31 45970 46.9690 134.05 144.20 12.10 45971 46.9700 145.60 144.22 12.58 45972 46.9710 153.09 144.24 12.92 45973 46.9720 128.64 144.27 11.83 45974 46.9730 137.88 144.29 12.22 45975 46.9740 151.54 144.33 12.77 45976 46.9750 153.78 144.36 12.86 45977 46.9760 154.48 144.40 13.01 45978 46.9770 143.76 144.44 12.50 45979 46.9780 144.09 144.49 12.55 45980 46.9790 137.05 144.54 12.21 45981 46.9800 153.74 144.59 12.97 45982 46.9810 160.75 144.64 13.25 45983 46.9820 155.40 144.69 13.05 45984 46.9830 162.60 144.75 13.31 45985 46.9840 141.39 144.81 12.37 45986 46.9850 159.68 144.87 13.08 45987 46.9860 121.78 144.93 11.49 45988 46.9870 132.12 144.99 12.03 45989 46.9880 149.29 145.05 12.68 45990 46.9890 155.42 145.11 13.02 45991 46.9900 154.36 145.17 12.95 45992 46.9910 152.33 145.22 12.85 45993 46.9920 138.98 145.27 12.29 45994 46.9930 147.05 145.32 12.68 45995 46.9940 150.32 145.36 12.81 45996 46.9950 141.58 145.40 12.35 45997 46.9960 135.81 145.42 12.18 45998 46.9970 137.04 145.44 12.24 45999 46.9980 149.40 145.45 12.79 46000 46.9990 143.54 145.46 12.51 46001 47.0000 151.31 145.45 12.85 46002 47.0010 145.33 145.44 12.57 46003 47.0020 150.41 145.42 12.74 46004 47.0030 148.97 145.40 12.73 46005 47.0040 141.01 145.37 12.36 46006 47.0050 152.07 145.34 12.86 46007 47.0060 137.08 145.30 12.19 46008 47.0070 129.78 145.26 11.91 46009 47.0080 147.24 145.22 12.64 46010 47.0090 131.50 145.18 11.99 46011 47.0100 148.46 145.14 12.72 46012 47.0110 150.93 145.10 12.80 46013 47.0120 153.23 145.07 12.94 46014 47.0130 161.71 145.04 13.34 46015 47.0140 153.51 145.02 13.04 46016 47.0150 150.93 145.01 12.76 46017 47.0160 128.72 144.99 11.85 46018 47.0170 122.13 144.99 11.55 46019 47.0180 151.23 144.99 12.93 46020 47.0190 152.36 145.00 12.92 46021 47.0200 149.76 145.02 12.75 46022 47.0210 137.83 145.05 12.20 46023 47.0220 130.72 145.05 11.92 46024 47.0230 133.60 145.10 12.08 46025 47.0240 141.89 145.16 12.40 46026 47.0250 155.41 145.22 12.93 46027 47.0260 154.46 145.29 13.01 46028 47.0270 163.83 145.37 13.36 46029 47.0280 152.37 145.46 12.87 46030 47.0290 149.63 145.56 12.72 46031 47.0300 142.82 145.67 12.45 46032 47.0310 150.56 145.78 12.72 46033 47.0320 157.94 145.90 13.11 46034 47.0330 123.75 146.02 11.59 46035 47.0340 130.76 146.16 11.88 46036 47.0350 144.40 146.29 12.53 46037 47.0360 155.62 146.43 13.07 46038 47.0370 138.15 146.57 12.25 46039 47.0380 152.71 146.71 12.83 46040 47.0390 134.02 146.86 12.04 46041 47.0400 156.45 147.00 13.04 46042 47.0410 152.28 147.14 12.90 46043 47.0420 143.60 147.28 12.53 46044 47.0430 131.62 147.41 12.00 46045 47.0440 136.99 147.54 12.16 46046 47.0450 150.04 147.66 12.76 46047 47.0460 142.89 147.77 12.50 46048 47.0470 143.13 147.88 12.53 46049 47.0480 158.57 147.97 13.18 46050 47.0490 151.46 148.06 12.84 46051 47.0500 164.10 148.14 13.39 46052 47.0510 144.23 148.21 12.60 46053 47.0520 140.09 148.28 12.40 46054 47.0530 146.29 148.42 12.57 46055 47.0540 152.82 148.47 12.94 46056 47.0550 156.66 148.52 13.11 46057 47.0560 148.30 148.57 12.69 46058 47.0570 141.19 148.61 12.35 46059 47.0580 141.01 148.65 12.33 46060 47.0590 156.62 148.70 13.16 46061 47.0600 170.19 148.75 13.60 46062 47.0610 148.37 148.80 12.66 46063 47.0620 158.06 148.86 13.10 46064 47.0630 167.14 148.93 13.48 46065 47.0640 147.17 149.01 12.67 46066 47.0650 134.86 149.10 12.15 46067 47.0660 124.73 149.20 11.66 46068 47.0670 139.60 149.31 12.36 46069 47.0680 137.51 149.44 12.21 46070 47.0690 159.08 149.58 13.09 46071 47.0700 153.28 149.74 12.90 46072 47.0710 156.60 149.92 13.03 46073 47.0720 162.40 150.12 13.29 46074 47.0730 149.16 150.33 12.70 46075 47.0740 137.45 150.56 12.23 46076 47.0750 138.30 150.82 12.29 46077 47.0760 149.60 151.09 12.75 46078 47.0770 154.94 151.38 13.00 46079 47.0780 138.88 151.70 12.28 46080 47.0790 169.77 152.04 13.53 46081 47.0800 160.42 152.40 13.18 46082 47.0810 165.57 152.79 13.38 46083 47.0820 168.65 153.20 13.56 46084 47.0830 154.43 153.63 13.00 46085 47.0840 153.78 154.08 12.96 46086 47.0850 149.91 154.55 12.84 46087 47.0860 160.68 155.05 13.24 46088 47.0870 162.63 155.57 13.33 46089 47.0880 151.31 156.10 12.89 46090 47.0890 148.46 156.66 12.71 46091 47.0900 163.28 157.23 13.38 46092 47.0910 158.04 157.81 13.04 46093 47.0920 166.36 158.40 13.41 46094 47.0930 162.96 159.00 13.25 46095 47.0940 161.79 159.60 13.27 46096 47.0950 167.46 160.20 13.47 46097 47.0960 146.94 160.80 12.59 46098 47.0970 161.06 161.38 13.22 46099 47.0980 178.66 161.94 13.96 46100 47.0990 164.60 162.48 13.36 46101 47.1000 184.43 162.99 14.18 46102 47.1010 170.88 163.46 13.60 46103 47.1020 154.00 163.90 12.94 46104 47.1030 165.13 164.27 13.45 46105 47.1040 181.67 164.59 14.07 46106 47.1050 187.34 164.85 14.25 46107 47.1060 169.89 165.04 13.56 46108 47.1070 181.41 165.16 14.08 46109 47.1080 190.94 165.20 14.50 46110 47.1090 193.08 165.17 14.56 46111 47.1100 169.22 165.07 13.62 46112 47.1110 176.33 164.89 13.82 46113 47.1120 179.71 164.64 13.98 46114 47.1130 153.54 164.33 12.93 46115 47.1140 179.80 163.95 13.97 46116 47.1150 168.82 163.51 13.53 46117 47.1160 160.72 163.03 13.15 46118 47.1170 161.91 162.49 13.24 46119 47.1180 166.41 161.93 13.45 46120 47.1190 163.58 161.32 13.41 46121 47.1200 177.09 160.69 13.91 46122 47.1210 155.17 160.05 12.90 46123 47.1220 157.95 159.38 13.09 46124 47.1230 168.63 158.71 13.58 46125 47.1240 159.71 158.04 13.20 46126 47.1250 153.15 157.37 12.90 46127 47.1260 173.20 156.70 13.67 46128 47.1270 154.63 156.05 12.94 46129 47.1280 171.13 155.40 13.60 46130 47.1290 158.68 154.76 13.12 46131 47.1300 157.47 154.15 13.17 46132 47.1310 165.42 153.54 13.41 46133 47.1320 135.81 152.96 12.13 46134 47.1330 128.75 152.40 11.80 46135 47.1340 141.88 151.77 12.41 46136 47.1350 157.39 151.24 13.11 46137 47.1360 154.62 150.74 13.04 46138 47.1370 146.93 150.25 12.70 46139 47.1380 137.01 149.78 12.19 46140 47.1390 139.01 149.33 12.28 46141 47.1400 153.52 148.90 12.94 46142 47.1410 155.50 148.49 13.01 46143 47.1420 156.12 148.10 13.02 46144 47.1430 131.15 147.72 11.97 46145 47.1440 128.25 147.36 11.79 46146 47.1450 137.04 147.02 12.20 46147 47.1460 156.18 146.69 13.01 46148 47.1470 151.98 146.38 12.88 46149 47.1480 140.60 146.08 12.37 46150 47.1490 153.30 145.79 12.86 46151 47.1500 162.48 145.52 13.27 46152 47.1510 158.80 145.26 13.09 46153 47.1520 141.86 145.01 12.42 46154 47.1530 148.54 144.77 12.71 46155 47.1540 152.86 144.55 12.89 46156 47.1550 136.57 144.34 12.07 46157 47.1560 163.25 144.17 13.30 46158 47.1570 149.24 143.97 12.72 46159 47.1580 140.43 143.79 12.47 46160 47.1590 144.92 143.61 12.63 46161 47.1600 139.31 143.44 12.35 46162 47.1610 144.36 143.29 12.58 46163 47.1620 139.28 143.13 12.23 46164 47.1630 127.28 142.99 11.74 46165 47.1640 147.94 142.85 12.68 46166 47.1650 121.13 142.72 11.46 46167 47.1660 148.21 142.60 12.65 46168 47.1670 162.48 142.48 13.27 46169 47.1680 137.09 142.37 12.24 46170 47.1690 145.87 142.26 12.55 46171 47.1700 136.82 142.18 12.25 46172 47.1710 149.05 142.08 12.77 46173 47.1720 138.14 141.99 12.24 46174 47.1730 128.80 141.91 11.78 46175 47.1740 147.53 141.83 12.63 46176 47.1750 118.75 141.76 11.39 46177 47.1760 146.35 141.69 12.64 46178 47.1770 148.18 141.63 12.63 46179 47.1780 138.74 141.57 12.31 46180 47.1790 162.43 141.51 13.32 46181 47.1800 163.75 141.46 13.32 46182 47.1810 161.75 141.41 13.22 46183 47.1820 130.61 141.37 11.91 46184 47.1830 139.69 141.33 12.29 46185 47.1840 151.61 141.29 12.85 46186 47.1850 144.84 141.26 12.58 46187 47.1860 136.20 141.24 12.10 46188 47.1870 120.62 141.21 11.42 46189 47.1880 148.80 141.19 12.77 46190 47.1890 139.97 141.18 12.39 46191 47.1900 131.11 141.16 11.94 46192 47.1910 127.63 141.16 11.75 46193 47.1920 128.64 141.15 11.87 46194 47.1930 124.44 141.15 11.64 46195 47.1940 143.86 141.15 12.49 46196 47.1950 160.12 141.16 13.23 46197 47.1960 137.23 141.17 12.19 46198 47.1970 138.98 141.18 12.29 46199 47.1980 142.90 141.20 12.38 46200 47.1990 145.88 141.23 12.52 46201 47.2000 141.37 141.25 12.37 46202 47.2010 140.40 141.28 12.33 46203 47.2020 138.58 141.32 12.26 46204 47.2030 153.53 141.36 12.92 46205 47.2040 148.26 141.40 12.66 46206 47.2050 136.39 141.35 12.22 46207 47.2060 149.61 141.40 12.76 46208 47.2070 146.07 141.46 12.58 46209 47.2080 145.03 141.52 12.53 46210 47.2090 149.02 141.59 12.71 46211 47.2100 158.42 141.66 13.15 46212 47.2110 149.22 141.74 12.72 46213 47.2120 148.54 141.82 12.72 46214 47.2130 144.38 141.91 12.49 46215 47.2140 147.49 142.00 12.67 46216 47.2150 145.34 142.10 12.56 46217 47.2160 142.31 142.20 12.46 46218 47.2170 133.75 142.31 12.03 46219 47.2180 132.19 142.43 11.97 46220 47.2190 143.76 142.55 12.58 46221 47.2200 149.59 142.68 12.80 46222 47.2210 138.58 142.82 12.26 46223 47.2220 137.25 142.97 12.22 46224 47.2230 127.67 143.12 11.74 46225 47.2240 126.80 143.28 11.67 46226 47.2250 137.33 143.45 12.22 46227 47.2260 154.69 143.63 13.00 46228 47.2270 163.62 143.82 13.39 46229 47.2280 139.79 144.01 12.33 46230 47.2290 139.69 144.22 12.28 46231 47.2300 143.02 144.43 12.42 46232 47.2310 168.48 144.65 13.58 46233 47.2320 151.40 144.88 12.90 46234 47.2330 128.92 145.12 11.87 46235 47.2340 137.52 145.37 12.19 46236 47.2350 149.39 145.62 12.73 46237 47.2360 153.19 145.89 12.84 46238 47.2370 172.51 146.15 13.70 46239 47.2380 151.29 146.43 12.87 46240 47.2390 133.84 146.70 12.08 46241 47.2400 116.53 146.98 11.24 46242 47.2410 146.82 147.26 12.59 46243 47.2420 145.85 147.54 12.59 46244 47.2430 157.22 147.82 13.05 46245 47.2440 155.60 148.09 13.01 46246 47.2450 153.70 148.35 12.90 46247 47.2460 168.65 148.60 13.52 46248 47.2470 136.62 148.84 12.24 46249 47.2480 139.05 149.07 12.32 46250 47.2490 147.68 149.27 12.68 46251 47.2500 151.39 149.46 12.85 46252 47.2510 154.84 149.62 12.96 46253 47.2520 145.87 149.76 12.54 46254 47.2530 142.82 149.87 12.43 46255 47.2540 137.44 149.95 12.26 46256 47.2550 142.83 150.01 12.43 46257 47.2560 152.28 150.03 12.86 46258 47.2570 166.00 150.03 13.41 46259 47.2580 153.45 150.00 12.88 46260 47.2590 154.17 149.94 12.90 46261 47.2600 141.46 149.86 12.36 46262 47.2610 126.83 149.76 11.74 46263 47.2620 130.84 149.63 11.93 46264 47.2630 134.13 149.49 12.04 46265 47.2640 136.28 149.34 12.14 46266 47.2650 128.40 149.17 11.82 46267 47.2660 158.09 149.00 13.14 46268 47.2670 162.84 148.81 13.32 46269 47.2680 162.68 148.63 13.29 46270 47.2690 161.47 148.44 13.28 46271 47.2700 137.64 148.26 12.26 46272 47.2710 142.79 148.07 12.47 46273 47.2720 155.65 147.90 13.03 46274 47.2730 141.58 147.73 12.43 46275 47.2740 154.36 147.56 12.91 46276 47.2750 148.29 147.41 12.69 46277 47.2760 152.98 147.27 12.94 46278 47.2770 130.68 147.13 11.90 46279 47.2780 123.98 147.01 11.50 46280 47.2790 143.35 146.90 12.40 46281 47.2800 156.05 146.81 13.03 46282 47.2810 147.25 146.74 12.75 46283 47.2820 147.97 146.67 12.69 46284 47.2830 149.73 146.62 12.75 46285 47.2840 157.61 146.57 13.08 46286 47.2850 143.36 146.43 12.53 46287 47.2860 144.54 146.41 12.51 46288 47.2870 144.21 146.41 12.41 46289 47.2880 143.49 146.43 12.46 46290 47.2890 160.91 146.46 13.19 46291 47.2900 163.04 146.50 13.31 46292 47.2910 164.64 146.56 13.41 46293 47.2920 171.82 146.63 13.70 46294 47.2930 144.87 146.72 12.62 46295 47.2940 158.68 146.82 13.21 46296 47.2950 155.43 146.93 13.01 46297 47.2960 144.43 147.06 12.55 46298 47.2970 159.15 147.20 13.12 46299 47.2980 141.71 147.36 12.43 46300 47.2990 146.99 147.52 12.61 46301 47.3000 149.60 147.71 12.71 46302 47.3010 141.71 147.90 12.42 46303 47.3020 141.59 148.11 12.45 46304 47.3030 150.95 148.33 12.83 46305 47.3040 150.44 148.57 12.84 46306 47.3050 158.56 148.81 13.13 46307 47.3060 162.41 149.07 13.32 46308 47.3070 165.52 149.34 13.42 46309 47.3080 148.67 149.62 12.69 46310 47.3090 138.06 149.92 12.14 46311 47.3100 151.18 150.23 12.83 46312 47.3110 160.12 150.54 13.22 46313 47.3120 137.44 150.86 12.22 46314 47.3130 141.74 151.19 12.47 46315 47.3140 161.87 151.53 13.23 46316 47.3150 167.45 151.87 13.45 46317 47.3160 160.48 152.21 13.21 46318 47.3170 148.17 152.54 12.70 46319 47.3180 134.10 152.88 12.04 46320 47.3190 134.95 153.20 12.05 46321 47.3200 146.82 153.51 12.63 46322 47.3210 154.87 153.82 12.97 46323 47.3220 160.23 154.10 13.19 46324 47.3230 157.05 154.36 13.02 46325 47.3240 172.74 154.60 13.73 46326 47.3250 155.01 154.80 13.04 46327 47.3260 160.47 154.98 13.18 46328 47.3270 172.16 155.12 13.67 46329 47.3280 159.06 155.24 13.12 46330 47.3290 148.20 155.31 12.71 46331 47.3300 151.80 155.35 12.81 46332 47.3310 150.08 155.35 12.71 46333 47.3320 155.64 155.32 13.05 46334 47.3330 142.66 155.26 12.39 46335 47.3340 169.09 155.17 13.56 46336 47.3350 158.67 155.04 13.18 46337 47.3360 157.18 154.90 13.11 46338 47.3370 142.42 154.72 12.47 46339 47.3380 135.98 154.53 12.18 46340 47.3390 135.51 154.32 12.13 46341 47.3400 135.10 154.10 12.10 46342 47.3410 149.99 153.87 12.75 46343 47.3420 157.43 153.62 13.10 46344 47.3430 143.31 153.37 12.54 46345 47.3440 157.19 153.12 13.13 46346 47.3450 147.41 152.87 12.72 46347 47.3460 149.86 152.62 12.85 46348 47.3470 149.04 152.37 12.83 46349 47.3480 138.67 152.13 12.30 46350 47.3490 157.20 151.90 13.01 46351 47.3500 160.63 151.67 13.16 46352 47.3510 143.28 151.46 12.46 46353 47.3520 143.42 151.26 12.43 46354 47.3530 164.30 151.07 13.39 46355 47.3540 138.35 150.89 12.35 46356 47.3550 137.55 150.73 12.25 46357 47.3560 149.50 150.59 12.85 46358 47.3570 155.85 150.46 13.04 46359 47.3580 159.09 150.34 13.14 46360 47.3590 148.94 150.24 12.77 46361 47.3600 156.02 150.15 12.99 46362 47.3610 137.57 150.08 12.16 46363 47.3620 144.87 150.02 12.61 46364 47.3630 146.69 149.97 12.68 46365 47.3640 142.84 149.93 12.50 46366 47.3650 133.61 149.90 12.09 46367 47.3660 138.88 149.87 12.27 46368 47.3670 162.73 149.85 13.29 46369 47.3680 147.19 149.83 12.59 46370 47.3690 159.23 149.82 13.21 46371 47.3700 142.01 149.80 12.45 46372 47.3710 165.52 149.77 13.38 46373 47.3720 131.39 149.75 11.92 46374 47.3730 153.29 149.71 12.86 46375 47.3740 147.67 149.66 12.61 46376 47.3750 130.50 149.60 11.89 46377 47.3760 146.52 149.53 12.60 46378 47.3770 156.79 149.44 13.06 46379 47.3780 154.86 149.33 12.98 46380 47.3790 136.08 149.21 12.16 46381 47.3800 140.71 149.07 12.41 46382 47.3810 133.08 148.91 11.98 46383 47.3820 132.19 148.74 11.91 46384 47.3830 149.26 148.55 12.73 46385 47.3840 144.63 148.35 12.54 46386 47.3850 138.02 148.13 12.29 46387 47.3860 158.14 147.91 13.11 46388 47.3870 163.73 147.67 13.36 46389 47.3880 141.49 147.43 12.42 46390 47.3890 159.47 147.18 13.18 46391 47.3900 146.72 146.92 12.60 46392 47.3910 148.77 146.67 12.64 46393 47.3920 148.17 146.41 12.67 46394 47.3930 138.97 146.15 12.33 46395 47.3940 148.66 145.90 12.70 46396 47.3950 144.52 145.64 12.52 46397 47.3960 157.44 145.39 13.15 46398 47.3970 159.05 145.15 13.21 46399 47.3980 146.35 144.91 12.70 46400 47.3990 158.23 144.68 13.14 46401 47.4000 161.49 144.45 13.26 46402 47.4010 157.59 144.23 13.15 46403 47.4020 134.04 144.02 12.03 46404 47.4030 132.77 143.82 11.92 46405 47.4040 123.55 143.62 11.59 46406 47.4050 129.28 143.43 11.88 46407 47.4060 152.28 143.25 12.86 46408 47.4070 158.40 143.08 13.16 46409 47.4080 149.33 142.91 12.58 46410 47.4090 149.85 142.76 12.81 46411 47.4100 139.69 142.61 12.33 46412 47.4110 162.09 142.47 13.23 46413 47.4120 134.94 142.33 11.99 46414 47.4130 153.83 142.20 12.85 46415 47.4140 151.06 142.07 12.80 46416 47.4150 142.18 141.96 12.48 46417 47.4160 142.21 141.85 12.48 46418 47.4170 140.48 141.74 12.42 46419 47.4180 131.62 141.64 12.08 46420 47.4190 138.67 141.55 12.35 46421 47.4200 141.60 141.46 12.46 46422 47.4210 143.94 141.38 12.48 46423 47.4220 130.28 141.30 11.93 46424 47.4230 134.18 141.23 12.12 46425 47.4240 138.76 141.16 12.29 46426 47.4250 142.67 141.09 12.49 46427 47.4260 136.37 141.03 12.14 46428 47.4270 155.15 140.98 13.06 46429 47.4280 152.86 140.93 12.95 46430 47.4290 137.98 140.88 12.32 46431 47.4300 153.09 140.83 12.98 46432 47.4310 151.84 140.79 12.90 46433 47.4320 140.41 140.76 12.34 46434 47.4330 131.60 140.72 11.86 46435 47.4340 123.39 140.69 11.48 46436 47.4350 132.63 140.66 12.00 46437 47.4360 144.78 140.64 12.58 46438 47.4370 137.59 140.62 12.23 46439 47.4380 147.19 140.60 12.63 46440 47.4390 133.31 140.59 12.08 46441 47.4400 143.46 140.58 12.52 46442 47.4410 133.98 140.57 12.11 46443 47.4420 120.75 140.56 11.49 46444 47.4430 128.96 140.56 11.89 46445 47.4440 146.10 140.56 12.64 46446 47.4450 132.50 140.56 12.03 46447 47.4460 144.04 140.56 12.53 46448 47.4470 139.92 140.57 12.33 46449 47.4480 157.80 140.58 13.08 46450 47.4490 130.36 140.59 11.94 46451 47.4500 146.70 140.61 12.64 46452 47.4510 153.63 140.62 12.91 46453 47.4520 135.15 140.64 12.13 46454 47.4530 161.10 140.67 13.23 46455 47.4540 154.13 140.69 12.92 46456 47.4550 130.50 140.72 11.93 46457 47.4560 153.44 140.75 12.94 46458 47.4570 139.04 140.78 12.29 46459 47.4580 148.03 140.82 12.64 46460 47.4590 143.22 140.85 12.43 46461 47.4600 140.64 140.89 12.31 46462 47.4610 155.00 140.94 12.97 46463 47.4620 136.87 140.98 12.12 46464 47.4630 129.19 141.03 11.81 46465 47.4640 156.05 141.08 13.03 46466 47.4650 151.73 141.13 12.84 46467 47.4660 142.07 141.19 12.47 46468 47.4670 129.92 141.25 11.89 46469 47.4680 136.46 141.31 12.10 46470 47.4690 143.55 141.38 12.48 46471 47.4700 134.30 141.44 12.08 46472 47.4710 143.07 141.51 12.52 46473 47.4720 135.78 141.52 12.23 46474 47.4730 142.22 141.60 12.47 46475 47.4740 141.89 141.68 12.46 46476 47.4750 150.33 141.76 12.85 46477 47.4760 140.91 141.85 12.41 46478 47.4770 130.52 141.94 11.87 46479 47.4780 137.71 142.03 12.26 46480 47.4790 134.02 142.13 12.07 46481 47.4800 131.03 142.23 11.94 46482 47.4810 130.36 142.34 11.89 46483 47.4820 136.59 142.45 12.13 46484 47.4830 137.03 142.56 12.12 46485 47.4840 154.41 142.68 12.88 46486 47.4850 142.65 142.80 12.47 46487 47.4860 134.59 142.93 12.05 46488 47.4870 135.27 143.06 12.12 46489 47.4880 132.93 143.20 11.98 46490 47.4890 133.17 143.34 11.95 46491 47.4900 145.84 143.49 12.55 46492 47.4910 132.90 143.64 11.96 46493 47.4920 129.77 143.80 11.81 46494 47.4930 134.90 143.96 12.16 46495 47.4940 144.29 144.13 12.55 46496 47.4950 132.80 144.31 12.06 46497 47.4960 148.42 144.49 12.70 46498 47.4970 170.69 144.68 13.68 46499 47.4980 144.81 144.88 12.48 46500 47.4990 115.14 145.09 11.15 46501 47.5000 153.91 145.30 12.91 46502 47.5010 118.68 145.52 11.27 46503 47.5020 151.03 145.75 12.76 46504 47.5030 155.16 145.98 13.04 46505 47.5040 144.19 146.23 12.58 46506 47.5050 147.63 146.49 12.68 46507 47.5060 151.15 146.75 12.82 46508 47.5070 157.97 147.02 13.08 46509 47.5080 111.93 147.31 10.96 46510 47.5090 118.26 147.61 11.32 46511 47.5100 140.68 147.91 12.36 46512 47.5110 156.96 148.24 13.05 46513 47.5120 170.23 148.57 13.63 46514 47.5130 153.52 148.91 12.81 46515 47.5140 128.21 149.27 11.78 46516 47.5150 148.16 149.64 12.71 46517 47.5160 156.40 150.03 13.03 46518 47.5170 152.13 150.43 12.80 46519 47.5180 159.12 150.85 13.15 46520 47.5190 167.71 151.28 13.52 46521 47.5200 154.88 151.73 13.02 46522 47.5210 150.01 152.20 12.77 46523 47.5220 154.21 152.68 12.95 46524 47.5230 162.85 153.18 13.28 46525 47.5240 154.15 153.71 12.99 46526 47.5250 141.10 154.26 12.41 46527 47.5260 149.68 154.82 12.74 46528 47.5270 157.70 155.40 13.08 46529 47.5280 158.81 156.01 13.15 46530 47.5290 166.80 156.64 13.45 46531 47.5300 157.82 157.29 13.08 46532 47.5310 158.40 157.97 13.16 46533 47.5320 158.43 158.67 13.11 46534 47.5330 173.22 159.39 13.78 46535 47.5340 160.33 160.14 13.28 46536 47.5350 166.27 160.91 13.48 46537 47.5360 157.38 161.71 13.07 46538 47.5370 154.10 162.53 12.97 46539 47.5380 177.91 163.37 13.95 46540 47.5390 183.64 164.24 14.20 46541 47.5400 168.73 165.13 13.58 46542 47.5410 147.61 166.03 12.65 46543 47.5420 152.51 166.96 12.88 46544 47.5430 177.86 167.91 13.91 46545 47.5440 186.45 168.87 14.26 46546 47.5450 185.56 169.85 14.11 46547 47.5460 165.62 170.84 13.29 46548 47.5470 174.25 171.84 13.81 46549 47.5480 170.79 172.84 13.64 46550 47.5490 157.05 173.85 13.09 46551 47.5500 155.66 174.86 12.94 46552 47.5510 159.74 175.86 13.08 46553 47.5520 169.24 176.86 13.51 46554 47.5530 181.14 177.85 14.00 46555 47.5540 180.32 178.82 13.99 46556 47.5550 172.59 179.78 13.74 46557 47.5560 196.52 180.72 14.69 46558 47.5570 166.20 181.63 13.50 46559 47.5580 189.09 182.52 14.32 46560 47.5590 178.10 183.38 13.94 46561 47.5600 181.33 184.22 14.01 46562 47.5610 198.21 185.02 14.70 46563 47.5620 199.86 185.79 14.74 46564 47.5630 178.33 186.53 13.90 46565 47.5640 166.70 187.24 13.48 46566 47.5650 179.26 187.90 13.98 46567 47.5660 197.23 188.54 14.65 46568 47.5670 182.32 189.13 14.07 46569 47.5680 194.79 189.70 14.54 46570 47.5690 182.33 190.21 14.05 46571 47.5700 180.88 190.70 14.08 46572 47.5710 188.62 191.13 14.30 46573 47.5720 204.85 191.52 14.97 46574 47.5730 202.29 191.87 14.85 46575 47.5740 206.28 192.16 14.97 46576 47.5750 180.44 192.39 13.96 46577 47.5760 206.19 192.57 14.89 46578 47.5770 190.84 192.68 14.44 46579 47.5780 181.18 192.72 13.99 46580 47.5790 204.70 192.69 14.86 46581 47.5800 224.62 192.59 15.66 46582 47.5810 200.75 192.41 14.78 46583 47.5820 191.95 192.15 14.44 46584 47.5830 209.37 191.81 15.09 46585 47.5840 181.66 191.39 14.12 46586 47.5850 194.26 190.90 14.62 46587 47.5860 192.00 190.34 14.54 46588 47.5870 182.87 189.70 14.16 46589 47.5880 163.65 189.00 13.29 46590 47.5890 181.83 188.24 13.99 46591 47.5900 184.13 187.44 14.12 46592 47.5910 192.83 186.58 14.49 46593 47.5920 185.04 185.68 14.19 46594 47.5930 177.82 184.76 13.89 46595 47.5940 171.57 183.80 13.69 46596 47.5950 175.35 182.84 13.81 46597 47.5960 162.67 181.87 13.27 46598 47.5970 151.04 180.89 12.82 46599 47.5980 154.88 179.91 13.02 46600 47.5990 181.18 178.95 14.03 46601 47.6000 180.98 178.00 14.08 46602 47.6010 171.41 177.07 13.68 46603 47.6020 165.05 176.17 13.43 46604 47.6030 170.31 175.30 13.57 46605 47.6040 168.69 174.45 13.54 46606 47.6050 161.63 173.64 13.24 46607 47.6060 177.26 172.87 13.88 46608 47.6070 179.53 172.12 13.95 46609 47.6080 156.52 171.42 13.05 46610 47.6090 154.98 170.76 12.99 46611 47.6100 176.87 170.13 13.80 46612 47.6110 162.81 169.54 13.27 46613 47.6120 158.01 168.99 13.10 46614 47.6130 150.49 168.52 12.73 46615 47.6140 176.79 168.05 13.87 46616 47.6150 171.00 167.61 13.54 46617 47.6160 154.92 167.22 12.92 46618 47.6170 164.16 166.86 13.39 46619 47.6180 183.36 166.54 14.07 46620 47.6190 162.08 166.25 13.28 46621 47.6200 158.82 165.99 13.11 46622 47.6210 160.68 165.77 13.22 46623 47.6220 157.76 165.58 13.10 46624 47.6230 165.91 165.43 13.44 46625 47.6240 153.25 165.30 12.87 46626 47.6250 164.11 165.21 13.35 46627 47.6260 165.93 165.15 13.42 46628 47.6270 152.37 165.12 12.84 46629 47.6280 169.33 165.13 13.50 46630 47.6290 168.21 165.16 13.58 46631 47.6300 175.05 165.24 13.85 46632 47.6310 161.01 165.34 13.25 46633 47.6320 166.07 165.48 13.45 46634 47.6330 164.57 165.65 13.35 46635 47.6340 171.96 165.87 13.65 46636 47.6350 163.72 166.12 13.29 46637 47.6360 150.46 166.41 12.78 46638 47.6370 161.03 166.74 13.22 46639 47.6380 152.36 167.11 12.93 46640 47.6390 156.60 167.53 13.10 46641 47.6400 164.30 167.99 13.41 46642 47.6410 155.87 168.49 13.01 46643 47.6420 184.85 169.04 14.16 46644 47.6430 167.38 169.64 13.51 46645 47.6440 162.84 170.28 13.33 46646 47.6450 169.73 170.96 13.58 46647 47.6460 173.51 171.70 13.69 46648 47.6470 141.50 172.48 12.37 46649 47.6480 154.82 173.30 13.03 46650 47.6490 158.87 174.17 13.16 46651 47.6500 161.11 175.08 13.25 46652 47.6510 181.54 176.02 14.04 46653 47.6520 167.45 176.99 13.50 46654 47.6530 159.30 178.00 13.15 46655 47.6540 162.51 179.02 13.26 46656 47.6550 179.59 180.07 13.93 46657 47.6560 174.91 181.12 13.81 46658 47.6570 164.12 182.16 13.35 46659 47.6580 182.80 183.20 14.06 46660 47.6590 194.64 184.21 14.55 46661 47.6600 183.85 185.18 14.18 46662 47.6610 167.81 186.12 13.51 46663 47.6620 167.30 186.98 13.51 46664 47.6630 168.87 187.77 13.55 46665 47.6640 175.27 188.48 13.78 46666 47.6650 177.57 189.08 13.91 46667 47.6660 162.94 189.58 13.37 46668 47.6670 175.89 189.95 13.86 46669 47.6680 193.08 190.18 14.49 46670 47.6690 204.27 190.29 14.86 46671 47.6700 201.47 190.25 14.85 46672 47.6710 182.53 190.07 14.09 46673 47.6720 160.36 189.74 13.16 46674 47.6730 179.72 189.29 13.95 46675 47.6740 163.88 188.70 13.34 46676 47.6750 162.28 187.99 13.21 46677 47.6760 187.99 187.18 14.33 46678 47.6770 185.43 186.26 14.20 46679 47.6780 162.30 185.25 13.28 46680 47.6790 160.32 184.18 13.20 46681 47.6800 164.04 183.04 13.32 46682 47.6810 146.03 181.85 12.57 46683 47.6820 161.23 180.64 13.20 46684 47.6830 170.26 179.39 13.51 46685 47.6840 161.61 178.13 13.22 46686 47.6850 154.78 176.87 12.93 46687 47.6860 155.58 175.62 12.97 46688 47.6870 172.80 174.37 13.66 46689 47.6880 161.63 173.15 13.20 46690 47.6890 180.66 171.95 13.97 46691 47.6900 175.22 170.78 13.74 46692 47.6910 151.38 169.67 12.72 46693 47.6920 143.00 168.56 12.38 46694 47.6930 154.30 167.52 12.98 46695 47.6940 164.47 166.49 13.47 46696 47.6950 164.96 165.50 13.37 46697 47.6960 150.78 164.54 12.73 46698 47.6970 147.64 163.62 12.65 46699 47.6980 148.60 162.74 12.70 46700 47.6990 138.55 161.90 12.26 46701 47.7000 154.38 161.10 12.88 46702 47.7010 154.23 160.32 12.86 46703 47.7020 128.64 159.59 11.84 46704 47.7030 145.95 158.88 12.60 46705 47.7040 145.46 158.20 12.54 46706 47.7050 149.20 157.55 12.81 46707 47.7060 157.90 156.94 13.14 46708 47.7070 161.35 156.35 13.24 46709 47.7080 165.79 155.78 13.40 46710 47.7090 142.31 155.24 12.46 46711 47.7100 143.14 154.72 12.43 46712 47.7110 135.07 154.23 12.06 46713 47.7120 136.83 153.75 12.13 46714 47.7130 131.36 153.30 11.86 46715 47.7140 159.27 152.86 13.16 46716 47.7150 153.30 152.45 12.95 46717 47.7160 144.61 152.06 12.53 46718 47.7170 154.91 151.68 12.94 46719 47.7180 153.59 151.32 12.96 46720 47.7190 141.40 150.98 12.44 46721 47.7200 149.67 150.66 12.75 46722 47.7210 134.30 150.35 12.05 46723 47.7220 133.90 150.07 12.02 46724 47.7230 171.22 149.79 13.69 46725 47.7240 149.84 149.54 12.75 46726 47.7250 129.51 149.30 11.80 46727 47.7260 147.89 149.07 12.62 46728 47.7270 131.59 148.86 11.96 46729 47.7280 143.42 148.67 12.48 46730 47.7290 145.33 148.49 12.50 46731 47.7300 148.12 148.32 12.70 46732 47.7310 145.11 148.17 12.57 46733 47.7320 151.38 148.03 12.78 46734 47.7330 148.93 147.90 12.73 46735 47.7340 134.23 147.79 12.04 46736 47.7350 138.38 147.69 12.30 46737 47.7360 153.94 147.60 12.98 46738 47.7370 152.81 147.53 12.95 46739 47.7380 148.87 147.47 12.76 46740 47.7390 133.89 147.41 12.14 46741 47.7400 154.73 147.37 13.03 46742 47.7410 154.28 147.34 12.94 46743 47.7420 171.43 147.32 13.59 46744 47.7430 145.12 147.31 12.51 46745 47.7440 155.27 147.31 12.92 46746 47.7450 170.35 147.32 13.58 46747 47.7460 149.92 147.33 12.77 46748 47.7470 151.67 147.30 12.84 46749 47.7480 155.50 147.33 12.98 46750 47.7490 153.60 147.36 12.85 46751 47.7500 163.39 147.39 13.23 46752 47.7510 131.04 147.43 11.84 46753 47.7520 134.82 147.47 12.02 46754 47.7530 132.92 147.50 11.97 46755 47.7540 137.87 147.54 12.28 46756 47.7550 156.26 147.57 13.03 46757 47.7560 147.09 147.60 12.62 46758 47.7570 153.28 147.63 12.88 46759 47.7580 132.50 147.65 11.95 46760 47.7590 148.72 147.66 12.70 46761 47.7600 137.76 147.66 12.31 46762 47.7610 137.92 147.65 12.27 46763 47.7620 165.26 147.64 13.39 46764 47.7630 155.21 147.61 12.96 46765 47.7640 136.54 147.57 12.22 46766 47.7650 137.10 147.52 12.18 46767 47.7660 140.62 147.46 12.32 46768 47.7670 138.18 147.40 12.23 46769 47.7680 143.23 147.32 12.44 46770 47.7690 147.26 147.23 12.64 46771 47.7700 141.13 147.13 12.33 46772 47.7710 156.51 147.02 12.98 46773 47.7720 138.41 146.91 12.28 46774 47.7730 153.94 146.79 12.94 46775 47.7740 144.91 146.66 12.56 46776 47.7750 138.97 146.53 12.35 46777 47.7760 159.52 146.39 13.17 46778 47.7770 148.91 146.25 12.74 46779 47.7780 153.64 146.11 12.95 46780 47.7790 155.11 145.97 13.08 46781 47.7800 146.12 145.83 12.57 46782 47.7810 152.93 145.69 12.83 46783 47.7820 160.32 145.55 13.19 46784 47.7830 137.74 145.41 12.20 46785 47.7840 143.14 145.28 12.42 46786 47.7850 160.17 145.15 13.20 46787 47.7860 138.88 145.02 12.33 46788 47.7870 118.59 144.90 11.40 46789 47.7880 128.51 144.78 11.88 46790 47.7890 130.83 144.66 11.97 46791 47.7900 137.62 144.56 12.24 46792 47.7910 139.73 144.46 12.33 46793 47.7920 149.83 144.36 12.73 46794 47.7930 160.65 144.27 13.25 46795 47.7940 154.39 144.19 12.96 46796 47.7950 144.13 144.12 12.51 46797 47.7960 132.19 144.05 12.02 46798 47.7970 150.87 143.99 12.84 46799 47.7980 145.44 143.94 12.58 46800 47.7990 135.74 143.90 12.21 46801 47.8000 140.42 143.86 12.41 46802 47.8010 142.93 143.84 12.47 46803 47.8020 139.54 143.82 12.36 46804 47.8030 141.52 143.80 12.48 46805 47.8040 149.03 143.80 12.76 46806 47.8050 163.98 143.80 13.32 46807 47.8060 146.60 143.82 12.56 46808 47.8070 144.54 143.84 12.53 46809 47.8080 145.54 143.87 12.54 46810 47.8090 154.65 143.91 12.90 46811 47.8100 125.61 143.96 11.69 46812 47.8110 137.09 144.02 12.22 46813 47.8120 163.66 144.08 13.33 46814 47.8130 161.04 144.16 13.21 46815 47.8140 152.96 144.24 12.97 46816 47.8150 138.92 144.34 12.34 46817 47.8160 155.01 144.44 12.97 46818 47.8170 141.08 144.56 12.32 46819 47.8180 145.42 144.68 12.51 46820 47.8190 125.60 144.82 11.64 46821 47.8200 129.07 144.97 11.85 46822 47.8210 144.76 145.12 12.57 46823 47.8220 128.50 145.29 11.81 46824 47.8230 156.25 145.47 12.96 46825 47.8240 163.19 145.67 13.27 46826 47.8250 154.70 145.87 13.04 46827 47.8260 150.22 146.09 12.80 46828 47.8270 136.91 146.32 12.19 46829 47.8280 133.45 146.57 12.02 46830 47.8290 148.75 146.82 12.66 46831 47.8300 148.17 147.10 12.59 46832 47.8310 159.29 147.39 13.23 46833 47.8320 151.02 147.69 12.85 46834 47.8330 150.48 148.01 12.80 46835 47.8340 155.55 148.34 13.04 46836 47.8350 156.52 148.69 13.06 46837 47.8360 155.59 149.06 12.98 46838 47.8370 140.57 149.44 12.37 46839 47.8380 145.38 149.84 12.57 46840 47.8390 143.13 150.26 12.40 46841 47.8400 170.22 150.70 13.59 46842 47.8410 171.99 151.15 13.71 46843 47.8420 159.19 151.62 13.22 46844 47.8430 139.64 152.11 12.41 46845 47.8440 142.00 152.62 12.42 46846 47.8450 153.09 153.14 12.96 46847 47.8460 167.16 153.67 13.54 46848 47.8470 142.26 154.30 12.49 46849 47.8480 151.40 154.86 12.88 46850 47.8490 170.33 155.44 13.59 46851 47.8500 177.95 156.03 13.90 46852 47.8510 189.01 156.63 14.36 46853 47.8520 148.04 157.24 12.67 46854 47.8530 148.46 157.85 12.69 46855 47.8540 163.73 158.46 13.33 46856 47.8550 168.49 159.07 13.55 46857 47.8560 176.24 159.67 13.83 46858 47.8570 146.94 160.27 12.62 46859 47.8580 143.80 160.85 12.47 46860 47.8590 148.86 161.41 12.69 46861 47.8600 184.17 161.95 14.17 46862 47.8610 178.44 162.46 13.98 46863 47.8620 176.30 162.95 13.86 46864 47.8630 170.67 163.39 13.63 46865 47.8640 177.14 163.79 13.90 46866 47.8650 182.67 164.15 14.14 46867 47.8660 175.40 164.46 13.80 46868 47.8670 165.68 164.72 13.44 46869 47.8680 165.38 164.92 13.41 46870 47.8690 165.29 165.07 13.42 46871 47.8700 162.78 165.16 13.29 46872 47.8710 143.98 165.19 12.58 46873 47.8720 158.38 165.16 13.21 46874 47.8730 152.43 165.07 12.89 46875 47.8740 156.18 164.94 13.00 46876 47.8750 176.38 164.75 13.86 46877 47.8760 173.41 164.57 13.68 46878 47.8770 178.06 164.27 13.86 46879 47.8780 170.05 163.95 13.59 46880 47.8790 175.49 163.59 13.73 46881 47.8800 148.80 163.20 12.66 46882 47.8810 145.08 162.78 12.55 46883 47.8820 163.67 162.34 13.33 46884 47.8830 175.73 161.88 13.83 46885 47.8840 162.92 161.42 13.31 46886 47.8850 163.98 160.94 13.37 46887 47.8860 177.89 160.46 13.94 46888 47.8870 171.14 159.98 13.68 46889 47.8880 152.92 159.51 12.84 46890 47.8890 146.33 159.04 12.56 46891 47.8900 176.66 158.58 13.83 46892 47.8910 161.70 158.13 13.23 46893 47.8920 160.19 157.69 13.16 46894 47.8930 159.16 157.26 13.15 46895 47.8940 154.08 156.85 12.89 46896 47.8950 158.16 156.45 13.13 46897 47.8960 166.03 156.07 13.45 46898 47.8970 146.31 155.70 12.73 46899 47.8980 157.38 155.34 13.13 46900 47.8990 167.34 154.99 13.49 46901 47.9000 150.66 154.66 12.81 46902 47.9010 156.76 154.33 12.99 46903 47.9020 140.64 154.01 12.32 46904 47.9030 154.14 153.69 12.96 46905 47.9040 166.13 153.38 13.49 46906 47.9050 169.48 153.07 13.58 46907 47.9060 169.36 152.76 13.56 46908 47.9070 150.36 152.44 12.75 46909 47.9080 157.84 152.12 13.04 46910 47.9090 153.94 151.80 12.88 46911 47.9100 168.88 151.47 13.53 46912 47.9110 159.62 151.13 13.12 46913 47.9120 134.61 150.79 12.08 46914 47.9130 142.64 150.44 12.45 46915 47.9140 152.35 150.08 12.87 46916 47.9150 150.03 149.72 12.70 46917 47.9160 146.83 149.35 12.55 46918 47.9170 166.28 148.98 13.40 46919 47.9180 178.67 148.60 13.93 46920 47.9190 143.35 148.22 12.44 46921 47.9200 148.77 147.84 12.73 46922 47.9210 161.14 147.46 13.23 46923 47.9220 143.00 147.09 12.49 46924 47.9230 134.55 146.72 12.08 46925 47.9240 158.16 146.35 13.08 46926 47.9250 139.78 145.99 12.30 46927 47.9260 160.44 145.63 13.21 46928 47.9270 133.92 145.29 12.07 46929 47.9280 135.97 144.94 12.17 46930 47.9290 155.47 144.61 13.06 46931 47.9300 144.93 144.29 12.59 46932 47.9310 137.66 143.98 12.26 46933 47.9320 146.25 143.65 12.53 46934 47.9330 128.71 143.35 11.78 46935 47.9340 132.31 143.07 11.98 46936 47.9350 131.59 142.79 12.01 46937 47.9360 127.20 142.52 11.79 46938 47.9370 121.98 142.27 11.55 46939 47.9380 128.22 142.02 11.82 46940 47.9390 140.00 141.78 12.32 46941 47.9400 134.01 141.55 12.12 46942 47.9410 144.23 141.33 12.44 46943 47.9420 160.32 141.12 13.16 46944 47.9430 158.62 140.91 13.13 46945 47.9440 147.43 140.71 12.56 46946 47.9450 135.21 140.52 12.10 46947 47.9460 131.06 140.34 11.92 46948 47.9470 147.12 140.17 12.60 46949 47.9480 129.39 140.00 11.84 46950 47.9490 136.00 139.83 12.14 46951 47.9500 141.04 139.68 12.37 46952 47.9510 135.05 139.53 12.07 46953 47.9520 144.79 139.38 12.52 46954 47.9530 131.16 139.24 11.98 46955 47.9540 148.95 139.11 12.75 46956 47.9550 137.82 138.97 12.24 46957 47.9560 122.31 138.85 11.52 46958 47.9570 129.54 138.73 11.88 46959 47.9580 128.80 138.61 11.82 46960 47.9590 135.44 138.50 12.13 46961 47.9600 135.00 138.39 12.10 46962 47.9610 141.71 138.29 12.40 46963 47.9620 153.45 138.19 12.87 46964 47.9630 148.05 138.09 12.68 46965 47.9640 129.41 138.00 11.83 46966 47.9650 145.88 137.91 12.61 46967 47.9660 150.40 137.82 12.74 46968 47.9670 136.84 137.74 12.19 46969 47.9680 143.70 137.66 12.49 46970 47.9690 129.71 137.58 11.89 46971 47.9700 148.98 137.50 12.70 46972 47.9710 139.19 137.43 12.30 46973 47.9720 147.62 137.36 12.66 46974 47.9730 145.31 137.29 12.58 46975 47.9740 139.70 137.23 12.32 46976 47.9750 125.58 137.16 11.76 46977 47.9760 136.38 137.10 12.22 46978 47.9770 151.47 137.04 12.92 46979 47.9780 142.56 136.99 12.51 46980 47.9790 140.69 136.93 12.36 46981 47.9800 147.67 136.88 12.66 46982 47.9810 152.40 136.83 12.90 46983 47.9820 147.42 136.78 12.57 46984 47.9830 125.84 136.74 11.64 46985 47.9840 138.99 136.69 12.29 46986 47.9850 145.63 136.65 12.58 46987 47.9860 145.44 136.60 12.62 46988 47.9870 139.34 136.57 12.29 46989 47.9880 134.52 136.53 12.05 46990 47.9890 145.62 136.49 12.55 46991 47.9900 142.06 136.46 12.48 46992 47.9910 142.14 136.42 12.39 46993 47.9920 153.75 136.39 12.90 46994 47.9930 145.22 136.36 12.60 46995 47.9940 143.50 136.33 12.49 46996 47.9950 140.15 136.30 12.42 46997 47.9960 132.53 136.28 12.06 46998 47.9970 138.77 136.25 12.31 46999 47.9980 167.12 136.23 14.61 47000 47.9990 151.08 136.21 14.00 47001 48.0000 141.36 136.19 13.48 47002 48.0010 145.67 136.17 13.61 47003 48.0020 124.71 136.15 12.56 47004 48.0030 130.94 136.14 12.98 47005 48.0040 139.27 136.12 13.39 47006 48.0050 150.96 136.11 13.99 47007 48.0060 140.55 136.10 13.48 47008 48.0070 120.87 136.09 12.41 47009 48.0080 136.91 136.08 13.31 47010 48.0090 148.95 136.08 13.81 47011 48.0100 145.93 136.07 13.58 47012 48.0110 148.05 136.07 13.74 47013 48.0120 130.44 136.07 12.88 47014 48.0130 125.82 136.07 12.59 47015 48.0140 142.00 136.11 13.52 47016 48.0150 126.38 136.12 12.72 47017 48.0160 144.82 136.12 13.55 47018 48.0170 146.63 136.13 13.65 47019 48.0180 140.31 136.14 13.41 47020 48.0190 132.97 136.16 13.01 47021 48.0200 137.01 136.17 13.18 47022 48.0210 139.24 136.19 13.36 47023 48.0220 133.32 136.21 13.10 47024 48.0230 144.81 136.23 13.61 47025 48.0240 133.03 136.25 13.00 47026 48.0250 135.77 136.27 13.12 47027 48.0260 117.56 136.30 12.21 47028 48.0270 142.05 136.33 13.48 47029 48.0280 146.98 136.36 13.70 47030 48.0290 143.85 136.39 13.59 47031 48.0300 144.28 136.41 13.58 47032 48.0310 150.84 136.45 13.84 47033 48.0320 134.73 136.48 13.14 47034 48.0330 137.76 136.52 13.26 47035 48.0340 134.73 136.56 12.97 47036 48.0350 133.60 136.60 13.09 47037 48.0360 153.20 136.64 14.05 47038 48.0370 134.86 136.68 13.06 47039 48.0380 136.39 136.72 13.18 47040 48.0390 142.84 136.76 13.53 47041 48.0400 152.37 136.80 14.03 47042 48.0410 163.33 136.83 14.52 47043 48.0420 138.26 136.87 13.22 47044 48.0430 150.57 136.89 13.81 47045 48.0440 154.47 136.92 14.08 47046 48.0450 145.11 136.94 13.65 47047 48.0460 143.43 136.96 13.56 47048 48.0470 143.42 136.97 13.56 47049 48.0480 141.33 137.03 13.45 47050 48.0490 142.38 137.03 13.48 47051 48.0500 160.03 137.02 14.22 47052 48.0510 147.06 137.01 13.62 47053 48.0520 150.37 136.99 13.85 47054 48.0530 138.20 136.97 13.35 47055 48.0540 131.75 136.94 12.99 47056 48.0550 144.33 136.91 13.51 47057 48.0560 130.71 136.87 12.84 47058 48.0570 133.78 136.83 13.07 47059 48.0580 133.32 136.78 13.10 47060 48.0590 137.67 136.73 13.22 47061 48.0600 136.29 136.68 13.20 47062 48.0610 134.14 136.62 13.15 47063 48.0620 127.49 136.57 12.72 47064 48.0630 128.49 136.51 12.80 47065 48.0640 143.03 136.45 13.58 47066 48.0650 143.51 136.39 13.54 47067 48.0660 139.29 136.33 13.27 47068 48.0670 152.27 136.27 13.90 47069 48.0680 138.31 136.21 13.27 47070 48.0690 149.02 136.15 13.78 47071 48.0700 145.01 136.10 13.60 47072 48.0710 133.49 136.04 12.97 47073 48.0720 122.32 135.99 12.46 47074 48.0730 129.80 135.93 12.86 47075 48.0740 126.63 135.88 12.64 47076 48.0750 134.14 135.84 13.08 47077 48.0760 132.49 135.79 12.99 47078 48.0770 130.05 135.74 12.85 47079 48.0780 141.36 135.70 13.46 47080 48.0790 133.21 135.66 13.07 47081 48.0800 139.34 135.62 13.42 47082 48.0810 143.76 135.58 13.52 47083 48.0820 123.97 135.55 12.51 47084 48.0830 137.25 135.51 13.26 47085 48.0840 122.76 135.48 12.55 47086 48.0850 129.91 135.45 12.89 47087 48.0860 128.59 135.42 12.83 47088 48.0870 137.68 135.40 13.28 47089 48.0880 135.05 135.37 13.12 47090 48.0890 130.00 135.35 12.87 47091 48.0900 128.68 135.32 12.79 47092 48.0910 125.26 135.30 12.60 47093 48.0920 141.10 135.28 13.35 47094 48.0930 139.10 135.27 13.27 47095 48.0940 151.23 135.25 13.96 47096 48.0950 138.71 135.23 13.34 47097 48.0960 135.29 135.22 13.14 47098 48.0970 142.49 135.21 13.45 47099 48.0980 133.78 135.19 13.01 47100 48.0990 132.48 135.18 13.00 47101 48.1000 126.31 135.17 12.78 47102 48.1010 127.91 135.16 12.82 47103 48.1020 127.12 135.16 12.76 47104 48.1030 138.33 135.15 13.32 47105 48.1040 134.03 135.14 13.09 47106 48.1050 136.11 135.14 13.16 47107 48.1060 131.35 135.14 12.92 47108 48.1070 138.89 135.13 13.36 47109 48.1080 142.66 135.13 13.58 47110 48.1090 140.01 135.13 13.36 47111 48.1100 131.29 135.13 12.88 47112 48.1110 140.43 135.13 13.34 47113 48.1120 156.52 135.13 14.25 47114 48.1130 148.98 135.16 13.77 47115 48.1140 132.54 135.17 13.06 47116 48.1150 132.31 135.17 13.02 47117 48.1160 128.93 135.18 12.82 47118 48.1170 136.36 135.18 13.19 47119 48.1180 133.94 135.19 13.07 47120 48.1190 136.85 135.20 13.25 47121 48.1200 128.58 135.21 12.84 47122 48.1210 137.01 135.22 13.24 47123 48.1220 125.15 135.23 12.69 47124 48.1230 138.84 135.24 13.33 47125 48.1240 127.26 135.26 12.73 47126 48.1250 132.73 135.27 13.03 47127 48.1260 130.75 135.29 12.88 47128 48.1270 134.34 135.30 13.04 47129 48.1280 130.08 135.32 12.88 47130 48.1290 138.36 135.34 13.24 47131 48.1300 141.87 135.36 13.35 47132 48.1310 154.59 135.38 13.96 47133 48.1320 145.75 135.40 13.67 47134 48.1330 124.20 135.42 12.68 47135 48.1340 125.24 135.45 12.70 47136 48.1350 134.87 135.47 13.14 47137 48.1360 122.42 135.50 12.52 47138 48.1370 139.07 135.53 13.36 47139 48.1380 145.77 135.55 13.63 47140 48.1390 133.22 135.59 13.00 47141 48.1400 125.96 135.62 12.71 47142 48.1410 138.10 135.65 13.21 47143 48.1420 160.64 135.69 14.14 47144 48.1430 143.25 135.72 13.57 47145 48.1440 130.60 135.76 12.93 47146 48.1450 126.71 135.80 12.71 47147 48.1460 140.82 135.84 13.37 47148 48.1470 148.12 135.88 13.78 47149 48.1480 141.47 135.93 13.44 47150 48.1490 135.80 135.98 13.23 47151 48.1500 131.50 136.03 13.00 47152 48.1510 133.23 136.08 13.09 47153 48.1520 140.03 136.13 13.41 47154 48.1530 129.16 136.19 12.80 47155 48.1540 127.53 136.25 12.78 47156 48.1550 129.25 136.31 12.82 47157 48.1560 146.37 136.37 13.64 47158 48.1570 149.03 136.44 13.85 47159 48.1580 126.31 136.51 12.73 47160 48.1590 125.25 136.58 12.61 47161 48.1600 122.03 136.65 12.46 47162 48.1610 131.55 136.73 12.95 47163 48.1620 125.50 136.81 12.62 47164 48.1630 130.67 136.90 12.93 47165 48.1640 133.33 136.98 13.10 47166 48.1650 130.45 137.07 12.90 47167 48.1660 134.30 137.17 13.08 47168 48.1670 117.48 137.27 12.22 47169 48.1680 121.89 137.37 12.44 47170 48.1690 134.58 137.48 13.12 47171 48.1700 132.70 137.59 13.02 47172 48.1710 124.07 137.71 12.58 47173 48.1720 124.16 137.83 12.58 47174 48.1730 137.06 137.95 13.23 47175 48.1740 145.16 138.08 13.70 47176 48.1750 142.13 138.21 13.53 47177 48.1760 146.07 138.35 13.67 47178 48.1770 133.69 138.49 13.09 47179 48.1780 131.25 138.63 12.97 47180 48.1790 131.02 138.78 12.88 47181 48.1800 133.44 138.93 13.01 47182 48.1810 148.46 139.08 13.79 47183 48.1820 138.84 139.24 13.40 47184 48.1830 141.23 139.40 13.44 47185 48.1840 126.56 139.55 12.64 47186 48.1850 118.51 139.72 12.26 47187 48.1860 140.09 139.88 13.37 47188 48.1870 141.79 140.04 13.46 47189 48.1880 146.95 140.19 13.71 47190 48.1890 146.24 140.35 13.76 47191 48.1900 140.46 140.50 13.39 47192 48.1910 132.22 140.65 12.93 47193 48.1920 138.40 140.80 13.23 47194 48.1930 126.80 140.94 12.64 47195 48.1940 147.36 141.08 13.72 47196 48.1950 134.93 141.21 13.11 47197 48.1960 158.48 141.34 14.25 47198 48.1970 159.81 141.47 14.30 47199 48.1980 150.24 141.59 13.83 47200 48.1990 139.95 141.71 13.28 47201 48.2000 127.22 141.82 12.72 47202 48.2010 137.75 141.94 13.32 47203 48.2020 138.43 142.05 13.31 47204 48.2030 144.33 142.17 13.68 47205 48.2040 142.02 142.28 13.49 47206 48.2050 155.04 142.40 14.15 47207 48.2060 147.62 142.52 13.78 47208 48.2070 139.53 142.65 13.38 47209 48.2080 130.59 142.78 12.89 47210 48.2090 139.19 142.92 13.20 47211 48.2100 141.96 143.06 13.46 47212 48.2110 142.18 143.22 13.51 47213 48.2120 140.86 143.38 13.42 47214 48.2130 139.20 143.55 13.34 47215 48.2140 148.28 143.72 13.75 47216 48.2150 144.61 143.91 13.62 47217 48.2160 132.78 144.10 12.98 47218 48.2170 147.98 144.31 13.70 47219 48.2180 153.64 144.52 13.98 47220 48.2190 142.92 144.74 13.52 47221 48.2200 142.74 144.97 13.57 47222 48.2210 131.37 145.20 12.98 47223 48.2220 142.90 145.44 13.49 47224 48.2230 133.31 145.68 13.00 47225 48.2240 132.88 145.93 12.99 47226 48.2250 138.80 146.18 13.27 47227 48.2260 157.18 146.51 14.25 47228 48.2270 151.00 146.75 13.88 47229 48.2280 164.14 147.00 14.42 47230 48.2290 134.59 147.25 13.04 47231 48.2300 136.03 147.49 13.09 47232 48.2310 147.45 147.72 13.60 47233 48.2320 159.79 147.94 14.22 47234 48.2330 141.89 148.16 13.40 47235 48.2340 152.96 148.37 13.91 47236 48.2350 152.61 148.57 13.99 47237 48.2360 128.06 148.76 12.86 47238 48.2370 127.38 148.94 12.75 47239 48.2380 154.06 149.12 14.05 47240 48.2390 146.36 149.28 13.71 47241 48.2400 161.81 149.45 14.36 47242 48.2410 163.77 149.60 14.38 47243 48.2420 156.25 149.75 14.13 47244 48.2430 147.88 149.90 13.69 47245 48.2440 141.38 150.04 13.47 47246 48.2450 146.42 150.19 13.70 47247 48.2460 165.43 150.34 14.56 47248 48.2470 159.76 150.49 14.23 47249 48.2480 168.11 150.64 14.60 47250 48.2490 160.36 150.80 14.28 47251 48.2500 142.40 150.96 13.52 47252 48.2510 154.98 151.12 14.11 47253 48.2520 141.44 151.29 13.46 47254 48.2530 155.60 151.46 14.08 47255 48.2540 144.23 151.63 13.58 47256 48.2550 143.62 151.80 13.53 47257 48.2560 161.38 151.98 14.36 47258 48.2570 143.26 152.15 13.54 47259 48.2580 147.94 152.31 13.65 47260 48.2590 153.84 152.47 14.10 47261 48.2600 148.51 152.63 13.73 47262 48.2610 145.59 152.77 13.51 47263 48.2620 152.88 152.91 14.00 47264 48.2630 164.21 153.03 14.48 47265 48.2640 156.00 153.14 14.12 47266 48.2650 138.58 153.17 13.31 47267 48.2660 145.21 153.25 13.61 47268 48.2670 144.77 153.31 13.66 47269 48.2680 151.76 153.36 13.92 47270 48.2690 148.45 153.40 13.79 47271 48.2700 154.16 153.42 14.12 47272 48.2710 157.49 153.43 14.22 47273 48.2720 152.14 153.44 13.99 47274 48.2730 159.45 153.43 14.22 47275 48.2740 169.54 153.42 14.65 47276 48.2750 150.98 153.41 13.88 47277 48.2760 146.22 153.39 13.56 47278 48.2770 157.99 153.38 14.12 47279 48.2780 155.02 153.37 14.01 47280 48.2790 146.93 153.37 13.67 47281 48.2800 146.55 153.38 13.67 47282 48.2810 160.86 153.40 14.35 47283 48.2820 168.12 153.43 14.73 47284 48.2830 136.38 153.47 13.27 47285 48.2840 143.53 153.53 13.61 47286 48.2850 150.32 153.61 13.80 47287 48.2860 149.54 153.71 13.74 47288 48.2870 167.91 153.82 14.61 47289 48.2880 154.26 153.82 14.02 47290 48.2890 144.29 153.97 13.55 47291 48.2900 158.70 154.14 14.29 47292 48.2910 137.42 154.32 13.28 47293 48.2920 141.13 154.51 13.48 47294 48.2930 152.82 154.71 13.99 47295 48.2940 148.80 154.92 13.85 47296 48.2950 161.65 155.14 14.36 47297 48.2960 151.33 155.36 13.80 47298 48.2970 138.67 155.59 13.27 47299 48.2980 167.77 155.80 14.65 47300 48.2990 152.96 156.01 13.99 47301 48.3000 160.22 156.21 14.29 47302 48.3010 138.88 156.38 13.34 47303 48.3020 143.25 156.54 13.46 47304 48.3030 163.68 156.68 14.31 47305 48.3040 150.59 156.78 13.71 47306 48.3050 165.07 156.85 14.54 47307 48.3060 164.46 156.90 14.50 47308 48.3070 163.70 156.91 14.47 47309 48.3080 157.59 156.88 14.25 47310 48.3090 163.59 156.82 14.40 47311 48.3100 153.35 156.73 13.89 47312 48.3110 145.86 156.60 13.56 47313 48.3120 132.73 156.45 13.01 47314 48.3130 151.57 156.27 13.91 47315 48.3140 154.94 156.07 14.01 47316 48.3150 159.37 155.85 14.17 47317 48.3160 147.61 155.62 13.58 47318 48.3170 152.06 155.38 13.73 47319 48.3180 168.17 155.13 14.67 47320 48.3190 172.10 154.88 14.84 47321 48.3200 164.71 154.63 14.60 47322 48.3210 163.36 154.40 14.53 47323 48.3220 160.43 154.17 14.39 47324 48.3230 148.40 153.95 13.74 47325 48.3240 144.68 153.75 13.64 47326 48.3250 150.46 153.57 13.87 47327 48.3260 145.92 153.40 13.71 47328 48.3270 161.89 153.26 14.41 47329 48.3280 155.75 153.14 14.04 47330 48.3290 143.42 153.04 13.53 47331 48.3300 151.91 152.96 14.01 47332 48.3310 148.30 152.91 13.73 47333 48.3320 168.71 152.88 14.62 47334 48.3330 172.51 152.88 14.83 47335 48.3340 175.66 152.90 14.96 47336 48.3350 164.34 152.95 14.53 47337 48.3360 153.41 153.01 13.83 47338 48.3370 160.80 153.10 14.16 47339 48.3380 148.00 153.20 13.66 47340 48.3390 151.01 153.32 13.88 47341 48.3400 153.60 153.46 14.02 47342 48.3410 142.58 153.60 13.51 47343 48.3420 146.84 153.76 13.68 47344 48.3430 161.75 153.93 14.44 47345 48.3440 157.39 154.10 14.17 47346 48.3450 150.28 154.27 13.82 47347 48.3460 139.20 154.43 13.31 47348 48.3470 151.99 154.59 13.97 47349 48.3480 153.70 154.74 14.08 47350 48.3490 140.84 154.87 13.41 47351 48.3500 142.73 154.98 13.48 47352 48.3510 152.74 155.07 14.00 47353 48.3520 163.23 155.13 14.38 47354 48.3530 141.10 155.16 13.31 47355 48.3540 158.09 155.16 14.21 47356 48.3550 163.84 155.12 14.44 47357 48.3560 159.21 155.05 14.18 47358 48.3570 151.87 154.94 13.89 47359 48.3580 153.67 154.79 14.05 47360 48.3590 149.57 154.60 13.77 47361 48.3600 147.44 154.38 13.62 47362 48.3610 156.36 154.12 14.19 47363 48.3620 168.57 153.84 14.71 47364 48.3630 154.04 153.52 14.04 47365 48.3640 141.04 153.18 13.43 47366 48.3650 130.34 152.81 12.94 47367 48.3660 145.46 152.42 13.62 47368 48.3670 165.86 152.02 14.46 47369 48.3680 157.29 151.60 14.13 47370 48.3690 127.79 151.18 12.72 47371 48.3700 128.38 150.74 12.77 47372 48.3710 138.63 150.31 13.33 47373 48.3720 159.69 149.87 14.27 47374 48.3730 148.35 149.43 13.71 47375 48.3740 148.00 149.00 13.77 47376 48.3750 153.35 148.58 14.01 47377 48.3760 138.74 148.16 13.31 47378 48.3770 145.34 147.76 13.62 47379 48.3780 151.08 147.36 13.87 47380 48.3790 140.74 146.97 13.43 47381 48.3800 146.48 146.59 13.66 47382 48.3810 148.35 146.23 13.78 47383 48.3820 158.72 145.88 14.20 47384 48.3830 151.52 145.54 13.87 47385 48.3840 147.44 145.22 13.66 47386 48.3850 138.78 144.91 13.27 47387 48.3860 144.37 144.61 13.46 47388 48.3870 148.26 144.32 13.73 47389 48.3880 150.31 144.05 13.82 47390 48.3890 143.42 143.79 13.50 47391 48.3900 157.50 143.54 14.09 47392 48.3910 146.29 143.31 13.57 47393 48.3920 140.20 143.08 13.32 47394 48.3930 117.87 142.87 12.20 47395 48.3940 134.72 142.69 13.05 47396 48.3950 174.88 142.50 14.93 47397 48.3960 151.96 142.32 13.95 47398 48.3970 131.92 142.15 12.90 47399 48.3980 140.59 141.99 13.38 47400 48.3990 149.87 141.84 13.88 47401 48.4000 153.17 141.69 13.93 47402 48.4010 155.51 141.56 13.97 47403 48.4020 140.67 141.43 13.42 47404 48.4030 128.85 141.32 12.81 47405 48.4040 130.16 141.21 12.80 47406 48.4050 121.52 141.11 12.39 47407 48.4060 124.87 141.01 12.52 47408 48.4070 140.15 140.93 13.41 47409 48.4080 154.92 140.85 14.15 47410 48.4090 125.25 140.77 12.66 47411 48.4100 126.26 140.71 12.59 47412 48.4110 142.66 140.65 13.47 47413 48.4120 144.56 140.59 13.50 47414 48.4130 128.97 140.54 12.82 47415 48.4140 124.60 140.50 12.59 47416 48.4150 157.55 140.46 14.18 47417 48.4160 164.81 140.43 14.43 47418 48.4170 128.74 140.41 12.86 47419 48.4180 129.37 140.39 12.90 47420 48.4190 140.98 140.37 13.46 47421 48.4200 145.97 140.37 13.63 47422 48.4210 152.35 140.36 13.97 47423 48.4220 142.40 140.36 13.46 47424 48.4230 147.79 140.37 13.74 47425 48.4240 140.95 140.38 13.49 47426 48.4250 142.25 140.39 13.41 47427 48.4260 129.46 140.41 12.69 47428 48.4270 142.29 140.44 13.48 47429 48.4280 138.63 140.47 13.34 47430 48.4290 127.84 140.51 12.76 47431 48.4300 140.37 140.55 13.35 47432 48.4310 141.65 140.60 13.48 47433 48.4320 145.55 140.65 13.66 47434 48.4330 131.45 140.70 12.96 47435 48.4340 107.56 140.76 11.73 47436 48.4350 133.15 140.83 12.97 47437 48.4360 152.87 140.90 13.90 47438 48.4370 143.05 140.98 13.47 47439 48.4380 161.50 141.06 14.31 47440 48.4390 162.01 141.14 14.34 47441 48.4400 123.82 141.24 12.53 47442 48.4410 126.87 141.33 12.76 47443 48.4420 135.24 141.43 13.24 47444 48.4430 136.08 141.54 13.21 47445 48.4440 147.56 141.65 13.77 47446 48.4450 144.59 141.77 13.56 47447 48.4460 131.91 141.90 12.96 47448 48.4470 131.74 142.02 12.98 47449 48.4480 130.03 142.16 12.79 47450 48.4490 164.41 142.30 14.54 47451 48.4500 151.63 142.45 13.91 47452 48.4510 145.84 142.61 13.72 47453 48.4520 136.14 142.77 13.17 47454 48.4530 135.79 142.94 13.07 47455 48.4540 123.80 143.11 12.52 47456 48.4550 140.92 143.30 13.37 47457 48.4560 149.92 143.49 13.79 47458 48.4570 140.76 143.69 13.44 47459 48.4580 155.08 143.90 14.12 47460 48.4590 145.98 144.12 13.63 47461 48.4600 143.81 144.35 13.57 47462 48.4610 152.30 144.59 13.94 47463 48.4620 148.65 144.84 13.75 47464 48.4630 144.23 145.10 13.57 47465 48.4640 152.93 145.37 14.00 47466 48.4650 140.07 145.65 13.36 47467 48.4660 138.51 145.95 13.32 47468 48.4670 148.36 146.26 13.79 47469 48.4680 151.16 146.58 13.80 47470 48.4690 150.60 146.92 13.87 47471 48.4700 151.92 147.27 13.99 47472 48.4710 133.83 147.64 13.10 47473 48.4720 146.37 148.02 13.66 47474 48.4730 125.30 148.43 12.61 47475 48.4740 142.86 148.84 13.35 47476 48.4750 150.69 149.28 13.80 47477 48.4760 140.19 149.74 13.47 47478 48.4770 147.86 150.21 13.80 47479 48.4780 157.05 150.71 14.18 47480 48.4790 151.40 151.23 13.86 47481 48.4800 133.54 151.77 13.06 47482 48.4810 146.88 152.33 13.71 47483 48.4820 148.39 152.92 13.78 47484 48.4830 156.04 153.54 14.12 47485 48.4840 155.56 154.18 14.13 47486 48.4850 172.42 154.85 14.85 47487 48.4860 158.55 155.54 14.17 47488 48.4870 151.20 156.27 13.88 47489 48.4880 150.71 157.03 13.82 47490 48.4890 151.57 157.82 13.90 47491 48.4900 160.88 158.65 14.34 47492 48.4910 162.28 159.50 14.37 47493 48.4920 179.25 160.39 15.14 47494 48.4930 176.50 161.32 14.95 47495 48.4940 160.77 162.28 14.30 47496 48.4950 164.55 163.27 14.56 47497 48.4960 148.09 164.31 13.76 47498 48.4970 155.06 165.38 14.12 47499 48.4980 177.12 166.49 15.07 47500 48.4990 176.52 167.63 14.94 47501 48.5000 175.69 168.80 15.01 47502 48.5010 164.44 170.02 14.53 47503 48.5020 158.03 171.26 14.26 47504 48.5030 147.98 172.53 13.64 47505 48.5040 149.23 173.83 13.66 47506 48.5050 176.31 175.15 15.02 47507 48.5060 184.13 176.49 15.35 47508 48.5070 159.15 177.85 14.26 47509 48.5080 187.39 179.21 15.47 47510 48.5090 180.91 180.57 15.26 47511 48.5100 200.12 181.94 16.08 47512 48.5110 207.37 183.29 16.34 47513 48.5120 188.03 184.62 15.55 47514 48.5130 191.41 185.92 15.63 47515 48.5140 217.82 187.18 16.64 47516 48.5150 205.68 188.39 16.19 47517 48.5160 192.46 189.54 15.66 47518 48.5170 186.04 190.63 15.47 47519 48.5180 199.24 191.65 15.99 47520 48.5190 198.95 192.57 15.98 47521 48.5200 179.67 193.41 15.26 47522 48.5210 189.97 194.15 15.57 47523 48.5220 222.28 194.79 16.86 47524 48.5230 212.91 195.33 16.52 47525 48.5240 194.44 195.76 15.76 47526 48.5250 216.10 196.08 16.62 47527 48.5260 195.00 196.30 15.80 47528 48.5270 187.50 196.41 15.53 47529 48.5280 210.68 196.42 16.44 47530 48.5290 199.23 196.33 16.01 47531 48.5300 186.28 196.15 15.42 47532 48.5310 191.34 195.89 15.76 47533 48.5320 193.74 195.55 15.83 47534 48.5330 197.46 195.15 15.93 47535 48.5340 203.93 194.68 16.17 47536 48.5350 202.44 194.15 16.09 47537 48.5360 186.90 193.58 15.41 47538 48.5370 198.09 192.96 15.86 47539 48.5380 188.32 192.31 15.52 47540 48.5390 166.54 191.63 14.58 47541 48.5400 189.16 190.93 15.57 47542 48.5410 198.11 190.20 15.94 47543 48.5420 188.63 189.47 15.50 47544 48.5430 207.68 188.73 16.24 47545 48.5440 197.10 187.99 15.89 47546 48.5450 195.23 187.23 15.83 47547 48.5460 188.11 186.48 15.54 47548 48.5470 181.41 185.73 15.16 47549 48.5480 196.39 184.97 15.68 47550 48.5490 187.24 184.22 15.46 47551 48.5500 194.55 183.46 15.80 47552 48.5510 172.68 182.70 14.89 47553 48.5520 153.97 181.95 13.98 47554 48.5530 184.43 181.18 15.24 47555 48.5540 217.54 180.41 16.66 47556 48.5550 173.90 179.63 14.83 47557 48.5560 158.99 178.84 14.27 47558 48.5570 184.72 178.05 15.43 47559 48.5580 176.44 177.24 14.97 47560 48.5590 166.29 176.43 14.53 47561 48.5600 160.67 175.60 14.26 47562 48.5610 151.19 174.76 13.98 47563 48.5620 162.93 173.92 14.49 47564 48.5630 171.29 173.07 14.79 47565 48.5640 186.96 172.22 15.46 47566 48.5650 189.65 171.36 15.54 47567 48.5660 166.13 170.49 14.51 47568 48.5670 173.53 169.63 14.90 47569 48.5680 184.20 168.78 15.33 47570 48.5690 167.75 167.93 14.63 47571 48.5700 168.14 167.10 14.61 47572 48.5710 167.02 166.27 14.63 47573 48.5720 174.22 165.45 14.80 47574 48.5730 148.96 164.65 13.68 47575 48.5740 155.86 163.87 14.11 47576 48.5750 168.04 163.11 14.74 47577 48.5760 161.87 162.37 14.43 47578 48.5770 180.34 161.66 15.19 47579 48.5780 159.07 160.96 14.18 47580 48.5790 153.85 160.29 14.00 47581 48.5800 162.98 159.64 14.50 47582 48.5810 150.99 159.03 13.88 47583 48.5820 163.31 158.43 14.42 47584 48.5830 165.66 157.84 14.52 47585 48.5840 167.60 157.30 14.63 47586 48.5850 165.01 156.79 14.49 47587 48.5860 151.46 156.31 13.89 47588 48.5870 161.19 155.85 14.35 47589 48.5880 165.99 155.42 14.62 47590 48.5890 169.16 155.01 14.73 47591 48.5900 178.09 154.63 15.01 47592 48.5910 177.37 154.28 15.07 47593 48.5920 147.40 153.95 13.73 47594 48.5930 149.77 153.65 13.84 47595 48.5940 160.67 153.37 14.37 47596 48.5950 154.89 153.12 14.12 47597 48.5960 142.66 152.89 13.52 47598 48.5970 130.88 152.68 12.99 47599 48.5980 144.74 152.50 13.62 47600 48.5990 142.99 152.35 13.45 47601 48.6000 147.26 152.21 13.71 47602 48.6010 137.72 152.10 13.26 47603 48.6020 152.77 152.01 13.99 47604 48.6030 162.40 151.95 14.42 47605 48.6040 149.28 151.91 13.80 47606 48.6050 159.13 151.90 14.25 47607 48.6060 158.50 151.91 14.25 47608 48.6070 143.42 151.94 13.57 47609 48.6080 163.35 151.99 14.39 47610 48.6090 149.88 152.07 13.73 47611 48.6100 164.60 152.18 14.52 47612 48.6110 155.13 152.30 13.98 47613 48.6120 136.42 152.46 13.19 47614 48.6130 162.55 152.63 14.43 47615 48.6140 158.60 152.84 14.27 47616 48.6150 168.08 153.07 14.67 47617 48.6160 149.14 153.32 13.91 47618 48.6170 147.53 153.60 13.81 47619 48.6180 157.17 153.90 14.19 47620 48.6190 160.13 154.22 14.32 47621 48.6200 151.48 154.57 13.88 47622 48.6210 137.06 154.95 13.25 47623 48.6220 161.51 155.35 14.36 47624 48.6230 162.78 155.76 14.35 47625 48.6240 147.26 156.21 13.65 47626 48.6250 164.26 156.66 14.51 47627 48.6260 160.04 157.14 14.22 47628 48.6270 183.77 157.63 15.21 47629 48.6280 165.03 158.13 14.59 47630 48.6290 154.01 158.64 14.03 47631 48.6300 155.28 159.16 14.13 47632 48.6310 154.08 159.68 13.98 47633 48.6320 145.33 160.19 13.55 47634 48.6330 162.10 160.70 14.36 47635 48.6340 151.41 161.19 13.86 47636 48.6350 162.49 161.66 14.33 47637 48.6360 166.15 162.12 14.50 47638 48.6370 155.41 162.54 14.09 47639 48.6380 161.17 162.92 14.43 47640 48.6390 178.22 163.26 15.12 47641 48.6400 173.12 163.56 14.84 47642 48.6410 180.17 163.81 15.15 47643 48.6420 185.58 164.01 15.40 47644 48.6430 159.09 164.15 14.29 47645 48.6440 164.31 164.24 14.50 47646 48.6450 153.82 164.27 13.99 47647 48.6460 168.06 164.25 14.64 47648 48.6470 159.21 164.18 14.26 47649 48.6480 155.47 164.06 14.07 47650 48.6490 167.63 163.90 14.59 47651 48.6500 175.44 163.69 14.94 47652 48.6510 170.06 163.46 14.77 47653 48.6520 145.02 163.19 13.61 47654 48.6530 141.54 162.91 13.28 47655 48.6540 144.75 162.61 13.52 47656 48.6550 137.83 162.30 13.23 47657 48.6560 154.97 161.98 14.02 47658 48.6570 164.39 161.67 14.50 47659 48.6580 173.66 161.37 14.90 47660 48.6590 169.34 161.08 14.71 47661 48.6600 162.80 160.80 14.34 47662 48.6610 163.88 160.54 14.44 47663 48.6620 167.42 160.31 14.70 47664 48.6630 164.11 160.11 14.51 47665 48.6640 158.70 159.93 14.31 47666 48.6650 153.68 159.78 14.03 47667 48.6660 144.24 159.67 13.57 47668 48.6670 134.98 159.59 13.11 47669 48.6680 155.83 159.54 14.09 47670 48.6690 154.31 159.53 13.96 47671 48.6700 181.31 159.56 15.16 47672 48.6710 155.70 159.62 14.10 47673 48.6720 150.69 159.72 13.89 47674 48.6730 160.13 159.86 14.30 47675 48.6740 168.83 160.03 14.65 47676 48.6750 157.30 160.24 14.08 47677 48.6760 157.00 160.48 14.13 47678 48.6770 177.54 160.74 15.02 47679 48.6780 164.84 161.04 14.44 47680 48.6790 155.78 161.36 14.02 47681 48.6800 156.89 161.70 14.12 47682 48.6810 144.35 162.06 13.50 47683 48.6820 173.55 162.44 14.84 47684 48.6830 164.40 162.82 14.46 47685 48.6840 159.73 163.22 14.32 47686 48.6850 161.07 163.61 14.33 47687 48.6860 174.30 164.00 14.87 47688 48.6870 175.62 164.37 15.02 47689 48.6880 164.11 164.73 14.43 47690 48.6890 171.31 165.06 14.79 47691 48.6900 179.60 165.36 15.07 47692 48.6910 170.71 165.62 14.77 47693 48.6920 180.93 165.82 15.18 47694 48.6930 179.76 165.99 15.18 47695 48.6940 171.25 166.09 14.86 47696 48.6950 166.87 166.13 14.64 47697 48.6960 179.15 166.11 15.10 47698 48.6970 182.47 166.02 15.32 47699 48.6980 173.91 165.87 14.93 47700 48.6990 139.30 165.64 13.31 47701 48.7000 157.31 165.35 14.20 47702 48.7010 172.39 164.99 14.82 47703 48.7020 166.23 164.57 14.55 47704 48.7030 156.70 164.10 14.20 47705 48.7040 166.25 163.57 14.58 47706 48.7050 149.88 163.00 13.91 47707 48.7060 159.71 162.38 14.36 47708 48.7070 162.74 161.74 14.46 47709 48.7080 159.22 161.07 14.26 47710 48.7090 162.32 160.37 14.41 47711 48.7100 150.66 159.66 13.75 47712 48.7110 134.32 158.94 12.99 47713 48.7120 151.77 158.21 13.84 47714 48.7130 156.05 157.49 14.10 47715 48.7140 176.32 156.76 15.04 47716 48.7150 146.71 156.05 13.72 47717 48.7160 141.29 155.35 13.38 47718 48.7170 148.68 154.66 13.75 47719 48.7180 149.75 153.99 13.85 47720 48.7190 178.76 153.32 15.16 47721 48.7200 158.52 152.69 14.20 47722 48.7210 159.56 152.07 14.29 47723 48.7220 165.41 151.47 14.53 47724 48.7230 148.12 150.90 13.77 47725 48.7240 140.60 150.34 13.47 47726 48.7250 147.16 149.81 13.75 47727 48.7260 146.86 149.30 13.74 47728 48.7270 156.16 148.81 14.13 47729 48.7280 155.80 148.34 14.08 47730 48.7290 148.16 147.89 13.75 47731 48.7300 155.82 147.46 14.03 47732 48.7310 149.06 147.05 13.74 47733 48.7320 149.59 146.67 13.80 47734 48.7330 137.94 146.30 13.23 47735 48.7340 142.25 145.95 13.41 47736 48.7350 115.72 145.61 12.13 47737 48.7360 143.25 145.30 13.53 47738 48.7370 151.36 145.00 13.92 47739 48.7380 154.93 144.71 14.10 47740 48.7390 147.14 144.45 13.71 47741 48.7400 135.75 144.19 13.17 47742 48.7410 128.76 143.95 12.82 47743 48.7420 149.44 143.73 13.79 47744 48.7430 134.51 143.52 13.06 47745 48.7440 132.11 143.32 12.97 47746 48.7450 138.82 143.13 13.30 47747 48.7460 134.66 142.96 13.08 47748 48.7470 140.56 142.80 13.42 47749 48.7480 145.09 142.65 13.62 47750 48.7490 145.76 142.51 13.68 47751 48.7500 134.51 142.38 13.16 47752 48.7510 134.77 142.26 13.08 47753 48.7520 144.14 142.16 13.52 47754 48.7530 143.04 142.06 13.50 47755 48.7540 135.07 141.98 13.07 47756 48.7550 125.06 141.90 12.63 47757 48.7560 139.55 141.83 13.32 47758 48.7570 133.18 141.77 12.95 47759 48.7580 141.28 141.72 13.35 47760 48.7590 161.81 141.68 14.39 47761 48.7600 157.01 141.65 14.16 47762 48.7610 121.04 141.63 12.36 47763 48.7620 145.04 141.62 13.60 47764 48.7630 143.69 141.61 13.59 47765 48.7640 155.98 141.62 14.13 47766 48.7650 141.52 141.63 13.50 47767 48.7660 126.37 141.65 12.69 47768 48.7670 142.59 141.68 13.48 47769 48.7680 153.61 141.72 14.04 47770 48.7690 129.40 141.77 12.83 47771 48.7700 146.22 141.83 13.70 47772 48.7710 145.23 141.89 13.70 47773 48.7720 156.06 141.97 14.18 47774 48.7730 153.44 142.06 14.09 47775 48.7740 150.66 142.15 13.90 47776 48.7750 132.86 142.26 13.00 47777 48.7760 145.09 142.37 13.65 47778 48.7770 131.30 142.50 12.88 47779 48.7780 139.47 142.63 13.30 47780 48.7790 129.22 142.78 12.86 47781 48.7800 138.33 142.94 13.29 47782 48.7810 146.69 143.11 13.62 47783 48.7820 147.24 143.29 13.65 47784 48.7830 147.56 143.48 13.68 47785 48.7840 142.53 143.69 13.60 47786 48.7850 142.29 143.90 13.55 47787 48.7860 137.16 144.14 13.14 47788 48.7870 130.33 144.38 12.98 47789 48.7880 144.49 144.64 13.64 47790 48.7890 154.34 144.92 14.03 47791 48.7900 159.94 145.21 14.25 47792 48.7910 159.93 145.52 14.28 47793 48.7920 143.05 145.84 13.51 47794 48.7930 159.22 146.19 14.24 47795 48.7940 138.40 146.55 13.29 47796 48.7950 157.68 146.93 14.21 47797 48.7960 149.40 147.33 13.80 47798 48.7970 147.05 147.74 13.65 47799 48.7980 153.56 148.18 14.06 47800 48.7990 160.11 148.65 14.36 47801 48.8000 151.41 149.13 13.99 47802 48.8010 147.30 149.64 13.78 47803 48.8020 165.42 150.17 14.57 47804 48.8030 168.90 150.74 14.74 47805 48.8040 167.96 151.32 14.68 47806 48.8050 141.82 151.94 13.45 47807 48.8060 159.71 152.58 14.28 47808 48.8070 152.08 153.25 13.96 47809 48.8080 185.64 153.96 15.37 47810 48.8090 165.36 154.69 14.57 47811 48.8100 141.89 155.45 13.50 47812 48.8110 149.17 156.25 13.80 47813 48.8120 164.43 157.08 14.50 47814 48.8130 169.83 157.94 14.72 47815 48.8140 168.37 158.84 14.69 47816 48.8150 143.96 159.76 13.52 47817 48.8160 153.19 160.72 13.88 47818 48.8170 177.08 161.71 14.94 47819 48.8180 159.96 162.74 14.31 47820 48.8190 147.62 163.78 13.74 47821 48.8200 162.36 164.86 14.39 47822 48.8210 183.39 165.96 15.31 47823 48.8220 160.29 167.07 14.35 47824 48.8230 180.45 168.21 15.27 47825 48.8240 195.19 169.36 15.87 47826 48.8250 163.52 170.51 14.41 47827 48.8260 161.43 171.66 14.33 47828 48.8270 168.66 172.81 14.69 47829 48.8280 150.39 173.93 13.83 47830 48.8290 164.24 175.04 14.42 47831 48.8300 177.73 176.11 14.99 47832 48.8310 184.10 177.13 15.24 47833 48.8320 197.20 178.11 15.80 47834 48.8330 179.15 179.01 15.11 47835 48.8340 159.91 179.84 14.28 47836 48.8350 169.56 180.59 14.70 47837 48.8360 187.49 181.24 15.49 47838 48.8370 192.12 181.79 15.60 47839 48.8380 172.22 182.23 14.80 47840 48.8390 187.09 182.55 15.44 47841 48.8400 180.42 182.74 15.13 47842 48.8410 194.21 182.81 15.71 47843 48.8420 188.66 182.76 15.56 47844 48.8430 192.30 182.57 15.70 47845 48.8440 191.77 182.27 15.65 47846 48.8450 175.09 181.85 14.98 47847 48.8460 173.30 181.31 14.89 47848 48.8470 170.97 180.67 14.79 47849 48.8480 169.80 179.93 14.77 47850 48.8490 169.83 179.11 14.72 47851 48.8500 171.27 178.21 14.75 47852 48.8510 172.91 177.25 14.90 47853 48.8520 168.72 176.22 14.70 47854 48.8530 165.21 175.15 14.53 47855 48.8540 158.37 174.04 14.19 47856 48.8550 179.85 172.90 15.05 47857 48.8560 173.80 171.74 14.83 47858 48.8570 159.08 170.57 14.21 47859 48.8580 160.41 169.39 14.38 47860 48.8590 170.19 168.22 14.77 47861 48.8600 173.32 167.05 14.90 47862 48.8610 171.13 165.90 14.81 47863 48.8620 174.01 164.76 14.92 47864 48.8630 160.01 163.65 14.16 47865 48.8640 148.41 162.55 13.69 47866 48.8650 165.57 161.48 14.45 47867 48.8660 158.12 160.44 14.19 47868 48.8670 155.61 159.43 14.06 47869 48.8680 164.20 158.45 14.53 47870 48.8690 170.36 157.50 14.74 47871 48.8700 172.07 156.57 14.82 47872 48.8710 154.05 155.68 13.97 47873 48.8720 153.82 154.82 14.02 47874 48.8730 142.70 154.00 13.44 47875 48.8740 151.15 153.21 13.86 47876 48.8750 175.92 152.44 15.02 47877 48.8760 163.51 151.71 14.42 47878 48.8770 152.98 151.00 14.02 47879 48.8780 162.25 150.32 14.42 47880 48.8790 152.51 149.67 13.98 47881 48.8800 151.46 149.05 13.95 47882 48.8810 149.49 148.45 13.78 47883 48.8820 142.73 147.88 13.43 47884 48.8830 152.84 147.33 13.92 47885 48.8840 157.91 146.80 14.19 47886 48.8850 167.67 146.30 14.66 47887 48.8860 146.72 145.82 13.77 47888 48.8870 138.17 145.35 13.37 47889 48.8880 134.61 144.91 13.11 47890 48.8890 140.08 144.49 13.35 47891 48.8900 155.85 144.09 14.07 47892 48.8910 147.47 143.70 13.65 47893 48.8920 151.97 143.33 13.86 47894 48.8930 159.32 142.97 14.22 47895 48.8940 131.03 142.64 12.85 47896 48.8950 148.05 142.31 13.74 47897 48.8960 133.58 142.00 13.12 47898 48.8970 149.68 141.71 13.86 47899 48.8980 150.39 141.43 13.92 47900 48.8990 134.68 141.16 13.13 47901 48.9000 135.92 140.90 13.19 47902 48.9010 147.14 140.66 13.67 47903 48.9020 129.54 140.42 12.85 47904 48.9030 127.85 140.20 12.67 47905 48.9040 123.62 139.99 12.48 47906 48.9050 141.46 139.79 13.39 47907 48.9060 144.24 139.60 13.50 47908 48.9070 139.69 139.41 13.27 47909 48.9080 134.95 139.24 13.07 47910 48.9090 142.65 139.07 13.48 47911 48.9100 147.24 138.92 13.74 47912 48.9110 147.61 138.77 13.76 47913 48.9120 129.11 138.63 12.85 47914 48.9130 123.87 138.50 12.49 47915 48.9140 124.24 138.37 12.60 47916 48.9150 135.04 138.25 13.18 47917 48.9160 144.67 138.13 13.61 47918 48.9170 135.71 138.03 13.13 47919 48.9180 128.17 137.92 12.76 47920 48.9190 141.43 137.83 13.37 47921 48.9200 130.03 137.73 12.78 47922 48.9210 121.83 137.65 12.34 47923 48.9220 144.28 137.56 13.49 47924 48.9230 167.57 137.48 14.75 47925 48.9240 148.71 137.38 13.76 47926 48.9250 126.34 137.30 12.65 47927 48.9260 134.34 137.23 13.05 47928 48.9270 142.47 137.16 13.53 47929 48.9280 142.08 137.09 13.53 47930 48.9290 143.11 137.03 13.61 47931 48.9300 149.36 136.96 13.89 47932 48.9310 135.26 136.90 13.12 47933 48.9320 129.68 136.84 12.80 47934 48.9330 124.97 136.78 12.71 47935 48.9340 130.90 136.72 12.95 47936 48.9350 127.56 136.66 12.77 47937 48.9360 123.89 136.60 12.63 47938 48.9370 126.44 136.54 12.55 47939 48.9380 138.41 136.49 13.25 47940 48.9390 150.70 136.43 13.86 47941 48.9400 129.60 136.38 12.88 47942 48.9410 121.08 136.32 12.40 47943 48.9420 158.68 136.26 14.23 47944 48.9430 151.20 136.21 13.88 47945 48.9440 144.34 136.15 13.57 47946 48.9450 132.86 136.09 13.01 47947 48.9460 139.14 136.03 13.32 47948 48.9470 130.30 135.97 12.89 47949 48.9480 137.98 135.89 13.27 47950 48.9490 128.13 135.82 12.75 47951 48.9500 126.15 135.76 12.67 47952 48.9510 139.99 135.68 13.40 47953 48.9520 131.22 135.61 12.91 47954 48.9530 120.43 135.54 12.39 47955 48.9540 116.39 135.46 12.14 47956 48.9550 145.71 135.39 13.56 47957 48.9560 137.33 135.31 13.17 47958 48.9570 122.52 135.23 12.46 47959 48.9580 130.92 135.15 13.00 47960 48.9590 152.94 135.06 14.02 47961 48.9600 139.32 134.98 13.40 47962 48.9610 142.49 134.90 13.49 47963 48.9620 142.31 134.82 13.63 47964 48.9630 145.03 134.74 13.60 47965 48.9640 117.24 134.66 12.23 47966 48.9650 143.10 134.58 13.56 47967 48.9660 149.37 134.51 13.87 47968 48.9670 133.87 134.44 13.13 47969 48.9680 136.61 134.37 13.15 47970 48.9690 112.70 134.30 11.94 47971 48.9700 119.65 134.24 12.41 47972 48.9710 105.69 134.18 11.60 47973 48.9720 113.41 134.12 12.03 47974 48.9730 117.31 134.07 12.22 47975 48.9740 125.50 134.01 12.64 47976 48.9750 140.43 133.97 13.42 47977 48.9760 138.02 133.93 13.22 47978 48.9770 132.99 133.89 13.03 47979 48.9780 136.42 133.85 13.20 47980 48.9790 131.55 133.82 12.98 47981 48.9800 147.84 133.80 13.81 47982 48.9810 154.42 133.78 14.01 47983 48.9820 138.16 133.76 13.19 47984 48.9830 160.24 133.74 14.26 47985 48.9840 143.04 133.74 13.53 47986 48.9850 131.50 133.73 12.94 47987 48.9860 126.06 133.73 12.65 47988 48.9870 138.61 133.73 13.30 47989 48.9880 146.69 133.74 13.76 47990 48.9890 132.35 133.75 13.05 47991 48.9900 140.45 133.77 13.49 47992 48.9910 136.29 133.79 13.20 47993 48.9920 133.78 133.81 13.02 47994 48.9930 120.47 133.84 12.35 47995 48.9940 107.61 133.88 11.65 47996 48.9950 121.92 133.91 12.52 47997 48.9960 130.77 133.96 12.96 47998 48.9970 141.58 134.00 13.45 47999 48.9980 143.92 134.05 13.45 48000 48.9990 150.23 134.11 13.88 48001 49.0000 161.23 134.17 14.33 48002 49.0010 133.80 134.23 13.04 48003 49.0020 145.73 134.30 13.57 48004 49.0030 146.23 134.37 13.63 48005 49.0040 144.82 134.45 13.60 48006 49.0050 134.13 134.53 13.14 48007 49.0060 131.41 134.61 12.93 48008 49.0070 149.01 134.70 13.80 48009 49.0080 144.64 134.79 13.59 48010 49.0090 127.87 134.88 12.84 48011 49.0100 130.15 134.97 12.86 48012 49.0110 172.82 135.07 14.86 48013 49.0120 145.79 135.16 13.66 48014 49.0130 138.39 135.26 13.40 48015 49.0140 138.50 135.37 13.28 48016 49.0150 133.04 135.47 12.95 48017 49.0160 136.25 135.57 13.13 48018 49.0170 142.15 135.68 13.43 48019 49.0180 153.16 135.79 13.98 48020 49.0190 142.26 135.90 13.46 48021 49.0200 130.04 136.01 12.87 48022 49.0210 140.15 136.09 13.38 48023 49.0220 143.11 136.21 13.56 48024 49.0230 148.84 136.35 13.80 48025 49.0240 122.13 136.47 12.54 48026 49.0250 126.71 136.59 12.70 48027 49.0260 136.51 136.73 13.24 48028 49.0270 122.32 136.86 12.51 48029 49.0280 118.67 137.00 12.29 48030 49.0290 145.95 137.15 13.62 48031 49.0300 149.02 137.30 13.85 48032 49.0310 147.69 137.47 13.72 48033 49.0320 149.71 137.64 13.82 48034 49.0330 145.85 137.81 13.67 48035 49.0340 126.91 138.00 12.68 48036 49.0350 134.02 138.19 13.01 48037 49.0360 128.81 138.39 12.84 48038 49.0370 141.31 138.60 13.41 48039 49.0380 153.19 138.81 13.91 48040 49.0390 153.95 139.03 13.97 48041 49.0400 147.03 139.25 13.71 48042 49.0410 132.43 139.48 13.05 48043 49.0420 149.38 139.71 13.87 48044 49.0430 142.13 139.94 13.42 48045 49.0440 155.98 140.18 14.03 48046 49.0450 165.39 140.40 14.56 48047 49.0460 143.19 140.63 13.51 48048 49.0470 146.29 140.85 13.66 48049 49.0480 121.33 141.05 12.47 48050 49.0490 149.74 141.25 13.80 48051 49.0500 163.74 141.43 14.40 48052 49.0510 143.51 141.59 13.43 48053 49.0520 141.25 141.73 13.35 48054 49.0530 151.94 141.85 14.01 48055 49.0540 145.48 141.94 13.63 48056 49.0550 147.89 142.01 13.64 48057 49.0560 157.78 142.05 14.20 48058 49.0570 141.17 142.06 13.44 48059 49.0580 153.59 142.04 13.96 48060 49.0590 125.96 141.99 12.69 48061 49.0600 144.55 141.90 13.61 48062 49.0610 129.91 141.79 12.85 48063 49.0620 122.58 141.65 12.50 48064 49.0630 145.18 141.48 13.55 48065 49.0640 156.00 141.29 14.07 48066 49.0650 147.42 141.07 13.71 48067 49.0660 165.57 140.83 14.56 48068 49.0670 147.32 140.58 13.74 48069 49.0680 153.56 140.30 14.08 48070 49.0690 136.37 140.02 13.21 48071 49.0700 146.32 139.73 13.69 48072 49.0710 128.65 139.42 12.82 48073 49.0720 132.96 139.12 12.98 48074 49.0730 143.87 138.80 13.50 48075 49.0740 131.93 138.49 13.05 48076 49.0750 145.90 138.18 13.70 48077 49.0760 152.85 137.87 13.99 48078 49.0770 144.03 137.56 13.51 48079 49.0780 142.20 137.26 13.45 48080 49.0790 140.72 136.96 13.44 48081 49.0800 136.59 136.67 13.22 48082 49.0810 142.54 136.38 13.43 48083 49.0820 148.03 136.11 13.71 48084 49.0830 131.30 135.84 12.91 48085 49.0840 134.57 135.58 13.09 48086 49.0850 147.51 135.33 13.80 48087 49.0860 151.31 135.08 13.96 48088 49.0870 136.73 134.85 13.14 48089 49.0880 126.60 134.62 12.65 48090 49.0890 134.57 134.40 13.13 48091 49.0900 127.62 134.19 12.84 48092 49.0910 123.03 133.99 12.60 48093 49.0920 116.04 133.79 12.18 48094 49.0930 137.84 133.61 13.27 48095 49.0940 135.86 133.43 13.12 48096 49.0950 140.63 133.25 13.41 48097 49.0960 145.89 133.09 13.76 48098 49.0970 133.69 132.93 13.09 48099 49.0980 130.37 132.78 12.98 48100 49.0990 115.98 132.63 12.10 48101 49.1000 122.78 132.49 12.39 48102 49.1010 129.86 132.35 12.86 48103 49.1020 126.52 132.22 12.64 48104 49.1030 122.38 132.10 12.40 48105 49.1040 129.26 131.98 12.75 48106 49.1050 118.50 131.87 12.32 48107 49.1060 120.41 131.76 12.38 48108 49.1070 136.16 131.65 13.16 48109 49.1080 115.99 131.55 12.18 48110 49.1090 139.91 131.45 13.36 48111 49.1100 136.80 131.36 13.15 48112 49.1110 140.32 131.27 13.36 48113 49.1120 147.68 131.18 13.77 48114 49.1130 137.99 131.10 13.28 48115 49.1140 123.93 131.02 12.56 48116 49.1150 123.06 130.95 12.50 48117 49.1160 141.83 130.87 13.46 48118 49.1170 139.88 130.80 13.41 48119 49.1180 135.24 130.73 13.18 48120 49.1190 150.55 130.67 13.86 48121 49.1200 140.11 130.61 13.31 48122 49.1210 138.34 130.55 13.24 48123 49.1220 136.12 130.49 13.11 48124 49.1230 152.01 130.44 13.92 48125 49.1240 131.41 130.38 12.94 48126 49.1250 135.91 130.33 13.20 48127 49.1260 152.79 130.28 14.01 48128 49.1270 142.02 130.24 13.53 48129 49.1280 136.76 130.19 13.25 48130 49.1290 139.02 130.15 13.27 48131 49.1300 114.24 130.11 12.00 48132 49.1310 125.41 130.07 12.66 48133 49.1320 136.28 130.04 13.14 48134 49.1330 147.95 130.00 13.77 48135 49.1340 131.78 129.97 12.95 48136 49.1350 121.22 129.94 12.40 48137 49.1360 151.52 129.90 14.00 48138 49.1370 140.34 129.88 13.42 48139 49.1380 129.81 129.85 12.89 48140 49.1390 133.36 129.82 13.10 48141 49.1400 138.54 129.80 13.44 48142 49.1410 130.61 129.78 12.98 48143 49.1420 122.24 129.76 12.48 48144 49.1430 130.27 129.74 12.82 48145 49.1440 125.44 129.72 12.64 48146 49.1450 147.11 129.71 13.65 48147 49.1460 144.31 129.69 13.57 48148 49.1470 141.45 129.68 13.38 48149 49.1480 148.51 129.67 13.86 48150 49.1490 148.97 129.66 13.86 48151 49.1500 140.90 129.65 13.48 48152 49.1510 144.60 129.65 13.67 48153 49.1520 129.84 129.64 12.89 48154 49.1530 124.39 129.64 12.57 48155 49.1540 115.99 129.64 12.15 48156 49.1550 145.73 129.64 13.63 48157 49.1560 133.49 129.64 12.98 48158 49.1570 122.93 129.64 12.47 48159 49.1580 141.21 129.65 13.43 48160 49.1590 146.16 129.65 13.67 48161 49.1600 137.41 129.66 13.25 48162 49.1610 125.31 129.67 12.59 48163 49.1620 134.04 129.68 12.99 48164 49.1630 127.38 129.70 12.75 48165 49.1640 139.23 129.71 13.32 48166 49.1650 142.19 129.73 13.46 48167 49.1660 137.15 129.75 13.30 48168 49.1670 117.05 129.77 12.23 48169 49.1680 118.69 129.80 12.28 48170 49.1690 134.11 129.82 13.16 48171 49.1700 138.70 129.92 13.32 48172 49.1710 129.37 129.95 12.79 48173 49.1720 120.73 129.98 12.38 48174 49.1730 114.10 130.01 12.04 48175 49.1740 126.01 130.05 12.76 48176 49.1750 144.02 130.08 13.62 48177 49.1760 133.98 130.12 13.06 48178 49.1770 134.69 130.16 13.17 48179 49.1780 135.63 130.20 13.09 48180 49.1790 140.57 130.24 13.36 48181 49.1800 125.48 130.28 12.72 48182 49.1810 138.99 130.33 13.38 48183 49.1820 143.11 130.37 13.53 48184 49.1830 141.92 130.41 13.51 48185 49.1840 123.11 130.46 12.51 48186 49.1850 121.35 130.50 12.41 48187 49.1860 124.41 130.54 12.59 48188 49.1870 134.56 130.58 13.05 48189 49.1880 131.77 130.62 12.90 48190 49.1890 129.35 130.66 12.86 48191 49.1900 120.89 130.69 12.45 48192 49.1910 132.86 130.72 13.07 48193 49.1920 126.63 130.77 12.65 48194 49.1930 124.52 130.79 12.62 48195 49.1940 120.37 130.81 12.43 48196 49.1950 121.26 130.82 12.45 48197 49.1960 137.01 130.83 13.22 48198 49.1970 122.10 130.84 12.49 48199 49.1980 136.62 130.84 13.20 48200 49.1990 149.22 130.76 13.75 48201 49.2000 149.03 130.75 13.71 48202 49.2010 124.22 130.73 12.50 48203 49.2020 137.25 130.71 13.31 48204 49.2030 141.13 130.68 13.46 48205 49.2040 139.71 130.64 13.29 48206 49.2050 133.57 130.60 13.03 48207 49.2060 135.92 130.56 13.07 48208 49.2070 154.07 130.51 14.10 48209 49.2080 139.87 130.46 13.31 48210 49.2090 122.44 130.40 12.49 48211 49.2100 129.64 130.34 12.92 48212 49.2110 128.28 130.28 12.78 48213 49.2120 119.42 130.21 12.35 48214 49.2130 123.11 130.15 12.48 48215 49.2140 139.81 130.08 13.35 48216 49.2150 125.35 130.02 12.69 48217 49.2160 112.52 129.95 11.89 48218 49.2170 113.92 129.88 11.99 48219 49.2180 149.57 129.81 13.89 48220 49.2190 146.04 129.75 13.57 48221 49.2200 133.81 129.68 12.98 48222 49.2210 132.75 129.62 13.07 48223 49.2220 115.76 129.55 12.18 48224 49.2230 132.46 129.49 12.99 48225 49.2240 143.67 129.43 13.63 48226 49.2250 131.22 129.37 12.90 48227 49.2260 117.02 129.31 12.20 48228 49.2270 124.11 129.25 12.66 48229 49.2280 128.50 129.20 12.93 48230 49.2290 132.38 129.14 13.08 48231 49.2300 124.62 129.09 12.60 48232 49.2310 118.67 129.04 12.31 48233 49.2320 138.80 128.99 13.34 48234 49.2330 139.16 128.95 13.31 48235 49.2340 130.13 128.90 12.83 48236 49.2350 143.71 128.85 13.52 48237 49.2360 138.44 128.81 13.34 48238 49.2370 131.02 128.77 13.01 48239 49.2380 139.87 128.73 13.34 48240 49.2390 145.94 128.69 13.62 48241 49.2400 138.28 128.65 13.27 48242 49.2410 127.45 128.62 12.80 48243 49.2420 132.39 128.58 12.96 48244 49.2430 125.13 128.55 12.65 48245 49.2440 120.29 128.51 12.38 48246 49.2450 129.33 128.48 12.77 48247 49.2460 117.09 128.45 12.27 48248 49.2470 137.23 128.42 13.24 48249 49.2480 123.69 128.39 12.41 48250 49.2490 127.13 128.36 12.75 48251 49.2500 129.90 128.34 12.87 48252 49.2510 131.20 128.31 13.01 48253 49.2520 153.94 128.29 14.06 48254 49.2530 134.81 128.26 13.13 48255 49.2540 137.53 128.21 13.26 48256 49.2550 135.39 128.19 13.18 48257 49.2560 117.34 128.17 12.22 48258 49.2570 116.54 128.15 12.10 48259 49.2580 129.65 128.13 12.73 48260 49.2590 141.43 128.11 13.39 48261 49.2600 139.10 128.09 13.31 48262 49.2610 128.60 128.08 12.79 48263 49.2620 100.92 128.06 11.36 48264 49.2630 122.75 128.05 12.49 48265 49.2640 131.49 128.04 13.02 48266 49.2650 117.73 128.02 12.24 48267 49.2660 138.73 128.01 13.29 48268 49.2670 141.32 128.00 13.42 48269 49.2680 156.62 127.99 14.13 48270 49.2690 148.53 127.99 13.83 48271 49.2700 139.16 127.98 13.36 48272 49.2710 117.25 127.98 12.23 48273 49.2720 128.14 127.97 12.72 48274 49.2730 125.36 127.96 12.57 48275 49.2740 132.22 127.96 12.89 48276 49.2750 121.49 127.91 12.42 48277 49.2760 114.85 127.91 12.02 48278 49.2770 130.42 127.88 12.86 48279 49.2780 124.77 127.87 12.48 48280 49.2790 107.77 127.86 11.59 48281 49.2800 138.00 127.86 13.29 48282 49.2810 138.45 127.85 13.25 48283 49.2820 124.74 127.85 12.68 48284 49.2830 136.73 127.84 13.25 48285 49.2840 131.82 127.83 13.00 48286 49.2850 135.94 127.82 13.14 48287 49.2860 120.90 127.81 12.39 48288 49.2870 124.31 127.81 12.62 48289 49.2880 122.06 127.79 12.44 48290 49.2890 115.14 127.79 11.96 48291 49.2900 113.00 127.77 11.92 48292 49.2910 122.69 127.76 12.56 48293 49.2920 136.19 127.75 13.25 48294 49.2930 138.77 127.74 13.38 48295 49.2940 128.76 127.73 12.89 48296 49.2950 121.64 127.72 12.48 48297 49.2960 133.16 127.71 13.01 48298 49.2970 145.64 127.70 13.66 48299 49.2980 127.51 127.68 12.76 48300 49.2990 130.37 127.68 12.93 48301 49.3000 126.63 127.67 12.74 48302 49.3010 140.07 127.66 13.42 48303 49.3020 124.13 127.65 12.66 48304 49.3030 114.46 127.64 12.11 48305 49.3040 127.99 127.63 12.83 48306 49.3050 114.15 127.63 12.11 48307 49.3060 120.71 127.63 12.43 48308 49.3070 142.24 127.62 13.57 48309 49.3080 118.41 127.62 12.26 48310 49.3090 117.13 127.62 12.18 48311 49.3100 128.26 127.61 12.76 48312 49.3110 136.54 127.61 13.14 48313 49.3120 115.34 127.61 12.07 48314 49.3130 121.19 127.62 12.35 48315 49.3140 120.16 127.62 12.38 48316 49.3150 123.63 127.62 12.54 48317 49.3160 125.23 127.63 12.69 48318 49.3170 111.50 127.63 11.90 48319 49.3180 119.51 127.64 12.29 48320 49.3190 127.48 127.65 12.69 48321 49.3200 123.58 127.65 12.62 48322 49.3210 139.40 127.66 13.42 48323 49.3220 132.61 127.68 13.03 48324 49.3230 131.42 127.69 13.04 48325 49.3240 125.02 127.70 12.65 48326 49.3250 121.43 127.71 12.43 48327 49.3260 113.00 127.73 12.01 48328 49.3270 112.20 127.75 11.92 48329 49.3280 134.05 127.76 13.08 48330 49.3290 123.01 127.78 12.55 48331 49.3300 151.08 127.81 13.92 48332 49.3310 131.74 127.83 13.04 48333 49.3320 125.05 127.85 12.64 48334 49.3330 124.00 127.88 12.59 48335 49.3340 153.32 127.90 14.05 48336 49.3350 136.18 127.95 13.27 48337 49.3360 137.15 127.97 13.28 48338 49.3370 152.69 128.01 14.03 48339 49.3380 132.46 128.04 12.98 48340 49.3390 122.36 128.07 12.49 48341 49.3400 122.28 128.11 12.49 48342 49.3410 111.71 128.15 12.01 48343 49.3420 106.51 128.19 11.56 48344 49.3430 131.36 128.24 12.89 48345 49.3440 136.53 128.28 13.19 48346 49.3450 120.40 128.33 12.38 48347 49.3460 132.29 128.38 13.01 48348 49.3470 130.41 128.43 12.91 48349 49.3480 125.60 128.45 12.71 48350 49.3490 122.77 128.50 12.57 48351 49.3500 121.98 128.57 12.45 48352 49.3510 130.43 128.63 12.82 48353 49.3520 123.60 128.70 12.59 48354 49.3530 136.17 128.77 13.22 48355 49.3540 117.12 128.85 12.16 48356 49.3550 124.65 128.93 12.54 48357 49.3560 138.56 129.01 13.23 48358 49.3570 121.29 129.10 12.42 48359 49.3580 118.35 129.18 12.37 48360 49.3590 129.87 129.28 12.92 48361 49.3600 131.13 129.38 12.87 48362 49.3610 137.67 129.48 13.24 48363 49.3620 143.64 129.58 13.58 48364 49.3630 134.58 129.69 13.15 48365 49.3640 140.34 129.80 13.36 48366 49.3650 141.88 129.92 13.43 48367 49.3660 148.26 130.04 13.78 48368 49.3670 141.05 130.16 13.46 48369 49.3680 132.03 130.29 13.01 48370 49.3690 128.83 130.42 12.83 48371 49.3700 133.53 130.55 13.01 48372 49.3710 118.52 130.68 12.32 48373 49.3720 119.09 130.82 12.32 48374 49.3730 120.79 130.95 12.45 48375 49.3740 120.96 131.09 12.43 48376 49.3750 136.96 131.23 13.18 48377 49.3760 130.66 131.36 12.98 48378 49.3770 138.06 131.49 13.32 48379 49.3780 136.02 131.62 13.29 48380 49.3790 140.05 131.75 13.42 48381 49.3800 131.62 131.87 12.92 48382 49.3810 124.65 131.99 12.64 48383 49.3820 131.40 132.09 12.98 48384 49.3830 149.79 132.19 13.87 48385 49.3840 140.08 132.28 13.33 48386 49.3850 135.99 132.35 13.14 48387 49.3860 144.09 132.42 13.55 48388 49.3870 127.05 132.47 12.78 48389 49.3880 131.86 132.51 12.98 48390 49.3890 126.83 132.54 12.80 48391 49.3900 134.60 132.55 13.09 48392 49.3910 121.48 132.55 12.38 48393 49.3920 124.52 132.53 12.58 48394 49.3930 136.76 132.50 13.25 48395 49.3940 125.85 132.45 12.66 48396 49.3950 119.86 132.39 12.31 48397 49.3960 128.74 132.32 12.82 48398 49.3970 122.31 132.23 12.47 48399 49.3980 130.63 132.14 12.92 48400 49.3990 117.87 132.04 12.28 48401 49.4000 128.68 131.92 12.84 48402 49.4010 137.97 131.80 13.33 48403 49.4020 148.75 131.67 13.80 48404 49.4030 134.87 131.54 13.18 48405 49.4040 133.79 131.40 13.11 48406 49.4050 132.47 131.26 12.90 48407 49.4060 116.50 131.12 11.99 48408 49.4070 132.29 130.97 13.02 48409 49.4080 145.68 130.83 13.63 48410 49.4090 149.73 130.68 13.78 48411 49.4100 141.18 130.54 13.37 48412 49.4110 118.11 130.40 12.31 48413 49.4120 120.59 130.26 12.48 48414 49.4130 127.59 130.12 12.73 48415 49.4140 144.26 129.99 13.57 48416 49.4150 146.03 129.85 13.74 48417 49.4160 134.12 129.73 13.11 48418 49.4170 121.58 129.60 12.45 48419 49.4180 123.90 129.48 12.57 48420 49.4190 137.29 129.37 13.23 48421 49.4200 122.07 129.25 12.39 48422 49.4210 109.35 129.15 11.78 48423 49.4220 113.28 129.04 12.02 48424 49.4230 142.65 128.94 13.56 48425 49.4240 142.36 128.84 13.52 48426 49.4250 124.59 128.75 12.61 48427 49.4260 128.43 128.66 12.81 48428 49.4270 116.74 128.58 12.23 48429 49.4280 123.12 128.49 12.55 48430 49.4290 128.89 128.42 12.83 48431 49.4300 126.75 128.34 12.70 48432 49.4310 103.28 128.27 11.45 48433 49.4320 121.46 128.20 12.40 48434 49.4330 114.59 128.14 12.13 48435 49.4340 116.56 128.07 12.24 48436 49.4350 126.58 128.02 12.76 48437 49.4360 120.11 127.96 12.29 48438 49.4370 148.30 127.91 13.77 48439 49.4380 133.28 127.86 13.04 48440 49.4390 129.71 127.81 12.99 48441 49.4400 128.33 127.77 12.90 48442 49.4410 121.39 127.72 12.46 48443 49.4420 111.70 127.68 11.93 48444 49.4430 105.42 127.64 11.57 48445 49.4440 120.92 127.60 12.42 48446 49.4450 141.42 127.57 13.50 48447 49.4460 130.72 127.53 12.97 48448 49.4470 125.45 127.50 12.71 48449 49.4480 132.85 127.47 13.06 48450 49.4490 115.51 127.44 12.11 48451 49.4500 112.20 127.41 12.04 48452 49.4510 117.73 127.38 12.32 48453 49.4520 132.77 127.36 13.09 48454 49.4530 120.50 127.33 12.47 48455 49.4540 111.74 127.31 11.90 48456 49.4550 123.85 127.25 12.50 48457 49.4560 150.81 127.23 13.80 48458 49.4570 131.78 127.21 13.00 48459 49.4580 117.11 127.19 12.29 48460 49.4590 123.26 127.17 12.56 48461 49.4600 130.53 127.15 12.92 48462 49.4610 140.62 127.13 13.39 48463 49.4620 130.73 127.12 12.85 48464 49.4630 150.27 127.10 13.76 48465 49.4640 135.66 127.09 13.14 48466 49.4650 133.61 127.08 13.01 48467 49.4660 130.16 127.07 12.83 48468 49.4670 122.43 127.06 12.46 48469 49.4680 116.44 127.05 12.20 48470 49.4690 133.85 127.04 13.05 48471 49.4700 129.66 127.03 12.89 48472 49.4710 138.81 127.03 13.40 48473 49.4720 132.44 127.03 12.95 48474 49.4730 114.00 127.02 12.01 48475 49.4740 125.36 127.02 12.57 48476 49.4750 146.49 127.04 13.65 48477 49.4760 133.04 127.04 13.07 48478 49.4770 124.59 127.04 12.74 48479 49.4780 128.23 127.05 12.84 48480 49.4790 127.62 127.05 12.77 48481 49.4800 122.94 127.06 12.54 48482 49.4810 129.21 127.07 12.89 48483 49.4820 121.35 127.08 12.43 48484 49.4830 122.39 127.10 12.49 48485 49.4840 130.98 127.11 12.95 48486 49.4850 138.22 127.12 13.26 48487 49.4860 119.96 127.14 12.35 48488 49.4870 115.95 127.16 12.17 48489 49.4880 130.23 127.18 12.91 48490 49.4890 126.84 127.21 12.68 48491 49.4900 117.56 127.23 12.30 48492 49.4910 117.97 127.26 12.25 48493 49.4920 123.68 127.29 12.53 48494 49.4930 129.10 127.32 12.86 48495 49.4940 116.66 127.36 12.20 48496 49.4950 129.73 127.39 12.73 48497 49.4960 127.08 127.43 12.68 48498 49.4970 119.48 127.47 12.32 48499 49.4980 122.87 127.51 12.53 48500 49.4990 134.98 127.56 13.18 48501 49.5000 129.99 127.61 12.85 48502 49.5010 128.13 127.66 12.77 48503 49.5020 125.08 127.72 12.67 48504 49.5030 118.74 127.77 12.36 48505 49.5040 141.48 127.83 13.50 48506 49.5050 136.29 127.90 13.24 48507 49.5060 150.79 127.97 13.82 48508 49.5070 121.67 128.04 12.49 48509 49.5080 110.75 128.12 11.85 48510 49.5090 113.13 128.20 12.02 48511 49.5100 115.18 128.28 12.05 48512 49.5110 121.71 128.37 12.34 48513 49.5120 138.53 128.46 13.30 48514 49.5130 136.72 128.56 13.34 48515 49.5140 130.02 128.66 12.93 48516 49.5150 139.35 128.76 13.34 48517 49.5160 138.69 128.88 13.29 48518 49.5170 123.06 128.99 12.51 48519 49.5180 133.37 129.11 13.08 48520 49.5190 123.11 129.24 12.51 48521 49.5200 114.02 129.37 12.13 48522 49.5210 126.15 129.51 12.74 48523 49.5220 148.16 129.65 13.80 48524 49.5230 142.45 129.80 13.52 48525 49.5240 127.58 129.95 12.75 48526 49.5250 140.74 130.11 13.39 48527 49.5260 141.95 130.27 13.51 48528 49.5270 133.78 130.44 13.00 48529 49.5280 115.73 130.61 12.12 48530 49.5290 120.94 130.78 12.42 48531 49.5300 124.17 130.96 12.60 48532 49.5310 147.55 131.14 13.71 48533 49.5320 132.15 131.33 12.98 48534 49.5330 121.56 131.51 12.40 48535 49.5340 116.70 131.70 12.23 48536 49.5350 132.68 131.88 13.00 48537 49.5360 141.40 132.06 13.40 48538 49.5370 154.79 132.24 14.07 48539 49.5380 135.84 132.41 13.12 48540 49.5390 149.29 132.58 13.75 48541 49.5400 157.80 132.74 14.23 48542 49.5410 139.87 132.90 13.40 48543 49.5420 125.32 133.04 12.66 48544 49.5430 127.89 133.16 12.79 48545 49.5440 138.57 133.28 13.33 48546 49.5450 125.67 133.38 12.61 48547 49.5460 137.02 133.46 13.16 48548 49.5470 150.14 133.53 13.80 48549 49.5480 136.40 133.58 13.16 48550 49.5490 154.44 133.61 14.10 48551 49.5500 150.76 133.62 13.89 48552 49.5510 161.60 133.60 14.44 48553 49.5520 140.11 133.58 13.35 48554 49.5530 139.46 133.53 13.42 48555 49.5540 140.20 133.46 13.45 48556 49.5550 122.19 133.38 12.43 48557 49.5560 121.95 133.28 12.39 48558 49.5570 131.92 133.16 12.97 48559 49.5580 134.21 133.03 13.14 48560 49.5590 135.52 132.89 13.16 48561 49.5600 134.63 132.74 13.12 48562 49.5610 128.00 132.58 12.67 48563 49.5620 145.99 132.39 13.62 48564 49.5630 121.11 132.21 12.45 48565 49.5640 148.20 132.04 13.74 48566 49.5650 137.41 131.86 13.30 48567 49.5660 126.52 131.67 12.73 48568 49.5670 119.93 131.46 12.24 48569 49.5680 127.74 131.28 12.65 48570 49.5690 116.11 131.10 12.15 48571 49.5700 129.26 130.92 12.87 48572 49.5710 123.50 130.75 12.57 48573 49.5720 127.36 130.57 12.71 48574 49.5730 146.97 130.40 13.76 48575 49.5740 140.72 130.24 13.38 48576 49.5750 143.76 130.08 13.47 48577 49.5760 133.97 129.92 13.04 48578 49.5770 134.91 129.77 13.13 48579 49.5780 153.90 129.62 14.08 48580 49.5790 146.76 129.48 13.71 48581 49.5800 143.39 129.34 13.48 48582 49.5810 125.81 129.21 12.66 48583 49.5820 126.29 129.09 12.70 48584 49.5830 122.96 128.99 12.47 48585 49.5840 131.47 128.87 13.03 48586 49.5850 132.26 128.76 12.99 48587 49.5860 133.53 128.65 13.05 48588 49.5870 129.82 128.55 12.79 48589 49.5880 125.30 128.45 12.56 48590 49.5890 129.90 128.36 12.85 48591 49.5900 122.41 128.27 12.50 48592 49.5910 124.81 128.18 12.58 48593 49.5920 121.84 128.10 12.48 48594 49.5930 138.39 128.03 13.34 48595 49.5940 137.52 127.95 13.30 48596 49.5950 126.64 127.89 12.71 48597 49.5960 129.40 127.82 12.81 48598 49.5970 128.04 127.76 12.76 48599 49.5980 128.23 127.70 12.82 48600 49.5990 139.21 127.64 13.29 48601 49.6000 110.50 127.59 11.83 48602 49.6010 130.94 127.54 12.92 48603 49.6020 123.46 127.50 12.53 48604 49.6030 133.89 127.46 13.04 48605 49.6040 128.14 127.42 12.84 48606 49.6050 119.84 127.38 12.34 48607 49.6060 123.83 127.35 12.54 48608 49.6070 118.19 127.32 12.27 48609 49.6080 143.26 127.29 13.52 48610 49.6090 138.77 127.27 13.33 48611 49.6100 133.50 127.25 13.11 48612 49.6110 135.11 127.23 13.13 48613 49.6120 145.53 127.21 13.58 48614 49.6130 128.58 127.20 12.81 48615 49.6140 123.14 127.19 12.60 48616 49.6150 135.49 127.18 13.16 48617 49.6160 133.12 127.18 13.06 48618 49.6170 143.86 127.18 13.53 48619 49.6180 132.80 127.18 13.00 48620 49.6190 145.64 127.18 13.68 48621 49.6200 137.33 127.19 13.28 48622 49.6210 121.28 127.19 12.43 48623 49.6220 119.16 127.20 12.29 48624 49.6230 108.84 127.21 11.83 48625 49.6240 120.07 127.23 12.33 48626 49.6250 119.83 127.24 12.33 48627 49.6260 124.45 127.26 12.52 48628 49.6270 131.19 127.28 12.90 48629 49.6280 137.52 127.30 13.31 48630 49.6290 155.11 127.32 14.07 48631 49.6300 132.98 127.35 13.02 48632 49.6310 134.74 127.37 13.15 48633 49.6320 136.77 127.40 13.22 48634 49.6330 125.13 127.43 12.72 48635 49.6340 115.88 127.45 12.16 48636 49.6350 148.76 127.48 13.81 48637 49.6360 138.77 127.51 13.27 48638 49.6370 117.51 127.54 12.24 48639 49.6380 129.97 127.57 12.98 48640 49.6390 120.59 127.60 12.47 48641 49.6400 114.82 127.64 12.15 48642 49.6410 131.18 127.67 12.94 48643 49.6420 128.69 127.70 12.84 48644 49.6430 111.74 127.74 11.86 48645 49.6440 131.65 127.77 12.99 48646 49.6450 134.60 127.81 13.13 48647 49.6460 144.45 127.85 13.55 48648 49.6470 153.16 127.89 14.03 48649 49.6480 132.35 127.93 12.99 48650 49.6490 119.27 127.97 12.33 48651 49.6500 113.78 128.02 12.10 48652 49.6510 125.94 128.07 12.66 48653 49.6520 130.70 128.12 12.86 48654 49.6530 143.31 128.17 13.52 48655 49.6540 137.63 128.23 13.25 48656 49.6550 128.19 128.29 12.78 48657 49.6560 137.23 128.36 13.30 48658 49.6570 125.09 128.43 12.66 48659 49.6580 129.73 128.50 12.88 48660 49.6590 134.87 128.58 13.16 48661 49.6600 139.59 128.66 13.35 48662 49.6610 142.33 128.75 13.56 48663 49.6620 135.24 128.84 13.17 48664 49.6630 133.44 128.94 13.09 48665 49.6640 129.66 129.04 12.97 48666 49.6650 141.83 129.15 13.56 48667 49.6660 147.67 129.26 13.80 48668 49.6670 127.68 129.38 12.77 48669 49.6680 136.52 129.51 13.14 48670 49.6690 125.54 129.64 12.69 48671 49.6700 113.78 129.77 12.09 48672 49.6710 137.35 129.92 13.25 48673 49.6720 118.86 130.07 12.24 48674 49.6730 116.20 130.23 12.13 48675 49.6740 124.93 130.39 12.60 48676 49.6750 123.37 130.56 12.52 48677 49.6760 127.22 130.74 12.76 48678 49.6770 105.77 130.92 11.65 48679 49.6780 123.68 131.11 12.58 48680 49.6790 126.50 131.31 12.65 48681 49.6800 126.84 131.51 12.74 48682 49.6810 131.53 131.72 12.95 48683 49.6820 157.29 131.94 14.17 48684 49.6830 144.28 132.16 13.64 48685 49.6840 117.66 132.39 12.20 48686 49.6850 139.80 132.62 13.36 48687 49.6860 145.33 132.85 13.64 48688 49.6870 137.97 133.09 13.21 48689 49.6880 137.65 133.34 13.25 48690 49.6890 128.61 133.58 12.78 48691 49.6900 134.23 133.83 13.12 48692 49.6910 144.38 134.08 13.66 48693 49.6920 139.81 134.32 13.36 48694 49.6930 126.25 134.57 12.71 48695 49.6940 140.00 134.81 13.42 48696 49.6950 134.15 135.04 13.10 48697 49.6960 136.59 135.27 13.20 48698 49.6970 122.80 135.50 12.48 48699 49.6980 147.17 135.71 13.74 48700 49.6990 149.16 135.91 13.82 48701 49.7000 138.51 136.10 13.35 48702 49.7010 131.22 136.28 12.96 48703 49.7020 127.08 136.45 12.75 48704 49.7030 132.07 136.59 12.97 48705 49.7040 123.52 136.72 12.53 48706 49.7050 139.38 136.83 13.29 48707 49.7060 152.16 136.92 13.94 48708 49.7070 146.18 136.99 13.72 48709 49.7080 145.28 137.04 13.64 48710 49.7090 137.62 137.07 13.20 48711 49.7100 126.98 137.08 12.71 48712 49.7110 147.98 137.07 13.80 48713 49.7120 138.71 137.05 13.37 48714 49.7130 142.49 137.00 13.56 48715 49.7140 145.88 136.94 13.77 48716 49.7150 132.97 136.87 13.07 48717 49.7160 137.57 136.78 13.32 48718 49.7170 152.93 136.68 13.99 48719 49.7180 135.96 136.57 13.18 48720 49.7190 132.56 136.46 12.93 48721 49.7200 116.85 136.34 12.06 48722 49.7210 133.75 136.21 13.06 48723 49.7220 124.20 136.09 12.58 48724 49.7230 130.68 135.94 12.92 48725 49.7240 143.34 135.81 13.49 48726 49.7250 145.56 135.69 13.59 48727 49.7260 128.93 135.57 12.65 48728 49.7270 135.99 135.46 13.14 48729 49.7280 103.47 135.35 11.48 48730 49.7290 126.07 135.25 12.68 48731 49.7300 123.13 135.15 12.54 48732 49.7310 134.82 135.07 13.11 48733 49.7320 125.09 135.00 12.59 48734 49.7330 111.62 134.94 11.93 48735 49.7340 117.48 134.89 12.28 48736 49.7350 147.33 134.85 13.79 48737 49.7360 143.79 134.82 13.54 48738 49.7370 131.73 134.81 12.91 48739 49.7380 128.99 134.81 12.84 48740 49.7390 133.16 134.82 13.02 48741 49.7400 103.72 134.85 11.52 48742 49.7410 117.25 134.90 12.22 48743 49.7420 127.77 134.95 12.80 48744 49.7430 139.61 135.02 13.34 48745 49.7440 143.30 135.11 13.51 48746 49.7450 125.24 135.22 12.71 48747 49.7460 126.42 135.34 12.71 48748 49.7470 137.10 135.47 13.23 48749 49.7480 139.66 135.63 13.48 48750 49.7490 131.46 135.80 12.96 48751 49.7500 130.00 135.99 12.87 48752 49.7510 131.61 136.20 12.99 48753 49.7520 154.92 136.42 14.05 48754 49.7530 154.29 136.67 14.04 48755 49.7540 151.06 136.94 13.93 48756 49.7550 126.69 137.22 12.72 48757 49.7560 112.67 137.53 11.95 48758 49.7570 130.51 137.87 12.80 48759 49.7580 150.82 138.22 13.91 48760 49.7590 131.54 138.60 12.95 48761 49.7600 144.72 139.00 13.61 48762 49.7610 146.62 139.43 13.59 48763 49.7620 147.91 139.89 13.74 48764 49.7630 147.81 140.37 13.74 48765 49.7640 159.29 140.88 14.25 48766 49.7650 154.43 141.41 14.03 48767 49.7660 135.60 141.98 13.27 48768 49.7670 154.34 142.58 14.03 48769 49.7680 162.44 143.21 14.34 48770 49.7690 145.51 143.87 13.65 48771 49.7700 142.10 144.56 13.50 48772 49.7710 141.99 145.28 13.46 48773 49.7720 131.64 146.03 12.95 48774 49.7730 154.55 146.82 14.03 48775 49.7740 151.65 147.63 13.88 48776 49.7750 141.44 148.48 13.47 48777 49.7760 153.02 149.36 13.86 48778 49.7770 162.50 150.26 14.40 48779 49.7780 166.09 151.18 14.68 48780 49.7790 155.44 152.12 14.05 48781 49.7800 160.38 153.09 14.24 48782 49.7810 173.51 154.06 14.76 48783 49.7820 167.95 155.05 14.64 48784 49.7830 172.41 156.03 14.81 48785 49.7840 176.02 157.01 14.99 48786 49.7850 177.81 157.97 15.05 48787 49.7860 168.90 158.92 14.64 48788 49.7870 167.86 159.83 14.61 48789 49.7880 181.56 160.70 15.25 48790 49.7890 173.68 161.52 14.85 48791 49.7900 172.18 162.28 14.74 48792 49.7910 178.58 162.98 15.09 48793 49.7920 164.21 163.59 14.48 48794 49.7930 166.78 164.11 14.64 48795 49.7940 177.32 164.54 15.12 48796 49.7950 172.12 164.87 14.85 48797 49.7960 171.45 165.10 14.81 48798 49.7970 154.98 165.21 13.98 48799 49.7980 154.28 165.23 14.04 48800 49.7990 171.65 165.13 14.88 48801 49.8000 159.65 164.93 14.34 48802 49.8010 146.01 164.63 13.62 48803 49.8020 177.10 164.25 15.06 48804 49.8030 167.72 163.77 14.64 48805 49.8040 162.65 163.23 14.42 48806 49.8050 176.99 162.62 15.11 48807 49.8060 167.51 161.96 14.70 48808 49.8070 162.80 161.26 14.42 48809 49.8080 171.52 160.52 14.72 48810 49.8090 168.68 159.75 14.68 48811 49.8100 161.87 158.97 14.38 48812 49.8110 151.33 158.18 13.90 48813 49.8120 168.75 157.39 14.74 48814 49.8130 159.63 156.61 14.27 48815 49.8140 154.76 155.84 14.13 48816 49.8150 159.61 155.08 14.24 48817 49.8160 145.45 154.35 13.66 48818 49.8170 155.69 153.63 14.12 48819 49.8180 146.71 152.95 13.71 48820 49.8190 146.26 152.29 13.69 48821 49.8200 162.72 151.66 14.42 48822 49.8210 161.21 151.06 14.36 48823 49.8220 127.35 150.48 12.74 48824 49.8230 136.57 149.93 13.18 48825 49.8240 145.45 149.40 13.50 48826 49.8250 172.39 148.90 14.87 48827 49.8260 144.64 148.41 13.54 48828 49.8270 139.56 147.95 13.32 48829 49.8280 150.47 147.49 13.89 48830 49.8290 153.55 147.05 14.03 48831 49.8300 175.14 146.62 15.00 48832 49.8310 157.61 146.20 14.20 48833 49.8320 138.27 145.78 13.25 48834 49.8330 135.80 145.36 13.20 48835 49.8340 144.00 144.94 13.53 48836 49.8350 144.12 144.51 13.59 48837 49.8360 149.47 144.09 13.75 48838 49.8370 129.64 143.65 12.81 48839 49.8380 148.89 143.21 13.75 48840 49.8390 145.71 142.77 13.58 48841 49.8400 139.26 142.32 13.21 48842 49.8410 151.71 141.86 13.80 48843 49.8420 166.83 141.40 14.61 48844 49.8430 156.65 140.93 14.17 48845 49.8440 131.89 140.46 12.95 48846 49.8450 165.26 139.99 14.51 48847 49.8460 152.77 139.52 13.99 48848 49.8470 156.18 139.04 14.12 48849 49.8480 134.65 138.58 13.12 48850 49.8490 146.73 138.12 13.62 48851 49.8500 129.84 137.66 12.78 48852 49.8510 142.08 137.21 13.46 48853 49.8520 142.23 136.77 13.51 48854 49.8530 136.50 136.34 13.23 48855 49.8540 138.03 135.92 13.26 48856 49.8550 133.55 135.51 13.02 48857 49.8560 136.87 135.12 13.14 48858 49.8570 134.96 134.74 13.06 48859 49.8580 129.14 134.36 12.81 48860 49.8590 122.22 134.01 12.41 48861 49.8600 111.34 133.66 11.93 48862 49.8610 135.71 133.33 13.18 48863 49.8620 143.10 133.01 13.45 48864 49.8630 138.96 132.71 13.25 48865 49.8640 125.70 132.42 12.64 48866 49.8650 130.55 132.14 12.98 48867 49.8660 125.51 131.88 12.76 48868 49.8670 136.79 131.62 13.21 48869 49.8680 149.64 131.38 13.78 48870 49.8690 134.20 131.15 13.03 48871 49.8700 128.29 130.94 12.66 48872 49.8710 136.32 130.73 13.11 48873 49.8720 129.69 130.54 12.74 48874 49.8730 125.99 130.35 12.60 48875 49.8740 119.78 130.18 12.31 48876 49.8750 160.47 130.02 14.25 48877 49.8760 128.72 129.87 12.84 48878 49.8770 123.39 129.73 12.63 48879 49.8780 142.42 129.60 13.44 48880 49.8790 131.99 129.47 12.99 48881 49.8800 124.73 129.36 12.55 48882 49.8810 133.70 129.26 13.04 48883 49.8820 121.01 129.16 12.39 48884 49.8830 112.59 129.07 11.95 48885 49.8840 123.73 128.99 12.57 48886 49.8850 143.44 128.92 13.55 48887 49.8860 125.08 128.86 12.68 48888 49.8870 141.60 128.80 13.55 48889 49.8880 151.84 128.75 13.99 48890 49.8890 143.89 128.70 13.67 48891 49.8900 139.00 128.66 13.38 48892 49.8910 128.58 128.63 12.82 48893 49.8920 142.85 128.60 13.56 48894 49.8930 125.57 128.57 12.61 48895 49.8940 124.51 128.55 12.63 48896 49.8950 130.04 128.53 12.92 48897 49.8960 125.69 128.51 12.69 48898 49.8970 124.67 128.49 12.65 48899 49.8980 137.14 128.48 13.30 48900 49.8990 123.22 128.46 12.50 48901 49.9000 138.34 128.43 13.20 48902 49.9010 120.22 128.41 12.36 48903 49.9020 136.09 128.38 13.15 48904 49.9030 141.29 128.35 13.41 48905 49.9040 145.88 128.32 13.66 48906 49.9050 125.14 128.27 12.66 48907 49.9060 137.64 128.23 13.24 48908 49.9070 132.52 128.17 13.08 48909 49.9080 129.09 128.11 12.90 48910 49.9090 114.51 128.05 12.04 48911 49.9100 121.54 127.98 12.45 48912 49.9110 134.69 127.90 13.12 48913 49.9120 117.59 127.82 12.20 48914 49.9130 131.31 127.74 12.86 48915 49.9140 139.21 127.64 13.34 48916 49.9150 117.23 127.55 12.23 48917 49.9160 126.39 127.46 12.79 48918 49.9170 140.93 127.37 13.48 48919 49.9180 129.21 127.27 12.85 48920 49.9190 147.10 127.18 13.65 48921 49.9200 130.03 127.08 12.90 48922 49.9210 137.05 126.99 13.21 48923 49.9220 141.22 126.90 13.31 48924 49.9230 115.17 126.81 12.10 48925 49.9240 143.30 126.73 13.64 48926 49.9250 144.38 126.69 13.65 48927 49.9260 143.56 126.61 13.55 48928 49.9270 124.85 126.54 12.62 48929 49.9280 128.87 126.47 12.87 48930 49.9290 117.30 126.41 12.23 48931 49.9300 110.65 126.35 11.89 48932 49.9310 123.76 126.30 12.53 48933 49.9320 123.67 126.25 12.50 48934 49.9330 143.20 126.21 13.50 48935 49.9340 126.61 126.17 12.76 48936 49.9350 129.52 126.14 12.93 48937 49.9360 128.77 126.12 12.86 48938 49.9370 128.59 126.10 12.78 48939 49.9380 128.53 126.09 12.83 48940 49.9390 139.98 126.08 13.36 48941 49.9400 139.14 126.08 13.35 48942 49.9410 129.75 126.08 12.86 48943 49.9420 124.61 126.09 12.60 48944 49.9430 121.76 126.11 12.42 48945 49.9440 124.02 126.13 12.59 48946 49.9450 140.26 126.16 13.44 48947 49.9460 119.65 126.19 12.22 48948 49.9470 112.66 126.23 11.89 48949 49.9480 110.76 126.28 11.87 48950 49.9490 129.01 126.33 12.94 48951 49.9500 144.24 126.39 13.57 48952 49.9510 141.59 126.45 13.36 48953 49.9520 121.04 126.52 12.38 48954 49.9530 120.10 126.59 12.36 48955 49.9540 127.63 126.67 12.77 48956 49.9550 121.03 126.75 12.45 48957 49.9560 116.31 126.83 12.14 48958 49.9570 140.96 126.93 13.37 48959 49.9580 134.22 127.02 13.15 48960 49.9590 129.97 127.11 12.96 48961 49.9600 112.48 127.21 12.04 48962 49.9610 115.68 127.31 12.16 48963 49.9620 118.51 127.41 12.27 48964 49.9630 154.80 127.51 14.12 48965 49.9640 151.67 127.62 13.94 48966 49.9650 130.54 127.72 12.99 48967 49.9660 137.33 127.82 13.27 48968 49.9670 117.10 127.91 12.24 48969 49.9680 129.84 128.01 12.92 48970 49.9690 140.92 128.10 13.48 48971 49.9700 125.09 128.19 12.55 48972 49.9710 126.52 128.27 12.69 48973 49.9720 130.99 128.35 13.03 48974 49.9730 125.23 128.43 12.66 48975 49.9740 128.13 128.51 12.80 48976 49.9750 142.97 128.58 13.42 48977 49.9760 139.95 128.64 13.36 48978 49.9770 131.45 128.71 12.96 48979 49.9780 139.84 128.77 13.42 48980 49.9790 145.37 128.84 13.69 48981 49.9800 138.19 128.90 13.33 48982 49.9810 132.89 128.96 13.05 48983 49.9820 130.85 129.03 12.89 48984 49.9830 131.81 129.10 12.89 48985 49.9840 127.86 129.17 12.78 48986 49.9850 131.99 129.24 13.02 48987 49.9860 129.07 129.35 12.85 48988 49.9870 137.41 129.43 13.29 48989 49.9880 130.58 129.52 12.91 48990 49.9890 135.89 129.62 13.17 48991 49.9900 130.19 129.72 12.98 48992 49.9910 135.85 129.83 13.17 48993 49.9920 122.01 129.94 12.37 48994 49.9930 114.99 130.06 12.12 48995 49.9940 139.07 130.18 13.36 48996 49.9950 144.20 130.31 13.49 48997 49.9960 139.30 130.45 13.26 48998 49.9970 146.41 130.58 13.61 48999 49.9980 142.31 130.71 13.53 49000 49.9990 125.66 130.84 12.70 loop_ _pd_proc_info_excluded_regions 'from 50 to 100.000' loop_ _refln_index_h _refln_index_k _refln_index_l _refln_F_squared_calc _refln_F_squared_meas _refln_observed_status _refln_d_spacing 0 0 2 1158.27 1152.57 o 7.646819 1 0 0 12.98 21.18 o 4.505837 1 0 2 5096.23 4996.01 o 3.882024 0 0 4 1794.32 1793.54 o 3.823409 1 0 4 11321.04 11234.79 o 2.915297 2 -1 0 18183.61 17554.62 o 2.601446 2 -1 1 807.69 861.05 o 2.564609 0 0 6 345.09 444.40 o 2.548940 2 -1 2 15.02 3.66 o 2.462829 2 -1 3 1689.39 1772.61 o 2.317180 2 0 0 2667.62 2694.19 o 2.252919 1 0 6 1880.65 1897.85 o 2.218556 2 0 2 4966.24 5304.11 o 2.161077 2 -1 4 1669.38 1931.41 o 2.150805 2 -1 5 10.16 13.12 o 1.981656 2 0 4 3547.40 3406.63 o 1.941012 0 0 8 20257.59 23397.09 o 1.911705 2 -1 6 6216.23 6313.16 o 1.820653 1 0 8 615.59 571.16 o 1.759861 3 -1 0 221.66 224.15 o 1.703047 3 -1 1 122.49 114.60 o 1.692585 2 0 6 96.01 82.00 o 1.688057 2 -1 7 996.58 937.06 o 1.673046 3 -1 2 2663.18 2635.89 o 1.662319 3 -1 3 273.14 272.15 o 1.615295 3 -1 4 5816.77 5967.02 o 1.555696 2 -1 8 9479.46 9488.63 o 1.540484 0 0 10 141.06 218.95 o 1.529364 3 0 0 20974.85 20179.41 o 1.501946 3 -1 5 0.73 0.51 o 1.487955 3 0 2 376.09 370.81 o 1.473787 2 0 8 1069.06 1024.34 o 1.457649 1 0 10 3306.62 3063.11 o 1.448217 2 -1 9 146.74 93.86 o 1.422670 3 -1 6 701.51 650.41 o 1.416057 3 0 4 82.23 50.88 o 1.397952 3 -1 7 180.46 159.16 o 1.343184 2 -1 10 1493.86 1431.40 o 1.318410 4 -2 0 11429.07 11352.46 o 1.300723 4 -2 1 98.79 100.36 o 1.296044 3 0 6 1627.56 1607.95 o 1.294008 4 -2 2 170.82 154.28 o 1.282304 0 0 12 2027.33 2153.65 o 1.274470 3 -1 8 515.93 525.38 o 1.271632 2 0 10 5548.54 5070.27 o 1.265355 4 -2 3 214.74 261.91 o 1.260345 4 -1 0 3.37 3.78 o 1.249694 4 -1 1 155.59 142.12 o 1.245543 4 -1 2 1435.81 1475.84 o 1.233333 4 -2 4 69.64 73.52 o 1.231414 1 0 12 2064.74 2159.60 o 1.226357 2 -1 11 237.76 248.33 o 1.226196 4 -1 3 361.16 344.52 o 1.213757 3 -1 9 35.65 52.56 o 1.202906 4 -2 5 2.48 3.00 o 1.196988 4 -1 4 5171.26 5159.50 o 1.187853 3 0 8 8425.94 7846.48 o 1.181040 4 -2 6 2615.98 2608.61 o 1.158590 4 -1 5 0.75 0.76 o 1.156863 2 -1 12 1156.96 1028.76 o 1.144503 3 -1 10 2598.97 2620.48 o 1.137889 4 0 0 99.12 83.04 o 1.126459 4 -1 6 770.32 731.99 o 1.122089 4 -2 7 168.61 166.24 o 1.117647 4 0 2 1362.64 1286.56 o 1.114432 2 0 12 2132.63 2173.00 o 1.109278 0 0 14 1497.32 1668.55 o 1.092403 4 -1 7 270.92 254.97 o 1.084775 4 0 4 3630.72 3786.88 o 1.080539 3 -1 11 45.59 46.73 o 1.077008 4 -2 8 5578.83 5681.38 o 1.075403 2 -1 13 222.70 265.60 o 1.071922 3 0 10 22.10 27.06 o 1.071598 1 0 14 148.99 148.07 o 1.061647 4 -1 8 261.27 250.84 o 1.046023 5 -2 0 603.44 524.73 o 1.033710 4 -2 9 23.90 20.70 o 1.032869 5 -2 1 0.00 0.00 < 1.031357 4 0 6 386.67 355.85 o 1.030330 5 -2 2 1434.55 1339.46 o 1.024392 3 -1 12 1551.96 1547.39 o 1.020385 5 -2 3 0.03 0.01 o 1.013092 2 -1 14 4369.88 4043.94 o 1.007204 4 -1 9 61.25 56.73 o 1.006757 5 -2 4 1889.90 1935.28 o 0.997882 4 -2 10 311.17 277.04 o 0.990828 5 -1 0 5826.45 5816.17 o 0.983254 2 0 14 4.63 4.63 o 0.982946 5 -1 1 1.49 1.46 o 0.981229 5 -2 5 0.06 0.05 o 0.979297 5 -1 2 111.93 85.28 o 0.975225 3 0 12 861.81 788.16 o 0.971766 4 0 8 283.80 267.16 o 0.970506 3 -1 13 56.81 59.50 o 0.967945 4 -1 10 1284.57 1348.17 o 0.967707 5 -1 3 2.19 2.37 o 0.965460 5 -2 6 67.30 36.06 o 0.957933 0 0 16 608.90 312.62 o 0.955852 5 -1 4 64.13 51.42 o 0.952269 4 -2 11 59.82 22.77 < 0.949850 2 -1 15 12.26 4.39 < 0.949272 5 -1 5 0.81 0.76 o 0.936078 1 0 16 1178.20 1084.73 o 0.935045 5 -2 7 0.00 0.00 < 0.934401 4 -1 11 78.33 48.09 o 0.929423 3 -1 14 60.95 52.37 o 0.919498 5 -1 6 2060.86 1898.19 o 0.917367 4 -2 12 745.54 707.53 o 0.910326 5 -2 8 459.07 436.57 o 0.909291 4 0 10 1487.93 1513.41 o 0.906987 5 0 0 879.93 764.36 o 0.901168 2 -1 16 1585.19 1459.62 o 0.897205 5 -1 7 3.03 2.83 o 0.896637 5 0 2 1204.15 1193.58 o 0.894974 4 -1 12 1097.10 1047.84 o 0.892298 3 0 14 1614.43 1611.52 o 0.883444 5 -2 9 0.14 0.14 o 0.883142 2 0 16 512.73 552.71 o 0.879931 5 0 4 949.93 975.05 o 0.877133 3 -1 15 1.31 1.29 o 0.874789 5 -1 8 3235.87 3180.75 o 0.874379 4 -2 13 53.63 54.36 o 0.872505 6 -3 0 5095.66 5129.56 o 0.867149 6 -3 1 26.68 25.38 o 0.865758 6 -3 2 128.49 120.85 o 0.861627 4 -1 13 111.00 119.06 o 0.856593 5 -2 10 2189.71 2350.40 o 0.856428 6 -3 3 66.16 71.58 o 0.854870 6 -2 0 18.90 19.23 o 0.851523 5 -1 9 0.14 0.13 o 0.851053 2 -1 17 140.52 136.22 o 0.850222 6 -2 1 54.32 52.12 o 0.850206 0 0 18 93.02 89.24 o 0.849647 5 0 6 1.14 1.10 o 0.849631 6 -2 2 661.24 651.71 o 0.846292 6 -3 4 0.71 0.70 o 0.845672 4 0 12 1061.64 1055.15 o 0.844028 6 -2 3 127.29 104.36 o 0.839887 4 -2 14 2344.21 2400.57 o 0.836523 1 0 18 1197.69 1246.82 o 0.834932 6 -3 5 0.01 0.01 o 0.834271 3 -1 16 811.49 842.56 o 0.833539 6 -2 4 2259.39 2185.85 o 0.831160 5 -2 11 0.06 0.06 o 0.829549 5 -1 10 270.90 253.05 o 0.827070 4 -1 14 138.53 144.51 o 0.822469 6 -3 6 1301.53 1356.52 o 0.820943 6 -2 5 0.73 0.76 o 0.820328 5 0 8 466.74 415.60 o 0.815140 6 -1 0 42.77 42.38 o 0.809272 6 -1 1 0.09 0.09 o 0.808142 2 -1 18 417.78 419.39 o 0.807661 6 -2 6 292.69 292.65 o 0.807647 3 0 16 591.41 572.77 o 0.806399 6 -3 7 55.52 54.33 o 0.805986 6 -1 2 599.12 594.02 o 0.804778 5 -2 12 970.58 1008.82 o 0.802830 5 -1 11 3.45 3.59 o 0.802785 4 -2 15 5.99 6.23 o 0.802436 6 -1 3 0.49 0.62 o 0.799264 3 -1 17 36.36 38.82 o 0.795462 2 0 18 1353.90 1441.80 o 0.794990 6 -2 7 115.07 114.17 o 0.793393 6 -1 4 1783.06 1797.76 o 0.791731 4 -1 15 1.98 1.92 o 0.790006 6 -3 8 2718.55 2651.64 o 0.789704 4 0 14 59.82 63.93 o 0.784209 6 -1 5 0.21 0.25 o 0.782353 5 -1 12 401.58 412.36 o 0.778496 6 -2 8 142.49 142.86 o 0.777848 5 -2 13 0.07 0.07 o 0.776528 5 0 10 2245.46 2236.83 o 0.776405 6 -3 9 16.94 16.91 o 0.772393 6 -1 6 211.14 207.52 o 0.771330 4 -2 16 712.60 691.68 o 0.770242 2 -1 19 9.52 8.83 o 0.768960 0 0 20 3218.37 2913.40 o 0.764682 6 -2 9 23.71 23.67 o 0.761289 3 -1 18 958.75 964.71 o 0.760282 4 -1 16 792.48 789.63 o 0.759229 6 -1 7 0.16 0.16 o 0.758884 5 -1 13 0.11 0.09 o 0.754444 6 -3 10 83.52 69.04 o 0.754331 1 0 20 164.80 131.81 o 0.753902 6 0 0 3190.34 2945.39 o 0.750973 5 -2 14 1.70 1.56 o 0.750835 6 0 2 94.59 79.82 o 0.747377 6 -1 8 155.84 162.67 o 0.745247 6 -2 10 673.82 685.09 o 0.743977 7 -3 0 51.86 46.27 o 0.740755 4 -2 17 44.83 40.53 o 0.739898 7 -3 1 11.10 10.01 o 0.739888 3 0 18 78.01 72.54 o 0.739519 7 -3 2 480.08 483.02 o 0.737304 6 0 4 0.70 0.72 o 0.736893 5 0 12 802.34 840.84 o 0.735805 6 -3 11 16.74 17.55 o 0.735770 2 -1 20 1217.23 1227.95 o 0.733644 7 -3 3 25.40 25.67 o 0.733057 5 -1 14 1794.06 1933.11 o 0.730817 6 -1 9 0.91 0.98 o 0.730646 4 -1 17 77.03 83.97 o 0.730120 4 0 16 538.89 586.59 o 0.728824 3 -1 19 4.61 4.53 o 0.727738 7 -3 4 1289.50 1251.69 o 0.727232 6 -2 11 45.09 43.60 o 0.726153 5 -2 15 0.19 0.18 o 0.725895 2 0 20 442.26 500.21 o 0.724108 7 -2 0 3450.33 3475.01 o 0.721511 7 -2 1 2.34 2.39 o 0.720710 6 0 6 916.81 930.77 o 0.720359 7 -3 5 0.32 0.34 o 0.719944 7 -2 2 127.57 140.25 o 0.718321 6 -3 12 263.16 277.67 o 0.716935 6 -1 10 682.89 707.95 o 0.715301 7 -2 3 4.96 5.23 o 0.714392 4 -2 18 204.09 197.39 o 0.711335 7 -3 6 128.57 124.44 o 0.711326 7 -2 4 15.82 15.41 o 0.708998 6 -2 12 578.49 540.94 o 0.708029 5 -1 15 2.73 2.55 o 0.707758 4 -1 18 614.14 624.87 o 0.702633 7 -2 5 0.18 0.19 o 0.702239 5 -2 16 289.00 293.88 o 0.701802 7 -3 7 24.79 25.19 o 0.701530 2 -1 21 49.91 50.42 o 0.701306 6 -1 11 0.11 0.10 o 0.699416 6 0 8 1733.26 1674.21 o 0.698976 6 -3 13 32.86 31.73 o 0.698017 3 -1 20 160.20 147.78 o 0.697589 0 0 22 620.84 604.50 o 0.695165 5 0 14 40.42 39.46 o 0.695157 7 -2 6 552.84 534.51 o 0.694235 7 -3 8 116.74 89.48 o 0.690714 6 -2 13 57.20 43.37 o 0.689790 7 -1 0 1.97 1.60 o 0.687134 1 0 22 32.71 28.51 o 0.687037 7 -1 1 26.00 25.57 o 0.686441 5 -1 16 552.20 569.00 o 0.685372 7 -2 7 5.14 5.28 o 0.685119 4 -2 19 1.61 1.67 o 0.684469 7 -1 2 315.45 324.51 o 0.684376 6 -1 12 491.45 498.63 o 0.683177 3 0 20 1681.97 1579.45 o 0.681446 7 -1 3 59.61 55.53 o 0.680976 6 -3 14 1102.39 1130.21 o 0.679179 7 -3 9 4.06 4.18 o 0.679042 5 -2 17 0.00 0.00 < 0.678620 4 0 18 574.35 600.90 o 0.678327 4 -1 19 11.54 10.64 o 0.676706 7 -1 4 1253.94 1162.44 o 0.676299 7 -2 8 1599.72 1586.82 o 0.675034 6 0 10 58.70 61.35 o 0.674090 2 -1 22 555.69 565.81 o 0.671600 6 -2 14 64.12 65.34 o 0.671592 7 -1 5 0.77 0.76 o 0.670425 3 -1 21 11.60 9.97 o 0.669613 6 -1 13 0.69 0.67 o 0.666749 7 -3 10 585.57 572.46 o 0.666671 2 0 22 42.64 35.42 o 0.664262 7 -2 9 0.41 0.34 o 0.664126 5 -1 17 1.04 0.86 o 0.663731 7 -1 6 182.89 150.72 o 0.663450 6 -3 15 0.05 0.04 o 0.660552 4 -2 20 1038.09 878.47 o 0.659205 5 -2 18 727.72 701.29 o 0.656380 5 0 16 127.54 122.88 o 0.655702 7 -1 7 59.03 56.27 o 0.655480 7 -3 11 11.60 7.43 o 0.653755 6 -2 15 2.97 1.87 o 0.653566 7 -2 10 3.23 1.73 o 0.652539 4 -1 20 55.20 31.61 o 0.652261 8 -4 0 1360.04 1164.27 o 0.650362 6 -1 14 32.29 27.61 o 0.650272 8 -4 1 14.59 12.71 o 0.649774 8 -4 2 39.52 23.16 o 0.648022 6 0 12 171.13 110.65 o 0.647004 7 -1 8 61.75 40.13 o 0.646632 8 -4 3 37.67 17.02 o 0.645133 2 -1 23 31.35 22.64 o 0.644229 8 -3 0 167.46 124.61 o 0.643691 7 0 0 161.87 120.45 o 0.643691 3 -1 22 24.47 18.45 o 0.643611 8 -3 1 1.09 0.87 o 0.643122 5 -1 18 144.69 121.11 o 0.642879 6 -3 16 371.86 349.27 o 0.642242 7 0 2 363.76 345.41 o 0.641423 8 -3 2 352.68 334.89 o 0.641423 8 -4 4 27.42 26.18 o 0.641152 7 -3 12 421.37 394.14 o 0.640435 7 -2 11 2.96 2.75 o 0.640412 8 -3 3 2.90 1.85 o 0.638620 0 0 24 7.84 6.62 o 0.637235 7 -1 9 9.65 8.69 o 0.637025 8 -4 5 0.00 0.00 < 0.636141 6 -2 16 389.85 385.52 o 0.635816 4 -2 21 20.23 19.64 o 0.635447 5 -2 19 0.19 0.19 o 0.635094 8 -3 4 456.43 439.31 o 0.634758 7 0 4 481.43 463.37 o 0.634758 6 -1 15 0.90 0.88 o 0.633868 4 0 20 95.34 77.62 o 0.632678 1 0 24 595.06 535.61 o 0.630956 3 0 22 404.34 364.37 o 0.630868 8 -4 6 788.74 707.78 o 0.630172 8 -3 5 0.01 0.00 < 0.629894 4 -1 21 24.82 21.26 o 0.629221 7 -2 12 209.78 210.25 o 0.627876 7 -3 13 11.89 12.31 o 0.626842 7 -1 10 297.53 306.46 o 0.626778 8 -2 0 37.19 31.46 o 0.624847 6 -3 17 23.07 19.66 o 0.624333 8 -2 1 6.53 5.50 o 0.624326 8 -3 6 14.07 12.10 o 0.624098 7 0 6 10.45 8.98 o 0.624098 8 -4 7 33.15 29.78 o 0.623331 5 -1 19 1.19 1.06 o 0.622841 8 -2 2 255.78 229.60 o 0.622772 8 -2 3 16.59 14.15 o 0.620206 3 -1 23 10.87 11.15 o 0.619402 2 -1 24 99.98 102.29 o 0.618936 6 0 14 818.17 839.63 o 0.618847 6 -2 17 49.81 51.43 o 0.618424 5 0 18 686.91 706.30 o 0.618203 6 -1 16 325.70 336.50 o 0.617636 8 -3 7 2.38 2.43 o 0.617451 8 -2 4 626.87 632.31 o 0.616666 7 -1 11 28.19 28.46 o 0.616008 8 -4 8 855.30 853.44 o 0.615707 7 -2 13 1.72 1.76 o 0.615052 5 -2 20 226.05 230.35 o 0.614758 2 0 24 286.87 276.23 o 0.613179 4 -2 22 450.02 431.18 o 0.613098 7 -3 14 19.89 19.01 o 0.613092 8 -2 5 0.00 0.00 < 0.612204 7 0 8 109.57 92.15 o 0.610038 8 -3 8 138.85 116.77 o 0.610038 4 -1 22 17.82 16.47 o 0.607500 8 -4 9 12.24 11.37 o 0.607396 6 -3 18 54.89 49.41 o 0.606884 8 -2 6 59.63 54.61 o 0.606878 7 -1 12 296.47 263.39 o 0.604827 5 -1 20 587.10 565.41 o 0.603625 7 -2 14 564.07 615.25 o 0.602047 8 -3 9 1.09 1.19 o 0.601952 6 -1 17 0.05 0.05 o 0.601657 6 -2 18 322.82 355.80 o 0.601453 8 -2 7 14.86 17.15 o 0.600761 7 -3 15 1.45 1.18 o 0.599286 8 -4 10 120.81 104.15 o 0.598494 3 -1 24 422.83 384.34 o 0.596824 8 -1 0 1114.80 1011.06 o 0.596813 8 -1 1 0.95 0.86 o 0.596359 2 -1 25 6.30 5.69 o 0.595502 5 -2 21 0.07 0.06 o 0.595354 8 -1 2 37.80 36.81 o 0.595003 8 -2 8 75.21 75.96 o 0.593927 7 -1 13 28.88 29.25 o 0.593338 7 0 10 634.56 643.09 o 0.593283 8 -3 10 634.84 643.38 o 0.593283 8 -1 3 2.45 2.49 o 0.592764 4 -2 23 9.32 9.17 o 0.592063 4 0 22 24.31 24.25 o 0.591583 6 0 16 247.29 212.75 o 0.590520 6 -3 19 5.87 5.05 o 0.589942 8 -1 4 2.25 1.83 o 0.589672 8 -4 11 9.94 9.29 < 0.589096 7 -2 15 0.79 0.77 < 0.588958 0 0 26 48.82 48.19 < 0.588217 4 -1 23 26.12 27.62 o 0.587017 3 0 24 0.07 0.08 o 0.586620 8 -2 9 4.99 5.53 o 0.586456 6 -1 18 334.35 354.50 o 0.585995 8 -1 5 0.00 0.00 < 0.585767 7 -3 16 213.87 225.78 o 0.585513 5 -1 21 2.03 2.14 o 0.585225 6 -2 19 4.65 4.90 o 0.584949 8 -3 11 0.54 0.49 o 0.584125 1 0 26 186.53 182.99 o 0.583268 5 0 20 300.46 296.44 o 0.583059 7 -1 14 47.73 44.73 o 0.581637 8 -1 6 472.08 441.42 o 0.581097 8 -4 12 92.42 90.95 o 0.579295 8 -2 10 348.74 340.21 o 0.578432 9 -4 0 13.11 12.22 o 0.576913 5 -2 22 15.35 15.24 o 0.576856 9 -4 1 0.82 0.79 o 0.576503 7 -2 16 111.36 109.52 o 0.575870 3 -1 25 0.80 0.79 o 0.575729 8 -1 7 2.29 2.24 o 0.575719 9 -4 2 173.20 174.80 o 0.575279 7 0 12 308.10 310.01 o 0.574566 8 -3 12 250.36 251.91 o 0.574566 2 -1 26 0.06 0.06 o 0.573733 6 -3 20 552.27 523.92 o 0.573535 9 -4 3 1.67 1.54 o 0.573254 4 -2 24 25.96 21.73 o 0.572251 7 -3 17 12.15 12.24 o 0.571847 6 -1 19 1.18 1.14 o 0.570700 9 -4 4 490.76 477.85 o 0.570456 8 -2 11 4.78 4.66 o 0.569935 7 -1 15 3.64 3.57 o 0.569810 8 -1 8 645.09 632.50 o 0.569696 8 -4 13 24.53 25.10 o 0.569177 2 0 26 80.41 81.57 o 0.569138 6 -2 20 30.87 31.98 o 0.568944 4 -1 24 441.83 428.48 o 0.567692 9 -3 0 869.91 840.44 o 0.567682 5 -1 22 308.95 298.89 o 0.567627 9 -3 1 13.80 13.30 o 0.567291 9 -4 5 0.11 0.11 o 0.566918 9 -3 2 28.90 31.19 o 0.566124 8 -3 13 1.86 1.40 o 0.564689 9 -3 3 33.40 24.88 o 0.564195 8 0 0 111.45 85.70 o 0.563230 8 -1 9 0.79 0.62 o 0.563094 7 -2 17 2.19 1.66 o 0.562853 6 0 18 45.22 36.54 o 0.562686 9 -4 6 47.33 38.09 o 0.562681 8 0 2 201.80 183.52 o 0.561708 9 -3 4 1.04 0.96 o 0.561527 8 -2 12 205.91 189.80 o 0.561045 5 -2 23 0.07 0.07 o 0.559232 8 -4 14 756.52 774.05 o 0.558824 7 -3 18 252.27 254.23 o 0.558349 9 -3 5 0.12 0.12 o 0.558151 7 -1 16 236.19 242.24 o 0.557931 9 -4 7 1.90 1.91 o 0.557795 6 -3 21 6.28 6.26 o 0.557682 8 0 4 216.54 210.54 o 0.557216 3 -1 26 136.33 127.62 o 0.555988 8 -1 10 47.57 46.57 o 0.555979 6 -1 20 38.59 38.12 o 0.555807 4 0 24 332.36 303.13 o 0.554639 8 -3 14 5.26 4.80 o 0.554575 7 0 14 1.62 1.48 o 0.554575 9 -3 6 393.89 358.74 o 0.554106 4 -2 25 3.86 3.52 o 0.553578 2 -1 27 27.75 25.30 o 0.553463 6 -2 21 20.56 18.79 o 0.553459 9 -4 8 35.90 30.20 o 0.552312 8 -2 13 10.41 9.23 o 0.551838 5 -1 23 0.11 0.07 < 0.550812 9 -2 0 18.97 12.98 o 0.550476 5 0 22 13.04 8.42 o 0.550426 9 -2 1 10.53 7.22 o 0.550119 7 -2 18 35.44 24.83 o 0.549968 8 0 6 2.86 1.98 o 0.549963 4 -1 25 1.39 1.05 o 0.549447 9 -3 7 31.98 24.26 o 0.549438 9 -2 2 147.86 111.45 o 0.549055 8 -1 11 0.80 0.63 o 0.548421 8 -4 15 0.01 0.00 < 0.548309 3 0 26 10.52 6.77 < 0.547711 9 -2 3 24.07 16.52 < 0.547294 9 -4 9 0.08 0.06 o 0.546289 0 0 28 1044.33 809.40 o 0.546201 7 -1 17 30.01 22.04 o 0.546069 7 -3 19 0.49 0.45 o 0.545070 9 -2 4 352.87 323.47 o 0.544858 8 -3 15 0.04 0.04 o 0.544294 9 -3 8 519.20 474.37 o 0.544195 5 -2 24 151.82 143.82 o 0.542447 6 -3 22 206.51 195.32 o 0.542391 8 -2 14 3.70 3.51 o 0.542387 1 0 28 11.07 10.50 o 0.542232 9 -2 5 0.36 0.34 o 0.541772 6 -1 21 0.22 0.20 o 0.541343 8 -1 12 64.05 56.20 o 0.540486 8 0 8 83.25 73.06 o 0.540269 9 -4 10 219.74 192.05 o 0.539785 6 -2 22 10.90 9.34 o 0.538504 9 -3 9 7.73 6.76 o 0.538432 9 -2 6 24.28 20.86 o 0.538071 8 -4 16 200.10 170.39 o 0.537701 3 -1 27 8.29 7.19 o 0.537482 7 -2 19 0.01 0.00 < 0.537265 4 -2 26 4.40 3.47 o 0.535961 6 0 20 369.02 295.24 o 0.535799 5 -1 24 23.68 20.96 o 0.534752 2 -1 28 580.43 507.84 o 0.534546 7 -1 18 168.78 148.63 o 0.534279 7 0 16 59.04 52.32 o 0.533913 8 -3 16 81.88 72.56 o 0.533913 9 -2 7 24.46 21.60 o 0.533793 9 -4 11 1.35 1.08 o 0.532860 8 -2 15 0.00 0.00 < 0.532758 8 -1 13 1.81 1.56 o 0.532241 4 -1 26 139.88 121.01 o 0.532209 9 -3 10 43.02 37.25 o 0.532201 7 -3 20 40.43 34.99 o 0.532051 2 0 28 30.05 20.17 < 0.530824 9 -2 8 29.13 23.21 o 0.528982 8 0 10 405.28 320.31 o 0.528527 6 -3 23 10.46 7.98 o 0.527664 9 -1 0 0.00 0.00 o 0.527368 6 -1 22 5.78 4.48 o 0.527325 8 -4 17 17.56 14.43 o 0.527059 9 -1 1 7.56 6.24 o 0.527055 5 -2 25 0.14 0.12 o 0.526463 9 -1 2 92.05 77.24 o 0.526119 9 -4 12 163.50 146.71 o 0.525573 9 -3 11 13.02 11.59 o 0.525561 7 -2 20 480.70 450.50 o 0.524784 9 -1 3 18.98 18.49 o 0.524569 6 -2 23 15.45 15.24 o 0.524083 8 -1 14 470.49 481.22 o 0.523746 9 -2 9 3.80 3.89 o 0.523683 8 -3 17 1.06 1.07 o 0.523490 8 -2 16 124.06 120.23 o 0.523012 7 -1 19 1.17 1.06 o 0.522610 9 -1 4 388.37 344.20 o 0.522422 4 0 26 91.05 65.40 o 0.521409 5 0 24 63.63 49.83 o 0.520297 10 -5 0 1035.32 806.86 o 0.520289 3 -1 28 11.25 8.79 o 0.520106 10 -5 1 0.05 0.04 o 0.519988 9 -1 5 0.01 0.00 < 0.519700 5 -1 25 1.95 1.56 o 0.519420 4 -2 27 10.06 7.63 o 0.519326 7 -3 21 6.21 4.72 o 0.519322 10 -5 2 46.18 37.66 o 0.519089 9 -3 12 41.88 41.96 o 0.518565 9 -4 13 0.56 0.54 o 0.517982 9 -2 10 210.12 204.82 o 0.517946 10 -5 3 0.05 0.05 o 0.517601 10 -4 0 0.02 0.01 o 0.516855 2 -1 29 0.44 0.36 o 0.516854 10 -4 1 0.03 0.03 o 0.516560 8 -4 18 65.95 53.15 o 0.516434 9 -1 6 54.67 45.10 o 0.516431 4 -1 27 19.35 14.46 o 0.515910 10 -4 2 83.27 62.42 o 0.515678 10 -5 4 46.61 36.12 o 0.515538 8 0 12 138.61 102.98 o 0.515165 8 -1 15 0.00 0.00 < 0.515061 10 -4 3 0.00 0.00 < 0.514219 6 -1 23 0.54 0.49 o 0.513761 6 -3 24 2.16 1.94 o 0.513495 3 0 28 690.48 605.75 o 0.513312 8 -2 17 7.74 6.76 o 0.513202 7 0 18 211.49 181.79 o 0.513075 8 -3 18 269.29 231.46 o 0.513075 10 -5 5 0.06 0.05 o 0.512922 9 -1 7 17.61 14.22 o 0.512645 7 -2 21 1.52 1.22 o 0.512558 10 -4 4 349.19 255.68 o 0.512196 9 -2 11 12.25 8.77 o 0.511819 9 -3 13 19.37 12.71 o 0.511270 5 -2 26 52.26 35.17 o 0.511242 7 -1 20 8.64 6.40 o 0.511101 6 -2 24 252.75 228.39 o 0.510192 6 0 22 166.22 149.92 o 0.510146 9 -4 14 7.28 6.63 o 0.510143 0 0 30 55.94 51.07 o 0.509788 10 -5 6 97.37 89.36 o 0.509778 10 -4 5 0.22 0.20 o 0.509630 9 -1 8 15.67 14.70 < 0.508379 10 -3 0 32.56 25.48 o 0.506946 7 -3 22 9.20 7.44 o 0.506907 10 -3 1 0.62 0.49 o 0.506668 1 0 30 20.62 16.96 o 0.506556 10 -4 6 46.70 37.38 o 0.506546 8 -1 16 108.01 89.84 o 0.506238 10 -5 7 0.11 0.09 o 0.506136 8 -4 19 6.04 5.04 o 0.505873 10 -3 2 106.99 89.95 o 0.505836 9 -2 12 144.44 120.10 o 0.505351 5 -1 26 0.19 0.15 o 0.504784 10 -3 3 1.40 1.33 o 0.504458 3 -1 29 0.57 0.55 o 0.503767 9 -3 14 392.19 375.35 o 0.503726 9 -1 9 5.39 5.17 o 0.503671 4 -2 28 441.67 423.19 o 0.503602 8 -2 18 179.64 172.68 o 0.503379 10 -4 7 0.09 0.08 o 0.502972 8 -3 19 0.60 0.56 o 0.502715 10 -3 4 166.57 153.11 o 0.502548 9 -4 15 0.53 0.48 o 0.502106 10 -5 8 449.39 402.14 o 0.502029 6 -1 24 193.41 177.60 o 0.500655 9 0 0 578.54 534.27 o 0.500649 7 -2 22 202.31 186.08 o 0.500611 8 0 14 9.46 8.73 o 0.500608 4 -1 28 2.25 2.07 o 0.500486 2 -1 30 0.08 0.07 o 0.500273 10 -3 5 0.02 0.02 o 0.500124 6 -3 25 0.05 0.04 o 0.499874 7 -1 21 15.55 14.14 o 0.499787 9 0 2 22.47 19.75 o 0.499579 10 -4 8 12.63 11.88 o 0.498941 9 -2 13 11.99 11.48 o 0.498592 9 -1 10 94.68 91.12 o 0.498560 10 -5 9 0.05 0.04 < 0.497493 8 -1 17 1.52 1.40 < 0.497326 2 0 30 69.10 68.78 < 0.497217 10 -3 6 4.27 4.10 < 0.497208 6 -2 25 2.44 2.11 < 0.496826 5 -2 27 0.00 0.00 < 0.496743 9 0 4 5.70 5.11 < 0.496411 9 -3 15 0.62 0.48 < 0.495985 8 -4 20 151.92 114.23 < 0.495414 7 -3 23 3.09 2.38 < 0.494824 10 -4 9 0.34 0.27 < 0.494488 9 -4 16 84.85 70.27 < 0.493922 10 -3 7 1.41 1.16 < 0.493827 8 -2 19 2.23 1.87 < 0.493583 9 -1 11 6.27 5.09 o 0.493088 5 0 26 23.18 22.48 o 0.492572 10 -5 10 3.80 3.32 o 0.492566 7 0 20 80.07 81.62 o 0.492446 8 -3 20 73.99 75.42 o 0.492446 10 -2 0 596.17 591.19 o 0.491627 9 -2 14 2.51 2.48 o 0.491589 4 0 28 2.74 2.71 o 0.491473 10 -2 1 0.92 0.93 o 0.491373 9 0 6 157.34 159.28 o 0.491262 5 -1 27 0.14 0.13 o 0.490814 10 -2 2 23.46 22.07 o 0.490614 10 -3 8 28.94 27.15 o 0.490010 orex-supercell-96532aa/data/examples/TeSe/000077500000000000000000000000001465364771700204325ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/TeSe/TeSe.cif000066400000000000000000000012551465364771700217600ustar00rootroot00000000000000data_VESTA_phase_1 _chemical_name_common '' _cell_length_a 4.456000 _cell_length_b 4.456000 _cell_length_c 5.921000 _cell_angle_alpha 90.000000 _cell_angle_beta 90.000000 _cell_angle_gamma 120.000000 _cell_volume 101.815999 _space_group_name_H-M_alt 'P 31 2 1' _space_group_IT_number 152 loop_ _space_group_symop_operation_xyz 'x, y, z' '-y, x-y, z+1/3' '-x+y, -x, z+2/3' 'y, x, -z' 'x-y, -y, -z+2/3' '-x, -x+y, -z+1/3' loop_ _atom_site_label _atom_site_occupancy _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_adp_type _atom_site_U_iso_or_equiv _atom_site_type_symbol Te1 0.5 -0.263600 0.000000 0.333333 Biso ? Te Se1 0.5 -0.263600 0.000000 0.333333 Biso ? Se orex-supercell-96532aa/data/examples/Ti1-xMgxN/000077500000000000000000000000001465364771700212665ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/Ti1-xMgxN/README000066400000000000000000000006311465364771700221460ustar00rootroot00000000000000The example prepeared specially for Zouaoui Haddou. Supercell should be installed. Run script df_cfg.bash. The script generated one configuration for Ti1-xMgxN alloy for several concentrations x=0, 0.125,0.25,0.375,0.5,0.625,0.75,0.875,1 and supercell sizes 1x1x2, 1x2x2 2x2x2. The result of the program can be find here. http://orex.github.io/supercell/examples/Ti1-xMgxN/Ti1-xMgxN-rnd-structures.tar.gz orex-supercell-96532aa/data/examples/Ti1-xMgxN/Ti1-xMgxN.cif000066400000000000000000000061341465364771700234510ustar00rootroot00000000000000data_test loop_ _chemical_formula_sum 'N Ti' _chemical_name_mineral Osbornite _space_group_IT_number 225 _symmetry_space_group_name_Hall '-F 4 2 3' _symmetry_space_group_name_H-M 'F m -3 m' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_length_a 4.235 _cell_length_b 4.235 _cell_length_c 4.235 _cell_volume 75.956 loop_ _symmetry_equiv_pos_as_xyz x,y,z x,1/2+y,1/2+z 1/2+x,y,1/2+z 1/2+x,1/2+y,z z,-x,y z,1/2-x,1/2+y 1/2+z,-x,1/2+y 1/2+z,1/2-x,y -y,z,-x -y,1/2+z,1/2-x 1/2-y,z,1/2-x 1/2-y,1/2+z,-x x,-y,z x,1/2-y,1/2+z 1/2+x,-y,1/2+z 1/2+x,1/2-y,z -z,x,-y -z,1/2+x,1/2-y 1/2-z,x,1/2-y 1/2-z,1/2+x,-y y,-z,x y,1/2-z,1/2+x 1/2+y,-z,1/2+x 1/2+y,1/2-z,x -x,y,-z -x,1/2+y,1/2-z 1/2-x,y,1/2-z 1/2-x,1/2+y,-z x,-z,-y x,1/2-z,1/2-y 1/2+x,-z,1/2-y 1/2+x,1/2-z,-y -z,y,x -z,1/2+y,1/2+x 1/2-z,y,1/2+x 1/2-z,1/2+y,x y,-x,-z y,1/2-x,1/2-z 1/2+y,-x,1/2-z 1/2+y,1/2-x,-z -x,z,y -x,1/2+z,1/2+y 1/2-x,z,1/2+y 1/2-x,1/2+z,y z,-y,-x z,1/2-y,1/2-x 1/2+z,-y,1/2-x 1/2+z,1/2-y,-x -y,x,z -y,1/2+x,1/2+z 1/2-y,x,1/2+z 1/2-y,1/2+x,z x,z,y x,1/2+z,1/2+y 1/2+x,z,1/2+y 1/2+x,1/2+z,y -z,-y,-x -z,1/2-y,1/2-x 1/2-z,-y,1/2-x 1/2-z,1/2-y,-x y,x,z y,1/2+x,1/2+z 1/2+y,x,1/2+z 1/2+y,1/2+x,z -x,-z,-y -x,1/2-z,1/2-y 1/2-x,-z,1/2-y 1/2-x,1/2-z,-y z,y,x z,1/2+y,1/2+x 1/2+z,y,1/2+x 1/2+z,1/2+y,x -y,-x,-z -y,1/2-x,1/2-z 1/2-y,-x,1/2-z 1/2-y,1/2-x,-z z,x,-y z,1/2+x,1/2-y 1/2+z,x,1/2-y 1/2+z,1/2+x,-y -y,-z,x -y,1/2-z,1/2+x 1/2-y,-z,1/2+x 1/2-y,1/2-z,x x,y,-z x,1/2+y,1/2-z 1/2+x,y,1/2-z 1/2+x,1/2+y,-z -z,-x,y -z,1/2-x,1/2+y 1/2-z,-x,1/2+y 1/2-z,1/2-x,y y,z,-x y,1/2+z,1/2-x 1/2+y,z,1/2-x 1/2+y,1/2+z,-x -x,-y,z -x,1/2-y,1/2+z 1/2-x,-y,1/2+z 1/2-x,1/2-y,z -z,x,y -z,1/2+x,1/2+y 1/2-z,x,1/2+y 1/2-z,1/2+x,y y,-z,-x y,1/2-z,1/2-x 1/2+y,-z,1/2-x 1/2+y,1/2-z,-x -x,y,z -x,1/2+y,1/2+z 1/2-x,y,1/2+z 1/2-x,1/2+y,z z,-x,-y z,1/2-x,1/2-y 1/2+z,-x,1/2-y 1/2+z,1/2-x,-y -y,z,x -y,1/2+z,1/2+x 1/2-y,z,1/2+x 1/2-y,1/2+z,x x,-y,-z x,1/2-y,1/2-z 1/2+x,-y,1/2-z 1/2+x,1/2-y,-z -x,z,-y -x,1/2+z,1/2-y 1/2-x,z,1/2-y 1/2-x,1/2+z,-y z,-y,x z,1/2-y,1/2+x 1/2+z,-y,1/2+x 1/2+z,1/2-y,x -y,x,-z -y,1/2+x,1/2-z 1/2-y,x,1/2-z 1/2-y,1/2+x,-z x,-z,y x,1/2-z,1/2+y 1/2+x,-z,1/2+y 1/2+x,1/2-z,y -z,y,-x -z,1/2+y,1/2-x 1/2-z,y,1/2-x 1/2-z,1/2+y,-x y,-x,z y,1/2-x,1/2+z 1/2+y,-x,1/2+z 1/2+y,1/2-x,z -x,-z,y -x,1/2-z,1/2+y 1/2-x,-z,1/2+y 1/2-x,1/2-z,y z,y,-x z,1/2+y,1/2-x 1/2+z,y,1/2-x 1/2+z,1/2+y,-x -y,-x,z -y,1/2-x,1/2+z 1/2-y,-x,1/2+z 1/2-y,1/2-x,z x,z,-y x,1/2+z,1/2-y 1/2+x,z,1/2-y 1/2+x,1/2+z,-y -z,-y,x -z,1/2-y,1/2+x 1/2-z,-y,1/2+x 1/2-z,1/2-y,x y,x,-z y,1/2+x,1/2-z 1/2+y,x,1/2-z 1/2+y,1/2+x,-z -z,-x,-y -z,1/2-x,1/2-y 1/2-z,-x,1/2-y 1/2-z,1/2-x,-y y,z,x y,1/2+z,1/2+x 1/2+y,z,1/2+x 1/2+y,1/2+z,x -x,-y,-z -x,1/2-y,1/2-z 1/2-x,-y,1/2-z 1/2-x,1/2-y,-z z,x,y z,1/2+x,1/2+y 1/2+z,x,1/2+y 1/2+z,1/2+x,y -y,-z,-x -y,1/2-z,1/2-x 1/2-y,-z,1/2-x 1/2-y,1/2-z,-x loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupation Ti 0.00000 0.00000 0.00000 0.5 Mg 0.00000 0.00000 0.00000 0.5 N 0.50000 0.50000 0.50000 1.0 orex-supercell-96532aa/data/examples/Ti1-xMgxN/df_cfg.bash000077500000000000000000000007171465364771700233450ustar00rootroot00000000000000#!/bin/bash cells=( 1x1x2 1x2x2 2x2x2 ) xm1=( 0.0 0.125 0.25 0.375 0.5 0.625 0.75 0.875 1.0 ) mkdir -p out echo "The process is long, please wait" for i in "${cells[@]}" do echo "Cell $i" M=`echo $i | sed 's/x/ /g' | awk '{print 4*$1*$2*$3}'` for j in "${xm1[@]}" do P=`echo "$M $j" | awk '{print $1*$2}'` supercell -i Ti1-xMgxN.cif -s $i -m -p "Mg:p=$P" -p "Ti:p=$(($M-$P))" -o out/TiMgN-$i-x$j -n r1 > /dev/null 2>&1 & done wait done orex-supercell-96532aa/data/examples/alpha-SiGeO2/000077500000000000000000000000001465364771700217055ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/alpha-SiGeO2/README000066400000000000000000000011121465364771700225600ustar00rootroot00000000000000********************************** alpha-SixGe(1-x)O2 example ********************************** Description: The example generates Table 2 in : El-Kelany, K. E., Erba, a, Carbonnière, P., & Rérat, M. (2014). Piezoelectric, elastic, structural and dielectric properties of the Si(1-x)Ge(x)O(2) solid solution: a theoretical study. Journal of Physics. Condensed Matter : An Institute of Physics Journal, 26(20), 205401. doi:10.1088/0953-8984/26/20/205401 Instructions: Supercell should be installed. Run script df_cfg.bash Results: The table is directly printed in the terminal. orex-supercell-96532aa/data/examples/alpha-SiGeO2/alpha-SiGeO2.cif000066400000000000000000000147611465364771700245140ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2014-07-11 16:04:56 +0000 (Fri, 11 Jul 2014) $ #$Revision: 120072 $ #$URL: file:///home/coder/svn-repositories/cod/cif/2/30/03/2300366.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/. The original data for this entry # were provided by IUCr Journals, http://journals.iucr.org/. # # The file may be used within the scientific community so long as # proper attribution is given to the journal article from which the # data were obtained. # data_2300366 loop_ _publ_author_name 'Lignie, Adrien' 'Granier, Dominique' 'Armand, Pascale' 'Haines, Julien' 'Papet, Philippe' _publ_section_title ; Modulation of quartz-like GeO~2~ structure by Si substitution: an X-ray diffraction study of Ge~1{-~x}Si~x~O~2~ (0 {\/leq} x < 0.2) flux-grown single crystals ; _journal_issue 2 _journal_name_full 'Journal of Applied Crystallography' _journal_page_first 272 _journal_page_last 278 _journal_volume 45 _journal_year 2012 _chemical_formula_sum 'Ge0.97 O2 Si0.03' _chemical_formula_weight 103.43 _space_group_IT_number 154 _symmetry_space_group_name_Hall 'P 32 2"' _symmetry_space_group_name_H-M 'P 32 2 1' _atom_sites_solution_primary direct _atom_sites_solution_secondary difmap _audit_creation_method SHELXL-97 _cell_angle_alpha 90.00 _cell_angle_beta 90.00 _cell_angle_gamma 120.00 _cell_formula_units_Z 3 _cell_length_a 4.98300(10) _cell_length_b 4.98300(10) _cell_length_c 5.6339(2) _cell_measurement_temperature 298(2) _cell_measurement_theta_max 32.2792 _cell_measurement_theta_min 3.6021 _cell_volume 121.149(6) _computing_structure_refinement 'SHELXL-97 (Sheldrick, 2008)' _diffrn_ambient_temperature 298(2) _diffrn_measured_fraction_theta_full 0.974 _diffrn_measured_fraction_theta_max 0.974 _diffrn_radiation_monochromator graphite _diffrn_radiation_source 'fine-focus sealed tube' _diffrn_radiation_type MoK\a _diffrn_radiation_wavelength 0.71073 _diffrn_reflns_av_R_equivalents 0.0317 _diffrn_reflns_av_sigmaI/netI 0.0131 _diffrn_reflns_limit_h_max 7 _diffrn_reflns_limit_h_min -7 _diffrn_reflns_limit_k_max 7 _diffrn_reflns_limit_k_min -7 _diffrn_reflns_limit_l_max 8 _diffrn_reflns_limit_l_min -8 _diffrn_reflns_number 2144 _diffrn_reflns_theta_full 32.37 _diffrn_reflns_theta_max 32.37 _diffrn_reflns_theta_min 4.72 _exptl_absorpt_coefficient_mu 17.981 _exptl_absorpt_correction_T_max 0.254 _exptl_absorpt_correction_T_min 0.080 _exptl_absorpt_correction_type gaussian _exptl_absorpt_process_details ; CrysAlisPro_Software_system,_Version_1.171.32. ; _exptl_crystal_density_diffrn 4.253 _exptl_crystal_density_method 'not measured' _exptl_crystal_F_000 143 _exptl_crystal_size_max 0.2819 _exptl_crystal_size_mid 0.1582 _exptl_crystal_size_min 0.1255 _refine_diff_density_max 0.537 _refine_diff_density_min -0.425 _refine_diff_density_rms 0.127 _refine_ls_abs_structure_details 'Flack H D (1983), 99 friedel pairs' _refine_ls_abs_structure_Flack 0.07(4) _refine_ls_extinction_coef 0.407(18) _refine_ls_extinction_expression Fc^*^=kFc[1+0.001xFc^2^\l^3^/sin(2\q)]^-1/4^ _refine_ls_extinction_method SHELXL _refine_ls_goodness_of_fit_ref 1.181 _refine_ls_matrix_type full _refine_ls_number_parameters 16 _refine_ls_number_reflns 285 _refine_ls_number_restraints 0 _refine_ls_restrained_S_all 1.181 _refine_ls_R_factor_all 0.0148 _refine_ls_R_factor_gt 0.0147 _refine_ls_shift/su_max 0.000 _refine_ls_shift/su_mean 0.000 _refine_ls_structure_factor_coef Fsqd _refine_ls_weighting_details 'calc w=1/[\s^2^(Fo^2^)+(0.0168P)^2^+0.2243P] where P=(Fo^2^+2Fc^2^)/3' _refine_ls_weighting_scheme calc _refine_ls_wR_factor_gt 0.0380 _refine_ls_wR_factor_ref 0.0380 _reflns_number_gt 283 _reflns_number_total 285 _reflns_threshold_expression >2\s(I) _[local]_cod_data_source_file ce5127.cif _[local]_cod_data_source_block Ge0.974Si0.026O2 _[local]_cod_cif_authors_sg_H-M P_32_2_1 _cod_database_code 2300366 loop_ _symmetry_equiv_pos_as_xyz 'x, y, z' '-y, x-y, z+2/3' '-x+y, -x, z+1/3' 'y, x, -z' 'x-y, -y, -z+1/3' '-x, -x+y, -z+2/3' loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_U_iso_or_equiv _atom_site_adp_type _atom_site_occupancy _atom_site_symmetry_multiplicity _atom_site_calc_flag _atom_site_refinement_flags Ge1 Ge -0.54829(8) 0.0000 0.6667 0.00759(16) Uani 0.97 2 d SP Si1 Si -0.54829(8) 0.0000 0.6667 0.00759(16) Uani 0.03 2 d SP O O -0.3975(5) -0.0967(5) 0.9087(3) 0.0126(3) Uani 1 1 d . loop_ _atom_site_aniso_label _atom_site_aniso_U_11 _atom_site_aniso_U_22 _atom_site_aniso_U_33 _atom_site_aniso_U_23 _atom_site_aniso_U_13 _atom_site_aniso_U_12 Ge1 0.00833(18) 0.0073(2) 0.00680(19) -0.00038(12) -0.00019(6) 0.00365(10) Si1 0.00833(18) 0.0073(2) 0.00680(19) -0.00038(12) -0.00019(6) 0.00365(10) O 0.0175(9) 0.0092(8) 0.0124(7) -0.0004(7) -0.0050(7) 0.0076(7) loop_ _atom_type_symbol _atom_type_description _atom_type_scat_dispersion_real _atom_type_scat_dispersion_imag _atom_type_scat_source O O 0.0106 0.0060 'International Tables Vol C Tables 4.2.6.8 and 6.1.1.4' Si Si 0.0817 0.0704 'International Tables Vol C Tables 4.2.6.8 and 6.1.1.4' Ge Ge 0.1547 1.8001 'International Tables Vol C Tables 4.2.6.8 and 6.1.1.4' loop_ _geom_angle_atom_site_label_1 _geom_angle_atom_site_label_2 _geom_angle_atom_site_label_3 _geom_angle _geom_angle_site_symmetry_1 _geom_angle_site_symmetry_3 O Ge1 O 107.72(13) 2_454 6_456 O Ge1 O 112.96(11) 2_454 . O Ge1 O 106.48(5) 6_456 . O Ge1 O 106.48(5) 2_454 5_556 O Ge1 O 112.96(11) 6_456 5_556 O Ge1 O 110.33(13) . 5_556 Si1 O Ge1 130.49(12) 3_445 . Ge1 O Ge1 130.49(12) 3_445 . loop_ _geom_bond_atom_site_label_1 _geom_bond_atom_site_label_2 _geom_bond_distance _geom_bond_site_symmetry_2 Ge1 O 1.729(2) 2_454 Ge1 O 1.729(2) 6_456 Ge1 O 1.7372(18) . Ge1 O 1.7371(18) 5_556 O Si1 1.729(2) 3_445 O Ge1 1.729(2) 3_445 _journal_paper_doi 10.1107/S0021889812003081 orex-supercell-96532aa/data/examples/alpha-SiGeO2/df_cfg.bash000077500000000000000000000017071465364771700237640ustar00rootroot00000000000000#!/bin/bash for i in {0..6} do mkdir -p cell112/Si$i supercell -i alpha-SiGeO2.cif -s 1x1x2 -p "Si1:p=$i" -p "Ge1:p=$((6-$i))" -m -o cell112/Si$i/SiGeO2_112-Si$i > cell112/Si$i/log.out & done wait echo -ne "x" for i in {0..6}; do echo -ne "\t$i/6"; done echo "" echo -ne "N_tot" for i in {0..6} do N_tot=`grep -Po '(?<=The total number of combinations is ).*' cell112/Si$i/log.out` echo -ne "\t${N_tot}" done echo "" echo -ne "N_irr" for i in {0..6} do N_irr=`grep -Po '(?<=Combinations after merge: ).*' cell112/Si$i/log.out` echo -ne "\t${N_irr}" done echo "" echo -ne "M" for i in {0..6} do Q=`echo cell112/Si$i/*.cif | sed 's/ *cell[^ ]*w\([0-9]*\).cif */\1 /g'` echo -ne "\t${Q}" done echo "" echo -ne "N_ops" for i in {0..6} do Q=`echo cell112/Si$i/*.cif | sed 's/ *cell[^ ]*w\([0-9]*\).cif */\1 /g'` unset N_ops for j in $Q; do N_ops=${N_ops}" "`echo $j | awk '{print 12/$1}'` done echo -ne "\t${N_ops:1}" done echo "" orex-supercell-96532aa/data/examples/fcc/000077500000000000000000000000001465364771700203255ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/fcc/AMS_DATA.cif000066400000000000000000000102211465364771700222150ustar00rootroot00000000000000data_global _chemical_name_mineral 'Copper' loop_ _publ_author_name 'Wyckoff R W G' _journal_name_full 'Crystal Structures' _journal_volume 1 _journal_year 1963 _journal_page_first 7 _journal_page_last 83 _publ_section_title ; Second edition. Interscience Publishers, New York, New York Cubic closest packed, ccp, structure ; _database_code_amcsd 0011145 _chemical_formula_sum 'Cu' _cell_length_a 3.61496 _cell_length_b 3.61496 _cell_length_c 3.61496 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_volume 47.240 _exptl_crystal_density_diffrn 8.935 _symmetry_space_group_name_H-M 'F m 3 m' loop_ _space_group_symop_operation_xyz 'x,y,z' 'x,1/2+y,1/2+z' '1/2+x,y,1/2+z' '1/2+x,1/2+y,z' 'z,-x,y' 'z,1/2-x,1/2+y' '1/2+z,-x,1/2+y' '1/2+z,1/2-x,y' '-y,z,-x' '-y,1/2+z,1/2-x' '1/2-y,z,1/2-x' '1/2-y,1/2+z,-x' 'x,-y,z' 'x,1/2-y,1/2+z' '1/2+x,-y,1/2+z' '1/2+x,1/2-y,z' '-z,x,-y' '-z,1/2+x,1/2-y' '1/2-z,x,1/2-y' '1/2-z,1/2+x,-y' 'y,-z,x' 'y,1/2-z,1/2+x' '1/2+y,-z,1/2+x' '1/2+y,1/2-z,x' '-x,y,-z' '-x,1/2+y,1/2-z' '1/2-x,y,1/2-z' '1/2-x,1/2+y,-z' 'x,-z,-y' 'x,1/2-z,1/2-y' '1/2+x,-z,1/2-y' '1/2+x,1/2-z,-y' '-z,y,x' '-z,1/2+y,1/2+x' '1/2-z,y,1/2+x' '1/2-z,1/2+y,x' 'y,-x,-z' 'y,1/2-x,1/2-z' '1/2+y,-x,1/2-z' '1/2+y,1/2-x,-z' '-x,z,y' '-x,1/2+z,1/2+y' '1/2-x,z,1/2+y' '1/2-x,1/2+z,y' 'z,-y,-x' 'z,1/2-y,1/2-x' '1/2+z,-y,1/2-x' '1/2+z,1/2-y,-x' '-y,x,z' '-y,1/2+x,1/2+z' '1/2-y,x,1/2+z' '1/2-y,1/2+x,z' 'x,z,y' 'x,1/2+z,1/2+y' '1/2+x,z,1/2+y' '1/2+x,1/2+z,y' '-z,-y,-x' '-z,1/2-y,1/2-x' '1/2-z,-y,1/2-x' '1/2-z,1/2-y,-x' 'y,x,z' 'y,1/2+x,1/2+z' '1/2+y,x,1/2+z' '1/2+y,1/2+x,z' '-x,-z,-y' '-x,1/2-z,1/2-y' '1/2-x,-z,1/2-y' '1/2-x,1/2-z,-y' 'z,y,x' 'z,1/2+y,1/2+x' '1/2+z,y,1/2+x' '1/2+z,1/2+y,x' '-y,-x,-z' '-y,1/2-x,1/2-z' '1/2-y,-x,1/2-z' '1/2-y,1/2-x,-z' 'z,x,-y' 'z,1/2+x,1/2-y' '1/2+z,x,1/2-y' '1/2+z,1/2+x,-y' '-y,-z,x' '-y,1/2-z,1/2+x' '1/2-y,-z,1/2+x' '1/2-y,1/2-z,x' 'x,y,-z' 'x,1/2+y,1/2-z' '1/2+x,y,1/2-z' '1/2+x,1/2+y,-z' '-z,-x,y' '-z,1/2-x,1/2+y' '1/2-z,-x,1/2+y' '1/2-z,1/2-x,y' 'y,z,-x' 'y,1/2+z,1/2-x' '1/2+y,z,1/2-x' '1/2+y,1/2+z,-x' '-x,-y,z' '-x,1/2-y,1/2+z' '1/2-x,-y,1/2+z' '1/2-x,1/2-y,z' '-z,x,y' '-z,1/2+x,1/2+y' '1/2-z,x,1/2+y' '1/2-z,1/2+x,y' 'y,-z,-x' 'y,1/2-z,1/2-x' '1/2+y,-z,1/2-x' '1/2+y,1/2-z,-x' '-x,y,z' '-x,1/2+y,1/2+z' '1/2-x,y,1/2+z' '1/2-x,1/2+y,z' 'z,-x,-y' 'z,1/2-x,1/2-y' '1/2+z,-x,1/2-y' '1/2+z,1/2-x,-y' '-y,z,x' '-y,1/2+z,1/2+x' '1/2-y,z,1/2+x' '1/2-y,1/2+z,x' 'x,-y,-z' 'x,1/2-y,1/2-z' '1/2+x,-y,1/2-z' '1/2+x,1/2-y,-z' '-x,z,-y' '-x,1/2+z,1/2-y' '1/2-x,z,1/2-y' '1/2-x,1/2+z,-y' 'z,-y,x' 'z,1/2-y,1/2+x' '1/2+z,-y,1/2+x' '1/2+z,1/2-y,x' '-y,x,-z' '-y,1/2+x,1/2-z' '1/2-y,x,1/2-z' '1/2-y,1/2+x,-z' 'x,-z,y' 'x,1/2-z,1/2+y' '1/2+x,-z,1/2+y' '1/2+x,1/2-z,y' '-z,y,-x' '-z,1/2+y,1/2-x' '1/2-z,y,1/2-x' '1/2-z,1/2+y,-x' 'y,-x,z' 'y,1/2-x,1/2+z' '1/2+y,-x,1/2+z' '1/2+y,1/2-x,z' '-x,-z,y' '-x,1/2-z,1/2+y' '1/2-x,-z,1/2+y' '1/2-x,1/2-z,y' 'z,y,-x' 'z,1/2+y,1/2-x' '1/2+z,y,1/2-x' '1/2+z,1/2+y,-x' '-y,-x,z' '-y,1/2-x,1/2+z' '1/2-y,-x,1/2+z' '1/2-y,1/2-x,z' 'x,z,-y' 'x,1/2+z,1/2-y' '1/2+x,z,1/2-y' '1/2+x,1/2+z,-y' '-z,-y,x' '-z,1/2-y,1/2+x' '1/2-z,-y,1/2+x' '1/2-z,1/2-y,x' 'y,x,-z' 'y,1/2+x,1/2-z' '1/2+y,x,1/2-z' '1/2+y,1/2+x,-z' '-z,-x,-y' '-z,1/2-x,1/2-y' '1/2-z,-x,1/2-y' '1/2-z,1/2-x,-y' 'y,z,x' 'y,1/2+z,1/2+x' '1/2+y,z,1/2+x' '1/2+y,1/2+z,x' '-x,-y,-z' '-x,1/2-y,1/2-z' '1/2-x,-y,1/2-z' '1/2-x,1/2-y,-z' 'z,x,y' 'z,1/2+x,1/2+y' '1/2+z,x,1/2+y' '1/2+z,1/2+x,y' '-y,-z,-x' '-y,1/2-z,1/2-x' '1/2-y,-z,1/2-x' '1/2-y,1/2-z,-x' loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Cu 0.00000 0.00000 0.00000 0.5 orex-supercell-96532aa/data/examples/gamma-Fe2O3/000077500000000000000000000000001465364771700214705ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/gamma-Fe2O3/Fe2O3-P4332.cif000066400000000000000000000050601465364771700235030ustar00rootroot00000000000000data_79196-ICSD _database_code_ICSD 79196 _audit_creation_date 1996/10/14 _audit_update_record 2010/08/01 _chemical_name_systematic 'Iron Oxide (21.34/32) - Gamma' _chemical_formula_structural 'Fe21.34 O32' _chemical_formula_sum 'Fe21.34 O32' _chemical_name_mineral Maghemite _publ_section_title ; Vacancy ordering in gamma-Fe2 O3: synchrotron x-ray powder diffraction and high-resolution electron microscopy studies ; loop_ _citation_id _citation_journal_abbrev _citation_year _citation_journal_volume _citation_page_first _citation_page_last _citation_journal_id_ASTM primary 'Journal of Applied Crystallography' 1995 28 141 145 JACGAR 2 'Powder Diffraction' 1988 3 104 105 PODIE2 _publ_author_name ; Shmakov, A.N.;Kryukova, G.N.;Tsybulya, S.V.;Chuvilin, A.L.;Solov'eva, L.P. ; _cell_length_a 8.3474(2) _cell_length_b 8.3474(2) _cell_length_c 8.3474(2) _cell_angle_alpha 90. _cell_angle_beta 90. _cell_angle_gamma 90. _cell_volume 581.64 _cell_formula_units_Z 1 _symmetry_space_group_name_H-M 'P 43 3 2' _symmetry_Int_Tables_number 212 _refine_ls_R_factor_all 0.069 loop_ _symmetry_equiv_pos_site_id _symmetry_equiv_pos_as_xyz 1 'z+1/4, y+3/4, -x+3/4' 2 '-z+3/4, y+1/4, x+3/4' 3 'y+1/4, x+3/4, -z+3/4' 4 '-y+3/4, x+1/4, z+3/4' 5 'x+1/4, z+3/4, -y+3/4' 6 '-x+3/4, z+1/4, y+3/4' 7 'z+3/4, -y+3/4, x+1/4' 8 '-z+1/4, -y+1/4, -x+1/4' 9 'y+3/4, -x+3/4, z+1/4' 10 '-y+1/4, -x+1/4, -z+1/4' 11 'x+3/4, -z+3/4, y+1/4' 12 '-x+1/4, -z+1/4, -y+1/4' 13 '-y+1/2, -z, x+1/2' 14 '-y, z+1/2, -x+1/2' 15 'y+1/2, -z+1/2, -x' 16 'y, z, x' 17 'z+1/2, -x+1/2, -y' 18 '-z+1/2, -x, y+1/2' 19 '-z, x+1/2, -y+1/2' 20 'z, x, y' 21 '-x+1/2, -y, z+1/2' 22 '-x, y+1/2, -z+1/2' 23 'x+1/2, -y+1/2, -z' 24 'x, y, z' loop_ _atom_type_symbol _atom_type_oxidation_number Fe1 3 Fe2 3 Fe3 3 O1 -2 O2 -2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_symmetry_multiplicity _atom_site_Wyckoff_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_attached_hydrogens _atom_site_B_iso_or_equiv Fe1 Fe2.999+ 8 c 0.9921(5) 0.9921(5) 0.9921(5) 1. 0 0.45 Fe2 Fe2.999+ 12 d 0.8650(5) 0.6150(5) 0.875 1. 0 0.45 Fe3 Fe2.999+ 4 b 0.375 0.125 0.875 0.335(5) 0 0.45 O1 O2- 8 c 0.861(1) 0.861(1) 0.861(1) 1. 0 0.45 O2 O2- 24 e 0.372(1) 0.377(1) 0.876(2) 1. 0 0.45 #End of data_79196-ICSD orex-supercell-96532aa/data/examples/gamma-Fe2O3/README000066400000000000000000000006071465364771700223530ustar00rootroot00000000000000Disorder in maghemite. Grau-Crespo, R., Al-Baitai, A. Y., Saadoune, I., & De Leeuw, N. H. (2010). Vacancy ordering and electronic structure of γ-Fe2O3 (maghemite): a theoretical investigation. Journal of Physics. Condensed Matter : An Institute of Physics Journal, 22(25), 255401. doi:10.1088/0953-8984/22/25/255401 Supercell should be installed. See Supporting materials for details. orex-supercell-96532aa/data/examples/ice-Ih-adv/000077500000000000000000000000001465364771700214405ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/ice-Ih-adv/README000066400000000000000000000017631465364771700223270ustar00rootroot00000000000000ice-Ih-adv example: ************************************************ Treatment of proton disorder in the 1x2x1 supercell of ice-Ih ************************************************ A detailed description of this example is provided in the Supporting Information of the supercell article. It involves a manipulation of the input CIF file as well as advanced functionalities of the supercell program, which is used in successive steps to reduce the number of combinations to practical numbers. Requirements: Supercell should be installed. GULP should be in the path or variable PRG_GULP should be set before running script df_cfg.bash. export PRG_GULP= Result: The directory ice-Ih-cfgs-final/ contains all ice-Ih 1x2x1 supercell configurations that fulfill both structure-restriction conditions: all oxygen atoms 2 coordinated (CNO) and no close contacts between H atoms. A detailed description of this example is provided in the Supporting Information of the supercell article. orex-supercell-96532aa/data/examples/ice-Ih-adv/df_cfg.bash000077500000000000000000000051441465364771700235160ustar00rootroot00000000000000#!/bin/bash cur_path=$PWD #Prepearing folders for data rm -rf ice-Ih-cfgs-l1 mkdir ice-Ih-cfgs-l1 rm -rf ice-Ih-cfgs-l2 mkdir ice-Ih-cfgs-l2 rm -rf ice-Ih-cfgs-final mkdir ice-Ih-cfgs-final if [[ -z "$PRG_GULP" ]]; then PRG_GULP="gulp" fi echo "Level 1: Permutations for H1-H4 groups" #Generating partially disordered configurations. Groups H5-H8 are excluded from permuation. supercell -i ice-Ih-121-adv.cif -m -q -p "O:c=-2" -p "H*:c=+1" -p "r(H[5-8]):fixed" -o ice-Ih-cfgs-l1/ice-Ih-l1 > ice-Ih-cfgs-l1/log.out cd ${cur_path} # #Loop over all structures obtained before with supercell program for i in ice-Ih-cfgs-l1/ice-Ih-l1*.cif do pth=`dirname $i`/`basename $i .cif` name=`basename $i .cif` cd ${cur_path} rm -rf $pth/gulp mkdir -p $pth/gulp cd $pth/gulp #Prepearing input file for GULP. Only fully occupied positions will be included to the file. frac=`sed -nr 's/^\s*\w+\s+(\w+)\s+([0-9\.]+)\s+([0-9\.]+)\s+([0-9\.]+).*1.000$/\1 core \2 \3 \4 \\\n/p' ${cur_path}/$i | tr -d "\n" ` sed "s/@FRAC@/$frac/g" ${cur_path}/ice-Ih.gin_template | sed "s/@NAME@/$name/g" > input.gulp $PRG_GULP < input.gulp > g.out #Checking H-H distance. If less than 1.0 Angstrom (see ice-Ih.gin_template file) the configuration is exculded. x=`cat g.out | grep -A 40 "Distance calculation :" | grep " H core H core 1"` if [[ -z "$x" ]]; then cp -a ${cur_path}/$i ${cur_path}/ice-Ih-cfgs-l2/. fi done echo "Level 2: Permutations for H5-H8 groups" cd ${cur_path} #Loop over all "good" structures obtained in previous step. for i in ice-Ih-cfgs-l2/ice-Ih*.cif do pth=`dirname $i`/`basename $i .cif` name=`basename $i .cif` cd ${cur_path} rm -rf $pth mkdir -p $pth #Generate new structures, based on "good". supercell -i $i -m -q -p "O:c=-2" -p "H*:c=+1" -o $pth/${name}-l2 > $pth/log.out cd ${cur_path}/$pth for j in ice*.cif do cd ${cur_path}/$pth dm=`basename $j .cif` rm -rf $dm mkdir -p $dm/gulp cd $dm/gulp frac=`sed -nr 's/^\s*\w+\s+(\w+)\s+([0-9\.]+)\s+([0-9\.]+)\s+([0-9\.]+).*1.000$/\1 core \2 \3 \4 \\\n/p' ${cur_path}/$pth/$j | tr -d "\n" ` sed "s/@FRAC@/$frac/g" ${cur_path}/ice-Ih.gin_template | sed "s/@NAME@/$dm/g" > input.gulp $PRG_GULP < input.gulp > g.out #Checking H-H distance. If less than 1.0 Angstrom (see ice-Ih.gin_template file) the configuration is exculded. x=`cat g.out | grep -A 40 "Distance calculation :" | grep " H core H core 1"` if [[ -z "$x" ]]; then cp -a ${cur_path}/$pth/$j ${cur_path}/ice-Ih-cfgs-final/. fi done done orex-supercell-96532aa/data/examples/ice-Ih-adv/ice-Ih-121-adv.cif000066400000000000000000000051321465364771700242730ustar00rootroot00000000000000# CIF file generated by openbabel 2.3.90, see http://openbabel.sf.net data_I _chemical_name_common 'Supercell generated structure. E_col = 0' _cell_length_a 4.49748 _cell_length_b 8.99496 _cell_length_c 7.32238 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 120 _space_group_name_H-M_alt 'P 1' _space_group_name_Hall 'P 1' loop_ _symmetry_equiv_pos_as_xyz x,y,z loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy H1 H 0.33333 0.33333 0.19640 0.500 H2 H 0.66667 0.16667 0.69640 0.500 H3 H 0.66667 0.16667 0.80360 0.500 H4 H 0.33333 0.33334 0.30360 0.500 H5 H 0.33333 0.83334 0.19640 0.500 H6 H 0.66667 0.66667 0.69640 0.500 H7 H 0.66667 0.66667 0.80360 0.500 H8 H 0.33333 0.83334 0.30360 0.500 H1 H 0.45100 0.45095 0.01790 0.500 H1 H 0.09810 0.27455 0.01790 0.500 H1 H 0.45090 0.27450 0.01790 0.500 H2 H 0.54900 0.04905 0.51790 0.500 H2 H 0.90190 0.22545 0.51790 0.500 H2 H 0.54910 0.22550 0.51790 0.500 H3 H 0.90190 0.22550 0.98210 0.500 H3 H 0.54910 0.04905 0.98210 0.500 H3 H 0.54900 0.22545 0.98210 0.500 H4 H 0.09810 0.27450 0.48210 0.500 H4 H 0.45090 0.45095 0.48210 0.500 H4 H 0.45100 0.27455 0.48210 0.500 H5 H 0.45100 0.95095 0.01790 0.500 H5 H 0.09810 0.77455 0.01790 0.500 H5 H 0.45090 0.77450 0.01790 0.500 H6 H 0.54900 0.54905 0.51790 0.500 H6 H 0.90190 0.72545 0.51790 0.500 H6 H 0.54910 0.72550 0.51790 0.500 H7 H 0.90190 0.72550 0.98210 0.500 H7 H 0.54910 0.54905 0.98210 0.500 H7 H 0.54900 0.72545 0.98210 0.500 H8 H 0.09810 0.77450 0.48210 0.500 H8 H 0.45090 0.95095 0.48210 0.500 H8 H 0.45100 0.77455 0.48210 0.500 O O 0.33333 0.33333 0.06140 1.000 O O 0.66667 0.16667 0.56140 1.000 O O 0.66667 0.16667 0.93860 1.000 O O 0.33333 0.33333 0.43860 1.000 O O 0.33333 0.83334 0.06140 1.000 O O 0.66667 0.66667 0.56140 1.000 O O 0.66667 0.66667 0.93860 1.000 O O 0.33333 0.83334 0.43860 1.000 orex-supercell-96532aa/data/examples/ice-Ih-adv/ice-Ih.gin_template000066400000000000000000000001511465364771700251250ustar00rootroot00000000000000distance cutd 1.0 name @NAME@ cell 4.497479 4.497479 7.322382 90.00 90.00 120.0 frac @FRAC@ space 1 orex-supercell-96532aa/data/examples/ice-Ih/000077500000000000000000000000001465364771700206705ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/ice-Ih/README000066400000000000000000000015761465364771700215610ustar00rootroot00000000000000The example generates and analyzes configuration for ice-Ih cell 1x1x1 in a direct approach (meaning that [TO BE COMPLETED]). Supercell should be installed. GULP should be in the path or variable PRG_GULP should be set before run script df_cfg.bash export PRG_GULP= The result file ice-Ih-cfgs.anlz shows which configurations fulfill the following two conditions: (i) all oxygen atoms 2 coordinated (CNO) and (ii) no close contacts of hydrogen (H-H). The supercell command used in this example is in the form: supercell -i ice-Ih.cif -m -q -p "O:c=-2" -p "H*:c=+1" -o [RESULT DIRECTORY]/ice-Ih in which the "-c" option is used to set the charge of oxygen atoms on site "O" to -2 and the charge of hydrogen atoms on sites H1 and H2 to +1, for the computation of Coulomb energies (-q option). The [RESULT DIRECTORY] should be created before running the command. orex-supercell-96532aa/data/examples/ice-Ih/df_cfg.bash000077500000000000000000000021541465364771700227440ustar00rootroot00000000000000#!/bin/bash cur_path=$PWD rm -rf ice-Ih-cfgs mkdir ice-Ih-cfgs if [[ -z "$PRG_GULP" ]]; then PRG_GULP="gulp" fi supercell -i ice-Ih.cif -m -q -p "O:c=-2" -p "H*:c=+1" -o ice-Ih-cfgs/ice-Ih echo -e "cfg\tCNO\tH-H" > ice-Ih-cfgs.anlz for i in ice-Ih-cfgs/ice-Ih*.cif do echo $i pth=`dirname $i`/`basename $i .cif` name=`basename $i .cif` cd ${cur_path} rm -rf $pth/gulp mkdir -p $pth/gulp cd $pth/gulp frac=`sed -nr 's/^\s*\w+\s+(\w+)\s+([0-9\.]+)\s+([0-9\.]+)\s+([0-9\.]+).*$/\1 core \2 \3 \4 \\\n/p' ${cur_path}/$i | tr -d "\n" ` #echo $frac sed "s/@FRAC@/$frac/g" ${cur_path}/ice-Ih.gin_template | sed "s/@NAME@/$name/g" > input.gulp $PRG_GULP < input.gulp > g.out x=`cat g.out | grep -A 40 "Distance calculation :" | grep " H core H core 1"` if [[ -z "$x" ]]; then HH="OK" else HH="Fail" fi x=`cat g.out | grep -A 40 "Distance calculation :" | grep " O core H core" | awk '{print $6+$8 == 2}' | grep 0` if [[ -z "$x" ]]; then CNO="OK" else CNO="Fail" fi echo -e "$i\t$CNO\t$HH" >> ${cur_path}/ice-Ih-cfgs.anlz done orex-supercell-96532aa/data/examples/ice-Ih/ice-Ih.cif000066400000000000000000000053601465364771700224550ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2014-07-12 08:06:43 +0000 (Sat, 12 Jul 2014) $ #$Revision: 120115 $ #$URL: file:///home/coder/svn-repositories/cod/cif/9/01/52/9015208.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/. The original data for this entry # were provided the American Mineralogist Crystal Structure Database, # http://rruff.geo.arizona.edu/AMS/amcsd.php # # The file may be used within the scientific community so long as # proper attribution is given to the journal article from which the # data were obtained. # data_9015208 loop_ _publ_author_name 'Fortes, A. D.' 'Wood, I. G.' 'Grigoriev, D.' 'Alfredsson, M.' 'Kipfstuhl, S.' 'Knight, K. S.' 'Smith, R. I.' _publ_section_title ; No evidence for large-scale proton ordering in Antarctic ice from powder neutron diffraction Note: T = 100 K Note: known as ice-IH ; _journal_name_full 'Journal of Chemical Physics' _journal_page_first 11376 _journal_page_last 11379 _journal_volume 120 _journal_year 2004 _chemical_compound_source 'Kohen Station, Antarctica' _chemical_formula_sum 'H2 O' _chemical_name_mineral Ice _space_group_IT_number 194 _symmetry_space_group_name_Hall '-P 6c 2c' _symmetry_space_group_name_H-M 'P 63/m m c' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 120 _cell_length_a 4.497479 _cell_length_b 4.497479 _cell_length_c 7.322382 _cell_volume 128.269 _database_code_amcsd 0018366 _exptl_crystal_density_diffrn 0.933 _[local]_cod_chemical_formula_sum_orig 'O H2' _cod_database_code 9015208 loop_ _space_group_symop_operation_xyz x,y,z -x,-x+y,1/2+z x,x-y,1/2-z -x+y,-x,1/2-z x-y,x,1/2+z -y,-x,z y,x,-z y,-x+y,-z -y,x-y,z x-y,-y,1/2+z -x+y,y,1/2-z x,y,1/2-z -x,-y,1/2+z x,x-y,z -x,-x+y,-z x-y,x,-z -x+y,-x,z y,x,1/2+z -y,-x,1/2-z -y,x-y,1/2-z y,-x+y,1/2+z -x+y,y,z x-y,-y,-z -x,-y,-z loop_ _atom_site_aniso_label _atom_site_aniso_U_11 _atom_site_aniso_U_22 _atom_site_aniso_U_33 _atom_site_aniso_U_12 _atom_site_aniso_U_13 _atom_site_aniso_U_23 O 0.00790 0.00790 0.00600 0.00400 0.00000 0.00000 H1 0.02110 0.02110 0.00820 0.01060 0.00000 0.00000 H2 0.01690 0.01240 0.01740 0.00620 0.00370 0.00750 loop_ _atom_site_label _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy O 0.33333 0.66667 0.06140 1.00000 H1 0.33333 0.66667 0.19640 0.50000 H2 0.45100 0.90190 0.01790 0.50000 _journal_paper_doi 10.1063/1.1765099 orex-supercell-96532aa/data/examples/ice-Ih/ice-Ih.gin_template000066400000000000000000000002011465364771700243510ustar00rootroot00000000000000distance cutd 1.0 name @NAME@ cell 4.497479 4.497479 7.322382 90.00 90.00 120.0 frac @FRAC@ space 1 species H +1 O -2 orex-supercell-96532aa/data/examples/olivine/000077500000000000000000000000001465364771700212375ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/olivine/olivine.cif000066400000000000000000000044341465364771700233740ustar00rootroot00000000000000#------------------------------------------------------------------------------ #$Date: 2016-02-13 19:28:24 +0000 (Sat, 13 Feb 2016) $ #$Revision: 176429 $ #$URL: file:///home/coder/svn-repositories/cod/cif/1/53/46/1534637.cif $ #------------------------------------------------------------------------------ # # This file is available in the Crystallography Open Database (COD), # http://www.crystallography.net/ # # All data on this site have been placed in the public domain by the # contributors. # data_1534637 loop_ _publ_author_name 'Litvin, A.L.' 'Semenenko, V.P.' 'Egorova, L.N.' 'Ostapenko, S.S.' _publ_section_title ; Mg-Fe-distribution in the structures of five olivines from meteorites ; _journal_name_full 'Mineralogiceskij Zhurnal' _journal_page_first 46 _journal_page_last 54 _journal_volume 15 _journal_year 1993 _chemical_formula_sum 'Fe0.22 Mg1.78 O4 Si' _chemical_name_systematic '(Mg1.78 Fe0.22) (Si O4)' _space_group_IT_number 62 _symmetry_space_group_name_Hall '-P 2c 2ab' _symmetry_space_group_name_H-M 'P b n m' _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 90 _cell_formula_units_Z 4 _cell_length_a 4.76 _cell_length_b 10.224 _cell_length_c 5.99 _cell_volume 291.511 _citation_journal_id_ASTM MINZDR _cod_data_source_file Litvin_MINZDR_1993_1419.cif _cod_data_source_block Fe0.22Mg1.78O4Si1 _cod_original_cell_volume 291.5108 _cod_original_sg_symbol_Hall '-P 2ac 2n (z,x,y)' _cod_original_formula_sum 'Fe0.22 Mg1.78 O4 Si1' _cod_database_code 1534637 loop_ _symmetry_equiv_pos_as_xyz x,y,z x+1/2,-y+1/2,-z -x+1/2,y+1/2,-z+1/2 -x,-y,z+1/2 -x,-y,-z -x-1/2,y-1/2,z x-1/2,-y-1/2,z-1/2 x,y,-z-1/2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy _atom_site_U_iso_or_equiv O2 O-2 0.219 0.4481 0.25 1 0.0 O3 O-2 0.2794 0.1635 0.0337 1 0.0 Mg1 Mg+2 0 0 0 0.88 0.0 O1 O-2 0.7671 0.0912 0.25 1 0.0 Si1 Si+4 0.4264 0.0945 0.25 1 0.0 Fe2 Fe+2 0.9889 0.7278 0.25 0.1 0.0 Fe1 Fe+2 0 0 0 0.12 0.0 Mg2 Mg+2 0.9889 0.7278 0.25 0.9 0.0 orex-supercell-96532aa/data/examples/synth_complex/000077500000000000000000000000001465364771700224665ustar00rootroot00000000000000orex-supercell-96532aa/data/examples/synth_complex/sc.vesta000066400000000000000000000110061465364771700241350ustar00rootroot00000000000000#VESTA_FORMAT_VERSION 3.5.4 CRYSTAL TITLE New structure GROUP 10 2 P 2/m SYMOP 0.000000 0.000000 0.000000 1 0 0 0 1 0 0 0 1 1 0.000000 0.000000 0.000000 -1 0 0 0 -1 0 0 0 -1 1 0.000000 0.000000 0.000000 -1 0 0 0 -1 0 0 0 1 1 0.000000 0.000000 0.000000 1 0 0 0 1 0 0 0 -1 1 -1.0 -1.0 -1.0 1 0 0 0 0 0 0 0 0 TRANM 0 0.000000 0.000000 0.000000 1 0 0 0 1 0 0 0 1 LTRANSL -1 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 LORIENT -1 0 0 0 0 1.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 1.000000 LMATRIX 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 CELLP 7.000000 3.000000 5.000000 90.000000 90.000000 81.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 STRUC 1 Ca Ca1 0.5000 0.000000 0.000000 0.000000 1a 2/m 0.000000 0.000000 0.000000 2.00 2 Ba Ba1 0.5000 0.000000 0.000000 0.000000 1a 2/m 0.000000 0.000000 0.000000 0.00 3 O O1 0.5000 0.000000 -0.300000 0.500000 2n m 0.000000 0.000000 0.000000 0.00 4 O O2 0.2500 0.530000 0.510000 0.530000 4o 1 0.000000 0.000000 0.000000 -2.00 0 0 0 0 0 0 0 THERI 0 1 Ca1 1.000000 2 Ba1 1.000000 3 O1 1.000000 4 O2 1.000000 0 0 0 SHAPE 0 0 0 0 0.000000 0 192 192 192 192 BOUND 0 1 0 1 0 1 0 0 0 0 0 SBOND 0 0 0 0 SITET 1 Ca1 1.9700 90 150 189 90 150 189 204 0 2 Ba1 2.2400 30 239 44 30 239 44 204 0 3 O1 0.7400 254 3 0 254 3 0 204 0 4 O2 0.7400 254 3 0 254 3 0 204 0 0 0 0 0 0 0 VECTR 0 0 0 0 0 VECTT 0 0 0 0 0 SPLAN 0 0 0 0 LBLAT -1 LBLSP -1 DLATM -1 DLBND -1 DLPLY -1 PLN2D 0 0 0 0 ATOMT 1 O 0.7400 254 3 0 254 3 0 204 2 Ca 1.9700 90 150 189 90 150 189 204 3 Ba 2.2400 30 239 44 30 239 44 204 0 0 0 0 0 0 SCENE 0.896549 0.399764 -0.190756 0.000000 0.185587 0.052010 0.981251 0.000000 0.402190 -0.915141 -0.027561 0.000000 0.000000 0.000000 0.000000 1.000000 0.000 0.000 0.000 1.000 HBOND 0 2 STYLE DISPF 37753794 MODEL 0 1 0 SURFS 0 1 1 SECTS 32 1 FORMS 0 1 ATOMS 0 0 1 BONDS 1 POLYS 1 VECTS 1.000000 FORMP 1 1.0 0 0 0 ATOMP 24 24 0 50 2.0 0 BONDP 1 16 0.250 2.000 127 127 127 POLYP 204 1 1.000 180 180 180 ISURF 0 0 0 0 TEX3P 1 0.00000E+00 1.00000E+00 SECTP 1 0.00000E+00 1.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 0.00000E+00 CONTR 0.1 -1 1 1 10 -1 2 5 2 1 2 1 0 0 0 0 0 0 0 0 0 0 0 0 HKLPP 192 1 1.000 255 0 255 UCOLP 0 1 1.000 0 0 0 COMPS 1 LABEL 1 12 1.000 0 PROJT 0 0.962 BKGRC 255 255 255 DPTHQ 1 -0.5000 3.5000 LIGHT0 1 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 20.000000 0.000000 0.000000 0.000000 -1.000000 26 26 26 255 179 179 179 255 255 255 255 255 LIGHT1 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 20.000000 0.000000 0.000000 0.000000 -1.000000 0 0 0 0 0 0 0 0 0 0 0 0 LIGHT2 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 20.000000 0.000000 0.000000 0.000000 -1.000000 0 0 0 0 0 0 0 0 0 0 0 0 LIGHT3 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 20.000000 0.000000 0.000000 0.000000 -1.000000 0 0 0 0 0 0 0 0 0 0 0 0 SECCL 0 TEXCL 0 ATOMM 204 204 204 255 25.600 BONDM 255 255 255 255 128.000 POLYM 255 255 255 255 128.000 SURFM 0 0 0 255 128.000 FORMM 255 255 255 255 128.000 HKLPM 255 255 255 255 128.000 orex-supercell-96532aa/data/examples/synth_complex/supercheck.cif000066400000000000000000000023641465364771700253120ustar00rootroot00000000000000 #====================================================================== # CRYSTAL DATA #---------------------------------------------------------------------- data_VESTA_phase_1 _chemical_name_common 'New structure' _cell_length_a 7.000000 _cell_length_b 3.000000 _cell_length_c 5.000000 _cell_angle_alpha 90.000000 _cell_angle_beta 90.000000 _cell_angle_gamma 81.000000 _cell_volume 103.707276 _space_group_name_H-M_alt 'P 2/m' _space_group_IT_number 10 loop_ _space_group_symop_operation_xyz 'x, y, z' '-x, -y, -z' '-x, -y, z' 'x, y, -z' loop_ _atom_site_label _atom_site_occupancy _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_adp_type _atom_site_B_iso_or_equiv _atom_site_type_symbol Ca1 0.5000 0.000000 0.000000 0.000000 Biso 1.000000 Ca Ba1 0.5000 0.000000 0.000000 0.000000 Biso 1.000000 Ba O1 0.5000 0.000000 -0.300000 0.500000 Biso 1.000000 O O2 0.2500 0.530000 0.510000 0.530000 Biso 1.000000 O orex-supercell-96532aa/data/examples/synth_complex/supercheck_nd.cif000066400000000000000000000023641465364771700257730ustar00rootroot00000000000000 #====================================================================== # CRYSTAL DATA #---------------------------------------------------------------------- data_VESTA_phase_1 _chemical_name_common 'New structure' _cell_length_a 7.000000 _cell_length_b 3.000000 _cell_length_c 5.000000 _cell_angle_alpha 90.000000 _cell_angle_beta 90.000000 _cell_angle_gamma 81.000000 _cell_volume 103.707276 _space_group_name_H-M_alt 'P 2/m' _space_group_IT_number 10 loop_ _space_group_symop_operation_xyz 'x, y, z' '-x, -y, -z' '-x, -y, z' 'x, y, -z' loop_ _atom_site_label _atom_site_occupancy _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_adp_type _atom_site_B_iso_or_equiv _atom_site_type_symbol Ca1 0.5000 0.000000 0.000000 0.000000 Biso 1.000000 Ca Ba1 0.5000 0.000000 0.000000 0.000000 Biso 1.000000 Ba O1 0.5000 0.000000 -0.300000 0.500000 Biso 1.000000 O O2 1.0000 0.500000 0.500000 0.500000 Biso 1.000000 O orex-supercell-96532aa/doc/000077500000000000000000000000001465364771700156105ustar00rootroot00000000000000orex-supercell-96532aa/doc/CMakeLists.txt000066400000000000000000000000611465364771700203450ustar00rootroot00000000000000add_subdirectory(man) add_subdirectory(tutorial) orex-supercell-96532aa/doc/man/000077500000000000000000000000001465364771700163635ustar00rootroot00000000000000orex-supercell-96532aa/doc/man/CMakeLists.txt000066400000000000000000000037001465364771700211230ustar00rootroot00000000000000find_package(Perl) if(PERL_FOUND) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/supercell.1 COMMAND ${CMAKE_SOURCE_DIR}/scripts/latex2man/latex2man ${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex ${CMAKE_CURRENT_BINARY_DIR}/supercell.1 DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex ${CMAKE_SOURCE_DIR}/scripts/latex2man/latex2man) add_custom_target(doc_man ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/supercell.1) set(man_1 ${CMAKE_CURRENT_BINARY_DIR}/supercell.1) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/supercell_man.html COMMAND ${CMAKE_SOURCE_DIR}/scripts/latex2man/latex2man -H -c supercell_man.css ${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex ${CMAKE_CURRENT_BINARY_DIR}/supercell_man.html DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex ${CMAKE_SOURCE_DIR}/scripts/latex2man/latex2man) add_custom_target(doc_html ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/supercell_man.html) else(PERL_FOUND) message(WARNING "Perl is not found. Documentation (Unix man) will be not created") set(man_1 ${CMAKE_CURRENT_SOURCE_DIR}/supercell.1) endif(PERL_FOUND) find_package(LATEX COMPONENTS PDFLATEX) if(PDFLATEX_COMPILER) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/supercell_man.pdf COMMAND ${PDFLATEX_COMPILER} -interaction=batchmode "\"\\input{${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex}\"" DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/supercell_man.tex) add_custom_target(doc_pdf ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/supercell_man.pdf) else() message(WARNING "LATEX is not found. PDF manual will be not created") endif() install(FILES ${man_1} DESTINATION share/man/man1) orex-supercell-96532aa/doc/man/supercell_man.css000066400000000000000000000023771465364771700217370ustar00rootroot00000000000000body { background: #FFFFFF } .titlehead { text-align: center; color: maroon; } .datehead { text-align: center; color: maroon; font-size: 12pt; } .authorhead { text-align: center; color: maroon; font-size: 14pt; } .versionhead { text-align: center; color: maroon; font-size: 12pt; } .sectionname { color: #0077EE; font-variant: small-caps; } .subsectionname { color: #1111EE; } .subsubsectionname { color: #3333EE; } .progname { font-family: "monospace"; } .filename { font-family: "monospace"; color: blue; } .commandname { font-family: "monospace"; color: green; } .textstyle { font-size: 9pt; } .optstyle { font-weight: bold; } .argstyle { font-style: italic; } .urlstyle { color: #0033BB; font-weight: bold; text-decoration: none; } .urlstyle.link { } .urlstyle:visited { color: #BB3300; } .urlstyle:hover { background-color: #C0C0C0; padding: 0.1em 0em 0.1em 0em; } .emailstyle { color: #0033BB; font-weight: bold; text-decoration: none; } .emailstyle.link { } .emailstyle.visited { color: #BB3300; } .emailstyle.hover { background-color: #C0C0C0; padding: 0.1em 0em 0.1em 0em; } .tablestyle { border: 1px solid green; } .rowstyle { background: #DDEEFF; } .cellstyle { padding: 5px 7px 0px 0px; } orex-supercell-96532aa/doc/man/supercell_man.tex000066400000000000000000000402131465364771700217360ustar00rootroot00000000000000\documentclass[a4paper,english]{article} \usepackage{a4wide} \usepackage[latin1]{inputenc} \usepackage{babel} \usepackage{verbatim} %\usepackage[T1]{fontenc} %\overfullrule=1mm %% do we have the `hyperref package? \IfFileExists{hyperref.sty} { \usepackage[bookmarksopen,bookmarksnumbered]{hyperref} } { } %% do we have the `fancyhdr' package? \IfFileExists{fancyhdr.sty} { \usepackage[fancyhdr]{latex2man} } { %% do we have the `fancyheadings' package? \IfFileExists{fancyheadings.sty} { \usepackage[fancy]{latex2man} } { \usepackage[nofancy]{latex2man} \message{no fancyhdr or fancyheadings package present, discard it} } } \renewcommand{\File}[1]{\path{#1}} \setDate{2019/05/23} %%%% must be manually set, if rcsinfo is not present \setVersionWord{Version:} %%% that's the default, no need to set it. \setVersion{2.0} \begin{document} \newcommand{\Dd}{-{}-} \begin{Name}{1}{supercell}{Kirill Okhotnikov, Sylvian Cadars}{Scientific Tools}{supercell\\--\\ A Scientific Tool} \Prog{supercell} is a tool to convert a crystallographic structure with partial occupancy and/or vacancies to ordinary supercell structure suitable for calculations. \end{Name} \section{Synopsis} %%%%%%%%%%%%%%%%%% \begin{Description}\setlength{\itemsep}{0cm} \item[] \Prog{supercell} \Opt{-h, \Dd help} \item[] \Prog{supercell} \oOpt{OPTIONS} \OptArg{-i }{input-file} \item[] \Prog{supercell} \oOpt{OPTIONS} \OptArg{\Dd input=}{input-file} \end{Description} \section{Description} %%%%%%%%%%%%%%%%%%%%% Disordered compounds are very important now for fundamental science and industrial applications, but most of the methods of exploring solid state material properties require ideal periodicity. In opposition on many reported research, which imply periodicity to disordered system ``by hand'' and ad-hoc the program \Prog{supercell} allows to apply the approximation systematically with all-in-one algorithms implemented for structure manipulation, supercell generation, permutations of atoms and vacancies, charge-balancing, detecting symmetry equivalent structures, Coulomb energy calculations and sampling output data. The advantages of the program are fast-algorithms implementation and availability under GPL license. \section{Options} %%%%%%%%%%%%%%%%% \begin{Description} \item[\oOpt{-h}, \oOpt{\Dd help}] Print help message and exit the program. \item[\oOptArg{-v }{level}, \oOptArg{\Dd verbose=}{level}] Change verbosity level from default 1. Level 0 - quiet mode, only error output. Level 1 is suggested for regular users. Higher levels are suggested for developers, bug tracking and long program execution times. \item[\OptArg{-i }{input-file}, \OptArg{\Dd input=}{input-file}] Required option. Input file in CIF format. Only one file can be specified. \item[\oOpt{-d}, \oOpt{\Dd dry-run}] The option is highly recommended for the first run of the program with new input specified. With the option the program will do everything but write the files. Be careful if you switched \Opt{-m}, \Opt{\Dd merge-symmetric} option: the program will go through all crystal structures, so even the dry-run mode can take time. \item[\oOptArg{-s }{cell-size}, \oOptArg{\Dd cell-size=}{cell-size}] The option specifies the size of the supercell. The format is AxBxC, where A, B, C are positive integer multipliers of \textbf{a}, \textbf{b} and \textbf{c} unit cell vectors of input system. Default is "1x1x1". \item[\oOptArg{-c }{balance-type}, \oOptArg{\Dd charge-balance=}{balance-type}] The option helps to balance charges of the structure. Be careful, charge balancing with wrong input charges will make output system composition far from desired or it can even freeze the program. Charges (i.e. oxydation states) may be specified with the \Opt{-p}, \Opt{\Dd labels-properties} option (see below) or directly in the CIF file ("\_atom\_type\_oxidation\_number"). The possible arguments are: \begin{itemize} \item[no] No charge balancing. The option will set all charges to zero. \item[try] Default. Try to charge balance system, if initial system is not charged. \item[yes] Charge balance the system. \end{itemize} \item[\oOptArg{-p }{labels-properties}, \oOptArg{\Dd property=}{labels-properties}] The option will allow you to manually specify some properties of atoms with specific labels. You may use the simple or the extended syntax: \begin{itemize} \item Simple: $<$label$>$:$<$property\_name$>$[=$<$property\_value$>$]. \item Extended: "$<$OPT$>$($<$labels$>$):{$<$properties$>$}" (Do not forget to put extended syntax in quotes). \end{itemize} where $<$label$>$ is the label of the crystallographic site, the properties of which you want to change. $<$labels$>$ is a set of space-separated labels. $<$OPT$>$ is the type of string processing which is used to set the labels. The possible values of $<$OPT$>$ are: \begin{itemize} \item[p] Treat the labels in parenthesis like a plain string. \item[w, ""] Default for simple syntax. Treat the labels in parenthesis like a wild card. For example, N* means all labels, starting with N: N1, N12, but also Na3. You can use ``*'' (any numbers of any symbol) and ``?'' (any symbol: exactly one). \item[r] Treat the labels in parenthesis like a Perl Regex. Syntax description can be found at \URL{http://en.wikipedia.org/wiki/Regular\_expression}. \end{itemize} The $<$property\_name$>$ is the name of the property you want to set for all specified crystallographic sites. Some properties can have values, which should be set by using an equal symbol. The properties can be: \begin{itemize} \item[c\Lbr harge\Rbr] Set the charge of atoms with specified label(s). Floating-point value in elementary charge units. \item[p\Lbr opulation\Rbr] Number of atoms with specific label(s) in output supercell structure. \item[\Lbr not\Rbr fixed] Exclude crystallographic sites from the combinatorial analysis. The output supercell file will contain partial occupancies for the corresponding sites (if there were partial occupancies in the original structures). \end{itemize} Some fancy examples can be found below. \item[\oOptArg{-t }{tolerance}, \oOptArg{\Dd tolerance=}{tolerance}] The argument of the option specifies the maximum distance (in Angstroms) between sites that should be contained within the same group (meaning that the corresponding positions in the supercell cannot be occupied simultaneously). Check carefully the minimal distance between 2 atoms assigned to different groups, which is written in the output of \Prog{supercell} before changing this parameter. Default \OptArg{}{tolerance}=0.75 A. \item[\oOpt{-m}, \oOpt{\Dd merge-symmetric}] The option enables the symmetry check algorithm on output structures. Structures that can be transformed to each other using crystallographic symmetry operations will be merged and stored as one structure. For cases with more than $10^4$ total combinations it is recommended to use verbosity level 2 or higher to trace program execution. \item[\oOptArg{-n }{selection}, \oOptArg{\Dd store-structures=}{selection}] The option allows you to generate subsets of structures (rather than all) according to certain criteria (listed below). The option is very useful to both save disk space and facilitate navigation among files for large numbers combinations (typically more than $10^5$).The argument of the option has special structure $<$sampling type$><$count$>$. The $<$count$>$ is a positive integer value or zero. $<$sampling type$>$ is a letter which sets the sampling (selection) mode: \begin{itemize} \item[r]: select $<$count$>$ random structures. \item[f]: select $<$count$>$ first structures. \item[a]: select $<$count$>$ last structures. \item[l]: select $<$count$>$ low energy structures (\Opt{\Dd coulomb-energy} option required). \item[h]: select $<$count$>$ high energy structures (\Opt{\Dd coulomb-energy} option required). \end{itemize} Example: l100 will store first 100 structures with low Coulomb energy. Another extra option available to find symmetric structures: \begin{itemize} \item[w]: selects all structures with multiplicity (weight) less or equal $<$multiplicity$>$. \end{itemize} Example: w32 will store all structures with multiplicity, for example 32, 24, 16, 8, 1, but skip structures with multiplicity 48. Multiple declaration of the option is allowed. If the option is enabled, an extra prefix (the letter $<$sampling type$>$ will be added to output file name. Be careful, enabling the option requires extra memory, proportionally to the number of structures to store. This is specially important for ``w'' option. \item[\oOpt{-q}, \oOpt{\Dd coulomb-energy}] The option enable Coulomb energy calculations. The result energies for each structure are stored in file $<$output-prefix$>$\_coulomb\_energy.txt. The energies can help to consider the relevant regular structures for following calculations. Ewald summation algorithm is used for the calculations. Be careful, in case of charged cell the energy values can be meanless. See also \Opt{\Dd charge-balance} option. \item[\oOpt{-g}, \oOpt{\Dd coulomb-store}] Use the option to create a file with electrostatic energy for all processed structures. \item[\oOptArg{-o }{output-prefix}, \oOptArg{\Dd output-prefix=}{output-prefix}] The options specify output file name prefix. The prefix can contain folder name but the folder should be created before run the program. For example, \Dd output-prefix=myfolder/myfiles. The output files will be created according to templates. For non merging run the template will be $<$output-prefix$>$\_i$<$sampling type$><$index$>$.cif. For merging run the template will be $<$output-prefix$>$\_i$<$sampling type$><$index$>$\_w$<$weight$>$.cif, where $<$weight$>$ - number of the structures merged to the structure. Be careful, all existing files with mask "$<$output-prefix$>$*.cif" will be deleted during not dry-run. The $<$output-prefix$>$\_coulomb\_energy.txt file will be overwritten only in case of \Opt{\Dd coulomb-energy} option enabled. \item[\oOptArg{\Dd random-seed=}{number}] The option specifies a random seed for structures random sampling. \item[\oOptArg{-a }{archive-file}, \oOptArg{\Dd archive=}{archive-file}] The option specifies a target archive file name for the output files, except energy file for all permuted configurations. If archive-file string is empty (default) no packing will be performed and all files will be stored directly to disk. If the file with the already name exists it will be overwritten. This optional feature requires \Prog{libarchive} \URL{http://www.libarchive.org/} to be available in the system. Otherwise the option will be disabled. Check the status by \Opt{-h} option. The extension of the file should be set according to desired archive type: ``.zip'', ``.tar'', ``.tgz'', ``.tar.gz'', ``.tar.bz2'', ``.tar.xz''. \end{Description} \section{Files} %%%%%%%%%%%%%%% %\begin{Description}\setlength{\itemsep}{0cm} %\end{Description} \section{Examples} %%%%%%%%%%%%%%% The examples are based on file \File{supercell/data/examples/Ca2Al2SiO7}. \begin{itemize}\setlength{\itemsep}{0.4cm} \item Dry run. Obtain information about the structure: group assignment, cell size, etc. It is a good practice to start a new structure processing with this command. This run doesn't produce any output files. \begin{description} \item \SP \SP \SP \SP \SP \SP \textbf{supercell -d -i Ca2Al2SiO7.cif} \end{description} \item Dry run. Obtain information about the structure. \begin{description} \item \SP \SP \SP \SP \SP \SP \textbf{supercell -d -i Ca2Al2SiO7.cif -s 1x1x2} \end{description} \item Dry run. Obtain information about the structure. \SP \SP \SP \SP\textbf{supercell -d -i Ca2Al2SiO7.cif -s 1x1x2} % \end{itemize} Some advances examples, with \Prog{supercell} embedded to bash scripts you can find in \File{supercell/data/examples} folder. \section{Requirements} %%%%%%%%%%%%%%%%%%%%%% Compiled version of \Prog{supercell} from site \URL{https://orex.github.io/supercell} is standard alone program for both Linux and MacOS systems, which requires neither installation nor third-party libraries to install. Please check \File{supercell/INSTALL} file, if you would like to compile program by yourself. \section{Bugs and limitations} \begin{Description}\setlength{\itemsep}{0cm} \item[Supercell size limitation.] The maximum number of permutations should not exceed limit of $10^{16}$. If more, the program will return an error. The value is far beyond a reasonable limit due to calculation time. The average program performance is about $10^{12}$--$10^{13}$ structures per day with average workstation. \item[Filesystem limitation.] Although, \Prog{supercell} can produce millions of files, most of the filesystems can't manage more than one thousand files in one folder with acceptable performance. Be careful, if you need to process a lot of combinations, sample them or use \Opt{-a} option. \item[Symmetry information handling in input file.] Be careful with low symmetric structures. For example, in monoclinic cells structures often have an inconsistency beetwen symmetry operations atoms positions and unit cell configuration. Supercell program does the best to solve the problems, but it is always a good idea to verify CIF file with external tools like \Prog{enCIFer}. The problem can be fully solved by converting input file to P1 structure (see non-diagonal supercell expansion). \item[Non-diagonal supercell expansion.] The program has it's own general algorithm for symmetry search. Input structures are converted internally to P1 structures and builtin algorithms search for symmetry in P1 structures. It gives a huge freedom for user, manipulating the input structure. For example, although, \Prog{supercell} cannot generate non-diagonal supercells directly, it can use such cells, generated with other software. You need to generate any cell and store it as P1 cell. \Prog{Supercell} is fully compatible with \Prog{VESTA} (highly recommended to use) output CIF files, but it is not compatible with \Prog{Material studio} output for example. \end{Description} \section{Version} %%%%%%%%%%%%%%%%% Version: \Version\ of \Date. \section{Version history} \begin{Description} \item[Version 2.0 (20-05-2021)] A new major release of the program. A performance increase of almost all algorithms: enumerating(x4-x10), electrostatic calculation (x2-x5), symmetry search (x2). Shared memory multithreading in during enumerating of structures. Better support of CIF input files. New command line options: \OptArg{-n }{w}, \OptArg{\Dd random-seed}{}, (see above). OpenBabel dependency removed. The code is upgraded to C++14 standard. \item[Version 1.2 (23-05-2019)] Four times performance increase. \item[Version 1.1 (24-01-2019)] The version of supercell program can process up to $10^{16}$ total structures. The value is far beyond a reasonable limit due to calculation time. The average program performance is about 10-100 billion structures per day with standard desktop processor. \item[Version 1.0 (31-03-2016)] Initial release. \end{Description} \section{License and Copyright} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{description} \item[Copyright] All rights to the program belong to authors. \item[License] This program can be redistributed and/or modified under the terms of the GNU GENERAL PUBLIC LICENSE Version 2. \item[Misc] The actual version of \Prog{supercell} may be found on my homepage\\ \URL{https://orex.github.io/supercell}. Please, use github site \\ \URL{https://github.com/orex/supercell} to download the source code and submit a bug of the program. \end{description} \section{Author} %%%%%%%%%%%%%%%% \begin{description} \item[Kirill Okhotnikov] e-mail: \Email{kirill.okhotnikov@gmail.com} \item[Dr. Sylvian Cadars] e-mail: \Email{sylvian.cadars@cnrs-imn.fr} \\ Institut des Materiaux Jean Rouxel (IMN) - UMR6502\\ 2 rue de la Houssiniere, BP32229\\ 44322 Nantes cdx3, France\\ Tel: +33 (0)2 40 37 39 34\\ Fax: +33 (0)2 40 37 39 95 \end{description} \noindent \LatexManEnd \end{document} orex-supercell-96532aa/doc/tutorial/000077500000000000000000000000001465364771700174535ustar00rootroot00000000000000orex-supercell-96532aa/doc/tutorial/CMakeLists.txt000066400000000000000000000022341465364771700222140ustar00rootroot00000000000000find_package(LATEX COMPONENTS PDFLATEX) find_program(PYGMENTIZE_CMD NAMES pygmentize) if(PDFLATEX_COMPILER) if(PYGMENTIZE_CMD) configure_file(supercell_tutorial.tex supercell_tutorial.tex COPYONLY) configure_file(supercell_tutorial.bib supercell_tutorial.bib COPYONLY) configure_file(figures/ice-Ih-121-adv.png figures/ice-Ih-121-adv.png COPYONLY) #configure_file(figures/ndss-transf.png figures/ndss-transf.png COPYONLY) add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/supercell_tutorial.pdf COMMAND ${CMAKE_SOURCE_DIR}/scripts/latex_compile.sh supercell_tutorial DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/supercell_tutorial.tex ${CMAKE_CURRENT_SOURCE_DIR}/supercell_tutorial.bib ${CMAKE_CURRENT_SOURCE_DIR}/figures/ice-Ih-121-adv.png) add_custom_target(tutorial_pdf ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/supercell_tutorial.pdf) else() message(WARNING "Pygmentize is not found. PDF tutorial will be not created") endif() else() message(WARNING "LATEX is not found. PDF tutorial will be not created") endif() orex-supercell-96532aa/doc/tutorial/figures/000077500000000000000000000000001465364771700211175ustar00rootroot00000000000000orex-supercell-96532aa/doc/tutorial/figures/ice-Ih-121-adv.png000066400000000000000000004357101465364771700240060ustar00rootroot00000000000000PNG  IHDRaYbKGD pHYs  tIME *% IDATxYdyVUc@F7Z+}9Pcb13;dKÑE.h$ (Ѳ {b.fnH"@   kퟋ\*:;y?r<)|;_RJ `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k `. k0̋SNk{ aU)k5v? a/kZy{ߛ@w_OV~ ah (gy$=5W//]/WN.ZؽN:-5~qW~K_Iv-X_ @OZ X#6 j>_IvUΧ1 <3yg1!VA-IP \*5lSW_I knq냠끶 siA-ׇۿ5 p%9yܼ+_I;;@` $ z\/}o_ m".ɳ>kkI ؂R3a5sA` \2mA`/'I~dE k,V8F` \Icǎ  _rJ)9XM[ `.+-l&>ְ 5sA` \RJJ)&=駟N:udXU-lN` =I'O^ IGDg+lk|+Iٟ50A` l mARk  uXNeQa \XF0p_WRJɓ'MD` X0p =I-D` }kB;b$*/&I~5 9lePa X;F[غ{.IC [k 9-;5`iE9-35o&I ؂R3.  k*W$9q"`. k઱1l \Uo}+Ir} #`.`N}_M)%Ǐ7\U-X05pi [}-I `.4Lp-RLSTX&o'Iw ؂R35lO?$9uU?$y,5ph $50gM$9yܾRJJ)v"`.`7RJ>\k`7;w}w#Çgii)w}wf8j~~ןY$oKK5{ѣ>n!w}wjh4z$OJoZwևѼ~򫮿o}ݗo}[vsI` Zڂ0o>;Rl6-@FcV࢔藒^ %^v/Yj&'hwٛp{x㍹馛8V*7VWoXF? KZӨj$Fh^?|? [VJ1 \SOϏ*f見ɓIg}v_]wݕ$~`.iZjyjJnvSN%I~9m@fճU?Nɰzx9e=Qe=g=iTY$ 2>'[$ǚ1{rM7M-8w{}s)KOi7_IL"ssȑ8p`*\dqVuy֍AP3Qe^I꽤^Kj^%_E_k5>y{3^j$n#%eZuvs I`}G -ndu}p1ֵAuuԪZaXTUIR$yGD晖 L%H-̋ӧOSUf&??㷓q`]u~^nNjVΞɿ1\s'r-ٷo8ެ_dHzKYmA:Y$Z3+O$w'Ioۡ{Gr7[oZlb M-,uLR)eZz +[NZ YX\̯~9&k`뮩z2U]dh$W %%z;꬏Tߙh!'w Nk<;,..ά.۬2,)+?Qe=nnVVfVo>?gL>W-2⬰zcuf=ǁu|~誤Vd .GʰuZUW'7ߜÇٿCh,.. i6Fcq!,,.fai)K@8C7ܘ_GӧO/h7 7ZZ*F-FfJ4U*z~F(Yl&OG/oy~䮻]wݥ5\%O=TnqelVefeV+WXڂkFjnj`TZ壧O~8t:  '+'7.Bf}ؿ^V_JIz^\7=ɑ} k`|ȵ,\ O=Ըz߾}Sԣӣ'O<]zr4qfFfFfBkzq1 KYܷ?ʿ|{Dzo߾+G ,.4jfHYOYKQTYG\Ǩ9fJ>z*kG*KO+GAS/V]=n6 Les/Z?~=ZoU-xd},?ic<8vV%Ɗڂ'[L%UFFnn?x{^ɅDp֭zL-o>*=_Ny&v'?>|z=:L\&B /?G vįgqqqӪVB̰:IHOK-%K i,j6lӨ*V*%zغvJ){dؒG}4ξ}Nc<5zVF1 '>Oe1-D"E<馛.Nf(n6CɡɁкLHQK} RՌzbAT[v-A-/Vo:>jrޢfOm~KOoJ5Zn ~Y4BcV^ܒ$7&98?N^_UZגOfPa \A1+ws8Rn/n7n'Z=U2O))7VfsKaznJ9|$VhԓqhnJ2> \&.G[i r{kE5)x+| cVOVVoVevP3-8x ҰںJsqeujt vv~uFVk!+v WllF] Q0=k+E`V ڀZtjfpܔ$ɁU[bVajւWÊQ_‚+VT{̬[W]r}z0>yy1wRJ\Sk`O$ڂNOZ7-ԓ,&9Ah}0ɾY"RժԪѶuUV il!0vz\ihN^vzI?Me}?WJۏk`__YMqaYѸKtl52MTN1Rp8͂ϻnd8I')+deeXwtuoZGA(۫%"[X'AZRj 7n/ٳgsȑqк[k];U˃ ˃ nn(gZ&B^}tIY]3ZHbܶױL\+wMfۑ\OY[[j r1 ;NZko$o9uS㠺7^I>ֿZ[55G?Jq&.Q۝f#ɖ-o?I^CM;dмdUu:v$byyyZ דڅa|䍷$otֽA:ptzUd}y|?K%ѩ[ G-ZKI&n/aRzrroȎ`['?Vfnz>n1ZxcH<1o]oD3[t-A&QE^m'8vLǕc{s^(zW$I5t&Bv;w.kkkiiS֓cV[eee%kkkV[^Mgy5u+Wzxӟ vkow$y׻esթG;rw[[t.EFq6ɹ$kI{m ?jQՓm@^zv lW^y%KJHH^OUU12.k}r"{;e~)Go_v7Y&kɇDu5 k`S *7 %o$o%9MVV:w鍷ߛS!uO;Mf~?oָzסN IDATzcgﮭeuu5kkݬ{YkF[top0: auJ;ykžbRa l̙3;y^*zTNZVuogT3[d,/wpqn~;e!7Au3v SO=Fq^ƖYz=~?Z-^/UUVԑVUtG3$azwȨucVs^*¨wa2NVWWϫZolvgx-v-guu5 MnsXi=냟wt^[/؁~9{lVVV:^m=zx99&A5u72Q]=tׯGg=^n'gVߘcէnfyy9Th=كslVYٜo^nNg!NInz޸Ǩ= ,Ne;/|!>o=oԳzzHTX$)3JIQu+9uuNJ[ ӧOs\jl6ǁu^O۝VO ƋSM~йMMY{qˏ^7 njsOq쨿?u=p2>?8.գzbX{zd5og@E9sfX7qXzdcQw٤K-8jƁD= kkY9w`=9uTS OїM;A`]սVw'Ϭ$|/?w{'sO\k+oߞW^yń%x~v*X*7R8NTUwnZVgvWo-yuFffyUS%J&\^l.ح ^M^z-C` ɓ9yd}Y78/{ced]vNnMi?XwÐz8ڃ^rξy'W>$Oh9,,,Wi=NUIIUW* ,M` \}{S1O!uz|T;v:kaXgO~Ž`<'4n2ZWU,WzWէRL\??4AEt7@y`ݾpu7\h7TV=e;v~YZZUU%oQPN~/\"6q$ٓ.vmIW_}Վ/|;sС,--+F 3ƬzZ?7OHVWzt:A뵵a\[N=zXzZNQa \??L<9tPnvl6ǕcFc>֝v{V'I/3;aX:'=F` \|#>#Gdt:}:'UXwVSJ-A6.8Ws&"MZ'?$ysڃle= VVK~ߛYrl쳟1p Ky;ߙwy饗L;F` \^}vmmc%I>OdY\\Ll $RJRJZڀ X\Jw5N>$w\RʠHo=ײr\ pX;橧^WU7^I)eR1i0jX-mA>gs;6u_I$kV9JSpejy k?$z\/RJ)#pС$O?m2``.랶 uD[v \{{3uIأTX0pJ))\vmA)k XRr- 3lޡ50>KvCagi 0$I-~$뮻LF` \X0`|pjN[0Ӭr ƊޤRa \6mAN*6Oo97|s~ӟ똊j^%pE^~$ɝwi2"*f?u_4){ k Ĩ7l2`llEpcvr KjG5sA` l_~90\5kInd0=M $N~Mewy;ޑ&K%Eh ,^NSlKaU$ Ðx2]f ճ*'z/9ϫ4||Lh DU C%I{91nH&̯;,@djo&CFg8V*^\'g*RzPzz ƍmAuLn8Jj~8I3p'I^y;)yWTr)P W}䷏>*9*O xnIr(0XX]X=+e>qٝeT=UIN85\Ek`W{/%$SO^YrgӋv bIRlU3kz?68ۓˠ(dK3a$ۓdv[2|~-кAcBk*[ǎ`))Ż6;|VuZh YȠ'=R\ס827VVoe;`cc|2OeZ||Th}^y~۵jҍzWzYWǏ=K$2Ecqb,l caĘ5C%>\W>2 gposh?.11oWpo~Lcr 'ɰTX#ǎ0 >lJLwVu^iY'>*oceVϯ.S.SZ .x3qGITZÎSa =K*.^ELVNU}26> JɪIn.%;vN:q ۏT ۝:ݽ$<@>7\`ԉ9͂Y@֏ebz{{AQs0Ǔ}6Xs7]BVfeFY=dp]zp]KuSG*_.>^%_7!a+'[,>nWq{v`]z?v5.XR?KVJ1 \ 9rH97|ӄ6y߱y0L8̰zV`Уl7tf۽v}C9p@h4RSw;U?)%?~IKV;\}|ܚ[3ͪ0nq̮.@LǧDP]&7sah-z^}vmꫯ#*g {nV]Y̮G!Emeb{G>u|T{k`l6SSUU^zk%t;??7|sۗ{'f3F#ZmoJ YJ/I?~Y$gׄ;HF_*gl zfS*S_nv.1{o$U?&:" _XR/U9M\='3\kւ\MVWŒڂl 'vT2=~gsCpcaqyfLpJMwdZ2WÊdZ\'U=fuMrПlh\C=$yL9r$I+cPIe}&_zry-AV ڂhttS3$kIV,'yJZ9r8Pt2}gC^^N{-k9O_{x:t(KKKYXX7zrTU|}ahݛiwvss'z|L//7_wźтϊյdϳV_ =.-A = Ǡqqq3<%YIr.UHWcn$‡ egde]Yau;7 t`=>ѮϹ{FWGg,¸#ytM;ϫUVOUUeqy$K~J^~nw1 KKYܷ/y?_/K裏[n-ܒřa:Yu֭Fjbʓ`wB+uzz2UU]ɠ6 kz`=pQ%T)UI $UT\'%U<;slkY_V6}Kkkmd-H>KU h&^D۲-ۼnDL#{mIAAE-[8412/%l̆f"U}8dʬdwE$]]UYߟB#q1egDF՝Eu%;:p]/ޤ&po34e&R*!I{H{=> | |7?{sssij!D%}r֧u # Q@,bGW0V~PqځĮʦ.Y]e%Zl@X8ic1AU~^K`ՁPZPX0AԱ"e}-`!քB!O0>dѬޛ*Z+A+;rF2ѹnk9NdKx'qb߾} u؅RZ+R8A%NR<|S8w8*KW,_Z%9aI R 0^kJܱ@3mllZ;Z HH!˯EN1Ջ>[, `5!d*8{,-- B63Gc1ʄultVY^>UXIz:@zRw6{';PEe.An'ObI t?p.1eu)Erk=pu~71;w+e6*pآbRXzׂh/}eZ,~uw>pLYmaM`šB!2oLkgSO7^Zv W~m\?w a ԥ`LmIPn2{ԩS8x`MVzZz7M! X'R^ k E"].*>֫(LV̴V B f_0K#Uh(mBQd} 8G?|q g2577 !šB!xF(U g7^ya܃JVrKVڧ_{IB k*M-cn̡_]Mix)MСCXXX`0`0w7R7g$6[_ k/5tA+~6.e`?SǺ~npR>8 S;#cxE}j@C dXJ \Kȭ]|-H9 5ՑPRYJa3i$Odl;wvY) ( (քE,--aϞ=سgkA!Ξ=i8JbZ^vk՗o>3EV Yݔ PVօ`xJUB%+| ՒƥE5q uamvh?LYwo߾le]oov ث*A]EeA"Ɂa#n}CۮeHJDRZi99G@Wk}$!'j® p[jlZԆuk*vzª_:5!kB4a9cM!ds ,..i(+UIk[䮯w8ķ_<{Kø'ZT*ADchH8+g+}F[f4cڝJ{Z9nVk{:ye=FuJ l eqZ>,o~?p<ϟǁ0??ٲ $jiv7)WgCIui] keu,F90̀1&>^ה] fffjB46j.Rh!BccnnnTf DU!hWP@ depu9y.~fփjj՝kZ ;KJD2 uEթ䥼U9 sI%aPJ]FKhń} E0N'U)}+i)RX0 G[Pq5ؾO@?;wWmsСCNh&w[O0;(k R 䅂 5]bKH"|_uaeITu{x߲tWz1 _X^yVhd]J{愔R [%n k?Okis_>SքAaM!m'%jvD-Μ9wIiqӝV :RQYD-Q!%xNܿo9BmʐN3/P#zp::\Zͅ@VNwRT7n<.Y>nQ^v0+{*e-#._ 90յ;^AJmNT\:}m1OšBe,,,`aa|BȺٳ dZֹqr[>}|9|.Lvۅube:j;v;mzQC}SP].VzD5+qjׇ%HyyqA,ni@U0w $ R^VOLZumB-fz7?A~B yvNj`c$}+gV\$1UH2S$u RHH#euX̦u/1WAcuv_}5!M( !|b,lb?RVݱMV yUrԸsRkh)]ZHQJ uj z^?\%>ஶ^Ѝ$^a ^~I5ˋk_"$UZ/ρ_V0@5 .%R%%խ:u w_灘69ǿZ&{f ȳYb<#sa$ #'2$A/~7vٻwo3<\uo>kVZ$nZ{6wuMZӔL=E 'ĵv~-'6ʼn_z&HY'VJQ\pcIn ˣnte~I-j ;Aޖ(G˿iEH B']:%'%{uv6Q(6a WtBɲ&Nćx3_yCH3Qk1dU/.,HKV'Nznh:i] yw|9KGKMs";&UoRՂN'KVY%EBt}C2s{'W"6H ┿7 ]ߋ8I037OߟMzVzd%n8VJ H Ha9~jOa\)kAzhwycii]Zԏ@F=HmXK\'ASTduRAj!k$>a`:SOV؛{<8Bքr&rٷo_k:jǦ@7lQkVUߧ|odLBD' C1AZOb;q]veڥjpW؃'NbJhf90;Y@F?+RVZBJ:oZ 2;O?4|u ;o<"@EQ@BYVn(hoiuCӄƹ@{8G-XD Ad36 ":]S~C7&PËSH/~^NVʉ%֗m<)7%; io B!Bv0'O<0ub(IP\ !^WVJUr*t0:N" . ^k @o PQU)QNw?e\:X 뱕!eu "UR*2f~ėz4M;;ا IzF0JDKw WuOomv`9ص;0+%?UO;3ak- bV 0@a۹nb^eQXmwQH@ui:5ymKiBaM!Bf޽5YRաnCAVZCP(B "10iHc cHLj"(I')"-:.cj y:yuY JkNb3>a:?XQ^.F'..ǰ X Ky}9Rڵk<\~}ikե 1Q^E _ ^'ut!UZVs3&,1L.vV@MV \3o:C{xa !5!d*oy<#x뭷B!ی`0!uSV\sss0؎^9<EQ,+@" c"HEt!cDE(I6]tl/bvu8ЮZi .q;S+?.D -}H!^h<~fz=>\w77v~3vYOl%x7/D?DG)4g#n `kCv9TMWi߳[oYJnH6o$ vVogz4jHPLsTa}gb t߫T9gzBbubǀmw_q"!ZB!Bԧ>@.i=MVœZdYx EYXji #w-2erUs,zk 4vi]^' 쒁΁4sһ1 ۑZV~d'[[!k('h+ cZj,6ljtm1lz ss++KIiP Eisk#:6YD@a~4%߆A_"UYf뜲~&'u}96Zw䄴wn'!; kB!Bv(`amDVvPH`FDl4n6h)au ĵFwz4`V ϻX>uJl/ʴK*'c'8Q%ÎD>Lxi*nyhi +}jz. ׹qVzWo#oo,J!UkFvPj^k;, ڤu#g^ͤuWH׿[),JYmj>Qy(8qCE~!#`4תׁ i.Mg5H[@@C-AaM!B%M Y6{=ZX@<aZi  sc˨w&;o;+ RVu#n0*lf*D<:d#B>ڋifr{4\۳(n.&Em_w[b]ƫpRZ+ݾJIKj킷FƄ 1]ZhL& ڋbm ms2{"+9 ΄IAH! ^X21JZ& /ѻ䵘*^'b⠉r !5!B!;z gJa&CYLXo `v`=mTDk)亃a6x䕦6^aͦKs`bꟿM&u(AD_nWX"PFk@|CZ)ݏQY Vu>X%8 7+ꚕօVA*9Uֿ𓻳oKǎMq%ku+1PF#.@/Ifό&Rz!0:au;v[+hjSskPF h$ i@aM!BdvvqOpp>)sܕÔ4iK+;U;ߕ*U"wzE4{;,ƝsիWkMVzRHx",1}ZA]]]ZI6E[w{ XZQɢ(P( }KoZ*LSPN6w :LW,f_ʹ+'Vd a%}*{4 R֙>ϫ.afӏK,Y;PR9RšB!H$zַC K`ĥ4 D6$(?ib`E$+rp"$o 񒾻: ^E}hW9˟Bnj6xRz,Kl6qolkF#,(r(U@ imJ~xW4vo#(*EEQ@J<ϑ_KVNGV\ms儵.ӥ#u_{Y](QW9m`Ձ4DkZ#AUev~:UZ;;i=R֡v J+(6*c:@6u<}r5)t@AaMքB!@|MV*ol:(!#?r ! E@5j)}oCZn`&RMIٴ]( XQ^$x\%஼Ȧ;ck Rg<&x])eMV7X1h4tû]z`VN.9_\t W\Ae5qMvU*rduecc;3[ R8]jUr)lsd]^|E\|i"rPlEeMVqljR_. l.Ym%A0nޚFV0 JXÊ[ 1PХ @{QSԅ{ASS䀲Bۄc0ݢZxY]XE%D dKW>.҄šB!HY="dHYkfb`M*tFԺe2 b ʜe H*TC@ݸ@7yk eadbDQIVVV0;;~_N PXPc $iv_Qؚ.L y ETRY[yWm7n`ff^IºBs4{퉵urIj,Yˀt4fQ#K-am/ #!4` 'Ʉ~0Ɖ$?P!(zJ)Ip) SZdr%0HBZ&B!d;{Cqv)o)~^SnZ?Ntfbh׆ejQvZ]~xWKENVJn89bA ڸuƶdwu0wcbhA.q][8}4^~_mBn ܬ}V.T Wy! rWmҥKHtBVw0!wM)5AW [2xdh4@w~ IDAT]^xt( N6V6_ vg' J`S `P s ³f<-ºa.WZRVW:דօ9Bkh քB!@,u۠ZI7" /}bt!iE)yۄ āRxYm '27+{oHb cd^UF$oBՕs!^5(o 9뫧rͲr)Du~Zl5|p}@J[Y] @R%dx奻r{Ayn;ۣm0ψ\UY W;8YBI+Q+@l 0VF?gz#aN,u- >\8l`7$eid%tJ7QHwcm_p[mp*kʧYWLwCYV T;XR 36( !Bف={w&uIp\${szTT k(@ux3]ENjK-|:5 ,XJU(etuSțڏdu(@8SNʕ+º-|o24Ѩ~Fٞjꦨ..ruG_rWn+WٳºkmS kmkLf;8w(zH`Ja֡n֥vJh m"YB H@X j[~΀2PV.y=)G7QIꉃ%90VGH4( !B١ i:];hk !03y*"ĭKjDїwk 6 ݮT{F@im=Wm ]H8˓RlCrΫ^v:ɡ]%:zd#\pϟ/󭗪nVN<`&8 *kZ+@E!dxNO?4^~u+Z|uQ}%Ԃ8Y\uYY2*p'LWo%T [ ԅuV10B$ "m3J)ZjL9S(Hj] uYm^kWxo!BAaM!Bemm y( 7N/||_eiNk)C`8a4!2MXڋ꺲Pvh]a$f] Ym!lĵ2` D0a\@Fkz*./B)*8ռM7ڇ^ @6ɓ'qʼnn} k&x" 5PX}E!Cְ] xꩧpVI$Ims& }Dz7JV{Y}GշcGu3]m kT{}&T JXY-@V׍uu;p@OoVS:GWxQ=v3k5O&dO!B!;ӧO)릴+@u EQ 2d~ #,VWV1!Yai;~?NEn+]{nlȮ={VTo;lM V(|J:ˁ,ԣ5ș5^ݿǶ:M#/r7l~WlTV\:MOcii F_~/y^vQ+yUQ^221pVK/p4x'q ܼykkkjnm71vri|=+I6VP )oSol8Ǥȝ&} vx2.F5 sE+wK}(܀¸u?MR']G{AZ&e5!5!B!;5֤uec){,-+cj;sy"w@VvHM[;@T@^3iV^KC:5Ad\Շ6]6,ŭw!^ezJȴA^MlǏҥK}az'w4yРFڰ<:0dw/.\P_~c/m@ٗLXdup 7YUւ4륪;a4Ly~.ܿURݪ16j ~j[OCVX`y xՄl kB!Bv0~!$TY]H P\ﱢ9$uNJU$eMB0p{<G]܄ RTNRzBxQ V6np)K5BBJ!?Ձڠ Ƌj.WwWԞHWO& E)ABYXrq⋵eQHӴ|{{]D0tQkSW dY= :>}z_{BaM!B_ƥKk"n3Zk]b?kkNzjȜVktEYդ#!56Fz6.e@ АR@ NԺO.wU=ډjnY=#5C\em3̙3X\\,EQdh(g!ٸ|-0&Wn_}`;gSϟ<A\sVgպ. ǹZXeS@ k3 -բ۸qoVJM%~:0 =s;3k@C7( քB!p?7xcBXwj+ƣo v^Uk' UG(Sy^vVea'ua=)?'K@f XQ-`w] 20Ű6`u{gk7N>'xTѨ|u JWw[YxO-rIV\Ζ$i=ߧ^MV day|wpQ'vuSXkt AZӱt ͤ^a*hJYm,OBaM!B.`ii iv&F@9YET" Sĵժ幕^?wj~_.θuSX[91)?16ݥVz#Jao)w jtyy"I]}.1Qe5[˕+WX!w2鄴3pu uyn,XY|U>['OlB@ aAH0~\[ꏋ oǎswp{yN8QdRNVTZԟ$g~gu{sWj:XI뮚;6YLXӖտ:Z6w) BH<୷⓱ |2!|lسgOyJ}/5{{?C2urEa|lhVn|o]83~?{0,-.ĔB;Lb}e;OQ:uRJ@R{Q-ZrzuЇm)=N-!e?6}2q<oڄvfya<'߼';y}xÛg4g*dzdAϽ;fjFU6pWb2a `ݖWO?XOV7&O>sEPXB!r oTڃ~ eu+Am ֪Xa<buy o?~qCC41G@CJS˽"Ůd8u}Rzrc5MaXF!jBn\=H9S ~?cRZ% $ynվi!.70!w kB!Bv/ի@eJ۸dﰮ*ΐְduB 2JQ*]~iZqmKSfcwńeGBKUvP!}D&`j%HAƶdRV@aM!B.k_.]E~(.k/z ƮTnR@WVXgc?`q {-KųGC3]-\ wu:û^YBمy8v{ܾ&neVe t^4}F]:( . J jY`YHYM\pqg`JiPەn֢e 'd7&cšB!]?o /u)kȆC-}gu6buy?x-箽SG* +D)ۄuGS|ltpdZ}9W{ 0ʾjV@aM!B]‰'ϟ,~-i֣U+vº( Ch篿߯o9`h+]օ;&/~~Aa}PX&!;2@iM!dpʕmy^.z0SK2+8HZ]lbB4Us!kAıkzLY2Ma]Em.ՄlW( !B!;]2#1gLVR^\Ik+ECt ' ĺ]#+& q!O;>|ZvZvy &wTg.3AMȎšB!$Ӎﵞ5tfwuYLV7KՄ\jBքB!E'9rƠ0ư=im];U!D!B65!B!dO9YM\un]5 *.STB!6քB!]N]?I1!7**@2 B!šB!B`@ cMϺkpP_! [ԄB!w kB!BȮ)+G#۔҄B!քB!]E隆&B>PXB!Bv jB!}| !B!B!l( !B!B |M?y>&քuy뭷< B!B!rǠ&B!B!-EB!B!Bpȑ׮]B kB!B!BMM:( !B!B!l ( !B!BY x`5!B!B!Մy&B!B!-&B!B!-`%!B!d~/~ >)B!;& !B!;jB!քB!1O!B. kB!B!B!& !B!;_|!Bv LXB!B!BPXB!B!BPXB!B!BÚB!B!`@j0aM!B!Bmpܼy7ođ#GrPXB!B!r\v55!5!B!B!m5!B!B!|k 58tB!B!-`~~o&Bn& !B!B!l ( !B!B!l X B!BQn_|R!Bv LXB!B!BPXB!Bv LWB!n( !B!B!l aM!B10QM!d7caa^I@J )%0.rdps$߾'j( !B!Bx'`F$Q0RZ8 ^C5>( !B!BÜ8q{oo!MSq_0šB!B!;ٳgA/CYݖv)k$@/?~ik&;2e>!B!rpE߿UV7@Zu$aeSHD/}!|{dBaM!B!Bre,..bvv~iU qNam0e Bb˕/?_]x8<( !B!;'N`0+0h T#_G!dsٳ~b(ZQKbJYF-HH/.B<)ɎšB!bnn~=s*εZ+~y6hm e>Bb0MT֑ը/Zi@IQ->ÍBvքB!;ӧ1??<%~@ d Z)s fsg1\]ŏ_yO0!ma~~333 RXVV4/J'&E5P}/=&; kB!BĉX\\ġCήzfJkc JIkU( IDATH{}=y+KWB8s 8PKVͿQ=]ւija%P,U?~Қ ( !B![q 0Y=m1BamkAVVZI8M$)ⴇ/~$y>B>v{1|3LYVw `XXQ / \uK}Ȟp/ šB0ư3BǾ}033)2%@Ƹ4uVT(kW=?|B>6o^nJTkaŵڙj/}OW{alJvքB!-ᩧƒ>Xw6;ےe:M]:̧u-eE JEvEBFWzB駟<)CQ&ĵh82Pگ6aHm@T'!KV 5!B!y'q}a~~ܣ(ZD8Imׂh+0JCRE2B!#)!CWzBeqq6KRy)K) ;h[( 42RӾ:rȦU €یl$B!B''ԧ>Uj[pU/qj$A8M)^IG0;ůpBc|_ X.>$j3}D^~ Mb$D đ@,d}%^ l5!& !B!oo5 !alکe_'8N`\LlbJBHv?>!nB!wWͿs]:NByH2PTPbA qz šB!r˜={/euu[uۏ)k5VRBJtS1Z_?7!-g0Ԇ 74]K'1X"R KN=kA kB!B-o߾RVM9=-aEQl:IӲDkmJAk J4%Ъ@:`vn,B![ɓ'q#ߴ0]qsdx XY|}1ֈRoBRҺE`>kA kB!BȦ9qfggkt(ۖ0QoҘzHR{}v 8#ezShB^WKU%*Q}@fg~H8F' ]M__K{9Na%< !B!faaDu8l*LWw}OfmbLkPP*(PV3 vآ5RI{= fg!l~`bsCsiKZoRk5@%GJ! )5i a$d„5!B!dS|_L`6Ak^fff13;`MZG""AFvkq"G#%4Sm:(_mE{0$`R I8ٻ IY鹣{$ %z.֊҃á()2$.%b!Qwi$%[0v#plHzX+(`fny>dSYY}险~ΪdD!Fjk=& >|x4 qJ0C9t)k4i8j8(b3(o礢gu$bE*"|@chji~a'@]^Wm;kMSmՒͼuKf D22rڇyIc-CYE` `W:N:O Þa`]X-IG#)! XFEk"(rQ(,q4 M5m^<un;sVUyXe ^=`ڰnTZ9^,ǔ }--h3)ڈʶ QӱǍGohl}㼈! @ ߯ѣ]gUWc[30+cG-i!u]hDZ')5fsY>1̫m)2F6{yF <Ďf Cкf@ҰXIfRf%kMax0;o/3G: 6\,>dg )k*I[JTiŔףzX]Lc-C0κbJK$EpI4VqaX\GvlNaP].e)q@y`N j4 [>.*Mp$Qecu]p~o;ʇ-pSFu)Vs_`z"vyvbvX1tݐEՍωj<4FP]=THFAE5}ihOU A];琻 /iC֥ ۓiHI,-ð: 5b" wR^qG ;ϨZJߊo" /0XiKeJdr^Ei}]얁MSE._jB0՗1pU đ@: 1y-x+l .a@q9 ^jZ?A d_0ɔfNuy] mauITܯ9/ f5s~[=vp\ztw$$KVWCkc y0ih8L*+B0վzI vnW4~o/2aN?oYyYk8{lYe=-4M$p8p8޽$],]^66nO?ԠNR4sJkJ_2u$i'aYfY;j٢)͂A5%z<[-Yv͉ I]IU2*MeY桵Ň"UT[,+Tp3666'ڃl C }z񥟨O$ S *I@2M,IyXJhyv؞VUc>w'颤˒6Rp8T?.MS˟,/"`O>}Zn }jJvz: T$ 4LEPTj[T-@OP%zW@KǪĪ־Gx񌢨Og|ⰸޓJnO"N$X@lTVgTvíBn6 &Zfq\xۇH1F.`I`Wj_U=Hz ]J]5]tкh㸼eذVeh}Ay`:i8Ll0-AReew6ja3̎KD~pM._MzGMȴK:N2i颒zX gzOz⋄ոPa `6775??v]qY)6thiTeeYs˗\^WRgJQϬX`YdLSeId8Ԡoʿ\S_җ?41ﳚfXOw=UmR \ [6 ոX" ðzTG S- {bc@C%ÁMm_//`f+^N c/]>d10ztj?ڙ3g y躠:+k % }G@lZhۀt//E̬gϖןz)ͩlƨx_RIxꩧtܹ:˲4Maα "}sA;,Kd8԰ۀ닯Vn龜Y9%E{̙3p.] mnnk0] E=(0_נUsSu_|%IKKK Pa uV`{#hiiI eVFQ [-A~ĹaY ćnWѯyV>M{W%I<n:=< sNykyGE-,,n?HU;hRTTXd|pmI.b#"pzgaSP^[` w=XXVW-ֵ I3eX[56MW ?Ǿ?"8kzJm66l*lR!}7VWWp}{urֻzڇιQX]TWڷ0 ۶_K^(2>ɓZZZv}ASWW\Sm Μ9'N>auxv?hؗX+:EP-I2R:"^(!pKx2 M]M`ZnÇ-@v ~?8-n69Z'WTV[<|0caMc{O։'8ThRzxg4jZP] å_l:'gʬ..-Q彫)vFq,5RkړO>nM;vt:* ^80 ð:~ ڒr)VY)lqX,ZֱsrENq$5bf*kXط{챲zaaAsssfM: 73gheeli7͉^XNY)2i4͔2:Xm!Fr|K&Zr`_ztp: TAҁVVׅa`}.E|XM5XqlE>VU%ֱQ*k 3ghiiilb]H=vmAOmHGQ՚}[u_a:lێ9$M5lvG$k@F?Q2ƕXpm}p+{ۿ}bb0}8]^߉U[h=3777u>CRm 'dS2LFQ̵Ek8ed+eQms'D` `9yˠ.uUhx\XkQ|t]8VNN`ͮLY`LTi*"E@䫬,Eː/%/$--ÐZVW&Iv| RgYVVE]hM5`O}koU $+ihn]GHZ%I``pd+b袑akIFyud^?-~q-//AYRW~bh~~rs^E,SetE5{Ňu-UXWZE IDATXʬCu{=usjzj Eq(2cT(*ZF` `XXXvb#+ο7Q` p#/|םw9Ti9"cLY]= S} TZ_wB.n)z!5 QTU.Eˏ/ t`_8x`+ Cz+v[;vLGѡCtu:>p~~l0K+9'Tjt[+ynyTXTK8hja$---)jcc.}k0.Wos}=5C$QT-e=~NGtq5}! j{8q 666hPkm9a {$5`/; lXz^m0x,AqVߔ1FZ Cz=mnnjccCc[pjeu>K{jkI[}".{T*XX-%4HߤzX^y啱ӂ밪ry?^ַt;{K/gaٷzJ3/-g˗juا,&0qZ^(᫜J+Ų,+{w=<o-cs`*݇>EW~Z/Xj?DVXK+\~}Ti-_=VU]&N݁/y0_(XW?|sNfs/]T ۉVrӿ0++]5˺g.CWmT[$sJRA8Z-A/rٞßa\ -B666~n<:|V0K>ootr?'ZlַKfRWRZ$S9\1 G5}e}}]cCj*}Y8Wj+[oW_}U?Dk6j4j4We)l+.;a5v/_Tݞ] {]K|iUg}Lkkkl4MniZWۂ4+{FUOI6@*k߳7[#;+?x}UCAS/)+n_w[TW^{MsW$jZjZ{}$%XYP]m@ѳ/3`#zgʖ uau]uue`mQmŪ&H<y;vL SRkU=.,:6 i] /=s:w\a{MՍFcj+}ɫ*Iz't!u:rRCRw+zWUi^3g襗^hR׷zZ%ٴ6"Wj,ԧ>%Iz衇tau:a$s&o1A55}7ߔ1Hej6ʲ@^7qkf>=ܣǏ}q7`]d8WO A` `_{t}ԩScAuTLJ5__'`kZZZҒΟ? EX~~A+2iZ.r,9mPx뭷ȋUVqY?^/^666n[.^obWƘg$\LA5[ /ʊ8Nvf96\:|J0\`wr/H|A=zT󚛛 $&2nYO|YmYz;曬T@` ^z>NSV[GQ}*5TٳgY1}ok_+7L*nM5@` nQ0=KnVKkluuTXص7xCt]w2v୷ޒsN9V3c_tԩG` ̨UH)JJ$[,  ڪ:RPǒNiT(C0k:ڪJZUڍUV}M}ARimjTyyI+A53k:*0jWVVOkU k') *Mߺ]yk Q{9'SʬfNOln,똤ۊCmX]ЮQhR^m.e#"pUI9%͕-@FV_WVY+N geRKя~?3k 5̨V"i/q%J@5Yi>!ZYSOFau{z7WOvWQ6<*.Mp2WSkUgϞՉ'0V> gFK(RIq,řԈF,Y 5̈́f#+:*y'jXk*=L=2<).~ZobbݶzzZuTX(~.޻'XIvZ{Z[[ӱc4??_ Hc@1jƣjo\qW[[+HSf)H"S5oZ5̈_NGFCi g_{mv.|Lv>|ia4^IzrmU/{߮ÇkaaAjcCͦ8Vј@$)œ 3F2TqGc7kAinnn{uN"Nk*i:Č Ie 5O~Z\\,ü},Izs!~MuJ37?+Vup°zHzڰźNc=nmxYq3 spۜigmFFa+nZc}UWO -ZWQT[[?[S`Xu\ǎ+>zj}lb@o(Ij\_yKɰ"묈S ɍF?Wo~ |8ZMI7 ~Z>MGsFuoߩA_ϬkcվoGgok<4q͎.,ə`uL;&ќmO?ǏssseX]]EiTa-T;W k\[vM bUp---:uj=7Jyzo={V9VuZ ק k*͗5j7~T;{nQ \m fXW*ÞNڿ7¾NN?_o U?dʃLykTM#<aeu]uu5qFc;(jW>_emFVG-k_w߭[:+!k>яɓ:~xYa-,,Lջm괦fjHQ)l 2ڍkjT++ԃ>G@ӧua---Un7x0Q70Z)R#QS}?SX1h1'݄cUTiTfj+3[grv2 lj[c*yIꋕȑ#cauX]U`]XueȌ]auɬ0QoKwux VH|P~Ǫ̼N35iX S7*񰢮N2K>~&Nxڸ{SN;U!~M) wӉ'Xڄ]aFbdQKL#F#S4 Euv?ڇ֑1ehDť[XQesNV.]~Co]>T6a%u\`?Lyuyh r|I8qb́pNBVQuefl^]mZr5RxA,fM5!kࡇ҉'t*VUfnnnjx 7vuuT~\Q).Duu5NZ0g5O}{. *Bu{cǎگFLYUk}Pi%֑uʌQ9EQI߽SDŽWWWnjj8]mWjcX%/kST^żbʜ˫v e?X->4K 5ȇVEpjX]v-̵[NZeZ(32̺b(__ypF:5\'> -//СCehVRzv6< +QZv$aa4_ˇu >Uj-wWkZrzpeY'>N8iNL◨C=5a{zЬV7N:+Y%i$I$TILJ%lZ"䌑"g9)~)f5ՉӢ=X C:v noWylƇ/*¸2@=Tǃs>AuCmAڒ:rzdeYRe}^x>|X\ _"֓N<9qMvLQy2dtqF-k*(xN&Avl^aXj~lT-^qQEH(R,R( D)'2VO'@u`$ *sO{޴iwZ_I [9G?oo&T꺁uU֒hD?"ť)Z7(isF 99+eM@iz ꚯ WlDQV7VSj6V+lƨMXۀz-D<- 'gMYUmA>v7T?a%މC+RZPՔ"Y=12"k,!t;(0RuRcj[kk<>jyaUlbkl?󃻜Qb?TT{ahdepV^Yg}ݧ;c,VodZjˏnq+++auxag$If#Kc=M[t #KM+~Re=MSۇ=ˀt $"E>au%R;,BFZ>@R)IPj a;߾7:)2VN.mu㿓dx}5}/Ajh#-K.tpnNq=Dá_J4oo(tVUW( p}3QSBهXY~vuX{komZzPMfհL&32ЮZ(ЮXyuu5nJvڑ@=X=Eao [Ե*kcXyz`R:Udcno|YW.o`Q!͵,ZjEڲ r}ڰEۂQ0ȫ[mi-Iz]TZ= 2)-*i{]w SlQ>L:Sj2xwkSO[vh{[ɤBWc-X`^n^mEL$cQ⠁+Zb&?!2N{E@` Wi~~~ V86 -..Jʃ4MW%2(MSIQh=ޕK)R2Y#V:*Q5/y?kV TYOO~RkkkU׵-gz[=`U[umMG*Zl]ȔfV&2T !tsQ;Vj5߹C'TYW@ *햲Ũ%HEyWځ[yX\^GUspŤQLyLYm"kHsg]jzx5\ %Ն;wXR*sWg~osTVXd5}f5\O|:uTayZH]XoVKґ#Gd X(IiUtoWOeuu6ꇚH2e_\}PѶC|uiCy/tȑrg ;@.$ ߓv| R ~ ClԛzQ :qt)M3%i0?%#us8TT̺3ymmN&Uu|;j׾ kZAuRg^u5ho}~oeuuqβb8UYe6*md2hiï wS*UJYՍXqW*KK!6f5\lVzZʇ9JRerJحկ:J`#IS̓DiW0pbpWXWU{n1uwVJWig}M:[ģ>xuxV9m!`0`0P˘AӲW+b+("W]Q'J< IQԐ4EvS?wad7\r"ٱb)$lQ,RX2MI!XCOEK=qf~WꞞS~P=՜O}sea L݄uën󧬫x~-XZ;R#TSȡqz/^n?QFyxco oq)Y U;λcǎIJp^vwZ9'tkdweN\k ڔnMY܉2 9RVO.sAIsBj7(s~YYY=X>nMӰ?hghl~VFCЏOߢMW iw\~=_xWk4> Rh"H?vu޳1ѸV'& ɦe'nHawرcy`j[sO:-Ε>'Y1b:,̘-4,2IvZ 3S?nԂy}g]8@nkו>~f슺=?s?Fzg[Fq[ Bg1Rj4xڕL^wكUR#u,^ZNet!ob :Ңrg=ildau#]Pd+-6_zҁӺjޖHq_xkKnO@HQ)c$=h/) ;r_VO/zA` {nKu]X]]djjѣGq(^EyOV<‡_.},cci4BdǵI1jЄi%H(E݇?ed![+T0dWAPv@t;,Y__WJD(}3~')kAxy睥禺]u*edi8fi"EDINy[R^V0a]g&oZu]EjB4nuX]XHQ;n g;wW[ۿ~&j~ߧ޸!%4jK6^p(Rl1*OWW]`;,P}n7<iiiT?vСyy4.e?Ob$Qj* P,8}E3s5:NTN;PkՄTgvA{rbM ;;*<--Y57 ?h0h6~0PVK~5?iw?yd H_~R-,L|xa{.=a:Ť011RH8]v&$Sߟ7 (-j 񸴏pԵVʬ"gJPik-u{= C#EQ$1J)kj~c L <3ngNUE;(,-j68^ Da(0AyzN[(s@tu5/n+%IY L8vyaa[jYie/4 YX~X]]afo"$Ir=˼Fmj^@<*gΆa8k]Xk$QEsiʢp~n^`]Sjcm!+؛Y!ݕ~wU&ZWWڤf:g&lْQ6*L¼7gK?"hdmoBT5=rHX;ϸ>k@ Րmgt˒?KRfVFF 2D+M&vH-H_O~:w=7O+LZSd2&G'm͚KMw6R_[[[[к:m$ĄuyլƆHqo :8g-DÐ]7c$VX GuJW<á0h4'\(b 2IqVqRGi'jYv6f~Xkʪ׭5pĉv4]/{ : |ϥ|֗=տ\L2x^q+O܏ǼA?'Z_?$κ,0LFAZGn'`grݿM_ߣԉ`~ `Xeǥ1@UCj< _W8_n{{;a/dj?;~iifr+Dv~_ 4 +K,-^c{]?y=쳵g]L mFZ1)vuisK[z"EQ$Ξ#㾟o=7YCYb˺ZyzbJFi@⬋:k [°]USX'/ia:}h~hՃ6 n&ۧOso}_W+TWU&\Pqyf|!EclHq^NW"XHpjuk4nqYӯn:Iv^_N4a]VKkm^Y]mQ"-uoW{+*]^gu[" 5\wyGG'i< "A03z7L";Eڅ֮:Z 7a()HCh\LG\ݪU6[K\yRMBujĴv ދ/p8TV4zczs4 _p5,EYkE^_^_ADgMfϕ(y6 `w07TV֦aՁ1Ha,%U PޛIP._TxV ]W OX6g_=o !$=zGj&g}Zf)cLi:]oz,kuV}ծą8`AXe_u9s&_\*"ZҢR/~hqww>i]OWiلQq*8quwD|]R& xylmmi}}668ng޿X ^n֗ӗ~#MU+-4Wwƅ/}7|SZQq4p.P744g I kWP.凬⋯]㷟X3c]9+cUbBcDa qNl9ng k){taEw! IDATqn>e=9a:(#s@5\-LEQTDQTŽlN,~wduvpKÏ0LO4[kX,5Hi:T9iԪ F|x ^5?K.S߇mllhmmMKKKg\SUqugQ$u{$N.8iH]qa $?d^'n?uYJdgaUS6P )>+ *c٦X7fyh8nXQmHIE5&i zg̙38gl6Sĉ*yzgfA` W?3gMXW;]n wV_GmuZt;P)븘.MsZz]P?0_ԧ?i8p@N'CT۪vS6`N_:{l~ŬWj; #fSՉiS84ll& rjK?NY6}~sJw~Հ4٢A9blޅI"U1qbj%B!u9+B8>:}t~ lyyYNtwKtStVX ytJvu*MXẰјr9F5 tu|T7e=Ap( "n:q]EP@wj;|kx9M/]JZC` WȯگT՚þ???Xw}vaƺlg7AB]iN]_ $t4.&6e)qVG`&,HΧןZi{NT 5S vERf?MW.]NS:PVWw c%e?/ * 4sqRէ-~~RK*&޾Q͚ٗVc-( Z5l1 $ ä{ T$12Øau-VOmW~W$I'tС jf=PVduW=Y_2U p"+?dxWjo?)_w"I|&;QigpdDn<ڒZ*jA\@8J6 x0dV FA(T W~!H61b1QB}qݾU |l{9Iرcճ#YP 67k Ο?GyT9W:KoZt]JLV_mt: ? ni "8UmY}V`"^$=#Z[[Ӂ?vyY( EI5lFh,}Fج#6^zP[ v<|@1]k_җt=;p^zw^~eI?i8jJ =GֶXbi&tV_=MYEh=OPiZ Ȧl_z.D5Y=V)\.LF`"k{us[[[rĿ_YVl& # lډf}AZ^YkiM+c~jz xӐSՉ=K_$'Pǥן;D?a|q}-ܢ-//nnOXG~S;oatQi J:T9!$tZT~&"u q>zZXݕypX54ZZZ w t΃kAރJDPEܲSImli$sXNT~sypWyy\3gGUEZYYQEt:S'xws`dmwg$=cZ[[:Dh]}ؖ{dul5[}O'P4tU5LnTvʃj/r>|>nzY/~X=꾤pX5>qx~=/QZ\A,,HiX٬5 ?]]A^]Gd^H-&8SR}." fN썳'ԁ\O>>~h]7e=СCg]g0*;)JIG5tg?hT'~h3'5suqő 6mJ:' DNXٌ_xW6fŢ]Ypmkϖ]vJQ?YnboUJ>>|8 EP}| _}ݧV0 ukdmZ<` .O{_}sK aV}aS;RZZp]]VտLX k ,W `~X77<MX?z@+n֡ʋ}MAy://;m5H]~P] >ʇJk@6)|#:x`\ ^7]SԚeIIm|_ެ˫gX UgpYua3w-IzWx0va}}]X,{VW&J4(jhݨԃ ;`"V8SdXVLu[AoX |Zdhuuc{zքu]%UM#DX "J6%5#jv8Q,ekru=l>S]o[w_ eP:|]a5ǧz7}gS_hqք^*A3b&jMIV#C'Š`?*P# wuy.[أ;]~X]YEXN@X &.a/.je:T15 ap1ʓ՗$=OX g_CRL_@+j[c0ꔞekT<GvauW%pk'3N\]ͯWCziS֪y_lqr:Pre[^"uB` YhMnAp.b:5ndV%H5j'@z?KX &kOVIcuYֳ`ziiXL짻&uF` ⳯'K3*9ꂈǺ\cZȼu0r|bo"~>,Dct1Vߔ-MZZDWީ~_LTHzW`8L쿧MT+T@` 8q\d+ cFr1rLM aud@= ӯx!򽷟J.X݇SՑ҃/PD` 7eևhYVKJHm/u)>ԁ+`^0jUn__"Mn.ZS:mV1WƫNYMY .CkzyZh[ puG_kBlh׬кnzZ: 4TxA5,SN{A"ԯdA'kM%ມrp]3mE5ʂ-I/T+np~pK v5e:i[d1ҔS"H5PXџnz$jpmXM [ GCX@% N8Q 5bA~@%`!XcT#@` X@` X,3N*]ǃ@` 3A `!Q 3wK,k eccC΃P C)k`0a $imm C` XTy{SLX 5`!X`kXLX5`!X5`!"qwyPp1a `"`o^yIw̓́eyW%Iwu. 5`!a @,kB=<S0a X@` u a 5 {աCtl6 !YX)1Vq"} {B` C=5-//ͦ0T'k.$c+}Pq"EW~#PcimmMN'&]`.kMZ[(VI_}P[ Ɩk$GաCtqu:mZ|MWAof f4%HqKj?}ӿ@-k`_E` `zGt/Nv_q ri?~]|Fc%j6VK}؏;?nRX̚fBi kz{S{6Ѵڽ}h4^ZdVIbdQ$J$1R`c Bume@j)k#:m'+kʙ3gt뭷jmmMU uՍF#T^^kvia9.UcVWa1JDq+. QHI$+k0lY61V2@ cj?d`!o>}Zd_R7]=hͬUa{С*EQ88k<Qv$]XQi+M@ @ahf(uZGOwqVVV&&nźzVpOOϋ)krᩋ W{ g9rHZEG aȢZ#=ցiCH(VFj ؏ ǎX`g_]tEOp5,--MT^M a$vT1 j6VZYceBNZV6ldS֡ή7`"p;};R9mXinka\M,ikVرcJDP^_vK0BLb#c 8Pj_:L w Pʿ1&]=oh͔5JzwfXW]u9߯ Ԍcu-/ul]Ibű(N`IX i}2 ; 5'`!pS;}?L .9KKK%IyCkg ! v6IW!YIxhh温F#V&jɛVi`!5Z>Y=-N}MJ>E$$&͙7fpl\B` U !u]hOYرc(4vծ]@qMgm&$EFhq)|1bkIck& l咧`!pSuwgm"SR9zy1Fq+"qaNLYp5q\ZKbcv'^O@Hq^go&mvߏ5R>]EMXUc---h(4IU!\ (rivI}WzKcߗn~SKVNN>nJfs"isn|iEwp\ >l~ ]h_V7w\(]P[zuҦ55"Q$1i-H>e|MSAF` 0a T Kꪤbzm0hiiINGv{"cEQ4^K6ݞaX^TƔH؏pSvy榣J㱺ݮv5 _Ikv%EQV8h4nA{mwm$JDq(N\QX%YGb1IBش $+w'xbn+fu:_t(JHI[%YX=LV k7ϫj0Luu1Ew⊻Yd̙3ХK^[kű:۬T8Ƒ(c-j@0 kF>a];uƘאjO#N|XPݞvcfauV'Bز"F` `_9w?N _t:uhtQů!!5vٳ!iϮ>AX ؏Ν;zKVSWp8p8`0h4ʯFҶ[հj2&[gѣHt:Xw3%]-A5@=ks='I:stu:ťQw;j@O<{Wǎʊ򅥪i'5d^~ӧOkeeENGVKVkO #O=T>"R 5\W>} y      Bؐ$`pmooKx0G` XMZ˃0a X@` X@` X@` X@` XU+Hn `&+W_]wݥK*W?eZ-5Ma ג$k1JDQnhԧ>Uu::uJfSFCa* „Z+1?$I4}7k`|ӟN8Nf9VA n֖Bkc:~g~FXۿ̓5p;wN:v)v څ~hmU$j6j?p|+aOW믮NX ׸i_*O5ꡇґ#GtwSf/ӠξЅF:3ƒzL]c=׀auuF1OW@&Ck7]OY'IR&O53N:UZlSm'fmm?~}+ZtX=p[W "OWKcLWVVx0\s>9Gjyy9_KTCk:nȪBwEp z)zMUW]nnEwjw_'l6t?-,\wsرcZYYYw$fT[)PP?e* ~}kkGՉ'lNLWuXםqjjjD*&>n6u:}Cҷ-4\Wgނ;O^7ր$Һ0$A>2e_wcvC%fm»)o(^0ovlE">=O䐂` d9g9'NVU[ȨBuuuev_~usi:t ]Y۠ kmjzka!DDt=۷Vա:4:DP/o 㸼teii+n8DDDDDt]>})r)е:F#@+ DPjDDt==ԧ> Y ~ KHs8{uϡ_+nDD7J^OX^^V kp 5j:!/߉_chMDDZ~7O%=2dee @esjw1Rg5h :qױR~+yہsT=6mm`*0;po2&"k#~~{N3QUʰ:˲r Y+]XlT:MS8"DDDDDt|,ۀ)mqt:͂eۏ6o"b@Ǻ:K EdDDtZkH)! i.wzb v2 gcdY(PDp |wv׿u|8-9R7CCG!#a:eV+(gY2PR?&ڂد'RJYRzGc F#c>hN CA7䊤;FDDDDDfiiVUf/2oX pqp:e}t{]q#*-NDDDWٳe ~H K)wF.^˗/c{{Y!d{>D7 k"""""5i ԾvU`K%Vwv$"fi #NH""jEQqt״Zkkk .\~ .ҥKp8mJo-Ahׄjиyݿ<#G"ISY=h j,!"]IaA @s !P0`{{ qgO 48'm hL wL x9L wl BDDt Cy^B8!,ϰs IDAT6*6aCJ,0jˬ m{^Yq """""5N!tDf XTJA+뎈vɓ'xZhvYͬr裏p|ejW]̶>m?ϸa5ЀyXoa 9r Ce>gYɔ :ς&"]2<ϑ9$A$e@CHӴ=ȥKjD\x(nkM:?X__aq n-`ee[[[|A薖ynw@!Kغ8CۊkM5&Cj.\DD+.]t]t:2LxjX |RAwPwhcs_]WPl BDDDDD矟/s q]/^˗1 0!WJzU*jBZP @q9}yrgJk\JhkW)ףڵpYl?2G%/b5*S4riϾ.})%1.oz{h<> :(0&"] Iq\VX ${`<Oܷz( loos vpvjrC4B`γ20B=j#"ui9sX7[9rCuHQY 3چ,~Ux<s0XѮ CqQ( DQN6s~J( dYhhhlkWh ⪬ːVKc?""}>(^z%$I2ѻiku EQ~o1ڪeexWvӧK/hE$I~h65-хrHT3sl{wTa2nTS -&Cx?s"]}4-h_(hC*g>Yakk+n h׹Pny#IZ)%vx/_l>|KỰUb e.C2nZ\oDDt<38uTӬ\q\{!i{y; *2 \At``MDDDDD… XYYACAe`1. rl ahL8/ZZXl"lRj""|M{^: TPjz0^㊡ k"""""u/Μ9~_25Ϡ)?vmC\`-x4E)5YQݸ.%ʰ]o/NS7 X7-UV? k"""""&>Z`ByM.?YQ}@Up]Vk}]@ s'Nĉ8xDo4MkzbPfXsEM5]/N:U$XmUv kA_])V;uoȑ#~niu$}ko/ŧk"""""fN8|;iCء-PEFjVKQ]X=DDtc 'Obmm KKKvg'Zj_9F[-5]SjNi5<b /ꉪj 20&"筷=܃{oVySO=xkC|u:sy'|v;# wuy DDDxcM }nYȶޥd"vK2 \|I EH3x|?uU}g}O}=>( DQ(i"MSq\جRLVX7WK{WeXMDDDtb`MDDDDD?yå>nۂ0tHcb2&"""1&""""DZrZ?_5ѭ50/c=5}tZD[~s(VWUɠVng}`߾}!~h n/DDDD"DDDDDtw[F+G3&""" Ze r]wy;ADDDDDs=˗/n/gubq_""""""""a5Q;DDDDDDDDDDtS``MDDDDDDDDth:]$""""""""NVWWo_ VXM5E!"""Ešf@ n DDDDDo5ѭDDDDDDDDDDtS``MDDDDDDDDDD7DDDDDDDDDDtS``MDDDDDDDDDD7]$""""""""e_k_B4VXM5X"!raMDDDDDDDDP]9VXM5?׿o"Ο?u|A0VXM5M`kk k"""""Z !DDDDt㱇5- &"""šn n DDDDDDDDDW_b_|Q+hX]Mtm% !"] v޻{뭷p={[o-Av;뮻bю%-/| _E!"oC&"h{R!E$AX-c] èfX.Z %4nC pcMt0&""""_Ve/|UDDG7a @:L%VcRf)A1<{|ቮ1DDDDDDDDt8aHc2h Y |ח  DDDDDXQMDtkxVTniVU7k]6kZ.]}h8E=vaufP'ځUXKZBf>.4NnSlBkX5|}(VPU@S >AٍP*cMDc~hC; ;\{֢Vi] <-0&j |kh9wU}JLJ6" *l"Y<vA:BA;m Ro *k&N Om DW5-'60a9\`p?Uާ8!g\M8yv-@aub! LVy1|ۚ0&""""Sw~'Z WUyUSt,xv(apMDssGV+u9lQLz~]KK%y|NښhXB9qY-@z_zZPٍp5-77Ih,vs\`}ǁ}u@#m}xȻܼW`[4Cka`MDDDDD 1;Hq\՞U7WMN^-)4 : g8KC8_};i2mݶwL]֡p5XўojBUÏUq}PCA.PbR\wOk4X ؽvNwkZvO^xz k"""""3N~uuZ6 Ue Mp6'n;0r4TP (۞[>Ow]A SiMhk"""""eܥ[ [l mAl!Օz@r]npe=Ԑ$7kĉؿ?&P n|h]iUhmpg #ȑ#8p@kXLh$1H[`.]?S?J ˨1m?tkEur=ZDBT_`:\F^hO_ݢTy]fB~¶)Kkw=n\**[emw8y gYeMTb`MDDDDDl+zծj9 Cr]Z u(`?v9rKKKگX+-+kԻqνz'xԧRծ 릹~8l@ ZJiBNqկ2cp(_VT.\QuQd[ ZChXk@+@iH Ru#W}:.]X]e?~rc!k"""""=qpmau(j7Zû&ڝnl!9hM0G+hX+x~e Mvo:pd+82C'|j-n|o[?]FQTVX Z_eTau/Uh;8V (BG@:UPUX %KX)DJ!R R+w}]ޟ~  ;0^__`0w:-/jnCV'ݳzZh] K\aDDH@Ez$F::2#=c{*YKzUBGQ\z}auuzvNSnщ% 8F_hxGqС2׋[%MӉ y?n."N^~\1;fH ig?`au!cI8M$:).n{HI4}|,b=~`Ҷow4zVVVp}qá k"""""j<8ƛko_QD H3ؽjBT 7 ^ť 2ե E5TeVfG"[؃>;v[!g3 q"e+Z i a8v~l2q֡BK z{^+\AsX3A<M]XD9`@q$ vWq]Om+  @QQ!$RWTIڞYiVXO.U{HӴ?s-7 ZH hn7pAz2,~g>wWj ~ewB6 dL^5TEȞQ.&BzXॴ0f&ZO]=P5ht!~X[[; G.;4׭ s=*V k!B@)U>?..򗿌^{D3t1y01@BV wyau.6UHSu0;X T {? Vj5"Gu\jZ`~u1rchM5OcyyGx~04l6\n 0~kzm?A5ScTt,H |,ZZ] Rkwtmj!:5F?oz>q/zngϞ-{VPo)/ha-^kgmO7#GLp5(֑Ij ۂju8~D3Z`Znby@1M}u싗2 f.eXY%?xهQ ϳmUMzrsw |10VX$lmm!"w܁OoZUXzjP%B ?oںz+l^ gudrpWq 뇚؞ERYy(EZVz8=VK4+4Rt7pwK?lԡpYNc]Y-Zh((;0nҧv_ 'Ođ#GZ۲} CVWWEQ( y^.>uJ]wծ~hD g엧.…zWE_'6X}o~VZwضֶ:vuo ۯK "RTTQB#*O^[ًn<17 Uw:ɟ ^}UnX1&"""""?~gZۀ!Q7lX'q6ySI\ks_odhQcr\fmN-w[{Jy"7L^0{a6ц˰#B=V:8Uw݅ծus$ /^c8n8Uk Z{bzɞӵmA<Ҁ,,ƶq]f.͜ۂ̻ oJ)inXX-zwq&M@h66$u3q5т˰O Ytդ͡ś¥ *mOZ*>7ۃcZeu(_:=jcwjyն]m "/m5^^T^Ş^iXk(m@dnR>__k[<ۃausoVXۿ D,x4.gj.GD6,/'ᮡْíY> )eVw:kd,g6:I4Ř-kA RkWaWuҜ; 6ka;dvP]=LAȾ8ߏhOh ؿ9mݼ㮇 \Ƨsm[a߃pwW.?4f5ue;B#ȯsG׫!^ݎ S`Ҷr%ѮZJ!VLS!ia[TU~UBpff"2&!ZrWiH{pƿ ^oz6pGAQFFeX-XRau(#QeZh v ^uYiݨvF=>k*;hUVQ{vȴоܟOZʉӧqСrb3uZ kju#&l+z|Q*];@B}Pmu^߅i.r0AG{Aq3 B]Z!6:+{A/,TVl ķ~xEQ`<@4I Ĩ2ֺ~Aۑ q xQgt]!~A7cǎվ~US77|$؍%'!ȞBEzD홵WUnm=iϿ% """"Z<'\W kk t2v~-  ؆~ZT@vPv uZUyK*랫^ IjtU+0vS D$mxFn.`VpAqFOzjP vBc2 $Ird 8CEB*z{7+n !ma5{\V"71εownKuw|7}=|ց[8тq]sbi^TK)M^iZ!U20a0un1-nj6=Pm`*kdɶv끵Rfb۾چܞg@fO7of .S~߶j똛zMәz_vX~dȐ"z0 HRw#kofMeBp($nhIls[eѻt_BkoDm`rm4BVC{cA:tYrn[5DDDDDD zYU KN6/ e (PUhuU9:TӇxWwN/wuC^τڑ 34SAuֱa= !Ĵ0q^Xchh1Ơ?0R;;j6m_7ů(,:mU~M\o nr{=~\f[R!-G+oba*@v| ơunz=mD߳-Ȭ~X iMeuAfEnZ"0\(ʞU*kZV\/t{zu/i$ڇv ct.XKiWk5{û"/vs[Ct߯V )R$HVƶ;pm#c~?ANHGO<܁5\?;n%WBd'߯P/f!;GX۬XOusr\(LX]xCfg{r׾҆eŵBV`ui}x:DDDDD ԩS'?93 KNg}A)(egx4 f!_G6}j!"DӫC7 )ˮ1Zu9hX{언]Qmx.6G1.g\l B䝄ms -f{-vPZ#v-;ʰګmPqR YԶMS+ [x ȳ C&%V*mN>OݳD.6X6w1QUgWW]07x >ox4c_ 4gȢU6S-Q3,wFQ\y!.C' Jyg=o B DX#\\˗hlDU<%{{}z"DQs.^)%1pҥBe偍POYk7w}oB=Ȭk-XذZ+H-!c =E':Wu /ȶmA#Zim-RxO{a2v @ ^VN D0:>oXp k3Y<fQ6Z#NxBF_<Ĵк>t mEr4\TWr"ibm̙3 l{:1˗.c{kشirte󼡵 ~m> *z*o>+ՔM=BZ5*m@TEDYՎ .VAqbmWy!c[i=F/kU*u-'.a*3 2DDDDD "MSÒ:\@t "bx4p0İ;D2L`=~~?YZWF* jqfO%O~0WV>,3!ՅZkճhfB EQ*hd(-yZ(混mڞam.ZW䡧NZh\K)˃jEQ CaC)<ϑe1FQusbہ  zk3ldJiHIH(@H@aTUAɀ$Z k7x1/I7[T=R UY~o޲gtX-'Ik8 `jV9rvUĆՑ(+C}zl @8e W]pûf@2uٰ:IZ:F) B&Bk+ʺYB;6Dqk :OΗᨪ.d]CҬ|qQؽ:Rʉش>*Ȳ YMf4osmFhc]Jl5 6tZ %Ho{3)h$KĶ gd3EX6v {ҭ>fqhD{Y-? rcdcsyaeZ{Ձs?=hkk z*I뫭1GlK.?`믿?t :뢶hۤJ!C ˳fd)Ne`mʛO-us֍T.~۽Opv@%(qўhAM nCv⫢^||CZ ]`*$27 7=}]^`]챭xd**0 ܩw{͸Ox}oz7wpfJ(yQ\ځZ\~8y$땭X\u[r{q:um\7j)%mmxv5lh5TY\* :r@DO/gȪҺ<(l%% i]VXmV.ď~#n\1&""""Z!M+49rdy9hίZ 5Yn 2訟F \w ȝ:&\a W>W> dl[%W˶ S]+ݚ_q XZZBEH$r$)[.oRAuD{cCuBffP\`z[F<+?)0aκy[ձh.P\VU׀ &N*w֌VGu*kU.϶e Djīӫǧ-T$au5-DDDDD yX]mMq2 061 ˁf)\5x:/T6uڂ(UD&vA+Sou 6{n2ڂP (:T{=<3h+++zt: ޶Ϳr-Z+{: jUS'y'~}Bj5ۺ2`j0+v8ٻzXv' 6︱ rEAJ Pm V]bij{2j M(*o1?6#Ьi TWt-h%+iQ0&""""ZEQL סzC|r~/_`0xdzsnDh2U@t QeUHHnpW UW'ހ/W uՄ!R*HmZZo2h[@K/3gΠW@ah3m~Z nDugA .*gL)j7l C?y'? f޻cHQ(a^kw TUְAPHM3Y^JMmM'yJyx(Z*= H(~.Z*@80kbp! r9ռ<./ :. Si><^|Z TշGP/ m9mߵաpGmY-j ºĴ3L\eh4/sNNoC:0Q*]XcZ؞.0Qa]n eoTS*ǥ0g-DDDDD … ؿk`WU7{4M[+/~|҄En>ly˪ BէaY =ºկs}PЀ6ᆡSc"vWY-"}பZ^JP?&^Ot`o[ Qfe?0{3@vuuy2$?+Z=/~͵5rխ:W.ypv4'['/m"km1mhyɓ"tY=Xgm66멲^oj7loyچ˒^GvT v~8+i(`yCFj ҺIM_ej:X JˌQǸz=+<$-{]}_L}~J)[/ӷ߮CDHRIf(.(MQx^koh}S /%=l`ɓzGeIjVW*ky9g^ 5ȉzoz0ѡ>*P&Vej9"[+=W v_$]#{FGReVVwbsvX7+{\*zqqQW\QTTVRVVIVMWajXr}ĉڽ{TՒnh ^lRw/mc~_[A דtHk =&Ϋⰺ)a5˿Чo]eTTs+KmQRQ ^\i{9jXuI҉'477ZjVY܁ۼmܓ^/mc>ٯ6h e%Wpz஼Z]Y"Qj;kRCqh]U\e]ꯢ zZX{LW+=BP lkcZN>zJ 9w{K~iCJCH"g@za]R~`env?:o⊨s٪哷KSC FolZWŌ*YGX :OkZ8|ܝw5LmIO4nM/9@1`=$g?cg\F!Ij6 6GoՌlEI]J^N>\wu4zzZ *aeIOV@{onzYr{v+%uZvms{^IOSU$---3)*l[+j)I*ۓjlmK=4??y)k fSFCF lJ?z(nR}j* ՆՁl`9g`Ck;^^@ W`&5`"X&5`"XnK,A` `Sg?$=ag`] _2y^5aPb/[e `mTX&5`"pQa `!L@` `2Qa @` @` lGjyyY:z(;#+X&5p̤>JOSvG5`"X&-Al{rKfL *Fu50a `[;vLvRRQXTP??H1Ha^`B` LǏkzzZjU|;U,0jiiI4??6D5<\],y}#G#)@ 0 ݻZ XyځHRXL/[aVY۟ɫG>o}[\W0aͦ&;y睩NNɵ2sgEґkU h4׻ljbzu6!;J"uG` `|sݻw3uҞ=Y$Uyz֡<-]!5`2fgg5==jazWۭ[y^XUWڭuA` `b|SҡCtM7^RM RٹLhm[W|舴,]Oĉ:p@nX ~JZ3ΆY>-G` `"122I*MrQ"ĭ.y3 ?Ç5z8jX @NGIk[5m{[aש+F,.{uauۻfrLd*0JUTd2CmhgIbt9 ?1jPiZa_Om-Vۡ0 JjXSeEg?$=y;hnnNz}ͪjw-Cjr"^.U,U>UW^S^SVQZV\R\RXPXWⳠQe,KsǾnـؽVLMMiff&5xѾǐ % mlkرcJUV5p*;hlLC] MTc* +J 8HiO G8x 1*(W|-!zTP 66޽{S' \.ZjXtZA۳ӭww^IR:ڭA' IDATڥvsF& #mh)`eQF U/=:6rw??*tZm?W `Hd"3 9cl1c̆WE2l}vޝꝙ mNw=ײ~IjԬ5U,=?0R Pa'졉Aůa 5MUVG6\ȨWir,I P*8.Dqta[mY`a86v6T-fVZ cpJMU.SaZgjz=#IꪫҴnϺVSJWjV-(ٮVVVtʕz4sc0 bKXTIP {r>Yuԑ$՚[T*Iղwwn`m?'lq^p0 0 yVVVVN#~nkqUqXcXTy}Zj(>ڭ^V{ʄn@zc l6*k7ٰm5믿0 zuu5 dTxv9 T  Ws*#6xTXm͆־yKKKz7oҥKC-Anlk0ԏ~#"6UvPӸMoeSWxb× anN13 pA U[abąB! 훽Je}2$eہUa==I9?'|2zTbTY՞) g#onD6v;~ .]$L.˩dVgO]Q\.}}ey%918@* kژLhVXau(+W_UT[ KPlmky3*ΆW\ມ%MOj ]wr^W׋Sw:}_Q%n~իmuu::pZہVXې =Ӆӿyz)kZYYvMHKv`ݎ{=nWfS/ ˗5==j Ue4U,An N4fУX!uVpo[t8fD{rvpT*%գJZOj|7MV#%Ο?sΥk{\`h $PF?Ah`vYATWO~Ο?u],M:=ϋgiZ(VW;t9jx%I'OTPVS\V\emk:ԶzwÎD#p]\pArKy^V *ѳZ~Xmjdגt j5U*dyt:.ϳq p]|?qNچnXgsv yՄ̙3g \7_%IΝK.W@j5,IuXm,a5( \o>tljjnVIVv(mk=IxJX 0i0}Qu]ڿ2XZɶQjyRSx%Iw45552N^ځؾՁԑ.Ғ5??%v6B` `?^t]wiݪV*JIO$ȭ//V  &PTPPdv,[q-Iԧ4;;Ihڮ~E:҅HH p#!pCW{u/;`( 00`Sc X*00_$q @ A` `S?$fg`,kD LkD LkD LkD LkD LkD LkD LkD LkD LkD LkD LkD LkD( l[ZMrYRI=d" YE` -;qժwX,X,9U<_yzZ\ʺlhhl[ꮻM7ݤZ&a uQ> *(R )2r>d쿹`#u{g-,,$'rAUqV$cl{@K4ݯԩSڻwoVWTuuTJ^Wj NݰZ˨goMkX~a>|XSSSI){δ[i]$մpFҫZ\*;~p9X5pwjaaAT݆y};%enqhʒ**ZXO9-{TX 7l-A rjՑ/n Wt.(cJ^I"UU56F` 9|ڵkЉ{zԐE)mh6.I*ɘxyEIE-,@ɓ'uaTmʣZ6hauxW4HJ*)T0m2>aSnX^ =>fWYRQRAyI`ڵ+jTH=nٟq_ jSI`(a /FIֶʺȋCÛP?#6C` K z2d1;hPqH2&~>:4:[I X]vIF 8@'U C?(n"U:.br!kp8p@vJ㪫au| CAHm>'9@Mh4r[_jוJExc|WUUzsD&hIzZ` *zqh]VY\/@mN:={$m@lXwiZ#ϳau$c ^ PnmZwa$ۻOnvvbz3$=(8Һ`!I<Vv bTXzpU:nV?7Kpn߾}qAg[L$ikuuU+yԑT{qppC@m$޽;VA=_nm`]*!V)8vl.i WՆ g r[e׳:H^WT** qPE0 U՞T5/;Cwq^|Evvf.Iz=ɓaTgy_vZUVS^Ԕ*******+<,l_1cC9^E4.\=THUX|]Ӟ{4;3Fzjr<^A^·j>"6B5hVjwejw^g+xkdLQa(a ) }y^AQ)<#ymgLIUITY67*jI>ŝǬUKzY;me 8HR֒Ra'OU8Ov|PL V]nuRGeoP  | "7f8p ?8xZHCF򺞦ZSɛkX{^z4EOvTXy[UmۀՒ47'oggш+ղ嚊Ŋ <_EIl>\OcjIֽ~mM5gUU.U.U*QYn5*X'u- ZfI'ER#R$ UفQɘ݀چ]{c޸t0hn-B帧U(E4&sX}K9kA*Bl0\ߛKiuuUWhyeYIu Phdu^X( l#v,VgCQ cffXqkv[ץJeVTyv6,p(vkw_O`}ˊH=vfe5WUֽO~ ݏ_1`!#y睺[r<'ZB!+xJq =Z'.r ׬nx=*`]^{5c:ݎV[Zmi|Q6flP)RXؑl(o%}_Ɇ\fj˱Vh yVc>ZzcIA֝nGNG^'a{Xo{v CHQaSoUNgp׋[a(^vڿ8[Á\z*r} R\a^7v㛗ԛ+uyV+quuש>ڡ `: mX*TO= 6C5 MjZAqx6@ϮQh88 jh4rjCIeJçWH_(Tƿ#+B_aC^Va/\|Pa `GzgKgٟYVzx{t"5E:~Xa5A6oN3zm&7[V[j[jwt;quVjVWjVS] =Qa ` Փ aVez%ۀdeI7,Om=ۤ}Su?`"cu:Th Y(ǁuŁu֭V$(1a%08Ql/}KzGTTb8TU-w(hu-0,3ۣ>B 8a.~MXرVVVo߾Rِ:y`}y}7;QB XPۣ#EIXWO=uե@` `GWΪ^'nNG6vO0L~Ξ^6&z:ZJWX򼞨lsɓP( Ud 6/N+ۀذs;._ͦ:n=Hva85^OnWN'Ynzz| * {j mz#auK9pMwiʊͦZZV浮n 3

JR˺nW %߻VVӲ/gv<D` }jX0VJdTA`Fne ;oůpթS}L7tUՒZnk5ֶ/v0kW~nU m%ۻڽz /X ͩ^ڃxCak8ᄀ: dJHŴl zW۰zU%}m?~+ `ꫯZYYQTRRNVQQMv zQ=;-?mI-IUy^SIKZ\|v*`zJR<`j׮]}_ZM\.'r+Uva=yiIˊۀ,iq)q` =>izzZZMJEr9ֶ;l]lꖤe-.fNKKK!5%IǏWP^WZMB*ۿ:<۷ڶ YƎ;5\gJ>i׮]VI;1avb\Uxnk6j4j4j6X[O&nMMM6%yv @kF_s~A` `>v 6L]@` nf0 t!vqLk@*;8u/Jvv4k[?$~7;c^}U*B` @` @` %vQn)4TXEX F` @khF` ea'l#p:x`7pã5܀u6X&5ܠ =FjPa @` @` %v=}yxAuIeI%$.H[LC$ECl_zrL lksdT _g٠s~8+JQ C$u%+]4%ȗ4T۰:Xg;ZqI><] 550>%U4 =3ON`'הvIz%}@=iUT6 fTvڋj\ڗTє%y56 5lCL}A br[ד^g4+=VTuurkSi*; 7IZ~5Ei.ZGدPqѓԒuBl*^мjd$yX̆nhe>'87x eCZ `Z+~M+;~6(^u^tEމՕ0α Ѭ4V$L W ͚&9mpM5650WSP: ɫ[O^:? }I$?_-I_$^о~h$j3z\Km0tx^Ç(O=T*g_VH?2g{ʮ>VOjIjc*3xzUեrCrI=bnOB*@rb5+ c[jݚΰ^{u>z>Ck8:g!+x'3`nnP=W~H T#:JkuB>BqM!yb6A - Ŋ7NVWǁ&{E@$.yG!}{l6QQT! ߺ[PCBB  b$O>B!kK.o>e2228|0w+ !ds -]Z\Ş@(XX+2O$Gְ ul&lP?t2юѮO,Fz+a;ӟk>kp.i^{-l6{nTY-@M(JH(unF{H!&5044*F6VUMƀŁU@t#r*FxTOP\B6L& C\n52Q]D/G\ ؅Oe޽zZGV[a uSa6Һj7mZhB!d@aM!gMoql;+ \Q]޸ 'ظiWe Ynք Ym"YmW&Emoaq1ȿOiq WMŸi}WbǎصkWjZ*8U֎⺪7n#?8OPB!UšBWb;-ȲPjU`( hiy~"6b%kz(|Nyb5M)Z O0K&!fSnUY bڎ`7?>Qa]8|޵c5!p h6j1/9U kF#]OH hajQ+_a4 ޽gLAMs y͈a^cܩkL-Peg޺:$_VUEzUX.c%L8F6V s8VFR\>hضH={cǎ\e)ʮWa-@E#AKBAF 뷿 !BV kBY\wuغu+FGG熇sˠTi_ZGЋқ[WBݷR2]Ia+] bUzE?/nycxzEk144 ^EH16v/H B'#O!7x#6oތݻwUeXPG\Q $$$h.b_?uS̰ɭN겪ZJg ‰Z83Q-LiGGV*@)dQ8:ݤQP; -ks\f[]gW@+AJ4\TEN|'5!BišB r 188F>?44 DfFXi]ORuowߚW;Hw$EӔYNzG*xqmHv+ƞ={044:+͍Ϲ?ϺPj>!f05aؓk;sN4\/ZO~ A|T e;q.lC&+re}.0r:0"A81= :&TY!fD6#NHw2?vK$FZl*1 Eu?aVZDTXK%*Tv%$BBb36&BY( !d qeaؾ}{ZeVo6}s;m 6_ںx>EEB4;r~m#Pjccwkr-`#,6T+!BHHTPA!By͘ĝ BS䫫..aZY-L$vokLRvG*ET k#HoB jWZ[ʾDoucxbwnB\'GlMJ516v'xSS;~ yرcG?6ʅ+%$#D@x<' 꼐VV C#C+@h$uз:#"[..}VʈDJR yN( 8ièz07(H3("C|n㇊*YNd$[,c$IĜk$D^+!BTPIs !ž}p%K.}CȆšB]v^`˖-@RfvG!9VVi-6^n<5haW۶\')zx ݻw=rbչVUg ?FZ(D<͊+g}j],'8/(p+mfNU06~LOQ]w݅-[d5,z͋8WZ'9{>T*vݪqZ]me5ҬPj*AJv@`[i-YGH˧e $$ @$B,ɚ5Kk$HuIPD{޷ׁ1IuV]]'F]ttvuJfׅ63%B! kBYen"a6+nwtr%b:/*e.)n]BMp& U <*P!ş;]] )w8|֭[1444&Dwڅ VWժFom=UVWDJÊԕ Vi&RiQY]XoA,PH^BWZx%[Umw+D RjQ-e)CHZx.t aK1үsP͗ t %*R"IvIR 4ͽ%EVZ[Q!KnΝ;S!ZvG~!7~&D(`|15=>[n`JńհVVV+Jeߠ@*W]jjjEZ7W֡ͪ^ju^u#뙴CGX;VVW*(4琔TS[y-u~'_ZIX7l 9DjY6`a"!>ƤE!riB*/{ i]QmŔ(V][=IAI9 IDAT@JiV24 آEH`4DZۼ+LD$i%uZ%B'ĕ֮βOuuռ?Ye$&W!NTt Qj=6z+FGG{Y?۷Xժ5sQ-nB'}4S>D *h[AF!aiVc=o--: jEKzh4[݈j5рI D՝v6!*J']孄=$>N9qmbA~|_/Ws=Ǘ(by`2HYmmT*Apⵔ@d'B9MPXB*066b(VEq!!' EuqQ:D$ErrSeMGG8 ˄{Uf3 )mR (i@L`-UPgজb$H1k DJj͝hbjUTTQbe/M 6A; =80+uuVXG1ݨ+1W A$D@H66C\Eug\dK]",w,!B7B 244k4J( ~b2>oXy`n.sn`@D8-j:ߍΚ kl<1i. t[^(bv)(,u7? ladu9_~9~4٭ue_[lӦzqBX1!SͿA{tL(.וJ%]mOl191:ZZ@pN)%J !*kUZU]!w_9_c= _Z舐F]Nb/ֶ\RƌQ*@dxI Ҽ.oYmwS*KrӋIAυ-}즔JpTY{( !BNWBYQzOe+T.ZcuY4pD IjHJFX-\ElbY֩jGr@)T6rL] @TYKCB9I1###"9]Tku^/mreKv^[VSǀ qE-}:/ǯ FM`dbrolt RJt]-ϣZ_~3@e:`|=?"sd:EU֮7teu 4Ķ!tueZ]џ_d:Гi0(]7% "{וR9W*/[Wq$IRy.HnB!8ք¸S~euB k!8J(ʶ8"+R+! _-s\τumwU]U&bXhi8:0UEUZWgl`,Hg2Y {nf(U7IBiҺ_ q| ~M.A!D$թ)[o"ynses-.Eo 0Ds c݄11BB IʚEo{Dw?cm%֎!Φj-a&A~Z|Uզٮ}-Z#ͯ nFEhlRJ$I@Z;Y#;mt#Si-t_yǷ|'=!BiiB b+V}IضlLC]m]g+ujŋ؋Tq )m#S]]qM$|iޕ 9YH4ﲺ l޼0DXvVĞIRF+SM-SS3<4 )%8BABB9Q7JjY2)KjՄB!o%BY_t:YE]ݪ]KʹYbO%6"t߫UJ.ʱ@dk11߬?iYNp&mu?n)̱goi~,}sO.e焾={?obPΈuIN+Sќb 2[7r&MEuoqَ OvK`~~>m~ k:IX#G@*wt]}8VƋv'H0yB! kBYA,μ NY}hq8?%b L^;s=A*e #|mU5 ^N&jZY N5y-ہ&gccc}+xYF#I5΢g򸁲i K;dnj Ɠy#&Q}}V@NR nt;@^- EMnF{Z\Ke+U/P~||ǮJGsxU*\8*~PJ$AEѨn~/*k:AHD#“B!4AaM!+HǹlNwx[.zn8~\K-mA]J%PJ"/m O[G{(ŀT"]J[x:̚ S) {!C\ʛrZЯBH\"gۂFq &1bCu Cԍ^[Yj{ZF sbg6b tHbTT=8KGVK-^.kR}lԏYVhv2yEZ~^PY'Rd ~M4j3j~WEǥs"nڳm/̣ne $:CT cZ2eqH+E~$:#';fu]4 ¬:nViV['Y4ÕP$P9rh6:|0,5!L1^H?OJkVNu!BišBVG}wuWH`-zjJƱssZVxN R&bJ-1B S'eo\Iaa)۟NxO{-%zv6z[XXqN(կ(W{( ' ,~$6K9d.ݶǎ,u9+e^Z?&5ri]$DJr NGVG@ ;6[#o|WWV~uh[e$ԢZ:gʽߧxT8s24ʹnXr1~7ꦑ*ZOY(}AWWGB! kBYal)ɔ/bs=15} zsebI$I)c([c QivjQ.'Tf%z˖!NUm)ȑ\33Ynzh%VUVUzj tўnCJNyqϥUqA+K|XGruilu&[3Yiv&3muLD+AnDhs' kibWH#A*JaU[^Af\GIgeUԪ8:6]?'BN)\r w!քt:Y]&(?կ8Iv q1:19־vEX09 Iw]ie׹\ּ(b)MʖZ{ѫgeUe:IE'F柝fJkbsX8`cjz RJt.-27?y v kU\a]&u>p"DP=Zf-aFJ H8)AD2ک]PSa8N7&ndY D kZPPa+EjGqM7^窫b@26*ҩ#@TVZ< !rX&քšBVYl۶ QTZ;I2)1jQ$dbFFBu]$Ibtfeu3_| Ӄ.+twYi0&,h""Q'DRkBAUfI;:/XzoW\׾{0,A, r!H};6 h[:$2?D+:P8iFLl...n~N,$A"!D "7iuԪGXHnn֓IZakd,UPǞE{/TXUºLVۯKTbvKoMY^/#m|yBN BԒþ}zc5PXB C;`_in(.9~qIk팓TTKez+#aLBUFzXّfzRi1!2W% .UMr+²g[{P&HzAjyYL;Ǩ(&ߊ !D:y%[ 47"tt]tt"]]'ZX'zbS_Ep,Dh?XL Rj[I$R  *D W92c0q!D8:Ei$LfB#1 V y[]KlEϦq uR2mX*qbºHVwBN]tњ]9p'o>\r%K 6! kBYi&DQ(PVEQw8ݭtB$L el,ZqhuQYY݆ǁY+0ZZYuAMw9r+bSӇxr9|ŽޛVZmn{-a}p 5 k)g"h6Fc#GY]qQ$ʎӱ"N($F,c-yOT[G6+2PVDBI$HfA?1"v#CXw)8q Ri44%*kU\E xwj gpUWrm%~uu]tm#'69iQKVZB5!w.4\)[ZT]hampb; 4ZNG?˕R:~A1hA-l -pֳt@qĈӸ+-mg q5dLt0Jk{_1tiۥEBL9>܅~q6LI2Y6HV죏>|t:je\ٸ`+\҆}iefWѹb#:J@ *} l@( VY 6q B# :#@7JevdeHl~.jX#)z?3\s5 $IPVӱ5R&R]EtpyR^x!wX~B!BaM! fɔ/˄ǻQ k}+sPߏ]^Y Y.a+ܑi4H'IiwKg ab@lt8AV`z H:u@:$N$bWVTVFKj;5Uă>'W?tRZ{YFw%@Y{Quu]tDxO< NEyBQKY._/UdAaM!Ľދ|j9AU&|+ݯz42[Jj{ہ^`3G5& U|sVXGݜ*c]ҰVrna5\XqjϳCFMj+}QNLM=aG>|YqN`}ޯ %$@714CVQ>^DT2 q >xM9Ӌ&|5t:$]w"Zf*j :jXgQט[HfbD)$J"q@~Tu }E]%D[HuEk[a ɝnfYӧM:o$r'B!dPXB*r\uْKE.[R}ԁaeZ 0ֲR/-#3i 26 "aL,~ IDAT.iVW5'CPPȉ"STWY=dZ͟bOV=y'ı w^|E Ǘվ)$J+ "v+}E_ /^פ<:ƣh,j3Q WPfH!PB)NVV [m/Ww)*ڕYnuW~Z'EvwLOߏo|#6oތA4 uT՞,z)VVD G:xQB! ք|cÞ={z t_a Kkj,t+<W{wf9yl?]uÌ!+Z.D_]=өw}w*y2AR 8-^tgLr+bgkν9LM}tx~{^, 6,bU*7Ƿ(Y =կ~u1# c6 ]@Ee#p*VXPvnPG '  A "LT*xĹMN#jU>.UW'],K(8-+bA BT_6#:FB!( !d{pmq 9`uJ8c߀J&m~QVX,DDNnu<$Ig2f¦]ϫw >ēǎCHuǗVվBdfeu ;Q2!~uS_Ԟ ַ.:e,NΩTJӲ[YFv:-z~]h@!2CWWkagj HkD(@H%@ H-D; *OJl/e/)ңܿuگ']w]wmҼu?:׏|'*!8|0FFF022ÇsPXB_"w&jRJ-~wۿ[Mslj\Yy+jWWZi]""F@ .sʶUH$2I%u4ʖ%RE!nx+_>f3evg+ +Iy3?@] 7?.j5"e kWVtSr@ 5?ݡdβv+A‘҆&[AjT*3Kk[qN?]DWS+mH7} VW㳟l9H!̇ d#BaM!}8^z)(BEis)KJ%nkYuǠ,׈PY%v@ܟ]L~Jjom+SGKp E}KsQsS##ǀ@05p>oL;qZE7h,.j<6x ibPiu @{#(>;B*rw.;`Za-\'?UﮫhiՄBzǮ$d@aMY/}Kx_m۶ahhf3TR9֠8HV>xn1ĉ@HH@H#([Mچ]&>J-WJvI"+G?I >}{_v+C||KsByP p5`ll q[VCV[1+˪meăp mb'MEtέ[-l#PYnu߷ kw7\wlyY-k*U.B!dq( !O<Īn㙙җTyr( ^3_@a) LN.U*ͧ[$Ӯ~R$ i|nz' ]w]O_[VeǯNJλ|f050F|Aߎat]4ðfGV颋ZWO!!Pʄ7XWZ++,`@^|%Ip\J_VV۪ȓ>jB!ؿ?."\tEؿ?wYPXBV'x"^ 2Lðѣj=:_jCQMr ~<%ʁaW Y׼Kͻ܆]FR]N/KsQ3!bq' O-[lnk jҥ -\B!PB(H%L iUeYuV5WTK[V^\YW >$yG{͛100#C[6Zb@8Oxpci[i..ʭUsb8 Ƚ^-;(+kh+-m8q v{h"Y]$jKBWW)C೬&B!KšBJKPy3jUV51RZP\h="RL~( #V\Uy 7ZE]^~){zIjPXXG֗3;|pceZºvON};t9*@&ݫI X>U'$szʤTTY ko:QVB!e [BVƂ,AChh@Һ = iй nsU~pmlYyzS]nw?a틏|@ `uieϞ=i+]ag{6ZO-1CW+i??"Am|7V?؅( fQ5#Dƍ1Wl輸۞j,$+=SPY}/e5!rʸ袋9}>3VXUСC 7aΝ)Ε8 iUWOP¾tir;;7rv-EX[&E*@Y؊+7oNŵAVw!D SSN\az'?pĮZ;xFstJY,+e{Қ..^]ۢgc@Zf) !B BaMV'|W_}5{ kB@ H+ (5?iLM=BYM pВ׎n:g;Fe>coyIĮWU=BYM!.B a5Y3$I}g.bl޼iE4T_!N.CY߸VͻTgKHeW\Y&# bbv&tlU*z9[٩Nn5OYM!BN kfx3%;;pgsCel˯Һh堺ZxP^}9n mxe5!dI#xL]"LFKk pq3v/WX3㛢Y}&B!F5þ}׾oy[nxᇑ$ w!LAt9.vu/<|-9+ۊ%ZRt&s9pG!0|DH@Ątq6ocm|ݞeSw~vlqRVB!+w]`,YPX5;N|#EQM!BV k&vxWN=$k_Z}A,{ằQ #55XduYuђVX WhY59 Й&l0 ec?vWt?LB!4dMPoox[ )%~`ddo~l6YLb&bCJsE(V\Ea&q؅!3WqWVqY O) !55zF(dCCCx^/W𶷽 U6w0%c5 ƫ^Q|XZuypb@zG) !p.ԐMHzQPB!g$\p{w>|; š*J),,,077Gh`ǎ;i@a8'"mc0ݰKWyMP}+{_8 D=OQM!B!'u/UEJ8شi6mC)/~(BDŽ֙UPˊ %澬YՇ|B,N!B!+5!l|FфG٧"Wi].Cu#@fCEB!B95|{\ .Ud]AaMY'?y睇; +Fd\ב Ay-&d)B!B!diPXB _yDch\\Uն ԄrFs\,cA!BȊ5ù x'3 8Ѧw!@VEjB!BY]|1M&|I{8s)&B!5 kQz#. B!B!`5!csS!B!fa5!dMa@l59q( !B!d׼; ( !B!B! ( !djB!B!PXB:djj*B!BY0'(ɚboRI ΓO> ^sgB!B!l (ɚ#O}?=S B!B!B6 doaos/&ۓB!B!>Rx_͝Ah(ɚa$Itw穧ƂB!B!l (ɚcbra_&N!BYC޽;B!r:&koN?;I$2!B!B!dAaM{E2haOF B=f5!~̱&g4dyس<> 4uxn9L!B!B!dQ. 7~??f݄mШ460J)B!dWYB!ra5Yu&MBI-4?"B!BY"!g:dUyg1⤎g`/nt~i^2 B!B!d (bPXU/PC^XW ;>6B!B!d#raw 5YU&'6|i՞I(B|A=55E!B!WU䌃šx<: 4u5[ÓhE- cA!B!B6d{`/V ͙(-Mט$w!&B!Bz]@VɃP&$Ƃԡ/NO / #@AM!B!+ɪg*-VXנ/>y<=4w B!Ba59S&{!78yY cA1$wG)w!B!B:š 'Uqu5u$ yB!B!S(Ɋs<4 4WOҺ `g788s3!B!E^Wrg3 kLrrH| >Ƃ`e̝H!ؽ{wn#B!d&+/~ LNM:,8  A?_NrGB!{:;BYcG?Ƃ3 kL>7 5t# Eju&`$ܙXB!B!_(ɊÿI H6[-n4{J!xr!B!'5Y1|/~"buEY [''lQQJA)A!B!Π&+sPJWJ[aݯZa]E| O|OM{p\ԭ%ٖeYX6Ɛd\M]^]6Ǡ+TeZG挮.kZfĜ ky>V_T[%v-ȢVUO{7FQL1}dGl4*G`篰vYa+uvvݿД [h1s1X` رC;vo  օ8OGY w}:;;ܬD"QYW_jV1 _jii)A{j [PoRIsSۑeYʙ9̜BfH9OgO7BŠ*o~636@#sJ_2s˿ X+/6ޘյG{@%q뭷j˖-ʟ{Au,S$2K5kd۶Tgd3J B+nwڅ|Š(zP օZ%V VW]=߂mA> \lA#ѭ+ XtmmmWޘ4jIeYJӚQ$2dTt9tbګ@u!*VW`-YTXx@lrѷu}qNP{)vG(S(T'È)0bbr]Fl]BRne]<?마ʇw{euZv:;:վ]-jj̯QWX$H8p(*.;sVX6 ]c&@5W8jRD!p">ϫdڿ|f彬##x[Y+?L9!Ǚg:.u:6`yU89;]|]!֮_+۴5;;)E"2d;,eYlK!#$[ ǘ7Q*kjF`h TYBv)ǹhmmU"P]]ݜ auyK{0fǒm[mSeqB$S ".ب;5̒Rm{yFkV^ ^ .n:~^[*JuXf:l= ѨVKJqwp 8n/zX[Oid2I)N+WYe 8XT7@<[s"9 *UVK7:+:oZroҘg\zPe}?,˒i2MsAqIѩS+VX(Z Md#T1 X,VWVeMBö;#ɭ..huw3ĉ`eKrca ϛU^[m b?1_tR;UV3ƌb#h F``8עX$ c-Ib[4ϥmC %/.+3W٨q_ڔH$FFKzYW a|@?:#&` F0{X+i %<={TX{/H$zN?_`퍬J6bcVHr릦Bh:P ,zzi&` F0TamdHGO[ڱaegs*_` -˚wq"lzVRp+_W$Is 6 ^ &X ̒ G50J`344M6iӦM:s/+Ֆe:0*彫*VV$MuKn6^h$Y Kۀ=O}}}:t%E``UX{ _SL&[V{Au4eYs*&sk|ʁVg3rQ6 ~eX,P(3ٲ3LJXW3j韱1רTIC-M&FTJhD70}QIG-*S *)@[ #*3>eNX{A_jtZc$鮻RKKxۏ_,*oRVJJ0uģL6X5WlV䄞~_P2IIꐔT')&)ɨgu ?SzvZ*xթ^-l>/l>1av(|PtwPmsۂxo>[{VҡCקA"^fx{wz饉|5ux~H kx6կ~_Vkkk$Q h4ZR}m۶x +`ROOzzztыwygIp]Ze*r[lX/3zzCJ& %R!uqש~ǎSGGРD"QhګleLFnݪzv4?5gyF###jhhПɟ֭[L'i IjPGJ48~UK4`yp.<>Wh]=,+e)S!V{!u$Qcc2Μ9T*%۶D w,S<`@4M};׿u;vLׯ訾x3=|a tT *KZ} W:m)Rs܎ps#=m^gӒ!̈BP(Tr:QXLa(qe2YX. Td~5XԷ-8qBgOZO=I/=y~29?qV?~Tbip0* 章*\VuGk 92 凡P= N{1 _ߎ~s*= (,)x;?>>'OjƍF .IDAT;|0}dj6Pggn&~PMMMڶmnNO>9`RdLTlQLKCqoT:C@D6_t׼ӕ^ϑH]mϟϱ;ٶdYަ7]q{LNؿH;\.Wrrr5X8qBڰaC!loou]w9=(^yR2hXv~N窦.~LV ~빁sq8.uf;eA3>WҟmKm /6MSJ )s&R+崵۶eYǡ-.Z7Cj2ZLCLqtqEQ555)Hm66ƨvjSI;i%QIJXmo rѱcLםyv|;l|Hi4M)˲ #r}O~e494$mܨ%7,˲ ߛdXfRz쬆e۷Ow}twcvccD7حoV2yF~F?W_FR~ZdK{\-iPRJsC {qooY/uUv_/SkͶꆕɴ+*)\uࡇd%)ǎj"Uo:hvvV[lQ4رcڸq6nܨcǎ1!+&뷿F7500_zgӣE͛[ysna^}DCڻwT/>&moW_X,dP;;sgvΪkޓJ&ܖ!qQ{_ EVGWJGDIeeYbj z%Y#7 6lĄwhh "a]}պW1$1]˕Li߾Q{\o嗇 *W^uƻv5몫bU]:;;|@oӧOqYhxe:4B[?Aޥ6]wu`ylܮ͛uo륗F48h2w]^\l۶MaFFFҢD"zE7mR˕ %&zMEFG듟Ν;ٱB`vX;kqɓԨb:uCMA__lk'NhjjJDBXL* kּAҶj,ڂpb#^AxL;vӎ{wNwoR58[oْUWW_Zs?۵}v:tHɤ,52B!-[ť( g~{"5Tu`acA`xTN};LjS޽ǕJu 5Outp~.i Ç*kUGG:::4::ʄTá0В1I!mܶ~G5j[UdJtJyD} XݒǏ164obR)6`mٲEtȑ@<I"B! V}5ʆBVX{;kDGdA$ <H[VHD9b[ѣMj5}] UF~J::D k \(k]˷};lTR\@,Dh X[VP-HHRI^ÇI&\U/ {zزE!u:J~#2$%>ŶnU{߫Į] EL Pe qA/ܢRIkVY+l%ɔVۮ]ϨCbq6l I:qDWCC$)JzZI(PazymK& mr^'}N:\N믿5i5|}r{N܊jcU`{Ȕ`YE83?{h -90ǩW^{hwcRqV ^k07|St%0 {LF_?+:rY&8kRqQEp-IGxB}\ (' a\/uh} :,ڂbX#0Aݫ$3?[emocB8Ӌ@ka cCCzETw +^u)) r p٨0*m.z^X5P h !sV**++m$2HÒ.&s5.x~.ZۃxA8* Ӓ7lھ>&`^ kFӦM߲E3fëΩں<ڄہdO)~L0ppoNRIhVikWaUW6l|FF,K&͛73X0kʎ]jZR*?ګJg$SRΝL,P(koI{D4)iJ*3rrCi;=*kzFwK~nEQ&ws>/=ф3r)uZnb/kwޭ޷ X!"F ]}=Ѻ-[tZҘqYV^`[]{nĢ8Z~="LjǗkgN9Rҿ:߁*4!]--L"PEFZ]o~W;oY-[tB҈܊A$zL@$I9^&D`kGէ{L}7߬K/Qܖ $[WޭX"aɼ[D[EFKT\\^Sc?mӟ;( X*mm/{s)ѡmw+2A@2qTc?/'Sd`x-A!˩AJ\$2U kԄ{T9k@|@`qKk*5Ų,߿_,KScc#EwI[N֭ɓ'D`No~Sw5>>.qTWWoQ{$D{M -AP3~Ȉn]wu:yo'?lfVА$iӦML*5U7x488,R({4X\X<֨Їyf߿_wk܏$F`L=~0 )HbPN>г>wz衇+$5X*^+u1}q6֨ 'O~;IҕW^oQtZ###XKq3DKԄ.бcOP*$%IYp8dE`ڪ[nElVG>OE>bd!GGeBP`8|5ɓU8ֺu8&''%I 肃vZI*YJ TզG$$2U kԔJuvv21@*JUV{֨HV ^kZk@ XȈaO`)X:X!X)0 (9v$iƍL`:uJc p@` `EkX8*@` KdttTdpDKA{MPa kXB`?.If2V)k@ X@`du#%6::*qd5 "L qIXe066&I`N8!IڰaXLh du"5 `9#q 5,ӧOK֬Yd0O*.TXaIRWW X2-@e@ 5ڂp^="L V9(E5 mAVkX!㒤6&p5[o%IZ~=Q`j$ɨ"8Z[[ ΁>ֵT*$5440&Dq&FQa \5TڂpLB"5 J-Hu0P=X&XU}UaW kT5k\m~~k"jllTcc`YcllI@M"H9}40kZ,Z84@uill$ySjFkk+/֩-1>>$*A5DKK˒6hu"6VR>L5Ti5440PqS4Μ9$U+<FP `ٕX&'' ,e/uojjIPT*uYΠGP X@ hhhP* cT^i&0/kT[A-f80 PT5 BL @` k@ X@ 5 @` k@ X@ 5 @` k@ X@ 5 @` k@ X@ 5 @` k@ X@ 5 @` k@ X@ 5 @` k@ X@ 5 @` ێ Ǝ`AX X,k5 ڬ`IENDB`orex-supercell-96532aa/doc/tutorial/supercell_tutorial.bib000066400000000000000000000355241465364771700240630ustar00rootroot00000000000000@article{Dun2014, author = {Dun, Chaochao and Holzwarth, N. a W and Li, Yuan and Huang, Wenxiao and Carroll, David L.}, doi = {10.1063/1.4876447}, issn = {10897550}, journal = {Journal of Applied Physics}, number = {19}, title = {{\ce{Cu2ZnSnS_{x}O_{4-x}} and \ce{Cu2ZnSnS_{x}Se_{4-x}}: First principles simulations of optimal alloy configurations and their energies}}, volume = {115}, year = {2014} } @article{El-Kelany2014, abstract = {We apply first principles quantum mechanical techniques to the study of the solid solution Si1-xGexO2 of $\alpha$-quartz where silicon atoms are progressively substituted with germanium atoms, to different extents, as a function of the substitutional fraction x. For the first time, the whole range of the substitution (x = 0.0, 0.1[Formula: see text], 0.[Formula: see text], 0.5, 0.[Formula: see text], 0.8[Formula: see text], 1.0), including pure end-members $\alpha$-SiO2 and $\alpha$-GeO2, is explored. An elongated supercell (doubled along the c crystallographic axis) is built with respect to the unit cell of pure $\alpha$-quartz and a set of 13 symmetry-independent configurations is considered. Their structural, energetic, dielectric, elastic and piezoelectric properties are computed and analyzed. All the calculations are performed using the CRYSTAL14 program with a Gaussian-type function basis set with pseudopotentials, and the hybrid functional PBE0; all geometries are fully optimized at this level of theory. In particular, for each configuration, fourth-rank elastic and compliance tensors and third-rank direct and converse piezoelectric tensors are computed. It has already been shown that the structural distortion of the solid solution increases, almost linearly, as the substitutional fraction x increases. The piezoelectric properties of the Si1-xGexO2 solid solution are found to increase with x, with a similar quasi-linear behavior. The electromechanical coupling coefficients are enhanced as well and the linear trend recently predicted by Ranieri et al (2011 Inorg. Chem. 50 4632) can be confirmed from first principles calculations. These doped crystals do represent good candidates for technological applications requiring high piezoelectric coupling and high thermal stability.}, author = {El-Kelany, Kh E and Erba, a and Carbonni\`{e}re, P and R\'{e}rat, M}, doi = {10.1088/0953-8984/26/20/205401}, issn = {1361-648X}, journal = {Journal of physics. Condensed matter : an Institute of Physics journal}, number = {20}, pages = {205401}, pmid = {24769549}, title = {{Piezoelectric, elastic, structural and dielectric properties of the \ce{Si_{1-x}Ge_{x}O2} solid solution: a theoretical study.}}, url = {http://www.ncbi.nlm.nih.gov/pubmed/24769549}, volume = {26}, year = {2014} } @article{Grau2007, author = {Grau-Crespo, R and Hamad, S and Catlow, C R a and Leeuw, N H De}, doi = {10.1088/0953-8984/19/25/256201}, issn = {0953-8984}, journal = {Journal of Physics: Condensed Matter}, month = jun, number = {25}, pages = {256201}, title = {{Symmetry-adapted configurational modelling of fractional site occupancy in solids}}, url = {http://stacks.iop.org/0953-8984/19/i=25/a=256201?key=crossref.00031b21d4a07c80dcf655b675901060}, volume = {19}, year = {2007} } @article{Grau2010, abstract = {The crystal structure of the iron oxide $\gamma$-Fe\$\_2\$O\$\_3\$ is usually reported in either the cubic system (space group P4(3)32) with partial Fe vacancy disorder or in the tetragonal system (space group P4(1)2(1)2) with full site ordering and c/a≈3. Using a supercell of the cubic structure, we obtain the spectrum of energies of all the ordered configurations which contribute to the partially disordered P4(3)32 cubic structure. Our results show that the configuration with space group P4(1)2(1)2 is indeed much more stable than the others, and that this stability arises from a favourable electrostatic contribution, as this configuration exhibits the maximum possible homogeneity in the distribution of iron cations and vacancies. Maghemite is therefore expected to be fully ordered in equilibrium, and deviations from this behaviour should be associated with metastable growth, extended anti-site defects and surface effects in the case of small nanoparticles. The confirmation of the ordered tetragonal structure allows us to investigate the electronic structure of the material using density functional theory (DFT) calculations. The inclusion of a Hubbard (DFT + U) correction allows the calculation of a band gap in good agreement with experiment. The value of the gap is dependent on the electron spin, which is the basis for the spin-filtering properties of maghemite.}, author = {Grau-Crespo, Ricardo and Al-Baitai, Asmaa Y and Saadoune, Iman and {De Leeuw}, Nora H}, doi = {10.1088/0953-8984/22/25/255401}, issn = {1361-648X}, journal = {Journal of physics. Condensed matter : an Institute of Physics journal}, month = jun, number = {25}, pages = {255401}, pmid = {21393797}, title = {{Vacancy ordering and electronic structure of $\gamma$-\ce{Fe2O3} (maghemite): a theoretical investigation.}}, url = {http://www.ncbi.nlm.nih.gov/pubmed/21393797}, volume = {22}, year = {2010} } @article{Grinberg2004, abstract = {The \ce{PbZr_{x}Ti_{1-x}O3} (PZT) disordered solid solution is widely used in piezoelectric applications$\backslash$ndue to its excellent electromechanical properties. The disorder is$\backslash$ncaused by the random arrangement of B cations. To understand the$\backslash$nrelationship between properties of constituent atoms, local structure,$\backslash$nand compositional phase transitions, we examine the response of the$\backslash$nindividual Pb atoms, B cations, and oxygen cages to the variation$\backslash$nin the Zr/Ti arrangement and composition through first-principles$\backslash$ndensity-functional-theory (DFT) calculations on a variety of PZT$\backslash$nsupercells. We use a statistical analysis of the relaxed DFT structures$\backslash$nto identify crystal chemical structural motifs present in the Zr-rich$\backslash$nrhombohedral, 50/50 monoclinic, and Ti-rich tetragonal phases of$\backslash$nPZT and to examine the influence of composition variation on the$\backslash$nmotifs. We find that the distortions of the structure away from the$\backslash$nideal perovskite structure are governed by an interplay of bonding,$\backslash$nelectrostatic, and short-range repulsive interactions that depends$\backslash$non the B-cation arrangement. For Pb-atom displacements, there is$\backslash$na competition between electrostatic and bonding interactions that$\backslash$nfavor ordered collinear displacements, and local repulsive interactions$\backslash$nthat favor disorder. This competition is strongly affected by the$\backslash$nchanges in Zr/Ti composition and leads to compositional phase boundaries$\backslash$nin PZT.}, author = {Grinberg, Ilya and Cooper, Valentino R. and Rappe, Andrew M.}, doi = {10.1103/PhysRevB.69.144118}, isbn = {1098-0121 1550-235X}, issn = {01631829}, journal = {Physical Review B - Condensed Matter and Materials Physics}, number = {14}, pages = {1--17}, title = {{Oxide chemistry and local structure of \ce{PbZr_{x}Ti_{1-x}O3} studied by density-functional theory supercell calculations}}, volume = {69}, year = {2004} } @article{Rb-PST-1, author = {Cadars, Sylvian and {Ho Ahn}, Nak and Okhotnikov, Kirill and Shin, Jiho and Vicente, Aur{\'{e}}lie and {Bong Hong}, Suk and Fernandez, Christian}, doi = {10.1016/j.ssnmr.2017.04.001}, issn = {09262040}, journal = {Solid State Nuclear Magnetic Resonance}, month = {apr}, title = {{Modeling Short-Range Substitution Order and Disorder in Crystals: Application to the Ga/Si Distribution in a Natrolite Zeolite}}, url = {http://linkinghub.elsevier.com/retrieve/pii/S0926204017300279}, year = {2017} } @article{Zunger1990, abstract = {Structural models used in calculations of properties of substitutionally random A1-xBx alloys are usually constructed by randomly occupying each of the N sites of a periodic cell by A or B. We show that it is possible to design ‘‘special quasirandom structures’’ (SQS’s) that mimic for small N (even N=8) the first few, physically most relevant radial correlation functions of a perfectly random structure far better than the standard technique does. We demonstrate the usefulness of these SQS’s by calculating optical and thermodynamic properties of a number of semiconductor alloys in the local-density formalism.}, author = {Zunger, Alex and Wei, S. H. and Ferreira, L. G. and Bernard, James E.}, doi = {10.1103/PhysRevLett.65.353}, isbn = {0031-9007}, issn = {00319007}, journal = {Physical Review Letters}, number = {3}, pages = {353--356}, pmid = {10042897}, title = {{Special quasirandom structures}}, volume = {65}, year = {1990} } @article{cif2cell, abstract = {The CIF2Cell program generates the geometrical setup for a number of electronic structure programs based on the crystallographic information in a Crystallographic Information Framework (CIF) file. The program will retrieve the space group number, Wyckoff positions and crystallographic parameters, make a sensible choice for Bravais lattice vectors (primitive or principal cell) and generate all atomic positions. Supercells can be generated and alloys are handled gracefully. The code currently has output interfaces to the electronic structure programs ABINIT, CASTEP, CPMD, Crystal, Elk, Exciting, EMTO, Fleur, RSPt, Siesta and VASP. © 2011 Elsevier B.V. All rights reserved.}, author = {Bj\"{o}rkman, Torbj\"{o}rn}, doi = {10.1016/j.cpc.2011.01.013}, isbn = {9781846289514}, issn = {00104655}, journal = {Computer Physics Communications}, keywords = {Crystallographic databases,Crystallography,Electron density of states and band structure of c,Electronic structure calculations,Structure of solids and liquids}, number = {5}, pages = {1183--1186}, publisher = {Elsevier B.V.}, title = {{CIF2Cell: Generating geometries for electronic structure programs}}, url = {http://dx.doi.org/10.1016/j.cpc.2011.01.013}, volume = {182}, year = {2011} } @article{OpenBabel, abstract = {BACKGROUND: A frequent problem in computational modeling is the interconversion of chemical structures between different formats. While standard interchange formats exist (for example, Chemical Markup Language) and de facto standards have arisen (for example, SMILES format), the need to interconvert formats is a continuing problem due to the multitude of different application areas for chemistry data, differences in the data stored by different formats (0D versus 3D, for example), and competition between software along with a lack of vendor-neutral formats. RESULTS: We discuss, for the first time, Open Babel, an open-source chemical toolbox that speaks the many languages of chemical data. Open Babel version 2.3 interconverts over 110 formats. The need to represent such a wide variety of chemical and molecular data requires a library that implements a wide range of cheminformatics algorithms, from partial charge assignment and aromaticity detection, to bond order perception and canonicalization. We detail the implementation of Open Babel, describe key advances in the 2.3 release, and outline a variety of uses both in terms of software products and scientific research, including applications far beyond simple format interconversion. CONCLUSIONS: Open Babel presents a solution to the proliferation of multiple chemical file formats. In addition, it provides a variety of useful utilities from conformer searching and 2D depiction, to filtering, batch conversion, and substructure and similarity searching. For developers, it can be used as a programming library to handle chemical data in areas such as organic chemistry, drug design, materials science, and computational chemistry. It is freely available under an open-source license from http://openbabel.org.}, author = {O'Boyle, Noel M and Banck, Michael and James, Craig a and Morley, Chris and Vandermeersch, Tim and Hutchison, Geoffrey R}, doi = {10.1186/1758-2946-3-33}, issn = {1758-2946}, journal = {Journal of cheminformatics}, month = jan, number = {1}, pages = {33}, pmid = {21982300}, publisher = {Chemistry Central Ltd}, title = {{Open Babel: An open chemical toolbox.}}, url = {http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=3198950\&tool=pmcentrez\&rendertype=abstract}, volume = {3}, year = {2011} } @article{Dieb2018, author = {{M. Dieb}, Thaer and Hou, Zhufeng and Tsuda, Koji}, doi = {10.1063/1.5018065}, issn = {0021-9606}, journal = {The Journal of Chemical Physics}, month = {jun}, number = {24}, pages = {241716}, title = {{Structure prediction of boron-doped graphene by machine learning}}, url = {http://aip.scitation.org/doi/10.1063/1.5018065}, volume = {148}, year = {2018} } @article{Han2018, abstract = {A plausible configuration for Li 0.5 CoO 2 was pinpointed using NSGA-III-assisted DFT calculations involving redox potential, band gap energy and magnetic moment.}, author = {Han, Woo Gyu and Park, Woon Bae and Singh, Satendra Pal and Pyo, Myoungho and Sohn, Kee-Sun}, doi = {10.1039/C8CP05284K}, file = {:home/kirill/Documents/Mendeley Desktop/Han et al. - 2018 - Determination of possible configurations for Li 0.5 CoO 2 delithiated Li-ion battery cathodes via DFT calculations c.pdf:pdf}, issn = {1463-9076}, journal = {Physical Chemistry Chemical Physics}, mendeley-groups = {supercell_scit}, number = {41}, pages = {26405--26413}, title = {{Determination of possible configurations for \ce{Li_{0.5}CoO2} delithiated Li-ion battery cathodes via DFT calculations coupled with a multi-objective non-dominated sorting genetic algorithm (NSGA-III)}}, url = {http://pubs.rsc.org/en/Content/ArticleLanding/2018/CP/C8CP05284K http://xlink.rsc.org/?DOI=C8CP05284K}, volume = {20}, year = {2018} } @article{Midgley2021, abstract = {Computer simulations of alloys' properties often require calculations in a large space of configurations in a supercell of the crystal structure. A common approach is to map density functional theory results into a simplified interaction model using so-called cluster expansions, which are linear on the cluster correlation functions. Alternative descriptors have not been sufficiently explored so far. We show here that a simple descriptor based on the Coulomb matrix eigenspectrum clearly outperforms the cluster expansion for both total energy and bandgap energy predictions in the configurational space of a MgO-ZnO solid solution, a prototypical oxide alloy for bandgap engineering. Bandgap predictions can be further improved by introducing non-linearity via gradient-boosted decision trees or neural networks based on the Coulomb matrix descriptor.}, author = {Midgley, Scott D. and Hamad, Said and Butler, Keith T. and Grau-Crespo, Ricardo}, doi = {10.1021/acs.jpclett.1c01031}, issn = {1948-7185}, journal = {The Journal of Physical Chemistry Letters}, month = {jun}, number = {21}, pages = {5163--5168}, pmid = {34032426}, title = {{Bandgap Engineering in the Configurational Space of Solid Solutions via Machine Learning: \ce{(Mg,Zn)O} Case Study}}, url = {https://pubs.acs.org/doi/10.1021/acs.jpclett.1c01031}, volume = {12}, year = {2021} } orex-supercell-96532aa/doc/tutorial/supercell_tutorial.tex000066400000000000000000001535741465364771700241350ustar00rootroot00000000000000\documentclass[a4paper,10pt]{article} \usepackage[top=2.5cm, bottom=2.5cm, left=2.1cm, right=2.1cm]{geometry} \usepackage[utf8]{inputenc} %unicode support %%% Load packages \usepackage{amsthm,amsmath} \RequirePackage{natbib} %\usepackage{natbib} %\RequirePackage{hyperref} %\usepackage[applemac]{inputenc} %applemac support if unicode package fails %\usepackage[latin1]{inputenc} %UNIX support if unicode package fails \usepackage{multirow} \usepackage{graphicx} \usepackage{placeins} \usepackage{array} \usepackage[version=3]{mhchem} \usepackage{enumitem} \usepackage{lmodern} \usepackage{textcomp} \usepackage{gensymb} \usepackage{minted} \usepackage{fancyvrb} \usepackage{color, soul} \usepackage{hyperref} \usepackage{siunitx} \usepackage{tikz} \usetikzlibrary{shapes,positioning} %%% Put your definitions there: \renewcommand\thesubsubsection{\arabic{subsubsection}} %opening %\title{\textbf{Supplimentary materials.} \linebreak \linebreak Supercell program: a combinatorial structure-generation approach for the local-level modeling of atomic substitutions and partial occupancies in crystals.} \title{\textbf{Supercell program tutorial.}} \author{Kirill Okhotnikov, Thibault Charpentier and Sylvian Cadars} \begin{document} \maketitle \newcolumntype{M}[1]{>{\centering\arraybackslash}m{\dimexpr#1\linewidth-2\tabcolsep}} \newcommand{\sups}{\mbox{\textit{supercell}}} \newcommand{\Sups}{\mbox{\textit{Supercell}}} \newcommand{\clic}[1]{\Verb^#1^} \overfullrule=2cm \section*{Examples of \sups{} program application.} In the tutorial we discuss technical details of the \sups{} program use. All the examples are based on literature data, which was compared in detail to the results obtained with \sups{} where possible. \subsection*{Basic functionality: \ce{Ca2Al2SiO7}.} To understand how the \sups{} program works it is necessary to know the structure of Crystallographic Information File (CIF), which is used as both the output and input formats. (The conversion to a number of other format is made very easy by the OpenBabel library, which is used by the program). The CIF file is a standard text file format for representing crystallographic information. The format promulgated by the International Union of Crystallography (IUCr) and the detailed information about it can be found on IUCr site (\url{http://www.iucr.org/}) The structure of the sections of a CIF file relevant to our program will be illustrated with the \linebreak \clic{Ca2Al2SiO7.cif} file located in the \path{supercell/data/example} folder. \begin{Verbatim}[commandchars=\\\{\}, numbers=left] \textcolor{red}{data_Ca2Al2SiO7} \textcolor{blue}{_cell_length_a} 7.716 \textcolor{blue}{_cell_length_b} 7.716 \textcolor{blue}{_cell_length_c} 5.089 \textcolor{blue}{_cell_angle_alpha} 90 \textcolor{blue}{_cell_angle_beta} 90 \textcolor{blue}{_cell_angle_gamma} 90 \textcolor{blue}{_cell_volume} 302.982 \textcolor{blue}{_symmetry_space_group_name_H-M} 'P -4 21 m' \textcolor{blue}{_symmetry_int_tables_number} 113 \textcolor{magenta}{loop_} \textcolor{blue}{_space_group_symop_operation_xyz} x,y,z 1/2-y,1/2-x,z y,-x,-z 1/2-x,1/2+y,-z -x,-y,z 1/2+y,1/2+x,z -y,x,-z 1/2+x,1/2-y,-z \textcolor{magenta}{loop_} \textcolor{blue}{_atom_type_symbol} \textcolor{blue}{_atom_type_oxidation_number} Ca1 +2 AlT1 +3 AlT2 +3 SiT2 +4 O1 -2 O2 -2 O3 -2 \textcolor{magenta}{loop_} \textcolor{blue}{_atom_site_label} \textcolor{blue}{_atom_site_fract_x} \textcolor{blue}{_atom_site_fract_y} \textcolor{blue}{_atom_site_fract_z} \textcolor{blue}{_atom_site_occupancy} AlT1 0.00000 0.00000 0.00000 1.00000 \colorbox{yellow}{AlT2 0.14310 0.35690 0.95280 0.50000} \colorbox{yellow}{SiT2 0.14310 0.35690 0.95280 0.50000} O1 0.50000 0.00000 0.18840 1.00000 O2 0.14180 0.35820 0.28320 1.00000 O3 0.08720 0.17060 0.80330 1.00000 \end{Verbatim} The file consists of cell and spacegroup information at lines 2-21 (required by \sups{}), atoms charges (lines 22-30, optional) and atomic positions (lines 32-43, required). The partial occupancies of some sites (last column in lines 32-43) are a feature specific to disordered crystals. In the case presented here, partial occupancies are found for AlT2 and SiT2 sites, which are highlighted above. Both correspond to the same crystallographic position and will therefore be assigned to a single group by the \sups{} program. All other sites are fully occupied and will remain as such throughout the procedure. The \sups{} program is a user-friendly command-line software. It can be directly applied to CIF files. Let us use it for an \clic{Ca2Al2SiO7.cif} file in \path{supercell/data/examples} folder. \begin{Verbatim}[breaklines] supercell -d -i Ca2Al2SiO7.cif -m \end{Verbatim} The output of the command will be \begin{minted}[linenos, breaklines]{shell-session} kirill@asus-laptop:~/supercell/data/examples$ supercell -d -i Ca2Al2SiO7.cif -m ----------------------------------------------------- - Supercell program (v2.0) - ----------------------------------------------------- - Authors: * Kirill Okhotnikov - - (kirill.okhotnikov@gmail.com) - - * Sylvian Cadars - - (sylvian.cadars@cnrs-imn.fr) - - * Thibault Charpentier - - (Thibault.Charpentier@cea.fr) - ----------------------------------------------------- - please cite: - - K. Okhotnikov, T. Charpentier and S. Cadars - - J. Cheminform. 8 (2016) 17 - 33. - ----------------------------------------------------- Command line: supercell -d -i Ca2Al2SiO7.cif -m Random SEED: 1452874625 CIF file info: INFO: Using symmetries from space group. Initial system: Chemical Formula: Al4 Ca4 O14 Si2 Supercell system (1x1x1): Size a=7.716, b=7.716, c=5.089 Current charge balance option is "try" Total charge oxidation state (cif): 0 Total charge cell: 0 Charge balancing: yes ---------------------------------------------------------------- | Atom Label | charge | mult | occup x mult | | Ox. state | Used | (cif) | ---------------------------------------------------------------- | AlT1 | 3 | 3 | 2 | 2 | AlT2 | 3 | 3 | 4 | 2 | Ca1 | 2 | 2 | 4 | 4 | O1 | -2 | -2 | 2 | 2 | O2 | -2 | -2 | 4 | 4 | O3 | -2 | -2 | 8 | 8 | SiT2 | 4 | 4 | 4 | 2 ---------------------------------------------------------------- Chemical formula of the supercell: Al4 Ca4 O14 Si2 Total charge of supercell: 0 ---------------------------------------------------- Identification of groups of crystallographic sites ---------------------------------------------------- Group 1 (2 atomic positions in supercell): * Site #1: AlT1 (occ. 1) -> FIXED with occupancy 1.000. Group 2 (4 atomic positions in supercell): * Site #1: AlT2 (occ. 0.5) -> distributed over 2 positions out of 4 (actual occ.: 0.500). * Site #2: SiT2 (occ. 0.5) -> distributed over 2 positions out of 4 (actual occ.: 0.500). Number of combinations for the group is 6 Group 3 (4 atomic positions in supercell): * Site #1: Ca1 (occ. 1) -> FIXED with occupancy 1.000. Group 4 (2 atomic positions in supercell): * Site #1: O1 (occ. 1) -> FIXED with occupancy 1.000. Group 5 (4 atomic positions in supercell): * Site #1: O2 (occ. 1) -> FIXED with occupancy 1.000. Group 6 (8 atomic positions in supercell): * Site #1: O3 (occ. 1) -> FIXED with occupancy 1.000. Minimal distance between atoms of two distinct groups: 1.68147 A. ------------------------------------------------- The total number of combinations is 6 ------------------------------------------------- 8 symmetry operation found for supercell. Total enumeration time: 0:00:0.000507297 Combinations after merge: 2 \end{minted} The output header provides a technical information about the program. Random seed (line 18) stores information about seed, using for random numbers calculation in the run. By default, it changes from run to run, but you can specify it explicitly in command line to reproduce the run later. Next lines of the output give information about the initial and supercell system sizes, the total charge, and the chemical formula. The information about atomic species properties in the system are summarized in the table (lines 32-43). The multiplicity parameter is calculated using the symmetry information and atomic positions. The total charge is calculated using \path{_atom_type_oxidation_number} data in the CIF file or user-defined charges, specified with commands of the type: \clic{-p "Ca1:c=+2" -p "O1:c=-2"...} See the manual and other examples below for more information on the \clic{-p} option. The information about the total number of combinations is presented in line 75. The last three lines (77-79) appear only when the \clic{-m} option is present in the command line. To generate structures for cell $1\times1\times2$ (the example presented in the main paper), the \sups{} program should be run with the following parameters: \begin{Verbatim}[breaklines] supercell -i Ca2Al2SiO7.cif -s 1x1x2 -m -o Ca2Al2SiO7_cell_1x1x2 \end{Verbatim} where the supercell size is controlled by the \clic{-s} option (with ``x'' letter to represent the ``$\times$'' symbol) and the output file name prefix by the \clic{-o} parameter. \subsection*{Sampling methods: \ce{Ca2Al2SiO7}.} The number of combinations increases extremely rapidly with the number of atoms in the supercell (see main text and table~\ref{tab:FeSbO4} for example). In the case of the \ce{Ca2Al2SiO7} compound, the number of unique combinations for a $2\times2\times2$ supercell will be \num{9402622} which is too high to process and store, therefore sampling is required. \Sups{} offers a few methods of sampling. All of them are controlled by the \clic{-n } option, where \clic{} is a letter that determines the sampling method (\clic{r} for random, \clic{l} or \clic{h} for lowest- or highest-$E\_C$ structures, \clic{f} or \clic{a} for first or last-generated generated configurations) and \clic{} is the number of sampled configurations. To get \num{100} configurations picked randomly for the supercell $2\times2\times2$ the program should be executed with the following parameters: \begin{Verbatim}[breaklines] supercell -i Ca2Al2SiO7.cif -s 2x2x2 -m -n r100 -v 2 -o Ca2Al2SiO7_r100 \end{Verbatim} The option \clic{-v 2} switches the verbosity to level 2, to follow the program execution, this example being time consuming. Increasing the supercell size to $2\times2\times3$ gives a total number of combinations around $3.2 \times 10^{13}$. This number is too high to be treated by \sups{} directly, but some of random configurations can nevertheless be created with our program, even for such a big system. To perform the operation, the initial file should be processed with \sups{} program first. \begin{Verbatim}[breaklines] supercell -i Ca2Al2SiO7.cif -p "*:fixed" && mv supercell_i0.cif Ca2Al2SiO7_abg.cif \end{Verbatim} The parameter \clic{-p "*:fixed"} means, that all of the groups should be fixed (stored to output file with the initial partial occupancies). The result file \path{Ca2Al2SiO7_abg.cif} will then be used as an initial structure, but with P1 space group. It contains four crystallographic sites with partial Al/Si occupation. The sites \clic{(Al|Si)T2} should be renamed to \clic{(Al|Si)T2a} (for $z=0.95280$) and \clic{(Al|Si)T2b} for positions with $z=0.04720$. Because the group identification procedure in the \sups{} program uses the site labels as a first criterion (see main text for details), this new input CIF file now results in the identification of 2 independent groups of sites. The permutations can now be performed step by step, with the commands: \begin{Verbatim}[breaklines] rm Ca2Al2SiO7_step*.cif supercell -i Ca2Al2SiO7_abg.cif -s 2x2x3 -p "*T2b:fixed" -n r1 -o Ca2Al2SiO7_step1 supercell -i Ca2Al2SiO7_step1_ir*.cif -n r1 -o Ca2Al2SiO7_step2 \end{Verbatim} The first \sups{} execution generates one random structure (with \clic{-n r1}) within the T2a group, leaving T2b group partially occupied (\clic{-p "*T2b:fixed"}). The next command generates a random configuration within the T2b group, based on the previously-generated file (\clic{Ca2Al2SiO7_step1_ir*.cif}). Strictly speaking, the generated structure is nearly random, not fully. The splitting of T2 group to T2a and T2b imposes an occupancy restriction of this groups, 12 atoms of Al and 12 atoms of Si in each group. The restriction can be overcome to some extent by setting the number of Al and Si atoms for each group manually with \clic{-p} command. The parameter is discussed below. \subsection*{Disorder exploration in \ce{FeSbO4}: Comparison with SOD code.} The \ce{FeSbO4} system was explored with the SOD program in ref. \cite{Grau2007}. This compound has cation disorder on a single octahedral \ce{MO6} site. The results of the SOD program reported in ref. \cite{Grau2007} are reproduced here in table~\ref{tab:FeSbO4}. Applying the \sups{} program with the symmetry-merging (\clic{-m}) option for the same supercell sizes gives exactly the same number of symmetry operations, total number of combinations and number of independent configurations as with the SOD code. \begin{table}[ht!] \caption{Total number of possible combination of atoms for different supercell sizes of \ce{FeSbO4} for comparison with the results published in ref. \cite{Grau2007}.} \renewcommand{\arraystretch}{1.7} \newcolumntype{x}[1]{>{\centering\arraybackslash}m{#1}} \newcolumntype{y}[1]{>{\arraybackslash}m{#1}} \centering \begin{tabular}{|x{2.0cm}|x{2.3cm}|x{2.3cm}|x{2.3cm}|x{2.3cm}|} \hline Cell, $a\times~b~\times~c$ & Number of symmetry operations & Total number of configurations & Number of unique configurations & \sups{}/SOD run time\textsuperscript{**} \\ \hline ~$1\times 1 \times 1$\textsuperscript{*} & 16 & 2 & 1 & \textless~1~s \\ ~$1\times 1 \times 2$\textsuperscript{*} & 32 & 6 & 2 & \textless~1~s \\ ~$1\times 1 \times 3$\textsuperscript{*} & 48 & 20 & 3 & \textless~1~s \\ ~$1\times 1 \times 4$\textsuperscript{*} & 64 & 70 & 8 & \textless~1~s \\ ~$2\times 2 \times 1$\textsuperscript{*} & 64 & 70 & 7 & \textless~1~s \\ ~$2\times 2 \times 2$\textsuperscript{*} & 128 & 12870 & 180 & \textless~1~s/8.0~s \\ $2\times 2 \times 3$ & 192 & 2704156 & 15565 & \textless~1~s/7~days \\ $2\times 3 \times 3$ & 144 & ~$9\cdot 10^9$ & 63075916 & 142.67~s/crash \\ $3\times 3 \times 3$ & 432 & ~$1.9\cdot 10^{15}$ & N/A & $\approx$ 1y/--- \\ \hline \multicolumn{5}{y{12.5cm}}{\footnotesize{\textsuperscript{*}The data is also presented in table~1 in ref. \cite{Grau2007} and fully agrees with \sups{} results.}} \\ \multicolumn{5}{y{12.5cm}}{\footnotesize{\textsuperscript{**}Supercell performance mesuared using Intel\textsuperscript{\textregistered} Xeon\textsuperscript{\texttrademark} CPU 2.20~GHz under KVM virtual machine with 8 cores available.}} \\ \end{tabular} \label{tab:FeSbO4} \end{table} The \sups{} command whose output is used to generate a row (for example for supercell size $2\times2\times1$) in table~\ref{tab:FeSbO4} is of the form: \begin{Verbatim}[breaklines] supercell -d -i FeSbO4.cif -s 2x2x1 -m \end{Verbatim} where \texttt{-d} (\texttt{--dry-run}) option switches the program to dry-run mode (no output-file generation), \clic{-i} (\clic{--input}) must be followed by the input file name (required), \clic{-s} (\clic{--cell-size}) sets the cell size in format \texttt{AxBxC}, where \texttt{A}, \clic{B} and \clic{C} are positive integer numbers. Table~\ref{tab:FeSbO4} can be generated automatically (except information about SOD run time) with the script \linebreak \path{df_chg.bash} in \path{supercell/data/examples/FeSbO4} folder. The output of \sups{} is parsed during the execution of the script to extract the relevant information. As mentioned above this example does not generate output structures. To do so, the user should first create a directory where the structures will be stored and then execute the same type of \sups{} command without the \clic{-d}, and with the \clic{-o /} command instead, as in the example below: \begin{Verbatim}[breaklines] mkdir FeSbO4_cell221/ supercell -i FeSbO4.cif -s 2x2x1 -m -o FeSbO4_cell221/FeSbO4_cell221 \end{Verbatim} \subsection*{Coulomb energy calculations in $\gamma$-\ce{Fe2O3}.} The case of the $\gamma$-\ce{Fe2O3} system, investigated in ref. \cite{Grau2010}, was also examined. The input structure with name \clic{Fe2O3-P4332.cif} can be found in folder \path{supercell/data/examples/gamma-Fe2O3/}. Detailed information about the configurations and their degeneracies was presented therein for a supercell $1\times1\times3$ of $\gamma$-\ce{Fe2O3}, all of which were perfectly reproduced by the \sups{} program.\footnote{Table~2 in~\cite{Grau2010} has a mistyping: L1L3L5L10 degeneracy should be 24 and space group for configuration L1L2L4L5 should be \textit{C2}.}. Among other things, the correlation between total and Coulomb energies was examined in their paper. It was shown that, at least for this particular system, a quite strong correlation is obtained, such that Coulomb energy can be used to approximate the total energy with a reasonable precision. Electrostatic energies can be calculated directly with \sups{}, provided charges are specified for all sites in the CIF input file (with tag \clic{_atom_type_oxidation_number}) and/or in the command line. The following command should be used to calculate the electrostatic energy of all explored unique configurations for supercell size $1\times1\times3$ (examined in ref. \cite{Grau2010})\footnote{Please create folder \path{cell113_out} before running the command. Option \clic{-g} will not work without the folder.} \begin{Verbatim}[breaklines] mkdir cell113_out/ supercell -i Fe2O3-P4332.cif -s 1x1x3 -m -q -g -v 2 -o cell113_out/cell113 \end{Verbatim} where the \clic{-q} activates electrostatic energy calculations. This option requires the cell to be charge-balanced, and the calculation of all electrostatic energies will take up to 1 min. Option \clic{-g} generates file named \path{cell113_out/cell113_coulomb_energy.txt}, which contains the electrostatic energy of each structure processed. The \clic{_chemical_name_common} parameter value in each output CIF file also contains the energy value. We can go further and explore the cell $1\times2\times3$ of $\gamma$-\ce{Fe2O3}. A fast dry-run of \sups{} program: \begin{Verbatim}[breaklines] supercell -d -i Fe2O3-P4332.cif -s 1x2x3 -m -v 2 \end{Verbatim} provides information on the total number of combinations \num{735471} and the number of unique ones as \num{30834}. The number of configurations is too high to process them all, but they can nevertheless be sampled. The random sampling was discussed above. Here we also extract the structures with lowest (\clic{-n l}) and highest (\clic{-n h}) electrostatic-energies. All possible samplings can be done simultaneously. \begin{Verbatim}[breaklines] mkdir cell123_out/ supercell -i Fe2O3-P4332.cif -s 1x2x3 -v 2 -m -q -n l50 -n r100 -n h20 -o cell123_out/cell123 \end{Verbatim} Options \clic{-n l50}, \clic{-n h20} and \clic{-n r100} forces program to output only the 50 structures with lowest Coulomb energy, the first 20 structures with highest Coulomb energy and 100 random structures, respectively. The \clic{-q} option is of course mandatory to perform such Coulomb-energy-based samplings. It is important to keep in mind that the output text file \clic{cell123_coulomb_energy.txt} will list the Coulomb energies of all configurations, and not only of the sampled. If you are not interested in energies of all configurations, but only in the sampled one, you can find useful files \clic{cell123_coulomb_energy_r.txt}, \clic{cell123_coulomb_energy_l.txt}, and \clic{cell123_coulomb_energy_h.txt}, which list only the Coulomb energies of configurations sampled with each method. Most of the popular filesystems, have a significant performance degradation, when the total number of file in the folder is more than \num{10000}. To overcome this limitation, the archiving option (\clic{-a}), which will automatically compress the output files, can be used. \begin{Verbatim}[breaklines] supercell -i Fe2O3-P4332.cif -s 1x2x3 -m -q -v 2 -o Fe2O3/cell123 -a Fe2O3_cell123.zip \end{Verbatim} This run of \sups{} packs all the output files (except \clic{cell123_coulomb_energy.txt}) to \path{Fe2O3_cell123.zip} archive. The files will be located in the folder \path{Fe2O3} within this archive. The name of the files will start from \path{cell123}. The possible file formats \path{.zip}, \path{.tar}, \path{.tgz}, \path{.tar.gz}, \path{.tar.bz2} and \path{.tar.xz} should be specified like an extension of archive file. The parameter is optional and requires \textit{libarchive} installed, during program compilation. \subsection*{\Sups{} program verification on the $\alpha$-\ce{Si_xGe_{1-x}O2} system} The ``disorder'' part of the CRYSTAL code has previously been applied to a $\alpha$-\ce{Si_xGe_{1-x}O2} solid solution based on the $\alpha$-quartz structure\cite{El-Kelany2014}. Repeating the same calculations with the \sups{} program again led to the same total number of configurations, number of distinct configurations, and symmetry of individual structures for all $x$ values. The corresponding table may be generated automatically with the script \clic{df_cfg.bash} located in directory \clic{supercell/data/examples/alpha-SiGeO2/}. The \sups{} commands used in this example are of the form: \begin{Verbatim}[breaklines] supercell -i alpha-SiGeO2.cif -s 1x1x2 -p "Si1:p=2" -p "Ge1:p=4" -m -o cell112/Si2/SiGeO2_112-Si2 \end{Verbatim} here the \clic{-p} option is used to set the number of \ce{Si} and \ce{Ge} atoms occupying the disordered mixed site Si1/Ge1. The multiplicity of this site is 3 (trigonal space group \ce{P{3}_{2}{21}}, no. 154), which gives for a supercell of size $1\times1\times2$ a total number of 6 positions and imposes that $0 \leq p(\text{Si1})\leq 6$ and $p(\text{Ge1})+p(\text{Si1})=6$. The structures are generated and stored in directory \clic{cell112/Si2/}, which is created by the script before the command is run. The number ``2'' in ``Si2'' stands here for the population $p(\text{Si1})$, and the script actually creates seven such directories named: \path{cell112/Si/} where $p(\text{Si1})=0...6$ which contain the generated structures. \subsection*{\Sups{} program verification on the \ce{Cu2ZnSnS_{x}Se_{4-x}} system.} Another verification was done by comparison with data published on \ce{Cu2ZnSnS_{x}Se_{4-x}}\cite{Dun2014}, in which the authors performed the symmetry search manually, rather than with any of the software discussed above. The data can therefore be treated as one more independent evidence of the correctness of our algorithm, which again provides results in complete agreement with those reported in ref. \cite{Dun2014}. This example is again distributed with the source code of the \sups{} program, along with a script (\clic{df_cfg.bash} in directory \clic{supercell/data/examples/Cu2ZnSnSxSe4-x/}) that will automatically generate the corresponding tables for direct comparison with the cited article. The \sups{} commands used in this example are of the form: \begin{Verbatim}[breaklines] supercell -i stannite.cif -s 1x1x1 -p "S:p=3" -p "Se:p=5" -m -o /stannite \end{Verbatim} in which, as in the previous example, the \texttt{} is created before the command is run and the populations of S and Se atoms on crystallographic sites ``S'' and ``Se'' are specified with the \clic{-p} option. It is important to keep in mind that ``S'' and ``Se'' in ``S:p=3'' and ``Se:p=5'' arguments refer to the \textit{crystallographic labels} as they are defined in the CIF file rather than to atom symbols (more typical labels would be of the form ``S1'' and ``Se1''). The multiplicity of these overlapping sites in the cell being 8 and the supercell size being $1\times1\times1$, the population values ``p'' should obey $0 \leq p(\text{S})\leq 8$ and $p(\text{Se}) + p(\text{S})=8$. \subsection*{\Sups{} program verification on piezoelectric ceramics \ce{PbZr_{x}Ti_{1-x}O3} (PZT).} Disorder in piezoelectric ceramics can be also processed with \sups{} program. The well-known \ce{PbZr_{x}Ti_{1-x}O3} (PZT) ceramics is particularly interesting because of the displacement disorder on the Pb position, which is induced by \ce{Zr-Ti} substitution and crucially affects its electric and mechanical properties. The example described here is based on Ref. \cite{Grinberg2004}, where authors used DFT calculations to investigate the correlation between substitution ordering in supercell models and the physical properties of the system. They used in this particular case a strongly anisotropic $4\times2\times1$ supercell of composition \ce{PbZr_{0.5}Ti_{0.5}O3}. The approximations leads to 10 symmetry unique configurations, which were all presented in the paper. They can be easily generated with the \sups{} program embedded in a simple script \clic{df_cfg.bash} located in \clic{supercell/data/examples/PZT/} folder. We note that the order of configurations differs in the script and in the paper. The command line used in this script is: \begin{Verbatim}[breaklines] supercell -s 4x2x1 -i PZT-PbZr05Ti05O3.cif -m -o /PZT421 \end{Verbatim} Using the \sups{} program makes it possible to proceed with larger supercell sizes $4\times2\times2$ and $4\times3\times2$, yielding 490 and 29606 unique configurations, respectively. The second case may be difficult to process, but the first one is absolutely feasible. Such supercell size allows to research structure distortion in z-dimension also. \subsection*{Disorder in \ce{Pb_{0.5}Sn_{0.5}Te}: calculation of atom-pair correlation functions} The purpose of this section is to describe the procedure and results of the exploration of the \ce{Pb_{0.5}Sn_{0.5}Te} system discussed in the main text, in which we use the \sups{} program combined with a structure-analysis tool (the GULP program) to calculate atom-pair correlation functions. These functions are then used to evaluate to what extent the generated structures are representative of random Pb/Se disorder through their adequacy with Special-Quasirandom-Structure (SQS) character\cite{Zunger1990}. This example is performed automatically with the script \clic{df_cfg.bash} located in directory \path{supercell/data/examples/PbSnTe-SQS/} for two supercell sizes: $1\times1\times2$ and $1\times2\times2$. The script uses \sups{} commands such as: \begin{Verbatim}[breaklines] supercell -i PbSnTe2.cif -s 1x1x2 -m -o cell_1x1x2/PbSnTe_1x1x2 \end{Verbatim} The GULP program is then used to perform the following structure analysis on each one of the (symmetry-unique since the \clic{-m} option is used) output configurations. The correlation functions are calculated like a total energy of the system with set of ``fake'' potentials. The potential energy it set to +1 for \ce{A-A} and \ce{B-B} interactions and -1 for \ce{A-B} at distance $R_m$, with $m$ being the coordination sphere number (see main text), and zero for all other distances. The result is saved in text files \path{SQS-1x1x2} and \path{SQS-1x1x2} in the form of tables which list, for each configuration: \begin{itemize} \item the structure name (ex. \path{cell_1x1x2/PbSnTe_c1x1x2_i_w.cif}) \item the atom-pair correlation coefficients (see main text) calculated for the first 4 shells of each cationic site (ignoring \ce{Te} atoms), which correspond to \ce{A-B} distances (where \ce{A}, \ce{B} = \ce{Pb} or \ce{Sn}) of 4.51, 6.39, 7.83, and 9.04~\AA, as listed in the file header. \end{itemize} The adequacy of the structure to the SQS criteria is indicated by how close these four correlation functions, and in particular the first three, are to zero (because the substituted \ce{Pb} and \ce{Sn} atoms are present in equal concentrations, see main text). A good way to visualize these results is for example to sort the structures by ascending order of the absolute value of those coefficients in columns 1, 2, 3, and 4 (in this order). \subsection*{Permutations in ice \ce{I_h} $1\times1\times2$ supercell.} \begin{figure}[t] \caption{ Crystal structure of ice \ce{I_h}. Cell 1x1x2. Hydrogen sites connected to the same oxygen atoms are displayed with the same color, each color being associated in this initial structure to a different H-atom label (from H1 to H8). } \centering \includegraphics[scale=0.20]{figures/ice-Ih-121-adv.png} \label{fig:iceIh-adv} \end{figure} The method described in the main paper to generate correlated ice \ce{I_h} structures will not work with supercells larger than the original one. An advanced method to do so is therefore presented here. The input CIF file should be changed manually to use this method. We strongly encourage the user to also check the \path{df_cfg.bash} script in folder \path{supercell/data/examples/ice-Ih-adv/}, which implements this procedure. As mentioned in the main text, the ordering of H atoms in this system is governed by two restrictions: the coordination number of all O atoms should be two and H atoms should not be in close contact with each other. Further below, we describe how to impose the first restriction in the initial structure, by grouping atoms in a non-standard way. But first of all, we generate a $1\times1\times2$ supercell, keeping the disorder: \begin{Verbatim}[breaklines] supercell -i ice-Ih.cif -s 1x1x2 -p "*:fixed" -o ice-Ih-121-adv.cif \end{Verbatim} where the partial occupancies on both sites are kept fixed. (This step could of course alternatively be done with any program for the visualization of crystallographic structures.) The output structure is shown on fig.~\ref{fig:iceIh-adv}. Each oxygen atom is still surrounded by 4 hydrogen positions, strictly two of which should be occupied by H atoms in the end. In the figure, the hydrogen sites are associated with different O atoms marked with different colors. The H atom labels are then changed manually in the same way as the color code, ensuring that (i) all hydrogen positions attached to the same O atom have the same label and that (ii) hydrogen atoms positions associated with different O atoms have different labels (ex. H1, H2, H3, etc). Importantly, the \sups{} program will associate sites with identical crystallographic labels within a common group (as defined in the main text), so that a run with this customized file (\path{supercell/data/examples/ice-Ih-adv/ice-Ih-121-adv.cif}) as an input gives 8 groups with $C^2_4=6$ combinations each, which yields a total of $6^8=$\num{1679616} configurations. The \sups{} command used for this step is the following: \begin{Verbatim}[breaklines] supercell -i ice-Ih-121-adv.cif -m -q -p "O:c=-2" -p "H*:c=+1" -p "r(H[5-8]):fixed" -o /ice-Ih-l1 \end{Verbatim} where the \clic{-p --property} option is first used to set the charges (\clic{

'; $htmlMacro1b{'section'} = '

\n'; $htmlMacro1a{'subsection'} = '\n

'; $htmlMacro1b{'subsection'} = '

\n'; $htmlMacro1a{'subsubsection'} = '\n
'; $htmlMacro1b{'subsubsection'} = '
\n'; if ($opt_c) { # use CSS # thanks to Tom Brand $htmlMacro1a{'Email'} = '\n'; $htmlMacro1b{'Email'} = ''; $htmlMacro1a{'URL'} = '\n'; $htmlMacro1b{'URL'} = ''; $htmlMacro1a{'Prog'} = ''; $htmlMacro1b{'Prog'} = ''; $htmlMacro1a{'File'} = ''; $htmlMacro1b{'File'} = ''; $htmlMacro1a{'Opt'} = ''; $htmlMacro1b{'Opt'} = ''; $htmlMacro1a{'oOpt'} = '['; $htmlMacro1b{'oOpt'} = ']'; $htmlMacro1a{'Arg'} = ''; $htmlMacro1b{'Arg'} = ''; $htmlMacro1a{'oArg'} = '['; $htmlMacro1b{'oArg'} = ']'; } else { # don't use CSS $htmlMacro1a{'Email'} = '\n'; $htmlMacro1b{'Email'} = ''; $htmlMacro1a{'URL'} = '\n'; $htmlMacro1b{'URL'} = ''; $htmlMacro1a{'Prog'} = ''; $htmlMacro1b{'Prog'} = ''; $htmlMacro1a{'File'} = ''; $htmlMacro1b{'File'} = ''; $htmlMacro1a{'Opt'} = ''; $htmlMacro1b{'Opt'} = ''; $htmlMacro1a{'oOpt'} = '['; $htmlMacro1b{'oOpt'} = ']'; $htmlMacro1a{'Arg'} = ''; $htmlMacro1b{'Arg'} = ''; $htmlMacro1a{'oArg'} = '['; $htmlMacro1b{'oArg'} = ']'; } # LaTeX macros with two arguments if (opt_c) { $htmlMacro2a{'Cmd'} = ''; $htmlMacro2b{'Cmd'} = '('; $htmlMacro2c{'Cmd'} = ')'; $htmlMacro2a{'OptArg'} = ''; $htmlMacro2b{'OptArg'} = ''; $htmlMacro2c{'OptArg'} = ''; $htmlMacro2a{'OptoArg'} = ''; $htmlMacro2b{'OptoArg'} = '['; $htmlMacro2c{'OptoArg'} = ']'; $htmlMacro2a{'oOptArg'} = '['; $htmlMacro2b{'oOptArg'} = ''; $htmlMacro2c{'oOptArg'} = ']'; $htmlMacro2a{'oOptoArg'} = '['; $htmlMacro2b{'oOptoArg'} = '['; $htmlMacro2c{'oOptoArg'} = ']]'; } else { $htmlMacro2a{'Cmd'} = ''; $htmlMacro2b{'Cmd'} = '('; $htmlMacro2c{'Cmd'} = ')'; $htmlMacro2a{'OptArg'} = ''; $htmlMacro2b{'OptArg'} = ''; $htmlMacro2c{'OptArg'} = ''; $htmlMacro2a{'OptoArg'} = ''; $htmlMacro2b{'OptoArg'} = '['; $htmlMacro2c{'OptoArg'} = ']'; $htmlMacro2a{'oOptArg'} = '['; $htmlMacro2b{'oOptArg'} = ''; $htmlMacro2c{'oOptArg'} = ']'; $htmlMacro2a{'oOptoArg'} = '['; $htmlMacro2b{'oOptoArg'} = '['; $htmlMacro2c{'oOptoArg'} = ']]'; } $htmlMacro2a{'setlength'} = ''; $htmlMacro2b{'setlength'} = ''; $htmlMacro2c{'setlength'} = ''; # we handle sections in HTML as having two arguments, 1. the number, 2. the name if ($opt_c) { # use CSS # thanks to Tom Brand $htmlMacro2a{'section'} = '\n

'; $htmlMacro2c{'section'} = '

\n'; $htmlMacro2a{'subsection'} = '\n

'; $htmlMacro2c{'subsection'} = '

\n'; $htmlMacro2a{'subsubsection'} = '\n
'; $htmlMacro2c{'subsubsection'} = '
\n'; # we handle Email and URL special in HTML, the LaTeX argument is doubled. $htmlMacro2a{'Email'} = ''; $htmlMacro2c{'Email'} = ''; $htmlMacro2a{'URL'} = ''; $htmlMacro2c{'URL'} = ''; }else{ # don't use CSS $htmlMacro2a{'section'} = '\n

'; $htmlMacro2c{'section'} = '

\n'; $htmlMacro2a{'subsection'} = '\n

'; $htmlMacro2c{'subsection'} = '

\n'; $htmlMacro2a{'subsubsection'} = '\n
'; $htmlMacro2c{'subsubsection'} = '
\n'; # we handle Email and URL special in HTML, the LaTeX argument is doubled. $htmlMacro2a{'Email'} = ''; $htmlMacro2c{'Email'} = ''; $htmlMacro2a{'URL'} = ''; $htmlMacro2c{'URL'} = ''; } ######################################################################## # Translation for LaTeX macros for TexInfo # translation of special characters $texiLetterCode{''} = '@"a'; $texiLetterCode{''} = '@"o'; $texiLetterCode{''} = '@"u'; $texiLetterCode{''} = '@"A'; $texiLetterCode{''} = '@"O'; $texiLetterCode{''} = '@"U'; $texiLetterCode{''} = '@ss{}'; # LaTeX macros without arguments $texiMacro{'LaTeX'} = 'LaTeX'; $texiMacro{'LATEX'} = 'LaTeX'; # needed, since \LaTeX is contained in a # section name (which are transposed # into uppercase $texiMacro{'itemsep'} = ''; # some math $texiMacro{'rightarrow'} = '-->'; $texiMacro{'Rightarrow'} = '==>'; $texiMacro{'leftarrow'} = '<--'; $texiMacro{'Leftarrow'} = '<=='; $texiMacro{'ge'} = '>='; $texiMacro{'le'} = '<='; $texiMacro{'Dollar'} = '$'; $texiMacro{'Bar'} = '|'; $texiMacro{'Bs'} = '\\'; $texiMacro{'Tilde'} = '~'; $texiMacro{'hline'} = ''; $texiMacro{'noindent'} = '\n@noindent\n'; $texiMacro{'copyright'} = '@copyright{}'; $texiMacro{'Dots'} = '...'; $texiMacro{'Circum'} = '^'; $texiMacro{'Lbr'} = '['; $texiMacro{'Rbr'} = ']'; $texiMacro{'LBr'} = '@{'; $texiMacro{'RBr'} = '@}'; $texiMacro{'Percent'} = '%'; $texiMacro{'Bullet'} = '*'; $texiMacro{'TEXbr'} = ''; $texiMacro{'MANbr'} = ''; $texiMacro{'TEXIbr'} = '@*\n'; $texiMacro{'HTMLbr'} = ''; $texiMacro{'medskip'} = '@sp 2\n'; $texiMacro{'SP'} = '@ @ '; if ($opt_a) { $texiMacro{'SPfirst'} = $opt_a . '@ '; } else { $texiMacro{'SPfirst'} = '.@ '; } #Added by Supercell $texiMacro{'Dd'} = '--'; $texiMacro{'~'} = ' '; $texiMacro{'|'} = '|'; $texiMacro{'<'} = '<'; $texiMacro{'>'} = '>'; $texiMacro{'<='} = '<='; $texiMacro{'>='} = '>='; $texiMacro{'='} = '='; $texiMacro{'<>'} = '<>'; $texiMacro{'{'} = '@{'; $texiMacro{'}'} = '@}'; $texiMacro{'_'} = '_'; $texiMacro{'$'} = '$'; $texiMacro{'#'} = '#'; $texiMacro{'&'} = '&'; $texiMacro{'%'} = '%'; $texiMacro{'-'} = '@-'; $texiMacro{','} = ' '; $texiMacro{'\\'} = '@*\n'; # line break $texiMacro{'\\Tab'} = '\n'; # end of column in a table environment # LaTeX macros with one argument $texiMacro1a{'emph'} = '@emph{'; $texiMacro1b{'emph'} = '}'; $texiMacro1a{'textbf'} = '@strong{'; $texiMacro1b{'textbf'} = '}'; $texiMacro1a{'texttt'} = '@t{'; $texiMacro1b{'texttt'} = '}'; $texiMacro1a{'verb'} = '@t{'; $texiMacro1b{'verb'} = '}'; $texiMacro1a{'underline'} = ''; $texiMacro1b{'underline'} = ''; $texiMacro1a{'section'} = '\n@section '; $texiMacro1b{'section'} = '\n'; $texiMacro1a{'subsection'} = '\n@subsection '; $texiMacro1b{'subsection'} = '\n'; $texiMacro1a{'subsubsection'} = '\n@subsubsection '; $texiMacro1b{'subsubsection'} = '\n'; $texiMacro1a{'Prog'} = ''; $texiMacro1b{'Prog'} = ''; $texiMacro1a{'File'} = '@file{'; $texiMacro1b{'File'} = '}'; $texiMacro1a{'Opt'} = ''; $texiMacro1b{'Opt'} = ''; $texiMacro1a{'oOpt'} = '[ '; $texiMacro1b{'oOpt'} = ' ]'; $texiMacro1a{'Arg'} = '@var{'; $texiMacro1b{'Arg'} = '}'; $texiMacro1a{'oArg'} = '[ @var{'; $texiMacro1b{'oArg'} = '} ]'; $texiMacro1a{'Email'} = '@email{'; $texiMacro1b{'Email'} = '}'; $texiMacro1a{'URL'} = '@url{'; $texiMacro1b{'URL'} = '}'; # LaTeX macros with two arguments $texiMacro2a{'Cmd'} = ''; $texiMacro2b{'Cmd'} = '('; $texiMacro2c{'Cmd'} = ')'; $texiMacro2a{'OptArg'} = ''; $texiMacro2b{'OptArg'} = '@var{'; $texiMacro2c{'OptArg'} = '}'; $texiMacro2a{'OptoArg'} = ''; $texiMacro2b{'OptoArg'} = '[@var{'; $texiMacro2c{'OptoArg'} = '}]'; $texiMacro2a{'oOptArg'} = '[ '; $texiMacro2b{'oOptArg'} = '@var{'; $texiMacro2c{'oOptArg'} = '} ]'; $texiMacro2a{'oOptoArg'} = '[ '; $texiMacro2b{'oOptoArg'} = '[@var{'; $texiMacro2c{'oOptoArg'} = '}] ]'; $texiMacro2a{'setlength'} = ''; $texiMacro2b{'setlength'} = ''; $texiMacro2c{'setlength'} = ''; ######################################################################## # processing for MAN sub manStart { printf DEST "\'\\\" t\n"; # process with tbl printf DEST ".\\\" Manual page created with $CMD on $gen_date\n"; printf DEST ".\\\" NOTE: This file is generated, DO NOT EDIT.\n"; # Definitionen von Verbatimbegin and Verbatimend Print ".de Vb\n.ft CW\n.nf\n..\n.de Ve\n.ft R\n\n.fi\n..\n"; Print ".TH \"$Name\" \"$chapter\" \"". $date ."\" \""; interpret_word "$tool"; Print "\" \""; interpret_word "$tool"; Print "\""; NL; # thanks to Andrew Anderson } sub manEnd { NL; printf DEST ".\\\" NOTE: This file is generated, DO NOT EDIT.\n"; } sub manSection { my ($cnt, $kind, $section) = @_; if ($kind ne "subsubsection"){ $section = uc $section; } interpret_line "\\$kind\{$section\}"; } sub manParagraph { if (!$paragraph) { if ($manRS == 0 && $list_nest > 1) { Print '\n.RS'; $manRS = 1; } Print '\n.PP\n'; $paragraph = 1; } } sub manVerb { my $arg = $_[0]; if ($arg =~ /^\./) { print DEST '\\&' }; Print $arg } sub manItemWithArg { my $arg = $_[0]; if ($manRS == 1) { Print '\n.RE\n'; } $manRS = 0; Print '\n.TP\n'; interpret_word $arg; PrintM ' '; NL; } sub manItem { if ($manRS == 1) { Print '\n.RE\n'; } $manRS = 0; Print '\n.TP\n'; if ($cur_list[$list_nest] eq 'item') { Print '.B *'; } elsif ($cur_list[$list_nest] eq 'enum') { Print $item_nr[$list_nest] . '.'; } NL; } sub manDescriptionStart { if ($list_nest > 1) { Print '\n.RS\n'; } } sub manDescriptionEnd { if ($manRS) { Print '\n.RE\n'; $manRS = 0; } if ($list_nest > 1) { Print '\n.RE\n'; } manParagraph; } sub manItemStart { if ($list_nest > 1) { Print '\n.RS\n'; } } sub manItemEnd { if ($manRS) { Print '\n.RE\n'; $manRS = 0; } if ($list_nest > 1) { Print '\n.RE\n'; } manParagraph; } sub manEnumEnd { if ($manRS) { Print '\n.RE\n'; $manRS = 0; } if ($list_nest > 1) { Print '\n.RE\n'; } manParagraph; } sub manEnumStart { if ($list_nest > 1) { Print '\n.RS\n'; } } sub manCenterStart { PrintM '\n.ce 100\n'; } sub manCenterEnd { PrintM '\n.ce 0\n'; } sub manNameStart { interpret_line "\\section\{NAME\}$rest"; } sub manNameEnd { # nothing } sub manTableStart { my $columns = $_[0]; my $width = $_[1]; my $i; manParagraph; Print '.TS\n'; Print 'tab(&);\n'; for ($i = 1; $i <= $columns; $i++) { Print " l"; } Print "w($width)" if ($width); Print '.\n'; } sub manTableSep { Print '\nT}&T{\n'; } sub manTableEnd { Print '\n.TE\n'; manParagraph; } sub manVerbatimStart { Print '\n.Vb\n'; } sub manVerbatimEnd { Print '.Ve\n'; } sub manVerbatimLine { s/\\/\\\\/g; s/-/\\-/g; print DEST "$_"; } ########################################################################### # processing for HTML sub htmlStart { Print ""; NL; Print ""; NL; Print ""; NL; Print "$Name"; NL; if ($opt_c) { Print ''; NL; Print ""; NL; Print '

'; NL; interpret_line $title; Print '

'; NL; Print '

'; interpret_word $author; Print '

'; NL; Print "

$date

"; NL; Print "

Version $version

"; NL; } else { Print ""; NL; Print "

"; NL; interpret_line $title; Print "

"; NL; Print "

"; interpret_word $author; Print "

"; NL; Print "

$date

"; NL; Print "

Version $version

"; NL; } } sub htmlEnd { Print ""; NL; Print ""; NL; Print ""; NL; } sub htmlSection { my ($cnt, $kind, $section) = @_; interpret_line "\\$kind\{$cnt\}\{$section\}"; } sub htmlCenterStart { Print '\n
\n'; } sub htmlCenterEnd { Print '\n
\n'; } sub htmlNameStart { # nothing } sub htmlNameEnd { Print '\n@@INSERTION-POINT@@-TOC@@\n'; } sub htmlParagraph { if (!$paragraph) { NL; Print "

"; NL; $paragraph = 1; } } sub htmlVerb { $arg = $_[0]; $arg =~ s/&/&/g; $arg =~ s/>/>/g; $arg =~ s/ 1) { NL; Print ""; NL; } Print "

"; interpret_word $arg; Print "
"; NL; Print "
"; } sub htmlItem { if ($item_nr[$list_nest] > 1) { Print '\n'; } if ($cur_list[$list_nest] eq 'item') { Print '
  • '; } elsif ($cur_list[$list_nest] eq 'enum') { Print '
  • '; } } sub htmlDescriptionStart { NL; Print "
    "; NL; } sub htmlDescriptionEnd { NL; Print "
  • \n"; NL; } sub htmlItemStart { NL; Print "
      "; NL; } sub htmlItemEnd { NL; Print "\n
    "; NL; } sub htmlEnumStart { NL; Print "
      "; NL; } sub htmlEnumEnd { NL; Print "\n
    "; NL; } sub htmlTableStart { my $columns = $_[0]; my $width = $_[1]; NL; if ($opt_c) { Print ''; } else{ Print '
    '; } NL; } sub htmlTableSep { if ($first_column == 0) { Print '\n'; } if ($opt_c) { Print '
    '; } else { Print ''; } } sub htmlTableEnd { NL; Print "
    "; NL; } sub htmlVerbatimStart { NL; Print '
    '; NL;
    }
    
    sub htmlVerbatimEnd
    {
        Print '
    '; NL; } sub htmlVerbatimLine { s/&/&/g; s//>/g; print DEST "$_"; } ########################################################################### # processing for TexInfo sub texiStart { Print '\input texinfo @c -*-texinfo-*-'; NL; Print '@c %**start of header'; NL; Print '@setfilename ' . "$name.info"; NL; Print '@settitle ' . "$name"; NL; Print '@c %**end of header'; NL; Print '@c Manual page created with' ." $CMD on $gen_date>"; NL; Print '@c NOTE: This file is generated, DO NOT EDIT.'; NL; } sub texiEnd { Print '@bye'; NL; Print '@c NOTE: This file is generated, DO NOT EDIT.'; NL; } sub texiSection { my ($cnt, $kind, $section) = @_; if (uc $sections[$cnt-1] eq "SYNOPSIS") { Print '\n@@INSERTION-POINT@@-TOC@@\n'; $sections[$cnt-1] = "Top"; # The predecessor node is Top and not SYNOPSIS } if (uc $sections[$cnt] eq "SYNOPSIS") { $cnt == 1 || die "$CMD: The Synopsis section must be the first section after\n" . "\t the Name environment\n"; } else { Print '\n@@INSERTION-POINT@@-TEXI-SEC@@' . " $kind $cnt" . '\n'; } interpret_line "\\$kind\{$section\}"; } sub texiNameStart { my ($name, $chapter, $author, $tool) = @_; $sections[0] = "Top"; # Print '@dircategory ' .$tool; NL; Print '@dircategory Man-pages'; NL; Print '@direntry'; NL; Print "* " . (ucfirst $name) . ": ($name). Its Man-Page "; NL; Print '@end direntry'; NL; Print '@titlepage'; NL; Print '@title ' . "$name"; NL; Print '@subtitle ' . "$tool"; NL; Print '@author ' . "$author"; NL; Print '@end titlepage'; NL; Print '\n@@INSERTION-POINT@@-TEXI-TOP@@'; NL; Print '@top ' . "$name"; NL; } sub texiNameEnd { # nothing } sub texiParagraph { if (!$paragraph) { NL; print DEST "\n"; $paragraph = 1; } } sub texiVerb { $arg = $_[0]; $arg =~ s/([{]|})/\@$1/g; Print $arg; } sub texiItemWithArg { my $arg = $_[0]; Print '\n@item '; interpret_word $arg; NL; } sub texiItem { Print '\n@item\n'; } sub texiDescriptionStart { Print '\n@table @samp\n'; } sub texiDescriptionEnd { Print '\n@end table\n'; } sub texiItemStart { Print '\n@itemize @bullet\n'; } sub texiItemEnd { Print '\n@end itemize\n'; } sub texiCenterStart { $texiCenterLine = 1; $newline = 0; $texiMacro{'\\'} = '@*'; # line break $texiMacro{'TEXIbr'} = '@*'; NL; } sub texiCenterEnd { $texiCenterLine = 0; $newline = 0; $texiMacro{'\\'} = '@*\n'; # line break $texiMacro{'TEXIbr'} = '@*\n'; NL; } sub texiEnumStart { Print '\n@enumerate\n'; } sub texiEnumEnd { Print '\n@end enumerate\n'; } sub texiTableStart { my $columns = $_[0]; my $width = $_[1]; my $i; Print '\n@multitable @columnfractions '; for ($i = 1; $i <= $columns; $i++) { Print " " .0.9/$columns ; } Print '\n'; } sub texiTableSep { Print '@tab '; } sub texiTableEnd { Print '\n@end multitable\n'; } sub texiVerbatimStart { NL; Print '@*'; NL } sub texiVerbatimEnd { NL; } sub texiVerbatimLine { s/(\{|\}|@| )/\@$1/g; chop; print DEST ".$_\@*\n"; } ########################################################################### ########################################################################### # general processing # emit an error message is the given macro does not exists. sub check_Macro { exists $Macro->{$_[0]} || die "Error in line $.: no such macro: \\$_[0]\n"; } sub check_Macro1 { (exists $Macro1a->{$_[0]} && exists $Macro1b->{$_[0]}) || die "$CMD: Error in line $.: no such macro: \\$_[0]\n"; } sub check_Macro2 { (exists $Macro2a->{$_[0]} && exists $Macro2b->{$_[0]} && exists $Macro2c->{$_[0]}) || die "$CMD: Error in line $.: no such macro: \\$_[0]\n"; } sub NL { if (!$newline) { printf DEST "\n"; if ($texiCenterLine) { print DEST "\@center "; } $newline = 1; } } sub interpret_word { if (@_ <= 0) { return; } $_ = join " ", @_; my ($s,$m,$a1,$a2,$r); # start, match/macro, argument1, argument2 my $add_blank = 1; # if true, add a blank after the word if ($opt_D == 2) { if ($nesting == 0) { print "**** "; } else { print " "; } print "\`$_'\n"; } if ($opt_H) { # handling of HTML table rows if ($inside_table == 1) { if ($first_column == 1) { if (/^$/) { return; } if (/^\\hline/) { if ($opt_c) { Print '\n
    \n'; } else { Print '\n
    \n'; } } if ($opt_c) { Print '\n\n'; } else { Print '\n\n'; } } $first_column = 0; } } elsif ($opt_M) { # handling of troff table rows if ($inside_table == 1) { if ($first_column == 1) { if (/^$/) { return; } Print 'T{\n'; } $first_column = 0; } } elsif ($opt_T) { # handling of TexInfo specific stuff if ($nesting == 0) { s'@'@@'g; #' } if ($inside_table == 1) { if ($first_column == 1) { Print '\n@item '; } $first_column = 0; } } $nesting ++; SWITCH: { /^$/ && do {$add_blank = 0; last SWITCH; }; /\\verb\+([^+]*)\+/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; PrintM $Macro1a->{'verb'}; &{$Prefix . "Verb"} ($m); PrintM $Macro1b->{'verb'}; interpret_word $r; last SWITCH; }; /\\(".|ss)/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; check_Macro $m; PrintM $Macro->{$m}; interpret_word $r; last SWITCH; }; /\\item\s*\[([^]]*)\]/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; $item_nr[$list_nest] ++; &{$Prefix . "ItemWithArg"} ($m); interpret_word $r; last SWITCH; }; /\\item\s*/ && do {$s=$`;$r=$'; #' interpret_word $s; $item_nr[$list_nest] ++; &{$Prefix . "Item"}; interpret_word $r; last SWITCH; }; # LaTeX macros with two arguments /\\([a-zA-Z]+)\{([^}]*)\}\{([^}]*)\}/ && do {$s=$`;$m=$1;$a1=$2;$a2=$3;$r=$'; #' check_Macro2 $m; interpret_word $s; PrintM $Macro2a->{$m}; interpret_word $a1; PrintM $Macro2b->{$m}; interpret_word $a2; PrintM $Macro2c->{$m}; interpret_word $r; NL; last SWITCH; }; # Special Handling of Email and URL LaTeX macros with one argument /\\(URL|Email)\{([^}]*)\}/ && ($opt_H) && do {$s=$`;$m=$1;$a1=$2;$r=$'; #' interpret_word $s; PrintM $Macro2a->{$m}; interpret_word $a1; PrintM $Macro2b->{$m}; interpret_word $a1; PrintM $Macro2c->{$m}; interpret_word $r; NL; last SWITCH; }; # LaTeX macros with one argument /\\([a-zA-Z]+)\{([^}]*)\}/ && do {$s=$`;$m=$1;$a1=$2;$r=$'; #' check_Macro1 $m; interpret_word $s; PrintM $Macro1a->{$m}; interpret_word $a1; PrintM $Macro1b->{$m}; interpret_word $r; NL; last SWITCH; }; # Special handling of some LaTeX macros without an argument /\\SP\s*/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; if ($first_word) { PrintM $Macro->{"SPfirst"}; } else { PrintM $Macro->{"SP"}; } interpret_word $r; $add_blank = 0; last SWITCH; }; /\\(MANbr|TEXIbr|HTMLbr)\s*/ && do {$s=$`;$m=$1;$r=$'; #' # set $first_word to true check_Macro $m; interpret_word $s; PrintM $Macro->{$m}; $first_word = 1; interpret_word $r; $add_blank = 0; last SWITCH; }; # LaTeX macros without an argument: /\\([a-zA-Z]+)\s*/ && do {$s=$`;$m=$1;$r=$'; #' check_Macro $m; interpret_word $s; PrintM $Macro->{$m}; interpret_word $r; $add_blank = 0; last SWITCH; }; /\\([{]|}|\$|_|#|&|-|%|,|\.|;)/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; PrintM $Macro->{$m}; interpret_word $r; last SWITCH; }; # LaTeX Math /\$(<|>|<=|>=|=|<>)\$/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; PrintM $Macro->{$m}; interpret_word $r; last SWITCH; }; /\$([^\$]*)\$/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; interpret_word $m; interpret_word $r; last SWITCH; }; /&/ && do {$s=$`;$r=$'; #' interpret_word $s; &{$Prefix . "TableSep"}; $first_column = 0; interpret_word $r; last SWITCH; }; /~/ && do {$s=$`;$r=$'; #' interpret_word $s; PrintM $Macro->{'~'}; interpret_word $r; last SWITCH; }; /\\\\/ && do {$s=$`;$r=$'; #' interpret_word $s; if ($inside_table) { PrintM $Macro->{'\\Tab'}; $first_column = 1; if (length ($r) > 0) { interpret_word $r; } } else { PrintM $Macro->{'\\'}; $first_word = 1; interpret_word $r; } $add_blank = 0; last SWITCH; }; /\\$|\\ / && do {$s=$`;$r=$'; #' # LaTeX explicit blank \ will be # represented as a single \ at # the end of the word interpret_word $s; Print " "; interpret_word $r; last SWITCH; }; /\\/ && do {$s=$`;$r=$'; #' interpret_word $s; interpret_word "\\$r"; last SWITCH; }; ($opt_M == 1) && /((^\.|')+)/ && do {$s=$`;$m=$1;$r=$'; #' interpret_word $s; print DEST "\\&$m"; $newline = 0; interpret_word $r; last SWITCH; }; Print "$_"; }; $nesting --; Print " " if ($nesting == 0 && $add_blank); } # interpret_word() sub interpret_line { my $line = $_[0]; chomp $line; my @words = split(/\s+/,$line); my $max = $#words; my $i; my $join = 0; # true, if words must be joined my $word = ""; # the joined word my $kind = 0; # 1: item[ .. ], 2: { .. }, 3: \verb+ .. + if ($max < 0) { # empty line marks a paragraph &{$Prefix . "Paragraph"}; $first_word = 1; return; } for ($i = 0; $i <= $max; $i++) { $_ = $words[$i]; # printf "\`$words[$i]'"; if (/^[\s]*$/) { # skip leading blanks # nothing } elsif ((!$join || ($kind != 3)) && /^%+/) { # skip comments last; } else { # if blanks in a { .. }, \item[ .. ], \verb+ .. + then we have to joind words if ($join) { # check whether this is the last word to be joined if ($kind == 1) { # item $join = index ($_, "]") == -1; } elsif ($kind == 2) { # braces my @x = $_ =~ /[^\\]}/g; $join = $#x == -1; } elsif ($kind == 3) { # verb $join = index ($_, "+") == -1; } $word .= " " . $words[$i]; if (!$join) { interpret_word $word; $word = ""; } } else { # check whether we have to join some words if (/\\item/) { my $cnt1 = tr/[/[/; my $cnt2 = tr/]/]/; $join = $cnt1 != $cnt2 || $cnt1 == 0; $kind = 1; } elsif (/\\verb/) { my $cnt = tr/+/+/; $join = $cnt % 2 != 0; $kind = 3; } else { my @x = $_ =~ /[^\\]\{/g; my @y = $_ =~ /[^\\]\}/g; $join = $#x != $#y; $kind = 2; } if ($join) { $word = $words[$i]; } else { interpret_word $words[$i]; } } } } if ($join) { interpret_word $word; } NL; } # interpret_line() sub PrintM # print only for Macro command text { if (@_ <= 0 || length ($_[0]) == 0) { return; } my $l = shift; my $c; $l =~ s/\\n/\n/g; foreach $c (split ("", $l)) { if ($c eq "\n") { NL; $newline = 0; } else { print DEST "$c"; } } } # PrintM() sub Print { # printf "\`$_[0]'\n"; if (@_ <= 0 || length ($_[0]) == 0) { return; } my $x = $_[0]; unless ($x =~ /^\s*$/) { # if other chars than blanks are printed: $first_word = 0; } if (!$inside_verb) { # transform special characters $x =~ s/([])/$LetterCode->{"$1"}/go; } my @parts = split /\\n/, $x, -1; # -1: trailing \n generates an empty list element my $i; for ($i = 0; $i <= $#parts; $i++) { if ($newline) { # skip leading blanks after a newline $parts[$i] =~ s/^\s+//; } if (length($parts[$i]) > 0) { if ($opt_M) { $parts[$i] =~ s/\\/\\\\/g; $parts[$i] =~ s/-/\\-/g; } printf DEST "%s", $parts[$i]; $newline = 0; } if ($i < $#parts) { NL; } } $paragraph = 0; } # Print() ######################################################################### sub date2str { @EnglishMonthName = ('','January','February','March','April','May','June','July', 'August','September','October','November','December'); # split date my ($Year,$Month,$Day) = split (/\//,$_[0]); return $Day . " " . $EnglishMonthName[$Month] . " " . $Year; } $rcs_date=`date '+%Y/%m/%d/'`; # date of the man-page, overwritten # by \rcsInfo $date = date2str ($rcs_date); $Macro->{'today'} = $date; ######################################################################### my @skip; # stack of skip-flags, 1: skip, 0: don't skip push @skip, 0; # synthetic "outer most" IF, don't skip my $last_cond_clause = ""; sub handle_conditional_text { $_ = $_[0]; # printf "skip-stack: %s;\t top = %s\n", join (", ", @skip), $skip[-1]; if (/^\s*%@%\s+IF\s+([^%]*)\s+%@%\s*$/) { # produce a program, which evaluates the condition: my $prog_cond = $1; $prog_cond =~ s/(\w+)/\$$1/g; my $prog = ""; my $var; foreach $var (keys %cond_name) { if ($var ne "") { $prog .= "my \$$var = 1; " # declare set names, # undeclared ones get value 0 } } $prog .= "return ($prog_cond) ? 0 : 1;"; # print "\n**** [$prog]\n"; my $skip = eval $prog; ($@ eq "") || die "$CMD: error in line $.: wrong condition of `%@% IF.. ($@)\n"; # print "**** skip=$skip\n"; $last_cond_clause = "IF"; if ($skip[-1] == 1) { # skip this text, since outer IF skips push @skip, 1; } else { # outer IF is not skipped, hence consider this IF push @skip, $skip; } } elsif (/^\s*%@%\s+ELSE\s+%@%\s*$/) { ($last_cond_clause =~ /IF/ && ($#skip > 0)) || die "$CMD: error in line $.: `%@% ELSE %@%' without an `%@% IF..'\n"; $last_cond_clause = "ELSE"; if ($skip[-2] == 0) { $skip[-1] = $skip[-1]? 0 : 1; } } elsif (/^\s*%@%\s+END-IF\s+%@%\s*$/) { $last_cond_clause = "END-IF"; ($#skip == 0) && die "$CMD: error in line $.: `%@% END-IF %@%' without an `%@% IF..'\n"; pop @skip; } # print "$last_cond_clause: skip = $skip[-1]\n"; } # handle_conditional_text() ############################################################################ # handle LaTeX output ######################################################################### sub emit_LaTeX { my $src = shift(@_); # the source handle to be read my $inside_include = shift(@_); # true, if we reading an \input{..} while (<$src>) { if ($opt_D == 1) { my $line = $_; chop $line; print "--- \`$line'\n"; } if (/^\s*\\input\{([^}]*)\}\s*/) { # handle \input{fn} my $fn = $1; printf DEST "%%%%%%%%%%%%%%%%%% start of \\input{%s}\n", $fn; open (my $inc, "<$fn") || die "$CMD: Can't open file \\input-file \`$fn' for reading.\n"; emit_LaTeX($inc, 1); close ($inc); printf DEST "%%%%%%%%%%%%%%%%%% end of \\input{%s}\n", $fn; next; } if (/^\s*%@%\s/) { my $skip = $skip[-1]; handle_conditional_text ("$_"); # write %@% directive print DEST $_; next; } next if ($skip[-1] == 1); print DEST $_; } } # emit_LaTeX() ############################################################################ # handle non-LaTeX output ############################################################################ sub emit_NonLaTeX # read sections # Variables: $section name of the section in uppercase letters # $chapter chapter of the man page # $name name of the man page # $Name name of the man page in uppercase # $author author of the man page # $tool info about the tool set, $name is part of # $date date # $version version info { my $src = shift(@_); # the source handle to be read my $inside_include = shift(@_); # true, if we reading an \input{..} if ($inside_include) { $started = shift(@_); # given, only if inside_include is true } else { $started = 0; } while (<$src>) { if ($opt_D == 1) { my $line = $_; chop $line; print "--- \`$line'\n"; } if (/^\s*\\input\{([^}]*)\}\s*/) { # handle \input{fn} my $fn = $1; if ($opt_M) { printf DEST ".\\\" *********************************** start of \\input{%s}\n", $fn; } elsif ($opt_H) { printf DEST "\n", $fn; } elsif ($opt_T) { printf DEST "\@c *********************************** start of \\input{%s}\n", $fn; } open (my $inc, "<$fn") || die "$CMD: Can't open file \\input-file \`$fn' for reading.\n"; emit_NonLaTeX($inc, 1, $started); close ($inc); if ($opt_M) { printf DEST ".\\\" *********************************** end of \\input{%s}\n", $fn; } elsif ($opt_H) { printf DEST "\n", $fn; } elsif ($opt_T) { printf DEST "\@c *********************************** end of \\input{%s}\n", $fn; } next; } if ((/^\s*%@%\s/) && ($inside_verb==0)) { my $skip = $skip[-1]; handle_conditional_text ("$_"); } next if ($skip[-1] == 1); if ($inside_verb) { if (/^\s*\\end\{verbatim\}/) { if ($started == 1) { &{$Prefix . "VerbatimEnd"}; $inside_verb = 0; } } else { &{$Prefix . "VerbatimLine"} ($_); } next; } # remove {, } around Umlaute s/\{(\\".)\}/$1/g; # " s/\{(\\ss)\}/$1/g; # normalize special characters s/\\"a//g; s/\\"o//g; s/\\"u//g; s/\\"A//g; s/\\"O//g; s/\\"U//g; s/\\ss//g; if (/^\s*\\rcsInfo \$(.*)\$/) { my ($rcs_id,$rcs_file,$rcs_revision, $rcs_date,$rcs_time,$rcs_owner,$rcs_status,$rcs_locker) = split(/\s/,$1); $date = date2str ($rcs_date); $Macro->{'today'} = $date; } elsif (/^\s*\\setDate\{\\rcsInfoLongDate\}/) { $Macro->{'Date'} = $date; } elsif (/^\s*\\setDate\{\\today\}/) { $Macro->{'Date'} = $date; } elsif (/^\s*\\setDate\{([^}]*)\}/) { $date = $1; $date =~ s/~/$Macro->{'~'}/g; $Macro->{'Date'} = $date; } elsif (/^\s*\\setVersion\{([^}]*)\}/) { $version = $1; $version =~ s/~/$Macro->{'~'}/g; $Macro->{'Version'} = $version; } elsif (/^\s*\\begin\{Name\}\{([^}]*)\}\{([^}]*)\}\{([^}]*)\}\{([^}]*)\}\{([^}]*)\}/) { $section = "Name"; $chapter = $1; $name = $2; $Name = uc $name; $author = $3; $tool = $4; $title = $5; $rest = $'; #' $started = 1; $sections[0] = $section; $section_cnt = 0; &{$Prefix . "Start"} ($name, $chapter, $author, $tool, $title); &{$Prefix . "NameStart"} ($name, $chapter, $author, $tool, $title); } elsif (/^\s*\\end\{Name\}/) { &{$Prefix . "NameEnd"} ($name, $chapter, $author, $tool); } elsif (/^\s*\\begin\{Table\}(\[([^]]*)\])?\{([^}]*)\}/) { # \begin{Table}[width]{columns} if ($started == 1) { $columns = $3; # $column = $_[0]; $inside_table = 1; $first_column = 1; &{$Prefix . "TableStart"} ($columns, $2); } } elsif (/^\s*\\end\{Table\}/) { if ($started == 1) { $inside_table = 0; $first_column = 0; &{$Prefix . "TableEnd"} ($columns); } } elsif (/^\s*\\begin\{Description\}(\[[^]]*\])?/) { if ($started == 1) { $list_nest++; $cur_list[$list_nest] = 'descr'; $item_nr[$list_nest] = 0; &{$Prefix . "DescriptionStart"}; } } elsif (/^\s*\\end\{Description\}/) { if ($started == 1) { &{$Prefix . "DescriptionEnd"}; $list_nest--; } } elsif (/^\s*\\begin\{description\}/) { if ($started == 1) { $list_nest++; $cur_list[$list_nest] = 'descr'; $item_nr[$list_nest] = 0; &{$Prefix . "DescriptionStart"}; } } elsif (/^\s*\\end\{description\}/) { if ($started == 1) { &{$Prefix . "DescriptionEnd"}; $list_nest--; } } elsif (/^\s*\\begin\{center\}/) { if ($started == 1) { &{$Prefix . "CenterStart"}; } } elsif (/^\s*\\end\{center\}/) { if ($started == 1) { &{$Prefix . "CenterEnd"}; } } elsif (/^\s*\\begin\{enumerate\}/) { if ($started == 1) { $list_nest++; $cur_list[$list_nest] = 'enum'; $item_nr[$list_nest] = 0; &{$Prefix . "EnumStart"} ; } } elsif (/^\s*\\end\{enumerate\}/) { if ($started == 1) { &{$Prefix . "EnumEnd"} ; $list_nest--; } } elsif (/^\s*\\begin\{itemize\}/) { if ($started == 1) { $list_nest++; $cur_list[$list_nest] = 'item'; $item_nr[$list_nest] = 0; &{$Prefix . "ItemStart"} ; } } elsif (/^\s*\\end\{itemize\}/) { if ($started == 1) { &{$Prefix . "ItemEnd"} ; $list_nest--; } } elsif (/^\s*\\begin\{verbatim\}/) { if ($started == 1) { &{$Prefix . "VerbatimStart"}; $inside_verb = 1; } } elsif (/^\s*\\(subsubsection|subsection|section)\{([^}]*)\}/) { $kind = $1; $section = $2; $section_cnt ++; $sections[$section_cnt] = $section; $section_kind[$section_cnt] = $kind; if ($started == 1) { &{$Prefix . "Section"} ($section_cnt, $kind, $section); } } elsif (/^\s*\\LatexManEnd/ || /^\s*\\end\{document\}/) { last; } elsif (/^\s*((\\begin\{Name|Table|Description\})|(\\(sub)?section))/) { die "$CMD: in line $.\n " . "Arguments of $1 are not contained in a single " . "line.\n " . "Remember: all arguments of a macro must be on the same line.\n"; } else { if ($started == 1) { interpret_line $_; } } } if (!$inside_include) { &{$Prefix . "End"}; } } # emit_NonLaTeX() ############################################################################ # Postprocessing TEXI and HTML ############################################################################ sub postProcessNonLaTeX { open (TMP, "<$tmp") || die "$CMD: Can't open file \`$tmp' for reading.\n"; while () { if (/^\@\@INSERTION-POINT\@\@-TOC\@\@$/) { if ($opt_H) { # Table of contents for HTML my $nesting = 0; # nesting of section/subsection/subsubsection Print '\n

    Table of Contents

    \n'; for ($i = 1; $i <= $section_cnt; $i++) { my $cur_nesting = 0; if ($section_kind[$i] eq "subsubsection") { $cur_nesting = 3; } elsif ($section_kind[$i] eq "subsection") { $cur_nesting = 2; } elsif ($section_kind[$i] eq "section") { $cur_nesting = 1; } if ($cur_nesting > $nesting) { # open a new list Print '\n
      \n' } if ($cur_nesting == $nesting) { # same level, close list item Print '\n'; } if ($cur_nesting < $nesting) { # close list and list item for my $i ($cur_nesting .. $nesting-1) { Print '\n'; Print '
    \n'; } } # print item Print "
  • "; interpret_word $sections[$i]; Print ""; $nesting = $cur_nesting; } # close remaining lists for my $i (1 .. $nesting) { Print '
  • \n'; Print '\n'; } } else { # Menu of sections for texi Print '@menu\n'; for ($i = 2; $i <= $section_cnt; $i++) { interpret_line "* " . $sections[$i] . "::"; } Print '@end menu\n'; } } elsif (/\@\@INSERTION-POINT\@\@-TEXI-TOP\@\@/) { # Texi-top node Print '@node Top, ' . $sections[2] . ', (dir), (dir)\n'; } elsif (/\@\@INSERTION-POINT\@\@-TEXI-SEC\@\@ (\w+) (\d+)/) { # print section header for texi $kind = $1; $cnt = $2; $section = $sections[$cnt]; Print '@node ' ; interpret_word "$sections[$cnt], "; interpret_word "$sections[$cnt+1], "; interpret_word "$sections[$cnt-1], Top "; NL; } else { print DEST $_; } } close TMP; unlink $tmp; } # postPrecessNonLaTeX() ######################################################################### # Do the job ######################################################################### if ($opt_t) { # reading of translations for user macros do $opt_t; } ######################################################################## open (my $SRC, "<$SrcFile") || die "$CMD: Can't open file \`$SrcFile' for reading.\n"; if ($opt_H || $opt_T) { # DestFile will be written in the postprocess open (DEST, ">$tmp") || die "$CMD: Can't open file \`$tmp' for writing.\n"; } else { open (DEST, ">$DestFile") || die "$CMD: Can't open file \`$DestFile' for writing.\n"; } if ($opt_L) { # handle LaTeX output emit_LaTeX ($SRC); close ($SRC); close (DEST); } else { # handle non-LaTeX emit_NonLaTeX ($SRC); close ($SRC); close (DEST); if ($opt_H || $opt_T) { open (DEST, ">$DestFile") || die "$CMD: Can't open file \`$DestFile' for writing.\n"; postProcessNonLaTeX(); close (DEST); } } ############################################################################ ######################################################################### ## Emacs specific: ## Local Variables: *** ## mode: perl *** ## End: *** orex-supercell-96532aa/scripts/latex_compile.sh000077500000000000000000000002721465364771700217170ustar00rootroot00000000000000#!/bin/sh pdflatex -interaction=nonstopmode -shell-escape $1 bibtex $1 pdflatex -interaction=nonstopmode -shell-escape $1 pdflatex -interaction=nonstopmode -shell-escape $1 exit $? orex-supercell-96532aa/snap/000077500000000000000000000000001465364771700160045ustar00rootroot00000000000000orex-supercell-96532aa/snap/snapcraft.yaml000066400000000000000000000030701465364771700206510ustar00rootroot00000000000000name: supercell version: "2.1.0" license: GPL-2.0-only issues: https://github.com/orex/supercell/issues contact: kirill.okhotnikov@gmail.com website: https://orex.github.io/ source-code: https://github.com/orex/supercell summary: Disordered crystal structures transformation software. description: | A a combinatorial structure-generation approach for the local-level modeling of atomic substitutions and partial occupancies in crystals. It uses supercell approximation and enumeration algorithm to convert structures with vacancies and/or substitution to "binary" occupied. The program mostly uses to prepare DFT calculations of battery matrials, semiconductors etc. base: core22 grade: stable confinement: strict type: app architectures: - build-on: amd64 build-for: amd64 - build-on: arm64 build-for: arm64 parts: supercell: plugin: cmake cmake-parameters: - '-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=' source-type: local source: . build-packages: - build-essential - cmake - libarchive-dev - libboost-program-options1.74-dev - libboost-filesystem1.74-dev - libboost-test1.74-dev - libboost-system1.74-dev - libtbb-dev - libeigen3-dev - liblzma-dev - libbz2-dev - zlib1g-dev stage-packages: - libarchive13 - libtbb12 - libboost-program-options1.74.0 - libboost-filesystem1.74.0 - libboost-system1.74.0 - liblzma5 - zlib1g apps: supercell: command: bin/supercell plugs: [home, removable-media] orex-supercell-96532aa/src/000077500000000000000000000000001465364771700156325ustar00rootroot00000000000000orex-supercell-96532aa/src/CMakeLists.txt000066400000000000000000000011371465364771700203740ustar00rootroot00000000000000#set common includes set(sc_includes ${CMAKE_CURRENT_SOURCE_DIR}/core ${CMAKE_SOURCE_DIR}/libs/common_utils/ ${CMAKE_SOURCE_DIR}/3rd_party/gemmi/include ${CMAKE_SOURCE_DIR}/3rd_party/xxHash) #set common sources file(GLOB core_sources ${CMAKE_CURRENT_SOURCE_DIR}/core/*.cpp) set(sc_sources ${core_sources} ${CMAKE_SOURCE_DIR}/libs/common_utils/others/string_utils.cpp ${CMAKE_SOURCE_DIR}/libs/common_utils/cryst_tools/cryst_tools.cpp ${CMAKE_SOURCE_DIR}/libs/common_utils/cryst_tools/comb_points.cpp) add_subdirectory(sc_cli) add_subdirectory(tests) orex-supercell-96532aa/src/core/000077500000000000000000000000001465364771700165625ustar00rootroot00000000000000orex-supercell-96532aa/src/core/cif_io.cpp000066400000000000000000000242261465364771700205240ustar00rootroot00000000000000// // Created by kirill on 5/12/21. // #include "cif_io.h" #include #include #include #include #include #include #include #include #include #include cif_output::cif_output(std::ostream &output_stream, const cryst_structure_t &cs_struct, const std::string &title, const std::vector> &charges) : cs(cs_struct), so(output_stream) { auto l = cs.unit_cell.lengths(); auto a = cs.unit_cell.angles_deg(); so << "# CIF file generated by supercell program. See https://orex.github.io/supercell" << std::endl << "# " << title << std::endl << "data_" << cs_struct.block_name << std::endl << "_chemical_name_common '" << cs_struct.chem_name << "'" << std::endl << "_cell_length_a " << l.x() << std::endl << "_cell_length_b " << l.y() << std::endl << "_cell_length_c " << l.z() << std::endl << "_cell_angle_alpha " << a.x() << std::endl << "_cell_angle_beta " << a.y() << std::endl << "_cell_angle_gamma " << a.z() << std::endl << "_space_group_IT_number 1" << std::endl << "_space_group_name_H-M_alt 'P 1'" << std::endl << "_space_group_name_Hall 'P 1'" << std::endl << "loop_" << std::endl << " _space_group_symop_operation_xyz" << std::endl << " x,y,z" << std::endl; if( !charges.empty()) { char buffer[64]; so << "loop_ " << std::endl << " _atom_type_symbol" << std::endl << " _atom_type_oxidation_number" << std::endl; for(const auto &p : charges) { snprintf(buffer, sizeof(buffer), " %-8s%+.3g\n", p.first.c_str(), p.second); so << buffer; } } so << "loop_" << std::endl << " _atom_site_label" << std::endl << " _atom_site_type_symbol" << std::endl << " _atom_site_fract_x" << std::endl << " _atom_site_fract_y" << std::endl << " _atom_site_fract_z" << std::endl << " _atom_site_occupancy" << std::endl; } void cif_output::add_atom(int el_num, const std::string &label, const Eigen::Vector3d &pos, double occupancy) { char buffer[256]; Eigen::Vector3d v = cs.unit_cell.cell().inverse() * pos; for(int i = 0; i < v.size(); i++) { const double prec = 1e-6; v[i] = std::fmod(v[i], 1.0); if( v[i] < -0.0 ) v[i] += 1.0; if( v[i] + prec >= 1.0 ) v[i] -= 1.0; if( std::abs(v[i]) < prec ) v[i] = 0.0; } int spnr = snprintf(buffer, sizeof(buffer), " %-8s%-5s%.5f%10.5f%10.5f%8.3f\n", label.c_str(), gemmi::Element(el_num).name(), v.x(), v.y(), v.z(), occupancy); if( spnr > 0 || spnr < sizeof(buffer) ) { so << buffer; } else { so << "ERROR data write!!!"; } } static Eigen::Vector3d norm_frac(const Eigen::Vector3d &d) { return Eigen::Vector3d(d.x() - round(d.x()), d.y() - round(d.y()), d.z() - round(d.z())); } static bool verify_sg_uc_compatibility(const gemmi::SpaceGroup * sg, const gemmi::UnitCell &uc) { const gemmi::Mat33 & c_d = uc.orth.mat; const gemmi::Mat33 & c_i = uc.frac.mat; for( const auto &op : sg->operations() ) { double mult = 1.0 / op.DEN; gemmi::Mat33 mf( mult * op.rot[0][0], mult * op.rot[0][1], mult * op.rot[0][2], mult * op.rot[1][0], mult * op.rot[1][1], mult * op.rot[1][2], mult * op.rot[2][0], mult * op.rot[2][1], mult * op.rot[2][2] ); gemmi::Mat33 mt = c_d.multiply(mf).multiply(c_i); if( !mt.transpose().approx(mt.inverse(), 1e-3) ) return false; } return true; } const gemmi::SpaceGroup * resolve_sg_by_uc(const gemmi::SpaceGroup * sg, const gemmi::UnitCell &uc) { if( sg == nullptr ) return nullptr; if( verify_sg_uc_compatibility(sg, uc) ) return sg; for (const auto& st : gemmi::spacegroup_tables::main) { if( st.number != sg->number ) continue; if( verify_sg_uc_compatibility(&st, uc) ) return &st; } return nullptr; } static bool read_cif_file_gemmi(const std::string &file_name, cryst_structure_t& result, std::string &msg) { msg.clear(); using namespace gemmi; using cif::as_number; using cif::as_string; auto doc = cif::read_file(file_name); cif::Block& block = doc.sole_block(); result.block_name = block.name; { cif::Table cm_name = block.find({"_chemical_name_common"}); if( cm_name.ok() ) result.chem_name = as_string(cm_name.one()[0]); } // unit cell and symmetry gemmi::UnitCell uc_supercell; { cif::Table cell = block.find("_cell_", {"length_a", "length_b", "length_c", "angle_alpha", "angle_beta", "angle_gamma"}); if (cell.ok()) { auto c = cell.one(); if (!cif::is_null(c[0]) && !cif::is_null(c[1]) && !cif::is_null(c[2])) { uc_supercell.set(as_number(c[0]), as_number(c[1]), as_number(c[2]), as_number(c[3]), as_number(c[4]), as_number(c[5])); } else { msg += "ERROR: Some of cell values are wrong"; return false; } } } std::vector ops; /*for (const auto &t : {"_space_group_symop_operation_xyz", "_symmetry_equiv_pos_as_xyz"}) { cif::Table op_table = block.find("", {t}); if (op_table.ok()) { for (auto row : op_table) { ops.emplace_back(gemmi::parse_triplet(as_string(row[0]))); } break; } }*/ const gemmi::SpaceGroup * sg = nullptr; { for (const char *tag : {"_space_group_name_H-M_alt", "_symmetry_space_group_name_H-M", "_space_group_IT_number"}) { if (const std::string *val = block.find_value(tag)) { sg = gemmi::find_spacegroup_by_name(as_string(*val), uc_supercell.alpha, uc_supercell.gamma); if (sg == nullptr) { msg += "ERROR: Group name '" + as_string(*val) + "' in '" + tag + "' is wrong\n"; return false; } else break; } } if( sg == nullptr ) { msg += "ERROR: H-M tags is not found.\n"; return false; } sg = resolve_sg_by_uc(sg, uc_supercell); if( sg == nullptr ) { msg += "ERROR: Spacegroup is not consistence with unitcell.\n"; return false; } if (const std::string *val = block.find_value("_space_group_IT_number") ) { if( as_number(*val) != sg->number ) { msg += "WARNING: Space group number (" + as_string(*val) + ") is different from H-M (" + std::to_string(sg->number) + ").\n"; } } if (const std::string *val = block.find_value("_space_group_name_Hall") ) { if( as_string(*val) != sg->hall ) { msg += "WARNING: Space group Hall name (" + as_string(*val) + ") is different from H-M (" + sg->hall + ").\n"; } } } if( !ops.empty() ) { msg += "INFO: Using direct symmetries.\n"; } else { msg += "INFO: Using symmetries from space group.\n"; for(const auto &x : sg->operations()) ops.emplace_back(x); } Eigen::Matrix3d eg_s; const auto &m = uc_supercell.orth.mat; eg_s << m.a[0][0], m.a[0][1], m.a[0][2], m.a[1][0], m.a[1][1], m.a[1][2], m.a[2][0], m.a[2][1], m.a[2][2]; result.unit_cell.set(eg_s); enum { kTypeName, kChargeValue }; cif::Table charge_table = block.find("_atom_type_", {"symbol", "oxidation_number"}); std::map m_charges; for (auto row : charge_table) { m_charges[as_string(row[kTypeName])] = as_number(row[kChargeValue]); } enum { kLabel, kSymbol, kX, kY, kZ, kSymmMult, kOcc }; cif::Table atom_table = block.find("_atom_site_", {"label", "?type_symbol", "fract_x", "fract_y", "fract_z", "?symmetry_multiplicity", "?occupancy"}); result.atoms.clear(); for (auto row : atom_table) { atom_t site; site.label = as_string(row[kLabel]); std::string type_symbol = row.has(kSymbol) ? as_string(row[kSymbol]) : site.label; site.fract_pos = Eigen::Vector3d(as_number(row[kX]), as_number(row[kY]), as_number(row[kZ])); site.occupancy = row.has(kOcc) ? as_number(row[kOcc], 1.0) : 1.0; struct { Element element = El::X; signed char charge = 0; } spl_out; split_element_and_charge(type_symbol, &spl_out); site.el_num = spl_out.element.atomic_number(); site.charge = spl_out.charge; for(const auto &n : {type_symbol, site.label}) { auto it = m_charges.find(n); if( it != m_charges.end() ) site.charge = it->second; } std::vector smx; for (const auto& op : ops) { double mult = 1.0 / op.DEN; Eigen::Matrix3d rot; rot << mult * op.rot[0][0], mult * op.rot[0][1], mult * op.rot[0][2], mult * op.rot[1][0], mult * op.rot[1][1], mult * op.rot[1][2], mult * op.rot[2][0], mult * op.rot[2][1], mult * op.rot[2][2]; Eigen::Vector3d tran(mult * op.tran[0], mult * op.tran[1], mult * op.tran[2]); Eigen::Vector3d np = rot * site.fract_pos + tran; bool dup = false; for(int i = 0; i < smx.size() && !dup; i++) { dup = dup || norm_frac( smx[i] - np).norm() < 1E-3; } if( !dup ) { smx.push_back(np); } } if (row.has(kSymmMult) && as_number(row[kSymmMult]) != smx.size() ) { msg += "WARNING: Site '" + site.label + "' has unexpected '_atom_site_symmetry_multiplicity' \n"; msg += " CIF: " + as_string(row[kSymmMult]) + " and actual: " + std::to_string(smx.size()) + "\n"; } for(const auto &a : smx) { result.atoms.emplace_back(site); result.atoms.back().fract_pos = a; } } return true; } bool read_cif_file(const std::string &file_name, cryst_structure_t& result, std::string &msg) { return read_cif_file_gemmi(file_name, result, msg); } orex-supercell-96532aa/src/core/cif_io.h000066400000000000000000000013271465364771700201660ustar00rootroot00000000000000// // Created by kirill on 5/12/21. // #ifndef SUPERCELL_SRC_CORE_CIF_IO_H_ #define SUPERCELL_SRC_CORE_CIF_IO_H_ #include #include #include #include #include "common_types.h" class cif_output { private: cryst_structure_t cs; std::ostream &so; public: cif_output(std::ostream &output_stream, const cryst_structure_t &cs_struct, const std::string &title, const std::vector> &charges); void add_atom(int el_num, const std::string &label, const Eigen::Vector3d &pos, double occupancy); }; bool read_cif_file(const std::string &file_name, cryst_structure_t& result, std::string &msg); #endif //SUPERCELL_SRC_CORE_CIF_IO_H_ orex-supercell-96532aa/src/core/common_types.cpp000066400000000000000000000041721465364771700220060ustar00rootroot00000000000000/* * File: common_types.cpp * Author: kirill * * Created on July 29, 2013, 9:56 AM */ #include "common_types.h" #include constexpr charge_balance cb_names::__cbt[__psize]; constexpr const char * cb_names::__cbn[__psize]; template std::random_device::result_type new_seed(std::random_device::result_type seed, int seed_num) { std::random_device::result_type result = seed; R gen(seed); std::uniform_int_distribution u(std::random_device::min(), std::random_device::max()); for(int i = 0; i < seed_num; i++) { result = u(gen); } return result; } void rnd_indexer_t::set_properties(int random_count, int64_t total_comb, int symm_op) { this->random_count = random_count; this->total_comb = total_comb; if( random_count == 0) { method = sampling_method_t::DISABLED; return; } total_samples = 4 * symm_op * (random_count + 1000); if( (total_comb < 20000) || (2 * total_samples > total_comb) ) { method = sampling_method_t::ALL; return; } method = sampling_method_t::BY_INDEXES; base_index = 0; index_step = 2 * total_comb / symm_op + 1; create_indexes(); } void rnd_indexer_t::create_indexes() { rnd_engine_t rnd(initial_seed); std::uniform_int_distribution ds(0, total_comb - 1); for(int64_t i = 0; i < total_samples; i++) { int64_t x = ds(rnd); if (x >= base_index && x < base_index + index_step) { indexes.push_back(x); } } std::sort(indexes.begin(), indexes.end()); indexes.erase(std::unique(indexes.begin(), indexes.end()), indexes.end()); } void rnd_indexer_t::postprocess_rnd_container(std::vector &rnd_container) { if( rnd_container.size() <= random_count ) return; rnd_engine_t rnd(new_seed(initial_seed, 1)); std::shuffle(rnd_container.begin(), rnd_container.end(), rnd); rnd_container.resize(random_count); std::sort(rnd_container.begin(), rnd_container.end(), [](const struct_info_index_t a, const struct_info_index_t b) -> bool { return a.index < b.index; }); } orex-supercell-96532aa/src/core/common_types.h000066400000000000000000000143661465364771700214610ustar00rootroot00000000000000/* * File: common_types.h * Author: kirill * * Created on July 29, 2013, 9:56 AM */ #ifndef COMMON_TYPES_H #define COMMON_TYPES_H #include #include #include #include #include #include #include #include #include #include #include enum class charge_balance {cb_no, cb_yes, cb_try}; class cb_names { private: static constexpr std::size_t __psize = 3; static constexpr charge_balance __cbt[__psize] = {charge_balance::cb_no, charge_balance::cb_yes, charge_balance::cb_try}; static constexpr const char * __cbn[__psize] = {"no", "yes", "try"}; public: static std::string get_name(const charge_balance cb) { for(int i = 0; i < __psize; i++) { if( cb == __cbt[i] ) { return __cbn[i]; } } return ""; } static bool get_cb(const std::string &str, charge_balance &cb) { for(int i = 0; i < __psize; i++) { if( str == __cbn[i] ) { cb = __cbt[i]; return true; } } return false; } }; class c_man_atom_prop_item { public: boost::optional charge; boost::optional fixed; boost::optional population; inline void assign(const c_man_atom_prop_item &orig) { if( orig.charge.is_initialized() ) charge = orig.charge; if( orig.fixed.is_initialized() ) fixed = orig.fixed; if( orig.population.is_initialized() ) population = orig.population; }; }; class c_man_atom_prop { public: typedef std::map data_type; protected: data_type data_map; public: const data_type &data() { return data_map; }; c_man_atom_prop_item operator[](const std::string &lbl) { return data_map[lbl]; }; bool exist(const std::string &lbl) { return data_map.count(lbl) != 0; }; virtual void convert_properties(const std::set &labels) = 0; }; class c_struct_sel { private: typedef std::array sel_prop; sel_prop sp; bool empty; inline int str_count(char c) const { return sp[c - 'a']; }; public: c_struct_sel() : sp(), empty(true) { std::fill(sp.begin(), sp.end(), 0); } inline void set_sampling(char c, int count ) { if( c >= 'a' && c <= 'z' && count > 0 ) { sp[c - 'a'] = count; empty = false; } }; inline bool save_all() const { return empty; }; inline int str_first_count() const { return str_count('f'); }; inline int str_last_count() const { return str_count('a'); }; inline int str_low_count() const { return str_count('l'); }; inline int str_high_count() const { return str_count('h'); }; inline int str_random_count() const { return str_count('r'); }; inline int str_weight_limit() const { return str_count('w'); }; void assign_base(const c_struct_sel &orig) { empty = orig.empty; sp = orig.sp; }; }; typedef std::uint32_t base_prm_t; typedef std::vector> t_vec_comb; struct struct_info_t { t_vec_comb cmb; double energy; //weight should be equal 0 for non-merge run. int weight; struct_info_t(): energy(0), weight(0) {}; }; struct struct_info_index_t : public struct_info_t { int64_t index; struct_info_index_t(): struct_info_t(), index(0) {}; struct_info_index_t(const struct_info_t &base_info, int64_t index_v): struct_info_t(base_info), index(index_v) {}; }; class unit_cell_t { private: Eigen::Matrix3d _cell; inline static double v_ang(const Eigen::Vector3d &v1, const Eigen::Vector3d &v2) { return abs(std::atan2(v1.cross(v2).norm(), v1.dot(v2))) * 180.0 / M_PI; } public: unit_cell_t() = default; explicit unit_cell_t(const Eigen::Matrix3d &cell) : _cell(cell) {}; void set(const Eigen::Matrix3d &cell) { _cell = cell; }; Eigen::Vector3d lengths() const { return Eigen::Vector3d(_cell.col(0).norm(), _cell.col(1).norm(), _cell.col(2).norm()); } Eigen::Vector3d angles_deg() const { return Eigen::Vector3d(v_ang(_cell.col(1), _cell.col(2)), v_ang(_cell.col(0), _cell.col(2)), v_ang(_cell.col(0), _cell.col(1))); } const Eigen::Matrix3d & cell() const { return _cell; } }; class rnd_indexer_t { public: enum class sampling_method_t { DISABLED, BY_INDEXES, ALL }; private: typedef std::mt19937_64 rnd_engine_t; static_assert(rnd_engine_t::min() == 0 && rnd_engine_t::max() == std::numeric_limits::max(), "Random engine error"); private: sampling_method_t method; std::random_device::result_type initial_seed; int random_count; int64_t total_comb; int64_t total_samples; int64_t base_index; int64_t index_step; std::deque indexes; void create_indexes(); public: rnd_indexer_t(std::random_device::result_type seed): initial_seed(seed) {}; void set_properties(int random_count, int64_t total_comb, int symm_op); inline sampling_method_t get_mode() const { return method; } inline void reserve_indexes(int64_t index) { while( method == sampling_method_t::BY_INDEXES && index >= base_index + index_step) { base_index += index_step; create_indexes(); } } inline int64_t get_current_index() const { return indexes.empty() ? total_comb : indexes.front(); } inline int64_t has_next_index() const { return !indexes.empty(); } inline void pop_index() { if(!indexes.empty()) indexes.pop_front(); } inline std::size_t reserve_size() { switch (method) { case sampling_method_t::DISABLED: return 0; case sampling_method_t::BY_INDEXES: return indexes.size(); case sampling_method_t::ALL: return total_comb; default: assert(false); // "Wrong sampling method" return 0; }; } void postprocess_rnd_container(std::vector &rnd_container); }; struct atom_t { int el_num; std::string label; Eigen::Vector3d fract_pos; double occupancy; double charge = std::nan(""); }; struct cryst_structure_t { std::string block_name; std::string chem_name; unit_cell_t unit_cell; std::vector atoms; }; #endif /* COMMON_TYPES_H */ orex-supercell-96532aa/src/core/d2o_main_class.cpp000066400000000000000000001573371465364771700221630ustar00rootroot00000000000000/* * File: d2o_main_class.cpp * Author: kirill * * Created on July 19, 2013, 2:25 PM */ #include "d2o_main_class.h" #include #include #include #include #include #include #include #include #include #include #include #include "science/combinatorics.h" #include "others/string_utils.h" #include "containers/array_common.hpp" #include "containers/hash_unique.h" #include "permut_process_t.h" #include "cryst_tools/comb_points.h" #include "cryst_tools/cryst_tools.h" #include #ifdef ONETBB_SPEC_VERSION using tbb_filter_mode = tbb::filter_mode; #else using tbb_filter_mode = tbb::filter; #endif #ifdef LIBARCHIVE_ENABLED #include #endif #define PT_GETSYMBOL(atomic_num) gemmi::Element(atomic_num).name() using namespace std; bool d2o_main_class::create_tar_container(const std::string &fname) { bool result = true; #ifdef LIBARCHIVE_ENABLED if( ! fname.empty() ) { tar_container = archive_write_new(); result = archive_write_set_format_filter_by_ext(tar_container, fname.c_str()) == ARCHIVE_OK; if( result ) result = archive_write_open_filename(tar_container, fname.c_str()) == ARCHIVE_OK; } else tar_container = nullptr; #endif return result; } bool d2o_main_class::add_file_to_tar(const std::string &fname, const std::stringstream &strm) { #ifdef LIBARCHIVE_ENABLED if( tar_container != nullptr ) { archive_entry *entry = archive_entry_new(); archive_entry_set_pathname(entry, fname.c_str()); archive_entry_set_size(entry, strm.str().size()); archive_entry_set_filetype(entry, AE_IFREG); archive_entry_set_perm(entry, 0644); archive_write_header(tar_container, entry); archive_write_data(tar_container, strm.str().c_str(), strm.str().size()); archive_entry_free(entry); } else { #endif std::ofstream out_file( fname.c_str() ); out_file << strm.rdbuf(); out_file.close(); #ifdef LIBARCHIVE_ENABLED } #endif return true; } bool d2o_main_class::tar_enabled() { #ifdef LIBARCHIVE_ENABLED return tar_container != nullptr; #else return false; #endif } bool d2o_main_class::close_tar_container() { #ifdef LIBARCHIVE_ENABLED if( tar_container != nullptr) { bool b1, b2; b1 = archive_write_close(tar_container) == ARCHIVE_OK; b2 = archive_write_free(tar_container) == ARCHIVE_OK; return b1 && b2; } else return true; #else return true; #endif } const std::string struct_processor::coulomb_energy_suffix = "_coulomb_energy"; std::string struct_processor::file_name(const std::int64_t index, const int weight, const std::string &sampl_type) const { stringstream result; result << prefix + "_i" + sampl_type << std::setfill('0') << std::setw(index_length) << std::internal << index; if(weight > 0 ) result << "_w" << weight; result << ".cif"; return result.str(); } void c_struct_sel_containers::add_electrostatic_high( const std::int64_t base_index, const permut_process_t *p) { auto cmp = [](const struct_info_index_t &a, const struct_info_index_t &b) -> bool { return b.energy < a.energy; }; if (high_container.size() < str_high_count()) { int i = 0; for (; i < p->ps_size && high_container.size() < str_high_count(); i++) { struct_info_index_t x(p->ps[i], base_index + i); high_container.emplace_back(x); std::push_heap(high_container.begin(), high_container.end(), cmp); } for (; i < p->ps_size; i++) { if (high_container.front().energy < p->ps[i].energy ) { struct_info_index_t x(p->ps[i], base_index + i); high_container.emplace_back(x); std::push_heap(high_container.begin(), high_container.end(), cmp); std::pop_heap(high_container.begin(), high_container.end(), cmp); high_container.pop_back(); } } } else if( high_container.front().energy < p->minmax_energy.second ) { for (int i = 0; i < p->ps_size; i++) { if (high_container.front().energy < p->ps[i].energy) { struct_info_index_t x(p->ps[i], base_index + i); high_container.emplace_back(x); std::push_heap(high_container.begin(), high_container.end(), cmp); std::pop_heap(high_container.begin(), high_container.end(), cmp); high_container.pop_back(); } } } } void c_struct_sel_containers::add_electrostatic_low( const std::int64_t base_index, const permut_process_t *p) { auto cmp = [](const struct_info_index_t &a, const struct_info_index_t &b) -> bool { return a.energy < b.energy; }; if (low_container.size() < str_low_count()) { int i = 0; for (; i < p->ps_size && low_container.size() < str_low_count(); i++) { struct_info_index_t x(p->ps[i], base_index + i); low_container.emplace_back(x); std::push_heap(low_container.begin(), low_container.end(), cmp); } for (; i < p->ps_size; i++) { if (low_container.front().energy > p->ps[i].energy ) { struct_info_index_t x(p->ps[i], base_index + i); low_container.emplace_back(x); std::push_heap(low_container.begin(), low_container.end(), cmp); std::pop_heap(low_container.begin(), low_container.end(), cmp); low_container.pop_back(); } } } else if( low_container.front().energy > p->minmax_energy.first ) { for (int i = 0; i < p->ps_size; i++) { if (low_container.front().energy > p->ps[i].energy ) { struct_info_index_t x(p->ps[i], base_index + i); low_container.emplace_back(x); std::push_heap(low_container.begin(), low_container.end(), cmp); std::pop_heap(low_container.begin(), low_container.end(), cmp); low_container.pop_back(); } } } } void c_struct_sel_containers::add_random(const std::int64_t base_index, const permut_process_t *p) { using sm = rnd_indexer_t::sampling_method_t; auto mode = rnd_indexer.get_mode(); if (p->ps_size == 0 || mode == sm::DISABLED) return; if( mode == sm::BY_INDEXES ) { rnd_indexer.reserve_indexes(base_index + p->ps_size); while(rnd_indexer.get_current_index() < base_index + p->ps_size) { int i = rnd_indexer.get_current_index() - base_index; struct_info_index_t x(p->ps[i], base_index + i); rnd_container.emplace_back(x); rnd_indexer.pop_index(); } } else if( mode == sm::ALL ) { for (int i = 0; i < p->ps_size; i++) { struct_info_index_t x(p->ps[i], base_index + i); rnd_container.emplace_back(x); } } } void c_struct_sel_containers::add_first_last( const std::int64_t base_index, const permut_process_t *p, const std::int64_t combinations_left) { // First for (int i = 0; first_container.size() < str_first_count() && i < p->ps_size; i++) { struct_info_index_t x(p->ps[i], base_index + i); first_container.emplace_back(x); } //Last: highly inefficient, but rarely used, so OK. if( str_last_count() > 0 ) { if( combinations_left < 2 * symm_op * (p->ps_size + str_last_count())) { for (int i = 0; i < p->ps_size; i++) { struct_info_index_t x(p->ps[i], base_index + i); last_container.push_back(x); } } } } void c_struct_sel_containers::add_weight(const std::int64_t base_index, const permut_process_t *p) { if( p->min_weight <= str_weight_limit() ) { for (int i = 0; i < p->ps_size; i++) { if( p->ps[i].weight <= str_weight_limit() ) { struct_info_index_t x(p->ps[i], base_index + i); weight_container.push_back(x); } } } } void c_struct_sel_containers::prepare_to_store() { rnd_indexer.postprocess_rnd_container(rnd_container); assert(str_first_count() >= first_container.size()); assert(str_last_count() >= last_container.size()); assert(str_high_count() >= high_container.size()); assert(str_low_count() >= low_container.size()); assert(str_random_count() >= rnd_container.size()); auto cmp = [](const struct_info_index_t &a, const struct_info_index_t &b) { return ( a.energy == b.energy ) ? (a.index < b.index) : (a.energy < b.energy); }; std::sort(low_container.begin(), low_container.end(), cmp); std::sort(high_container.begin(), high_container.end(), cmp); } void c_struct_sel_containers::set_containers_prop(int64_t total_comb_v, int symm_op_v) { total_comb = total_comb_v; symm_op = symm_op_v; rnd_indexer.set_properties(str_random_count(), total_comb_v, symm_op_v); rnd_container.clear(); first_container.clear(); last_container.clear(); high_container.clear(); low_container.clear(); weight_container.clear(); rnd_container.reserve(rnd_indexer.reserve_size()); first_container.reserve(str_first_count()); last_container.set_capacity(str_last_count()); high_container.reserve(str_high_count() + 1); low_container.reserve(str_low_count() + 1); } double c_occup_group::get_total_occup_input() const { double result = 0.0; for(std::vector::const_iterator it = items.begin(); it != items.end(); ++it) result += (*it).occup_target; return result; } int c_occup_group::get_total_num_occup_sites() const { int result = 0; for(std::vector::const_iterator it = items.begin(); it != items.end(); ++it) result += (*it).num_of_atoms_sc; return result; } int64_t c_occup_group::get_number_of_combinations() const { int64_t result = 1; if( !_fixed ) { std::map nm; int sum = 0; for(int i = 0; i < items.size(); i++) { nm[i] = items[i].num_of_atoms_sc; sum += items[i].num_of_atoms_sc; } if(sum <= number_of_sites()) { nm[-1] = number_of_sites() - sum; bool good = num_combinations(nm, result); if(!good) result = -1; } else result = 0; } return result; } std::string d2o_main_class::get_formula_by_groups() { map formula_map; for(int i = 0; i < occup_groups.size(); i++) { for(int j = 0; j < occup_groups[i].items.size(); j++) { const c_occup_item &ci = occup_groups[i].items[j]; string atom_symbol = PT_GETSYMBOL(ci.el_num); formula_map[atom_symbol] += ci.num_of_atoms_sc; } } string result; for(map::iterator it = formula_map.begin(); it != formula_map.end(); ++it) { boost::format fmter("%1%%2% "); fmter % it->first % it->second; result += fmter.str(); } trim(result); return result; } std::string d2o_main_class::get_formula(const cryst_structure_t &cs) { map formula_map; for(const auto &a : cs.atoms) { string atom_symbol = PT_GETSYMBOL(a.el_num); formula_map[atom_symbol] += a.occupancy; } string result; for(map::iterator it = formula_map.begin(); it != formula_map.end(); ++it) { boost::format fmter("%1%%2% "); fmter % it->first % it->second; result += fmter.str(); } trim(result); return result; } bool d2o_main_class::add_confs_to_mol(cif_output &co, const t_comb_descr &cd, const t_vec_comb &ppc) const { for (int i = 0; i < occup_groups.size(); i++) { const c_occup_group &curr_group = occup_groups[i]; int gpos = std::distance(cd.group_indexes.cbegin(), std::find(cd.group_indexes.cbegin(), cd.group_indexes.cend(), i)); bool fixed_group = gpos == cd.group_indexes.size(); assert( fixed_group || cd.prm_indexes[gpos + 1] - cd.prm_indexes[gpos] == curr_group.positions.size() ); int cinx = cd.prm_indexes[gpos]; for (int j = 0; j < curr_group.positions.size(); j++) { for (int k = 0; k < curr_group.items.size(); k++) { if (fixed_group || ppc[j + cinx] == k + 1 ) { double occup_value = fixed_group ? double(curr_group.items[k].num_of_atoms_sc) / double(curr_group.number_of_sites()) : 1.0; co.add_atom(curr_group.items[k].el_num, curr_group.items[k].label, curr_group.positions[j], occup_value); } } } } return true; } bool d2o_main_class::calculate_q_matrix() { using namespace Eigen; using namespace cryst_tools; vector all_pos; for(auto & occup_group : occup_groups) { for(int j = 0; j < occup_group.positions.size(); j++) all_pos.push_back(occup_group.positions[j]); } if(verbose_level >= 2) cout << "Start Coulomb matrix (" << all_pos.size() << "x" << all_pos.size() << ") calculation." << endl; ewald_sum es; es.set_cell(supercell_cst.unit_cell.cell()); es.set_precision(all_pos.size(), 1E-7); q_energy = es.potential_matrix(all_pos); if(verbose_level >= 2) cout << "Coulomb matrix calculation finished." << endl; return true; } bool d2o_main_class::create_symmetry_operations_groups() { using namespace cryst_tools; using namespace Eigen; Eigen::Matrix3d m_cell = supercell_cst.unit_cell.cell().inverse(); vc_sets vc; vc.reserve(occup_groups.size()); for(int i = 0; i < occup_groups.size(); i++) { if( !occup_groups[i].is_empty() ) { vc.emplace_back(); vc.back().resize(occup_groups[i].positions.size()); for (int j = 0; j < occup_groups[i].positions.size(); j++) { vc.back()[j] = m_cell * occup_groups[i].positions[j]; } } } vector bc(vc.size(), true); vector_Affine3d syms; syms = get_all_symmetries(supercell_cst.unit_cell.cell(), vc, bc, symm_tol()); if(verbose_level >= 1) cout << syms.size() << " symmetry operation found for supercell." << endl; bool good_set = true; for(int i = 0; i < occup_groups.size(); i++) { occup_groups[i].symms_sets.resize(syms.size()); for(int j = 0; j < syms.size(); j++) { occup_groups[i].symms_sets[j] = index_symmetries(supercell_cst.unit_cell.cell(), syms[j], occup_groups[i].positions); if( !occup_groups[i].is_empty() ) { good_set = find(occup_groups[i].symms_sets[j].begin(), occup_groups[i].symms_sets[j].end(), -1) == occup_groups[i].symms_sets[j].end(); } if(!good_set) break; } if(!good_set) break; } if(verbose_level >= 2) cout << "Symmetries operation assigned to groups." << endl; return good_set; } std::vector d2o_main_class::index_symmetries(const Eigen::Matrix3d &cell, const Eigen::Affine3d &af, const vector &pos) { using namespace Eigen; std::vector result; Matrix3d r_cell = cell.inverse(); Affine3d cart_tr, cl_d, cl_i; cl_d.setIdentity(); cl_d.linear() = cell; cl_i.setIdentity(); cl_i.linear() = cell.inverse(); cart_tr = cl_d * af * cl_i; std::vector pose; for(int i = 0; i < pos.size(); i++) pose.push_back(pos[i]); result.resize(pos.size(), -1); for(int i = 0; i < pose.size(); i++) { int index_sym = -1; int index_count = 0; for(int j = 0; j < pose.size(); j++) { Vector3d ve = pose[j] - cart_tr * pose[i]; ve = cell * cryst_tools::min_frac(r_cell * ve); if(ve.norm() < symm_tol()) { index_sym = j; index_count++; } } assert(index_count <= 1); result[i] = index_sym; } return result; } std::tuple d2o_main_class::create_init_perm_structs() const { t_comb_descr psm; t_vec_comb init_cmb; psm.prm_indexes.emplace_back(0); for(int i = 0; i < occup_groups.size(); i++) { if( !occup_groups[i].is_fixed() ) { map mvc; for(int j = 0; j < occup_groups[i].items.size(); j++) mvc[j + 1] = occup_groups[i].items[j].num_of_atoms_sc; mvc[0] = occup_groups[i].number_of_sites() - occup_groups[i].get_total_num_occup_sites(); vector vp = create_start_combination(mvc); psm.group_indexes.emplace_back(i); psm.prm_indexes.emplace_back(psm.prm_indexes.back() + vp.size()); for(int j = 0; j < vp.size(); j++) init_cmb.emplace_back(vp[j]); } } t_symm_set sm(occup_groups[0].symms_sets.size(), init_cmb.size()); if( !occup_groups[0].symms_sets.empty() ) { int smpos = 0; for (int i = 0; i < occup_groups.size(); i++) { if (std::find(psm.group_indexes.cbegin(), psm.group_indexes.cend(), i) != psm.group_indexes.cend()) { for (int j = 0; j < occup_groups[i].symms_sets.size(); j++) { for (int k = 0; k < occup_groups[i].symms_sets[j].size(); k++) { sm.at(j, k + smpos) = occup_groups[i].symms_sets[j][k] + smpos; } } assert(occup_groups[i].symms_sets[0].size() == occup_groups[i].positions.size()); smpos += occup_groups[i].symms_sets[0].size(); } } assert(smpos == init_cmb.size()); } return std::tuple(sm, init_cmb, psm); } q_energy_reduced d2o_main_class::reduce_q_matrix(const t_comb_descr &cd) const { using namespace Eigen; q_energy_reduced result; VectorXd q_v; q_v.resize(q_energy.cols()); q_v.setZero(); vector dw; int q_v_pos = 0; int grp_id = 0; for(int i = 0; i < occup_groups.size(); i++) { const c_occup_group &curr_group = occup_groups[i]; bool fixed_group = std::find(cd.group_indexes.cbegin(), cd.group_indexes.cend(), i) == cd.group_indexes.cend(); if( !fixed_group ) { result.charges.emplace_back(curr_group.items.size() + 1, 0); for (int k = 0; k < curr_group.items.size(); k++) result.charges.back()[k + 1] = curr_group.items[k].charge; } for(int j = 0; j < curr_group.positions.size(); j++) { double charge = 0; if( fixed_group ) { for (int k = 0; k < curr_group.items.size(); k++) { double occup_value = double(curr_group.items[k].num_of_atoms_sc) / double(curr_group.number_of_sites()); charge += occup_value * curr_group.items[k].charge; } } q_v[q_v_pos] = charge; if( !fixed_group ) { dw.emplace_back(q_v_pos); result.d_asn.emplace_back(grp_id); } q_v_pos++; } if( !fixed_group ) grp_id++; } assert(q_v_pos == q_energy.cols()); assert(dw.size() == cd.prm_indexes.back()); assert(grp_id == cd.group_indexes.size()); result.cf = q_v.transpose() * q_energy * q_v; VectorXd m1 = q_energy * q_v; result.vf.resize(dw.size()); for(int i = 0; i < dw.size(); i++) result.vf[i] = m1[dw[i]]; result.qf.resize(dw.size(), dw.size()); for(int i = 0; i < dw.size(); i++) { for(int j = 0; j < dw.size(); j++) { result.qf(i, j) = q_energy(dw[i], dw[j]); } } //0.5 not to count twice pairs //11.4 - to eV return result; } bool d2o_main_class::write_struct(const struct_processor &sp, const struct_info_index_t &si, const t_comb_descr &cd, const std::string &sampl_type) { bool result = true; stringstream ss; std::vector> ch; for(const auto &p : scs) { if( p.second.curr_charge != 0 ) ch.emplace_back(p.first, p.second.curr_charge); } cif_output co(ss, supercell_cst, std::string("E_e = ") + struct_processor::get_energy_str(si, 10), ch); add_confs_to_mol(co, cd, si.cmb); string f_name = sp.file_name(si.index, si.weight, sampl_type); add_file_to_tar(f_name, ss); if( !result ) cerr << "An error occurred during storing of \"" << f_name << "\" file." << endl; return result; } bool d2o_main_class::store_sampling(const string &output_base_name, const t_comb_descr &cd, int64_t tot_comb) { ss_p.prepare_to_store(); struct_processor str_proc(output_base_name, tot_comb); store_cont_cif(ss_p.first_container.begin(), ss_p.first_container.end(), str_proc, cd, "f"); store_cont_cif(ss_p.last_container.begin(), ss_p.last_container.end(), str_proc, cd, "a"); store_cont_cif(ss_p.low_container.begin(), ss_p.low_container.end(), str_proc, cd, "l"); store_cont_cif(ss_p.high_container.begin(), ss_p.high_container.end(), str_proc, cd, "h"); store_cont_cif(ss_p.rnd_container.begin(), ss_p.rnd_container.end(), str_proc, cd, "r"); store_cont_cif(ss_p.weight_container.begin(), ss_p.weight_container.end(), str_proc, cd, "w"); if( calc_q_energy ) { store_cont_eng(ss_p.first_container.begin(), ss_p.first_container.end(), str_proc, "f"); store_cont_eng(ss_p.last_container.begin(), ss_p.last_container.end(), str_proc, "a"); store_cont_eng(ss_p.low_container.begin(), ss_p.low_container.end(), str_proc, "l"); store_cont_eng(ss_p.high_container.begin(), ss_p.high_container.end(), str_proc, "h"); store_cont_eng(ss_p.rnd_container.begin(), ss_p.rnd_container.end(), str_proc, "r"); store_cont_eng(ss_p.weight_container.begin(), ss_p.weight_container.end(), str_proc, "w"); } return true; } class generate_comb_t { private: tbb::concurrent_queue prc_queue; const vector &permi; t_vec_comb init_cmb, cur_combs; int64_t _combination_left; int64_t _total_index; int64_t _index; int packet_size; bool finish; public: generate_comb_t(int nthreads, int64_t __total_combinations, int64_t __packet_size, const t_symm_set &sms, const vector &__permi, const t_vec_comb &init) : permi(__permi), init_cmb(init), cur_combs(init), _combination_left(__total_combinations), _total_index(0), _index(0), packet_size(__packet_size), finish(false) { for (int i = 0; i < nthreads; i++) { auto pp = new permut_process_t(sms, permi, packet_size); prc_queue.emplace(pp); } }; inline int64_t combination_left() const { return _combination_left; } inline int64_t total_index() const { return _total_index; } inline int64_t index() const { return _index; } permut_process_t *generator(tbb::flow_control &fc) { if (finish) { fc.stop(); return nullptr; } t_vec_comb next_combs = cur_combs; t_vec_comb last_comb; _total_index += next_k_complex_permutation(next_combs, last_comb, packet_size, permi); permut_process_t *result; bool popped = prc_queue.try_pop(result); assert(popped); result->set_proc_range(cur_combs, last_comb); finish = next_combs == init_cmb; swap(cur_combs, next_combs); return result; } inline void indexer(const permut_process_t *pp) { _index += pp->ps_size; _combination_left -= pp->total_combination_chunk; } inline void finalizer(permut_process_t *pp) { prc_queue.push(pp); } ~generate_comb_t() { while (!prc_queue.empty()) { permut_process_t *pp; bool b = prc_queue.try_pop(pp); assert(b); delete pp; } }; }; bool d2o_main_class::write_files(const string &output_base_name, bool dry_run, bool merge_confs) { if(dry_run && (!merge_confs) ) return true; t_vec_comb init_cmb; t_comb_descr psm; t_symm_set sms; std::tie(sms, init_cmb, psm) = create_init_perm_structs(); q_energy_reduced qrd; if( calc_q_energy ) { qrd = reduce_q_matrix(psm); } int64_t tot_comb = total_combinations(); struct_processor str_proc(output_base_name, tot_comb); if(!dry_run && !tar_enabled() ) { namespace bfs = boost::filesystem; const bfs::path p_suffix = bfs::path(output_base_name); const std::regex cif_file_filter(p_suffix.filename().string() + "_i.[0-9]+.*\\.cif"); const std::regex eng_file_filter(p_suffix.filename().string() + struct_processor::coulomb_energy_suffix + ".*\\.txt"); bfs::directory_iterator end_itr; // Default ctor yields past-the-end bfs::directory_iterator i(p_suffix.is_absolute() ? p_suffix.parent_path() : (bfs::current_path() / p_suffix.parent_path())); int del_file_count = 0; for( ; i != end_itr; ++i ) { // Skip if not a file if( !bfs::is_regular_file( i->status() ) ) continue; std::smatch what; std::string fname = i->path().filename().string(); if (std::regex_match(fname, what, cif_file_filter) || std::regex_match(fname, what, eng_file_filter)) { bfs::remove(i->path()); del_file_count++; } } if( (verbose_level >= 2) && (del_file_count > 0) ) cout << "Total " << del_file_count << " output files was deleted successfully" << endl; } int syms_num = max(occup_groups[0].symms_sets.size(), 1); ss_p.set_containers_prop(tot_comb, syms_num); const int packet_size = 49999; //prime number const int num_tokens = 2 * tbb::this_task_arena::max_concurrency() + 4; generate_comb_t gc(num_tokens, tot_comb, packet_size, sms, psm.prm_indexes, init_cmb); auto gen_f = tbb::make_filter( tbb_filter_mode::serial_in_order, [&gc](tbb::flow_control &fc) -> permut_process_t * { return gc.generator(fc); }); auto parr_proc_f = tbb::make_filter( tbb_filter_mode::parallel, [dry_run, &qrd, merge_confs, this](permut_process_t *p) -> permut_process_t * { if (merge_confs) p->process_merge(); else p->process_no_merge(); if (!dry_run && calc_q_energy) { for (int i = 0; i < p->ps_size; i++) { double eng = qrd.calc_energy(p->ps[i].cmb); p->ps[i].energy = eng; p->minmax_energy = (i == 0) ? std::make_pair(eng, eng) : std::minmax({p->minmax_energy.first, eng, p->minmax_energy.second}); } } return p; }); auto ctime = std::chrono::steady_clock::now(); auto serial_after_proc_f = tbb::make_filter( tbb_filter_mode::serial_in_order, [this, &gc, dry_run, &str_proc, &psm, &ctime, tot_comb](permut_process_t *p) -> void { if (p->ps_size > 0 && !dry_run) { if (create_q_file) write_full_electrostatic(gc.index(), str_proc, p); if(ss_p.sampling_active()) { store_sampled_structures(gc.index(), p, gc.combination_left()); } else { write_structures_direct(gc.index(), str_proc, p, psm); } } gc.indexer(p); if (verbose_level >= 2) { auto mt = std::chrono::steady_clock::now(); double dt = std::chrono::duration(mt - ctime).count(); if (dt > 1.0) { ctime = mt; constexpr double mx = 5.0; double tm = double(gc.total_index()) + mx * double(tot_comb - gc.combination_left()); cout << "Finished " << round(1000.0 * tm / ((mx + 1) * tot_comb)) / 10.0 << "%. " << "Stored " << gc.index() << " configurations. Left " << gc.combination_left() << " \r" << std::flush; } } gc.finalizer(p); }); auto pipeline_start_time = std::chrono::steady_clock::now(); tbb::parallel_pipeline(num_tokens, gen_f & parr_proc_f & serial_after_proc_f); auto pipeline_finish_time = std::chrono::steady_clock::now(); if( verbose_level >= 2) cout << endl; if( verbose_level >= 1 ) { double dt = std::chrono::duration(pipeline_finish_time - pipeline_start_time).count(); double dt_h = std::floor(dt / 3600.0); dt -= dt_h * 3600; double dt_m = std::floor( dt / 60.0); dt -= dt_m * 60; std::stringstream ss; ss << "Total enumeration time: " << dt_h << ":" << std::setfill('0') << std::setw(2) << dt_m << ":" << dt; std::cout << ss.str() << std::endl; } if( gc.total_index() != tot_comb ) { cerr << "ERROR: Number of combinations (" << tot_comb << ") is not equal of total index (" << gc.total_index() << ")." << std::endl; return false; } if(merge_confs && (verbose_level >= 1) ) cout << "Combinations after merge: " << gc.index() << endl; if(gc.combination_left() != 0) cerr << "ERROR: Combination left " << gc.combination_left() << " != 0 " << endl; if( ss_p.sampling_active() && (!dry_run) ) store_sampling(output_base_name, psm, tot_comb); return gc.combination_left() == 0; } void d2o_main_class::store_sampled_structures( const std::int64_t base_index, const permut_process_t *p, const std::int64_t combinations_left) { if( calc_q_energy ) ss_p.add_electrostatic(base_index, p); ss_p.add_random(base_index, p); ss_p.add_first_last(base_index, p, combinations_left); ss_p.add_weight(base_index, p); } void d2o_main_class::write_structures_direct(const std::int64_t base_index, const struct_processor &str_proc, const permut_process_t *p, const t_comb_descr &psm) { for (int i = 0; i < p->ps_size; i++) { struct_info_index_t x(p->ps[i], base_index + i); write_struct(str_proc, x, psm); } } void d2o_main_class::write_full_electrostatic(const std::int64_t base_index, const struct_processor &str_proc, const permut_process_t *p) { for (int i = 0; i < p->ps_size; i++) { const auto &x = p->ps[i]; string fname_str = str_proc.file_name(base_index + i, x.weight, ""); f_q_calc << struct_processor::get_energy_line(fname_str, x) + "\n"; } } std::pair d2o_main_class::correct_rms_range(const int total_sites, const double occup, const double x2) { int min_value = total_sites; int max_value = 0; double x2_min = 1E18; int x2_min_index = -1; for(int i = 0; i <= total_sites; i++) { double x2_curr = pow( double(i)/double(total_sites) - occup, 2); if(x2_min > x2_curr) { x2_min = x2_curr; x2_min_index = i; } if(x2_curr < x2) { min_value = min(min_value, i); max_value = max(max_value, i); } } min_value = min(min_value, x2_min_index); max_value = max(max_value, x2_min_index); assert(min_value <= max_value); assert((min_value >= 0) && (max_value <= total_sites)); return {min_value, max_value}; } std::vector< d2o_main_class::rangi > d2o_main_class::get_rangi_array(const double x2) { vector< rangi > rc; for(int i = 0; i < occup_groups.size(); i++) { c_occup_group &curr_group = occup_groups[i]; if( (curr_group.items.size() == 1) && (!(*manual_properties)[curr_group.items[0].label].population.is_initialized()) && (abs(1 - curr_group.get_total_occup_input()) < 1E-4) ) { rangi rd; rd.group_index = i; rd.atom_index = 0; rd.min_value = curr_group.number_of_sites(); rd.max_value = rd.min_value; rd.curr_value = rd.min_value; rc.push_back(rd); } else { for(int j = 0; j < occup_groups[i].items.size(); j++) { rangi rd; rd.group_index = i; rd.atom_index = j; if (!(*manual_properties)[curr_group.items[j].label].population.is_initialized()) { std::tie(rd.min_value, rd.max_value) = correct_rms_range(curr_group.number_of_sites(), occup_groups[i].items[j].occup_target, x2); rd.curr_value = rd.min_value; } else { int value = (*manual_properties)[curr_group.items[j].label].population.get(); rd.min_value = value; rd.max_value = value; rd.curr_value = value; } rc.push_back(rd); } } } return rc; } int64_t d2o_main_class::total_combinations() { bool overflow = false; std::vector tm; for(vector::const_iterator it = occup_groups.begin(); it != occup_groups.end(); ++it) { int64_t tc = it->get_number_of_combinations(); overflow = overflow || (tc < 0); tm.push_back(tc); } if(overflow) return -1; else { int64_t result = 1; bool good = safe_multiplication(tm, result); return good ? result : -1; } } double d2o_main_class::ss_charge_by_occup_groups() { double result = 0; for(vector::const_iterator it = occup_groups.begin(); it != occup_groups.end(); ++it) { for(int j = 0; j < it->items.size(); j++) result += it->items[j].charge * it->items[j].num_of_atoms_sc; } return result; } bool d2o_main_class::get_atoms_population() { const double x2_min_inf = 1E18; vector< rangi > rc_min; double x2_min = x2_min_inf; double x2_range = 1E-5; while(x2_min > x2_range) { vector< rangi > rc = get_rangi_array(x2_range); int64_t num_of_cmb_to_check = 1; for(int i = 0; i < rc.size(); i++) num_of_cmb_to_check *= rc[i].max_value - rc[i].min_value + 1; if( (num_of_cmb_to_check > 2E6 ) && (verbose_level >= 1) ) { cout << "WARN: The number of combinations to check is high " << num_of_cmb_to_check << endl; cout << "WARN: Structure is too big and/or problems with charges values." << num_of_cmb_to_check << endl; } if(verbose_level >= 4) { cout << "RMS to calculate: " << x2_range << " on " << x2_min << endl; cout << "Combinations to check: " << num_of_cmb_to_check << endl; } bool last_conf = false; while(!last_conf) { //check charge balance and occupancy vector ocp_t; ocp_t.resize(occup_groups.size(), 0); double charge = 0.0; for(int i = 0; i < rc.size(); i++) { const c_occup_item &cp = occup_groups[rc[i].group_index].items[rc[i].atom_index]; charge += cp.charge * rc[i].curr_value; ocp_t[rc[i].group_index] += rc[i].curr_value; if(verbose_level >= 5) cout << "rc " << cp.label << ": " << rc[i].min_value << " < " << rc[i].curr_value << " < " << rc[i].max_value << endl; } //check occupancy bool overoccup = false; for(int i = 0; i < occup_groups.size(); i++) { overoccup = overoccup || (occup_groups[i].number_of_sites() < ocp_t[i]); if( overoccup ) { if(verbose_level >= 5) cout << "Over occup" << endl; break; } } bool underoccup = false; for(int i = 0; i < occup_groups.size(); i++) { bool man_occup_group = false; for(int j = 0; j < occup_groups[i].items.size(); j++) { man_occup_group = (*manual_properties)[occup_groups[i].items[j].label].population.is_initialized(); if( man_occup_group ) break; } if( man_occup_group ) underoccup = false; else { underoccup = (occup_groups[i].number_of_sites() > ocp_t[i]) && (abs(1.0 - occup_groups[i].get_total_occup_input()) < occup_tol()); } if((verbose_level >= 5) && underoccup) cout << "Under occup" << endl; if( underoccup ) break; } if(verbose_level >= 5) { for(int i = 0; i < occup_groups.size(); i++) cout << "Curr occup is " << ocp_t[i] << ". Total is " << occup_groups[i].number_of_sites() << endl; cout << "charge: " << charge << endl; } if( (!charge_balancing || (abs(charge) < charge_tol())) && (!overoccup) && (!underoccup)) { double rms_curr = 0; //calculate RMS for(int i = 0; i < rc.size(); i++) { double group_sites = occup_groups[rc[i].group_index].number_of_sites(); const c_occup_item & cp = occup_groups[rc[i].group_index].items[rc[i].atom_index]; double rms_item = pow( double(rc[i].curr_value)/group_sites - cp.occup_target ,2); rms_curr += rms_item; } if(rms_curr < x2_min) { rc_min = rc; x2_min = rms_curr; } } //Next configuration increment last_conf = true; for(int i = rc.size() - 1; i >= 0; i--) { rc[i].curr_value++; if(rc[i].curr_value > rc[i].max_value) rc[i].curr_value = rc[i].min_value; else { last_conf = false; break; } } } x2_range *= 2; } for(int i = 0; i < rc_min.size(); i++) occup_groups[rc_min[i].group_index].items[rc_min[i].atom_index].num_of_atoms_sc = rc_min[i].curr_value; return rc_min.size() > 0; } bool d2o_main_class::process_charges(charge_balance cb) { scs.clear(); for(const auto &a : orig_cst.atoms) { if( scs.count(a.label) > 0 ) { if(!std::isnan(scs[a.label].input_charge) || !std::isnan(a.charge)) assert(scs[a.label].input_charge == a.charge); scs[a.label].occup += a.occupancy; scs[a.label].cif_mult++; } else { scs[a.label].input_charge = a.charge; scs[a.label].occup = a.occupancy; scs[a.label].cif_mult = 1; } } for(std::map::iterator it = scs.begin(); it != scs.end(); ++it) { (*it).second.curr_charge = 0; if(! std::isnan((*it).second.input_charge) ) (*it).second.curr_charge = (*it).second.input_charge; if( (*manual_properties)[(*it).first].charge.is_initialized()) (*it).second.curr_charge = (*manual_properties)[(*it).first].charge.get(); } double total_input_charge = 0; double total_used_charge = 0; for(std::map::iterator it = scs.begin(); it != scs.end(); ++it) { total_input_charge += (*it).second.input_charge * (*it).second.occup; total_used_charge += (*it).second.curr_charge * (*it).second.occup; } if( verbose_level >= 1 ) cout << "Current charge balance option is \"" << cb_names::get_name(cb) << "\"" << endl; if(( verbose_level >= 0) && (abs(total_used_charge) > charge_tol()) ) cout << "WARN: Total charge of the system is not zero" << endl; switch(cb) { case charge_balance::cb_no: charge_balancing = false; break; case charge_balance::cb_yes: charge_balancing = true; break; case charge_balance::cb_try: charge_balancing = abs(total_used_charge) < charge_tol(); break; default: assert(false); break; } if(verbose_level >= 1) { cout << "Total charge oxidation state (cif): " << total_input_charge << endl; cout << "Total charge cell: " << total_used_charge << endl; cout << "Charge balancing: " << (charge_balancing ? "yes" : "no") << endl; cout << "----------------------------------------------------------------" << endl; cout << "| Atom Label\t| \tcharge \t| mult\t| occup x mult" << endl; cout << "| \t\t| Ox. state\t| Used\t| (cif)\t|\t\t " << endl; cout << "----------------------------------------------------------------" << endl; for(std::map::iterator it = scs.begin(); it != scs.end(); ++it) { cout << "| " << (*it).first << "\t\t| " << (*it).second.input_charge << "\t\t| " << (*it).second.curr_charge << "\t| " << (*it).second.cif_mult << "\t| " << (*it).second.occup << endl; } cout << "----------------------------------------------------------------" << endl; cout << endl; } return true; } bool d2o_main_class::fix_groups() { bool result = true; for(vector< c_occup_group >::iterator itg = occup_groups.begin(); itg != occup_groups.end(); ++itg) { assert(!itg->items.empty()); bool fixed_status = (*manual_properties)[itg->items[0].label].fixed.get_value_or(false); bool wrong_status = false; for(vector< c_occup_item >::iterator iti = itg->items.begin(); iti != itg->items.end(); ++iti) { wrong_status = fixed_status != (*manual_properties)[iti->label].fixed.get_value_or(false); if(wrong_status) break; } if(wrong_status) { cerr << "Fixation error at group " << distance(occup_groups.begin(), itg) << endl; result = false; break; } else itg->set_fixation(fixed_status); } return result; } class ob_comb_atoms : public points_clusters { protected: const cryst_structure_t & cs_str; cryst_tools::min_dist min_dist_obm; public: virtual int get_points_size() const override; virtual double get_distance(int i, int j) const override; public: ob_comb_atoms(const cryst_structure_t & cryst_str, double tolerance) : cs_str(cryst_str) { min_dist_obm.set_cell(cs_str.unit_cell.cell()); tol_list = tolerance; } Eigen::Vector3d average_vector(const cmb_group &cbg); void create_groups(groups_vc &vc); }; int ob_comb_atoms::get_points_size() const { return cs_str.atoms.size(); } double ob_comb_atoms::get_distance(int i, int j) const { Eigen::Vector3d dist = cs_str.unit_cell.cell() * (cs_str.atoms[i].fract_pos - cs_str.atoms[j].fract_pos); dist = min_dist_obm(dist); return dist.norm(); } void ob_comb_atoms::create_groups(groups_vc &vc) { create_groups_internal(vc, tol_list, 2); assign_max_dist(vc); } Eigen::Vector3d ob_comb_atoms::average_vector(const cmb_group &cbg) { vector vc; for(set::const_iterator it = cbg.indexes.begin(); it != cbg.indexes.end(); ++it) vc.push_back(cs_str.unit_cell.cell() * cs_str.atoms[*it].fract_pos); return min_dist_obm.average_vector(vc); } bool d2o_main_class::create_occup_groups() { map tot_occ; for(int i = 0; i < supercell_cst.atoms.size(); i++) { const auto &a = supercell_cst.atoms[i]; if (tot_occ.count(a.label) == 0) tot_occ[a.label] = a.occupancy; else tot_occ[a.label] += a.occupancy; } groups_vc gvc; ob_comb_atoms obc(supercell_cst, r_tolerance); obc.create_groups(gvc); min_dist_between_groups = obc.min_dist_between_groups(gvc); assert(min_dist_between_groups > r_tolerance); //Check that all groups within tolerance bool unique_groups = true; for(int i = 0; i < gvc.size(); i++) { if(gvc[i].max_dist > r_tolerance) { unique_groups = false; cerr << "ERROR: Group has no unique connection. " << endl; } } if(!unique_groups) return false; typedef map< set, c_occup_group> cc; cc coc; for(int i = 0; i < gvc.size(); i++) { Eigen::Vector3d avg_dist = obc.average_vector(gvc[i]); set sc; c_occup_group ocg_temp; ocg_temp.max_dis_within_group = 0; for(set::const_iterator it = gvc[i].indexes.begin(); it != gvc[i].indexes.end(); ++it) { const auto &oa = supercell_cst.atoms[*it]; if( sc.insert(oa.label).second ) //element inserted ocg_temp.add_item(oa, scs[oa.label].curr_charge); } if( coc.count(sc) == 0 ) coc[sc] = ocg_temp; coc[sc].positions.push_back(avg_dist); coc[sc].max_dis_within_group = max(coc[sc].max_dis_within_group, gvc[i].max_dist); } //Check that groups are single vector vc; for(cc::const_iterator it = coc.begin(); it != coc.end(); ++it) std::copy(it->first.begin(), it->first.end(), std::back_inserter(vc)); array_common::delete_singles(vc); if(vc.size() > 0) { for(int i = 0; i < vc.size(); i++) cerr << "ERROR: Label " << vc[i] << " belong to 2 or more groups." << endl; return false; } occup_groups.clear(); for(cc::const_iterator it = coc.begin(); it != coc.end(); ++it) occup_groups.push_back(it->second); //Correct occup_target for(int i = 0; i < occup_groups.size(); i++) { for(int j = 0; j < occup_groups[i].items.size(); j++) occup_groups[i].items[j].occup_target = tot_occ[occup_groups[i].items[j].label]/double(occup_groups[i].number_of_sites()); } return true; } bool d2o_main_class::check_properties_consistency() const { bool same_properties = true; for(int i = 0; i < supercell_cst.atoms.size(); i++) { const auto &atom_i = supercell_cst.atoms[i]; for(int j = i + 1; j < supercell_cst.atoms.size(); j++) { const auto &atom_j = supercell_cst.atoms[j]; if( atom_i.label == atom_j.label ) { if( atom_i.el_num != atom_j.el_num ) { same_properties = false; cerr << "ERROR: Label " << atom_i.label << " has 2 type of atoms " << PT_GETSYMBOL(atom_i.el_num) << " != " << PT_GETSYMBOL(atom_i.el_num) << endl; } if( std::abs(atom_i.occupancy - atom_j.occupancy) > occup_tol() ) { same_properties = false; cerr << "ERROR: Label " << atom_i.label << " has 2 different occupations " << atom_i.occupancy << " != " << atom_j.occupancy << endl; } } } } return same_properties; } bool d2o_main_class::show_groups_information() { cout << "Chemical formula of the supercell: " << get_formula_by_groups() << endl; cout << "Total charge of supercell: " << ss_charge_by_occup_groups() << endl; cout << endl ; cout << "----------------------------------------------------" << endl ; cout << " Identification of groups of crystallographic sites " << endl ; cout << "----------------------------------------------------" << endl ; for(int i = 0; i < occup_groups.size(); i++) { cout << endl; cout << " Group " << i + 1 << " (" << occup_groups[i].number_of_sites() << " atomic positions in supercell):" << endl; for(int j = 0; j < occup_groups[i].items.size(); j++) { cout << " * Site #" << j + 1 << ": " << occup_groups[i].items[j].label << " (occ. " << occup_groups[i].items[j].occup_target << ")"; if( occup_groups[i].is_fixed() ) cout << " -> FIXED with occupancy " << boost::format("%.3f") % ( double(occup_groups[i].items[j].num_of_atoms_sc) / double(occup_groups[i].number_of_sites() ) ) << "."; else cout << " -> distributed over " << occup_groups[i].items[j].num_of_atoms_sc << " positions out of " << occup_groups[i].number_of_sites() << " (actual occ.: " << boost::format("%.3f") % ( double(occup_groups[i].items[j].num_of_atoms_sc) / double(occup_groups[i].number_of_sites() ) ) << ")."; cout << endl; } if( occup_groups[i].max_dis_within_group > 1E-3) { cout << " Crystallographic sites with different positions found for this group." << endl; cout << " Maximum distance within the group: " << occup_groups[i].max_dis_within_group << " A." << endl; } // else // cout << " All atoms occupied the same site." << endl; int64_t g_occ = occup_groups[i].get_number_of_combinations(); if( g_occ > 1) cout << " Number of combinations for the group is " << g_occ << endl; else if( g_occ < 0 ) cout << " WARNING: Number of combinations for the group is too high to work with." << endl; // else // cout << " The atom position within the group are set unambiguously" << endl; if( (occup_groups[i].get_total_num_occup_sites() < occup_groups[i].number_of_sites() ) && (abs(1.0 - occup_groups[i].get_total_occup_input()) < occup_tol()) ) { cout << " WARNING: Vacancy introduced in a crystallographic site, which was originally fully-occupied." << endl; } /* if(occup_groups[i].is_fixed()) cout << " FIXED: No combinations will be applied." << endl; */ } cout << endl; cout << "Minimal distance between atoms of two distinct groups: " << min_dist_between_groups << " A." << endl; int64_t t_comb = total_combinations(); string t_comb_approx = ""; string t_comb_str = t_comb > 0 ? boost::lexical_cast(t_comb) : "+INF"; if(t_comb > 1E5) { boost::format fmt("(~%1$2.1e)"); fmt % double(t_comb); t_comb_approx = fmt.str(); } cout << endl ; cout << "-------------------------------------------------" << endl ; cout << "The total number of combinations is " << t_comb_str << t_comb_approx << endl; cout << "-------------------------------------------------" << endl ; return true; } bool d2o_main_class::create_super_cell(int a, int b, int c) { supercell_cst.block_name = orig_cst.block_name; supercell_cst.chem_name = orig_cst.chem_name; supercell_cst.unit_cell.set(orig_cst.unit_cell.cell() * Eigen::DiagonalMatrix(a, b, c)); supercell_cst.atoms.clear(); supercell_cst.atoms.reserve(orig_cst.atoms.size() * a * b *c); for (int i = 0; i < a; i++) { for (int j = 0; j < b; j++) { for (int k = 0; k < c; k++) { for(const auto &oa : orig_cst.atoms) { supercell_cst.atoms.emplace_back(oa); supercell_cst.atoms.back().fract_pos = Eigen::Vector3d((oa.fract_pos.x() + i) / a, (oa.fract_pos.y() + j) / b, (oa.fract_pos.z() + k) / c); } } } } if(verbose_level >= 1) { cout << "Initial system:" << endl; cout << " Chemical Formula: " << get_formula(orig_cst) << endl; cout << endl; cout << "Supercell system " << boost::format("(%1%x%2%x%3%)") %a %b %c << ":" << endl; Eigen::Vector3d sz = supercell_cst.unit_cell.lengths(); cout << boost::format(" Size a=%1%, b=%2%, c=%3%") % sz.x() % sz.y() % sz.z() << endl; cout << endl; } return true; } bool d2o_main_class::read_cryst_structure(std::string file_name) { bool result = true; string msg; result = read_cif_file(file_name, orig_cst, msg); if( verbose_level >= 1 ) { boost::algorithm::replace_all(msg, "\n", "\n "); std::cout << "CIF file info: " << std::endl; std::cout << " " << msg << std::endl; } return result; } template std::ostream& operator<<(std::ostream& os, const boost::optional &cav) { if(cav.is_initialized()) os << *cav; else os << "N/A"; return os; } bool d2o_main_class::set_labels_to_manual() { set set_lbl; for(const auto &a : orig_cst.atoms) { set_lbl.emplace(a.label); } (*manual_properties).convert_properties(set_lbl); if( (verbose_level >= 1) && (manual_properties->data().size() > 0)) { cout << "Manual properties" << endl; cout << "Label\t|fixed\t|charge\t|popul\t|" << endl; for(c_man_atom_prop::data_type::const_iterator it = manual_properties->data().begin(); it != manual_properties->data().end(); ++it) { cout << it->first << "\t|" << it->second.fixed << "\t|" << it->second.charge << "\t|" << it->second.population << "\t|" << endl; } cout << endl; } return true; } bool d2o_main_class::process(std::string input_file_name, bool dry_run, const std::vector &supercell_shape, charge_balance cb, double tolerance_v, bool merge_confs, bool calc_q_energy_v, bool create_q_file_v, c_man_atom_prop &manual_properties_v, const c_struct_sel &ss_p_v, std::string output_base_name, std::string output_tar_name) { assert(supercell_shape.size() == 3); r_tolerance = max(tolerance_v, 1.0E-6); manual_properties = &manual_properties_v; ss_p.assign_base(ss_p_v); calc_q_energy = calc_q_energy_v; create_q_file = create_q_file_v; if(!read_cryst_structure(input_file_name)) { cerr << "Input file cannot be opened." << endl; return false; } if(!set_labels_to_manual()) { cerr << "Manual labels cannot be set." << endl; return false; } if(!create_super_cell(supercell_shape[0], supercell_shape[1], supercell_shape[2])) { cerr << "Supercell cannot be created." << endl; return false; } if( !process_charges(cb) ) { cerr << "Charge processing fails." << endl; return false; } //Check, that all labels has the same properties if( !check_properties_consistency() ) { cerr << "Sites properties are not consistent." << endl; return false; } if( !create_occup_groups() ) { cerr << "Create occupation groups error." << endl; return false; } if( !fix_groups() ) { cerr << "Error while fixing groups." << endl; return false; } if( !get_atoms_population() ) { cerr << "Create atoms population error:" << endl << " Change supercell size" << endl << " Switch off charge balancing" << endl << " Check manual population settings" << endl; return false; } if(verbose_level >= 1) show_groups_information(); int64_t tc = total_combinations(); if(tc > static_cast(1E16) || tc < 0 ) { cerr << "ERROR: Number of total combinations is too high to work with." << endl; return false; } if( tc == 0) { cerr << "ERROR: Number of total combinations is 0. Probably wrong pupulation values." << endl; return false; } if( merge_confs ) { if(!create_symmetry_operations_groups()) { cerr << "ERROR: Symmetry operation creation failed." << endl; return false; } } if( create_q_file && !calc_q_energy) { cerr << "ERROR: Electrostatic energy file cannot be created without electrostatic energy calculation. " << endl; return false; } if( calc_q_energy ) { if(!charge_balancing) { cerr << "ERROR: Electrostatic energy cannot be calculated without charge balancing. " << endl; return false; } if(!calculate_q_matrix()) { cerr << "ERROR: Coulomb energy is not calculated." << endl; return false; } if( !dry_run && create_q_file ) { struct_processor sp(output_base_name, tc); string fq_name = sp.get_q_file_name(""); f_q_calc.open(fq_name.c_str(), fstream::out); if(!f_q_calc.is_open()) { cerr << "ERROR: File \"" << fq_name << "\" is not open." << endl; return false; } } } if( (!calc_q_energy) && ( (ss_p.str_high_count() > 0) || (ss_p.str_low_count() > 0) ) ) { cerr << "Energy sampling (h or l) impossible without Coulomb calculation enabled." << endl; return false; } if(!dry_run) create_tar_container(output_tar_name); if(!write_files(output_base_name, dry_run, merge_confs)) { cerr << "Write files error." << endl; return false; } if(!dry_run) { if(f_q_calc.is_open()) f_q_calc.close(); close_tar_container(); } return true; } orex-supercell-96532aa/src/core/d2o_main_class.h000066400000000000000000000242261465364771700216160ustar00rootroot00000000000000/* * File: d2o_main_class.h * Author: kirill * * Created on July 19, 2013, 2:25 PM */ #ifndef D2O_MAIN_CLASS_H #define D2O_MAIN_CLASS_H #include #include #include #include #include #include #include #include "common_types.h" #include "permut_process_t.h" #include "cif_io.h" #include #include #include #include #include #include #include #ifdef LIBARCHIVE_ENABLED #include #endif struct c_occup_item { std::string label; double occup_target; int num_of_atoms_sc; double charge; int el_num; c_occup_item() = delete; c_occup_item(const atom_t &a, double charge_v) : label(a.label), occup_target(a.occupancy), num_of_atoms_sc(0), charge(charge_v), el_num(a.el_num) {}; bool operator < ( const c_occup_item &r ) const { return ( label < r.label ); } }; struct t_comb_descr { std::vector prm_indexes; std::vector group_indexes; }; class c_occup_group { private: bool _fixed; bool _fixed_fast; public: std::vector items; std::vector positions; //Cartesian std::vector> symms_sets; double max_dis_within_group; c_occup_group(): _fixed(false), _fixed_fast(false), max_dis_within_group(0) { ; }; double get_total_occup_input() const; int get_total_num_occup_sites() const; int64_t get_number_of_combinations() const; void set_fixation(bool fix = true) { _fixed = fix; }; inline bool is_fixed() const { return _fixed || (get_number_of_combinations() == 1); } inline bool is_empty() const { int numa = 0; for(const auto &itm : items) { numa += itm.num_of_atoms_sc; } return numa == 0; } inline bool is_fixed_fast() const { return _fixed_fast; } inline void set_fixed_fast() { _fixed_fast = is_fixed(); } inline int number_of_sites() const { return positions.size(); }; inline void add_item(const atom_t &oa, double charge) { items.emplace_back(oa, charge); } }; struct site_charges { double input_charge; double curr_charge; double occup; double cif_mult; }; class struct_processor { public: static const std::string coulomb_energy_suffix; struct_processor(const std::string &prefix_, int64_t tot_comb_) : prefix(prefix_), index_length(boost::lexical_cast(tot_comb_).length()) {}; std::string file_name(const std::int64_t index, const int weight, const std::string &sampl_type) const; std::string get_q_file_name(const std::string &suffix = "") const { return prefix + coulomb_energy_suffix + ( suffix.empty() ? std::string("") : std::string("_") ) + suffix + ".txt"; } static std::string get_energy_str( const struct_info_t &si, int prec = 3) { std::stringstream result; result << std::fixed << std::setprecision(prec) << si.energy << " eV"; return result.str(); } static std::string get_energy_line(const std::string &file_name, const struct_info_t &si, int prec = 3) { return file_name + "\t" + get_energy_str(si, prec); } private: std::string prefix; int index_length; }; class c_struct_sel_containers : public c_struct_sel { private: std::int64_t total_comb; int symm_op; rnd_indexer_t rnd_indexer; void add_electrostatic_low(const std::int64_t base_index, const permut_process_t *p); void add_electrostatic_high(const std::int64_t base_index, const permut_process_t *p); public: std::vector rnd_container; std::vector low_container; std::vector high_container; std::vector first_container; boost::circular_buffer last_container; std::vector weight_container; public: c_struct_sel_containers(std::random_device::result_type seed) : rnd_indexer(seed){}; // symm_op 1 for non-merging bool sampling_active() const { return !save_all(); }; void set_containers_prop(int64_t total_comb_v, int symm_op_v); inline void add_electrostatic(const std::int64_t base_index, const permut_process_t *p) { if (p->ps_size > 0) { if (str_low_count() > 0) add_electrostatic_low(base_index, p); if (str_high_count() > 0) add_electrostatic_high(base_index, p); } } void add_random(const std::int64_t base_index, const permut_process_t *p); void add_first_last(const std::int64_t base_index, const permut_process_t *p, const std::int64_t combinations_left); void add_weight(const std::int64_t base_index, const permut_process_t *p); void prepare_to_store(); }; struct q_energy_reduced { private: static constexpr double to_eV = 14.39964547842567205854; public: Eigen::MatrixXd qf; Eigen::VectorXd vf; double cf; std::vector d_asn; std::vector> charges; inline double calc_energy(const t_vec_comb &vc) const { assert(vc.size() == d_asn.size() && qf.cols() == vc.size()); Eigen::VectorXd v = Eigen::VectorXd::Zero(vc.size()); for(int i = 0; i < vc.size(); i++) v[i] = charges[d_asn[i]][vc[i]]; return to_eV * ( cf + 2 * v.dot(vf) + v.transpose() * qf * v); }; }; class d2o_main_class { private: struct rangi { int group_index, atom_index; int curr_value, min_value, max_value; }; private: int verbose_level; bool charge_balancing; cryst_structure_t orig_cst, supercell_cst; c_man_atom_prop * manual_properties; c_struct_sel_containers ss_p; std::vector occup_groups; double r_tolerance; double min_dist_between_groups; std::map scs; bool calc_q_energy; bool create_q_file; Eigen::MatrixXd q_energy; std::ofstream f_q_calc; #ifdef LIBARCHIVE_ENABLED archive *tar_container; #endif bool create_tar_container(const std::string &tar_fname); bool add_file_to_tar(const std::string &fname, const std::stringstream &strm); bool tar_enabled(); bool close_tar_container(); bool fix_groups(); bool read_cryst_structure(std::string file_name); static std::pair correct_rms_range(const int total_sites, const double occup, const double x2); int64_t total_combinations(); double ss_charge_by_occup_groups(); std::vector< rangi > get_rangi_array(const double x2); bool get_atoms_population(); bool create_super_cell(int a, int b, int c); bool create_occup_groups(); bool show_groups_information(); bool process_charges(charge_balance cb); bool calculate_q_matrix(); bool create_symmetry_operations_groups(); static std::vector index_symmetries(const Eigen::Matrix3d &cell, const Eigen::Affine3d &af, const std::vector &pos); template void store_cont_cif(const ConstIterator& begin, const ConstIterator& end, const struct_processor &sp, const t_comb_descr &cd, const std::string &sampl_type = "") { for(ConstIterator it = begin; it != end; it++) write_struct(sp, *it, cd, sampl_type); } template void store_cont_eng(const ConstIterator& begin, const ConstIterator& end, const struct_processor &sp, const std::string &sampl_type = "") { if(begin == end) return; std::stringstream fq; std::string qfname = sp.get_q_file_name(sampl_type); for(ConstIterator it = begin; it != end; it++) { std::string fname_str = sp.file_name(it->index, it->weight, sampl_type); fq << struct_processor::get_energy_line(fname_str, *it) + "\n"; } add_file_to_tar(qfname, fq); } bool write_struct(const struct_processor &sp, const struct_info_index_t &si, const t_comb_descr &cd, const std::string &sampl_type = ""); bool store_sampling(const std::string &output_base_name, const t_comb_descr &cd, int64_t tot_comb); bool write_files(const std::string &output_base_name, bool dry_run, bool merge_confs); std::tuple create_init_perm_structs() const; q_energy_reduced reduce_q_matrix(const t_comb_descr &cd) const; bool add_confs_to_mol(cif_output &co, const t_comb_descr &cd, const t_vec_comb &ppc) const; static std::string get_formula(const cryst_structure_t &cs); std::string get_formula_by_groups(); bool set_labels_to_manual(); void store_sampled_structures(const std::int64_t base_index, const permut_process_t *p, const std::int64_t combinations_left); void write_structures_direct(const std::int64_t base_index, const struct_processor &str_proc, const permut_process_t *p, const t_comb_descr &psm); void write_full_electrostatic(const std::int64_t base_index, const struct_processor &str_proc, const permut_process_t *p); public: static inline double charge_tol() { return 1E-1; }; static inline double occup_tol() { return 2E-3; }; static inline double symm_tol() { return 1E-2; }; public: d2o_main_class() = delete; d2o_main_class(std::random_device::result_type seed) : charge_balancing(false), ss_p(seed) {}; void set_verbosity(int vb) { verbose_level = vb; }; bool process(std::string input_file_name, bool dry_run, const std::vector &supercell_shape, charge_balance cb, double tolerance_v, bool merge_confs, bool calc_q_energy_v, bool create_q_file_v, c_man_atom_prop &manual_properties, const c_struct_sel &ss_p, std::string output_base_name, std::string output_tar_name); bool check_properties_consistency() const; }; #endif /* D2O_MAIN_CLASS_H */ orex-supercell-96532aa/src/core/permut_process_t.cpp000066400000000000000000000072741465364771700226750ustar00rootroot00000000000000// // Created by kirill on 4/26/21. // #include "permut_process_t.h" #include "science/combinatorics.h" #include t_vec_comb permut_process_t::setmm_values(const t_vec_comb &vc, int start_index, bool max_value) const { auto it = std::upper_bound(permi.cbegin(), permi.cend(), start_index); if( it == permi.cend() ) { return vc; } int pmipos = std::distance(permi.cbegin(), it); int sti = start_index; t_vec_comb result = vc; int mv = result[start_index]; for (int i = sti, j = pmipos; i < vc.size(); i++) { if (i == permi[j]) { std::fill(result.begin() + sti, result.begin() + i, mv); mv = result[i]; j++; sti = i; } if( max_value == (result[i] > mv) ) mv = result[i]; } std::fill(result.begin() + sti, result.end(), mv); return result; } bool permut_process_t::next_comb(t_vec_comb &vc) const { return next_complex_permutation(vc, permi); } void permut_process_t::process_no_merge() { ps_size = 0; auto vc = first_cmb; while(true) { ps[ps_size].weight = 1; ps[ps_size].cmb = vc; ps_size++; assert(ps_size <= ps.size()); if( vc != last_cmb ) next_comb(vc); else break; } total_combination_chunk = ps_size; } void permut_process_t::process_merge() noexcept { ps_size = 0; total_combination_chunk = 0; int blength = first_cmb.size() * sizeof(t_vec_comb::value_type); int syms_num = syms.rows(); int start_index = 0; for(start_index = 0; start_index < first_cmb.size() && first_cmb[start_index] == last_cmb[start_index] ; start_index++) {}; auto fmcomp = [blength](const auto & first1, const auto &first2) -> int { return std::memcmp(&(*first1), &(*first2), blength); }; bool has_lower_syms = false; t_vec_comb vmax = setmm_values(first_cmb, start_index, true); for(int i = 0; i < syms_num && !has_lower_syms; i++) { auto itc = allcmb.get_iterator(i, 0); auto its = syms.get_iterator(i, 0); for(int j = 0; j < vmax.size(); j++) { *(itc + *(its + j)) = vmax[j]; } has_lower_syms = fmcomp(itc, first_cmb.cbegin()) < 0; } if( has_lower_syms ) { return; } t_vec_comb vmin = setmm_values(first_cmb, start_index, false); std::vector always_higher(syms_num); for(int i = 0; i < syms_num; i++) { auto itc = allcmb.get_iterator(i, 0); auto its = syms.get_iterator(i, 0); for(int j = start_index; j < vmin.size(); j++) { *(itc + *(its + j)) = vmin[j]; } always_higher[i] = fmcomp(itc, last_cmb.cbegin()) > 0; } auto vc = first_cmb; while(true) { has_lower_syms = false; auto itc = allcmb.get_iterator(0, 0); auto its = syms.get_iterator(0, 0); for(int i = 0; i < syms_num && !has_lower_syms; i++, itc = allcmb.next_row(itc), its = syms.next_row(its)) { if( always_higher[i] ) continue; for(int j = start_index; j < vc.size(); j++) { *(itc + *(its + j)) = vc[j]; } has_lower_syms = fmcomp(itc, vc.cbegin()) < 0; } if( !has_lower_syms ) { hs.clear(); auto itc = allcmb.get_iterator(0, 0); auto its = syms.get_iterator(0, 0); for(int i = 0; i < syms_num; i++, itc = allcmb.next_row(itc), its = syms.next_row(its)) { if( always_higher[i] ) { for (int j = start_index; j < vc.size(); j++) { *(itc + *(its + j)) = vc[j]; } } hs.put(&(*itc)); } ps[ps_size].weight = hs.size(); ps[ps_size].cmb = vc; total_combination_chunk += hs.size(); min_weight = (hs.size() < min_weight) ? hs.size() : min_weight; ps_size++; assert(ps_size <= ps.size()); } if( vc != last_cmb ) next_comb(vc); else break; } } orex-supercell-96532aa/src/core/permut_process_t.h000066400000000000000000000112301465364771700223250ustar00rootroot00000000000000// // Created by kirill on 4/26/21. // #ifndef SUPERCELL_SRC_CORE_PERMUT_PROCESS_T_H_ #define SUPERCELL_SRC_CORE_PERMUT_PROCESS_T_H_ #include #include #include #include #define XXH_INLINE_ALL #define XXH_STATIC_LINKING_ONLY #define XXH_NO_STREAM #define XXH_NO_STDLIB #include #include "containers/hash_unique.h" #include "science/combinatorics.h" #include "common_types.h" template class t_proc_prm { private: typedef std::vector> arr2d_t; int _cols; int _rows; int row_size; arr2d_t arr2d; public: typedef typename arr2d_t::const_iterator const_iterator; typedef typename arr2d_t::iterator iterator; t_proc_prm() : _cols(0), _rows(0), row_size(0) {}; t_proc_prm(int rows, int cols, T def = T()) : _cols(cols), _rows(rows) { for(row_size = cols; row_size * sizeof(T) % Aligment != 0; row_size++) {}; arr2d.resize(row_size * _rows, def); } inline int cols() const { return _cols; } inline int rows() const { return _rows; } inline T & at(int r, int c) { return arr2d.at(r * row_size + c); } inline const T & at(int r, int c) const { return arr2d.at(r * row_size + c); } inline T & operator()(int r, int c) { return arr2d[r * row_size + c]; } inline const T & operator()(int r, int c) const { return arr2d[r * row_size + c]; } const_iterator get_iterator(int r, int c) const { return arr2d.cbegin() + r * row_size + c; } iterator get_iterator(int r, int c) { return arr2d.begin() + r * row_size + c; } const_iterator next_row(const_iterator it) const { return it + row_size; } iterator next_row(iterator it) { return it + row_size; } }; typedef t_proc_prm t_all_comb; typedef t_proc_prm t_symm_set; class permut_process_t { private: const t_symm_set &syms; const std::vector &permi; t_all_comb allcmb; t_vec_comb first_cmb; t_vec_comb last_cmb; t_vec_comb setmm_values(const t_vec_comb &vc, int start_index, bool max_value) const; bool next_comb(t_vec_comb &vc) const; private: class hash_comb { private: const int b_length; public: hash_comb(int cmb_size) : b_length(cmb_size * sizeof(t_vec_comb::value_type)) {}; std::size_t operator()(const t_vec_comb::value_type * p) const { return XXH3_64bits(p, b_length); } }; class eq_comb { private: const int b_length; public: eq_comb(int cmb_size) : b_length(cmb_size * sizeof(t_vec_comb::value_type)) {}; inline bool operator()(const t_vec_comb::value_type * p1, const t_vec_comb::value_type * p2) const { return p1 == p2 || std::memcmp(p1, p2, b_length) == 0; }; }; hash_set hs; public: int ps_size; std::vector ps; std::int64_t total_combination_chunk; std::pair minmax_energy; int min_weight; permut_process_t(const t_symm_set &symmetries, const std::vector &perm_indexes, int max_proc_struct) : syms(symmetries), permi(perm_indexes), allcmb(symmetries.rows(), symmetries.cols()), hs(symmetries.rows(), hash_comb(symmetries.cols()), eq_comb(symmetries.cols())), ps_size(0), ps(max_proc_struct), min_weight(0) { assert(perm_indexes.back() == symmetries.cols()); }; inline void set_proc_range(const t_vec_comb &first, const t_vec_comb &last) { first_cmb = first; last_cmb = last; } void process_merge() noexcept; void process_no_merge(); }; template bool next_complex_permutation(Container &vc, const std::vector &permi) { for (auto it = --permi.cend(); it != permi.cbegin(); --it) { if (std::next_permutation(vc.begin() + *(it - 1), vc.begin() + *it)) { return true; } } return false; } template Index next_k_complex_permutation(Container &vc, Container &vc_last, Index k, const std::vector &permi) { if (k == 0) return k; vc_last = vc; Index km = k - 1; for (auto it = --permi.cend(); it != permi.cbegin() && km != 0; --it) { km = next_k_permutations(vc.begin() + *(it - 1), vc.begin() + *it, km); } if (km == 0) { vc_last = vc; next_complex_permutation(vc, permi); return k; } else { bool has_next_permutation = true; vc = vc_last; Index i; for (i = 0; i < k && has_next_permutation; i++) { vc_last = vc; has_next_permutation = next_complex_permutation(vc, permi); } return i; } } #endif //SUPERCELL_SRC_CORE_PERMUT_PROCESS_T_H_ orex-supercell-96532aa/src/sc_cli/000077500000000000000000000000001465364771700170665ustar00rootroot00000000000000orex-supercell-96532aa/src/sc_cli/CMakeLists.txt000066400000000000000000000044121465364771700216270ustar00rootroot00000000000000set(Boost_USE_STATIC_LIBS ${LINK_STATIC_LIBS}) find_package(Boost 1.63 REQUIRED COMPONENTS program_options filesystem system) include_directories(${Boost_INCLUDE_DIRS}) find_package(PkgConfig) find_package(Threads REQUIRED) find_package(Eigen3 REQUIRED) add_definitions ( ${EIGEN3_DEFINITIONS} ) include_directories ( ${EIGEN3_INCLUDE_DIRS} ) find_package(TBB COMPONENTS tbb) if( NOT ${TBB_FOUND} ) set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${PROJECT_SOURCE_DIR}/3rd_party/cmake/") find_package(TBB COMPONENTS tbb) if( NOT ${TBB_FOUND} ) find_package(PkgConfig REQUIRED) pkg_search_module(PKGTBB REQUIRED IMPORTED_TARGET intel-tbb tbb) add_library(TBB::tbb ALIAS PkgConfig::PKGTBB) else() find_package(TBB REQUIRED COMPONENTS tbb) endif() endif() if( TBB_FOUND AND LINK_STATIC_LIBS ) get_property(pmt TARGET TBB::tbb PROPERTY IMPORTED_LOCATION_RELEASE) string(REGEX REPLACE "libtbb\.(so|dylib)" "libtbb_static.a" pmt ${pmt}) set_property(TARGET TBB::tbb PROPERTY IMPORTED_LOCATION_RELEASE ${pmt}) endif() if (NOT TBB_USE_GLIBCXX_VERSION AND UNIX AND NOT APPLE) if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") # using Clang string(REPLACE "." "0" TBB_USE_GLIBCXX_VERSION ${CMAKE_CXX_COMPILER_VERSION}) endif() endif() if (TBB_USE_GLIBCXX_VERSION) add_definitions(-DTBB_USE_GLIBCXX_VERSION=${TBB_USE_GLIBCXX_VERSION}) endif() find_package(LibArchive) if( ${LibArchive_FOUND} ) set(sc_includes ${sc_includes} ${LibArchive_INCLUDE_DIRS}) add_definitions(-DLIBARCHIVE_ENABLED) set(CMAKE_REQUIRED_INCLUDES ${LibArchive_INCLUDE_DIRS}) if(LINK_STATIC_LIBS) find_package(BZip2 REQUIRED) find_package(LibLZMA REQUIRED) find_package(ZLIB REQUIRED) set(LibArchive_LIBRARIES ${LibArchive_LIBRARIES} ${LIBLZMA_LIBRARIES} ${BZIP2_LIBRARIES} ${ZLIB_LIBRARIES}) endif() else() message(WARNING "libarchive is not found. Packed output will be disabled.") endif() include_directories(${sc_includes}) add_executable(supercell ${sc_sources} main.cpp parse_d2o_input.cpp) target_link_libraries(supercell Boost::program_options Boost::filesystem Boost::system ${LibArchive_LIBRARIES} TBB::tbb Threads::Threads ) install(TARGETS supercell RUNTIME DESTINATION bin) orex-supercell-96532aa/src/sc_cli/main.cpp000066400000000000000000000221411465364771700205160ustar00rootroot00000000000000/* * File: main.cpp * Author: kirill * * Created on July 18, 2013, 1:49 PM */ #include #include #include #include #include #include "boost/program_options.hpp" #include "boost/filesystem.hpp" #include "parse_d2o_input.h" #include "d2o_main_class.h" #include #include "common_types.h" namespace { const size_t ERROR_IN_COMMAND_LINE = 1; const size_t SUCCESS = 0; const size_t ERROR_UNHANDLED_EXCEPTION = 2; const size_t ERROR_PROCESS_EXECUTION = 3; } // namespace using namespace std; /* * */ int main(int argc, char** argv) { try { //std::string appName = boost::filesystem::basename(argv[0]); string input_file; string output_file; string output_tar_file; bool dry_run = false; bool merge_confs = false; bool calc_q = false; bool store_q_all = false; //double memory_limit; int verb_level; string cell_size_str; string charge_balance_str; double pos_tol; vector manual_properties; vector structure_sampling; vector supercell_mult; supercell_mult.resize(3); /** Define and parse the program options */ namespace po = boost::program_options; po::options_description desc("Options"); desc.add_options() ("help,h", "Print help messages") ("verbose,v", po::value(&verb_level)->default_value(1), "output data with verbosity level. Default is 1. Suggested for regular users.") ("input,i", po::value(&input_file)->required(), "Input structure") ("dry-run,d", "Shows information, but does not generate structures. Always use when trying a new system.") ("cell-size,s", po::value(&cell_size_str)->default_value("1x1x1"), "Supercell size. Example: -s 2x2x5. Default is 1x1x1.") ("charge-balance,c", po::value(&charge_balance_str)->default_value("try"), (cb_names::get_name(charge_balance::cb_no) + " - no charge balancing.\n" + cb_names::get_name(charge_balance::cb_try) + " - Try to charge balance system, " + "if initial system is not charged.\n" + cb_names::get_name(charge_balance::cb_yes) + " - Charge balance the system. ").c_str()) ("property,p", po::value >(&manual_properties), (string("Set properties of atoms by labels. ") + "For detailed description see manual.").c_str()) ("tolerance,t", po::value(&pos_tol)->default_value(0.75), "Skip structures with atoms closer than Angstrom.") ("merge-symmetric,m", "Merge output structures that are equivalent by symmetry.") ("coulomb-energy,q", "Calculate Coulomb energies of output structures.") ("coulomb-store,g", "Store electrostatic energy for all structures.") ("store-structures,n", po::value >(&structure_sampling), "Generate structures according to certain criteria. See manual for details.") ("random-seed", po::value(), "Set seed for random structure sampling.") ("archive,a", po::value(&output_tar_file)->default_value(""), (string("A target archive file for all output files. If empty (default) no packing will be performed. ") + #ifdef LIBARCHIVE_ENABLED "The option is enabled." #else "The option is disabled." #endif ).c_str() ) ("output,o", po::value(&output_file)->default_value("supercell"), "Output file base name. The extension will be cif. The structure multiplicity will be added."); po::variables_map vm; try { po::store(po::command_line_parser(argc, argv).options(desc).run(), vm); // throws on error /** --help option */ if (vm.count("help")) { std::cout << "----------------------------------------------------" << endl; std::cout << "Program generating supercells from crystal structures" << endl; std::cout << "with partial occupancies and/or mixed-composition sites." << endl; std::cout << "----------------------------------------------------" << endl; std::cout << "supercell -i " << endl; std::cout << "The values in parenthesis are default values." << endl; std::cout << desc << endl; return SUCCESS; } po::notify(vm); // throws on error, so do after help in case // there are any problems } catch(boost::program_options::required_option& e) { std::cerr << "ERROR: " << e.what() << std::endl << std::endl; return ERROR_IN_COMMAND_LINE; } catch(boost::program_options::error& e) { std::cerr << "ERROR: " << e.what() << std::endl << std::endl; return ERROR_IN_COMMAND_LINE; } //Title if(verb_level > 0) { cout << "-----------------------------------------------------" << endl; cout << "- Supercell program (v2.1.1) -" << endl; cout << "- https://orex.github.io/supercell/ -" << endl; cout << "-----------------------------------------------------" << endl; cout << "- Authors: * Kirill Okhotnikov -" << endl; cout << "- (kirill.okhotnikov@gmail.com) -" << endl; cout << "- * Sylvian Cadars -" << endl; cout << "- (sylvian.cadars@cnrs-imn.fr) -" << endl; cout << "- * Thibault Charpentier -" << endl; cout << "- (Thibault.Charpentier@cea.fr) -" << endl; cout << "-----------------------------------------------------" << endl; cout << "- please cite: -" << endl; cout << "- K. Okhotnikov, T. Charpentier and S. Cadars -" << endl; cout << "- J. Cheminform. 8 (2016) 17 – 33. -" << endl; cout << "-----------------------------------------------------" << endl; cout << endl; } dry_run = vm.count("dry-run") > 0; merge_confs = vm.count("merge-symmetric") > 0; calc_q = vm.count("coulomb-energy") > 0; store_q_all = vm.count("coulomb-store") > 0 && calc_q; std::random_device::result_type rnd_seed = vm.count("random-seed") == 0 ? std::random_device()() : vm["random-seed"].as(); if( verb_level > 0 ) { std::cout << "Command line: "; for(int i = 0; i < argc; i++) std::cout << argv[i] << " "; std::cout << std::endl; } if( verb_level > 0 ) { cout << "Random SEED: " << rnd_seed << endl; } if(!parse_d2o_input::get_supercell_size(cell_size_str, supercell_mult)) { cerr << "Wrong supercell format input." << endl; return ERROR_IN_COMMAND_LINE; } #ifndef LIBARCHIVE_ENABLED if( ! output_tar_file.empty() ) { cerr << "Cannot pack output. LibArchive is not enabled." << endl; return ERROR_IN_COMMAND_LINE; } #endif c_man_atom_prop_cli m_prop; m_prop.set_verbose(verb_level); string param_error; if(!m_prop.parse_input(manual_properties, param_error)) { cerr << "Error in manual property input parameter " << param_error << endl; return ERROR_IN_COMMAND_LINE; } c_struct_sel sampl_prop; if(!parse_d2o_input::parse_sel_input(structure_sampling, sampl_prop, param_error)) { cerr << "Error in sampling input parameter " << param_error << endl; return ERROR_IN_COMMAND_LINE; } if( !merge_confs && sampl_prop.str_weight_limit() > 0 ) { cerr << "Weight can be enabled only for merge configuration run." << endl; return ERROR_IN_COMMAND_LINE; } if (!parse_d2o_input::check_adjust_output_name( output_file, !output_tar_file.empty(), param_error)) { cerr << "Error in output suffix: " << param_error << endl; return ERROR_IN_COMMAND_LINE; } charge_balance cb; if(!parse_d2o_input::get_charge_balance(charge_balance_str, cb)) { cerr << "Wrong Charge Balance input." << endl; return ERROR_IN_COMMAND_LINE; } d2o_main_class mc(rnd_seed); mc.set_verbosity(verb_level); bool processed = mc.process(input_file, dry_run, supercell_mult, cb, pos_tol, merge_confs, calc_q, store_q_all, m_prop, sampl_prop, output_file, output_tar_file); if(!processed) return ERROR_PROCESS_EXECUTION; } catch(std::exception& e) { std::cerr << "Unhandled Exception reached the top of main: " << e.what() << ", application will now exit" << std::endl; return ERROR_UNHANDLED_EXCEPTION; } return SUCCESS; }orex-supercell-96532aa/src/sc_cli/parse_d2o_input.cpp000066400000000000000000000217511465364771700226750ustar00rootroot00000000000000/* * File: parse_d2o_input.cpp * Author: kirill * * Created on July 19, 2013, 11:27 AM */ #include "parse_d2o_input.h" #include "others/string_utils.h" #include #include #include #include #include #include using namespace std; using namespace boost; int c_man_atom_prop_cli::search_count(std::string &str, std::vector &match, const std::regex &rx) { int result = 0; smatch r_match; while(regex_search(str, r_match, rx)) { string replaced_str = ""; match.clear(); for(smatch::const_iterator it = r_match.begin(); it != r_match.end(); ++it) match.push_back(*it); replaced_str = str.substr(0, r_match.position()) + " " + str.substr(r_match.position() + r_match.length()); str = replaced_str; result++; } return result; } void c_man_atom_prop_cli::regex_test(std::string test_str) { regex rx_charge("(^|\\s)(fixed|notfixed)(\\s|$)"); vector rx_out; int find = search_count(test_str, rx_out, rx_charge); cout << "find: " << find << endl; if(find == 1) { cout << rx_out[0] << endl; cout << rx_out[1] << endl; cout << rx_out[2] << endl; cout << rx_out[3] << endl; } } bool c_man_atom_prop_cli::get_param(std::string &right_str, const std::regex &rx, int param_num, std::string ¶m) { bool result = false; vector match; int sc = search_count(right_str, match, rx); if(sc == 0) { param = ""; result = true; } else if( sc == 1 ) { param = match[param_num]; trim(param); result = param != ""; } else if( sc > 1 ) { result = false; } return result; } bool c_man_atom_prop_cli::get_params(std::string right_str, c_man_atom_prop_item_cli &c_prop) { bool result = true; string param; bool good_param; trim(right_str); if(right_str.length() < 2) return false; if( (right_str[0] == '{' ) && (right_str[right_str.length() - 1] == '}' ) ) right_str = right_str.substr(1, right_str.length() - 2); trim(right_str); if(right_str.length() < 2) return false; //extract charge regex rx_charge("(^|\\s)c(harge){0,1}\\s*=\\s*(\\S*)(\\s|$)"); good_param = get_param(right_str, rx_charge, 3, param); result = result && good_param; if(good_param && (param != "") ) { double tmp; if( is_double(param, tmp) ) c_prop.charge = tmp; else result = false; } //extract population regex rx_pop("(^|\\s)p(opulation){0,1}\\s*=\\s*(\\d+)(\\s|$)"); good_param = get_param(right_str, rx_pop, 3, param); result = result && good_param; if(good_param && (param != "") ) c_prop.population = lexical_cast(param); //extract fixation regex rx_fix("(^|\\s)(fixed|notfixed)(\\s|$)"); good_param = get_param(right_str, rx_fix, 2, param); result = result && good_param; if(good_param && (param != "") ) c_prop.fixed = (param == "fixed"); trim(right_str); result = result && ( (right_str == "" ) || (regex_match(right_str, regex("\\s*\\{\\s*\\}\\s*"))) ); return result; } bool c_man_atom_prop_cli::get_labels(std::string left_str, std::vector< std::string > &lables_pattern, c_man_atom_prop_item_cli::lbl_type <) { regex left_rx("(^[wWrRpP]{0,1})\\((.+)\\)$"); smatch rx_out; string str_lbl; if(regex_match(left_str, rx_out, left_rx)) { str_lbl = rx_out[2]; lt = c_man_atom_prop_item_cli::lbl_type::ltPlain; if( (rx_out[1] == "W") || (rx_out[1] == "w") ) lt = c_man_atom_prop_item_cli::lbl_type::ltWC; if( (rx_out[1] == "R") || (rx_out[1] == "r") ) lt = c_man_atom_prop_item_cli::lbl_type::ltRegex; } else { str_lbl = left_str; lt = c_man_atom_prop_item_cli::lbl_type::ltWC; } lables_pattern.clear(); lables_pattern = split_string_vector(str_lbl, " "); bool result = lables_pattern.size() > 0; if( lt == c_man_atom_prop_item_cli::lbl_type::ltRegex ) { for(int i = 0; i < lables_pattern.size(); i++) { try { regex rx(lables_pattern[i]); } catch (std::regex_error& e) { cerr << "Regex " << lables_pattern[i] << " is wrong." << endl; cerr << e.what() << endl; result = false; } if( !result ) break; } } if( !result ) lables_pattern.clear(); return result; } bool c_man_atom_prop_cli::parse_input_item(std::string inp_str) { bool result = true; int delim_pos = -1; int delim_count = 0; for(int i = 0; i < inp_str.length(); i++) { if( inp_str[i] == ':' ) { bool double_colon = false; if( i + 1 < inp_str.length() ) { if( inp_str[i + 1] == ':' ) { inp_str.erase(i + 1, 1); double_colon = true; } } if(!double_colon ) { delim_pos = i; delim_count++; } } } if(verbose_level >= 4) { cout << inp_str << endl; cout << "delim_pos " << delim_pos << endl; cout << "delim_count " << delim_count << endl; } if((delim_count != 1) || (delim_pos == 0) || (delim_pos == inp_str.length() - 1) ) return false; string left_str = inp_str.substr(0, delim_pos); string right_str = inp_str.substr(delim_pos + 1); trim(left_str); trim(right_str); if( (left_str == "") || (right_str == "") ) return false; vector lbls; c_man_atom_prop_item_cli::lbl_type lblt; c_man_atom_prop_item_cli prop_item; if( !get_labels(left_str, lbls, lblt) ) return false; if( !get_params(right_str, prop_item) ) return false; for(size_t i = 0; i < lbls.size(); i++) { prop_item.label = lbls[i]; prop_item.l_type = lblt; vc_raw.push_back(prop_item); } return result; } bool c_man_atom_prop_cli::parse_input(const std::vector &inp, std::string ¶m_error) { bool result = true; vc_raw.clear(); param_error = ""; for(size_t i = 0; i < inp.size(); i++) { result = parse_input_item(inp[i]); if(!result) { param_error = inp[i]; break; } } return result; } void c_man_atom_prop_cli::convert_properties(const std::set &labels) { for(set::const_iterator it_lbl = labels.begin(); it_lbl != labels.end(); ++it_lbl) { for(vector< c_man_atom_prop_item_cli >::iterator it_p = vc_raw.begin(); it_p != vc_raw.end(); ++it_p) { bool the_label = false; the_label = the_label || ( (it_p->l_type == c_man_atom_prop_item_cli::lbl_type::ltPlain) && (*it_lbl == it_p->label) ); the_label = the_label || ( (it_p->l_type == c_man_atom_prop_item_cli::lbl_type::ltWC) && (match_wildcard(it_p->label, *it_lbl)) ); the_label = the_label || ( (it_p->l_type == c_man_atom_prop_item_cli::lbl_type::ltRegex) && ( regex_match(*it_lbl, regex(it_p->label)) ) ); if( the_label ) data_map[*it_lbl].assign(*it_p); } } } bool parse_d2o_input::get_supercell_size(const std::string &sc_size_str, std::vector &scs) { assert(scs.size() == 3); bool result; smatch what; const regex e("\\s*(\\d+)x(\\d+)x(\\d+)\\s*"); result = regex_match(sc_size_str, what, e); if(result) { scs[0] = lexical_cast(what[1]); scs[1] = lexical_cast(what[2]); scs[2] = lexical_cast(what[3]); } return result; } bool parse_d2o_input::get_charge_balance(std::string cb_str, charge_balance &cb) { trim(cb_str); bool result = cb_names::get_cb(cb_str, cb); return result; } bool parse_d2o_input::parse_sel_input(const std::vector& inp, c_struct_sel & out, std::string& param_error) { bool result = true; param_error = ""; scanf_pp::regex_scanf rp("^([farlhw])([0-9]+)$"); for(int i = 0; i < inp.size(); i++) { if( rp.regex_match(inp[i]) ) { string s; int cnt; rp >> s >> cnt; out.set_sampling(s.front(), cnt); } else { result = false; param_error = inp[i]; break; } } return result; } bool parse_d2o_input::check_adjust_output_name(std::string &out_name, bool archive_enabled, std::string &err_msg) { namespace bfs = boost::filesystem; err_msg = ""; const bfs::path p_suffix = bfs::path(out_name); if( p_suffix.is_absolute() && archive_enabled ) { err_msg = "Absolute path can't be used in archive."; return false; } if( p_suffix.filename_is_dot() ) { out_name = (p_suffix / "supercell").generic_string(); } return true; } orex-supercell-96532aa/src/sc_cli/parse_d2o_input.h000066400000000000000000000036601465364771700223410ustar00rootroot00000000000000/* * File: parse_d2o_input.h * Author: kirill * * Created on July 19, 2013, 11:27 AM */ #ifndef PARSE_D2O_INPUT_H #define PARSE_D2O_INPUT_H #include #include #include #include #include #include "common_types.h" class c_man_atom_prop_item_cli : public c_man_atom_prop_item { public: enum class lbl_type {ltPlain, ltWC, ltRegex}; std::string label; lbl_type l_type; }; class c_man_atom_prop_cli : public c_man_atom_prop { protected: int verbose_level; std::vector< c_man_atom_prop_item_cli > vc_raw; public: void regex_test(std::string test_str); int search_count(std::string &str, std::vector &match, const std::regex &rx); bool get_param(std::string &right_str, const std::regex &rx, int param_num, std::string ¶m); bool get_params(std::string right_str, c_man_atom_prop_item_cli &c_prop); bool get_labels(std::string left_str, std::vector< std::string > &lables_pattern, c_man_atom_prop_item_cli::lbl_type <); bool parse_input_item(std::string inp_str); public: void set_verbose(int level) { verbose_level = level; } bool parse_input(const std::vector &inp, std::string ¶m_error); virtual void convert_properties(const std::set &labels); }; class parse_d2o_input { public: static bool get_supercell_size(const std::string &sc_size_str, std::vector &scs); static bool get_charge_balance(std::string cb_str, charge_balance &cb); static bool parse_sel_input(const std::vector &inp, c_struct_sel &out, std::string ¶m_error); static bool check_adjust_output_name(std::string &out_name, bool archive_enabled, std::string &err_msg); }; #endif /* PARSE_D2O_INPUT_H */ orex-supercell-96532aa/src/tests/000077500000000000000000000000001465364771700167745ustar00rootroot00000000000000orex-supercell-96532aa/src/tests/CMakeLists.txt000066400000000000000000000010371465364771700215350ustar00rootroot00000000000000include_directories(${CMAKE_SOURCE_DIR}/others/) find_package(Boost 1.46 REQUIRED COMPONENTS unit_test_framework) find_package(Eigen3 REQUIRED) add_definitions ( ${EIGEN3_DEFINITIONS} ) include_directories ( ${EIGEN3_INCLUDE_DIRS} ) if(Boost_FOUND) add_executable(test_random_sampler ${CMAKE_SOURCE_DIR}/src/core/common_types.cpp test_random_sampler.cpp) target_link_libraries(test_random_sampler Boost::unit_test_framework) add_test(NAME TestRandomSampler COMMAND test_random_sampler) endif() #add_subdirectory(regression)orex-supercell-96532aa/src/tests/regression/000077500000000000000000000000001465364771700211545ustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/000077500000000000000000000000001465364771700220655ustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/Ca2Al2SiO7.cif000077700000000000000000000000001465364771700336132../../../../data/examples/Ca2Al2SiO7/Ca2Al2SiO7.cifustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/CaAl6Te10.cif000077700000000000000000000000001465364771700332112../../../../data/examples/CaAl6Te10/CaAl6Te10.cifustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/PbSnTe2.cif000077700000000000000000000000001465364771700326162../../../../data/examples/PbSnTe/PbSnTe2.cifustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/RB-PST-1-DEHY_1_new.cif000077700000000000000000000000001465364771700360502../../../../data/examples/Rb-PST-1/RB-PST-1-DEHY_1_new.cifustar00rootroot00000000000000orex-supercell-96532aa/src/tests/regression/data/SrSiAlO_1x2x1.cif000066400000000000000000000127401465364771700247730ustar00rootroot00000000000000# CIF file generated by supercell program. See https://orex.github.io/supercell # E_e = 0.0000000000 eV data_ _chemical_name_common '' _cell_length_a 5.2029 _cell_length_b 10.4058 _cell_length_c 15.2936 _cell_angle_alpha 90 _cell_angle_beta 90 _cell_angle_gamma 120 _space_group_IT_number 1 _space_group_name_H-M_alt 'P 1' _space_group_name_Hall 'P 1' loop_ _space_group_symop_operation_xyz x,y,z loop_ _atom_type_symbol _atom_type_oxidation_number Al1 +3 O1 -2 O2 -2 Si1 +4 Sr1 +2 Sr2 +2 loop_ _atom_site_label _atom_site_type_symbol _atom_site_fract_x _atom_site_fract_y _atom_site_fract_z _atom_site_occupancy Si1 Si 0.3333333333 0.3333333333 0.1415660000 0.375 Al1 Al 0.3333333333 0.3333333333 0.1415660000 0.625 Si1 Si 0.6666666667 0.1666666667 0.6415660000 0.375 Al1 Al 0.6666666667 0.1666666667 0.6415660000 0.625 Si1 Si 0.3333333333 0.8333333333 0.8584340000 0.375 Al1 Al 0.3333333333 0.8333333333 0.8584340000 0.625 Si1 Si 0.6666666667 0.1666666667 0.3584340000 0.375 Al1 Al 0.6666666667 0.1666666667 0.3584340000 0.625 Si1 Si 0.6666666667 0.6666666667 0.8584340000 0.375 Al1 Al 0.6666666667 0.6666666667 0.8584340000 0.625 Si1 Si 0.3333333333 0.8333333333 0.3584340000 0.375 Al1 Al 0.3333333333 0.8333333333 0.3584340000 0.625 Si1 Si 0.6666666667 0.1666666667 0.1415660000 0.375 Al1 Al 0.6666666667 0.1666666667 0.1415660000 0.625 Si1 Si 0.3333333333 0.8333333333 0.6415660000 0.375 Al1 Al 0.3333333333 0.8333333333 0.6415660000 0.625 Si1 Si 0.3333333333 0.8333333333 0.1415660000 0.375 Al1 Al 0.3333333333 0.8333333333 0.1415660000 0.625 Si1 Si 0.6666666667 0.6666666667 0.6415660000 0.375 Al1 Al 0.6666666667 0.6666666667 0.6415660000 0.625 Si1 Si 0.3333333333 0.3333333333 0.8584340000 0.375 Al1 Al 0.3333333333 0.3333333333 0.8584340000 0.625 Si1 Si 0.6666666667 0.6666666667 0.3584340000 0.375 Al1 Al 0.6666666667 0.6666666667 0.3584340000 0.625 Si1 Si 0.6666666667 0.1666666667 0.8584340000 0.375 Al1 Al 0.6666666667 0.1666666667 0.8584340000 0.625 Si1 Si 0.3333333333 0.3333333333 0.3584340000 0.375 Al1 Al 0.3333333333 0.3333333333 0.3584340000 0.625 Si1 Si 0.6666666667 0.6666666667 0.1415660000 0.375 Al1 Al 0.6666666667 0.6666666667 0.1415660000 0.625 Si1 Si 0.3333333333 0.3333333333 0.6415660000 0.375 Al1 Al 0.3333333333 0.3333333333 0.6415660000 0.625 O1 O 0.3333333333 0.3333333333 0.2500000000 1.000 O1 O 0.6666666633 0.1666666666 0.7500000000 1.000 O1 O 0.3333333333 0.8333333334 0.7500000000 1.000 O1 O 0.6666666667 0.1666666683 0.2500000000 1.000 O1 O 0.3333333333 0.8333333333 0.2500000000 1.000 O1 O 0.6666666633 0.6666666667 0.7500000000 1.000 O1 O 0.3333333333 0.3333333334 0.7500000000 1.000 O1 O 0.6666666667 0.6666666667 0.2500000000 1.000 O2 O 0.3972800000 0.0000000000 0.1021900000 1.000 O2 O 0.3972800000 0.1986400000 0.6021900000 1.000 O2 O 0.0000000000 0.1986400000 0.1021900000 1.000 O2 O 0.6027200000 0.0000000000 0.6021900000 1.000 O2 O 0.6027200000 0.8013600000 0.1021900000 1.000 O2 O 0.0000000000 0.8013600000 0.6021900000 1.000 O2 O 0.0000000000 0.8013600000 0.8978100000 1.000 O2 O 0.6027200000 0.8013600000 0.3978100000 1.000 O2 O 0.6027200000 0.0000000000 0.8978100000 1.000 O2 O 0.0000000000 0.1986400000 0.3978100000 1.000 O2 O 0.3972800000 0.1986400000 0.8978100000 1.000 O2 O 0.3972800000 0.0000000000 0.3978100000 1.000 O2 O 0.3972800000 0.5000000000 0.1021900000 1.000 O2 O 0.3972800000 0.6986400000 0.6021900000 1.000 O2 O 0.0000000000 0.6986400000 0.1021900000 1.000 O2 O 0.6027200000 0.5000000000 0.6021900000 1.000 O2 O 0.6027200000 0.3013600000 0.1021900000 1.000 O2 O 0.0000000000 0.3013600000 0.6021900000 1.000 O2 O 0.0000000000 0.3013600000 0.8978100000 1.000 O2 O 0.6027200000 0.3013600000 0.3978100000 1.000 O2 O 0.6027200000 0.5000000000 0.8978100000 1.000 O2 O 0.0000000000 0.6986400000 0.3978100000 1.000 O2 O 0.3972800000 0.6986400000 0.8978100000 1.000 O2 O 0.3972800000 0.5000000000 0.3978100000 1.000 Sr1 Sr 0.0000000000 0.0000000000 0.0000000000 1.000 Sr1 Sr 0.0000000000 0.0000000000 0.5000000000 1.000 Sr1 Sr 0.0000000000 0.5000000000 0.0000000000 1.000 Sr1 Sr 0.0000000000 0.5000000000 0.5000000000 1.000 Sr2 Sr 0.0000000000 0.0000000000 0.2500000000 0.250 Sr2 Sr 0.0000000000 0.0000000000 0.7500000000 0.250 Sr2 Sr 0.0000000000 0.5000000000 0.2500000000 0.250 Sr2 Sr 0.0000000000 0.5000000000 0.7500000000 0.250 orex-supercell-96532aa/src/tests/regression/general_checks.py000066400000000000000000000125431465364771700244700ustar00rootroot00000000000000#!/usr/bin/python3 import itertools import re import numpy as np import scipy.stats as stats from collections import OrderedDict import argparse import pathlib import tempfile import os import subprocess import copy from pymatgen.core import Structure from pymatgen.analysis.ewald import EwaldSummation from pymatgen.symmetry.analyzer import SpacegroupAnalyzer general_format='-i {cif} -s {cell} -v 1 -q -m -n l{smp} -n h{smp} -n r{smp}' run_cases = [ {"format": general_format + " -g", "params": OrderedDict([ ("cif", ["RB-PST-1-DEHY_1_new.cif"]), ("cell", ["1x1x1"]), ("smp", ["1", "30", "100", "1000"])]), "checks": {"es", "syms", "rand"} }, {"format": general_format + " -g", "params": OrderedDict([ ("cif", ["SrSiAlO_1x2x1.cif"]), ("cell", ["1x1x1"]), ("smp", ["100"])]), "checks": {"sort", "es", "syms", "rand"} }, {"format": general_format + " --random-seed {seed}", "params": OrderedDict([ ("cif", ["PbSnTe2.cif"]), ("cell", ["2x2x2"]), ("seed", ["1546733744", "538425541", "92928180", "2074289474"]), ("smp", ["300", "3000"])]), "checks": {"syms", "rand"} }, # Very long # {"format": general_format, # "params": OrderedDict([ # ("cif", ["CaAl6Te10.cif"]), # ("cell", ["1x1x1"]), # ("smp", ["2000"])]), # "checks": {"es", "syms", "rand"} # } ] def run_supercell(cmd, params, outdir): fullcmd="{cmd} {params} -o {out}".format(cmd=cmd, params=params, out=outdir / "electro") print(fullcmd) result = subprocess.run(fullcmd, capture_output=True, text=True, shell=True) if result.returncode != 0: print(result.stderr) return None, None tot_syms = re.search("([0-9]+) +symmetry operation found for supercell.*", result.stdout) tot_comb = re.search("Combinations after merge: ([0-9]+)", result.stdout) return outdir, int(tot_syms.group(1)), int(tot_comb.group(1)) def check_case(checks, cmd, fmt, params, data_folder, tmpdir): fosuffix = "test_electro"+fmt.format(**params).replace(" ", "_").replace(".", "_").replace("-", "") workdir = tmpdir / fosuffix os.mkdir(workdir.resolve()) p=copy.deepcopy(params) p["cif"]=(data_folder / p["cif"]).resolve() outdir, tot_syms, tot_comb=run_supercell(cmd, fmt.format(**p), workdir) cm = {} result=True for fn in os.listdir(outdir): m = re.match("electro_i([lhr])([0-9]+)_w([0-9]+).*\.cif", fn) if m: # print(fn) with open(outdir / fn, "r") as f: data = f.read() mx = re.match("# E_e = ([-0-9\.]+) eV",data.split("\n")[1]) se = float(mx.group(1)) structure = Structure.from_str(data, fmt="cif") f.close() cm.setdefault(m.group(1), []).append(int(m.group(2))) if "es" in checks: ew = EwaldSummation(structure, acc_factor=5.0) t = ew.total_energy # The difference is due to coordinate rounding in cif file. if abs(se - t) > 1E-2: print("FAILED energy match('{}'): {} vs {}".format(fn, t, se)) result=False if "syms" in checks: str_syms = len(SpacegroupAnalyzer(structure).get_space_group_operations()) if tot_syms / str_syms != int(m.group(3)): print("Symmetry operation problems: {}".format(fn)) result=False if "sort" in checks: tot_e = [] with open(outdir / "electro_coulomb_energy.txt", "r") as f: for l in f.readlines(): m = re.match(".*/electro_i([0-9]+).*\.cif\s+([0-9\.\-]+)\s+eV", l) if m: tot_e.append((int(m.group(1)), float(m.group(2)))) f.close() tot_e.sort(key=lambda x: x[1]) cm["l"].sort() cm["h"].sort() if cm["l"] != sorted([x[0] for x in tot_e[0:len(cm["l"])]]) or cm["h"] != sorted( [x[0] for x in tot_e[-len(cm["h"]):]]): print("Bad energies sorting") result = False if "rand" in checks: if len(cm["r"]) != int(p["smp"]): print("Failed number of random structures") if stats.kstest(np.array(cm["r"]) / (tot_comb - 1), stats.uniform.cdf).pvalue < 0.03: print("Bad randomness of structures") return result def main(args): tmpdir = pathlib.Path(tempfile.mkdtemp()) for c in run_cases: for t in itertools.product(*[l for l in reversed(c["params"].values())]): fv = OrderedDict([(k, v) for k, v in zip(reversed(c["params"].keys()), t)]) check_case(c["checks"], args.supercell_cmd, c["format"], fv, args.data_folder, tmpdir) if __name__ == '__main__': parser = argparse.ArgumentParser(description='Create tests.') parser.add_argument('--supercell-cmd', type=str, default='supercell', help='Path to checked supercell program') parser.add_argument('--data-folder', type=pathlib.Path, default=pathlib.Path("./"), help='Path with data files.') parser.add_argument('--tmp-folder', type=pathlib.Path, default=pathlib.Path(tempfile.gettempdir()), help='Path to store temporary files') parser.add_argument('-v', '--verbose', action='store_true') args = parser.parse_args() print(args) if args: main(args) orex-supercell-96532aa/src/tests/regression/regression_test.py000066400000000000000000000131371465364771700247520ustar00rootroot00000000000000#!/usr/bin/python3 import itertools import re from collections import OrderedDict import argparse import pathlib import tempfile import os import random import subprocess import copy import filecmp general_format='-i {cif} -s {cell} -v 1 --random-seed {seed} -q -m -n f{smp} -n a{smp} -n l{smp} -n h{smp} -n w{wstore}' match_lines_re = [ "Random SEED:.*([0-9]+).*", "Total charge cell: +([-0-9\.]+).*", "Chemical formula of the supercell: +(.*)", "Total charge of supercell: +([-0-9\.]+).*", "Minimal distance between atoms of two distinct groups: +([0-9\.]+) +A.", "The total number of combinations is +([0-9]+).*", "([0-9]+) +symmetry operation found for supercell.*", "Combinations after merge: ([0-9]+)" ] def full_cpu_check(): ncpusstr = subprocess.run('lscpu -p=CPU', capture_output=True, text=True, shell=True).stdout.split('\n') ncpus = [int(d) for d in ncpusstr if d.isnumeric()] if len(ncpus) == 1: return ncpus if ncpus == 2: return [[ncpus[random.randint(0, 1)]], ncpus] ri = copy.deepcopy(ncpus) random.shuffle(ri) ri=ri[0:random.randint(2, len(ncpus) - 1)] ri.sort() return [[ncpus[random.randint(0, len(ncpus) - 1)]], ri, ncpus] run_cases = [ ({"format" : general_format, "params": OrderedDict([ ("cif" , ["Ca2Al2SiO7.cif", "PbSnTe2.cif"]), ("cell" , ["1x1x1", "1x1x2", "1x2x1", "1x2x2", "2x1x1", "2x1x2", "2x2x1", "2x2x2"]), ("smp" , ["1", "10", "256", "1000", "10000"]), ("seed", ["2087334979", "1893125674", "1342325495", "548259826", "1027322602"]), ("wstore" , ["0"]) ] ), "cpucheck": full_cpu_check}), ({"format" : general_format, "params": OrderedDict([ ("cif" , ["RB-PST-1-DEHY_1_new.cif"]), ("cell" , ["1x1x1"]), ("smp" , ["1", "10", "256", "1000", "10000"]), ("seed", ["2087334979", "1893125674"]), ("wstore" , ["0"]) ] ), "cpucheck": lambda: []}), ] def run_supercell(cpumask, cmd, params, id, outdir): sfx="" if len(cpumask) == 0 else "taskset -c {} ".format(cpus_to_str(cpumask, ',')) outfname=outdir / "{id}-mask{cpumask}.tar".format(id=id, cpumask=cpus_to_str(cpumask, '-')) fullcmd="{sfx} {cmd} {params} -a {tar}".format(sfx=sfx, cmd=cmd, params=params, tar=outfname) result = subprocess.run(fullcmd, capture_output=True, text=True, shell=True) if result.returncode != 0: print(result.stderr) return None, None return outfname, result.stdout def cpus_to_str(cpus, join): return "" if cpus is None or len(cpus) == 0 else join.join([str(i) for i in cpus]) def check_case(refcmd, testcmd, cpumasks, fmt, params, data_folder, tmpdir): fosuffix = "test_"+fmt.format(**params).replace(" ", "_").replace(".", "_").replace("-", "") workdir = tmpdir / fosuffix os.mkdir(workdir.resolve()) p=copy.deepcopy(params) p["cif"]=(data_folder / p["cif"]).resolve() refinput=run_supercell([], refcmd, fmt.format(**p), "ref", workdir) all_input=OrderedDict([("ref", refinput)]) for m in cpumasks: all_input["test-mask{}".format(cpus_to_str(m, '-'))] = run_supercell(m, testcmd, fmt.format(**p), "test", workdir) rest={} for l in all_input.values(): axs = l[1].split('\n') for i, r in enumerate(match_lines_re): rest.setdefault(i, []).append([re.match(r, m).group(1) for m in axs if re.match(r, m)]) result=True for k, v in rest.items(): if v.count(v[0]) != len(v): result=False print("Problems matching '{}'".format(match_lines_re[k])) for k, v in all_input.items(): if k != "ref" and not filecmp.cmp(workdir / all_input["ref"][0], workdir / v[0], shallow=False): print("Problems output '{}'".format(v[0])) result=False return result def main(args): index=0 if args.action == 'test': tmpdir = pathlib.Path(tempfile.mkdtemp()) for c in run_cases: for t in itertools.product(*[l for l in c["params"].values()]): if len(args.testindexes) == 0 or index in args.test_numbers: fv = OrderedDict([(k, v) for k, v in zip(c["params"].keys(), t)]) passed=True if args.action == 'test': passed = check_case(args.supercell_ref, args.supercell_test, c["cpucheck"](), c["format"], fv, args.data_folder, tmpdir) if args.action == 'list' or args.verbose or not passed: print(("{index}: supercell {params} {fail}").format(index=index, params=c["format"].format(**fv), fail=("" if passed else ": FAILED!"))) index += 1 if __name__ == '__main__': parser = argparse.ArgumentParser(description='Create tests.') parser.add_argument('testindexes', metavar=int, type=int, nargs='*', help='Test numbers to run. Default: all') parser.add_argument('-a', '--action', choices=['list', 'test'], default='list', help='Action to perform') parser.add_argument('--supercell-ref', type=str, default='supercell', help='Path to reference supercell program') parser.add_argument('--supercell-test', type=str, required=True, help='Path to checked supercell program') parser.add_argument('--data-folder', type=pathlib.Path, default=pathlib.Path("./"), help='Path with data files.') parser.add_argument('--tmp-folder', type=pathlib.Path, default=pathlib.Path(tempfile.gettempdir()), help='Path to store temporary files') parser.add_argument('-v', '--verbose', action='store_true') args = parser.parse_args() print(args) if args: main(args) orex-supercell-96532aa/src/tests/test_random_sampler.cpp000066400000000000000000000066441465364771700235540ustar00rootroot00000000000000#define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE test_random_sampler #include #include #include #include #include #include #include #include "src/core/common_types.h" BOOST_AUTO_TEST_SUITE(RandomSamplerTest) /*BOOST_AUTO_TEST_CASE(Test_time) { double cm = 0; auto ctime = std::chrono::steady_clock::now(); for(int i = 0; i < 1000000000; i++) { auto mt = std::chrono::steady_clock::now(); double dt = std::chrono::duration(mt - ctime).count(); cm += dt; } BOOST_CHECK_GT(cm, 0.0); }*/ BOOST_AUTO_TEST_CASE(Test_matrix) { std::array seeds = { 606087199, 1124675372, 1505642234, 638846697, 20542946, 1424417894, 1629022254, 1616284817, 141993466, 1873233613}; //std::array total_cmb = { // 1, 5, 11, 220, 792, 1001, 10010, 96525, 110110, 168168, 1387386, 8588580}; std::array total_cmb = { 1, 5, 11, 220, 792, 1001, 10010, 96525}; std::array random_count = { 0, 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 10000000}; std::array packet_size = {1, 1000, 100000}; std::array symmetires = {1, 3, 12, 128, 1536}; std::array fill_coeff = {0, 0.1, 0.5, 0.7, 1.0}; int f_index = 0; for (const auto &tc : total_cmb) { for (const auto &rc : random_count) { for (const auto &sm : symmetires) { for (const auto &psz : packet_size) { for (const auto &fc : fill_coeff) { int64_t nump = std::min(fc * (tc - tc / sm) + tc / sm, tc); for (const auto &s : seeds) { rnd_indexer_t ri(s); ri.set_properties(rc, tc, sm); std::vector sc; sc.reserve(ri.reserve_size()); if (ri.get_mode() == rnd_indexer_t::sampling_method_t::ALL) { for (int i = 0; i < nump; i++) { struct_info_index_t c; c.index = i; sc.emplace_back(c); } } if (ri.get_mode() == rnd_indexer_t::sampling_method_t::BY_INDEXES) { for (int i = 0; i < nump;) { ri.reserve_indexes(i + psz); while (ri.has_next_index() && ri.get_current_index() < i + psz) { struct_info_index_t c; c.index = ri.get_current_index(); sc.emplace_back(c); ri.pop_index(); } i += psz; } } ri.postprocess_rnd_container(sc); // BOOST_CHECK_EQUAL(sc.size(), std::min(rc, nump)); auto cmp_less = [] (const struct_info_index_t &a, const struct_info_index_t &b) { return a.index < b.index; }; auto cmp_eq = [] (const struct_info_index_t &a, const struct_info_index_t &b) { return a.index == b.index; }; BOOST_CHECK(std::is_sorted(sc.cbegin(), sc.cend(), cmp_less)); BOOST_CHECK(std::unique(sc.begin(), sc.end(), cmp_eq) == sc.cend()); } } } } } } } BOOST_AUTO_TEST_SUITE_END()